Index: lams_flex/LamsAuthor/.actionScriptProperties =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/.actionScriptProperties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/.actionScriptProperties 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/.flexProperties =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/.flexProperties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/.flexProperties 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,2 @@ + + Index: lams_flex/LamsAuthor/.project =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/.project,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/.project 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1,19 @@ + + + LamsAuthor + + + LamsFlexCommon + + + + com.adobe.flexbuilder.project.flexbuilder + + + + + + com.adobe.flexbuilder.project.flexnature + com.adobe.flexbuilder.project.actionscriptnature + + Index: lams_flex/LamsAuthor/LearningLibrary2.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/Attic/LearningLibrary2.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/LearningLibrary2.mxml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/LearningLibraryEntryComponent.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/Attic/LearningLibraryEntryComponent.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/LearningLibraryEntryComponent.as 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1,61 @@ +package org.lamsfoundation.lams.author.components.activity +{ + import flash.events.MouseEvent; + + import mx.containers.HBox; + import mx.controls.Image; + import mx.controls.Label; + import mx.core.DragSource; + import mx.managers.DragManager; + + public class LearningLibraryEntryComponent extends HBox + { + public var _icon:Image; + public var _title:Label; + + + public function LearningLibraryEntryComponent(iconLoc:String, title:String) + { + this.height = 30; + this.setStyle("verticalAlign", "middle"); + + // Adding event listener for drag + this.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler); + + _icon = new Image(); + _icon.source = iconLoc; + this.addChild(_icon); + + _title = new Label(); + _title.text = title; + _title.height = 30; + _title.setStyle("textAlign", "center"); + //_title.setConstraintValue("verticalCenter", 0); + //_title.setConstraintValue("top", 40); + this.addChild(_title); + + + } + + // The mouseMove event handler for the Image control + // initiates the drag-and-drop operation. + private function mouseMoveHandler(event:MouseEvent):void + { + var dragInitiator:LearningLibraryEntryComponent = event.currentTarget as LearningLibraryEntryComponent; + + var dragImage:Image = Image(dragInitiator._icon); + + var ds:DragSource = new DragSource(); + ds.addData(dragImage, "img"); + + var imageProxy:Image = new Image(); + imageProxy.source = dragImage.source; + imageProxy.height=30; + imageProxy.width=30; + + + + DragManager.doDrag(dragInitiator, ds, event, imageProxy, 0, 0, 1.00, false); + } + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/ToolActivityComponent.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/Attic/ToolActivityComponent.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/ToolActivityComponent.as 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1,28 @@ +package org.lamsfoundation.lams.author.components.activity +{ + import mx.controls.Image; + + public class ToolActivityComponent extends ActivityComponent + { + //import org.lamsfoundation.lams.author.model.ToolActivity; + //import org.lamsfoundation.lams.author.model.LearningLibraryEntry; + + //public var _toolActivity:ToolActivity; + + + public var _title:String; + public var _image:Image; + + public function ToolActivityComponent() + { + this.height = 30; + this.width = 30; + + this.setStyle("backgroundColor", "green"); + + + + } + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/.settings/org.eclipse.core.resources.prefs =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/.settings/org.eclipse.core.resources.prefs,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/.settings/org.eclipse.core.resources.prefs 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,3 @@ +#Thu Dec 17 10:06:09 EST 2009 +eclipse.preferences.version=1 +encoding/=utf-8 Index: lams_flex/LamsAuthor/bin-debug/AC_OETags.js =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/AC_OETags.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/AC_OETags.js 12 Jan 2010 01:19:51 -0000 1.1 @@ -0,0 +1,278 @@ +// Flash Player Version Detection - Rev 1.6 +// Detect Client Browser type +// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. +var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; +var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; +var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; + +function ControlVersion() +{ + var version; + var axo; + var e; + + // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry + + try { + // version will be set for 7.X or greater players + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + version = axo.GetVariable("$version"); + } catch (e) { + } + + if (!version) + { + try { + // version will be set for 6.X players only + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + + // installed player is some revision of 6.0 + // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, + // so we have to be careful. + + // default to the first public version + version = "WIN 6,0,21,0"; + + // throws if AllowScripAccess does not exist (introduced in 6.0r47) + axo.AllowScriptAccess = "always"; + + // safe to call for 6.0r47 or greater + version = axo.GetVariable("$version"); + + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 4.X or 5.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = axo.GetVariable("$version"); + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 3.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = "WIN 3,0,18,0"; + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 2.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + version = "WIN 2,0,0,11"; + } catch (e) { + version = -1; + } + } + + return version; +} + +// JavaScript helper required to detect Flash Player PlugIn version information +function GetSwfVer(){ + // NS/Opera version >= 3 check for Flash plugin in plugin array + var flashVer = -1; + + if (navigator.plugins != null && navigator.plugins.length > 0) { + if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { + var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; + var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; + var descArray = flashDescription.split(" "); + var tempArrayMajor = descArray[2].split("."); + var versionMajor = tempArrayMajor[0]; + var versionMinor = tempArrayMajor[1]; + var versionRevision = descArray[3]; + if (versionRevision == "") { + versionRevision = descArray[4]; + } + if (versionRevision[0] == "d") { + versionRevision = versionRevision.substring(1); + } else if (versionRevision[0] == "r") { + versionRevision = versionRevision.substring(1); + if (versionRevision.indexOf("d") > 0) { + versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); + } + } else if (versionRevision[0] == "b") { + versionRevision = versionRevision.substring(1); + } + var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; + } + } + // MSN/WebTV 2.6 supports Flash 4 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; + // WebTV 2.5 supports Flash 3 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; + // older WebTV supports Flash 2 + else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; + else if ( isIE && isWin && !isOpera ) { + flashVer = ControlVersion(); + } + return flashVer; +} + +// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available +function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) +{ + versionStr = GetSwfVer(); + if (versionStr == -1 ) { + return false; + } else if (versionStr != 0) { + if(isIE && isWin && !isOpera) { + // Given "WIN 2,0,0,11" + tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] + tempString = tempArray[1]; // "2,0,0,11" + versionArray = tempString.split(","); // ['2', '0', '0', '11'] + } else { + versionArray = versionStr.split("."); + } + var versionMajor = versionArray[0]; + var versionMinor = versionArray[1]; + var versionRevision = versionArray[2]; + + // is the major.revision >= requested major.revision AND the minor version >= requested minor + if (versionMajor > parseFloat(reqMajorVer)) { + return true; + } else if (versionMajor == parseFloat(reqMajorVer)) { + if (versionMinor > parseFloat(reqMinorVer)) + return true; + else if (versionMinor == parseFloat(reqMinorVer)) { + if (versionRevision >= parseFloat(reqRevision)) + return true; + } + } + return false; + } +} + +function AC_AddExtension(src, ext) +{ + if (src.indexOf('?') != -1) + return src.replace(/\?/, ext+'?'); + else + return src + ext; +} + +function AC_Generateobj(objAttrs, params, embedAttrs) +{ + var str = ''; + if (isIE && isWin && !isOpera) + { + str += ' '; + str += ''; + } else { + str += ' + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/bin-debug/FlexGmap.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/FlexGmap.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/LamsFlexAuthor.html =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/LamsFlexAuthor.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/LamsFlexAuthor.html 12 Jan 2010 01:19:51 -0000 1.1 @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/bin-debug/LamsFlexAuthor.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/LamsFlexAuthor.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/playerProductInstall.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/playerProductInstall.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/css/activities.css =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/css/Attic/activities.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/css/activities.css 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,7 @@ +/* CSS file */ + + +vbox.toolActivity { + background-color: green; + +} Index: lams_flex/LamsAuthor/bin-debug/assets/css/learningLibrary.css =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/css/learningLibrary.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/css/learningLibrary.css 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,66 @@ +/* CSS file */ + +.linkButtonWindowShade { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; +} + +.linkButtonStyle { + corner-radius:10; + fill-alphas:1,1; + padding-left:10; + +} + +.informative { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; + roll-over-color:#FFEEC8; + selectionColor:#FFEEC8; + +} + +.reflective { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; + roll-over-color:#DDFCB1; + selectionColor:#DDFCB1; +} + +.collaborative { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; + roll-over-color:#FFFDBE; + selectionColor:#FFFDBE; +} + +.assessment { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + roll-over-color:#E9E2F5; + selectionColor:#E9E2F5; +} \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/configData.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/configData.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/configData.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1 @@ +
getConfigData3defaultDefaultlimeLimerubyRubyen_AUEnglish (AU)cy_GBWelsh (GB)frFrançaisesEspanolmi_NZMaori (NZ)zhChineseitItalianpt_BRPortuguese (BR)deGermannoNorwegiankoKoreansvSwedishplPolishbgBulgarianthThaidefaulten6000001.142 \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/contributorData.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/contributorData.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/contributorData.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,147 @@ +
getContributorList3Thành Bùi + + + Tuan Son + + + Viettien Soft + + + Ha VuAnton Vychegzhanin + + + Andrey BalanJens Bruun KofoedAbdel-Elah Al-AyyoubAl-Faisal El-Dajani + + + Arbaoui AhmedRob Joris + + + Raoul TeeuwenSpyros Papadakis (special thanks)Eleni Rossiou + + + Stelios Skourtis + + + Tatania BekouKittipong Phumpuang + + + Polawat OuilapanDaniel DenevGyula PappPeter Gogh + + + Tamas KeresztesAdam StecykSebastian Komorowski + + + Marcin ChojnowskiJong-Dae Park + + + Jong-Ki LeeAnders BerggrenErik Engh (special thanks!)Edoardo MontefuscoLaura PetrilloRoberta Gaeta (special thanks!)Massimo AngeloniRosella BaldazziIda Taci + + + Silvia Flaim + + + Mario Mattioli + + + Daniela Castrataro (special thanks!) + + + Anna MontefuscoNadia Spang Bovey + + + Benjamin Gay + + + Pascal Gibon + + + Daniel Schneider + + + Laurence VignolletFei YangYi ZhouLi Yan + + + Wei Guo + + + Lihua Guo + + + + + + Long-chuan Chen + + + + + Eric Hsin + + + Alexia Chang + + + Cheng Bo Chuan + + Ralf HilgenstockCarlos MarceloErnie Ghiglione + + + Gregorio Rodríguez Gomez + + + Elena de Miguel GarciaKristian BesleyPaulo GouveiaCharles Niza + + + Marcio Soares + + + Luciana OliveiraRobin Ohia + + + + + Haruhiko Taira + + + + + Minoru Akiyama + + + + + + + Mohammad Fahmi Adam + + + + + Gonca Kızılkaya + + + + + Darius Staigys + + + + + Fiona Malikoff + + + Ernie Ghiglione + + + + Jun-Dir Liew + + James DalzielRobyn PhilipBronwen DalzielAngela VoermanKaren Baskett + + + Leanne Maria Cameron + + + Jeremy PageMichelle O'ReillyFiona MalikoffDapeng NiOzgur DemirtasJun-Dir LiewMitchell SeatonAnthony SukkarPradeep SharmaYoichi TakayamaErnie GhiglioneFei YangDavid CaygillMai Ling TruongAnthony XiaoJacky FangManpreet MinhasChris PerfectDaniel CarlierLuke Foxton + + \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/defaultTheme.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/defaultTheme.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/defaultTheme.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1 @@ +
0x33364810Verdana0x669BF20x669BF20x669BF2insetdefaultbutton0x3336489Verdana0xBFFFBF0xBFFFBF0xBFFFBF0x669BF2label0x33364812VerdanaPIlabel0x33364810VerdanaCALabel0x33364811VerdananoneEndGatelabel0x3336487VerdanaLFWindow0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFinsettreeview0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFElasticdatagrid0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFElasticcombo0x33364811Verdana0xBFFFBF0xBFFFBF0xBFFFBFpicombo0x3336489Verdana0xBFFFBF0xBFFFBF0xBFFFBFLFMenuBar0x33364811Verdana0xBFFFBF0xBFFFBF0xBFFFBFBGPaneloutset0xC2D5FEFlowPanelnone0xC2D5FEWZPaneloutset0xDBE6FDMHPanelnone0xDBE6FDTAPaneloutset0xC2D5FE0x000000scrollpane0x669BF2textarea0x333648Verdana10CanvasPanel0xFCFCFCACTPanelNone0xC2D5FEACTPanel0None0xE1E7E7ACTPanel1None0xC2D5FEACTPanel2None0xFFFDBEACTPanel3None0xDDFCB1ACTPanel4None0xFFEEC8ACTPanel5None0xE9E2F5OptActContainerPanelinset0x25a56fOptActPanelnone0xd8ffefparallelHeadPaneloutset0x4684F7OptHeadPaneloutset0x4684F7ACTPanelNegativeNone0x000000smallLabel0x333648 10 VerdanaTAPanelSelected0x1B6BA7redLabel0xFF0000 12 VerdanaboldTAPanelRollover0xFFFFFFoutsetBGPanelShadow0xAFC8FFCAHighlightBorder0x266DEELTVLearnerText0x555555Verdana11bold0xE7EEFEsolidAboutDialogScpGeneralItem0x66666611VerdanaAboutDialogScpHeaderItem0x66666611VerdanaboldAboutDialogPanel0xFFFFFFnoneAlertDialog1000100010001000IndexBar0x1647BEIndexButtonTahoma12IndexTextFieldTahoma120x333333progressBar0xEAF9FF0x0033660xC4D6FF0x003366branchingDiagram0x0000000x0000000xCC0000BlueTextArea0xC2D5FELightBlueTextArea0x669BF2None \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/preloaderStyle.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/preloaderStyle.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/preloaderStyle.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1 @@ + \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ar_JO_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleأدوات الانشطةTitle for Activity Toolkit Panelal_alertتحذيرGeneric title for Alert windowal_cancelإلغاءTo Confirm title for LFErroral_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on the alert dialogapp_chk_langloadبيانات اللغة لم تحمل بعدmessage for unsuccessful language loadingapp_chk_themeloadبيانات الموضوع لم تحمل بعدmessage for unsuccessful theme loadingapp_fail_continueالبرنامج لا يمكنه الاستمرار، الرجاء الاتصال بالدعم الفنيmessage if application cannot continue due to any errorchosen_grp_lblالمنتقىLabel for the grouping drop down in the PropertyInspectorcopy_btnنسخToolbar > Copy Buttoncv_invalid_design_savedتصميمك ليس صحيح ولكنة حفظ، انقر على "مشاكل" للتحقق من الخطاءMessage when an invalid design has been savedcv_invalid_trans_targetلا يمكنك رسم نقلة لهذا العنصرError message for when transition tool is dropped outside of valid target activitycv_show_validationمشاكلThe button on the confirm dialogcv_valid_design_savedمبروك ... تم حفظ تصميمك بنجاح Message when a valid design has been saveddb_datasend_confirmشكرا على ارسال البيانات إلى الخادمMessage when user sucessfully dumps data to the serverdelete_btnحذفLabel for Delete buttongate_btnبوابةToolbar > Gate Buttongroup_btnمجموعةToolbar > Group Buttongrouping_act_titleتجميعDefault title for the grouping activityld_val_activity_columnنشاطThe heading on the activity in the ValidationIssuesDialogld_val_doneانتهىThe button label for the dialogld_val_issue_columnمشاكلThe heading on the issue in the ValidationIssuesDialogld_val_titleقضايا التحققThe title for the dialoglicense_not_selectedلم يتم إختيار رخصة - الرجاء اختيار واحدةShown if no license is selected in the drop down in workspacemnu_editتحريرMenu bar Editmnu_edit_copyنسخقMenu bar Edit > Copymnu_edit_cutقصMenu bar Edit > Cutmnu_edit_pasteلصقMenu bar Edit > Pastemnu_edit_redoإعادةMenu bar Edit > Redomnu_edit_undoإلغاءMenu bar Edit > Undomnu_fileملفMenu bar Filemnu_file_closeإعلاقMenu bar Closemnu_file_newجديدMenu bar Newmnu_file_openفتحMenu bar Openmnu_file_saveحفظMenu bar savemnu_file_saveasحفظ بإسم ...Menu bar Save asmnu_helpتعليماتMenu bar Helpmnu_help_abtعن لامسMenu bar Aboutmnu_toolsأدواتMenu bar Toolsmnu_tools_optارسم اختياريMenu bar Optionalmnu_tools_prefsتفضيلاتMenu bar preferencesmnu_tools_transارسم نقلة Menu bar draw transitionnew_btnجديدToolbar > New Buttonnew_confirm_msgهل انت متأكد من انك تريد مسح التصميم عن الشاشة؟Msg when user clicks new while working on the existing designnone_act_lblلا شيء No gate activity selectedopen_btnفتحToolbar > Open Buttonoptional_btnاختياريToolbar > Optional Buttonpaste_btnلصقToolbar > Paste Buttonperm_act_lblصلاحيةLabel for permission gate activitypi_activity_type_gateنشاط البوابةActivity type for gate in PIpi_activity_type_groupingنشاط التجميعActivity type for grouping in Property Inspectorpi_definelaterعرف لاحقاLabel for Define later for PIpi_end_offsetاغلق البوابةEnd offset labelpi_group_typeنوع التجميعProperty Inspector Grouping type drop downpi_hoursساعاتHours label in Property Inspectorpi_lbl_currentgroupالتجميع الحاليCurrent grouping label for PIpi_lbl_descالوصفDescription Label for PIpi_lbl_groupالتجميعGrouping label for PIpi_lbl_titleالعنوانTitle label for PIpi_max_actنشاطات الحد الاقصىlabel for maximum Activitiespi_min_actنشاطات الحد الادنىlabel for Minimum activitiespi_minsدقائقMins label in teh property inspectorpi_no_groupingلا شيء Combo title for no groupingpi_num_learnersمتعلمو الارقامPI Num learners labelpi_optional_titleنشاط اختياريTitle for oprional activity property inspectorpi_runofflineنفذ بشكل غير مباسرLabel for Run Oflinepi_start_offsetافتح بوابةStart offset labelpi_titleخصائصOn the title bar of the PIprefix_copyofنسخة منPrefix for copy paste command for canvas activitiesprefs_dlg_cancelالغاء6prefs_dlg_lng_lblاللغة7prefs_dlg_okنعم5prefs_dlg_theme_lblالموضوع 8prefs_dlg_titleالتفضيلات4preview_btnاستعراضToolbar > Preview Buttonproperty_inspector_titleخصائصOn the title bar of the PIrandom_grp_lblعشوائيLabel for the grouping drop down in the PropertyInspectorrename_btnإعادة تسميةLabel for Rename Buttonsave_btnحفظToolbar > Save buttonsched_act_lblجدولLabel for schedule gate activitysynch_act_lblزامن Used as a label for the Synch Gate Activity Typetk_titleأدوات النشاطاتLabel for Activities Toolkit Paneltrans_btnنقلهToolbar > Transition Buttontrans_dlg_cancelإلغاءCancel button on transition dialogtrans_dlg_gateتزامنHeader for the transition props dialogtrans_dlg_gatetypecmbنوعGate type combo labeltrans_dlg_okنعمOK Button on transition dialogtrans_dlg_titleنقلهTitle for the transition properties dialogws_Rootالمجلد الرئيسيRoot folder title for workspacews_chk_overwrite_resourceانتبه انت على وشك حذف سلسة!ws_click_folder_fileالرجاء النقر على مجلد للحفظ داخله أو على تصميم لحذفهError msg if no folder or file is selectedws_copy_same_folderالمصدر والمقصد هي نفس المجلداتThe user has tried to drag and drop to the same placews_dlg_cancel_buttonإلغاء2ws_dlg_filenameاسم الملفLabel for File name in workspace windowws_dlg_location_buttonالوقعWorkspace dialogue Location btn labelws_dlg_ok_buttonنعمWsp Dia OK Button labelws_dlg_open_btnفتحWsp Dia Open Button labelws_dlg_properties_buttonخصائصWorkspace dialogue Properties btn labelws_dlg_save_btnحفظWsp Dia Save Button labelws_dlg_titleمساحه عمل 0ws_newfolder_cancelإلغاءCancel on the new folder name diaws_newfolder_insالرجاء إدخال اسم مجلد جديدInstructions on the new name pop upws_newfolder_okنعمOK on the new folder name diaws_no_permissionعفواً ... ليس لديك صلاحيات لحذف هذا المصررMessage when user does not have write permission to complete actionws_rename_insالرجاء ادخال الاسم الجديدMessage of the new name for the userws_tree_mywspمساحه عملي The root level of the treews_tree_orgsمجموعايShown in the top level of the tree in the workspacews_view_license_buttonعرضTo show the license to the useract_lock_chkالرجاء فتح حاوية النشاط الاختياري قبل اسناد هذا النشاط كنشاط اختياري Alert Message if user drags the activity to locked optional activity container sys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج الى اعاده بدء مؤلف لامس لاستمرار. هل تريد حفظ المعلومات التاليه عن الخطا للمساعدة في تحديد المشكله؟ Common System error message finish paragraphsys_errorخطإ في النظامSystem Error elert window titlepi_num_groupsعدد المجموعاتNumber of groups in Property inspectorpi_parallel_titleنشاط موازيTitle for parallel activity property inspectoropt_activity_titleنشاط اختياريTitle for Optional Activity Containerlbl_num_activitiesنشاطاتreplacement for word activitiesal_sendإرسلSend button label on the system error dialogal_cannot_move_activityعفواً ... لا يمكنك نقل هذا النشاطAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkلا يمكنك اضافة نشاط بوابة كنشاط اختياريError message when user drags gate activity over to optional containerprefix_copyof_countنسخة من ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidلا يمكنك حفظ التصميم في هذا المجلد. الرجاء اختيار مجلد فرعي آخرAlert message if root My Workspace folder is selected to save a design in.ws_click_file_openالرجاء النقر على تصميم للفتحAlert message if folder tried to be opened.ws_license_lblرخصةLabel for Licence drop down on workspace properties tab viewws_license_comment_lblمعلومات اضافية عن الرخصةLabel for Licence Comment description below license drop downcv_invalid_optional_activityحذف نقلات من والى {0} قبل تعريفها كنشاط اختياريAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingالنشاط الثاني للنقلة مفقودError message when target activity for transition is missingcv_invalid_trans_target_from_activityالنقلة من {0} موجودة اصلاError message when a transition from the activity already existcv_invalid_trans_target_to_activityالنقلة لـ {0} موجدة اصلاError message when a transition to the activity already existbranch_btnفرعLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnتدفقLabel for Flow button in Toolbarmnu_file_importاستردادMenu bar Importcv_design_export_unsavedلا يمكنك تصدير تمصيم غير محفوظAlert message when trying to export can unsaved design.cv_design_unsavedلقد تغير التصميم. هل ترغب بالاستمرار دون الحفظ؟Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportتصديرMenu bar Exportws_chk_overwrite_existingهذا المجلد يحتوي على ملف بالاسم {0}Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderلا يمكن استخدام هذا المجلدAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitخروجFile Menu Exitws_no_file_openلا يوجد ملفاتAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceلا يمكنك استخدام سلاسل دائريةError message when a transition from one activity to another is creating a circular loopbin_tooltipإلقي نشاط في هذه السلة لإزالته من سلسلة النشاطاتTool tip message for canvas binnew_btn_tooltipمسح التسلسل الحالي واعادة استخدام مساحه العملTool tip message for new button in toolbaropen_btn_tooltipعرض ملف الحوار لفتح سلسلة نشاطTool tip message for open button in toolbarsave_btn_tooltipحفظ سريع لسلسله النشاط الحاليtool tip message for save button in toolbarcopy_btn_tooltipنسخ النشاط المحددtool tip message for copy button in toolbarpaste_btn_tooltipلصق نسخة من النشاط المحددtool tip message for paste button in toolbartrans_btn_tooltipاستخدم هذا القلم لرسم نقلة بين نشاطينtool tip message for transition button in toolbaroptional_btn_tooltipانشاء مجموعه من الانشطه الاختياريه tool tip message for optional button in toolbargate_btn_tooltipانشاء نقطه التوقف tool tip message for gate button in toolbarbranch_btn_tooltipانشاء فرع tool tip message for branch button in toolbarflow_btn_tooltipانشاء ضوابط لتدفق الانشطه tool tip message for flow button in toolbargroup_btn_tooltipانشاء نشاط لتكوين المجموعاتtool tip message for group button in toolbarpreview_btn_tooltipاستعراض سلسلة كما سيراها المتعلمTool tip message for preview button in toolbarcv_activity_dbclick_readonlyلا يمكنك تحرير ادوات تصميم مخصصةللقراءة فقط. الرجاء حفظ نسخه من التصميم والمحاولة مره اخري. Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblللفرائة فقطLabel for top left of canvas shown when a read-only design is open.al_empty_designعفواً ... لا يمكنك حفظ تصميم فارغalert message when user want to save an empty designcv_autosave_err_msgحدث خطا اثناء محاولته الحفظ التلقائي للتصميم. اذا يستمر هذا الخطا الرجاء الاتصال بمدير النظام Alert error message when auto-save fails.cv_autosave_rec_msgانت عن وشك استرداد تصميم ضائع أو غير محفوظ. سيتم مسح التصميم الحالي. استمرار؟ Message informing users that they have recovered data for a design.cv_autosave_rec_titleتحذيرAlert title for auto save recovery message.mnu_file_recoverاسترجع ...Menu bar Recovercv_activity_copy_invalidعفوا ! لا يمكنك نسخ هذا النشاط. Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidعفوا ! لا يمكنك لسق هذا النشاط. Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidنأسف! يجب اختيار النشاط قبل النسخAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidعفوا! يجب إختيار النشاط قبل النقر على فتح/تحرير محتوى النشاط من قائمة الزر الايمن للفارة. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgهل انت متأكد من حذف الملف أو المجلد؟Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyعفواً ... لا يمكنك حفظ التصميم بدون اسم.Error message when user try to save a design with no file namews_entre_file_nameالرجاء إدخال اسم التصميم ومن ثم النقر على زر الحفظ.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedلم يتم العثور على صفحة التعليمات {0} Alert message when a tool activity has no help url defined.cv_untitled_lblبدون اسم - 1Label for Design Title bar on canvasmnu_help_helpتعليمات التأليفlabel for menu bar Help - Authoring Help optionccm_open_activitycontentفتح أو تحرير محتوى النشاطLabel for Custom Context Menuccm_copy_activityنسخ النشاطLabel for Custom Context Menuccm_paste_activityلصق النشاطLabel for Custom Context Menuccm_piمعاين الخصائصLabel for Custom Context Menuccm_author_activityhelpتعليمات مؤلف النشاطLabel for Custom Context Menuws_dlg_descriptionالوصفLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateلا شيءDrop down default for gate typepi_daysايامDays label in property inspector for gate tool \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/bg_BG_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/bg_BG_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/bg_BG_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleНабор инструменти за учебни дейностиTitle for Activity Toolkit Panelal_alertПредупреждениеGeneric title for Alert windowal_cancelОтказванеTo Confirm title for LFErroral_confirmПотвърждаванеTo Confirm title for LFErroral_okДАOK on the alert dialogapp_chk_langloadДанните за езика не бяха заредениmessage for unsuccessful language loadingapp_chk_themeloadДанните за темата не бяха заредениmessage for unsuccessful theme loadingapp_fail_continueПриложението не може да продължи работа. Моля, обърнете се към специалистие по поддръжка на системата.message if application cannot continue due to any errorchosen_grp_lblИзбранLabel for the grouping drop down in the PropertyInspectorcopy_btnКопиранеToolbar > Copy Buttoncv_invalid_design_savedДизайнът ви вече все още не е валиден, но е съхранен, щракнете на "Есета" за да видите какво не е наред.Message when an invalid design has been savedcv_invalid_trans_targetНе е възможно да създадете преход към този обект.Error message for when transition tool is dropped outside of valid target activitycv_show_validationЕсетеThe button on the confirm dialogcv_valid_design_savedСега вашия дизайнвече е валиден и съхраненMessage when a valid design has been saveddb_datasend_confirmБлагодаря за изпращането на данните до сървъраMessage when user sucessfully dumps data to the serverdelete_btnИзтриванеLabel for Delete buttongate_btnГейтToolbar > Gate Buttongroup_btnГрупаToolbar > Group Buttongrouping_act_titleГрупиранеDefault title for the grouping activityld_val_activity_columnДейностThe heading on the activity in the ValidationIssuesDialogld_val_doneГотовоThe button label for the dialogld_val_issue_columnЕсеThe heading on the issue in the ValidationIssuesDialogld_val_titleЕсета по валидациятаThe title for the dialoglicense_not_selectedМоля, изберете лиценз за този дизайнShown if no license is selected in the drop down in workspacemnu_editРедактиранеMenu bar Editmnu_edit_copyКопиранеMenu bar Edit > Copymnu_edit_cutИзрязванеMenu bar Edit > Cutmnu_edit_pasteВмъкванеMenu bar Edit > Pastemnu_edit_redoОтновоMenu bar Edit > Redomnu_edit_undoОтмянаMenu bar Edit > Undomnu_fileФайлMenu bar Filemnu_file_closeЗатварянеMenu bar Closemnu_file_newНовMenu bar Newmnu_file_openОтварянеMenu bar Openmnu_file_revertНазадMenu bar Revertmnu_file_saveСъхраняванеMenu bar savemnu_file_saveasСъхраняване като...Menu bar Save asmnu_helpПомощна информацияMenu bar Helpmnu_help_abtОтносноMenu bar Aboutmnu_toolsИнструментиMenu bar Toolsmnu_tools_optДопълнително изчертаванеMenu bar Optionalmnu_tools_prefsПредпочитанияMenu bar preferencesmnu_tools_transИзчертаване на преходMenu bar draw transitionnew_btnНовToolbar > New Buttonnew_confirm_msgСигурни ли сте, че желаете да изтриете вашият дизайн от екрана?Msg when user clicks new while working on the existing designnone_act_lblБезNo gate activity selectedopen_btnОтварянеToolbar > Open Buttonoptional_btnНезадължителенToolbar > Optional Buttonpaste_btnВмъкване (залепване)Toolbar > Paste Buttonperm_act_lblПозволениеLabel for permission gate activitypi_activity_type_gateГейт дейностActivity type for gate in PIpi_activity_type_groupingДейност групиранеActivity type for grouping in Property Inspectorpi_definelaterДефиниране по-късноLabel for Define later for PIpi_end_offsetЗатваряне на гейтEnd offset labelpi_group_typeТип групиранеProperty Inspector Grouping type drop downpi_hoursЧасовеHours label in Property Inspectorpi_lbl_currentgroupТекущо групиранеCurrent grouping label for PIpi_lbl_descОписаниеDescription Label for PIpi_lbl_groupГрупиранеGrouping label for PIpi_lbl_titleЗаглавиеTitle label for PIpi_max_actМаксимална активностпо дейносиlabel for maximum Activitiespi_min_actМинимална активностпо дейносиlabel for Minimum activitiespi_minsМинутиMins label in teh property inspectorpi_no_groupingБез`Combo title for no groupingpi_num_learnersБрой обучаемиPI Num learners labelpi_optional_titleНезадължителна дейностTitle for oprional activity property inspectorpi_runofflineРабота офлайнLabel for Run Oflinepi_start_offsetОтваряне гейтStart offset labelpi_titleСвойстваOn the title bar of the PIprefix_copyofКопиране наPrefix for copy paste command for canvas activitiesprefs_dlg_cancelОтказване6prefs_dlg_lng_lblЕзик7prefs_dlg_okДА5prefs_dlg_theme_lblТема8prefs_dlg_titleПредпочитания4preview_btnПредварителен прегледToolbar > Preview Buttonproperty_inspector_titleСвойстваOn the title bar of the PIrandom_grp_lblПроизволноLabel for the grouping drop down in the PropertyInspectorrename_btnПреименуванеLabel for Rename Buttonsave_btnСъхраняванеToolbar > Save buttonsched_act_lblГрафикLabel for schedule gate activitysynch_act_lblСинхронизиранеUsed as a label for the Synch Gate Activity Typetk_titleНабор инструменти за учебни дейностиLabel for Activities Toolkit Paneltrans_btnПреходToolbar > Transition Buttontrans_dlg_cancelОтказванеCancel button on transition dialogtrans_dlg_gateСинхронизиранеHeader for the transition props dialogtrans_dlg_gatetypecmbТипGate type combo labeltrans_dlg_okДАOK Button on transition dialogtrans_dlg_titleПреходTitle for the transition properties dialogws_RootИме на Root директорията за работното пространство Root folder title for workspacews_chk_overwrite_resourceВнимавайте относно пренаисването на ресурс!ws_click_folder_fileМоля, щракнете на една от двете алтернативи: "Директория"- за да съхраните в нея, или "Дизайн" за презапишетеError msg if no folder or file is selectedws_copy_same_folderИзточникът и направлениетоThe user has tried to drag and drop to the same placews_dlg_cancel_buttonОтказване2ws_dlg_filenameИме на файлLabel for File name in workspace windowws_dlg_location_buttonМестонахождениеWorkspace dialogue Location btn labelws_dlg_ok_buttonДАWsp Dia OK Button labelws_dlg_open_btnОтварянеWsp Dia Open Button labelws_dlg_properties_buttonСвойстваWorkspace dialogue Properties btn labelws_dlg_save_btnСъхраняванеWsp Dia Save Button labelws_dlg_titleРаботно пространство0ws_newfolder_cancelОтказванеCancel on the new folder name diaws_newfolder_insМоля въведете име на нова директорияInstructions on the new name pop upws_newfolder_okДАOK on the new folder name diaws_no_permissionСъжаляваме, но вие нямате позволение да пишете в рамките на този ресурсMessage when user does not have write permission to complete actionws_rename_insМоля, въведете новото имеMessage of the new name for the userws_tree_mywspМоето работно пространствоThe root level of the treews_tree_orgsОбучаващи организацииShown in the top level of the tree in the workspacews_view_license_buttonПреглед лиценз на потребителTo show the license to the useract_lock_chkПреди определянето на тази учебна дейност като незадължителна, отключете контейнера "Незадължителна Дейност"Alert Message if user drags the activity to locked optional activity container sys_error_msg_startНастъпи следната системна грешка:Common System error message starting linesys_error_msg_finishЗа да продължите е необходимо да "рестартирате" модула "Автор" на LAMS. Желаете ли да съхраните информацията за възникналата грешка? Тази информация би могла да се окаже полезна за нейното отстраняване. Common System error message finish paragraphsys_errorСистемна ГрешкаSystem Error elert window title \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ca_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ca_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ca_ES_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_lbl_titleTítolpi_max_actMàx {0}mnu_tools_optActivitat opcionalcv_trans_readOnlyLa transició no pot ser {0}. El destí es de només lecturacv_invalid_optional_activityCal eliminar l'origen i destí de les transicions de {0} abans de definirla com a activitat opcionalal_activity_paste_invalidHo sentim, no es pot enganxar aquest tipus d'activitatsupport_act_titleActivitat de suportsupport_msg_no_connectionLes activitats de siport no es poden conectar a un altre activitatsupport_msg_invalid_childLes activitats de tipus {0} no es poden afegir com a activitat de suportsupport_msg_cannot_be_childNo es permès dipositar una activitat de suport dins d'una altre acvtivitatis_remove_warning_msgAtenció !! Aquesta lliço està a punt de ser esborrada: Desitja mantenir aquesta lliçó coma {0}?branch_mapping_dlg_condition_linked_msg{0} està vinculat amb una branca existent. Desitja continuar?cv_activityProtected_activity_link_msg{0} està vinculat a {1}branch_mapping_dlg_group_col_lblGruptrans_dlg_nogateCappi_daysDiesal_group_name_invalid_blankCal assignar un nom al grupcv_invalid_trans_diff_branchesNo es poden crear transicions entre activitats que es trobin en branques diferentsto_conditions_dlg_gte_lblMajor que o igual ato_conditions_dlg_lte_lblMenor que o igual apreview_btn_tooltip_disabledCal desar la seqüència abans de pre visualitzar-lato_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_range_lblIntervalto_conditions_dlg_defin_long_typeintervalto_conditions_dlg_remove_item_btn_lblEsborrarchosen_grp_lblEscollir en el seguimentoptional_act_btnActivitatpi_definelaterDefineix en el seguimentto_conditions_dlg_to_lblDes decv_autosave_err_msgS'ha produït un error al intentar guardar automàticament el seu disseny. Si us plau, augmenti les propietats d'emmagatzemament del seu reproductor de Flash. cv_autosave_rec_msgVostè està a punt de recuperar un disseny perdut o que no s'ha desat. El disseny actual es perdrà. Vol continuar?cv_activity_copy_invalidHo sentim! No es pot copiar una activitat que depèn d'un altre.cv_activity_cut_invalidHo sentim! No es pot tallar una activitat que depèn d'un altre.al_activity_copy_invalidHo sentim! cal seleccionar l'activitat abans de copiar-laws_del_confirm_msgEsta segur de que vol esborrar aquest arxiu / carpeta?branch_mapping_dlg_branch_col_lblBrancaws_file_name_emptyHo sentim! No es pot desar un disseny que no té nom.ccm_author_activityhelpAjut sobre activitats pels autorsws_entre_file_nameSi us plau, introdueixi el nom del disseny i faci "clic" en el boto Guardarcv_untitled_lblSense títol - 1mnu_help_helpAjut pels autorsccm_piInspecció de propietats...validation_error_activityWithNoTransitionUna activitat ha de tenir una transició d'entrada o de sortidato_condition_untitled_item_lblSense títol {0}cancel_btn_tooltipTornar al seguiment de la lliçóbranching_act_titleRamificaciógroupnaming_dialog_instructions_lblFaci "clic" en el nom per modificar el seu valor.pi_branch_tool_acts_lblEntrada (Eina)to_conditions_dlg_from_lblDes depi_define_monitor_cb_lblDefinir en el seguimentpi_activity_type_branchingRamificar activitatpi_branch_typeTipus de ramificaciótool_branch_act_lblResultats de l'alumneto_condition_start_valueValor inicialto_condition_end_valueValor finalto_condition_invalid_value_direction{0} no pot ser més gran que {1}.pi_no_seq_actNombre de seqüènciesbranch_mapping_dlg_condition_col_lblCondicióto_conditions_dlg_title_lblCrear condicions de sortidaal_doneFetcondmatch_dlg_cond_lst_lblCondicionspi_defaultBranch_cb_lblPer defecteto_conditions_dlg_add_btn_lbl+ Afegirto_conditions_dlg_clear_all_btn_lblNetejar totbranch_mapping_no_branch_msgNo s'ha seleccionat cap brancabranch_mapping_no_condition_msgNo s'ha seleccionat cap condicióbranch_mapping_dlg_condition_col_value_exactValor exacte de {0}branch_mapping_no_groups_msgNo s'han seleccionat cap grupbranch_mapping_dlg_branches_lst_lblBranquesgroupmatch_dlg_groups_lst_lblGrupsgroupnaming_dlg_title_lblAnomenar grupspi_group_naming_btn_lblAnomenar grupssequence_act_titleSeqüènciachosen_branch_act_lblSelecció del docental_continueContinuarbranch_mapping_dlg_condition_linked_allHi han condiconsbranch_mapping_dlg_condition_linked_singleAquesta condició éspi_minsMinutspi_no_groupingCappi_num_learnersNombre d'estudiantspi_optional_titleActivitat opcionalpi_runofflineActivitatpi_start_offsetObrir portapi_titlePropietatsprefix_copyofCòpia deprefs_dlg_cancelCancel·larprefs_dlg_lng_lblIdiomaprefs_dlg_okD'acordprefs_dlg_theme_lblTemaprefs_dlg_titlePreferènciespreview_btnVista prèvia property_inspector_titlePropietatsrandom_grp_lblA l'atzarsave_btnGuardarsched_act_lblTemporitzatsynch_act_lblSincronitzattk_titleJoc d'activitatstrans_btnTransiciótrans_dlg_cancelCancel·lartrans_dlg_gateSincronitzaciótrans_dlg_gatetypecmbTipustrans_dlg_okD'acordal_alertAlertatrans_dlg_titleTransiciócv_invalid_trans_targetVostè no pot crear una transició cap aquest objectenew_confirm_msgEstà segur de que vol netejar el seu disseny de la pantalla?pi_branch_tool_acts_default--Selecció--pi_equal_group_sizesGrups de la mateixa midacompetence_editor_warning_title_existsLa competència amb el títol {0}, ja existeixsequence_act_title_new{0} {1}rename_btnRe anomenarccm_copy_activityCopiar activitatcv_autosave_rec_titleAlertamnu_file_recoverRecuperar...cv_activity_helpURL_undefinedNo es troba la pàgina d'ajut de {0}ccm_open_activitycontentObrir/Editar l'activitatccm_paste_activityEnganxar l'activitatws_dlg_descriptionDescripciócv_close_return_to_ext_srcTancar i tornar a {0}cv_eof_changes_appliedEls canvis s'han aplicat correctament.mnu_file_apply_changesAplicar canvisvalidation_error_inputTransitionType1Aqueta activitat no té una transició d'entradavalidation_error_outputTransitionType1Aqueta activitat no té una transició de sortidacv_invalid_design_on_apply_changesExisteix una o més transicions perdudes.apply_changes_btnAplicar canviscancel_btnCancel·larcv_activity_readOnlyAquesta activitat és de només lecturacv_element_readOnly_action_delEliminatcv_element_readOnly_action_modModificatcv_eof_finish_invalid_msgPer a poder finalitzar la edició el disseny ha de ser vàlid.cv_eof_finish_modified_msgAtenció: El seu disseny ha estat modificat. Desitja tancar-lo sense desar-lo?mnu_file_finishAcabarabout_popup_title_lblSobre - {0}about_popup_version_lblVersióabout_popup_copyright_lblFundacióabout_popup_trademark_lblÉs una marca registrada de {0} Foundation ({1}).stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txt stream_urlhttp://{0}foundation.org pi_activity_type_sequenceSeqüència d'activitat ({0})act_tool_titleJoc d'activitatsal_cancelCancel·laral_confirmConfirmaral_okAcceptarpi_condmatch_btn_lblCrear condicionsopt_activity_seq_titleSeqüències opcionalspi_actActivitatsto_conditions_dlg_condition_items_name_col_lblNomto_conditions_dlg_condition_items_value_col_lblCondicióto_conditions_dlg_options_item_header_lbl[ Opcions]close_mc_tooltipMinimitzargroupnaming_dialog_col_groupName_lblNom del gruprefresh_btnRefrescarto_conditions_dlg_defin_user_defined_typeDefinit per l'usuaricv_invalid_trans_closed_sequenceNo es pot connectar una nova transició a una seqüència tancadacompetence_editor_dlgEditor de competènciescompetences_lblCompetènciescompetence_editor_add_competence_btnAfegircompetence_editor_warning_title_blankEl títol de la competència no pot estar buitmap_comptence_btnMapa de competènciescompetence_mappings_btnMapa de competènciescompetences_mapped_to_act_lblCompetènciesgate_openObertagate_closedTancadaws_dlg_date_modified_lblDarrera modificació: {0}ws_save_title_reserved_charsEl títol no pot contenir caràcters especials: {0}optional_seq_btnSeqüènciabranch_mapping_dlg_condition_col_value_maxMajor que o igual a {0}pi_min_actMin {0}optional_seq_btn_tooltipCrear un grup de seqüències opcionals.pi_optSequence_remove_msg_titleEsborrar seqüèncieslbl_num_sequences{0} - SeqüènciesactivityDrop_optSequence_error_msgSi us plau, arrossegui l'activitat a sobre d'una de les seqüènciesto_conditions_dlg_lt_lblMenor que o igual abranch_mapping_dlg_condition_col_value_minMenor que o igual a {0}pi_seqSeqüènciesto_conditions_dlg_defin_bool_typeVertader/falsws_dlg_insert_btnInserirbranch_mapping_dlg_branch_item_default{0} (per defecte)pi_group_matching_btn_lblAssignar grups a les branquespi_tool_output_matching_btn_lblAssignar condicions a les branquescv_invalid_branch_target_to_activityJa existeix una branca cap a {0}cv_invalid_branch_target_from_activityJa existeix una branca des de {0}learner_choice_grp_lblElecció de l'estudiantcompetence_def_dlgDefinició de les competènciescv_valid_design_savedEnhorabona! - El seu disseny es correcte i ha estat desatws_click_folder_fileSi us plau, faci "click" sobre una carpeta o sobre un arxiu per a sobreescriure'lact_lock_chkSi us plau, desbloquegi el contenidor d'activitats opcionals abans d'assignar l'activitat.sys_error_msg_finishPer continuar cal reiniciar l'eina d'autor de LAMS. Desitja guardar la informació d'aquest error per a contribuir a resoldre el problema?. cv_trans_target_act_missingLa segona activitat de la transició no existeix.cv_design_unsavedEl disseny de l'activitat ha canviat. Vol continuar sense guardar-la?mnu_file_exportExportarws_chk_overwrite_existingAquesta carpeta ja conté un arxiu amb el nom {0}.ws_click_virtual_folderAquesta carpeta no es pot utilitzar.mnu_file_exitSortirws_no_file_openNo s'ha trobat l'arxiu.cv_invalid_trans_circular_sequenceNo li és permès de realitza una seqüència circular.bin_tooltipArrossegui l'activitat a la paperera per esborrar-la de la seqüència.new_btn_tooltipNeteja l'editor i comença amb una nova seqüènciaopen_btn_tooltipMostra el diàleg d'arxius per obrir una seqüència d'activitatssave_btn_tooltipDesar la seqüència d'activitat actualcopy_btn_tooltipCopiar l'activitat seleccionadapaste_btn_tooltipEnganxar una copia de l'activitat seleccionadatrans_btn_tooltipUtilitzi aquest llapis per definir transicions entre les activitats (o premi la tecla CTRL) optional_btn_tooltipCrear un grup d'activitats opcionals.gate_btn_tooltipCrear un punt d'aturadabranch_btn_tooltipCrear una branca (disponible a la v 2.1 de LAMS)flow_btn_tooltipCrear un flux de control de les activitatsgroup_btn_tooltipCrear un grup d'activitatspreview_btn_tooltipVista previa de la seqüència, tal i com la veuran els alumnescv_activity_dbclick_readonlyAquest disseny es només de lectura i no espot editar. Si us plau, salvi'n una copia i torni-ho a intentar.cv_readonly_lblNOmés de lecturaal_empty_designHo sentim, no es pot uardar un disseny buitws_chk_overwrite_resourceAlerta: està a punt de sobreescriure aquesta seqüència!ws_RootArrelws_copy_same_folderLes carpetes d'origen i destí són les mateixesws_dlg_cancel_buttonCancel·larws_dlg_filenameNom de l'arxiuws_dlg_location_buttonLocalitzacióws_dlg_ok_buttonD'acordws_dlg_open_btnObrirws_dlg_properties_buttonPropietatsws_dlg_save_btnGuardarws_dlg_titleEspai de treballws_newfolder_cancelCancel·larws_newfolder_insSi us plau, introdueixi un nou nom de carpetaws_newfolder_okD'acordws_no_permissionHo sentim, vostè no té permís d'escriptura en aquest recursws_rename_insSi us plau, introdueixi un nom nouws_tree_mywspEl meu espai de treballws_tree_orgsEls meus grupsws_view_license_buttonVeuresys_error_msg_startS'ha produït el següent error del sistema: sys_errorError del sistemapi_num_groupsNombre de grupspi_parallel_titleActivitat paral·lelaopt_activity_titleActivitat opcionallbl_num_activities{0} - Activitatsal_sendEnviaral_cannot_move_activityHo sentim, aquesta activitat no es pot moure.cv_gateoptional_hit_chkVostè no pot afegir una porta d'activitat com a activitat opcional.prefix_copyof_countCopia {0} dews_save_folder_invalidVostè no pot guardar el disseny en aquesta carpeta. Si us plau, escolli un sotsdirectori vàlid.ws_click_file_openSi us plau, faci "click" en un disseny per obrir-lo.ws_license_lblLlicènciaws_license_comment_lblInformació addicional sobre la llicènciacv_invalid_trans_target_from_activityJa existeix una transició des de {0}cv_invalid_trans_target_to_activityJa existeix una transició cap a {0} branch_btnBranca flow_btnFluxmnu_file_importImportarcv_design_export_unsavedVostè no pot exportar un disseny abans de guardar-lo.mnu_file_import_communityImportar de la comunitat de LAMSview_students_before_selectionVeure els estudiants abans de la selecció?arrange_act_btnOrganitzar les activitatsapp_chk_langloadLes dades de l'idioma no s'han carregatcv_invalid_design_savedEl seu disseny encara no és vàlid. Faci click en "Temes potencials" per veure el que és incorrecteapp_chk_themeloadLes dades del tema no s'han carregatapp_fail_continueL'aplicació no pot continuar. Si us plau, contacti amb el suportcopy_btnCopiarcv_show_validationTemesdb_datasend_confirmGràcies per enviar dades al servidordelete_btnEsborrargate_btnPortagroup_btnGrupgrouping_act_titleAgruparld_val_activity_columnActivitatld_val_doneFetld_val_issue_columnTemald_val_titleValidació dels temeslicense_not_selectedActualment no hi ha cap llicència selecccionada - Si us plau, seleccionin una mnu_editEditarmnu_edit_copyCopiarmnu_edit_cutTallarmnu_edit_pasteEnganxar mnu_edit_redoRefermnu_edit_undoDesfermnu_fileArxiumnu_file_closeTancarmnu_file_newNoumnu_file_openObrirmnu_file_saveGuardarmnu_file_saveasGuardar com...mnu_helpAjutmnu_help_abtSobre LAMSmnu_toolsEinesmnu_tools_prefsPreferènciesmnu_tools_transDibuixar transiciónew_btnNounone_act_lblCapopen_btnObriroptional_btnOpcionalpaste_btnEnganxarperm_act_lblPermíspi_activity_type_gatePorta d'activitatpi_activity_type_groupingGrup d'activitatspi_end_offsetTancar portapi_group_typeTipus de gruppi_hoursHorespi_lbl_currentgroupGrup actualpi_lbl_descDescripciópi_lbl_groupAgrupamental_group_name_invalid_existingEls noms de grup no poden estar repetitsal_activity_openContent_invalidAtenció !! Cal seleccional l'activitat abans d'obrir-la o editar-la. Es pot veure el menú fent "clic" amb el botó dret en l'activitatvalidation_error_transitionNoActivityBeforeOrAfterUna transició ha de tenir una activitat abans o després validation_error_inputTransitionType2No hi ha activitats sense la transició d'entradavalidation_error_outputTransitionType2No hi ha activitats sense la transició de sortidaapply_changes_btn_tooltipAplica els canvis i torna al seguiment de la lliçócv_edit_on_fly_lblEdició "en viu" support_act_btnSuportabout_popup_license_lblAquest programa és lliure; vostè el pot re distribuir i/o modificar segons els termes establerts en la versió 2 de la Llicència Publica General (GNU, General Public License) publicada per la Free Software Foundation. act_seq_lock_chkSi us plau, desbloquegi el contenidor abans d'assignar-hi l'activitat com a seqüència opcional.condmatch_dlg_title_lblCondicions d'unió per a les branquesbranch_mapping_no_mapping_msgNo s'han seleccionat ramificacions.branch_mapping_auto_condition_msgTotes les condicions s'assignaran a la primera branca, per defecte. branch_mapping_dlg_match_dgd_lblRamificacionsbranch_mapping_dlg_condition_col_valueRang de {0} a {1}pi_mapping_btn_lblAssignar ramificacionsgroupmatch_dlg_title_lblAssignar grups a ramificacionsgroup_branch_act_lblBasat en grupsto_condition_invalid_value_range{0} no pot estar en el rang d'una condició ja existentredundant_branch_mappings_msgAquest disseny conté assignacions a branques que no s'utilitzen i seran esborrades. Desitja continuar?cv_activityProtected_activity_remove_msgPer esborrar-la, si us plau, deseleccioni la ramificació a {0}cv_activityProtected_child_activity_link_msgAquesta activitat {0} te una sots-activitat associada a {1} pi_optSequence_remove_msgLa seqüència(es) que s'esborraran poden contenir activitats (que també s'esborraran). Vol esborrar les seqüències? cv_invalid_optional_seq_activity_no_branchesEsborrant les ramificacions conectades amb {0} abans d'afegir-les en una seqüència opcional.cv_invalid_optional_seq_activityEsborri les transicions de {0} abans d'assignar-hi una seqüència opcional.to_conditions_dlg_defin_item_header_lbl[ Escollir sortida ]mnu_file_insertdesignInserir...to_conditions_dlg_condition_items_update_defaultConditionsVostè està a punt de modificar les condicions de sortida. Això desfarà els vincles de les branques existents. Vol continuar de tota manera?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNos es poden actualitzar les condicions ja que no n'existeixen de previes. Cal definir les condicions per defecte en l'apartat d'autoria.grouping_invalid_with_common_names_msgNo es pot guardar l'activitat de grup {0} perquè conté més d'un grup amb el mateix nom. Si us plau, revisi-ho i torni-ho a provar.condmatch_dlg_message_lblCal triar la branca per defecte fent "clic" a la opció "per defecte" en l'apartat de propietats de la branca.ta_iconDrop_optseq_error_msgNo hi han seqüències en aquest contenidor.cv_invalid_optional_activity_no_branchesEsborri qualsevol transició de {0} abans d'assignar-hi una seqüència opcional.gate_mapping_auto_condition_msgLa reta de condicions s'assignaran a les portes que tenen l'estat de tancat.cv_design_insert_warningAl insertar una nova seqüència s'actualitzarà, automàticamanent, la que ja existia. Per retornar al la seqüència antiga, cal esborrar les noves seqüències afegides a ma. Si no vol canviar la seqüència anterior, premi "Cancel·lar ". En cas contrari, premi "D'acord".al_cannot_move_to_diff_opt_seqPer moure una activitat a un altre seqüència, a seqüències opcionals, primer arrossegui l'activitat fora de l'apartat de Seqüències opcionals, i torni-la a arrossegar a la seva nova ubicació. competence_editor_warning_competence_mappedLa competència que està esborrant està assignada a una o més activitats. Si s'esborra la competència, també s'esborraran les assignacions. Vol continuar?map_gate_conditions_btnAssignació de condicions a les portesal_activity_view_competence_mappings_invalidSi us plau, verifiqui que ha seleccionat una activitat abans de veure les competències que te assignades. gradebook_output_typeQualificacionssupport_act_btn_tooltipCrear un grup d'activitats de suport opcionals.support_msg_max_children_reachedNo es pot afegir l'activitat: {0} aquí. Les activitats de suport permeten un màxim de {1} sots activitats.grp_chk_clear_branch_mappingsAtenció: Aquesta acció esborrarà l'associació de grups i ramificacions, vol continuar de totes maneres? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/cy_GB_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleCronfa Feddalwedd Gweithgareddau Title for Activity Toolkit Panelal_alertRhybuddGeneric title for Alert windowal_cancelCansloTo Confirm title for LFErroral_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on the alert dialogapp_chk_langloadNid yw'r data iaith wedi'i lwytho message for unsuccessful language loadingapp_chk_themeloadNid yw'r data thema wedi'i lwytho message for unsuccessful theme loadingapp_fail_continueNid yw'r rhaglen yn gallu parhau. Ceisiwch gymorthmessage if application cannot continue due to any errorchosen_grp_lblWedi'i ddewis Label for the grouping drop down in the PropertyInspectorcopy_btnCopïoToolbar > Copy Buttoncv_invalid_design_savedNid yw'ch dyluniad yn ddilys eto, ond mae wedi cael ei gadw, cliciwch ar 'Mater' i weld beth sydd o'i le.Message when an invalid design has been savedcv_invalid_trans_targetNi allwch greu trosiad i'r gwrthrych hwnError message for when transition tool is dropped outside of valid target activitycv_show_validationMaterThe button on the confirm dialogcv_valid_design_savedLlongyfarchiadau! - Mae eich dyluniad yn ddilys ac mae wedi cael ei gadwMessage when a valid design has been saveddb_datasend_confirmDiolch am anfon data i'r gweinyddMessage when user sucessfully dumps data to the serverdelete_btnDileuLabel for Delete buttongate_btnAdwyToolbar > Gate Buttongroup_btnGrŵpToolbar > Group Buttongrouping_act_titleGrŵpDefault title for the grouping activityld_val_activity_columnGweithgareddThe heading on the activity in the ValidationIssuesDialogld_val_doneWedi'i wneudThe button label for the dialogld_val_issue_columnMaterThe heading on the issue in the ValidationIssuesDialogld_val_titleMaterion dilysuThe title for the dialoglicense_not_selectedNi allwch ddewis trwydded - Dewiswch unShown if no license is selected in the drop down in workspacemnu_editGolyguMenu bar Editmnu_edit_copyCopïoMenu bar Edit > Copymnu_edit_cutTorriMenu bar Edit > Cutmnu_edit_pasteGludoMenu bar Edit > Pastemnu_edit_redoAil-wneudMenu bar Edit > Redomnu_edit_undoDadwneudMenu bar Edit > Undomnu_fileFfeilMenu bar Filemnu_file_closeCauMenu bar Closemnu_file_newNewyddMenu bar Newmnu_file_openAgorMenu bar Openmnu_file_saveCadwMenu bar savemnu_file_saveasCadw fel...Menu bar Save asmnu_helpCymorthMenu bar Helpmnu_help_abtAm LAMSMenu bar Aboutmnu_toolsOfferMenu bar Toolsmnu_tools_optBlwch DewisolMenu bar Optionalmnu_tools_prefsDewisiadauMenu bar preferencesmnu_tools_transTynnu LlinellMenu bar draw transitionnew_btnNewyddToolbar > New Buttonnew_confirm_msgYdych chi'n siŵr eich bod chi eisiau clirio eich dyluniad ar y sgrin? Msg when user clicks new while working on the existing designnone_act_lblDimNo gate activity selectedopen_btnAgorToolbar > Open Buttonoptional_btnDewisolToolbar > Optional Buttonpaste_btnGludoToolbar > Paste Buttonperm_act_lblCaniatâdLabel for permission gate activitypi_activity_type_gateGweithgaredd AdwyActivity type for gate in PIpi_activity_type_groupingGweithgaredd GrŵpActivity type for grouping in Property Inspectorpi_definelaterDiffinio'n ddiweddarachLabel for Define later for PIpi_end_offsetCau adwyEnd offset labelpi_group_typeMath o GrŵpProperty Inspector Grouping type drop downpi_hoursAwrHours label in Property Inspectorpi_lbl_currentgroupGrŵp CyfredolCurrent grouping label for PIpi_lbl_descDisgrifiadDescription Label for PIpi_lbl_groupGrŵpGrouping label for PIpi_lbl_titleTeitlTitle label for PIpi_max_actGweithgareddau Mwyaflabel for maximum Activitiespi_min_actGweithgareddau Lleiaflabel for Minimum activitiespi_minsMunudMins label in teh property inspectorpi_no_groupingDimCombo title for no groupingpi_num_learnersNifer y dysgwyrPI Num learners labelpi_optional_titleGweithgaredd DewisolTitle for oprional activity property inspectorpi_runofflineRhedeg All-leinLabel for Run Oflinepi_start_offsetAgor adwyStart offset labelpi_titlePriodweddauOn the title bar of the PIprefix_copyofCopi oPrefix for copy paste command for canvas activitiesprefs_dlg_cancelCanslo6prefs_dlg_lng_lblIaith7prefs_dlg_okIawn5prefs_dlg_theme_lblThema8prefs_dlg_titleDewisiadau4preview_btnRhagolwgToolbar > Preview Buttonproperty_inspector_titlePriodweddauOn the title bar of the PIrandom_grp_lblHapLabel for the grouping drop down in the PropertyInspectorrename_btnAilenwiLabel for Rename Buttonsave_btnCadwToolbar > Save buttonsched_act_lblTrefnlenLabel for schedule gate activitysynch_act_lblSyncroneiddioUsed as a label for the Synch Gate Activity Typetk_titleCronfa Feddalwedd GweithgareddauLabel for Activities Toolkit Paneltrans_btnPontioToolbar > Transition Buttontrans_dlg_cancelCansloCancel button on transition dialogtrans_dlg_gateSyncroneiddioHeader for the transition props dialogtrans_dlg_gatetypecmbMathGate type combo labeltrans_dlg_okIawnOK Button on transition dialogtrans_dlg_titlePontioTitle for the transition properties dialogws_RootGwraiddRoot folder title for workspacews_chk_overwrite_resourceRhybudd: rydych ar fin trosysgrifo adnodd!ws_click_folder_fileCliciwch ar naill ai Ffolder i'w gadw, neu Dylunio i'w drosysgrifoError msg if no folder or file is selectedws_copy_same_folderMae'r ffynhonnell a'r ffolderi cyrchfan yr un fathThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCanslo2ws_dlg_filenameEnw FfeilLabel for File name in workspace windowws_dlg_location_buttonLleoliadWorkspace dialogue Location btn labelws_dlg_ok_buttonIawnWsp Dia OK Button labelws_dlg_open_btnAgorWsp Dia Open Button labelws_dlg_properties_buttonPriodweddauWorkspace dialogue Properties btn labelws_dlg_save_btnCadwWsp Dia Save Button labelws_dlg_titleGweithle0ws_newfolder_cancelCansloCancel on the new folder name diaws_newfolder_insRhowch enw'r ffolder newyddInstructions on the new name pop upws_newfolder_okIawnOK on the new folder name diaws_no_permissionNi chaniateir i chi ysgrifennu i'r adnodd hwnMessage when user does not have write permission to complete actionws_rename_insRhowch yr enw newyddMessage of the new name for the userws_tree_mywspFy NgweithleThe root level of the treews_tree_orgsFy GrŵpShown in the top level of the tree in the workspacews_view_license_buttonGweldTo show the license to the useract_lock_chkDatglowch y blwch Gweithgaredd Dewisol cyn ei ddosbarthu'n weithgaredd dewisolAlert Message if user drags the activity to locked optional activity container sys_error_msg_startMae'r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd rhaid i chi ailgychwyn LAMS Author i barhau. Ydych chi eisiau cadw'r wybodaeth ganlynol am y gwall hwn er mwyn helpu datrys y broblem hon?Common System error message finish paragraphsys_errorGwall System System Error elert window titlepi_num_groupsNifer y grwpiauNumber of groups in Property inspectorpi_parallel_titleGweithgaredd ParalelTitle for parallel activity property inspectoropt_activity_titleGweithgaredd DewisolTitle for Optional Activity Containerlbl_num_activitiesGweithgareddreplacement for word activitiesal_sendAnfonSend button label on the system error dialogal_cannot_move_activityNi allwch symud y gweithgaredd hwnAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNi allwch ychwanegu gweithgaredd adwy fel gweithgaredd dewisol.Error message when user drags gate activity over to optional containerprefix_copyof_countCopi ({0}) o Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNi allwch gadw dyluniad yn y ffolder hwn. Dewiswch is-ffolder dilys.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openCliciwch ar Ddylunio i agorAlert message if folder tried to be opened.ws_license_lblTrwyddedLabel for Licence drop down on workspace properties tab viewws_license_comment_lblGwybodaeth Trwydded YchwanegolLabel for Licence Comment description below license drop downcv_invalid_optional_activitySymud llinell i ac o {0} cyn ei osod fel gweithgaredd dewisol.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingAil gam wrth bontio yn eisiau.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityMae Llinell o {0} eisoes yn bodoliError message when a transition from the activity already existcv_invalid_trans_target_to_activityMae Llinell i {0} eisoes yn bodoliError message when a transition to the activity already existbranch_btnCangenLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnLlifLabel for Flow button in Toolbarmnu_file_importMewnforioMenu bar Importcv_design_export_unsavedNi allwch Allforio dyluniad heb ei gadwAlert message when trying to export can unsaved design.cv_design_unsavedMae'r dyluniad ar y cynfas wedi newid. Parhau heb gadw?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportAllforioMenu bar Exportws_chk_overwrite_existingMae'r ffolder hwn eisoes yn cynnwys ffeil o'r enw {0}Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNi allwch ddefnyddio'r ffolder hwn.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitGadaelFile Menu Exitws_no_file_openDim ffeil wedi'i chanfodAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNi allwch gael dilyniant cylcholError message when a transition from one activity to another is creating a circular loopbin_tooltipRhowch weithgaredd yn y bin hwn i'w ddileu o'r dilyniant gweithgaredd.Tool tip message for canvas binnew_btn_tooltipClirio dilyniant cyfredol ac ailosod lle gwaith yn barod i'w ddefnyddioTool tip message for new button in toolbaropen_btn_tooltipDangos Ffeil Deialog i agor Dilyniant GweithgareddTool tip message for open button in toolbarsave_btn_tooltipCadw Dilyniant Gweithgaredd cyfredol yn gyflymtool tip message for save button in toolbarcopy_btn_tooltipCopïo'r gweithgaredd a ddewiswydtool tip message for copy button in toolbarpaste_btn_tooltipGludo copi o'r gweithgaredd a ddewiswydtool tip message for paste button in toolbartrans_btn_tooltipDefnyddio'r pen hwn i dynnu llinell rhwng gweithgareddau (neu wasgu CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCreu cyfres o weithgareddau dewisoltool tip message for optional button in toolbargate_btn_tooltipCreu man arostool tip message for gate button in toolbarbranch_btn_tooltipCreu cangen (ar gael mewn LAMS f 2.1)tool tip message for branch button in toolbarflow_btn_tooltipCreu gweithgareddau rheoli lliftool tip message for flow button in toolbargroup_btn_tooltipCreu gweithgaredd grŵptool tip message for group button in toolbarpreview_btn_tooltipRhagolwg o'ch Dilyniant fel y bydd dysgwyr yn ei weldTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNi allwch olygu offer dyluniad darllen yn unig. Cadwch gopi o'r dyluniad a cheisiwch eto.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblDarllen Yn UnigLabel for top left of canvas shown when a read-only design is open.al_empty_designNi allwch gadw dyluniad gwagalert message when user want to save an empty designcv_autosave_err_msgMae gwall wedi digwydd wrth geisio awtogadw eich dyluniad. Os yw'r gwall yn parhau cysylltwch â'r Gweinyddwr System.Alert error message when auto-save fails.cv_autosave_rec_msgRydych ar fin adfer y dyluniad coll neu heb ei gadw diwethaf. Bydd eich dyluniad cyfredol yn cael ei glirio. Parhau?Message informing users that they have recovered data for a design.cv_autosave_rec_titleRhybuddAlert title for auto save recovery message.mnu_file_recoverAdfer....Menu bar Recovercv_activity_copy_invalidNi allwch gopïo'r gweithgaredd plentyn hwn.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidNi allwch dorri'r gweithgaredd plentyn hwn.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidRhaid i chi ddewis y gweithgaredd cyn clicio ar gopiAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidRhaid i chi ddewis y gweithgaredd cyn clicio ar yr eitem dewislen Agor/Golygu Cynnwys Gweithgaredd yn y ddewislen di-glicio gweithgareddalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgYdych chi'n siŵr eich bod chi eisiau dileu'r ffeil / ffolder yma?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyNi allwch gadw dyluniad heb unrhyw enw ffeil.Error message when user try to save a design with no file namews_entre_file_nameNodwch enw'r dyluniad, yna cliciwch y botwm Cadw.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedDdim yn gallu canfod tudalen cymorth ar gyfer {0}Alert message when a tool activity has no help url defined.cv_untitled_lblDi-deitl - 1Label for Design Title bar on canvasmnu_help_helpCymorth Awdurolabel for menu bar Help - Authoring Help optionccm_open_activitycontentAgor/Golygu Cynnwys GweithgareddLabel for Custom Context Menuccm_copy_activityCopïo GweithgareddLabel for Custom Context Menuccm_paste_activityGludo GweithgareddLabel for Custom Context Menuccm_piArolygydd Priodwedd...Label for Custom Context Menuccm_author_activityhelpCymorth Awduro Gweithgaredd Label for Custom Context Menuws_dlg_descriptionDisgrifiadLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateDimDrop down default for gate typepi_daysDiwrnodDays label in property inspector for gate toolcv_close_return_to_ext_srcCau a nôl i {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/da_DK_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_eof_finish_modified_msgAdvarsel: Dit design er ændret. Ønsker du at afslutte uden at gemme?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyOvergangen kan ikke være {0}. Målet for overgangen er read-only.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipVend tilbage til monitor session.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishAfslutMenu bar File - Finish (Edit Mode)about_popup_title_lblOm - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} er registreret varemærke for {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDette program er freeware; du må videreformidle og/eller ændre det på de betingelser, som er angivet i GNU General Public License version 2, publiceret af Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.cv_eof_changes_appliedÆndringer er nu gennemført.Changes have been successful applied.mnu_file_apply_changesForetag ændringerApply Changesvalidation_error_transitionNoActivityBeforeOrAfterEn overgang kræver en aktivitet både før og efter overgangenA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEn aktivitet skal have en input eller output overgangAn activity must have an input or output transitionvalidation_error_inputTransitionType1Denne aktivitet har ingen input overgangThis activity has no input transitionvalidation_error_inputTransitionType2Ingen aktiviteter mangler input overgang.No activities are missing their input transition.validation_error_outputTransitionType1Denne aktivitet har ingen output overgangThis activity has no output transitionvalidation_error_outputTransitionType2Ingen aktiviteter mangler output overgang.No activities are missing their output transition.cv_invalid_design_on_apply_changesKan ikke foretage ændringer. En eller flere overgange mangler.Cannot apply changes. There are one or more transitions missing.apply_changes_btnForetag ændringerApply Changesapply_changes_btn_tooltipForetag ændringer i design og vend tilbage til monitor session.tool tip message for save button in toolbarcancel_btnAnnullérToolbar - Cancel Buttoncv_activity_readOnlyAktiviteten kan ikke være {0]. Aktiviteten er read-onlyAlert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblLive EditLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delFjernetAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modÆndretAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDesignet skal være gyldigt for at redigering kan afsluttes.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.pi_daysDageDays label in property inspector for gate tooltrans_dlg_nogateIngenDrop down default for gate typews_chk_overwrite_resourceNB! Du er ved at overskrive denne sekvens!ws_tree_orgsMine grupperShown in the top level of the tree in the workspaceal_activity_copy_invalidBeklager, du er nødt til at vælge aktiviteten før du klikker på knappen "kopiér" eller kopiér aktivitets menuen i højrekliks menuen aktiviteter.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvascv_invalid_design_savedDit design er gyldigt endnu, men er blevet gemt, klik på 'Emner' for at se, hvad der er galt.Message when an invalid design has been savedcv_autosave_rec_msgDu er ved at genskabe et design, du har mistet eller ikke har gemt. Dit aktuelle design vil blive nulstillet. Ønsker du at fortsætte?Message informing users that they have recovered data for a design.ws_dlg_descriptionBeskrivelseLabel for description in Workspace dialog - Properties tabmnu_toolsVærktøjMenu bar Toolsmnu_tools_prefsForetrukne indstillingerMenu bar preferencespreview_btnForhåndsvisningToolbar > Preview Buttonws_RootRodRoot folder title for workspacews_newfolder_cancelAnnullérCancel on the new folder name diaws_view_license_buttonVisTo show the license to the userld_val_doneGjortThe button label for the dialogccm_author_activityhelpForfatter aktivitetshjælpLabel for Custom Context Menuccm_open_activitycontentÅbn/redigér aktivitetsindholdLabel for Custom Context Menuccm_copy_activityKopiér aktivitetLabel for Custom Context Menuccm_paste_activityIndsæt aktivitetLabel for Custom Context Menuccm_piKontrol af egenskaberLabel for Custom Context Menuws_file_name_emptyBeklager, du kan ikke gemme et design uden filnavn.Error message when user try to save a design with no file namecv_untitled_lblUnavngivet - 1Label for Design Title bar on canvasal_empty_designBeklager, du kan ikke gemme et tomt designalert message when user want to save an empty designcv_autosave_err_msgEn fejl er opstået i forbindelse med automatisk gemning af dit design. Hvis denne fejl opstår igen skal du kontakte systemadminstratoren.Alert error message when auto-save fails.cv_autosave_rec_titleAdvarselAlert title for auto save recovery message.mnu_file_recoverGenopret...Menu bar Recoverws_newfolder_okOKOK on the new folder name diaws_no_permissionBeklager, du har ikke rettigheder til at skrive til denne ressourceMessage when user does not have write permission to complete actionws_rename_insSkriv det nye navnMessage of the new name for the userws_tree_mywspMit arbejdsområdeThe root level of the treeact_lock_chkLås den valgfri aktivitet op før du gør den valgfriAlert Message if user drags the activity to locked optional activity container sys_error_msg_startDer er opstået følgende systemfejl:Common System error message starting linesys_error_msg_finishDu er nødt til at genstarte LAMS Forfatter for at fortsætte. Ønsker du at gemme følgende information om fejlen som hjælp til at løse problemet?Common System error message finish paragraphsys_errorSystemfejlSystem Error elert window titleal_sendSendSend button label on the system error dialoglbl_num_activitiesAktiviteterreplacement for word activitiesopt_activity_titleValgfri aktivitetTitle for Optional Activity Containerws_license_lblLicensLabel for Licence drop down on workspace properties tab viewws_license_comment_lblUddybende licensinformationLabel for Licence Comment description below license drop downal_cannot_move_activityBeklager, du kan ikke flytte denne aktivitet.Alert message when user tries to move child activity of any parallel activitymnu_help_helpHjælp til forfattermoduletlabel for menu bar Help - Authoring Help optionws_del_confirm_msgEr du sikker på, at du ønsker at slette denne fil/mappe?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_openKlik venligst på et design for at åbne.Alert message if folder tried to be opened.cv_invalid_optional_activityFjerne forbindelser til og fra {0} før du angiver den som valgfri aktivitet.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDen anden aktivitet i forbindelse mangler.Error message when target activity for transition is missingpi_num_groupsAntal af grupperNumber of groups in Property inspectorcv_activity_copy_invalidBeklager, du har ikke rettigheder til at kopiere denne underaktivitet.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidBeklager, du har ikke rettigheder til at slette denne underaktivitet.Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activityEn forbindelse til {0} eksisterer alleredeError message when a transition to the activity already existcv_design_unsavedDesignet i arbejdsområdet er ændret. Ønsker du at fortsætte uden at gemme?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipRydder aktuelle sekvenser og nulstiller arbejdsområdet, så det er klar til brugTool tip message for new button in toolbaropen_btn_tooltipViser filmenuen for at åbne en aktivitetssekvensTool tip message for open button in toolbarsave_btn_tooltipGemmer aktuel aktivitetssekvenstool tip message for save button in toolbarcopy_btn_tooltipKopiér den valgte aktivitettool tip message for copy button in toolbarpaste_btn_tooltipIndsæt en kopi af den valgte aktivitettool tip message for paste button in toolbartrans_btn_tooltipBrug denne pensel til at tegne forbindelser mellem aktiviteter (eller brug CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipOpret en serie valgfri aktivitetertool tip message for optional button in toolbargate_btn_tooltipOpret et "stoppested"tool tip message for gate button in toolbarbranch_btn_tooltipOpret en forgrening (tilgængelig i LAMS v 2.1)tool tip message for branch button in toolbargroup_btn_tooltipOpret gruppeaktivitettool tip message for group button in toolbarpreview_btn_tooltipVis din sekvens, som brugeren kommer til at se denTool tip message for preview button in toolbarmnu_file_exitExitFile Menu Exital_activity_openContent_invalidBeklager, du er nødt til at vælge en aktivitet før du klikker på knappen "Åbn/Redigér aktivitetsindhold" menuen i højrekliksmenue aktiviteter. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_design_export_unsavedDu kan ikke eksportere et design, der ikke er gemt.Alert message when trying to export can unsaved design.mnu_file_exportEksportérMenu bar Exportws_chk_overwrite_existingDenne mappe indeholder allerede en fil med navnet {0}Alert message when saving a design with the same filename as an existing design.ws_no_file_openIngen fil fundetAlert message if no matching file is found to open in selected folder of Workspace.branch_btnGrenLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFlowLabel for Flow button in Toolbarmnu_file_importImportérMenu bar Importws_click_virtual_folderKan ikke bruge denne mappe.Alert message for trying to use a virtual folder to save/open a file.pi_parallel_titleParallel aktivitetTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceDu kan ikke lave en cirkulær sekvensError message when a transition from one activity to another is creating a circular loopbin_tooltipTræk en aktivitet til denne skraldespand for at fjerne den fra aktivitetssekvensenTool tip message for canvas bincv_gateoptional_hit_chkDu kan ikke tilføje en port aktivitet som valgfri aktivitetError message when user drags gate activity over to optional containerprefix_copyof_countKopi ({0}) afPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidDu kan ikke gemme et design i denne mappe. Vælg venligst en gyldig undermappe.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityEn forbindelse fra {0} eksisterer alleredeError message when a transition from the activity already existws_entre_file_nameVælg et navn til designet og klik dernæst på knappen "Gem"Error message when user try to save a design with no file namecv_activity_helpURL_undefinedIngen hjælp tilgængelig om {0}Alert message when a tool activity has no help url defined.cv_activity_dbclick_readonlyDu kan ikke redigere værktøjer i et read-only design. Gem en kopi af designet og prøv igen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblRead OnlyLabel for top left of canvas shown when a read-only design is open.ld_val_issue_columnEmneThe heading on the issue in the ValidationIssuesDialogld_val_titleEmner til valideringThe title for the dialoglicense_not_selectedDer er ikke valgt nogen licens - vælg venligst énShown if no license is selected in the drop down in workspacemnu_edit_redoGentagMenu bar Edit > Redomnu_edit_undoFortrydMenu bar Edit > Undomnu_fileFilMenu bar Filemnu_file_closeLukMenu bar Closemnu_file_newNyMenu bar Newmnu_file_openÅbnMenu bar Openmnu_file_saveGemMenu bar savemnu_file_saveasGem somMenu bar Save asmnu_helpHjælpMenu bar Helpmnu_help_abtOm LAMSMenu bar Aboutmnu_tools_optTegn valgfriMenu bar Optionalmnu_tools_transTegn forbindelseMenu bar draw transitionnew_btnNyToolbar > New Buttonnew_confirm_msgEr du sikker på, at du vil slette det aktuelle design?Msg when user clicks new while working on the existing designnone_act_lblIngenNo gate activity selectedopen_btnÅbnToolbar > Open Buttonoptional_btnValgfriToolbar > Optional Buttonpaste_btnIndsætToolbar > Paste Buttonperm_act_lblTilladelseLabel for permission gate activitypi_activity_type_gatePort aktivitetActivity type for gate in PIpi_activity_type_groupingGruppeaktivitetActivity type for grouping in Property Inspectorpi_definelaterDefinér senereLabel for Define later for PIpi_end_offsetLuk portEnd offset labelpi_group_typeGruppeinddelingstypeProperty Inspector Grouping type drop downpi_hoursTimerHours label in Property Inspectorpi_lbl_currentgroupAktuel gruppeinddelingCurrent grouping label for PIpi_lbl_descBeskrivelseDescription Label for PIpi_lbl_groupGruppeinddelingGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMaximum aktiviteterlabel for maximum Activitiespi_min_actMinimum aktiviteterlabel for Minimum activitiespi_minsMinutterMins label in teh property inspectorpi_no_groupingIngenCombo title for no groupingpi_num_learnersAntal deltagerePI Num learners labelpi_optional_titleValgfri aktivitetTitle for oprional activity property inspectorpi_runofflineKør offlineLabel for Run Oflinepi_start_offsetÅbn portStart offset labelpi_titleEgenskaberOn the title bar of the PIprefix_copyofKopi afPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAnnullér6prefs_dlg_lng_lblSprog7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titleForetrukne indstillinger4property_inspector_titleEgenskaberOn the title bar of the PIrandom_grp_lblTilfældigLabel for the grouping drop down in the PropertyInspectorrename_btnOmdøbLabel for Rename Buttonsave_btnGemToolbar > Save buttonsched_act_lblSkemaLabel for schedule gate activitysynch_act_lblSynkronisérUsed as a label for the Synch Gate Activity Typetk_titleVærktøjskasse for aktiviteterLabel for Activities Toolkit Paneltrans_btnForbindelseToolbar > Transition Buttontrans_dlg_gateSynkroniseringHeader for the transition props dialogtrans_dlg_gatetypecmbTypeGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleForbindelseTitle for the transition properties dialogws_click_folder_fileKlik venligst enten på en mappe til at gemme i eller et design, som skal overskrivesError msg if no folder or file is selectedws_copy_same_folderKilde- og destinationsmapperne er identiskeThe user has tried to drag and drop to the same placews_dlg_cancel_buttonFortryd2ws_dlg_filenameFilnavnLabel for File name in workspace windowws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÅbnWsp Dia Open Button labelws_dlg_properties_buttonEgenskaberWorkspace dialogue Properties btn labelws_dlg_save_btnGemWsp Dia Save Button labelws_dlg_titleArbejdsområde0ws_newfolder_insSkriv navnet på den nye mappeInstructions on the new name pop uptrans_dlg_cancelAnnullérCancel button on transition dialogflow_btn_tooltipKontrolerer arbejdsgangen i aktiviteternetool tip message for flow button in toolbaral_alertNB!Generic title for Alert windowal_cancelAnnullérTo Confirm title for LFErroral_confirmBekræftTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSprogindstillingerne er ikke indlæstmessage for unsuccessful language loadingapp_chk_themeloadTemaindstillingerne er ikke indlæstmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan ikke fortsætte. Kontakt venligst supportmessage if application cannot continue due to any errorcv_invalid_trans_targetDu kan ikke lave en forbindelse til dette objektError message for when transition tool is dropped outside of valid target activitydb_datasend_confirmTak for at sende data til serverenMessage when user sucessfully dumps data to the servergate_btnPortToolbar > Gate Buttondelete_btnSletLabel for Delete buttoncv_show_validationEmnerThe button on the confirm dialoggroup_btnGrupperToolbar > Group Buttoncv_valid_design_savedTillykke! - Dit design er accepteret og gemt!Message when a valid design has been savedact_tool_titleVærkstøjskasse for aktiviteterTitle for Activity Toolkit Panelchosen_grp_lblValgtLabel for the grouping drop down in the PropertyInspectorcopy_btnKopierToolbar > Copy Buttongrouping_act_titleGruppeinddelingDefault title for the grouping activityld_val_activity_columnAktivitetThe heading on the activity in the ValidationIssuesDialogmnu_editRedigérMenu bar Editmnu_edit_copyKopiérMenu bar Edit > Copymnu_edit_cutKlipMenu bar Edit > Cutmnu_edit_pasteIndsætMenu bar Edit > Pastecv_close_return_to_ext_srcLuk og gå tilbage til {0}Button label used on close and return button in save confirm message popup.branching_act_titleForgreningLabel for Branching Activitypi_activity_type_sequenceSekvens aktivitet (forgrening)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlik på et navn for at ændre dets værdiInstructions for Group Naming dialog.pi_branch_tool_acts_lblInput (Værktøj)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.branch_mapping_no_branch_msgIngen forgrening valgtAlert message when adding a Mapping without a Branch (Sequence) being selected.pi_condmatch_btn_lblSetup af betingelser for outputLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblOpret betingelser for outputDialog title for creating new tool output conditions.al_doneGjortLabel for dialog completion button.condmatch_dlg_cond_lst_lblBetingelserLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblMatch betingelser til forgreningerDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblStandardCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ TilføjLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblNulstil alleLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- FjernLabel for button to remove condition.to_conditions_dlg_from_lblFra:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblTil:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblDefinér værdimængdeHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblGrenColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblBetingelseColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppeColumn heading for showing group name of the mapping.branch_mapping_no_mapping_msgIngen Mapping valgt.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgIngen betingelse valgt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgAlle resterende betingelser vil blive knyttet til standardforgreningAlert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueVærdimængde {0} til {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactEksakt værdi af {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblSetup MappingsLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblDefinér i MonitorCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblKnyt grupper til forgreningerMap Groups to Branchesbranch_mapping_no_groups_msgIngen grupper valgtAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppe-baseretBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblForgreningerLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGrupperLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblNavngivning af grupperTitle label for Group Naming dialog.pi_activity_type_branchingForgreningsaktivitetActivity type for Branching in Property Inspector.pi_branch_typeForgreningstypeProperty Inspector Branching type drop down.pi_group_naming_btn_lblNavngivning af grupperLabel for button that opens Group Naming dialog.sequence_act_titleSekvensDefault title for Sequence Activity.tool_branch_act_lblVærktøj outputBranching type label for Tool output Branching. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/de_DE_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_activity_openContent_invalidSorry. Wählen Sie erst eine Aktivität aus, bevor Sie auf den Öffnen/bearbeiten-Button klicken oder das Kontentmenu über die rechte Maustaste nutzen. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_activity_copy_invalidSorry. Sie sind nicht berechtigt, diese Unteraktivität zu kopieren.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSorry. Sie sind nicht berechtigt, diese Unteraktivität auszuschneiden.Error message when user try to cut child activity from either optional or parallel activity containerccm_author_activityhelpAtivitätenhilfe für AutorenLabel for Custom Context Menuccm_open_activitycontentÖffnen/Bearbeiten des Inhalts einer AktivitätLabel for Custom Context Menuccm_copy_activityAktivität kopierenLabel for Custom Context Menuccm_paste_activityAktivität einfügenLabel for Custom Context Menuccm_piRechte prüfen....Label for Custom Context Menuws_dlg_descriptionBeschreibungLabel for description in Workspace dialog - Properties tabact_tool_titleAktivitätenTitle for Activity Toolkit Panelal_alertWarnungGeneric title for Alert windowal_cancelAbbrechenTo Confirm title for LFErroral_confirmBestätigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDie Sprachdatei wurde nicht geladenmessage for unsuccessful language loadingapp_chk_themeloadDie Themedatei wurde nicht geladenmessage for unsuccessful theme loadingapp_fail_continueDie Anwendung kann nicht fortgesetzt werden. Kontakten Sie bitte den Support.message if application cannot continue due to any errorchosen_grp_lblGewähltLabel for the grouping drop down in the PropertyInspectorcopy_btnKopierenToolbar > Copy Buttoncv_invalid_trans_targetZu diesem Objekt kann keine Verbindung herrgestellt werdenError message for when transition tool is dropped outside of valid target activityal_sendAbsendenSend button label on the system error dialogpi_num_groupsZahl der GruppenNumber of groups in Property inspectorcv_invalid_trans_target_to_activityEine Verbindung zuj {0} besteht bereitsError message when a transition to the activity already existcv_design_unsavedie Gestaltung wurde geändert. Weiter ohne vorheriges Speichern?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipLöscht bestehende Sequenz und stellt neue Arbeitsumgebung zur VerfügungTool tip message for new button in toolbaropen_btn_tooltipZeigt Dateidialog, um eine Sequenz zu öffnenTool tip message for open button in toolbarsave_btn_tooltipSchnellspeicherung der geöffneten Sequenztool tip message for save button in toolbarcopy_btn_tooltipKopieren der ausgewählten Aktivitättool tip message for copy button in toolbarpaste_btn_tooltipEinfügen einer Kopie der ausgewählten Aktivitättool tip message for paste button in toolbartrans_btn_tooltipZiehen Sie mit dem Stift Verbindungen zwischen den Aktivitäten (oder Sttrg-Taste)tool tip message for transition button in toolbaroptional_btn_tooltipErstellen einer Reihe optionaler Aktivitätentool tip message for optional button in toolbargate_btn_tooltipStop-Punkt anlegentool tip message for gate button in toolbarbranch_btn_tooltipZweig anlegen (ab LAMS 2.1)tool tip message for branch button in toolbarcv_show_validationProblemeThe button on the confirm dialogcv_valid_design_savedGratulation. Ihr Design ist geprüft und gespeichert worden.Message when a valid design has been saveddb_datasend_confirmDie Daten wurden an den Server übertragenMessage when user sucessfully dumps data to the serverdelete_btnLöschenLabel for Delete buttongate_btnSperreToolbar > Gate Buttongroup_btnGruppeToolbar > Group Buttongrouping_act_titleGruppen bildenDefault title for the grouping activityld_val_activity_columnAktivitätThe heading on the activity in the ValidationIssuesDialogld_val_doneErledigtThe button label for the dialogld_val_issue_columnProblemeThe heading on the issue in the ValidationIssuesDialogld_val_titleProbleme prüfenThe title for the dialoglicense_not_selectedWählen Sie bitte eine Lizenz für dieses DesignShown if no license is selected in the drop down in workspacemnu_editBearbeitenMenu bar Editmnu_edit_copyKopierenMenu bar Edit > Copymnu_edit_cutAusschneidenMenu bar Edit > Cutmnu_edit_pasteEinfügenMenu bar Edit > Pastemnu_edit_redoWiederholenMenu bar Edit > Redomnu_edit_undoRückgängigMenu bar Edit > Undomnu_fileDateiMenu bar Filemnu_file_closeSchließenMenu bar Closemnu_file_newNeuMenu bar Newmnu_file_openÖffnenMenu bar Openmnu_file_saveSpeichernMenu bar savemnu_file_saveasSpeichern als...Menu bar Save asmnu_helpHilfeMenu bar Helpmnu_toolsWerkzeugeMenu bar Toolsmnu_tools_optOptionen zeichnenMenu bar Optionalmnu_tools_prefsVoreinstellungenMenu bar preferencesmnu_tools_transVerbindungen zeichnenMenu bar draw transitionnew_btnNeuToolbar > New Buttonnew_confirm_msgSind Sie sicher, dass Sie das Design löschen wollen?Msg when user clicks new while working on the existing designnone_act_lblKeineNo gate activity selectedopen_btnÖffnenToolbar > Open Buttonoptional_btnOptionalToolbar > Optional Buttonpaste_btnEinfügenToolbar > Paste Buttonperm_act_lblRechteLabel for permission gate activitypi_activity_type_gateSperr-AktivitätActivity type for gate in PIpi_activity_type_groupingGruppenaktivitätenActivity type for grouping in Property Inspectorpi_definelaterSpäter festlegenLabel for Define later for PIpi_end_offsetSperre aufhebenEnd offset labelpi_group_typeArt der GruppeProperty Inspector Grouping type drop downpi_hoursStundenHours label in Property Inspectorpi_lbl_currentgroupDezeitige GruppeCurrent grouping label for PIpi_lbl_descBeschreibungDescription Label for PIpi_lbl_groupGruppierungGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actAktivitäten (max)label for maximum Activitiespi_min_actAktivitäten (min)label for Minimum activitiespi_minsMinutenMins label in teh property inspectorpi_num_learnersZahl der Teilnehmer/innenPI Num learners labelpi_optional_titleOptionale AktivitätTitle for oprional activity property inspectorpi_runofflineOffline ausführenLabel for Run Oflinepi_start_offsetSperre öffnenStart offset labelpi_titleRechteOn the title bar of the PIprefix_copyofKopie vonPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAbbrechen6prefs_dlg_lng_lblSprache7prefs_dlg_okOK5prefs_dlg_theme_lblTheme8prefs_dlg_titlePräferenzen4preview_btnVorschauToolbar > Preview Buttonproperty_inspector_titleRechteOn the title bar of the PIrandom_grp_lblZufallLabel for the grouping drop down in the PropertyInspectorrename_btnUmbenennenLabel for Rename Buttonsave_btnSpeichernToolbar > Save buttonsched_act_lblTerminLabel for schedule gate activitysynch_act_lblSynchronisierenUsed as a label for the Synch Gate Activity Typetk_titleAktivitätenLabel for Activities Toolkit Paneltrans_btnVerbindungToolbar > Transition Buttontrans_dlg_cancelAbbrechenCancel button on transition dialogtrans_dlg_gateSynchronisationHeader for the transition props dialogtrans_dlg_gatetypecmbTypGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleVerbindungTitle for the transition properties dialogws_RootRootRoot folder title for workspacews_click_folder_fileKlicken Sie auf einen Ordner, um darin abzuspeichern oder ein veorhandenes Design, um dieses zu überschreiben.Error msg if no folder or file is selectedws_copy_same_folderDer Quell- und Zielordner sind identischThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAbbrechen2ws_dlg_filenameDateinameLabel for File name in workspace windowws_dlg_location_buttonAblageortWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÖffnenWsp Dia Open Button labelws_dlg_properties_buttonRechteWorkspace dialogue Properties btn labelws_dlg_save_btnSpeichernWsp Dia Save Button labelws_dlg_titleArbeitsplatz0ws_newfolder_cancelAbbrechenCancel on the new folder name diaws_newfolder_insBitte geben Sie einen neuen Ordnernamen einInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionSie haben nicht die Berechtigung zum Durchführen dieser AktionMessage when user does not have write permission to complete actionws_rename_insGeben Sie bitte den neuen Namen einMessage of the new name for the userws_tree_mywspMein ArbeitsplatzThe root level of the treews_view_license_buttonAnsichtTo show the license to the useract_lock_chkHeben Sie zuerst die Sperre für die optionalen Aktivitäten auf, bevor Sie diese bearbeitenAlert Message if user drags the activity to locked optional activity container sys_error_msg_startFolgender Systemfehler ist aufgetreten:Common System error message starting linesys_errorSystemfehlerSystem Error elert window titlelbl_num_activitiesAktivitätenreplacement for word activitiesopt_activity_titleOptionale AktivitätenTitle for Optional Activity Containerws_license_lblLizenzLabel for Licence drop down on workspace properties tab viewws_license_comment_lblZusätzliche LizenzinformationenLabel for Licence Comment description below license drop downal_cannot_move_activitySorry. Diese Aktivität kann nicht verschoben werden.Alert message when user tries to move child activity of any parallel activityws_click_file_openKlicken sie bitte auf ein Design, um dieses zu öffnen.Alert message if folder tried to be opened.cv_invalid_optional_activityEntfernen der Verbindungen zu und von {0} bevor diese als optional angelegt wird.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDie zweite Aktivität in dieser Verbindung fehlt.Error message when target activity for transition is missingflow_btn_tooltipErstellt Ablaufkontrolletool tip message for flow button in toolbargroup_btn_tooltipGruppenaktivität anlegentool tip message for group button in toolbarpreview_btn_tooltipTeilnehmer/innenvorschau der SequenzTool tip message for preview button in toolbarmnu_file_exitAbbruchFile Menu Exitcv_design_export_unsavedSpeichern Sie bitte, bevor Sie exportieren.Alert message when trying to export can unsaved design.mnu_file_exportExportMenu bar Exportws_chk_overwrite_existingDieser Ordner enthält bereits eine Datei mit der Bezeichnung {0}Alert message when saving a design with the same filename as an existing design.ws_no_file_openKeine Datei gefundenAlert message if no matching file is found to open in selected folder of Workspace.branch_btnZweigLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnAblaufLabel for Flow button in Toolbarmnu_file_importImportMenu bar Importws_click_virtual_folderDieser Ordner kann nicht verwandt werden.Alert message for trying to use a virtual folder to save/open a file.pi_parallel_titleParallele AktivitätTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceSie können keine kreisförmige Sequenz anlegenError message when a transition from one activity to another is creating a circular loopbin_tooltipZiehen Sie eine Aktivität aus der Sequenz in den Abfalleimer, um sie zu entfernenTool tip message for canvas bincv_gateoptional_hit_chkEine Sperraktivität kann keine optionale Aktivität sein.Error message when user drags gate activity over to optional containerprefix_copyof_count{0}. Kopie vonPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidSie können Ihr Design nicht in diesem Ordner speichern. Wählen Sie einen Unterordner aus.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityEine Verbindung von {0} besteht bereits.Error message when a transition from the activity already existcv_activity_dbclick_readonlyDas Design ist schreibgeschützt. Erstellen Sie eine Kopie, um dann Änderungen vorzunehmen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSchreibgeschütztLabel for top left of canvas shown when a read-only design is open.al_empty_designSorry. Sie können ein leeres Design nicht speichern.alert message when user want to save an empty designcv_autosave_err_msgBei der automatischen Speicherung ist ein Fehler aufgetreten. Sollte der Fehler weiter auftreten, benachrichtigen Sie bitte die Systemadministration.Alert error message when auto-save fails.cv_autosave_rec_titleWarnungAlert title for auto save recovery message.mnu_file_recoverRückgängigMenu bar Recoversys_error_msg_finishSie müssen zuerst die LAMS Autorenfunktion erneut starten, bevor Sie fortsetzen können. Wollen Sie die Fehlernachricht speichern, um das Problem zubeheben?Common System error message finish paragraphmnu_help_helpHilfe zur Autorenfunktionlabel for menu bar Help - Authoring Help optionws_del_confirm_msgWollen Sie diese Datei/Ordner wirklich löschen?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_entre_file_nameGeben Sie bitte einen Namen für das Design ein und speichern Sie dann.Error message when user try to save a design with no file namews_file_name_emptySorry! Sie können nicht speichern, ohne einen Namen vergeben zu haben.Error message when user try to save a design with no file namecv_untitled_lblUnbenannt -1Label for Design Title bar on canvascv_activity_helpURL_undefinedDie Hilfeseite für {0} wurde nicht gefunden.Alert message when a tool activity has no help url defined.cv_invalid_design_savedDas gewählte Design ist nicht gültig. Die Einstellung wurde jedoch gespeichert. but it has been saved. Klicken Sie auf 'Probleme', um nähere Informationen zu erhalten.Message when an invalid design has been savedmnu_help_abtÜber LAMSMenu bar Aboutpi_no_groupingKeineCombo title for no groupingws_chk_overwrite_resourceVorsicht. Sie sind gerade dabei, eine Sequenz zu überschreiben.pi_daysTageDays label in property inspector for gate tooltrans_dlg_nogateKeineDrop down default for gate typecv_close_return_to_ext_srcSchließen und zurück zu {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedDie Änderungen wurden erfolgreich hinzugefügt.Changes have been successful applied.mnu_file_apply_changesÄnderungen hinzufügenApply Changesvalidation_error_transitionNoActivityBeforeOrAfterZu einer Verbindung gehören einen Aktivität an beiden Enden.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEine Aktivität benötigt eine Input und Output-VerbindungAn activity must have an input or output transitionvalidation_error_inputTransitionType1Diese Aktivität hat noch keine Input-VerbindungThis activity has no input transitionvalidation_error_inputTransitionType2Alle Aktivitäten verfügen über Input-Verbindungen.No activities are missing their input transition.validation_error_outputTransitionType1Diese Aktivität hat keine Output-VerbindungThis activity has no output transitionvalidation_error_outputTransitionType2Alle Aktivitäten verfügen über Output-Verbindungen.No activities are missing their output transition.cv_invalid_design_on_apply_changesEs können keine weiteren Veränderungen hinzugefügt werden. Alle Verbindungen bestehen.Cannot apply changes. There are one or more transitions missing.apply_changes_btnÄnderungen bestätigenApply Changesapply_changes_btn_tooltipÄnderungen des Designs bestätigen und Lektion beobachten.tool tip message for save button in toolbarcancel_btnAbbrechenToolbar - Cancel Buttoncv_activity_readOnlyAktivität kann nicht {0} sein. Die Aktivität ist zum Bearbeiten gesperrt.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblLivebearbeitungLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delentferntAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modverändertAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDas Design muss korrekt sein, um das Bearbeiten zu beenden.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgHinwies: Das Design wurde verändert. Wolen Sie ohne zu speichern abbrechen?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyVerbindung kann nicht {0} sein. Das Verbindungsziel kann nur gelesen werden. Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipZurück zur Beobachtung der Lektiontool tip message for cancel button in toolbar (edit mode)mnu_file_finishBeendenMenu bar File - Finish (Edit Mode)about_popup_title_lblÜber - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} ist ein Warenzeichen der [0} Foundation ({1}).Label displaying the trademark statement in the About dialog.about_popup_license_lblDieses Programm ist freie Software. Sie kann unter den Bedingungen der GNU General Public License Version 2 weiter verbreitet und verändert werden. Die GNU GPL wird veröffentlicht von der Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleVerzweigungLabel for Branching Activityal_activity_copy_invalidSorry. Wählen Sie erst eine Aktivität aus, bevor Sie auf den Kopieren-Button klickenAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasws_tree_orgsMeine GruppenShown in the top level of the tree in the workspacecv_autosave_rec_msgSie stellen die letzte oder noch nicht gespeicherte Version wieder her. Wenn Sie Fortfahren, wird das jetzige Design gelöscht. Fortsetzen?Message informing users that they have recovered data for a design.pi_activity_type_sequenceSequenzen (Verzweigungen)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlicken Sie den Namen an, um den Wert zu ändern.Instructions for Group Naming dialog.pi_branch_tool_acts_lblEingabe (Werkzeug)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.al_doneFertigLabel for dialog completion button.condmatch_dlg_cond_lst_lblBedingungenLabel for primary list heading on Condition to Branch Matching dialog.pi_condmatch_btn_lblBedingungen festlegenLabel for button to open dialog to create output conditions.condmatch_dlg_title_lblBedingungen Verzweigungen zuordnenDialog title for matching conditions to branches for Tool based Branching.branch_mapping_no_branch_msgKein Zweig ausgewählt.Alert message when adding a Mapping without a Branch (Sequence) being selected.to_conditions_dlg_title_lblAnlegen der Output-BedingungenDialog title for creating new tool output conditions.pi_defaultBranch_cb_lbldefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ HinzufügenLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblAlle löschenLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- EntfernenLabel for button to remove condition.to_conditions_dlg_from_lblVon:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblBis:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblBereich definieren:Heading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblZweigColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblBedingungColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppeColumn heading for showing group name of the mapping.branch_mapping_no_mapping_msgKeine Zuordnung gewählt.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgKeine Bedingung gewählt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgAlle verbleibenden Bedingungen werden dem default Zweig zugewiesen.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblZuordnungenHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueBereich {0} bis {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactExakter Wert von {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblZuordnungen anlegenLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblIm Monitor festlegenCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblGruppen zu Zweigen zuordnenMap Groups to Branchesbranch_mapping_no_groups_msgKeine Gruppen ausgewählt.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppenbasiertBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblVerzweigungenLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGruppenLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblGruppennamenTitle label for Group Naming dialog.pi_activity_type_branchingVerzweigungsaktivitätActivity type for Branching in Property Inspector.pi_branch_typeVerzweigungstypProperty Inspector Branching type drop down.pi_group_naming_btn_lblGruppennamenLabel for button that opens Group Naming dialog.sequence_act_titleSequenzDefault title for Sequence Activity.tool_branch_act_lblOutputBranching type label for Tool output Branching.chosen_branch_act_lblTrainerauswahlBranching type label for Teacher choice Branching.to_condition_start_valueStartwertValue representing the min boundary value of the conditions range.to_condition_end_valueEndwertValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeDie Bedingung {0} passt nicht zu den anderen Bedingungen.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction{0} kann nicht größer sein als {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgWarnung: Sie beabsichtigen die Lektion zu entfernen. Wollen Sie die Lektion als {0} behalten?Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueWeiterContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} mit einer bestehenden Verzweigung verbinden. Wollen Sie fortsetzen?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allHierfür gibt es BedingungenPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleBedingung istPhrase used at start of linked conditions alert message when clearing a single entry. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/el_GR_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3branch_mapping_no_mapping_msgΚαμμία Αντιστοίχηση δεν έχει επιλεγείbranch_mapping_dlg_match_dgd_lblΣυνδέσειςgrp_chk_clear_branch_mappingsΠροειδοποίηση: Αυτό θα σβήσει όλες τις υπάρχουσες ομάδες στην απεικόνιση των κλάδων που συνδέονται με αυτή την ομαδική δραστηριότητα, θέλετε να συνεχίσετε;pi_mapping_btn_lblΚαθορισμός Συνδέσεωνgroupmatch_dlg_title_lblΑντιστοίχιση Ομάδων σε Κλάδουςgate_closedκλεισμένοbranch_mapping_auto_condition_msgΌλες υπόλοιπες Συνθήκες θα συνδεθούν με τον προεπιλεγμένο κλάδο. competence_editor_warning_competence_mappedΗ ικανότητα που προσπαθήτε να σβήσετε αντιστοιχεί σε μία ή περισσότερες δραστηριότητες. Διαγράφοντας αυτή την ικανότητα θα διαγραφούν και οι συνδέσεις της. Είστε σίγουροι ότι θέλετε να συνεχίσετε;map_gate_conditions_btnΣυνθήκες Πύλης Χάρτηal_activity_view_competence_mappings_invalidΠαρακαλώ σιγουρευτείτε ότι έχετε επιλεγμένη μια δραστηριότητα πρίν προσπαθείσετε να δείτε τις συνδέσεις των ικανοτήτων της. gate_mapping_auto_condition_msgΌλες οι υπόλοιπες συνθήκες θα συνδεθούν στις επιλεγμένες κλειστές πύλες. groupnaming_dialog_col_groupName_lblΌνομα Ομάδαςws_dlg_insert_btnΕισαγωγήcompetence_editor_dlgΕπεξεργαστής Ικανοτήτωνgate_openανοικτόcompetence_editor_warning_title_existsΜια ικανότητα με τίτλο {0} υπάρχει ήδηcompetence_editor_warning_title_blankΟ τίτλος της ικανότητας δεν μπορεί να είναι κενόςcompetence_def_dlgΔιάλογος Ορισμού Ικανότηταςcompetence_editor_add_competence_btnΠροσθήκηsequence_act_titleΑκολουθίαto_condition_start_valueαρχική τιμή competence_mappings_btnΣυνδέσεις Ικανοτήτωνredundant_branch_mappings_msgΟ σχεδιασμός περιέχει διακλαδώσεις που δεν έχουν απομακρυνθεί. Θέλετε να συνεχίσετε;sequence_act_title_new{0} {1}to_condition_end_valueτελική τιμή mnu_file_insertdesignΕισαγωγή/(Συν)ένωση ...branch_mapping_dlg_branch_item_defaultΑγγλικά: {0} (προκαθορισμένα)pi_group_matching_btn_lblΣυνδυασμός Ομάδων με Κλάδουςpi_tool_output_matching_btn_lblΣυνδυασμός Συνθηκών με Κλάδουςrefresh_btnΑνανέωσηcv_invalid_trans_closed_sequenceΔεν μπορείτε να κάνετε μία νέα σύνδεση σε μία κλειστή ακολουθίαpi_equal_group_sizesΙσομεγέθης Ομάδεςto_conditions_dlg_condition_items_update_defaultConditionsΠρόκειται να ανανεώσετε τις συνθήκες της επιλεγμένης εξόδου. Αυτο θα διαγράψει όλους τους υπάρχοντες κλάδους. Θέλετε να συνεχίσετε; learner_choice_grp_lblΕπιλογές Εκπαιδευόμενουbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroΔεν μπορεί να ενημερωθεί όσο δεν βρίσκεται κανείς χρήστης που να έχει καθορίσει τις συνθήκες. Μπορεί να πρέπει να τις καθορίσετε στη σελίδα(ς) του εργαλείου συγγραφήςto_conditions_dlg_defin_user_defined_typeορισμένο από το χρήστηal_activity_paste_invalidΣυγνώμη, δεν μπορείτε να επικολλήσετε δραστηριότητες τέτοιου τύπου. al_group_name_invalid_blankΤα ονόματα των ομάδων δεν μπορεί να ειναι κενά. al_group_name_invalid_existingΤα ονόματα των ομάδων πρέπει να είναι μοναδικά. pi_group_naming_btn_lblΟνομασία Ομάδωνtool_branch_act_lblΑποτελέσματα Εκπαιδευομένωνchosen_branch_act_lblΕπιλογή Καθηγητήbranch_mapping_dlg_condition_linked_allΥπάρχουν συνθήκες branch_mapping_dlg_condition_linked_singleΗ συνθήκη είναι to_condition_untitled_item_lblΧωρίς τίτλο {0} branch_mapping_dlg_condition_col_value_maxΜεγαλύτερο ή ίσο από {0} optional_act_btnΔραστηριότηταgrouping_invalid_with_common_names_msgΗ '{0}' έχει περισσότερες από μία ομάδες με το ίδιο όομα και ο σχεδιασμός δεν μπορεί να αποθηκευθεί ως ομαδική δραστηριότητα. Παρακαλώ αναθεωρήστε την ομαδοποίηση και προσπαθήστε ξανά.optional_seq_btnΑκολουθίαpi_optSequence_remove_msg_titleΑπομάκρυνση ακολουθιώνpi_no_seq_actΑριθμός Ακολουθιών cv_invalid_trans_diff_branchesΔεν μπορείτε να δημιουργήσετε μία σύνδεση μεταξύ δραστηριοτήτων διαφορετικών κλάδωνcv_invalid_branch_target_to_activityΟ κλάδος στη {0} υπάρχει ήδη.cv_invalid_branch_target_from_activityΟ κλάδος από τη {0} υπάρχει ήδη.to_condition_invalid_value_range{0} δεν μπορεί να είναι μέσα στη σειρά μιας υπάρχουσας συνθήκηςto_condition_invalid_value_directionΟ {0} δεν μπορεί να είναι μεγαλύτερος από {1}.lbl_num_sequences{0} - Ακολουθιών pi_seqΑκολουθίεςis_remove_warning_msgΠΡΟΕΙΔΟΠΟΙΗΣΗ: Το μάθημα πρόκειται να αφαιρεθεί. Θέλετε αυτό κρατήσετε αυτό το μάθημα ως {0};al_continueΣυνεχείστεbranch_mapping_dlg_condition_linked_msgΟ {0} είναι συνδεμένος με έναν υπάρχοντα κλάδο. Επιθυμείτε να συνεχιστείτε; to_conditions_dlg_defin_long_typeσειράcv_activityProtected_child_activity_link_msgΤο {0} έχει ένα παιδί συνδεδεμένο με το {1} optional_seq_btn_tooltipΔημιουργία ενός συνόλου προαιρετικών ακολουθιώνal_cannot_move_to_diff_opt_seqΓια να μετακινήσετε μια δραστηριότητα σε μία διαφορετική ακολουθία με Προεραιτικές ακολουθίες, πρώτα σύρε την δραστηριότητα έξω από το την περιοχή της Προεραιτικής Ακολουθίας και μετά κάνε κλί και σύρε την στη νέα της θεση μέσα στις Προεραιτικές Ακολουθίες. to_conditions_dlg_defin_bool_typeαλήθεια/ψέμαcv_activityProtected_activity_remove_msgΓια να το απομακρύνετε παρακαλώ να ακυρώσετε την επιλογή αυτής της δραστηριότητας ως {0} .cv_activityProtected_activity_link_msgΑυτό το {0} είναι συνδεδεμένο με το {0} to_conditions_dlg_defin_item_header_lbl[ Επιλογή Εξόδου ]to_conditions_dlg_defin_item_fn_lbl{0} ({1}) pi_optSequence_remove_msgΗ ακολουθία(ες) που πρόκειται να απομακρυνθούν περιέχουν δραστηριότητες που θα διαγραφούν. Θέλετε να διαγράψετε αυτές τις ακολουθίες;to_conditions_dlg_condition_items_name_col_lblΌνομαactivityDrop_optSequence_error_msgΠαρακαλώ αφήστε τη δραστηριότητα μέσα σε μία από τις ακολουθίες. arrange_act_btnΤακτοποιήστε τις Δραστηριότητεςto_conditions_dlg_condition_items_value_col_lblΣυνθήκηto_conditions_dlg_options_item_header_lbl[ Επιλογές ]close_mc_tooltipΕλαχιστοποίησηto_conditions_dlg_gte_lblΜεγαλύτερο ή ίσο απόbranching_act_titleΔιακλάδωσηto_conditions_dlg_lte_lblΜικρότερο ή ίσο απόcv_invalid_optional_seq_activity_no_branchesΑπομακρύνετε όλους τους συνδεδεμένους κλάδους από {0} πριν τον προσθέσετε σε μία προαιρετική ακολουθία.ta_iconDrop_optseq_error_msgΔεν υπάρχουν ενεργοποιημένες ακολουθίες σε αυτόν τον υποδοχέα.cv_eof_finish_invalid_msgΤο σχέδιο πρέπει να είναι έγκυρο για να ολοκληρώσετε την επεξεργασία.gpl_license_urlwww.gnu.org/licenses/gpl.txtact_seq_lock_chkΠαρακαλώ ξεκλειδώστε τον υποδοχέα Προαιρετικών Ακολουθιών πριν αναθέσετε αυτή τη δραστηριότητα σε μία προαιρετική ακολουθία. cv_invalid_optional_seq_activityΑφαιρέστε τις μεταβάσεις "από" και "προς" από το {0} πριν το καθορίσετε ως προαιρετική ακολουθία.stream_urlhttp:// {0} foundation.orgcv_invalid_optional_activity_no_branchesΔιαγράψτε όλες τις διασυνδέσεις από το {0} πριν το καθορίσετε ως προαιρετική δραστηριότητα.opt_activity_seq_titleΠροαιρετικές ακολουθίεςto_conditions_dlg_lt_lblΜικρότερο ή ίσο απόbranch_mapping_dlg_condition_col_value_minΜικρότερο από ή ίσο με {0}pi_actΔραστηριότητεςpi_activity_type_sequenceΔραστηριότητα Ακολουθίας ({0})groupnaming_dialog_instructions_lblΚάντε κλικ σε ένα όνομα για να αλλάξετε την τιμή του.branch_mapping_dlg_group_col_lblΟμάδαcv_activity_readOnlyΗ δραστηριότητα δεν μπορεί να είναι {0}. Η δραστηριότητα είναι μόνο για ανάγνωση.cv_edit_on_fly_lblΖωντανή Επεξεργασίαcv_element_readOnly_action_delδιαγραφήcv_element_readOnly_action_modμεταβλήθηκεpi_minsΛεπτάpi_branch_tool_acts_lblΕισαγωγή (εργαλείο)pi_condmatch_btn_lblΔημιουργία Συνθηκώνpi_branch_tool_acts_default---Επιλογή---pi_no_groupingΚαμίαcv_trans_readOnlyΗ μετάβαση δεν μπορεί να {0}. Ο στόχος της μετάβασης είναι μόνο για ανάγνωση.cancel_btn_tooltipΕπιστροφή στην εποπτεία μαθήματοςmnu_file_finishΤέλοςabout_popup_title_lblΠερί - {0}about_popup_version_lblΈκδοσηabout_popup_copyright_lbl2002-2008 Ίδρυμα {0}. about_popup_trademark_lbl{0} είναι ένα εμπορικό σήμα {του ιδρύματος 0} ({1}).about_popup_license_lblΑυτό το πρόγραμμα είναι ελεύθερο λογισμικό μπορείτε να το διανείμετε ή/και να το τροποποιήσετε υπό τους όροους των αδειών GNU όπως δημοσιεύονται από το Ίδρυμα Ελεύθερου Λογισμικού.stream_reference_lblLAMS to_conditions_dlg_title_lblΔημιουργήστε Συνθήκες Εξόδουal_doneΕγινε condmatch_dlg_cond_lst_lblΣυνθήκεςcondmatch_dlg_title_lblΑντιστοίχηση Συνθηκών σε Κλάδουςpi_defaultBranch_cb_lblπροεπιλογή to_conditions_dlg_add_btn_lbl+ Προσθέστεto_conditions_dlg_clear_all_btn_lblΚαθαρισμός Όλωνto_conditions_dlg_remove_item_btn_lbl- Αφαιρέστε to_conditions_dlg_from_lblΑπό: to_conditions_dlg_to_lblΠρος: to_conditions_dlg_range_lblΕύροςbranch_mapping_dlg_branch_col_lblΚλάδοςbranch_mapping_dlg_condition_col_lblΟροςbranch_mapping_no_branch_msgΚανένας Κλάδος δεν έχει επιλεγείbranch_mapping_no_condition_msgΚαμία Συνθήκη δεν έχει επιλεγείbranch_mapping_dlg_condition_col_valueΣειρά {0} {1}branch_mapping_dlg_condition_col_value_exactΑκριβή τιμή {0} {1}pi_define_monitor_cb_lblΟρίστε στο Περιβάλλον Ελέγχουbranch_mapping_no_groups_msgΚαμμία ομάδα δεν επιλέχθηκεgroup_branch_act_lblΒασισμένη σε Ομάδαbranch_mapping_dlg_branches_lst_lblΚλάδοιgroupmatch_dlg_groups_lst_lblΟμάδεςgroupnaming_dlg_title_lblΟνομασία Ομάδαςpi_activity_type_branchingΔραστηριότητα Διακλάδωσηςpi_branch_typeΕίδος διακλάδωσηςflow_btn_tooltipΔημιουργία διαγράμματος ελέγχου δραστηριοτήτωνgroup_btn_tooltipΔημιουργία Ομαδικής Δραστηριότηταςpreview_btn_tooltipΠροεπισκόπηση της Ακολουθίας σας όπως θα τη βλέπουν οι Εκπαιδευόμενοι.cv_activity_dbclick_readonlyΔεν είναι δυνατή η επεξεργασία εργαλείων ενός μόνο-για ανάγνωση σχεδιασμού. Παρακαλώ αποθηκεύστε ένα αντίγραφο του σχεδιασμού και προσπαθήστε πάλι.cv_readonly_lblΜόνο για Ανάγνωσηal_empty_designΛυπούμαστε, Δε μπορείτε να αποθηκεύσετε ένα άδειο σχέδιοcv_autosave_rec_msgΕίστε έτοιμοι για ανάκτηση των χαμένων ή μη-αποθηκευμένων σχεδιασμών. Ο τρέχον σχεδιασμός θα διαγραφεί. Θέλετε να συνεχίσετε;cv_autosave_rec_titleΠροσοχήmnu_file_recoverΑνάκτηση...cv_activity_copy_invalidΣυγνώμη! Δεν επιτρέπεται η αντιγραφή της δραστηριότητας-παιδί. cv_activity_cut_invalidΣυγνώμη! Δεν επιτρέπεται η αποκοπή αυτής της δραστηριότητας-παιδί. al_activity_copy_invalidΛυπούμαστε! Πρέπει να επιλέξετε τη δραστηριότητα πριν πατήστε αντιγραφήal_activity_openContent_invalidΣυγγνώμη! Απαιτείται να έχετε επιλέξειτη δραστηριότητα πριν να κάντε κλικ στο στοιχείο του μενού Άνοιγμα/Επεξεργασία Περιεχομένου Δραστηριότητας στο μενού με το δεξί κλικ της δραστηριότητας.ws_del_confirm_msgΕίστε σίγουροι ότι θέλετε να διαγράψετε αυτό το αρχείο/φάκελο;ws_file_name_emptyΛυπούμαστε! Δε μπορείτε να αποθηκεύσετε ένα σχέδιο χωρίς όνομαcv_activity_helpURL_undefinedΔεν μπορώ να βρώ βοήθεια για τη σελίδα {0}cv_untitled_lblΑνώνυμη-1mnu_help_helpΒοήθεια Συγγραφήςccm_open_activitycontentΆνοιγμα/Επεξεργασία Περιεχομένου Δραστηριότηταςccm_copy_activityΑντιγραφή Δραστηριότηταςccm_paste_activityΕπικόλληση Δραστηριότηταςccm_piΕπιθεώρηση ιδιότητας ...ccm_author_activityhelpΒοήθεια Συγγραφέα για τη Δραστηριότηταws_dlg_descriptionΠεριγραφήtrans_dlg_nogateΤίποτεpi_daysΗμέρεςcv_close_return_to_ext_srcΚλείσιμο και μετάβαση πίσω στο {0}cv_eof_changes_appliedΟι αλλαγές έχουν γίνει επιτυχώςmnu_file_apply_changesΕφαρμογή Αλλαγώνvalidation_error_transitionNoActivityBeforeOrAfterΜια μετάβαση πρέπει να έχει μια δραστηριότητα πριν από ή μετά από αυτήνvalidation_error_activityWithNoTransitionΜια δραστηριότητα πρέπει να έχει μια μετάβαση εισόδου ή εξόδου validation_error_inputTransitionType1Αυτή η δραστηριότητα δεν έχει καμία μετάβαση εισόδουvalidation_error_inputTransitionType2Καμία από τις δραστηριότητες δεν έχει χάσει την μετάβαση εισόδου.validation_error_outputTransitionType1Αυτή η δραστηριότητα δεν έχει καμία μετάβαση εξόδουvalidation_error_outputTransitionType2Καμμία από τις δραστηριότητες δεν έχει χάσει την μετάβαση εξόδου. cv_invalid_design_on_apply_changesΔεν μπορείτε να εφαρμόσετε τις αλλαγές. Λείπουν μια ή περισσότερες μεταβάσεις.apply_changes_btnΕφαρμογή αλλαγώνapply_changes_btn_tooltipΕφαρμογή αλλαγών στο σχέδιο και επιστροφή στην οθόνη μαθήματος.cancel_btnΆκυροws_tree_mywspΟ Χώρος Εργασίας μουws_tree_orgsΟι Ομάδες μουws_view_license_buttonΠροβολήact_lock_chkΠαρακαλώ, ξεκλειδώστε την Προαιρετική Δραστηριότητα πριν καθορίσετε αυτήν την δραστηριότητα ως προαιρετική.sys_error_msg_startΈχει εμφανιστεί το ακόλουθο λάθος συστήματος: sys_error_msg_finishΑπαιτείται επανεκκίνηση του LAMS "Συγγραφέας" για να συνεχίσετε. Θέλετε να αποθηκεύσετε τις παρακάτω πληροφορίες για το λάθος ώστε να βοηθήσετε στην επίλυση αυτού του προβλήματος;sys_errorΛάθος συστήματοςpi_num_groupsΑριθμός Ομάδωνpi_parallel_titleΠαράλληλη Δραστηριότηταopt_activity_titleΠροαιρετική Δραστηριότηταlbl_num_activities{0}-Δραστηριότητεςal_sendΑποστολήal_cannot_move_activityΛυπούμαστε, δεν μπορείτε να μετακινήσετε αυτή τη δραστηριότητα. cv_gateoptional_hit_chkΔεν μπορείτε να προσθέσετε μία δρασηριότητα πύλης σαν μια προαιρετική δραστηριότητα.prefix_copyof_countΑντιγραφή ({0}) απόws_save_folder_invalidΔεν μπορείτε να αποθηκεύσετε το σχέδιο σε αυτό το φάκελο. Παρακαλώ επιλέξτε έναν έγκυρο υποφάκελο.ws_click_file_openΠαρακαλώ κάντε κλικ στο Σχέδιο για να να ανοίξει.ws_license_lblΆδειαws_license_comment_lblΕπιπρόσθετες Πληροφορίες Άδειαςcv_invalid_optional_activityΑφαίρεση σε και από {0} μεταβάσεις πριν την τοποθέτηση μιας προαιρετικής δραστηριότηταςcv_trans_target_act_missingΗ δεύτερη δραστηριότητα της Μετάβασης λείπει.cv_invalid_trans_target_from_activityΗ Μετάβαση από {0} ήδη υπάρχει.cv_invalid_trans_target_to_activityΗ Μετάβαση σε {0} ήδη υπάρχει.branch_btnΔιακλάδωσηflow_btnΡοή mnu_file_importΕισαγωγήcv_design_export_unsavedΔε μπορεί να γίνει "εξαγωγή" μη αποθηκευμένου Σχεδίουmnu_file_exportΕξαγωγήws_chk_overwrite_existingΑυτός ο φάκελος περιέχει ήδη ένα αρχείο με όνομα {0}. ws_click_virtual_folderΔε μπορεί να χρησιμοποιηθεί ο φάκελος αυτόςmnu_file_exitΈξοδοςws_no_file_openΔεν βρέθηκε αρχείοcv_invalid_trans_circular_sequenceΔεν επιτρέπεται να έχετε κυκλική ακολουθία bin_tooltipΡίξτε μία δραστηριότητα σε αυτό το καλάθι για να την απομακρύνετε από την ακολουθία δραστηριοτήτωνnew_btn_tooltipΔημιουργία Νέας Ακολουθίας Δραστηριοτήτωνopen_btn_tooltipΆνοιγμα αποθηκευμένης Ακολουθίας Δραστηριοτήτωνcopy_btn_tooltipΑντιγραφή της επιλεγμένης δραστηριότηταςpaste_btn_tooltipΕπικόλληση ενός αντιγράφου της επιλεγμένης δραστηριότηταςtrans_btn_tooltipΣχεδίαση μεταβάσεων μεταξύ δραστηριοτήτων (ή με χρήση του πλήκτρου CTRL)optional_btn_tooltipΔημιουργία μιας ομάδας προαιρετικών δραστηριοτήτωνgate_btn_tooltipΔημιουργία ενός σημείου διακοπήςbranch_btn_tooltipΔημιουργία ενός κλάδου (διαθέσιμο στο LAMS v 2.1)none_act_lblΚαμίαopen_btnΆνοιγμαoptional_btnΠροαιρετικήpaste_btnΕπικόλλησηperm_act_lblΆδεια Πρόσβασηςpi_activity_type_gateΔραστηριότητα Πύληςpi_activity_type_groupingΟμαδική Δραστηριότηταpi_definelaterΚαθορίζονται από τον Επόπτηpi_end_offsetΚλείστε την πύληpi_group_typeΤύπος Ομαδοποίησηςpi_hoursΏρεςpi_lbl_currentgroupΤρέχουσα ομαδοποίησηpi_lbl_descΠεριγραφήpi_lbl_groupΟμαδοποίησηpi_lbl_titleΌνομαpi_max_actΜέγιστος {0}pi_min_actΕλάχιστος {0}ws_dlg_ok_buttonΟΚpi_num_learnersΑριθμός Εκπαιδευόμενων pi_optional_titleΠροαιρετική Δραστηριότηταpi_runofflineΔραστ. χωρίς απευθείας σύνδεσηpi_start_offsetΆνοιγμα πύληςprefix_copyofΑντιγραφή τηςprefs_dlg_cancelΆκυροprefs_dlg_lng_lblΓλώσσαprefs_dlg_okΟΚprefs_dlg_theme_lblΘέμαprefs_dlg_titleΠροτιμήσειςpreview_btnΠροεπισκόπησηrandom_grp_lblΤυχαίαrename_btnΜετονομασίαsched_act_lblΧρονοδιάγραμμαsynch_act_lblΣυγχρονίστεtk_titleΕργαλείο Δραστηριοτήτωνtrans_btnΜετάβασηtrans_dlg_cancelΆκυροtrans_dlg_gateΣυγχρονισμόςtrans_dlg_gatetypecmbΤύποςtrans_dlg_okΟΚtrans_dlg_titleΜετάβασηws_RootΡίζαws_dlg_open_btnΆνοιγμαws_chk_overwrite_resourceΠροσοχή: πρόκειται να αντικαταστήσετε αυτή την ακολουθία!ws_copy_same_folderΗ πηγή και ο φάκελος προορισμού έχουν το ίδιο όνομαws_dlg_cancel_buttonΆκυροws_dlg_filenameΌνομα Αρχείουws_dlg_location_buttonΤοποθεσίαmnu_file_saveasΑποθήκευση ως ...mnu_file_saveΑποθήκευσηws_dlg_titleΧώρος Εργασίαςcv_autosave_err_msgΠρόβλημα κατα τη διάρκεια αυτόματης αποθήκευσης του σχεδίου σας. Αν το πρόβλημα επαναλαμβάνεται παρακαλώ επικοινωνήστε με το Διαχειριστή του Συστήματοςws_newfolder_cancelΆκυροal_cancelΆκυροws_newfolder_insΠαρακαλώ εισάγετε ένα νέο όνομα αρχείουws_newfolder_okΟΚal_okΟΚws_dlg_save_btnΑποθήκευσηws_no_permissionΛυπούμαστε, δεν έχετε άδεια να γράψετε σε αυτό τον πόροws_rename_insΠαρακαλώ εισάγετε ένα νέο όνομαal_alertΕιδοποίησηact_tool_titleΕργαλείο Δραστηριοτήτωνws_click_folder_fileΠαρακαλώ πατήστε είτε σε έναν Κατάλογο για αποθήκευση είτε σε μία Σχεδίαση για επικάλυψηsave_btnΑποθήκευσηal_confirmΕπιβεβαίωσηgroup_btnΟμάδαgrouping_act_titleΟμαδοποίησηapp_chk_langloadΤα δεδομένα της γλώσσας δεν έχουν φορτωθείapp_chk_themeloadΤα δεδομένα του θέματος δεν έχουν φορτωθείapp_fail_continueΗ εφαρμογή δεν μπορεί να συνεχίσει. Παρακαλώ επικοινωνείστε με την τεχνική υποστήριξηchosen_grp_lblΕπιλογή στην Εποπτείαcopy_btnΑντιγραφήcv_invalid_design_savedΤο σχέδιό σας δεν είναι ακόμα έγκυρο, αλλά έχει αποθηκευθεί, κάντε κλικ στο "Ζητήματα" για να δείτε το λάθος. ld_val_activity_columnΔραστηριότηταcv_invalid_trans_targetΔεν μπορείτε να δημιουργήσετε μια μετάβαση σε αυτό το αντικείμενοcv_show_validationΖητήματαcv_valid_design_savedΣυγχαρητήρια! - Η σχεδίαση είναι έγκυρη και έχει αποθηκευθείsave_btn_tooltipΑποθήκευση Ακολουθίας Δραστηριοτήτωνdb_datasend_confirmΕυχαριστώ για την αποστολή των δεδομένων στον εξυπηρετητήdelete_btnΔιαγραφήgate_btnΠύληld_val_doneΈγινεview_students_before_selectionΠροβολή εκπαιδευομένων πριν από την επιλογή;ld_val_issue_columnΖήτημαld_val_titleΕπικύρωση ζητήματοςlicense_not_selectedΚαμία άδεια δεν έχει ακόμα επιλεγεί - Παρακαλώ επιλέξετε μίαmnu_editΕπεξεργασίαmnu_edit_copyΑντιγραφήmnu_edit_cutΑποκοπήmnu_edit_pasteΕπικόλλησηmnu_edit_redoΑκύρ. Αναίρεσηςmnu_edit_undoΑναίρεσηcv_design_unsavedΤο Σχέδιο της επιφάνειας έχει αλλάξει. Θέλετε να συνεχίσετε χωρίς αποθήκευση;mnu_fileΑρχείοmnu_file_closeΚλείσιμοmnu_file_newΝέαws_entre_file_nameΠαρακαλώ δώστε το όνομα του σχεδίου και μετά πατήστε Αποθήκευσηmnu_file_openΆνοιγμαcv_eof_finish_modified_msgΠροειδοποίηση: Το σχέδιό σας έχει τροποποιηθεί. Επιθυμείτε να κλείσετε χωρίς αποθήκευση;mnu_helpΒοήθειαmnu_help_abtΠληροφορίες για το LAMSmnu_toolsΕργαλείαmnu_tools_optΠροαιρετικήmnu_tools_prefsΕπιλογέςmnu_tools_transΜετάβαση new_btnΝέαnew_confirm_msgΕίστε σίγουροι ότι θέλετε να διαγράψετε τη σχεδίαση από την οθόνη;competences_lblΙκανότητεςcompetences_mapped_to_act_lblΙκανότητεςws_dlg_properties_buttonΙδιότητεςmap_comptence_btnΣύνδ. με Ικανότητεςpi_titleΕπιθεώρηση Ιδιοτήτωνproperty_inspector_titleΙδιότητες:condmatch_dlg_message_lblΟ πρεπιλεγμένος κλάδος μπορεί να επιλεχθεί με κλικ στο τετραγωνίδιο «Προεπιλεγμένος» στην περιοχή ιδιοτήτων του επιθυμητού κλάδου.ws_dlg_date_modified_lblΤελευταία τροποποίηση: (0)ws_save_title_reserved_charsΟ Τίτλος δεν μπορεί να περιέχει ειδικούς χαρακτήρες: (0)mnu_file_import_communityΕισαγωγή από την Κοινότητα του LAMS ...gradebook_output_typeΈξοδος Βαθμολογίουsupport_act_btnΥποστήριξηsupport_act_btn_tooltip Δημιουργήστε μια σειρά από προαιρετικές δραστηριότητες υποστήριξης.support_act_titleΔραστηριότητα Υποστήριξης.support_msg_no_connectionΟι δραστηριότητες υποστήριξης δεν μπορούν να συνδεθούν με καμία άλλη δραστηριότητα.support_msg_invalid_childΟι δραστηριότητες τύπου {0} δεν μπορούν να προστεθούν ως δραστηριότητες υποστήριξηςsupport_msg_max_children_reachedΔεν είναι δυνατή η προσθήκη δραστηριότητας:{0} εδώ. Η δραστηριότητα υποστήριξης επιτρέπει το μέγιστο {1} δραστηριότητες παιδιά.support_msg_cannot_be_childΔεν μπορείτε να βάζετε μια δραστηριότητα υποστήριξης μέσα σε μια άλλη δραστηριότητα.cv_design_insert_warningΜόλις εισαγάγετε μια άλλη ακολουθία, δεν μπορείτε να ακυρώσετε αυτήν την πράξη - η παλαιά ακολουθία αυτόματα αποθηκεύεται με τη νέα ακολουθία που παρεμβάλλεται. Για να επιστρέψετε στην παλαιά ακολουθία σας, θα πρέπει διαγράψτε όλες τις νέες δραστηριότητες με το χέρι, και έπειτα να την αποθηκεύσετε. Για να αφήσει την τρέχουσα ακολουθία σας χωρίς αλλαγές, κάντε κλικ στο Άκυρο. Διαφορετικά κάντε κλικ στο Εντάξει για να επιλέξετε την ακολουθία που θα εισαγάγετε.preview_btn_tooltip_disabledΓια την προεπισκόπηση της δραστηριότητας θα πρέπει να την έχετε αποθηκεύσει και στη συνέχεια να επιλέξετε "Προεπισκόπηση" \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/en_AU_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleParallel Activityopt_activity_titleOptional Activityal_sendSendal_cannot_move_activitySorry you cannot move this activity.cv_activity_copy_invalidSorry! You are not allowed to copy this child activity.cv_activity_cut_invalidSorry! You are not allowed to cut this child activity.act_tool_titleActivities Toolkital_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportcopy_btnCopycv_invalid_trans_targetYou cannot create a transition to this objectcv_show_validationIssuesdb_datasend_confirmThanks for Sending data to serverdelete_btnDeletegate_btnGategroup_btnGroupgrouping_act_titleGroupingld_val_activity_columnActivityld_val_doneDoneld_val_issue_columnIssueld_val_titleValidation issuesmnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_edit_redoRedomnu_edit_undoUndomnu_fileFilemnu_file_closeClosemnu_file_newNewmnu_file_openOpenmnu_file_saveSavemnu_file_saveasSave as...mnu_helpHelpmnu_toolsToolsmnu_tools_optDraw Optionalmnu_tools_transDraw Transitionnew_btnNewnew_confirm_msgAre you sure you want to clear your design on the screen?none_act_lblNoneopen_btnOpenoptional_btnOptionalpaste_btnPasteperm_act_lblPermissionpi_activity_type_gateGate Activitypi_activity_type_groupingGrouping Activitypi_end_offsetClose gatepi_group_typeGrouping typepi_hoursHourspi_lbl_currentgroupCurrent Groupingpi_lbl_descDescriptionpi_lbl_groupGroupingpi_lbl_titleTitlepi_minsMinutespi_optional_titleOptional Activitypi_start_offsetOpen gatepi_titlePropertiesprefix_copyofCopy of prefs_dlg_cancelCancelprefs_dlg_lng_lblLanguageprefs_dlg_okOKprefs_dlg_theme_lblThemepreview_btnPreviewproperty_inspector_titlePropertiesrandom_grp_lblRandomrename_btnRenamesave_btnSavesched_act_lblSchedulesynch_act_lblSynchronisetk_titleActivities Toolkittrans_btnTransitiontrans_dlg_cancelCanceltrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRootws_click_folder_filePlease click on either a Folder to save in, or a Design to overwritews_copy_same_folderThe source and destination folders are the samews_dlg_cancel_buttonCancelws_dlg_filenameFile Namews_dlg_location_buttonLocationws_dlg_ok_buttonOKws_dlg_open_btnOpenws_dlg_properties_buttonPropertiesws_dlg_save_btnSavews_dlg_titleWorkspacews_newfolder_cancelCancelws_newfolder_insPlease enter a the new folder namews_newfolder_okOKws_no_permissionSorry, you do not have permission to write to this resourcews_rename_insPlease enter the new namews_tree_mywspMy Workspacews_view_license_buttonViewsys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errorchosen_grp_lblChoose in Monitoral_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.pi_no_groupingNonews_chk_overwrite_existingThis folder already contains a file named {0}.mnu_file_importImportprefix_copyof_countCopy ({0}) ofws_click_file_openPlease click on a Design to open.cv_gateoptional_hit_chkYou cannot add a gate activity as an optional activity.ws_save_folder_invalidYou cannot save a design in this folder. Please select a valid sub-folder.ws_license_lblLicensews_license_comment_lblAdditional License Informationcv_trans_target_act_missingSecond activity of the Transition is missing.cv_invalid_optional_activityRemove to and from transitions from {0} before setting it as an optional activity.cv_invalid_trans_target_to_activityA Transition to {0} already existcv_invalid_trans_target_from_activityA Transition from {0} already existws_del_confirm_msgAre you sure you want to delete this file / folder?branch_btnBranchflow_btnFlowbin_tooltipDrop an activity on this bin to remove it from the activity sequence.new_btn_tooltipClears current sequence and resets workspace ready for useopen_btn_tooltipShow File Dialogue to open an Activity Sequenceflow_btn_tooltipCreate flow controls activitiesgroup_btn_tooltipCreate a Grouping activitypreview_btn_tooltipPreview your Sequence as learners will see itcopy_btn_tooltipCopy the selected activitypaste_btn_tooltipPaste a copy of the selected activitysave_btn_tooltipQuick save current Activity Sequenceoptional_btn_tooltipCreate a set of optional activities. gate_btn_tooltipCreate a stop pointtrans_btn_tooltipUse this pen to draw transitions between activities (or press CTRL key)pi_daysDaysws_click_virtual_folderCannot use this folder.mnu_file_exitExitcv_design_export_unsavedYou cannot Export an unsaved design.mnu_file_exportExportrefresh_btnRefreshpi_num_groupsNumber of groupscv_design_unsavedThe design on the canvas has changed. Continue without saving?ws_no_file_openNo file found.cv_invalid_trans_circular_sequenceYou are not allowed to have a circular sequencetrans_dlg_nogateNonecv_autosave_rec_msgYou are about to recover the last lost or unsaved design. Your current design will be cleared. Continue?ws_chk_overwrite_resourceWarning: you are about to overwrite this sequence!al_activity_copy_invalidSorry! You are required to select the activity before you click copyapp_chk_langloadThe language data has not been loadedcv_activity_dbclick_readonlyYou are unable to edit tools of a read-only design. Please save a copy of the design and try again.cv_readonly_lblRead Onlylicense_not_selectedNo license currently selected - Please select one al_empty_designSorry, You cannot save an empty designws_dlg_descriptionDescriptioncv_valid_design_savedCongratulations! - Your design is valid and has been savedtool_branch_act_lblLearner's Outputcv_autosave_rec_titleWarningws_tree_orgsMy Groupsmnu_file_recoverRecover...ws_entre_file_namePlease enter the design name, and then click Save button.ws_file_name_emptySorry! You are not allowed to save a design with no file name.ccm_author_activityhelpAuthor Activity Helpccm_open_activitycontentOpen/Edit Activity Contentccm_copy_activityCopy Activityccm_paste_activityPaste Activityccm_piProperty Inspector...mnu_help_helpAuthoring Helpsupport_act_btnSupportsupport_act_btn_tooltipCreate a set of optional support activities.support_act_titleSupport Activitysupport_msg_no_connectionSupport activities cannot be connected to any other activitysupport_msg_invalid_childActivities of type {0} cannot be added as a support activitysupport_msg_max_children_reachedCannot drop activity: {0} here. The support activity permits a maximum of {1} child activities.support_msg_cannot_be_childCannot drop a support activity inside another activity.mnu_help_abtAbout LAMScv_untitled_lblUntitled - 1cv_activity_helpURL_undefinedCannot find help page for {0}cv_close_return_to_ext_srcClose and back to {0}about_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcancel_btn_tooltipReturn to monitor lesson.mnu_file_finishFinishmnu_file_apply_changesApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAn activity must have an input or output transitionvalidation_error_inputTransitionType1This activity has no input transitionvalidation_error_inputTransitionType2No activities are missing their input transition.validation_error_outputTransitionType1This activity has no output transitionvalidation_error_outputTransitionType2No activities are missing their output transition.cv_invalid_design_on_apply_changesCannot apply changes. There are one or more transitions missing.apply_changes_btnApply Changesapply_changes_btn_tooltipApply changes to design and return to monitor lesson.cancel_btnCancelcv_activity_readOnlyActivity cannot be {0}. The Activity is read-only.cv_edit_on_fly_lblLive Editcv_element_readOnly_action_delremovedcv_element_readOnly_action_modmodifiedcv_eof_finish_invalid_msgDesign must be valid in order to finish editing.cv_eof_finish_modified_msgWarning: Your design has been modified. Do you wish to close without saving?cv_trans_readOnlyTransition cannot be {0}. The Transition target is read-only.pi_branch_tool_acts_default--Selection--about_popup_copyright_lbl© 2002-2009 {0} Foundation. branching_act_titleBranchingpi_definelaterDefine in Monitorgroupnaming_dialog_instructions_lblClick on a name to change its value.pi_branch_tool_acts_lblInput (Tool)al_doneDonecondmatch_dlg_cond_lst_lblConditionscondmatch_dlg_title_lblMatch Conditions to Branchespi_defaultBranch_cb_lbldefaultto_conditions_dlg_add_btn_lbl+ Addto_conditions_dlg_clear_all_btn_lblClear Allto_conditions_dlg_remove_item_btn_lbl- Removebranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupbranch_mapping_no_branch_msgNo Branch selected.branch_mapping_no_mapping_msgNo Mapping selected.branch_mapping_no_condition_msgNo Condition selected.branch_mapping_auto_condition_msgAll remaining Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsbranch_mapping_dlg_condition_col_valueRange {0} to {1}branch_mapping_dlg_condition_col_value_exactExact value of {0}pi_mapping_btn_lblSetup Mappingspi_define_monitor_cb_lblDefine in Monitorgroupmatch_dlg_title_lblMap Groups to Branchesmap_comptence_btnMap to competenciescompetences_mapped_to_act_lblCompetenciesbranch_mapping_no_groups_msgNo Groups selected.group_branch_act_lblGroup-basedbranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupsgroupnaming_dlg_title_lblGroup Namingpi_activity_type_branchingBranching Activitypi_branch_typeBranching typepi_group_naming_btn_lblName Groupssequence_act_titleSequenceal_activity_paste_invalidSorry you cannot paste this type of activitychosen_branch_act_lblTeacher Choiceto_condition_start_valuestart valueto_condition_end_valueend valueto_condition_invalid_value_rangeThe {0} cannot be within the range of an existing condition.to_condition_invalid_value_directionThe {0} cannot be greater than the {1}.is_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson as {0}?condmatch_dlg_message_lblThe default branch can be chosen by clicking the "default" checkbox in the Properties area for the desired branch.al_continueContinuebranch_mapping_dlg_condition_linked_msg{0} linked to an existing branch. Do you wish to continue?branch_mapping_dlg_condition_linked_allThere are conditionsbranch_mapping_dlg_condition_linked_singleThis condition isto_condition_untitled_item_lblUntitled {0}redundant_branch_mappings_msgThe design contains unused branch mappings that will be removed. Do you wish to continue?cv_activityProtected_activity_remove_msgTo remove please deselect this activity as the {0}.cv_activityProtected_activity_link_msgThis {0} is linked to a {1}.cv_activityProtected_child_activity_link_msgThis {0} has a child linked to a {1}.optional_act_btnActivityoptional_seq_btnSequenceoptional_seq_btn_tooltipCreate a set of optional sequences.pi_optSequence_remove_msg_titleRemoving sequencespi_optSequence_remove_msgThe sequence(s) to be removed may contain activities that will be deleted. Do you wish to remove these sequences? pi_no_seq_actNo of Sequencespi_activity_type_sequenceSequence Activity ({0})lbl_num_sequences{0} - SequencesactivityDrop_optSequence_error_msgPlease drop the activity onto one of the sequences. cv_invalid_optional_seq_activity_no_branchesRemove any connected branches from {0} before adding it to an optional sequence.ta_iconDrop_optseq_error_msgThere are no sequences enabled on this container.act_seq_lock_chkPlease unlock the Optional Sequences container before assigning this activity to an optional sequence.cv_invalid_optional_seq_activityRemove to and from transitions from {0} before setting it to an optional sequence.cv_invalid_optional_activity_no_branchesRemove any connected branches from {0} before setting it as an optional activity.act_lock_chkPlease unlock the Optional Activity container before assigning this activity as optional.lbl_num_activities{0} - Activitiesto_conditions_dlg_lt_lblLess than or equalsopt_activity_seq_titleOptional Sequencesbranch_mapping_dlg_condition_col_value_minLess than or eq {0}branch_mapping_dlg_condition_col_value_maxGreater than or eq {0}pi_actActivitiespi_seqSequencespi_max_actMax {0}pi_min_actMin {0}pi_runofflineOffline Activitysequence_act_title_new{0} {1}to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblToto_conditions_dlg_range_lblRangeto_conditions_dlg_defin_long_typerangeto_conditions_dlg_defin_bool_typetrue/falseto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNameto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[ Options ]close_mc_tooltipMinimizecv_autosave_err_msgAn error has occurred while trying to auto-save your design. Please increase your Flash Player storage settings.to_conditions_dlg_gte_lblGreater than or equal toto_conditions_dlg_lte_lblLess than or equal togroupnaming_dialog_col_groupName_lblGroup Namews_dlg_insert_btnInsertbranch_mapping_dlg_branch_item_default{0} (default)to_conditions_dlg_title_lblCreate Output Conditionsto_conditions_dlg_defin_item_header_lbl[ Choose Output ] pi_condmatch_btn_lblCreate Conditionspi_group_matching_btn_lblMatch Groups to Branches pi_tool_output_matching_btn_lblMatch Conditions to Branchesto_conditions_dlg_condition_items_update_defaultConditionsYou are about to update your conditions for the selected output definition. This will clear all links to existing branches. Do you wish to continue?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroCannot update as no user defined conditions were found. You may need to set them up in the tool's authoring page(s).to_conditions_dlg_defin_user_defined_typeuser definedgrouping_invalid_with_common_names_msgCannot save the design as the grouping activity '{0}' has more than one group with the same name. Please review the grouping and try again.mnu_file_insertdesignInsert/Merge...preview_btn_tooltip_disabledTo Preview your sequence, you need to save it first, then click Previewcv_invalid_design_savedYour design is not yet valid, but it has been saved, click 'Potential Issues' to see what's wrong.pi_num_learnersNumber of learnerscv_design_insert_warningOnce you insert another sequence, you cannot Cancel this action – your old sequence is automatically saved with the new sequence inserted. To go back to your old sequence, you will need to delete all new sequence activities by hand, and then save. To leave your current sequence unchanged, click Cancel. Otherwise click OK to select a sequence to insert.cv_invalid_trans_diff_branchesCan't create a transition between activities in different branches. cv_invalid_branch_target_to_activityA branch to {0} already exists.cv_invalid_branch_target_from_activityA branch from {0} already exists.cv_invalid_trans_closed_sequenceCannot connect a new transition to a closed sequence.al_cannot_move_to_diff_opt_seqTo move an activity to a different sequence within Optional sequences, first drag the activity out of the Optional Sequence area, and then click and drag it to its new location inside Optional Sequences.al_group_name_invalid_blankGroup names cannot be blank.al_group_name_invalid_existingGroup names must be unique.learner_choice_grp_lblLearner's choicepi_equal_group_sizesEqual group sizescompetence_editor_dlgCompetence Editorcompetence_editor_warning_title_existsA competence with the title {0} already existscompetence_editor_warning_title_blankThe competence title cannot be blankcompetence_editor_warning_competence_mappedThe competence you are attempting to delete is currently mapped to one or more activities. Deleting this competence will remove its mappings. Are you sure you want to proceed?competences_lblCompetenciescompetence_editor_add_competence_btnAddcompetence_def_dlgCompetence Definition Dialogcompetence_mappings_btnCompetence Mappingsmap_gate_conditions_btnMap Gate Conditionsgate_mapping_auto_condition_msgAll remaining conditions will be mapped to the selected gates closed state.gate_openopengate_closedclosedal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.cv_eof_changes_appliedChanges have been successfully applied.mnu_file_import_communityImport from LAMS Community...ws_dlg_date_modified_lblLast modified: {0}ws_save_title_reserved_charsTitle cannot contain special characters: {0}mnu_tools_prefsPreferencesprefs_dlg_titlePreferencesgradebook_output_typeGradebook Outputview_students_before_selectionView learners before selection?arrange_act_btnArrange Activitiesgrp_chk_clear_branch_mappingsWarning: This will clear all existing group to branch mappings linked to this grouping activity, would you like to continue?branch_btn_tooltipCreate branches \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/en_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleParallel Activityopt_activity_titleOptional Activityal_sendSendal_cannot_move_activitySorry you cannot move this activity.cv_activity_copy_invalidSorry! You are not allowed to copy this child activity.cv_activity_cut_invalidSorry! You are not allowed to cut this child activity.act_tool_titleActivities Toolkital_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportcopy_btnCopycv_invalid_trans_targetYou cannot create a transition to this objectcv_show_validationIssuesdb_datasend_confirmThanks for Sending data to serverdelete_btnDeletegate_btnGategroup_btnGroupgrouping_act_titleGroupingld_val_activity_columnActivityld_val_doneDoneld_val_issue_columnIssueld_val_titleValidation issuesmnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_edit_redoRedomnu_edit_undoUndomnu_fileFilemnu_file_closeClosemnu_file_newNewmnu_file_openOpenmnu_file_saveSavemnu_file_saveasSave as...mnu_helpHelpmnu_toolsToolsmnu_tools_optDraw Optionalmnu_tools_transDraw Transitionnew_btnNewnew_confirm_msgAre you sure you want to clear your design on the screen?none_act_lblNoneopen_btnOpenoptional_btnOptionalpaste_btnPasteperm_act_lblPermissionpi_activity_type_gateGate Activitypi_activity_type_groupingGrouping Activitypi_end_offsetClose gatepi_group_typeGrouping typepi_hoursHourspi_lbl_currentgroupCurrent Groupingpi_lbl_descDescriptionpi_lbl_groupGroupingpi_lbl_titleTitlepi_minsMinutespi_optional_titleOptional Activitypi_start_offsetOpen gatepi_titlePropertiesprefix_copyofCopy of prefs_dlg_cancelCancelprefs_dlg_lng_lblLanguageprefs_dlg_okOKprefs_dlg_theme_lblThemepreview_btnPreviewproperty_inspector_titlePropertiesrandom_grp_lblRandomrename_btnRenamesave_btnSavesched_act_lblSchedulesynch_act_lblSynchronisetk_titleActivities Toolkittrans_btnTransitiontrans_dlg_cancelCanceltrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRootws_click_folder_filePlease click on either a Folder to save in, or a Design to overwritews_copy_same_folderThe source and destination folders are the samews_dlg_cancel_buttonCancelws_dlg_filenameFile Namews_dlg_location_buttonLocationws_dlg_ok_buttonOKws_dlg_open_btnOpenws_dlg_properties_buttonPropertiesws_dlg_save_btnSavews_dlg_titleWorkspacews_newfolder_cancelCancelws_newfolder_insPlease enter a the new folder namews_newfolder_okOKws_no_permissionSorry, you do not have permission to write to this resourcews_rename_insPlease enter the new namews_tree_mywspMy Workspacews_view_license_buttonViewsys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errorchosen_grp_lblChoose in Monitoral_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.pi_no_groupingNonews_chk_overwrite_existingThis folder already contains a file named {0}.mnu_file_importImportprefix_copyof_countCopy ({0}) ofws_click_file_openPlease click on a Design to open.cv_gateoptional_hit_chkYou cannot add a gate activity as an optional activity.ws_save_folder_invalidYou cannot save a design in this folder. Please select a valid sub-folder.ws_license_lblLicensews_license_comment_lblAdditional License Informationcv_trans_target_act_missingSecond activity of the Transition is missing.cv_invalid_optional_activityRemove to and from transitions from {0} before setting it as an optional activity.cv_invalid_trans_target_to_activityA Transition to {0} already existcv_invalid_trans_target_from_activityA Transition from {0} already existws_del_confirm_msgAre you sure you want to delete this file / folder?branch_btnBranchflow_btnFlowbin_tooltipDrop an activity on this bin to remove it from the activity sequence.new_btn_tooltipClears current sequence and resets workspace ready for useopen_btn_tooltipShow File Dialogue to open an Activity Sequenceflow_btn_tooltipCreate flow controls activitiesgroup_btn_tooltipCreate a Grouping activitypreview_btn_tooltipPreview your Sequence as learners will see itcopy_btn_tooltipCopy the selected activitypaste_btn_tooltipPaste a copy of the selected activitysave_btn_tooltipQuick save current Activity Sequenceoptional_btn_tooltipCreate a set of optional activities. gate_btn_tooltipCreate a stop pointtrans_btn_tooltipUse this pen to draw transitions between activities (or press CTRL key)pi_daysDaysws_click_virtual_folderCannot use this folder.mnu_file_exitExitcv_design_export_unsavedYou cannot Export an unsaved design.mnu_file_exportExportrefresh_btnRefreshpi_num_groupsNumber of groupscv_design_unsavedThe design on the canvas has changed. Continue without saving?ws_no_file_openNo file found.cv_invalid_trans_circular_sequenceYou are not allowed to have a circular sequencetrans_dlg_nogateNonecv_autosave_rec_msgYou are about to recover the last lost or unsaved design. Your current design will be cleared. Continue?ws_chk_overwrite_resourceWarning: you are about to overwrite this sequence!al_activity_copy_invalidSorry! You are required to select the activity before you click copyapp_chk_langloadThe language data has not been loadedcv_activity_dbclick_readonlyYou are unable to edit tools of a read-only design. Please save a copy of the design and try again.cv_readonly_lblRead Onlylicense_not_selectedNo license currently selected - Please select one al_empty_designSorry, You cannot save an empty designws_dlg_descriptionDescriptioncv_valid_design_savedCongratulations! - Your design is valid and has been savedtool_branch_act_lblLearner's Outputcv_autosave_rec_titleWarningws_tree_orgsMy Groupsmnu_file_recoverRecover...ws_entre_file_namePlease enter the design name, and then click Save button.ws_file_name_emptySorry! You are not allowed to save a design with no file name.ccm_author_activityhelpAuthor Activity Helpccm_open_activitycontentOpen/Edit Activity Contentccm_copy_activityCopy Activityccm_paste_activityPaste Activityccm_piProperty Inspector...mnu_help_helpAuthoring Helpsupport_act_btnSupportsupport_act_btn_tooltipCreate a set of optional support activities.support_act_titleSupport Activitysupport_msg_no_connectionSupport activities cannot be connected to any other activitysupport_msg_invalid_childActivities of type {0} cannot be added as a support activitysupport_msg_max_children_reachedCannot drop activity: {0} here. The support activity permits a maximum of {1} child activities.support_msg_cannot_be_childCannot drop a support activity inside another activity.mnu_help_abtAbout LAMScv_untitled_lblUntitled - 1cv_activity_helpURL_undefinedCannot find help page for {0}cv_close_return_to_ext_srcClose and back to {0}about_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcancel_btn_tooltipReturn to monitor lesson.mnu_file_finishFinishmnu_file_apply_changesApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAn activity must have an input or output transitionvalidation_error_inputTransitionType1This activity has no input transitionvalidation_error_inputTransitionType2No activities are missing their input transition.validation_error_outputTransitionType1This activity has no output transitionvalidation_error_outputTransitionType2No activities are missing their output transition.cv_invalid_design_on_apply_changesCannot apply changes. There are one or more transitions missing.apply_changes_btnApply Changesapply_changes_btn_tooltipApply changes to design and return to monitor lesson.cancel_btnCancelcv_activity_readOnlyActivity cannot be {0}. The Activity is read-only.cv_edit_on_fly_lblLive Editcv_element_readOnly_action_delremovedcv_element_readOnly_action_modmodifiedcv_eof_finish_invalid_msgDesign must be valid in order to finish editing.cv_eof_finish_modified_msgWarning: Your design has been modified. Do you wish to close without saving?cv_trans_readOnlyTransition cannot be {0}. The Transition target is read-only.pi_branch_tool_acts_default--Selection--about_popup_copyright_lbl© 2002-2009 {0} Foundation. branching_act_titleBranchingpi_definelaterDefine in Monitorgroupnaming_dialog_instructions_lblClick on a name to change its value.pi_branch_tool_acts_lblInput (Tool)al_doneDonecondmatch_dlg_cond_lst_lblConditionscondmatch_dlg_title_lblMatch Conditions to Branchespi_defaultBranch_cb_lbldefaultto_conditions_dlg_add_btn_lbl+ Addto_conditions_dlg_clear_all_btn_lblClear Allto_conditions_dlg_remove_item_btn_lbl- Removebranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupbranch_mapping_no_branch_msgNo Branch selected.branch_mapping_no_mapping_msgNo Mapping selected.branch_mapping_no_condition_msgNo Condition selected.branch_mapping_auto_condition_msgAll remaining Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsbranch_mapping_dlg_condition_col_valueRange {0} to {1}branch_mapping_dlg_condition_col_value_exactExact value of {0}pi_mapping_btn_lblSetup Mappingspi_define_monitor_cb_lblDefine in Monitorgroupmatch_dlg_title_lblMap Groups to Branchesmap_comptence_btnMap to competenciescompetences_mapped_to_act_lblCompetenciesbranch_mapping_no_groups_msgNo Groups selected.group_branch_act_lblGroup-basedbranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupsgroupnaming_dlg_title_lblGroup Namingpi_activity_type_branchingBranching Activitypi_branch_typeBranching typepi_group_naming_btn_lblName Groupssequence_act_titleSequenceal_activity_paste_invalidSorry you cannot paste this type of activitychosen_branch_act_lblTeacher Choiceto_condition_start_valuestart valueto_condition_end_valueend valueto_condition_invalid_value_rangeThe {0} cannot be within the range of an existing condition.to_condition_invalid_value_directionThe {0} cannot be greater than the {1}.is_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson as {0}?condmatch_dlg_message_lblThe default branch can be chosen by clicking the "default" checkbox in the Properties area for the desired branch.al_continueContinuebranch_mapping_dlg_condition_linked_msg{0} linked to an existing branch. Do you wish to continue?branch_mapping_dlg_condition_linked_allThere are conditionsbranch_mapping_dlg_condition_linked_singleThis condition isto_condition_untitled_item_lblUntitled {0}redundant_branch_mappings_msgThe design contains unused branch mappings that will be removed. Do you wish to continue?cv_activityProtected_activity_remove_msgTo remove please deselect this activity as the {0}.cv_activityProtected_activity_link_msgThis {0} is linked to a {1}.cv_activityProtected_child_activity_link_msgThis {0} has a child linked to a {1}.optional_act_btnActivityoptional_seq_btnSequenceoptional_seq_btn_tooltipCreate a set of optional sequences.pi_optSequence_remove_msg_titleRemoving sequencespi_optSequence_remove_msgThe sequence(s) to be removed may contain activities that will be deleted. Do you wish to remove these sequences? pi_no_seq_actNo of Sequencespi_activity_type_sequenceSequence Activity ({0})lbl_num_sequences{0} - SequencesactivityDrop_optSequence_error_msgPlease drop the activity onto one of the sequences. cv_invalid_optional_seq_activity_no_branchesRemove any connected branches from {0} before adding it to an optional sequence.ta_iconDrop_optseq_error_msgThere are no sequences enabled on this container.act_seq_lock_chkPlease unlock the Optional Sequences container before assigning this activity to an optional sequence.cv_invalid_optional_seq_activityRemove to and from transitions from {0} before setting it to an optional sequence.cv_invalid_optional_activity_no_branchesRemove any connected branches from {0} before setting it as an optional activity.act_lock_chkPlease unlock the Optional Activity container before assigning this activity as optional.lbl_num_activities{0} - Activitiesto_conditions_dlg_lt_lblLess than or equalsopt_activity_seq_titleOptional Sequencesbranch_mapping_dlg_condition_col_value_minLess than or eq {0}branch_mapping_dlg_condition_col_value_maxGreater than or eq {0}pi_actActivitiespi_seqSequencespi_max_actMax {0}pi_min_actMin {0}pi_runofflineOffline Activitysequence_act_title_new{0} {1}to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblToto_conditions_dlg_range_lblRangeto_conditions_dlg_defin_long_typerangeto_conditions_dlg_defin_bool_typetrue/falseto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNameto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[ Options ]close_mc_tooltipMinimizecv_autosave_err_msgAn error has occurred while trying to auto-save your design. Please increase your Flash Player storage settings.to_conditions_dlg_gte_lblGreater than or equal toto_conditions_dlg_lte_lblLess than or equal togroupnaming_dialog_col_groupName_lblGroup Namews_dlg_insert_btnInsertbranch_mapping_dlg_branch_item_default{0} (default)to_conditions_dlg_title_lblCreate Output Conditionsto_conditions_dlg_defin_item_header_lbl[ Choose Output ] pi_condmatch_btn_lblCreate Conditionspi_group_matching_btn_lblMatch Groups to Branches pi_tool_output_matching_btn_lblMatch Conditions to Branchesto_conditions_dlg_condition_items_update_defaultConditionsYou are about to update your conditions for the selected output definition. This will clear all links to existing branches. Do you wish to continue?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroCannot update as no user defined conditions were found. You may need to set them up in the tool's authoring page(s).to_conditions_dlg_defin_user_defined_typeuser definedgrouping_invalid_with_common_names_msgCannot save the design as the grouping activity '{0}' has more than one group with the same name. Please review the grouping and try again.mnu_file_insertdesignInsert/Merge...preview_btn_tooltip_disabledTo Preview your sequence, you need to save it first, then click Previewcv_invalid_design_savedYour design is not yet valid, but it has been saved, click 'Potential Issues' to see what's wrong.pi_num_learnersNumber of learnerscv_design_insert_warningOnce you insert another sequence, you cannot Cancel this action – your old sequence is automatically saved with the new sequence inserted. To go back to your old sequence, you will need to delete all new sequence activities by hand, and then save. To leave your current sequence unchanged, click Cancel. Otherwise click OK to select a sequence to insert.cv_invalid_trans_diff_branchesCan't create a transition between activities in different branches. cv_invalid_branch_target_to_activityA branch to {0} already exists.cv_invalid_branch_target_from_activityA branch from {0} already exists.cv_invalid_trans_closed_sequenceCannot connect a new transition to a closed sequence.al_cannot_move_to_diff_opt_seqTo move an activity to a different sequence within Optional sequences, first drag the activity out of the Optional Sequence area, and then click and drag it to its new location inside Optional Sequences.al_group_name_invalid_blankGroup names cannot be blank.al_group_name_invalid_existingGroup names must be unique.learner_choice_grp_lblLearner's choicepi_equal_group_sizesEqual group sizescompetence_editor_dlgCompetence Editorcompetence_editor_warning_title_existsA competence with the title {0} already existscompetence_editor_warning_title_blankThe competence title cannot be blankcompetence_editor_warning_competence_mappedThe competence you are attempting to delete is currently mapped to one or more activities. Deleting this competence will remove its mappings. Are you sure you want to proceed?competences_lblCompetenciescompetence_editor_add_competence_btnAddcompetence_def_dlgCompetence Definition Dialogcompetence_mappings_btnCompetence Mappingsmap_gate_conditions_btnMap Gate Conditionsgate_mapping_auto_condition_msgAll remaining conditions will be mapped to the selected gates closed state.gate_openopengate_closedclosedal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.cv_eof_changes_appliedChanges have been successfully applied.mnu_file_import_communityImport from LAMS Community...ws_dlg_date_modified_lblLast modified: {0}ws_save_title_reserved_charsTitle cannot contain special characters: {0}mnu_tools_prefsPreferencesprefs_dlg_titlePreferencesgradebook_output_typeGradebook Outputview_students_before_selectionView learners before selection?arrange_act_btnArrange Activitiesgrp_chk_clear_branch_mappingsWarning: This will clear all existing group to branch mappings linked to this grouping activity, would you like to continue?branch_btn_tooltipCreate branches \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/es_ES_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleActividad Paralelaopt_activity_titleActividad Opcionalbranch_mapping_dlg_condition_col_value_maxMayor o igual que {0}al_sendEnviaral_cannot_move_activityNo se puede mover esta actividadal_activity_openContent_invalidAtención: debe seleccionar la actividad previamente para poder editar su contenido. cv_activity_copy_invalidAtención: No se pueden copiar actividades que esten dentro de otra actividad (opcional o paralela)cv_activity_cut_invalidAtención: No se puede pegar actividades que sean parte de otra actividad (opcional o paralela)ws_save_folder_invalidNo se puede guardar esta secuencia en esta carpetar. Por favor seleccione un subdirectorio válido. prefix_copyof_countCopia ({0}) de cv_gateoptional_hit_chkNo se puede agregar una actividad puerta a una actividad opcional.ws_license_lblLicenciaws_license_comment_lblInformación adicionalcv_invalid_optional_activityNo se puede insertar actividades con transiciónes dentro de una actividad opcionalcv_invalid_trans_target_from_activityLa transición de {0} ya existe.cv_invalid_trans_target_to_activityLa transición hacia {0} ya existews_entre_file_nameEntre un nombre para el diseño y luego presione el botón de Guardar.cv_autosave_rec_msgEstá a punto de recuperar un diseño perdido o que no ha sido guardado. El diseño actual será borrado. ¿Desea continuar?condmatch_dlg_title_lblCondiciones de unión para las ramascv_trans_target_act_missingLa transición debe terminar en otra actividadws_del_confirm_msg¿Esta seguro que desea borrar este archivo o folder?branch_btnRamificaciónflow_btnFlujonew_btn_tooltipLimpiar la pantalla y comenzar un nuevo diseñoopen_btn_tooltipAbrir un diseño save_btn_tooltipGuardar diseñocopy_btn_tooltipCopiar la actividad seleccionadapaste_btn_tooltipPegar la actividad copiadatrans_btn_tooltipDibujar transiciones entre actividades (alternativamente use tecla CTRL)optional_btn_tooltipCrear una actividad opcionalgate_btn_tooltipCrear un punto de Stopflow_btn_tooltipActividades de control de flujogroup_btn_tooltipCrear Actividad de Grupospreview_btn_tooltipVista preliminar de diseño como lo verán los estudiantesbin_tooltipArrastre actividades que desea desechar a esta papelerapi_daysDiasact_tool_titleLibrería de Actividadesal_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okAceptarapp_chk_themeloadLa plantilla de diseño no ha podido ser cargadaapp_fail_continueLa aplicación ha dado un error y no puede continuar. Por favor contacte con soporte técnicocopy_btnCopiarcv_invalid_trans_targetNo se puede crear una transición a esta actividadcv_show_validationProblemasdb_datasend_confirmGracias por mandar información al servidordelete_btnBorrargate_btnPuertagroup_btnGrupogrouping_act_titleGruposld_val_activity_columnActividadld_val_doneTerminadold_val_issue_columnProblemald_val_titleProblemas de Validaciónmnu_editEditarmnu_edit_copyCopiarmnu_edit_cutCortarmnu_edit_pastePegarmnu_edit_redoRe-hacermnu_edit_undoDeshacermnu_fileArchivomnu_file_closeCerrarmnu_file_newNuevomnu_file_openAbrirmnu_file_saveGuardarmnu_file_saveasGuardar como...mnu_helpAyudamnu_toolsHerramientasmnu_tools_optActividades Opcionalesmnu_tools_prefsPreferenciasmnu_tools_transTransicionesnew_btnNuevonew_confirm_msg¿Esta seguro que desea eliminar el diseño en pantalla?none_act_lblNingunoopen_btnAbriroptional_btnOpcionalpaste_btnPegarperm_act_lblPermisopi_activity_type_gateActividad de Puertapi_activity_type_groupingActividad en Grupospi_end_offsetCerrar Puertapi_group_typeTipo de Grupopi_hoursHoraspi_lbl_currentgroupGrupos actualespi_lbl_descDescripciónpi_lbl_groupGrupospi_lbl_titleTítulopi_max_actMáximo número de actividadespi_min_actMínimo número de actividadespi_minsMinutospi_num_learnersNúmero de Estudiantespi_optional_titleActividades Opcionalespi_start_offsetAbrir Puertapi_titlePropiedadesprefix_copyofCopia deprefs_dlg_cancelCancelarprefs_dlg_lng_lblLenguajeprefs_dlg_okAceptarprefs_dlg_theme_lblTemaprefs_dlg_titlePreferenciaspreview_btnVista previaproperty_inspector_titlePropiedadesrandom_grp_lblAleatoriorename_btnRenombrarsave_btnGuardarsched_act_lblPor tiemposynch_act_lblSincronizadotk_titleLibrería de Actividadestrans_btnTransicióntrans_dlg_cancelCancelartrans_dlg_gateSincronizacióntrans_dlg_gatetypecmbTipotrans_dlg_okAceptartrans_dlg_titleTransiciónws_RootRaízws_click_folder_filePor favor pulse sobre un directorio o sobre un archivo para sobreescribirws_copy_same_folderLa carpeta de origen y destino es la mismaws_dlg_cancel_buttonCancelarws_dlg_filenameNombre de Archivows_dlg_location_buttonLugarws_dlg_ok_buttonAceptarws_dlg_open_btnAbrirws_dlg_properties_buttonPropiedadesws_dlg_save_btnGuardarws_dlg_titleEspacio de Trabajows_newfolder_cancelCancelarws_newfolder_insNuevo nombre de carpetaws_newfolder_okAceptarws_no_permissionNo tiene permiso para escribir en esta carpetaws_rename_insNuevo nombrews_tree_mywspMi Espacio de Trabajows_view_license_buttonMás Informaciónsys_error_msg_startHa occurido un error de sistema: sys_error_msg_finishNecesita reiniciar LAMS Autor. ¿Desea guardar la información del fallo para ayudar a los desarrolladores a solucionar el problema?sys_errorError de sistemamnu_file_exitSalirpi_num_groupsNúmero de Gruposcv_design_unsavedSu diseño ha cambiado. ¿Desea continuar sin salvar los cambios?cv_design_export_unsavedNo se puede exportar un diseño que no ha sido salvado. mnu_file_exportExportarmnu_file_importImportarws_no_file_openNo se encontró archivows_chk_overwrite_existingEsta carpeta ya contiene un archivo llamado {0}.ws_click_virtual_folderNo se puede utilizar esta carpetaact_lock_chkPor favor, desbloque la Actividad Opcional antes de asignar esta actividadact_seq_lock_chkDesbloqué el contenedor de Secuencia Opcional antes de asignar o añadir ws_chk_overwrite_resourceAtención: esta por sobreescribir un archivotrans_dlg_nogateNingunacv_invalid_design_savedEl diseño se ha guardado aunque aún no es valido. Para más información presione el botón "Problemas"app_chk_langloadEl diccionario de lenguaje no ha podido ser cargadosupport_msg_max_children_reachedNo puede poner actividad {0} aqui. Las actividades de soporte permiten un mínimo de {1} actividadessupport_act_btnSoportesupport_act_btn_tooltipCrear actividades de soporte opcionalessupport_act_titleActividad de Soportesupport_msg_no_connectionLas actividades de soporte no pueden formar parte de la secuenciasupport_msg_invalid_childLas actividades de tipo {0} no se pueden incluir como actividades de soportesupport_msg_cannot_be_childNo se puede poner una actividad soporte dentro de otra actividad.pi_no_groupingNingunocv_valid_design_savedSu diseño es válido y ha sido guardadocv_activity_dbclick_readonlyNo se puede editar este diseño ya que ha sido marcado como solo lectura. Si desea efectuar cambios, presione el botón de Guardar para crear una copia.cv_readonly_lblSolo Lecturaal_empty_designNo se puede guardar diseños sin actividad alguna.ws_dlg_descriptionDescripcióncv_autosave_rec_titleAtención!ws_tree_orgsMis Gruposmnu_file_recoverRecuperar...ws_file_name_emptyAtención: No se puede guardar un diseño sin nombre.ccm_copy_activityCopiar Actividadccm_paste_activityPegar Actividadccm_piPropiedades...ccm_author_activityhelpAyuda para esta actividadccm_open_activitycontentAbrir/Editar el Contenido de Actividadmnu_help_abtAcerca de LAMSmnu_help_helpAyuda para Diseñocv_untitled_lblSin títulocv_activity_helpURL_undefinedNo se ha podido encontrar la página de ayuda para {0}cv_close_return_to_ext_srcCerrar y volver a {0}cv_eof_changes_appliedLos cambios han sido guardados.mnu_file_apply_changesAñadir Cambiosvalidation_error_transitionNoActivityBeforeOrAfterLa transición debe tener una actividad antes y después de la mismavalidation_error_activityWithNoTransitionUna actividad debe tener una transición de entrada y otra de salida.validation_error_inputTransitionType1Esta actividad no tiene transición de entradavalidation_error_inputTransitionType2Todas las actividades tienen transiciones de entrada.validation_error_outputTransitionType2Todas las actividades tienen transiciones de salida.cv_invalid_design_on_apply_changesNo se pueden añadir los cambios. Falta por lo menos una transición.apply_changes_btnAñadir Cambioscancel_btnCancelarcv_activity_readOnlyLa actividad no se puede {0}. Esta actividad es de solo lectura.cv_edit_on_fly_lblEdición en Vivocv_element_readOnly_action_delborrarcv_element_readOnly_action_modmodificarcv_eof_finish_invalid_msgSu diseño debe ser válido para poder aplicar modificaciones.cv_eof_finish_modified_msgAtención: Su diseño ha sido modificado. ¿Desea descartar los cambios?cv_trans_readOnlyLa transición no se puede {0}. Esta transición es de solo lectura.mnu_file_finishTerminarabout_popup_title_lblAcerca de {0}about_popup_version_lblVersiónabout_popup_trademark_lbl{0} is a marca registrada de {0} Foundation ( {1} ).about_popup_license_lblEste programa es de software libre. Usted puede distribuirlo y/o modificarlo bajo los terminos de la GNU General Public License versión 2 como está publicada por la Free Software Foudantion. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcompetence_def_dlgDefinición de Competenciaspi_branch_tool_acts_default--Seleccionar--cv_invalid_trans_diff_branchesNo se puede crear transiciones entre actividades en distintas ramaslicense_not_selectedSeleccione una licencia para su diseñocv_invalid_branch_target_to_activityYa existe una rama hacia {0}cv_invalid_branch_target_from_activityYa existe una rama desde {0}cv_invalid_trans_closed_sequenceNo se puede conectar una nueva transición para una secuencia cerrada.al_group_name_invalid_blankNo se pueden dejar nombres de grupos en blanco.cv_invalid_optional_activity_no_branchesRemover toda las transiciones de {0} antes de agregar a la Secuencia Opcional.al_cannot_move_to_diff_opt_seqPara mover una actividad a otra secuencia dentro de Secuencias Opcionales, primero extraiga la actividad afuera de la Secuencia Opcional y luego vuelva a poner la misma en la nueva posición.al_group_name_invalid_existingCada grupo debe tener un nombre único.branching_act_titleRamificaciónal_doneListocondmatch_dlg_cond_lst_lblCondicionesto_conditions_dlg_add_btn_lbl+ Añadirto_conditions_dlg_remove_item_btn_lbl- Removerbranch_mapping_dlg_condition_col_lblCondiciónbranch_mapping_dlg_group_col_lblGrupobranch_mapping_no_condition_msgNo se ha seleccionado una condiciónbranch_mapping_dlg_condition_col_valueRango {0} hasta {1} branch_mapping_no_groups_msgNo se han seleccionado gruposgroupmatch_dlg_groups_lst_lblGruposgroupnaming_dlg_title_lblNombrar Grupospi_group_naming_btn_lblNombrar Grupossequence_act_titleSecuenciacv_activityProtected_activity_remove_msgPara remover esta actividad, borre esta actividad {0}.cv_activityProtected_activity_link_msgLa actividad {0} está asociada a {1}.cv_activityProtected_child_activity_link_msgEsta actividad {0} tiene una subactividad asociada a {1}.group_branch_act_lblBasado en grupopi_mapping_btn_lblAsignar ramificaciones a...al_activity_copy_invalidAtención: Debe seleccionar la actividad antes de usar el botón de copiar o pegar.groupnaming_dialog_instructions_lblTeclea sobre un nombre para modificar su valorpi_branch_tool_acts_lblEntrada (Herramienta)branch_mapping_no_branch_msgNo se ha seleccionado ramificaciónpi_defaultBranch_cb_lblpor defectoto_conditions_dlg_clear_all_btn_lblLimpiar todochosen_branch_act_lblElección del profesor/ato_condition_end_valuevalor finalto_condition_start_valuevalor de iniciois_remove_warning_msgPELIGRO: La lección va a ser anulada. ¿Quiere que esta lección aparezca como {0}?to_condition_invalid_value_directionEl {0} no puede ser mayor que {1}.to_condition_invalid_value_rangeEl {0} no puede estar dentro del rango de una condición existente.branch_mapping_dlg_branch_col_lblRamabranch_mapping_dlg_branches_lst_lblRamasbranch_mapping_dlg_condition_col_value_exactValor exacto de {0}pi_branch_typeTipo de ramificaciónpi_activity_type_branchingActividad de ramificaciónal_continueContinuarbranch_mapping_dlg_condition_linked_msg{0} conectado con una rama existente. ¿Desea continuar?branch_mapping_dlg_condition_linked_allHay condicionesbranch_mapping_dlg_condition_linked_singleLa condición esto_condition_untitled_item_lblSin nombre {0}branch_mapping_dlg_match_dgd_lblAsignar raminifacionesgroupmatch_dlg_title_lblAsignar grupos a ramificacionescompetence_editor_warning_title_existsUna competencia con el título {0} ya existeoptional_act_btnActividadoptional_seq_btn_tooltipCrear un conjunto de secuencias opcionales.competence_editor_warning_title_blankEl título de la competencia no puede ser dejado en blancocompetence_editor_warning_competence_mappedLa competencia que ha intentado borrar esta conectado a una actividad. Al borrar el objetivo se borrará tambien la conección a la actividad. ¿Esta seguro que quiere borrarla?competence_editor_dlgEditor de Competenciasclose_mc_tooltipMInimizarcompetence_mappings_btnConección de Competencias y Actividadesal_activity_view_competence_mappings_invalidAsegúrese que tiene una actividad seleccionada para poder ver sus competenciaslbl_num_activities{0} - Actividadespi_optSequence_remove_msg_titleRemoviendo secuenciasbranch_mapping_auto_condition_msgTodas las condiciones serán asignadas a la primera rama por defectopi_no_seq_actNúmero de secuenciaslbl_num_sequences{0} - SecuenciasactivityDrop_optSequence_error_msgDeposite actividades dentro de cada secuenciacv_invalid_optional_seq_activity_no_branchesRemover cualquier conexión entre ramas desde {0} antes de agregarla a una secuencia opcional.ta_iconDrop_optseq_error_msgNo hay secuencias habilitadas en este contenedor.opt_activity_seq_titleSecuencias opcionalesto_conditions_dlg_lt_lblMenor o igual quebranch_mapping_dlg_condition_col_value_minMenor o igual que {0}pi_actActividadespi_seqSecuenciascv_invalid_optional_seq_activityRemover todas las transiciones de {0} antes de agregar a la Secuecia Opcional.about_popup_copyright_lbl© 2002-2009 Fundación {0}.to_conditions_dlg_defin_long_typerangoto_conditions_dlg_defin_bool_typeVerdadero/Falsoto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNombreto_conditions_dlg_condition_items_value_col_lblCondiciónto_conditions_dlg_options_item_header_lbl[ Opciones ]branch_mapping_no_mapping_msgNo se ha asignado a rama sequence_act_title_new{0} {1}redundant_branch_mappings_msgEste diseño tiene asignaciones a ramas que no han sido usados y serán elimados. ¿Desea Continuar?cv_autosave_err_msgHa ocurrido un error en el auto-guardado de su diseño. Por favor agrege más memoria de almacenaje en su Flash Player.to_conditions_dlg_range_lblEntre un rangoto_conditions_dlg_gte_lblMayor o igual...to_conditions_dlg_lte_lblMenor o igual...optional_seq_btnSecuenciaspi_activity_type_sequenceSecuencia ({0})groupnaming_dialog_col_groupName_lblGrupospi_define_monitor_cb_lblDefinir en Seguimientoapply_changes_btn_tooltipAñadir cambios a su diseño y volver a Seguimientocancel_btn_tooltipVolver a Seguimientopi_definelaterDefinir en Seguimientows_click_file_openPor favor, seleccione la secuencia que usted desea abrir. cv_invalid_trans_circular_sequenceSecuencias circulares no estan permitidas. pi_optSequence_remove_msgLas secuencias a ser removidas pueden contener actividades que serán borradas. ¿Desea remover estas secuencias?to_conditions_dlg_from_lblDesdeto_conditions_dlg_to_lblHastamnu_file_insertdesignInsertar...ws_dlg_insert_btnInsertarchosen_grp_lblSelección en seguimientobranch_mapping_dlg_branch_item_default{0} (por defecto)pi_runofflineActividad Offlineto_conditions_dlg_title_lblCreación de Condiciones to_conditions_dlg_defin_item_header_lbl[ Elija Resultado a usar ]tool_branch_act_lblResultados de actividades previaspi_condmatch_btn_lblEspecificar Condicionespi_group_matching_btn_lblAsignar Grupos a Ramaspi_tool_output_matching_btn_lblAsignar Condiciones a Ramasrefresh_btnActualizarto_conditions_dlg_condition_items_update_defaultConditionsUsted esta apunto de actualizar la lista de condiciones. Realizar esta operación quitará las asignaciones entre las condiciones y las ramas. ¿Esta seguro que desea continuar?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNo se puede actualizar ya que no hay condiciones de usuarios definidas. Usted puede definir estas condiciones en cada actividad.to_conditions_dlg_defin_user_defined_typedefinida por el usuariogrouping_invalid_with_common_names_msgNo se ha podido guardar su diseño dado que la actividad de grupo '{0}' tiene dos o más grupos con el mismo nombre. Por favor, revise el nombre de los grupos de esta actividad y una vez cambiados intente guardar su diseño nuevamente.preview_btn_tooltip_disabledPara activar la vista previa, guarde primero su diseñoal_activity_paste_invalidNo se puede copiar este tipo de actividadcondmatch_dlg_message_lblLa rama "por defecto" se puede seleccionar usando la opción en el Inspector de propiedades.cv_design_insert_warningAl insertar una secuencia en su actual, se actualizara su diseño. Si desea deshacer los cambios, solo tiene que eliminar las actividades añadidas ¿Desea continuar?learner_choice_grp_lblA elección del estudiantepi_equal_group_sizesGrupos del mismo tamañomap_comptence_btnConectar objetivoscompetences_lblObjectivoscompetence_editor_add_competence_btnAgregarcompetences_mapped_to_act_lblObjetivosmap_gate_conditions_btnAsignar condiciones a puertasgate_mapping_auto_condition_msgTodas las demás condiciones seran asignadas a las puertas en estado cerrado.gate_openabrirgate_closedcerradomnu_file_import_communityImportar secuencias de Comunidad LAMS...ws_dlg_date_modified_lblÚltimo cambio: {0} ws_save_title_reserved_charsEl nombre de la secuencia no puede contener estos caracteres: {0}view_students_before_selectionPermitir ver los estudiantes en cada grupo antes de elegir grupoarrange_act_btnAcomodar actividadesvalidation_error_outputTransitionType1Esta actividad no tiene transición de salidagradebook_output_typeNota para Calificacionesgrp_chk_clear_branch_mappingsAtención: Esta acción limpiara la asociación de grupos y ramificaciones, ¿Está seguro que desea continuar?branch_btn_tooltipCrear ramificaciones \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/fr_FR_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_design_insert_warningVous ne pourrez pas annuler l'insertion d'une autre séquence. L'ancienne séquence sera automatiquement sauvegardée et elle contiendra la nouvelle séquence. Pour revenir à votre ancienne séquence, vous devrez supprimer manuellement toutes les nouvelles séquences et ensuite sauver. Pour ne pas modifier la séquence actuelle, cliquez sur "annuler". Sinon cliquez sur OK pour sélectionner une séquence à insérer.pi_optSequence_remove_msgLa/les séquence(s) à supprimer peut contenir des activités qui seront effacées. Voulez-vous vraiment supprimer ces séquences?delete_btnSupprimerld_val_activity_columnActivitéws_del_confirm_msgVoulez-vous vraiment supprimer ce fichier / dossier?competence_editor_warning_competence_mappedLa compétence que vous tentez de supprimer est liée à une ou plusieurs activités. Le supprimer provoquera la perte de ces liens. Etes-vous sûr de vouloir continuer?cv_trans_target_act_missingLa 2ème activité de la transition manque.paste_btn_tooltipColler une copie de l'activité sélectionnéepi_parallel_titleActivité parallèleal_cannot_move_activityCette activité de ne peut pas être déplacée.al_activity_openContent_invalidVous devez sélectionner l'activité avant de pouvoir l'ouvrir ou la modifier.grp_chk_clear_branch_mappingsCela effacera tous les mappages groupes vers branches liées à cette activité de groupement, souhaitez-vous continuer?cv_gateoptional_hit_chkImpossible d'ajouter une activité de liaison comme activité optionnelle.bin_tooltipDéposer une activité dans cette poubelle pour la retirer de la séquence.cv_invalid_optional_activityEnlever les transitions de et vers {0} avant de la paramétrer comme activité optionnelleal_cannot_move_to_diff_opt_seqPour déplacer une activité vers une autre séquence optionnelle, tirez l'activité hors de la zone optionnelle. Ensuite cliquer et tirer vers sa nouvelle position dans les séquences optionnelles.pi_optional_titleActivité optionnelleccm_author_activityhelpAide Activité d'auteurgroup_btn_tooltipCréer une activité de regroupementcopy_btn_tooltipCopier l'activité sélectionnéeal_activity_copy_invalidVous devez sélectionner l'activité avant de cliquer sur le bouton Copieropt_activity_titleActivité optionnelleccm_copy_activityCopier l'activitéccm_open_activitycontentOuvrir/modifier le contenu de l'activitéccm_paste_activityColler l'activitésupport_msg_no_connectionDes activités de soutien ne peuvent être connectées à aucune autre activitésupport_msg_invalid_childDes activités de type {0} ne peuvent pas être ajoutées comme une activité de soutiensupport_msg_cannot_be_childImpossible d'insérer une activité de soutien dans une autre activité.validation_error_transitionNoActivityBeforeOrAfterLa transition doit être précédée ou précéder une activité.validation_error_activityWithNoTransitionUne activité doit être liée à une transition entrante ou sortante.validation_error_inputTransitionType1Cette activité n'a pas de transition entrantevalidation_error_outputTransitionType1Cette activité n'a pas de transition sortantepi_activity_type_gateActivité porte logiquecv_activity_readOnlyCette activité ne peut être {0}. La cible est en lecture seule.pi_activity_type_branchingActivité pour schéma en arbreal_activity_paste_invalidDésolé, vous ne pouvez pas coller ce type d'activitécv_activityProtected_activity_remove_msgPour effacer cette activité, déselectionnez la en tant que {0}optional_act_btnActivitépi_activity_type_sequenceSéquence d'activité ({0}) activityDrop_optSequence_error_msgVeuillez placer cette activité dans l'une des séquences.act_seq_lock_chkVeuillez dévérouiller le container des séquences optionelles avant d'assigner cette activité à une séquence optionelle.cv_invalid_optional_activity_no_branchesEffacez toutes les branches connectées de {0} avant de la configurer comme une séquence optionelle.act_lock_chkVeuillez dévérouiller le conteneur d'activités optionnelles avant de désigner cette activité comme optionnellepi_activity_type_groupingActivité de regroupementsupport_msg_max_children_reachedImpossible d'insérer l'activité: (0) ici. L'activité de soutien permet à un maximum de {1} activités enfants.view_students_before_selectionAfficher les apprenants avant la sélection?preview_btn_tooltip_disabledPour prévisulaiser votre séquence, veuillez l'enregistrer, ensuite cliquer sur Prévisualisationgrouping_invalid_with_common_names_msgLa séquence (design) ne peut pas être enregistrée. L'activité de regroupement '{0}' possède plus qu'un groupe ayant le même nom. Veuillez revoir le regroupement et essayez de nouveauws_view_license_buttonAfficherpreview_btn_tooltipPrévisualiser votre séquence comme les apprenants la verrontal_activity_view_competence_mappings_invalidVeuillez sélectionner une activité avant de demander à voir les compétences qui lui sont associéespreview_btnPrévisualisationapp_fail_continueL'application ne peut pas continuer. Veuillez contacter le supportsupport_act_btnSupportsupport_act_btn_tooltipCréer un ensemble d'activités de soutien en option.support_act_titleActivité de soutienpi_runofflineActivité hors-lignecompetence_editor_dlgEditeur de compétencesmnu_editModifiercv_eof_finish_invalid_msgLe design doit être valide pour terminer l'édition.cv_edit_on_fly_lblModifier en directws_file_name_emptyIl n'est pas permis d'enregistrer une séquence sans nom de fichier.cv_activity_copy_invalidCopier cette activité enfant n'est pas possible.cv_activity_cut_invalidCouper cette activité enfant n'est pas possible.cv_invalid_trans_circular_sequenceIl n'est pas possible de faire une séquence circulairebranch_mapping_dlg_match_dgd_lblMise en correspondance (mappage)pi_mapping_btn_lblRéglages des mises en correspondance (mappage)redundant_branch_mappings_msgCe design contient des embranchements inutilisés qui seront effacés. Voulez-vous continuer?act_tool_titleBoîte à outilsal_alertAlerteal_cancelAnnuleral_confirmConfirmeral_okOKapp_chk_langloadLes données du choix de langue n'ont pas été chargéesapp_chk_themeloadLes données du choix de thème n'ont pas été chargéeschosen_grp_lblChoisir dans l'outil de suivicopy_btnCopiercv_invalid_trans_targetVous ne pouvez pas créer une transition vers cet objetcv_show_validationProblèmesdb_datasend_confirmMerci d'avoir transmis les données au serveurgate_btnPortegroup_btnGroupegrouping_act_titleRegroupementld_val_doneTerminéld_val_issue_columnProblèmeld_val_titleProblèmes de validationlicense_not_selectedVeuillez sélectionner une licence pour cette séquencemnu_edit_copyCopiermnu_edit_cutCoupermnu_edit_pasteCollermnu_edit_redoRépétermnu_edit_undoAnnulermnu_file_closeFermermnu_file_newNouveaumnu_file_openOuvrirmnu_helpAidemnu_help_abtA propos de LAMSmnu_toolsOutilsmnu_tools_optDessiner une optionmnu_tools_prefsPréférencesmnu_tools_transDessiner une transitionnew_btnNouveaunew_confirm_msgVoulez-vous vraiment effacer la séquence présente à l'écran?none_act_lblAucuneopen_btnOuvriroptional_btnOptionnelpaste_btnCollerperm_act_lblPermissionpi_definelaterDéfinir dans l'outil de suivipi_end_offsetFermer porte logiquepi_group_typeType de regroupementpi_hoursHeurespi_lbl_currentgroupRegroupement actuelpi_lbl_descDescriptionpi_lbl_groupRegroupementpi_lbl_titleTitrepi_max_actMax {0}pi_min_actMin {0}pi_minsMinutespi_no_groupingAucunpi_start_offsetOuvrir porte logiquepi_titlePropriétésprefix_copyofCopie deprefs_dlg_cancelAbandonnerprefs_dlg_lng_lblLangueprefs_dlg_okOKprefs_dlg_theme_lblThèmeprefs_dlg_titlePréférencesproperty_inspector_titlePropriétésrandom_grp_lblAléatoirerename_btnRenommersched_act_lblCalendriersynch_act_lblSynchronisertk_titleBoîte à outilstrans_btnTransitiontrans_dlg_cancelAbandonnertrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRacinews_chk_overwrite_resourceAttention, vous allez écraser une séquence existantews_copy_same_folderLe Dossier source est le même que celui de destinationws_dlg_cancel_buttonAbandonnerws_dlg_location_buttonEmplacementws_dlg_ok_buttonOKws_dlg_open_btnOuvrirws_dlg_properties_buttonPropriétésws_dlg_titleEspace de travailws_newfolder_cancelAbandonnerws_newfolder_insVeuillez entrer un nouveau nom de fichierws_newfolder_okOKws_no_permissionDésolé, vous n'êtes pas autorisé à faire cette opérationws_rename_insVeuillez entrer le nouveau nomws_tree_mywspMon espace de travailws_tree_orgsMes groupessys_error_msg_startL'erreur système suivante s'est produite:sys_errorErreur systèmelbl_num_activities{0} - Activitésal_sendEnvoyerprefix_copyof_countCopie {0} dews_click_file_openVeuillez cliquer sur une Séquence pour ouvrir.ws_license_lblLicencews_license_comment_lblLicence - informations complémentairescv_invalid_trans_target_from_activityIl existe déjà une transition depuis {0}cv_invalid_trans_target_to_activityIl existe déjà une transtion vers {0}branch_btnBrancheflow_btnFluxmnu_file_importImportermnu_file_exportExporterws_click_virtual_folderCe dossier ne peut pas être utilisé.mnu_file_exitSortirnew_btn_tooltipEfface la séquence courante et réinitialise l'espace de travailtrans_btn_tooltipUtiliser le crayon pour tracer des transitions entre les activités (ou pressez la touche CTRL)optional_btn_tooltipCréer un groupe d'activités optionnellesgate_btn_tooltipCréer un point d'arrêtbranch_btn_tooltipCréer une branche (disponible dans LAMS v 2.1)flow_btn_tooltipCréer les contrôles de flux d'activitéscv_readonly_lblLecture seulecv_autosave_rec_titleAttentionmnu_file_recoverRécupérer...al_group_name_invalid_blankUn nom de groupe ne peut pas rester videcv_activity_helpURL_undefinedLa page d'aide pour {0} n'a pas été trouvéecv_untitled_lblSans titre - 1al_group_name_invalid_existingUn nom de groupe doit être uniquelearner_choice_grp_lblChoix de l'étudiantpi_equal_group_sizesGroupes de taille égaleccm_piInspecteur de propriétéscompetences_lblCompétencesws_dlg_descriptionDescriptiontrans_dlg_nogateAucunpi_daysJourscv_close_return_to_ext_srcFermez et revenez à {0}cv_eof_changes_appliedchangements appliqués avec succèsmnu_file_apply_changesAppliquer les changementscompetence_editor_add_competence_btnAjoutercompetence_def_dlgDialogue de définition de compétencecompetence_editor_warning_title_existsUne compétence avec l'intitulé {0} existe déjàvalidation_error_inputTransitionType2Aucune activité ne requièrent encore une transition entrante.competence_editor_warning_title_blankL'intitulé d'une compétence ne peut être videvalidation_error_outputTransitionType2Aucune activité ne requièrent encore une transition sortante.cv_invalid_design_on_apply_changesLes changements ne peuvent être appliqués. Il manque une ou plusieurs transitions.apply_changes_btnAppliquer les changementsapply_changes_btn_tooltipAppliquer les changements de design et retourner à la supervision de la leçon.cancel_btnAnnulermap_comptence_btnAssocier avec des compétencescompetences_mapped_to_act_lblCompétencesmap_gate_conditions_btnAssocier des conditions de la portegate_mapping_auto_condition_msgToutes les conditions restantes seront associées avec l'état fermé (des portes choisies)cv_element_readOnly_action_deleffacécv_element_readOnly_action_modmodifiégate_openOuvert cv_trans_readOnlyLa transition ne peut être {0}. La cible est en lecture seule.cancel_btn_tooltipRetourner à la supervision de la leçon.mnu_file_finishTerminerabout_popup_title_lblSujet:about_popup_version_lblVersionabout_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ).about_popup_license_lblCe programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier, selon les termes de la version 2 de la licence générale publique GNU tel qu'elle est publiée par la "Free Software Foundation".stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_titleSchéma en arbregate_closedFermégroupnaming_dialog_instructions_lblCliquez sur un groupe pour le renommer.pi_branch_tool_acts_lblBouton (outils)pi_condmatch_btn_lblCréez des conditionsto_conditions_dlg_title_lblCréer des conditions sortantesal_doneTerminécondmatch_dlg_cond_lst_lblconditionscondmatch_dlg_title_lblLier des conditions aux branchespi_defaultBranch_cb_lblPar défautto_conditions_dlg_add_btn_lblAjouterto_conditions_dlg_clear_all_btn_lblEffacer toutto_conditions_dlg_remove_item_btn_lblEnlevezto_conditions_dlg_from_lblDepuisto_conditions_dlg_to_lblJusqu'àto_conditions_dlg_range_lblPlage:branch_mapping_dlg_branch_col_lblBranchebranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupebranch_mapping_no_branch_msgAucune branche sélectionnée.branch_mapping_no_mapping_msgPas de mise en correspondance sélectionnée.branch_mapping_no_condition_msgAucune condition n'est sélectionnéebranch_mapping_auto_condition_msgToutes les conditions restantes seront associées à la branche par défaut.ws_dlg_date_modified_lblDernière modification: {0}branch_mapping_dlg_condition_col_valuePlage de {0} à {1}branch_mapping_dlg_condition_col_value_exactValeur exact de {0}ws_save_title_reserved_charsLe titre ne peut pas contenir des caractères spéciaux: {0}pi_define_monitor_cb_lblDéfinir dans la supervisiongroupmatch_dlg_title_lblLier des groupes aux branchesbranch_mapping_no_groups_msgAucun groupe n'est sélectionné.group_branch_act_lblOrganisé par groupebranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupesgroupnaming_dlg_title_lblNommer les groupesmnu_file_import_communityImporter à partir de la communauté LAMSpi_branch_typeSchéma en arbrepi_group_naming_btn_lblNom des groupessequence_act_titleSéquencetool_branch_act_lblSortie apprenantsto_condition_start_valuevaleur de débutto_condition_end_valuevaleur de finto_condition_invalid_value_range{0} ne peut être située sur la plage d'une condition existante.to_condition_invalid_value_direction{0} ne peut être plus grand que {1}.is_remove_warning_msgAttention: cette leçon est sur le point d'être effacée. Voulez-vous la conserver sous {0}? al_continueContinuerbranch_mapping_dlg_condition_linked_msg{0} est relié(e) à une branche existante. Voulez-vous pousuivre?branch_mapping_dlg_condition_linked_allIl y a des conditionsbranch_mapping_dlg_condition_linked_singleCette condition estto_condition_untitled_item_lblSans titre{0}gradebook_output_typeSortie carnet de notescv_activityProtected_activity_link_msgCe(tte) {0} est liée à un(e) {1}cv_activityProtected_child_activity_link_msgCe(tte) {0} a une activité fille qui est liée à {1}branch_mapping_dlg_condition_col_value_maxplus grand ou égal à {0}arrange_act_btnArranger des activitésoptional_seq_btnSéquenceoptional_seq_btn_tooltipCréer une série de séquences optionelles.pi_optSequence_remove_msg_titleEffacer des séquencespi_no_seq_actNe fait pas partie de la séquence.lbl_num_sequences{0} - séquencescv_invalid_optional_seq_activity_no_branchesEffacez toutes les branches connectées de {0} avant de l'ajouter à une séquence optionelle.ta_iconDrop_optseq_error_msgIl n'y a pas de séquences en fonction dans ce container.competence_mappings_btnAssociation de compétencescv_invalid_optional_seq_activityEnlevez les transitions entrantes et sortantes de {0} avant de la relier à une séquence optionnelleopt_activity_seq_titleSéquences optionnellesto_conditions_dlg_lt_lblPlus petit ou égalbranch_mapping_dlg_condition_col_value_minPlus petit ou égal à {0}pi_actActivitéspi_seqSéquencesto_conditions_dlg_defin_long_typePlageto_conditions_dlg_defin_bool_typeVrai/fauxto_conditions_dlg_defin_item_header_lbl[Selectionnez sortie]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNomto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[options]sequence_act_title_new{0} {1}close_mc_tooltipRéduireto_conditions_dlg_gte_lblPlus grand ou égal àto_conditions_dlg_lte_lblPLus petit ou égal àgroupnaming_dialog_col_groupName_lblNom du groupemnu_file_insertdesignInsérer/fusionnerws_dlg_insert_btnInsérerbranch_mapping_dlg_branch_item_default{0} défautpi_group_matching_btn_lblAssocier groupes aux branchespi_tool_output_matching_btn_lblAssocier conditions aux branchesrefresh_btnRafraîchirto_conditions_dlg_condition_items_update_defaultConditionsVous êtes en train de mettre à jour les conditions pour les définitions de sortie selectionnées. Voulez-vous continuer ?to_conditions_dlg_defin_user_defined_typedéfini par l'utilisateurcondmatch_dlg_message_lblChoisir la branche par défaut en cochant "défaut" dans les propriétés pour la branche en questionpi_branch_tool_acts_default--Sélection---cv_invalid_trans_diff_branchesUne transition entre des activités appartenant à des branches différentes ne peut pas être créecv_invalid_branch_target_to_activityUne branche vers {0} existe déjàcv_invalid_branch_target_from_activityUne branche depuis {0} existe déjàcv_invalid_trans_closed_sequenceVous ne pouvez pas créer une transition vers une séquence ferméechosen_branch_act_lblChoix de l'enseignantcv_eof_finish_modified_msgAttention: le design a été modifié. Voulez-vous quitter sans enregistrer ?cv_design_unsavedLa séquence sur le canevas a changé. Continuer sans enregistrer ?pi_num_groupsNombre de groupespi_num_learnersNombre d'étudiant-e-smnu_file_saveEnregistrersys_error_msg_finishIl se peut que vous deviez redémarrer LAMS Auteur pour pouvoir continuer. Voulez-vous enregistrer les informations concernant cette erreur pour aider à résoudre le problème?ws_save_folder_invalidImpossible d'enregistrer une séquence dans ce dossier. Veuillez choisir un sous-dossier valide.mnu_file_saveasEnregistrer comme...save_btn_tooltipEnregistrement rapide de la séquence d'activités courantecv_design_export_unsavedEnregistrez votre séquence avant de l'exportercv_autosave_rec_msgVous êtes sur le point de récupérer une séquence perdue ou non enregistrée. La séquence courante va être vidée. Continuer?cv_activity_dbclick_readonlyImpossible de modifier les outils d'une séquence en lecture seule. Veuillez enregistrer une copie de la séquence et réessayer.al_empty_designImpossible d'enregistrer une séquence videsave_btnEnregistrerws_click_folder_fileVeuillez cliquer soit sur un Dossier pour enregistrer ou sur le titre d'une séquence pour la remplacerws_dlg_save_btnEnregistrercv_valid_design_savedFélicitations. Votre séquence est valide. Elle a été enregistréews_entre_file_nameVeuillez entrer le nom de la séquence et cliquez sur le bouton "Enregistrer".cv_autosave_err_msgUne erreur est survenue lors de la sauvegarde automatique de la séquence. Veuillez augmenter la dotation mémoire de votre lecteur Flashcv_invalid_design_savedVotre séquence n'est pas encore validée mais elle a été enregistrée. Cliquez sur 'Problèmes potentiels' pour voir ce qui ne va pas.mnu_fileFichierws_no_file_openAucun fichier trouvé.ws_chk_overwrite_existingCe dossier contient déjà un fichier nommé {0}.open_btn_tooltipMontre la boîte de dialogue Fichier pour ouvrir une séquence d'activitésws_dlg_filenameNom du fichiermnu_help_helpAide pour la créationbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroMise à jour impossible car il manque les conditions définies par l'utilisateur. Il faudrait les définir dans la/les page(s) de création. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/hu_HU_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3close_mc_tooltipKis méretTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblNagyobb vagy egyenlőGreater than or equal toto_conditions_dlg_lte_lblKisebb vagy egyenlőLess than or equal togroupnaming_dialog_col_groupName_lblCsoportnévColumn label for editable datagrid in Group Naming dialog.trans_dlg_okOKOK Button on transition dialogmnu_file_insertdesignBeszúrás...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnBeszúrásButton label on Workspace in INSERT mode.branch_mapping_dlg_branch_item_default {0} (alapértelmezett)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.ws_RootRootRoot folder title for workspacews_newfolder_okOKOK on the new folder name diapi_equal_group_sizesEgyenlő csoportméretekCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equaltrans_dlg_gatetypecmbTípusGate type combo labelcompetence_editor_dlgHatáskör-szerkesztőDialog for adding/editing/removing competencespi_group_matching_btn_lblA csoportok illesztése az elágazásokhozButton in author that allows you to allocate groups to branches for group based branchingtrans_dlg_gateSzinkronizálásHeader for the transition props dialogpi_tool_output_matching_btn_lblA feltételek illesztése az elágazásokhozButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnFrissítésButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditionsÉpp frissíteni készül a kiválasztott kimeneti definíció feltételeit. Ez a művelet összes létező elágazásra mutató hivatkozást törli. Biztosan folytatja?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNem lehet frissíteni, mivel nincsenek a felhasználó által definiált feltételek. Ezeket be kellene állítania a szerzői eszközök oldalán/oldalain.Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_typea felhasználó által definiáltType description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msgA terv nem menthető, mivel a '{0}' csoporttevékenység többször tartalmazza ugyanazt a csoportnevet. Kérem, nézze át a csoportosítást, majd próbálja újra!Alert message displayed when the Grouping validation fails during saving a design.al_activity_paste_invalidElnézést, ilyen típusú tevékenységet nem szúrhat be.Alert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledA jelenet előnézetéhez először mentenie kell azt. Csak ezután kattintson az Előnézet gombra.Tool tip message for preview button in toolbar when button is disabled.pi_branch_tool_acts_default-- Kijelölés --Default item label for Input Tool dropdown list.cv_invalid_branch_target_to_activityAz elágazás ide: {0} már létezik.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityAz elágazás innen: {0} már létezik.Error message displayed after drawing a branch from an activity that has an existing connected branch.al_group_name_invalid_blankA csoportnév nem lehet üres.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingEgyedi csoportnevet kell megadni.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupcompetences_lblHatáskörökLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnHozzáadAdd competence buttoncompetence_def_dlgHatáskörök meghatározásának párbeszédeTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsA {0} nevű hatáskör már létezikWarning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankA hatáskör címe nem lehet üresWarning message when you try to define a competence with a blank competence titlecompetence_editor_warning_competence_mappedA törölni kívánt hatáskör jelenleg egy vagy több tevékenységhez csatlakozik. A hatáskör törlése eltávolítja a csatolást is. Bistosan folytatja?Warning message when you attempt to delete a competence that is mapped to one or more activities.map_comptence_btnHatáskörhöz csatolásLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnA hatáskör csatolásaiTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblHatáskörökLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btnA kapu feltételeinek csatolásaButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgAz összes fennmaradó feltételt a kiválasztott kapu lezárt állapotához csatoljuk.Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openmegnyitOpen state for gate activity, allows learners to pass through itgate_closedlezárvaClosed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalidMielőtt megpróbálná megjeleníteni a hatáskör csatolásait, ellenőrizze, hogy választott-e tevékenységet!Warning that appears when no activity is selected when the user tries to view competence mappingsws_dlg_date_modified_lblUtoljára módosítva: {0} Show the last modified datetime of the selected design in the workspacews_save_title_reserved_charsA cím nem tartalmazhatja ezeket a speciális karaktereket {0}.Error alert when trying to save with a title containing illegal characters.mnu_file_import_communityImportálás a LAMS közösségtől...File menu item for importing a learning design from the LAMS communitygradebook_output_typeAz osztályzóív kimneteLabel in the Property Inspector relating to which tool output type (if any) will be sent to gradebook for evaluation for the selected tool activityview_students_before_selectionMegnézi a tanulókat, mielőtt választana?Label in the Property Inspector for option to allow students to see who's in each group before they pick which group that want to be in for learner chosen grouping.arrange_act_btnA tevékenységek rendezéseMenu item button to neatly arrange the activities on the Canvascondmatch_dlg_message_lblAz alapértelmezett elágazást úgy állíthatja be, hogy a kiválasztott elágazás Tulajdonságok részénél bejelöli az "alapértelmezett" jelölőnégyzetet.Label for a message in the Condition to Branch matching dialog.cv_invalid_trans_diff_branchesNem hozhat létre átmenetet különböző elágazások tevékenységei között.Error message displayed after drawing a transition between activities of two different branches.learner_choice_grp_lblA tanuló választásaA type of grouping where the learner picks which group they'd like to be incv_invalid_trans_closed_sequenceLezárt jelenethez nem kapcsolhat új átmenetet.Error message displayed after drawing a transition from an activity in a closed sequence.cv_design_insert_warningAmint beszúr egy másik jelenetet, már nem tudja visszavonni ezt a műveletet – a régi jelenet automatikusan a beszúrt új jelenettel kerül mentésre. Amennyiben vissza akar térni a régi jelenetéhez, sajátkezűleg törölnie kell az új jelenetek összes tevékenységét, majd menteni. A jelenlegi jelenet változatlanul hagyásához, kattintson a Mégse gombra! Az OK-ra kattintva kiválaszthatja a beszúrni kívánt jelenetet.Warning message when merge/insertal_cannot_move_to_diff_opt_seqHa a választható jeleneteken belül egy másik jelenetbe szeretne áthelyezni egy tevékenységet, először húzza azt a Választható Jelenetek területén kívülre, majd kattintson rá, és húzza vissza a Választható Jelenetek területén belül lévő új helyére!Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitybranch_mapping_no_mapping_msgNem választott leképezést.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNem választott feltételt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgMinden fennmaradó feltételt az alapértelmezett elágazásra képez le.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblLeképezésekHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_value{0} - {1} tartományValue for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactA(z) {0} pontos értékeValue for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblA leképezések beállításaLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblFigyelő meghatározásaCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblCsoportok leképezése elágazásokraMap Groups to Branchesbranch_mapping_no_groups_msgNem választott csoportokat.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblCsoporthoz kötöttBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblElágazásokLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblCsoportokLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblA csoport elnevezéseTitle label for Group Naming dialog.pi_activity_type_branchingTevékenység az elágazásnálActivity type for Branching in Property Inspector.pi_branch_typeElágazás-típusProperty Inspector Branching type drop down.pi_group_naming_btn_lblCsoportnevekLabel for button that opens Group Naming dialog.sequence_act_titleJelenetDefault title for Sequence Activity.tool_branch_act_lblElágazás eszközkimenet alapjánBranching type label for Tool output Branching.chosen_branch_act_lblA Tanár választásaBranching type label for Teacher choice Branching.to_condition_start_valuekezdő értékValue representing the min boundary value of the conditions range.to_condition_end_valuevégső értékValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeA {0} kívül esik egy már létező feltétel tartományán.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_directionA(z) {0} nem lehet nagyobb, mit a(z) {1}. Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgFigyelem: A lecke eltávolítását választotta. Meg szeretné tartani ezt a leckét {0}-ként?Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueTovábbContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msgA(z) {0} már egy létező elágazáshoz kapcsolódik. Folytatja? Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allMég vannak feltételekPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleEz a feltételPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblNév nélküli {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgA terv használaton kívüli elágazás-leképezéseket tartalmaz, melyek szintén törlődnek. Folytatja?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgAz eltávolításhoz kérem szüntessem meg ennek a tevékenységnek a kiválasztását itt: {0}.Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msgEz: {0} kapcsolódik ehhez: {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msgEz {0} alárendelt kapcsolatban áll ezzel: {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxNagyobb vagy egyenlő, mint {0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btnTevékenységToolbar button for Optional Activity.optional_seq_btnJelenetToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipVálasztható tevékenységek készletének létrehozása.Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleJelenetek eltávolításaRemoving sequencespi_optSequence_remove_msgA törölni kívánt jelenet(ek) tevékenységeket tartalmazhatnak, melyek szintén törlődnek. Biztosan eltávolítja ezeket a jeleneteket?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actA jelenet számaLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - JelenetLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgKérem, helyezze a tevékenységet valamelyik jelenetbe!Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesTávolítsa el az összes kapcsolt feltételt {0}-ból, mielőtt hozzáadná egy választható jelenethez!Alert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msgEbben a tárolóban nincs engedélyezett jelenet.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.act_seq_lock_chkKérem oldja fel a Választható Jelenet tárolóját, mielőtt ezt a tevékenységet hozzárendelné egy választható jelenethez!Alert Message if user drags the activity to locked optional sequences container.cv_invalid_optional_seq_activitytávolítsa el a bemenő és kimenő kapcsolatokat ebből: {0}, mielőtt választható tevékenységhez rendelné hozzá!Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesEbből: {0} távolítson el minden kapcsolt elágazást, mielőtt választható tevékenységnek állítaná be!Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleVálasztható JelenetekTitle for Optional Sequences Container.to_conditions_dlg_lt_lblKisebb vagy egyenlőLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minKisebb vagy egyenlő mint {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actTevékenységekMin and max label postfix when an Optional Activity is selected.pi_seqJelenetekMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typetartományType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typeigaz/hamisType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[Meghatározások]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNévColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblFeltételColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[Választások]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new {0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.ws_file_name_emptySajnálom, nem mentheti a tervet, amíg nem ad meg fájlnevet.Error message when user try to save a design with no file namews_entre_file_nameKérem, írja be a terv nevét, és katintson a Mentés gombra!Error message when user try to save a design with no file namecv_activity_helpURL_undefinedNem található súgó ehhez: {0}.Alert message when a tool activity has no help url defined.cv_untitled_lblNévtelen - 1Label for Design Title bar on canvasmnu_help_helpSzerzői súgólabel for menu bar Help - Authoring Help optiontrans_dlg_titleÁtmenetTitle for the transition properties dialogccm_open_activitycontentTevékenység Megnyitása/SzerkesztéseLabel for Custom Context Menuws_newfolder_cancelMégseCancel on the new folder name diaccm_copy_activityTevékenység másolásaLabel for Custom Context Menuccm_paste_activityTevékenység beillesztéseLabel for Custom Context Menuccm_piTulajdonságok felügyelése...Label for Custom Context Menuccm_author_activityhelpA Szerzői Tevékenység súgójaLabel for Custom Context Menuws_dlg_descriptionLeírásLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateMégseDrop down default for gate typepi_daysNapDays label in property inspector for gate toolcv_close_return_to_ext_srcBezárás és visszatérés ehhez: {0}.Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedA változások alkalmazása sikerült.Changes have been successful applied.mnu_file_apply_changesAlkalmazApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA kapcsolat előtt vagy mögött egy tevékenységnek kell lennie.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEgy tevékenységnek kimenő vagy bemenő kapcsolattal kell rendelkeznieAn activity must have an input or output transitionvalidation_error_inputTransitionType1Ennek a tevékenységnek nincs bemenő kapcsolat.This activity has no input transitionvalidation_error_inputTransitionType2Egyik tevékenységnek sem hiányoznak a bemenő kapcsolatai.No activities are missing their input transition.validation_error_outputTransitionType1Ennek a tevékenységnek nincs kimenő kapcsolata.This activity has no output transitionvalidation_error_outputTransitionType2Egyik tevékenységnek sem hiányoznak a kimenő kapcsolatai.No activities are missing their output transition.cv_invalid_design_on_apply_changesA változtatások nem alkalmazhatók. Egy vagy több kapcsolat hiányzik.Cannot apply changes. There are one or more transitions missing.apply_changes_btnAlkalmazApply Changesapply_changes_btn_tooltipAlkalmazza a terv változtatásait, és visszatér a lecke figyeléséhez.tool tip message for save button in toolbarcancel_btnMégseToolbar - Cancel Buttoncv_activity_readOnlyA tevékenységet nem lehet {0}. A tevékenység írásvédett.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblAzonnali SzerkesztésLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_deltörölveAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modmódosítvaAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgA tervnek érvényesnek kell lennie, ha be akarja fejezni a szerkesztést.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgFigyelem: A terv megváltozott. Be akarja zárni anélkül hogy mentené?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyA kapcsolatot nem lehet {0}. A kapcsolat cél-objektuma írásvédett.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipVisszatérés a lecke figyeléséhez.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishBefejezésMenu bar File - Finish (Edit Mode)about_popup_title_lblErről - {0}Title for the About Pop-up window.about_popup_version_lblVerzióLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2009 {0} Alapítvány.Label displaying copyright statement in About dialog.about_popup_trademark_lblA {0} a {0} Foundation védjegye( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblEz a program szabad szoftver. Továbbadhatja, és/vagy módosíthatja a Free Software Foundation által kiadott Általános Nyilvános Licensz 2-es változata alapján.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleElágazásLabel for Branching Activitypi_activity_type_sequence({0}) Jelenet TevékenységActivity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKattintson a névre, ha meg akarja változtatni!Instructions for Group Naming dialog.pi_branch_tool_acts_lblBevitel (Eszköz)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_condmatch_btn_lblA Feltételes Kimutatások beállításaLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblAz eszközkimenet feltételeinek megadásaDialog title for creating new tool output conditions.al_doneKészLabel for dialog completion button.condmatch_dlg_cond_lst_lblFeltételekLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblA feltételek illesztése az elágazásokhozDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblalapértelmezettCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ HozzáadLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblMindet törliLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- EltávolítLabel for button to remove condition.to_conditions_dlg_from_lblEttőlLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblEddigLabel for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblTartományHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblElágazásColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblFeltételColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblCsoportColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNem választott elágazást.Alert message when adding a Mapping without a Branch (Sequence) being selected.sys_error_msg_startA következő rendszerhiba történt: Common System error message starting linesys_error_msg_finishA folytatáshoz újra kellene indítania a LAMS Szerző-t. El szeretné menteni a hibáról szóló alábbi információt, hogy segítse a probléma megoldásában?Common System error message finish paragraphsys_errorRendszerhibaSystem Error elert window titlepi_num_groupsCsoportok számaNumber of groups in Property inspectorpi_parallel_titlePárhuzamos tevékenységTitle for parallel activity property inspectoropt_activity_titleVálasztható tevékenységTitle for Optional Activity Containerlbl_num_activitiesTevékenységekreplacement for word activitiesal_sendKüldésSend button label on the system error dialogal_cannot_move_activitySajnálom, ezt a tevékenységet nem lehet áthelyezni.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNem adhat hozzá kapu tevékenységet választható tevékenységként.Error message when user drags gate activity over to optional containerprefix_copyof_count({0}) másolatPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNem mentheti a tervet ebbe a mappába. Kérem, válasszon érvényes al-mappát!Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openKérem, a megnyitáshoz kattintson egy tervre!Alert message if folder tried to be opened.ws_license_lblLicencLabel for Licence drop down on workspace properties tab viewws_license_comment_lblTovábbi licenszinformációkLabel for Licence Comment description below license drop downcv_invalid_optional_activityTávolítson el minden be- és kivezető átmenetet ebből: {0}, mielőtt választható tevékenységnek állítaná be!Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingAz átmenethez hiányzik a másik tevékenység.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityEgy átmenet a(z) {0} felől már létezikError message when a transition from the activity already existcv_invalid_trans_target_to_activityEgy átmenet a(z) {0} felé már létezikError message when a transition to the activity already existbranch_btnElágazásLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFolyamatLabel for Flow button in Toolbarmnu_file_importImportálásMenu bar Importcv_design_export_unsavedA tervet nem lehet expottálni. Kérem, előbb mentse!Alert message when trying to export can unsaved design.cv_design_unsavedA vászon tervét megváltoztatta. Folytatja anélkül hogy mentené?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExportálásMenu bar Exportws_chk_overwrite_existingEz a mappa már tartalmaz egy {0} nevű fájlt. Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNem használhatja ezt a mappát.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitKilépésFile Menu Exitws_no_file_openAz állományt nem találhatóAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNem hozhat létre körkörös kapcsolatot a jelenetek között.Error message when a transition from one activity to another is creating a circular loopbin_tooltipDobja ebbe a szemétkosárba azt a tevékenységet, melyet törölni akar a jelenetből!Tool tip message for canvas binnew_btn_tooltipTörli az aktuális jelenetet, és újból használatra késszé teszi a munkaterületetTool tip message for new button in toolbaropen_btn_tooltipMegjeleníti a Fájl párbeszédet a Tevékenység Jelenet megnyitásához.Tool tip message for open button in toolbarsave_btn_tooltipAz aktuális Tevékenység Jelenet gyorsmentése.tool tip message for save button in toolbarcopy_btn_tooltipA kiválasztott tevékenység másolásatool tip message for copy button in toolbarpaste_btn_tooltipA kiválasztott tevékenység beillesztésetool tip message for paste button in toolbartrans_btn_tooltipHasználja ezt a tollat a tevékenységek közti átmenetek megrajzolásához (vagy tartsa lenyomva a CTRL billentyűt)!tool tip message for transition button in toolbaroptional_btn_tooltipVálasztható tevékenységek létrehozásatool tip message for optional button in toolbargate_btn_tooltipMegállási pont létrehozásatool tip message for gate button in toolbarbranch_btn_tooltipElágazás létrehozása (majd csak a LAMS 2.1-es verziójában)tool tip message for branch button in toolbarflow_btn_tooltipFolyamatellenőrző tevékenység létrehozásatool tip message for flow button in toolbargroup_btn_tooltipTevékenységcsoport kialakításatool tip message for group button in toolbarpreview_btn_tooltipTanulói nézetTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNem szerkesztheti az írásvédett terv eszközeit. Kérem, mentse a terv egy másolatát, majd próbálja újra!Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblCsak olvashatóLabel for top left of canvas shown when a read-only design is open.al_empty_designSajnálom, üres tervet nem lehet menteni.alert message when user want to save an empty designws_newfolder_insKérem adja meg az új mappa nevétInstructions on the new name pop upcv_autosave_err_msgHiba történt a terv automatikus mentése közben. Kérem, növelje meg a Flash Player tárhelyét!Alert error message when auto-save fails.cv_autosave_rec_msgAz utolsó elveszett vagy nem mentett terv visszaállításával próbálkozik. A jelenlegi terv így törllődik. Folytatja?Message informing users that they have recovered data for a design.cv_autosave_rec_titleFigyelmeztetésAlert title for auto save recovery message.mnu_file_recoverHelyreállításMenu bar Recovercv_activity_copy_invalidSajnálom, nem megengedett az altevékenység másolása.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSajnálom, nem megengedett az altevékenység kivágása.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidSajnálom! Választania kell egy tevékenységet, mielőtt a másolásra kattintana.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidSajnálom, de ki kell választania egy tevékenységet mielőtt a tevékenység gyorsmenüjében rákattint a Megnyitás/Szerkesztés menüpontra!alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgBiztosan törölni kívánja ezt az állományt / könyvtárat?Confirmation message when user tries to delete a file or folder in workspace dialog boxmnu_helpSúgóMenu bar Helpmnu_help_abtNévjegyMenu bar Aboutmnu_toolsEszközökMenu bar Toolsmnu_tools_optVálasztható RajzeszközMenu bar Optionalmnu_tools_prefsBeállításokMenu bar preferencesmnu_tools_transÁtmenetMenu bar draw transitionnew_btnÚjToolbar &gt; New Buttonnew_confirm_msgBiztos benne, hogy törölni akarja a képernyőn lévő tervét?Msg when user clicks new while working on the existing designnone_act_lblMégseNo gate activity selectedopen_btnMegnyitásToolbar &gt; Open Buttonoptional_btnOpcionálisToolbar &gt; Optional Buttonpaste_btnBeillesztésToolbar &gt; Paste Buttonperm_act_lblEngedélyLabel for permission gate activitypi_activity_type_gateTevékenység a kapunálActivity type for gate in PIpi_activity_type_groupingTevékenység csoportosításaActivity type for grouping in Property Inspectorpi_definelaterKésőbb definiálniLabel for Define later for PIpi_end_offsetA kapu lezárásaEnd offset labelpi_group_typeCsoportosítás típusaProperty Inspector Grouping type drop downpi_hoursÓraHours label in Property Inspectorpi_lbl_currentgroupAktuális csoportosításCurrent grouping label for PIpi_lbl_descLeírásDescription Label for PIpi_lbl_groupCsoportosításGrouping label for PIpi_lbl_titleCímTitle label for PIpi_max_actMax {0} Label for maximum Activities or Sequencespi_min_actMin {0} Label for minimum Activities or Sequencespi_minsPercMins label in teh property inspectorpi_no_groupingNincsCombo title for no groupingpi_num_learnersTanulók számaPI Num learners labelpi_optional_titleOpcionális tevékenységTitle for oprional activity property inspectorpi_runofflineOffline futtatásLabel for Run Oflinepi_start_offsetA kapu megnyitásaStart offset labelpi_titleTulajdonságokOn the title bar of the PIprefix_copyofMásolás...Prefix for copy paste command for canvas activitiesprefs_dlg_cancelMégse6prefs_dlg_lng_lblNyelv7prefs_dlg_okOK5prefs_dlg_theme_lblTéma8prefs_dlg_titleBeállítások4preview_btnElőnézetToolbar &gt; Preview Buttonproperty_inspector_titleTulajdonságokOn the title bar of the PIrandom_grp_lblVéletlenszerűLabel for the grouping drop down in the PropertyInspectorrename_btnÁtnevezésLabel for Rename Buttonsave_btnMentésToolbar &gt; Save buttonsched_act_lblÜtemezésLabel for schedule gate activitysynch_act_lblEgyeztetésUsed as a label for the Synch Gate Activity Typetk_titleTevékenységekLabel for Activities Toolkit Paneltrans_btnÁtmenetToolbar &gt; Transition Buttontrans_dlg_cancelMégseCancel button on transition dialogws_chk_overwrite_resourceVigyázzon: a jelenet felülírását választotta!ws_click_folder_fileKérem, egy mappára kattintson, vagy ha felül akar írni egy tervet, akkor arra!Error msg if no folder or file is selectedws_copy_same_folderA forrás- és a célkönyvtár azonosThe user has tried to drag and drop to the same placews_dlg_cancel_buttonMégse2ws_dlg_filenameFájlnévLabel for File name in workspace windowws_dlg_location_buttonHelyWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnMegnyitásWsp Dia Open Button labelws_dlg_properties_buttonTulajdonságokWorkspace dialogue Properties btn labelws_dlg_save_btnMentésWsp Dia Save Button labelws_dlg_titleMunkaterület0ws_no_permissionSajnálom, ezt a forrást nem oszthatja meg írásraMessage when user does not have write permission to complete actionws_rename_insKérem, adja meg az új nevetMessage of the new name for the userws_tree_mywspMunkaterületemThe root level of the treews_tree_orgsCsoportjaimShown in the top level of the tree in the workspacews_view_license_buttonNézetTo show the license to the useract_lock_chkKérem oldja fel a Választható Tevékenység tárolóját, mielőtt ezt a tevékenységet választhatónak állítaná be!Alert Message if user drags the activity to locked optional activity container act_tool_titleTevékenységekTitle for Activity Toolkit Panelal_alertÉrtesítésGeneric title for Alert windowal_cancelMégseTo Confirm title for LFErroral_confirmMegerősítésTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadA nyelvi adatok nem töltődtek be.message for unsuccessful language loadingapp_chk_themeloadNem sikerült betölteni a téma adataitmessage for unsuccessful theme loadingapp_fail_continueAz alkalmazás leáll. A hibával kapcsolatban kérjen tanácsot!message if application cannot continue due to any errorchosen_grp_lblKiválasztottLabel for the grouping drop down in the PropertyInspectorcopy_btnMásolásToolbar &gt; Copy Buttoncv_invalid_design_savedA terve még nem érvényes, de azért elmentettük. Kattintson az 'Példányok'-ra, hogy megtudja a hiba okát!Message when an invalid design has been savedcv_invalid_trans_targetNem hozhat létre átmenetet ehhez az objektumhoz.Error message for when transition tool is dropped outside of valid target activitycv_show_validationPéldányokThe button on the confirm dialogcv_valid_design_savedGratulálok! Az ön terve érvényes és mentésre került.Message when a valid design has been saveddb_datasend_confirmKöszönjük, hogy elküldte az adatokat a szerverre.Message when user sucessfully dumps data to the serverdelete_btnTörlésLabel for Delete buttongate_btnKapuToolbar &gt; Gate Buttongroup_btnCsoportToolbar &gt; Group Buttongrouping_act_titleCsoportosításDefault title for the grouping activityld_val_activity_columnTevékenységThe heading on the activity in the ValidationIssuesDialogld_val_doneRendbenThe button label for the dialogld_val_issue_columnPéldányThe heading on the issue in the ValidationIssuesDialogld_val_titleA példányok érvényesítéseThe title for the dialoglicense_not_selectedMég nem választott engedélyt - Kérjük, válasszon egyet!Shown if no license is selected in the drop down in workspacemnu_editSzerkesztésMenu bar Editmnu_edit_copyMásolásMenu bar Edit &gt; Copymnu_edit_cutKivágásMenu bar Edit &gt; Cutmnu_edit_pasteBeillesztésMenu bar Edit &gt; Pastemnu_edit_redoMégisMenu bar Edit &gt; Redomnu_edit_undoVisszavonásMenu bar Edit &gt; Undomnu_fileFájlMenu bar Filemnu_file_closeBezárásMenu bar Closemnu_file_newÚjMenu bar Newmnu_file_openMegnyitásMenu bar Openmnu_file_saveMentésMenu bar savemnu_file_saveasMentés máskéntMenu bar Save as \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/it_IT_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3opt_activity_seq_titleSequenze opzionaliTitle for Optional Sequences Container.optional_seq_btn_tooltipCrea un set di sequenze opzionaliTooltip for Sequences within Optionaly Activity button.to_conditions_dlg_defin_long_typeVariazioneType description for a long-value based ouput definition.cv_invalid_optional_seq_activity_no_branchesRimuovi tutte le sezioni dipendenti da {0} prima di aggiungerlo ad una sequenza opzionale.Alert message when user try to drop an activity with connected branches into optional sequences container.pi_no_seq_actNumero di sequenzeLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.cv_invalid_optional_seq_activityRimuovi i collegamenti da e verso {0} prima di impostarlo in una sequenza opzionale.Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_activity_helpURL_undefinedImpossibile trovare la pagina di aiuto per {0}Alert message when a tool activity has no help url defined.ta_iconDrop_optseq_error_msgNon ci sono sequenze abilitate in questo contenitore.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.pi_optSequence_remove_msgLa/e sequenza/e che sta(nno) per essere rimossa/e potrebbe(ro) contenere alcune attività che verranno cancellate. Procedere?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.activityDrop_optSequence_error_msgTrascina l'attività su una delle sequenzeAlert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.to_conditions_dlg_defin_bool_typeVero/FalsoType description for a lboolean-value based ouput definition.to_conditions_dlg_lt_lblMinore o uguale Less than option for long type conditions.pi_actAttivitàMin and max label postfix when an Optional Activity is selected.pi_seqSequenzaMin and max label postfix when an Optional Sequences activity is selected.pi_defaultBranch_cb_lblDefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNomeColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblCondizioneColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[Opzioni]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipRiduciTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblMaggiore o uguale a Greater than or equal toto_conditions_dlg_lte_lblMinore o uguale aLess than or equal togroupnaming_dialog_col_groupName_lblNome del gruppoColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignInserisci/Unisci...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnInserisciButton label on Workspace in INSERT mode.lbl_num_sequences{0} - SequenzeLabel to describe the amount of sequences in the container.pi_group_matching_btn_lblAbbina i Gruppi ai RamiButton in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lblAbbina le Condizioni ai RamiButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnAggiornaButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_defin_user_defined_typeDefinito dall'utenteType description for a user-defined (boolean set) based ouput definition.al_activity_paste_invalidImpossibile incollare questo tipo di attività!Alert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledPer visualizzare in anteprima la sequenza creata, salvare prima e poi cliccare su Anteprima.Tool tip message for preview button in toolbar when button is disabled.condmatch_dlg_message_lblIl branch predefinito si può selezionare scegliendo la relativa opzione nell'area Proprietà del branch desiderato.Label for a message in the Condition to Branch matching dialog.mnu_help_helpAiuto per l'Authoringlabel for menu bar Help - Authoring Help optionbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroImpossibile aggiornare: nessuna condizione definita dall'utente. Per procedere, impostare le condizioni nella pagina di authoring degli strumenti.Alert message when the updating the conditions with a selected output definition that has no default conditions.al_group_name_invalid_blankI nomi dei gruppi non possono essere lasciati in bianco.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupgpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.pi_branch_tool_acts_lblInput (Tool)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleRamificazioneLabel for Branching Activityabout_popup_license_lblQuesto programma è free software; puoi redistribuirlo e/o modificarlo a termini della GNU General Public License version 2 come pubblicato dalla Free Software Foundation. {0} Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.groupnaming_dialog_instructions_lblClicca su un nome per cambiarne il valoreInstructions for Group Naming dialog.pi_condmatch_btn_lblCrea condizioniLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblCrea condizioni di outputDialog title for creating new tool output conditions.al_doneFattoLabel for dialog completion button.condmatch_dlg_cond_lst_lblCondizioniLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblAbbina le Condizioni ai RamiDialog title for matching conditions to branches for Tool based Branching.to_conditions_dlg_add_btn_lblAggiungiLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblPulisci tuttoLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblRimuoviLabel for button to remove condition.to_conditions_dlg_from_lblDaLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblALabel for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblConfigura la gammaHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblRamoColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblCondizioneColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppoColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNessun Ramo selezionatoAlert message when adding a Mapping without a Branch (Sequence) being selected.branch_mapping_no_mapping_msgNessun Mapping selezionatoAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNessuna condizione selezionataAlert message when adding a Mapping without a Condition being selected.cv_autosave_err_msgSi è verificato un errore durante il tentativo di salvataggio automatico del tuo progetto. Aumentare la capacità di memoria Flash Player nelle impostazioni.Alert error message when auto-save fails.branch_mapping_auto_condition_msgTutte le restanti condizioni saranno applicate al Ramo di default.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueVariazione da {0} a {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactEsatto valore di {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblConfigura MappingLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblDefinisci in MonitorCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblDistribuisci i gruppi tra i ramiMap Groups to Branchesbranch_mapping_no_groups_msgNessun gruppo selezionatoAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppo baseBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblRamiLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGruppiLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblDenomina i GruppiTitle label for Group Naming dialog.pi_activity_type_branchingAttività di ramificazioneActivity type for Branching in Property Inspector.pi_branch_typeTipo di ramificazioneProperty Inspector Branching type drop down.pi_group_naming_btn_lblNome GruppoLabel for button that opens Group Naming dialog.sequence_act_titleSequenzaDefault title for Sequence Activity.tool_branch_act_lblOutput StudentiBranching type label for Tool output Branching.chosen_branch_act_lblScelta del docenteBranching type label for Teacher choice Branching.to_condition_start_valueValore inizialeValue representing the min boundary value of the conditions range.to_condition_end_valueValore finaleValue representing the max boundary value of the conditions value.al_continueContinuaContinue button on Alert dialogbranch_mapping_dlg_condition_linked_allSono presenti delle condizioniPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleQuesta condizione èPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblSenza titoloThe default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgIl progetto contiene branch mappings inutilizzate. Continuare?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.optional_act_btnAttivitàToolbar button for Optional Activity.optional_seq_btnSequenzaToolbar button for Sequences within Optional Activity.pi_optSequence_remove_msg_titleRimozione sequenze in corsoRemoving sequencesbranch_btn_tooltipCrea una ramificazione (disponibile in LAMS 2.1)tool tip message for branch button in toolbarcancel_btn_tooltipTorna a monitorare la lezione.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishFinitoMenu bar File - Finish (Edit Mode)flow_btn_tooltipCrea un controllo sullo svolgimento delle attivitàtool tip message for flow button in toolbargroup_btn_tooltipCrea un'attività di raggruppamentotool tip message for group button in toolbarabout_popup_title_lblSu - {0}Title for the About Pop-up window.al_alertAvvisoGeneric title for Alert windowpreview_btn_tooltipVedi in anteprima la sequenza come la vedranno gli studentiTool tip message for preview button in toolbarlbl_num_activities{0} - Attivitàreplacement for word activitiescv_activity_dbclick_readonlyNon puoi modificare un progetto di sola lettura. Salva una copia del progetto e prova di nuovo.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSola letturaLabel for top left of canvas shown when a read-only design is open.pi_max_actMax {0}Label for maximum Activities or Sequencespi_min_actMin {0}Label for minimum Activities or Sequencesal_empty_designSpiacente, non puoi salvare un progetto vuotoalert message when user want to save an empty designcv_autosave_rec_msgStai per recuperare l'ultimo progetto perso o non salvato. Il tuo progetto corrente sarà cancellato. Continuare?Message informing users that they have recovered data for a design.cv_autosave_rec_titleAttenzioneAlert title for auto save recovery message.mnu_file_recoverRecupero...Menu bar Recovercv_activity_copy_invalidNon ti è permesso copiare quest'attività.Error message when user try to copy child activity from either optional or parallel activity containercv_activityProtected_activity_link_msgQuesto {0} è collegato a {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_linked_msg{0} è collegato a un ramo esistente. Continuare?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.al_activity_copy_invalidAttenzione! è necessario selezionare l'attività prima di cliccare 'copia'.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasbranch_mapping_dlg_condition_col_value_maxMaggiore o uguale a {0}Value for Condition field in mapping datagrid when Greater than option is selected.al_activity_openContent_invalidAttenzione! è necessario selezionare l'attività prima di cliccare sulla voce Apri/Modifica Contenuto Attività nel menù Attivitàalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasabout_popup_version_lblVersioneLabel displaying the version no on the About dialog.cv_activityProtected_child_activity_link_msgQuesto {0} ha un figlio collegato a {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.ws_del_confirm_msgSei sicuro di voler cancellare questo file/cartella?Confirmation message when user tries to delete a file or folder in workspace dialog boxvalidation_error_outputTransitionType1Quest'attività non ha un collegamento in uscita.This activity has no output transitionws_file_name_emptySpiacente! Non puoi salvare un progetto senza alcun nome.Error message when user try to save a design with no file nameto_condition_invalid_value_directionIl {0} non può essere maggiore di {1}Alert message when the start value is greater than end value of the submitted condition.ws_view_license_buttonVediTo show the license to the usercv_activity_cut_invalidNon ti è consentito tagliare quest'attività.Error message when user try to cut child activity from either optional or parallel activity containerws_entre_file_nameInserisci il nome del progetto, quindi clicca sul pulsante Salva.Error message when user try to save a design with no file namecv_design_insert_warningUna volta inserita un'altra sequenza, quest'azione non potrà essere cancellata (la vecchia sequenza sarà salvata con la nuova inserita). Per tornare alla vechia sequenza, è necessario cancellare manualmente tutte le nuove attività inserite, quindi salvare. Per lasciare inalterata la sequenza corrente, clicca su Annulla. Altrimenti clicca su OK per selezionare la sequenza da inserire.Warning message when merge/insertcv_untitled_lblSenza titolo - 1Label for Design Title bar on canvasal_group_name_invalid_existingI nomi dei gruppi devono essere univoci.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupccm_open_activitycontentApri/Modifica il contenuto delle attivitàLabel for Custom Context Menuccm_copy_activityCopia attivitàLabel for Custom Context Menuccm_paste_activityIncolla attivitàLabel for Custom Context Menuccm_piVisualizza ProprietàLabel for Custom Context Menuccm_author_activityhelpAiuto per Attività AutoreLabel for Custom Context Menuws_dlg_descriptionDescrizioneLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateNessunoDrop down default for gate typepi_daysGiorniDays label in property inspector for gate toolcv_close_return_to_ext_srcChiudi e torna a {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedLe modifiche sono state apportate con successo.Changes have been successful applied.mnu_file_apply_changesApplica modificheApply Changesvalidation_error_transitionNoActivityBeforeOrAfterDeve esserci un'attività prima o dopo un collegamento.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionUn'attività deve avere un cellegamento in ingresso o in uscita.An activity must have an input or output transitionvalidation_error_inputTransitionType1Quest'attività non ha collegamenti in ingresso.This activity has no input transitionvalidation_error_inputTransitionType2Nessuna attività è senza collegamento in ingresso.No activities are missing their input transition.pi_num_groupsNumero di gruppiNumber of groups in Property inspectorvalidation_error_outputTransitionType2Nessuna attività è senza collegamento in uscita.No activities are missing their output transition.cv_invalid_design_on_apply_changesNon puoi apportare modifiche. Ci sono uno o più collegamenti mancanti.Cannot apply changes. There are one or more transitions missing.apply_changes_btnApporta modifiche.Apply Changesapply_changes_btn_tooltipApporta modiche al progetto e torna a monitorare la lezione.tool tip message for save button in toolbarcancel_btnAnnullaToolbar - Cancel Buttoncv_activity_readOnlyL'attività non può essere {0}. L'attività è in sola lettura.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblModifica in modalità liveLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delrimuoviAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modmodificatoAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgIl progetto deve essere valido per terminare le modifiche.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgAttenzione: il tuo progetto è stato modificato. Vuoi chiudere senza salvare?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyNon può esserci {0} collegamento. L'attività target è in sola lettura .Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).pi_parallel_titleAttività parallelaTitle for parallel activity property inspectorabout_popup_trademark_lbl{0} è un marchio di {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.ws_chk_overwrite_resourceAttenzione! Stai per sovrascrivere questa sequenza!ws_click_folder_fileCliccare su una Cartella per salvare o su un Progetto per sovrascrivereError msg if no folder or file is selectedws_copy_same_folderLa cartella di origine e quella di destinazione coincidonoThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCancella2ws_dlg_filenameNome FileLabel for File name in workspace windowws_dlg_location_buttonPosizioneWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnApriWsp Dia Open Button labelws_dlg_properties_buttonProprietàWorkspace dialogue Properties btn labelws_dlg_save_btnSalvaWsp Dia Save Button labelws_dlg_titleArea di lavoro0ws_newfolder_cancelCancellaCancel on the new folder name diaws_newfolder_insRinominare la cartellaInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionAttenzione, non hai il permesso di scrivere in questa risorsaMessage when user does not have write permission to complete actionws_rename_insDigitare il nuovo nomeMessage of the new name for the userws_tree_mywspLa mia area di lavoroThe root level of the treews_tree_orgsI miei GruppiShown in the top level of the tree in the workspaceact_lock_chkSblocca il contenitore delle attività opzionali prima di assegnarvi questa attività come opzionaleAlert Message if user drags the activity to locked optional activity container sys_error_msg_startSi è verificato il seguente errore di sistema:Common System error message starting linesys_error_msg_finishRiavviare LAMS Author per continuare. Vuoi salvare le seguenti informazioni sull'errore per contribuire a risolvere questo problema?Common System error message finish paragraphsys_errorErrore di SistemaSystem Error elert window titlepi_activity_type_sequenceAttività della Sequenza ({0})Activity type for Sequence (Branch) in Property Inspector.opt_activity_titleAttività opzionaleTitle for Optional Activity Containeris_remove_warning_msgATTENZIONE: la lezione sta per essere rimossa. Vuoi conservare questa lezione come {0}?Message for the alert dialog which appears following confirmation dialog for removing a lesson.cv_activityProtected_activity_remove_msgPer eliminare, deseleziona quest'attività come {0}.Instruction how to delete an Activity linked to a Branching Activity.al_sendInviaSend button label on the system error dialogal_cannot_move_activityImpossibile spostare questa attività.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkImpossibile aggiungere un'attività con Barriera come attività opzionaleError message when user drags gate activity over to optional containerprefix_copyof_countCopia ({0}) diPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidImpossibile salvare un progetto in questa cartella. Scegliere una sottocartella valida.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openFai clic su un Progetto per aprirlo.Alert message if folder tried to be opened.ws_license_lblLicenzaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformazioni aggiuntive sulla licenzaLabel for Licence Comment description below license drop downcv_invalid_optional_activityRimuovi i collegamenti provenienti da e diretti a {0} prima di impostarla come attività opzionale.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingManca la seconda attività del collegamento.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityEsiste già un collegamento da {0}Error message when a transition from the activity already existcv_invalid_trans_target_to_activityEsiste già un collegamento verso {0}Error message when a transition to the activity already existbranch_btnRamificazioneLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnSvolgimento attivitàLabel for Flow button in Toolbarmnu_file_importImportaMenu bar Importcv_design_export_unsavedNon puoi esportare un progetto non salvato.Alert message when trying to export can unsaved design.cv_design_unsavedIl progetto è stato modificato. Continuare senza salvare?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportEsportaMenu bar Exportws_chk_overwrite_existingQuesta cartella contiene già un file chiamato {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNon puoi usare questa cartella.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitEsciFile Menu Exitws_no_file_openNessun file trovato.Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNon puoi creare una sequenza circolareError message when a transition from one activity to another is creating a circular loopbin_tooltipSposta un'attività su questo cestino per rimuoverla dalla sequenza.Tool tip message for canvas binnew_btn_tooltipCancella la sequenza corrente e ripristina lo spazio di lavoro pronto per l'usoTool tip message for new button in toolbaropen_btn_tooltipMostra la finestra di dialogo File per aprire una sequenza di attivitàTool tip message for open button in toolbarsave_btn_tooltipSalva rapidamente la sequenza correntetool tip message for save button in toolbarcopy_btn_tooltipCopia la sequenza selezionatatool tip message for copy button in toolbarpaste_btn_tooltipIncolla una copia della sequenza selezionatatool tip message for paste button in toolbartrans_btn_tooltipUsa questa matita per disegnare collegamenti fra le attività (o premi il tasto CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCrea un blocco di attività opzionali.tool tip message for optional button in toolbargate_btn_tooltipBlocca un passaggiotool tip message for gate button in toolbargrouping_act_titleRaggruppamentoDefault title for the grouping activityld_val_activity_columnAttivitàThe heading on the activity in the ValidationIssuesDialogld_val_doneFattoThe button label for the dialogld_val_issue_columnProblemaThe heading on the issue in the ValidationIssuesDialogld_val_titleProblemi di validazioneThe title for the dialoglicense_not_selectedSelezionare una licenza per questo progettoShown if no license is selected in the drop down in workspacemnu_editModificaMenu bar Editmnu_edit_copyCopiaMenu bar Edit &gt; Copymnu_edit_cutTagliaMenu bar Edit &gt; Cutmnu_edit_pasteIncollaMenu bar Edit &gt; Pastemnu_edit_redoRipetiMenu bar Edit &gt; Redomnu_edit_undoAnnulla Menu bar Edit &gt; Undomnu_fileFileMenu bar Filemnu_file_closeChiudiMenu bar Closemnu_file_newNuovoMenu bar Newmnu_file_openApriMenu bar Openmnu_file_saveSalvaMenu bar savemnu_file_saveasSalva con nomeMenu bar Save asmnu_helpAiutoMenu bar Helpmnu_help_abtNotizie su LAMSMenu bar Aboutmnu_toolsStrumentiMenu bar Toolsmnu_tools_optCrea Attività opzionaliMenu bar Optionalmnu_tools_prefsPreferenzeMenu bar preferencesmnu_tools_transDisegna CollegamentoMenu bar draw transitionnew_btnNuovoToolbar &gt; New Buttonnew_confirm_msgSei sicuro di voler cancellare il tuo progetto sullo schermo?Msg when user clicks new while working on the existing designnone_act_lblNessuna AttivitàNo gate activity selectedopen_btnApriToolbar &gt; Open Buttonoptional_btnAttività opzionaliToolbar &gt; Optional Buttonpaste_btnIncollaToolbar &gt; Paste Buttonperm_act_lblPermessoLabel for permission gate activitypi_activity_type_gateAttività con BarrieraActivity type for gate in PIpi_activity_type_groupingAttività di GruppoActivity type for grouping in Property Inspectorpi_definelaterDefinisci in MonitorLabel for Define later for PIpi_end_offsetBarriera chiusaEnd offset labelpi_group_typeTipo di raggruppamentoProperty Inspector Grouping type drop downpi_hoursOreHours label in Property Inspectorpi_minsMinutiMins label in teh property inspectorpi_lbl_currentgroupRaggruppamento correnteCurrent grouping label for PIpi_lbl_descDescrizioneDescription Label for PIpi_lbl_groupRaggruppamentoGrouping label for PIpi_lbl_titleTitoloTitle label for PIpi_no_groupingNessunoCombo title for no groupingpi_num_learnersNumero di studentiPI Num learners labelpi_optional_titleAttività opzionaleTitle for oprional activity property inspectorpi_runofflineAttività OfflineLabel for Run Oflinepi_start_offsetBarriera apertaStart offset labelpi_titleProprietàOn the title bar of the PIprefix_copyofCopia diPrefix for copy paste command for canvas activitiesprefs_dlg_cancelCancella6prefs_dlg_lng_lblLingua7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titlePreferenze4preview_btnAnteprimaToolbar &gt; Preview Buttonproperty_inspector_titleProprietàOn the title bar of the PIrandom_grp_lblCasualeLabel for the grouping drop down in the PropertyInspectorrename_btnRinominaLabel for Rename Buttonsave_btnSalvaToolbar &gt; Save buttonsched_act_lblOrarioLabel for schedule gate activitysynch_act_lblSincronizzaUsed as a label for the Synch Gate Activity Typetk_titleStrumenti per le AttivitàLabel for Activities Toolkit Paneltrans_btnCollegamentoToolbar &gt; Transition Buttontrans_dlg_cancelCancellaCancel button on transition dialogtrans_dlg_gateSincronizzaHeader for the transition props dialogtrans_dlg_gatetypecmbTipoGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleCollegamentoTitle for the transition properties dialogws_RootCartella principaleRoot folder title for workspaceact_tool_titleStrumenti per le AttivitàTitle for Activity Toolkit Panelal_cancelAnnullaTo Confirm title for LFErroral_confirmConfermaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadInformazioni sul linguaggio non caricatemessage for unsuccessful language loadingapp_chk_themeloadInformazioni sul tema non caricatemessage for unsuccessful theme loadingapp_fail_continueL'applicazione non può continuare. Contattare il supporto tecnico.message if application cannot continue due to any errorchosen_grp_lblScegliere in MonitorLabel for the grouping drop down in the PropertyInspectorcopy_btnCopiaToolbar &gt; Copy Buttoncv_invalid_design_savedIl tuo progetto non è ancora valido ma è stato salvato. Clicca su 'problemi possibili' per vedere che cosa non va.Message when an invalid design has been savedcv_invalid_trans_targetImpossibile creare un collegamento verso questo oggetto.Error message for when transition tool is dropped outside of valid target activitycv_show_validationProblemiThe button on the confirm dialogcv_valid_design_savedCongratulazioni! - Il tuo progetto è valido ed è stato salvato.Message when a valid design has been saveddb_datasend_confirmGrazie per aver inviato i dati al serverMessage when user sucessfully dumps data to the serverdelete_btnCancellaLabel for Delete buttongate_btnBarrieraToolbar &gt; Gate Buttongroup_btnGruppoToolbar &gt; Group Buttonabout_popup_copyright_lbl© 2002-2009 {0} Foundation.Label displaying copyright statement in About dialog.pi_branch_tool_acts_defaultSelezioneDefault item label for Input Tool dropdown list.cv_invalid_trans_diff_branchesNon puoi creare un collegamento tra attività in branch differentiError message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activityUn branch verso {0} già esiste.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityUn branch da {0} già esiste.Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceNon puoi connettere un nuovo collegamento a una sequenza chiusa.Error message displayed after drawing a transition from an activity in a closed sequence.al_cannot_move_to_diff_opt_seqPer spostare un'attività verso una diversa sequenza all'interno di Sequenze opzionali, prima trascina l'attività fuori dall'area della Sequenza opzionale, quindi clicca e trascinala verso la nuova posizione all'interno delle Sequenze opzionali.Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitybranch_mapping_dlg_branch_item_default{0} (default)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.learner_choice_grp_lblScelta dello studenteA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesDimensioni gruppo egualiCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgEditor obiettiviDialog for adding/editing/removing competencescompetences_lblObiettiviLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnAggiungiAdd competence buttoncompetence_def_dlgDefinizione obiettiviTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsUn obiettivo con il titolo {0} già esisteWarning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankIl titolo dell'obiettivo non può essere lasciato in biancoWarning message when you try to define a competence with a blank competence titlemap_comptence_btnPiano degli obiettiviLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnProgrammazione obiettiviTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblObiettiviLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumental_activity_view_competence_mappings_invalidAssicurati di aver selezionato un'attività prima di tentare di vederne la mappa degli obiettivi.Warning that appears when no activity is selected when the user tries to view competence mappingscv_invalid_optional_activity_no_branchesRimuovi tutte le sezioni dipendenti da {0} prima di impostarlo come attività opzionale.Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.map_gate_conditions_btnMappa delle condizioniButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgTutte le restanti condizioni devono essere rilevate per lo stato di barriera chiusa selezonato.Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openapertoOpen state for gate activity, allows learners to pass through itgate_closedchiusoClosed state for gate activity, does not allow learners to pass through itcompetence_editor_warning_competence_mappedL'obiettivo che stai tentando di eliminare è programmato attualmente per una o più attività. Eliminando quest'obiettivo, si rimuoverà ogni relativa programmazione. Sei sicuro di voler procedere? Warning message when you attempt to delete a competence that is mapped to one or more activities.branch_mapping_dlg_condition_col_value_minMinore o uguale a {0}Value for Condition field in mapping datagrid when Less than option is selected.act_seq_lock_chkSblocca il contenitore di sequenze opzionali prima di assegnare quest'attività ad una sequenza opzionale.Alert Message if user drags the activity to locked optional sequences container.to_conditions_dlg_defin_item_header_lbl[Scegli l'Output]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_update_defaultConditionsStai per aggiornare le tue condizioni per la definizione dell'output selezionato. Ciò rimuoverà tutti i collegamenti ai rami esistenti. Vuoi continuare?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.grouping_invalid_with_common_names_msgImpossibile salvare il progetto in quanto l'attività di gruppo '{0}' ha più di un gruppo con lo stesso nome. Ricontrollare il raggruppamento e riprovare.Alert message displayed when the Grouping validation fails during saving a design.to_condition_invalid_value_rangeLa {0} non rientra nella gamma delle condizioni esistentiAlert message when a submitted condition interferes with another previously submitted condition. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ja_JP_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSstream_urlhttp://{0}foundation.orgmnu_file_insertdesign挿入/マージ...gpl_license_urlwww.gnu.org/licenses/gpl.txtmnu_tools_transコネクタでつなぐws_del_confirm_msgこのファイル/フォルダを削除してもいいですか?cv_eof_changes_applied変更は適用されました。about_popup_trademark_lbl{0} は {0} Foundation ( {1} ) の商標です。about_popup_copyright_lbl© 2002-2009 {0} Foundation.trans_btnコネクタtrans_dlg_titleコネクタmnu_file_import_communityLAMS コミュニティからのインポートpi_define_monitor_cb_lblあとでモニタで定義するgate_mapping_auto_condition_msg全残りの閉じられた状態の選択済ゲートを割り当てられます。sys_error_msg_finish作業を続けるためには LAMS 教材作成を再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?prefs_dlg_title詳細設定pi_definelaterあとでモニタで定義するmnu_help_abtLAMS についてcompetence_mappings_btn権限の割り当てmnu_tools_prefs詳細設定chosen_grp_lblあとでモニタで選択するcancel_btn_tooltipレッスンモニタに戻る。apply_changes_btn_tooltipデザインの変更を適用して、レッスンモニタに戻ります。al_activity_view_competence_mappings_invalid権限の割り当てを表示する前にアクティビティを選択してください。competence_editor_warning_competence_mapped削除中の権限には、現在 1 つ以上のアクティビティが配置されています。この権限を削除することは、その割り当ても削除されることになります。続けますか?grp_chk_clear_branch_mappings警告: すべての既存グループを、このグルーピング・アクティビティにリンクされた分岐の割り当てに変更しようとしていますが、続けますか?redundant_branch_mappings_msgデザインは、削除される未使用の分岐を含みます。続行しますか?map_comptence_btn権限の割り当てgroupmatch_dlg_title_lblグループを分岐に割り当てるpi_mapping_btn_lbl割り当て設定branch_mapping_dlg_match_dgd_lbl割り当てbranch_mapping_auto_condition_msgまだ割り当てられていない条件は、デフォルトの分岐にマップされます。branch_mapping_no_mapping_msg割り当てが選択されていません。map_gate_conditions_btnゲート条件の割り当てcv_invalid_design_savedデザインを保存しましたが、まだ有効な形式ではありません。潜在的問題点 ボタンをクリックして問題を確認してください。ld_val_issue_column問題点ld_val_title検証時の問題点to_conditions_dlg_defin_bool_type真/偽cv_show_validation問題点chosen_branch_act_lbl先生の選択learner_choice_grp_lbl学習者の選択cv_trans_target_act_missingコネクタの片側のアクティビティが無くなっています。ws_newfolder_okOKpi_seqシーケンスto_conditions_dlg_defin_long_type範囲to_conditions_dlg_defin_item_header_lbl[ 出力を選択 ]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_value_col_lbl条件to_conditions_dlg_options_item_header_lbl[ オプション ]sequence_act_title_new{0} {1}close_mc_tooltip最小化to_conditions_dlg_gte_lblこれ以上:to_conditions_dlg_lte_lblこれ以下:ws_dlg_insert_btn挿入branch_mapping_dlg_branch_item_default{0} (規定値)pi_group_matching_btn_lblグループを分岐に割り当てるpi_tool_output_matching_btn_lbl分岐の一致条件refresh_btn更新to_conditions_dlg_condition_items_update_defaultConditions選択されたアウトプットの、すべての条件を更新しようとしています。この際、すでに存在する分岐へのすべてのリンクが消去されます。続行しますか?to_conditions_dlg_defin_user_defined_type設定済みto_conditions_dlg_range_lbl範囲branch_mapping_dlg_branch_col_lbl分岐branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblグループbranch_mapping_no_branch_msg分岐が選択されていません。branch_mapping_no_condition_msg条件が選択されていません。branch_mapping_dlg_condition_col_value{0} から {1}branch_mapping_dlg_condition_col_value_exact{0}branch_mapping_no_groups_msgグループが選択されていません。group_branch_act_lblグループを元とするbranch_mapping_dlg_branches_lst_lbl分岐groupmatch_dlg_groups_lst_lblグループgroupnaming_dlg_title_lblグループ名pi_activity_type_branching分岐アクティビティpi_branch_type分岐のタイプsequence_act_titleシーケンスtool_branch_act_lbl学習者のアウトプットto_condition_start_value開始値to_condition_end_value終了値to_condition_invalid_value_range{0} は前掲の範囲から外れています。to_condition_invalid_value_direction{0} は {1} を超えて設定することはできません。is_remove_warning_msg警告: 学習履歴を削除しようとしています。このレッスンを {0} のままにしておきますか?al_continue続行branch_mapping_dlg_condition_linked_msg{0} は既存の分岐と接続しています。続行しますか?branch_mapping_dlg_condition_linked_all条件があります。branch_mapping_dlg_condition_linked_singleこの条件はto_condition_untitled_item_lbl無題 {0}cv_activityProtected_activity_link_msgこの {0} は {1} とリンクしています。branch_mapping_dlg_condition_col_value_max{0} 以上optional_act_btnアクティビティoptional_seq_btnシーケンスoptional_seq_btn_tooltip選択枠シーケンスを配置します。pi_optSequence_remove_msg_titleシーケンスの削除pi_optSequence_remove_msg削除するシーケンスにアクティビティが含まれる場合、同時に削除されます。シーケンスを削除しますか?pi_no_seq_actシーケンス番号lbl_num_sequences{0} - シーケンスactivityDrop_optSequence_error_msgアクティビティはシーケンスの上にドロップしてください。cv_invalid_optional_seq_activity_no_branchesそれを選択枠シーケンスに追加する前に、{0} に接続している分岐を削除してください。ta_iconDrop_optseq_error_msgこのコンテナには有効なシーケンスがありません。cv_invalid_optional_activity_no_branchesそれを選択枠アクティビティに追加する前に、{0} に接続している分岐を削除してください。opt_activity_seq_title選択枠シーケンスto_conditions_dlg_lt_lbl以下branch_mapping_dlg_condition_col_value_min{0} 以下pi_actアクティビティcv_activity_helpURL_undefined{0}のヘルプは見つかりませんでしたcv_untitled_lbl無題 - 1mnu_help_helpヘルプccm_open_activitycontentアクティビティの編集ccm_copy_activityコピーccm_paste_activityペーストccm_piプロパティ・インスペクタccm_author_activityhelpヘルプws_dlg_description説明trans_dlg_nogate未設定pi_dayscv_close_return_to_ext_src閉じて {0} に戻るmnu_file_apply_changes適用apply_changes_btn適用cancel_btnキャンセルcv_activity_readOnlyアクティビティは {0} になれません。読み込み専用です。cv_edit_on_fly_lblライブ編集cv_element_readOnly_action_del削除されましたcv_element_readOnly_action_mod変更されましたcv_eof_finish_modified_msg警告: デザインは変更されています。保存せずに閉じますか?mnu_file_finish終了about_popup_title_lbl{0} についてal_cancelキャンセルbranching_act_title分岐pi_activity_type_sequenceシーケンス・アクティビティ ({0})pi_branch_tool_acts_lblインプット (ツール)pi_condmatch_btn_lbl条件を作成to_conditions_dlg_title_lblアウトプット条件を作成al_done完了condmatch_dlg_cond_lst_lbl条件condmatch_dlg_title_lbl分岐の一致条件pi_defaultBranch_cb_lblデフォルトto_conditions_dlg_add_btn_lbl+ 追加to_conditions_dlg_clear_all_btn_lbl全消去to_conditions_dlg_remove_item_btn_lbl- 削除to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblTocv_gateoptional_hit_chk選択枠アクティビティにゲート・アクティビティを追加することはできません。prefix_copyof_count{0} をコピーws_save_folder_invalidこのフォルダーにデザインを保存することはできません。有効なサブフォルダを選択してください。ws_click_file_openデザインをクリックして開いてください。ws_license_lblライセンスws_license_comment_lbl追加ライセンス情報branch_btn分岐flow_btnフローmnu_file_importインポートcv_design_export_unsaved未保存のデザインはエクスポートすることができません。cv_design_unsavedキャンバス上のデザインは変更されています。保存せずに続行しますか?mnu_file_exportエクスポートws_click_virtual_folderこのフォルダを利用することはできません。mnu_file_exit終了ws_no_file_openファイルが見つかりません。cv_invalid_trans_circular_sequence繰り返すシーケンスを作ることはできませんbin_tooltipアクティビティ・シーケンスから削除するために、ごみ箱にアクティビティをドロップしてください。new_btn_tooltip現在のシーケンスをクリアして、ワークスペースを準備しますopen_btn_tooltipアクティビティ・シーケンスを開くファイルダイアログを表示しますsave_btn_tooltip現在のアクティビティ・シーケンスを保存しますcopy_btn_tooltip選択したアクティビティをコピーしますpaste_btn_tooltipアクティビティをペーストしますoptional_btn_tooltip選択枠アクティビティを配置します。gate_btn_tooltip終了点を配置しますflow_btn_tooltipフローコントロール・アクティビティを配置しますgroup_btn_tooltipグループ・アクティビティを配置しますcv_activity_dbclick_readonly読み込み専用デザインのツールを編集することはできません。デザインの複製を保存してから再度操作してください。cv_readonly_lbl読み込み専用al_empty_design空のデザインを保存することはできませんcv_autosave_err_msgデザインを自動保存する際にエラーが発生しました。Flash Player の記憶領域設定を増やしてください。cv_autosave_rec_msg最後に失われたか、未保存のデザインを回復しようとしています。現在のデザインはクリアされます。続けますか?cv_autosave_rec_title警告mnu_file_recover再読込...cv_activity_copy_invalidこのアクティビティはコピーすることができません。al_activity_copy_invalid コピーする前にアクティビティを選択する必要がありますpi_lbl_currentgroup現在のグループpi_lbl_desc説明pi_lbl_groupグループpi_lbl_titleタイトルpi_max_act最大値 {0}pi_min_act最小値 {0}branch_btn_tooltip分岐を配置しますact_seq_lock_chkこのアクティビティを選択枠シーケンスに配置する前に、選択枠のロックを解除してください。pi_minspi_no_grouping未設定pi_num_learners学習者数pi_optional_title選択枠アクティビティpi_runofflineオフラインアクティビティpi_start_offsetタイマーpi_titleプロパティprefix_copyofコピー元: prefs_dlg_cancelキャンセルprefs_dlg_lng_lbl言語prefs_dlg_okOKprefs_dlg_theme_lblテーマproperty_inspector_titleプロパティrandom_grp_lbl自動で割り当てるsave_btn保存sched_act_lblタイマーで設定synch_act_lbl全員を待つtk_titleアクティビティ・ツールキットcv_invalid_optional_activity選択枠アクティビティに設定する前に、{0} に接続するコネクタを削除してください。trans_dlg_cancelキャンセルtrans_dlg_gate同期trans_dlg_gatetypecmbタイプtrans_dlg_okOKws_Rootルートws_chk_overwrite_resource警告: このシーケンスを上書きしようとしています!ws_click_folder_fileフォルダをクリックして保存するか、デザインをクリックして上書き保存してくださいws_copy_same_folder同じ場所にはドロップできませんws_dlg_cancel_buttonキャンセルws_dlg_location_button場所ws_dlg_ok_buttonOKws_dlg_open_btn開くws_dlg_properties_buttonプロパティws_dlg_save_btn保存ws_dlg_titleワークスペースws_newfolder_cancelキャンセルws_no_permissionこの資料を書き込む権限がありませんws_tree_mywspワークスペースws_tree_orgsグループact_lock_chkこのアクティビティを選択枠アクティビティに配置する前に、選択枠のロックを解除してください。sys_error_msg_startシステムエラーが発生しました: al_confirm確認al_okOKapp_chk_langload言語データはロードされませんでしたsys_errorシステムエラーpi_num_groupsグループ数opt_activity_title選択枠アクティビティlbl_num_activities{0} - アクティビティal_send送信al_cannot_move_activityこのアクティビティを動かすことはできません。act_tool_titleアクティビティ・ツールキットapp_chk_themeloadテーマはロードされませんでしたapp_fail_continueアプリケーションは作業を続行できません。サポートに連絡してくださいcopy_btnコピーcv_valid_design_savedおつかれさまでした!正しい形式のデザインが保存されましたdb_datasend_confirmデータをサーバに送信しましたdelete_btn削除gate_btnゲートgroup_btnグループgrouping_act_titleグループld_val_activity_columnアクティビティld_val_done完了license_not_selected著作権表示が選択されていません - 少なくとも一つ選択してくださいmnu_edit編集mnu_edit_copyコピーmnu_edit_cut切り取りmnu_edit_paste貼り付けmnu_edit_redoやり直すmnu_edit_undo元に戻すmnu_fileファイルmnu_file_close閉じるmnu_file_new新規作成mnu_file_open開くmnu_file_save保存mnu_file_saveas名前を付けて保存mnu_helpヘルプmnu_toolsツールmnu_tools_opt選択枠を配置new_btn新規作成new_confirm_msg画面上のデザインを消去してもよろしいですか?none_act_lbl未設定open_btn開くoptional_btn選択枠paste_btn貼り付けperm_act_lbl手動で開くpi_activity_type_gateゲート・アクティビティpi_activity_type_groupingグループ・アクティビティpi_end_offset終了ゲートpi_group_typeグループ・タイプpi_hoursal_activity_paste_invalidこのアクティビティを貼り付けすることはできません。condmatch_dlg_message_lbl目的の分岐のプロパティの"デフォルト"チェックボックスをクリックすると、デフォルトの分岐が選択されます。cv_design_insert_warningいったん別のシーケンスを挿入すると、取り消すことはできません - 元のシーケンスは、挿入された新しいシーケンスと共に、自動的に保存されます。元のシーケンスに戻すには、新しいシーケンスのアクティビティを手動で削除して、保存しなければならなくなります。現在のシーケンスを変更せずにおくには、キャンセルをクリックしてください。そうでない場合は、OKをクリックして、挿入するシーケンスを選択してください。cv_invalid_trans_targetこのオブジェクトへのコネクタを作成することはできませんal_cannot_move_to_diff_opt_seqアクティビティを選択枠シーケンス内の別のシーケンスに移動するには、まずそのアクティビティを選択枠シーケンスの外にドラッグしてから、選択枠シーケンス内の新たな位置にドラッグしてください。cv_activityProtected_activity_remove_msg削除するには {0} からこのアクティビティを外してください。trans_btn_tooltipコネクタをつなぎます (もしくは CTRL キーを押しながらドラッグ)al_activity_openContent_invalidアクティビティのコンテキストメニューで 開く/編集 をクリックする前に、アクティビティを選択する必要があります。cv_activity_cut_invalid このアクティビティは切り取りすることができません。cv_activityProtected_child_activity_link_msgこの {0} のアクティビティは、{1} とリンクしています。validation_error_outputTransitionType2遷移先コネクタを失ったアクティビティはありません。cv_invalid_design_on_apply_changes変更を適用することができません。いくつかのコネクタが失われています。cv_trans_readOnlyコネクタは {0} になれません。コネクタのターゲットは読み込み専用です。cv_invalid_optional_seq_activity選択枠シーケンスに設定する前に、{0} に接続するコネクタを削除してください。pi_equal_group_sizes同じグループサイズにするcompetence_editor_dlg権限の編集cv_invalid_trans_diff_branches異なる分岐に配置されているアクティビティをコネクタで接続することはできません。cv_invalid_trans_closed_sequence完結しているシーケンスに新しいコネクタを作成することはできません。validation_error_transitionNoActivityBeforeOrAfterコネクタは、前か後にアクティビティをつなげる必要がありますvalidation_error_inputTransitionType1このアクティビティにはコネクタの遷移元の端がありませんvalidation_error_inputTransitionType2遷移元コネクタを失ったアクティビティはありません。validation_error_outputTransitionType1このアクティビティにはコネクタの遷移先の端がありませんws_save_title_reserved_charsタイトルに特殊文字を含めることはできません: {0}competence_editor_warning_title_blank権限のタイトルは空欄にできませんcompetences_lbl権限competence_editor_add_competence_btn追加competence_def_dlg権限定義付けダイアログcompetences_mapped_to_act_lbl権限gate_open開くgate_closed閉じるws_dlg_date_modified_lbl最終変更日: {0}view_students_before_selection選択前に学習者一覧を見ますか?arrange_act_btnアレンジ・アクティビティsupport_act_btnサポートsupport_act_btn_tooltip選択枠サポート・アクティビティを配置します。gradebook_output_type成績表のアウトプットsupport_act_titleサポート・アクティビティsupport_msg_no_connectionサポート・アクティビティは他のアクティビティと接続できませんsupport_msg_invalid_childアクティビティのタイプ {0} はサポート・アクティビティとして追加できませんsupport_msg_max_children_reached以下にアクティビティをドロップできません: {0}. サポート・アクティビティは 最大 {1} の子アクティビティが使えます。support_msg_cannot_be_child他のアクティビティにサポート・アクティビティをドロップできません。cv_eof_finish_invalid_msgデザインは、編集を終了する際に正しい順序になっている必要があります。pi_branch_tool_acts_default-- 未選択 --ws_file_name_emptyファイル名をつけないと保存することができません。groupnaming_dialog_instructions_lblクリックして名前を変更してください。groupnaming_dialog_col_groupName_lblグループ名to_conditions_dlg_condition_items_name_col_lblタイトルgrouping_invalid_with_common_names_msgグループ・アクティビティ '{0}' に同じ名前のグループが1つ以上存在するため、デザインを保存することができません。グループを見直してから再度操作してください。al_group_name_invalid_blankグループ名は空欄にできません。al_group_name_invalid_existing同じグループ名は付けられません。ws_rename_ins新規名を入力してくださいpi_group_naming_btn_lblグループ名ws_newfolder_insフォルダ名を入力してくださいws_dlg_filenameファイル名ws_entre_file_nameデザインの名前を入力してから、保存 ボタンをクリックしてください。cv_invalid_trans_target_to_activity{0} へつながっているコネクタがすでに存在しますcv_invalid_trans_target_from_activity{0} とつながっているコネクタがすでに存在しますws_chk_overwrite_existingこのフォルダにはすでに {0} という名前のファイルが存在します。cv_invalid_branch_target_to_activity{0} への分岐はすでに作成済です。cv_invalid_branch_target_from_activity{0} からの分岐はすでに作成済です。competence_editor_warning_title_existsタイトル {0} の権限は有効になっていますal_alert通知branch_mapping_dlg_condtion_items_update_defaultConditions_zeroユーザーに定義された条件が見つからなかったので、アップデートできません。ツールの編集ページで設定する必要があるかもしれません。validation_error_activityWithNoTransitionアクティビティは、遷移元か遷移先となるコネクタが必要ですpreview_btn_tooltip_disabledシーケンスをプレビューするには、シーケンスを保存してからプレビューをクリックしてください。ws_view_license_button表示preview_btn_tooltip学習者視点でシーケンスをプレビューしますpreview_btnプレビューrename_btn名前の変更pi_parallel_title並行アクティビティabout_popup_version_lblバージョンabout_popup_license_lbl<p>このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された GNU 一般公衆利用許諾契約書 バージョン 2 の定める条件の下で再頒布または改変することができます。<br><br>{0}</p> \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ko_KR_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3close_mc_tooltip최소화to_conditions_dlg_gte_lbl같거나 큼to_conditions_dlg_lte_lbl같거나 작음groupnaming_dialog_col_groupName_lbl모둠이름mnu_file_insertdesign삽입/병합ws_dlg_insert_btn삽입branch_mapping_dlg_branch_item_default{0}(기본)pi_group_matching_btn_lbl모둠을 가지로 연계cv_invalid_branch_target_to_activity{0}으로의 갈래가 이미 있습니다.cv_invalid_branch_target_from_activity{0}로부터의 갈래가 이미 있습니다.cv_invalid_trans_closed_sequence닫힌 순차학습으로 새로운 이동을 연결할 수 없습니다.al_group_name_invalid_blank모둠 이름은 공백이어서는 안됩니다.al_group_name_invalid_existing모둠 이름은 유일해야 합니다.refresh_btn새로고침pi_tool_output_matching_btn_lbl조건별 갈래 연결to_conditions_dlg_defin_user_defined_type사용자 정의al_activity_paste_invalid죄송합니다. 이 종류의 활동은 붙여넣기 할 수 없습니다.pi_branch_tool_acts_default---선택---cv_invalid_trans_diff_branches다른 갈래에 있는 활동간 이동을 만들 수 없습니다.to_conditions_dlg_condition_items_update_defaultConditions선택된 출력 정의에 대한 조건을 갱신하려고 합니다.al_cannot_move_to_diff_opt_seq선택적 순차학습내에서 다른 순차학습으로 활동을 옮기기 위해서는 선택적 순차학습 영역내에서 학습을 바깥으로 드래그한다음 다시 클릭하고 순차학습내의 새로운 위치로 끌어다 놓으십시요. preview_btn_tooltip_disabled순차학습을 미리보기 위해서는 저장한 다음 미리보기를 클릭하세요.condmatch_dlg_message_lbl기본 갈래는 원하는 갈래의 속성영역에서 "기본"체크 박스를 선택하여 선택할 수 있습니다.branch_mapping_dlg_condtion_items_update_defaultConditions_zero사용자 정의 조건이 없어서 새로고침할 수 없습니다. 도구의 작성페이지에서 사용자 정의 조건들을 설정할 수 있습니다.grouping_invalid_with_common_names_msg모둠 활동 '{0}'에 같은 이름의 모둠이 한개 이상 있어서 학습설계를 저장할 수 없습니다. 모둠구성을 확인하고 다시 시도하십시요.cv_design_insert_warning한번 다른 순차학습을 삽입하면 취소할 수 없습니다. 이전 순차학습은 새 순차학습이 삽입된 상태로 자동으로 저장될 것 입니다. 이전의 순차학습으로 돌아가기 위해서는 수동으로 모든 새로운 순차학습을 삭제하고 저장해야 합니다. 현재 순차학습을 변경하지 않으려면 취소를 클릭하시고 순차학습을 삽입하기 위해서는 확인을 클릭하세요.branch_mapping_no_condition_msg조건이 선택되지 않았습니다.branch_mapping_auto_condition_msg남은 조건들은 기본 갈래에 할당될 것입니다.branch_mapping_dlg_match_dgd_lbl할당branch_mapping_dlg_condition_col_value{0}에서 {1} 까지 범위branch_mapping_dlg_condition_col_value_exact{0}의 정확한 값pi_mapping_btn_lbl할당 설정pi_define_monitor_cb_lbl관찰에서 정의groupmatch_dlg_title_lbl모둠을 갈래에 할당branch_mapping_no_groups_msg모둠이 선택되지 않았습니다.branch_mapping_dlg_branches_lst_lbl갈래group_branch_act_lbl모둠 기반groupmatch_dlg_groups_lst_lbl모둠들groupnaming_dlg_title_lbl모둠 이름 짓기pi_activity_type_branching갈래 활동pi_branch_type갈래 형식pi_group_naming_btn_lbl모둠이름짓기sequence_act_title순차학습tool_branch_act_lbl도구 출력chosen_branch_act_lbl교수자 선택to_condition_start_value최소값to_condition_end_value최대값pi_optSequence_remove_msg_title순차학습 제거to_condition_invalid_value_range{0}은 기존 조건 범위에 포함되지 않습니다.to_conditions_dlg_defin_bool_type참/거짓to_condition_invalid_value_direction{0}은 {1}보다 클 수 없습니다.optional_seq_btn_tooltip선택 순차학습활동 집합 만들기is_remove_warning_msg학습이 제거될 것입니다. 이 학습을 {0}로 보존하기를 원하십니까?al_continue계속branch_mapping_dlg_condition_linked_msg{0}이 기존 갈래와 연결되었습니다. 계속하시겠습니까?branch_mapping_dlg_condition_linked_all다음 조건들이 있습니다.branch_mapping_dlg_condition_linked_single이 조건은 다음과 같습니다.to_condition_untitled_item_lbl제목없음 {0}redundant_branch_mappings_msg이 설계는 사용되지 않아서 제거될 갈래 할당을 포함하고 있습니다. 계속하시겠습니까?cv_activityProtected_activity_remove_msg제거하기 위해서는 이 활동을 {0}로 선택하지 마십시요.cv_activityProtected_activity_link_msg{0}이 {1}과 연결되어 있습니다.cv_activityProtected_child_activity_link_msg{0}이 {1}와 연결된 하위활동을 가지고 있습니다.branch_mapping_dlg_condition_col_value_max{0}과 크거나 같음optional_act_btn활동optional_seq_btn순차학습pi_optSequence_remove_msg제거될 순차학습은 삭제될 활동을 포함할 수도 있습니다. 이 순차학습들을 제거하시겠습니까?pi_no_seq_act순차학습의 수lbl_num_sequences{0} - 순차학습activityDrop_optSequence_error_msg순차학습의 하나로 이 활동을 할당하세요.cv_invalid_optional_seq_activity_no_branches선택 순차학습에 추가하기전에 {0}으로 부터 연결된 갈래를 제거하세요.ta_iconDrop_optseq_error_msg이 컨테이너에 활성화된 순차학습이 없습니다.act_seq_lock_chk선택순차학습에 이 활동을 배정하기 전에 선택순차학습 컨테이너의 잠금을 해제하십시요.cv_invalid_optional_seq_activity선택 순차학습으로 설정하기 전에 연결된 이동을 제거하세요.cv_invalid_optional_activity_no_branches선택 순차학습으로 설정하기 전에 {0}로 부터 연결된 갈래를 제거하세요.opt_activity_seq_title선택적 순차학습to_conditions_dlg_lt_lbl적거나 같음branch_mapping_dlg_condition_col_value_min{0} 과 같거나 적음pi_act활동pi_seq순차학습to_conditions_dlg_defin_long_type범위to_conditions_dlg_defin_item_header_lbl[정의들]to_conditions_dlg_defin_item_fn_lbl{0} ({1}) to_conditions_dlg_condition_items_name_col_lbl조건명to_conditions_dlg_condition_items_value_col_lbl조건to_conditions_dlg_options_item_header_lbl[선택]sequence_act_title_new{0} {1}cv_untitled_lbl제목없음-1mnu_help_help작성하기 도움말ccm_open_activitycontent활동 내용 열기/편집ccm_copy_activity활동 복사ccm_paste_activity활동 붙이기ccm_pi속성 찾기ccm_author_activityhelp저작 활동 도움말ws_dlg_description설명trans_dlg_nogate없음pi_days날짜들cv_close_return_to_ext_src닫고 {0} 로 돌아가기cv_eof_changes_applied변경이 성공적으로 적용되었습니다mnu_file_apply_changes변경 적용validation_error_transitionNoActivityBeforeOrAfter이동 전 혹은 후에 활동이 있어야 합니다 validation_error_activityWithNoTransition활동은 전단계 혹은 다음단계 이동이 있어야 합니다.validation_error_inputTransitionType1이 활동은 전단계 이동이 없습니다.validation_error_inputTransitionType2어떤 활동도 전단계 이동이 누락된 것이 없습니다validation_error_outputTransitionType1이 활동은 다음단계 이동이 없습니다.validation_error_outputTransitionType2어떤 활동도 다음 단계 이동이 누락된 것이 없습니다cv_invalid_design_on_apply_changes변경을 적용할 수 없습니다. 하나 혹은 그 이상의 이동이 누락되었습니다.apply_changes_btn변경 적용apply_changes_btn_tooltip학습설계에 변경을 적용하고 학습관찰로 돌아갑니다.cancel_btn취소cv_activity_readOnly활동이 {0} 이 될 수 없습니다. 활동은 읽을 수만 있습니다.cv_edit_on_fly_lbl라이브 편집cv_element_readOnly_action_del제거됨cv_element_readOnly_action_mod수정됨cv_eof_finish_invalid_msg편집을 마치기 위해서는 학습설계가 유효해야 합니다.cv_eof_finish_modified_msg주의:학습설계가 수정되었습니다. 저장하지 않고 닫기를 원하십니까?cv_trans_readOnly이동이 {0}이 될 수 없습니다. 이동하고자 하는 목표는 읽기 전용입니다.cancel_btn_tooltip학습관찰로 돌아가기mnu_file_finish종료about_popup_title_lbl{0} 정보about_popup_version_lbl버전about_popup_trademark_lbl {0}은 {0}재단의 등록상표입니다 ( {1} ). about_popup_license_lbl이 프로그램은 프리소프트웨어 입니다; Free Software Foundationd 에 의해 발간된 GNU General Public Licence version2의 조건에 한해서 재배포하거나 수정할 수 있습니다.stream_reference_lbl람스gpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.org branching_act_title분기pi_activity_type_sequence순차학습 활동 ({0})groupnaming_dialog_instructions_lbl이 값을 변경하기위해서는 이름을 클릭하세요.pi_branch_tool_acts_lbl입력(도구)pi_condmatch_btn_lbl조건 설정to_conditions_dlg_title_lbl도구 출력 조건 만들기al_done완료condmatch_dlg_cond_lst_lbl조건들condmatch_dlg_title_lbl조건들을 갈래와 연결하기pi_defaultBranch_cb_lbl기본to_conditions_dlg_add_btn_lbl+ 추가to_conditions_dlg_clear_all_btn_lbl모두 지움to_conditions_dlg_remove_item_btn_lbl- 제거to_conditions_dlg_from_lbl시작to_conditions_dlg_to_lblto_conditions_dlg_range_lbl범위branch_mapping_dlg_branch_col_lbl갈래branch_mapping_dlg_condition_col_lbl조건branch_mapping_dlg_group_col_lbl모둠branch_mapping_no_branch_msg갈래가 선택되지 않았습니다.branch_mapping_no_mapping_msg연결이 선택되지 않았습니다.al_send보내기al_cannot_move_activity죄송합니다. 이 활동을 이동할 수 없습니다.cv_gateoptional_hit_chk선택활동으로 게이트 활동을 추가할 수 없습니다.prefix_copyof_count사본({0})ws_save_folder_invalid이 폴더에 학습설계를 저장할 수 없습니다. 올바른 하위폴더를 선택하십시요.ws_click_file_open열고자 하는 설계를 클릭하십시요.ws_license_lbl라이선스ws_license_comment_lbl추가 라이선스 정보cv_invalid_optional_activity선택활동으로 설정하기 전에 {0}으로나 로부터의 이동을 제거하시오.cv_trans_target_act_missing이동의 두번째 활동이 빠져 있습니다.cv_invalid_trans_target_from_activity{0} 로부터의 이동이 이미 존재합니다.cv_invalid_trans_target_to_activity{0} 로의 이동이 이미 존재합니다.branch_btn갈래flow_btn흐름mnu_file_import가져오기cv_design_export_unsaved저장되지 않은 설계를 내보내기 할 수 없습니다.cv_design_unsaved캔버스 상의 학습설계가 변경되었습니다. 저장하지 않고 계속하시겠습니까?mnu_file_export내보내기ws_chk_overwrite_existing이 폴더에는 파일이름이 {0} 인 파일이 이미 존재합니다.act_tool_title활동 도구al_alert주의al_cancel취소al_confirm확인al_ok확인app_chk_langload언어자료가 불러들여지지 못함app_chk_themeload테마자료가 불러들여지지 못함app_fail_continue계속할수없습니다. 지원부서에 연락하십시요chosen_grp_lbl선택됨copy_btn복사cv_invalid_design_saved설계가 유효하지 않으나 저장되었음. 무엇이 문제인지 '이슈들'을 클릭하세요cv_invalid_trans_target이 객체로 이동을 만들 수 없습니다cv_show_validation이슈들cv_valid_design_saved축하합니다. 학습설계가 유효하며 저장되었습니다db_datasend_confirm서버에 자료를 보내주어 감사합니다delete_btn삭제gate_btn게이트group_btn그룹grouping_act_title그룹만들기ld_val_activity_column활동ld_val_done완료ld_val_issue_column이슈ld_val_title유효성 이슈들license_not_selected아무 라이선스가 선택되지 않았습니다. 라이선스를 선택하십시요mnu_edit편집mnu_edit_copy복사mnu_edit_cut잘라내기mnu_edit_paste붙이기mnu_edit_redo반복실행mnu_edit_undo실행취소mnu_file파일mnu_file_close닫기mnu_file_new새로만들기mnu_file_open열기mnu_file_save저장mnu_file_saveas다음과 같이 저장mnu_help도움말mnu_help_abt람스에 대해mnu_tools도구들mnu_tools_opt선택활동 그리기mnu_tools_prefs선택 설정mnu_tools_trans이동선 긋기new_btn새로 만들기new_confirm_msg당신의 설계를 지우기를 원하십니까?none_act_lbl없음open_btn열기optional_btn선택활동paste_btn붙이기perm_act_lbl허가pi_activity_type_gate게이트 활동pi_activity_type_grouping그룹만들기 활동pi_definelater관찰에서 정의pi_end_offset게이트 설정pi_group_type그룹 형태pi_hours시간pi_lbl_currentgroup현재 그룹pi_lbl_desc설명pi_lbl_group그룹만들기pi_lbl_title제목pi_max_act최대 {0}pi_min_act최소 {0}pi_minspi_no_grouping없음pi_num_learners학습자 수pi_optional_title선택적 활동pi_runoffline오프라인 활동pi_start_offset게이트 열기pi_title속성prefix_copyof사본prefs_dlg_cancel취소prefs_dlg_lng_lbl언어prefs_dlg_ok확인prefs_dlg_theme_lbl테마prefs_dlg_title선택적설정preview_btn미리보기property_inspector_title속성random_grp_lbl임의rename_btn다른 이름으로save_btn저장하기sched_act_lbl일정synch_act_lbl동기화tk_title활동 도구모음trans_btn이동trans_dlg_cancel취소trans_dlg_gate동기화trans_dlg_gatetypecmb형식trans_dlg_ok확인trans_dlg_title이동ws_Root최상위 폴더ws_chk_overwrite_resource주의: 이 시퀀스를 덮어쓸려고 합니다.ws_click_folder_file저장할 폴더를 클릭하거나 덮어쓸 설계를 클릭하세요ws_copy_same_folder소스와 목표 폴더가 같습니다.ws_dlg_cancel_button취소ws_dlg_filename파일명ws_dlg_location_button위치ws_dlg_ok_button확인ws_dlg_open_btn열기ws_dlg_properties_button속성ws_dlg_save_btn저장ws_dlg_title작업공간ws_newfolder_cancel취소ws_newfolder_ins새로운 폴더이름을 입력하시요.ws_newfolder_ok확인ws_no_permission죄송합니다. 당신은 이 자원에 쓸 수 있는 권한이 없습니다ws_rename_ins새로운 이름을 입력하세요ws_tree_mywsp내 작업공간ws_tree_orgs내 그룹ws_view_license_button보기act_lock_chk활동을 선택활동으로 하기 위해서는 선택활동 컨테이너의 잠금을 해제하십시요sys_error_msg_start다음과 같은 시스템 오류가 발생하였습니다sys_error_msg_finish계속하기위해서는 람스를 다시 시작해야 합니다. 이문제를 해결하기 위해서 다음 정보를 저장하기를 원합니까?sys_error시스템 오류pi_num_groups그룹 수pi_parallel_title병행 활동opt_activity_title선택활동lbl_num_activities{0}-활동들ws_click_virtual_folder이 폴더를 사용할 수 없습니다.mnu_file_exit나감ws_no_file_open발견된 파일이 없습니다.cv_invalid_trans_circular_sequence당신은 순환 순차학습을 만들 권한이 없습니다.bin_tooltip활동 순차학습에서 활동을 제거하기 위해서 이 휴지통에 활동을 넣으세요.new_btn_tooltip현재 순차학습을 지우고 작업공간을 사용할 수 있도록 초기화open_btn_tooltip활동 순차학습을 열기위해 파일 대화상자 열기save_btn_tooltip현재 활동 순차학습의 빠른 저장copy_btn_tooltip선택된 활동 복사paste_btn_tooltip선택된 활동 사본을 붙여넣기trans_btn_tooltip활동간 이동을 그리기 위해서 이 펜을 사용하거나 컨트롤키를 누르세요.optional_btn_tooltip선택활동모음 생성하기gate_btn_tooltip멈출 위치 생성branch_btn_tooltip분기 활동 생성(램스 2.1버전에서 가능)flow_btn_tooltip학습 흐름제어 활동 생성group_btn_tooltip그룹 활동 생성preview_btn_tooltip학습자가 볼 순차학습 미리보기cv_activity_dbclick_readonly일기전용의 학습설계를 편집할 수 없습니다. 설계 사본을 저장하고 다시 시도하십시요. cv_readonly_lbl읽기 전용al_empty_design죄송합니다. 비어있는 학습설계를 저장할 수 없습니다.cv_autosave_err_msg당신의 학습설계를 자동으로 저장하는과정에서 오류가 발생하였습니다. 플래시 플레이어 설정값을 조정하십시오.cv_autosave_rec_msg마지막에 손실되거나 저장되지 않은 학습설계를 복구할려고 합니다. 현재 학습설계는 지워질 것입니다. 계속하겠습니까?cv_autosave_rec_title경고mnu_file_recover복원하기cv_activity_copy_invalid죄송합니다. 당신은 하위활동을 복사할 권한이 없습니다.cv_activity_cut_invalid죄송합니다. 당신은 하위 활동을 잘라내기 할 권한이 없습니다.al_activity_copy_invalid죄송합니다. 복사를 클릭하기 전에 활동을 선택해야 합니다.al_activity_openContent_invalid죄송합니다. 오른쪽 클릭메뉴에서 활동 컨텐츠 열기/편집 메뉴를 클릭하기 전에 활동을 선택해야 합니다.ws_del_confirm_msg이 파일/폴더를 삭제하는 것이 확실합니까?ws_file_name_empty죄송합니다. 파일이름 없이 학습설계를 저장할 수 없습니다.ws_entre_file_name학습설계 이름을 입력하고 저장버튼을 클릭해 주십시요.cv_activity_helpURL_undefined{0} 에대한 도움말 페이지를 찾을 수 없습니다.about_popup_copyright_lbl© 2002-2009 {0} 재단learner_choice_grp_lbl학습자의 선택 pi_equal_group_sizes동일한 모둠 크기competence_editor_dlg역량편집기competences_lbl역량competence_editor_add_competence_btn추가competence_def_dlg역량 정의 대화창competence_editor_warning_title_exists제목이 {0}인 역량이 이미 존재합니다.competence_editor_warning_title_blank역량 제목은 비워둘 수 없습니다.competence_editor_warning_competence_mapped삭제하고자하는 역량은 한개이상의 활동과 연계되어 있습니다. 이 역량을 삭제하면 연계도 삭제됩니다. 계속하시겠습니까?map_comptence_btn역량과 연계competence_mappings_btn역량 연계competences_mapped_to_act_lbl역량들map_gate_conditions_btn관문 조건과 연계gate_mapping_auto_condition_msg모든 나머지 조건들은 선택된 관문들의 닫힌 상태와 연계될 것입니다.gate_open열림gate_closed닫힘al_activity_view_competence_mappings_invalid역량연계를 보기전에 활동을 선택하였는지 확인하십시요.ws_dlg_date_modified_lbl마지막 수정됨:{0}ws_save_title_reserved_chars제목에는 특수 문자를 포함할 수 없습니다:{0}mnu_file_import_community램스 사용자모임에서 가져오기gradebook_output_type성적 산출물view_students_before_selection선택하기전에 학습자들 보기arrange_act_btn활동 배치support_act_btn보조support_act_btn_tooltip선택적 보조 활동집합 만들기support_act_title보조 활동support_msg_no_connection지원활동은 다른 활동과 연결될 수 없습니다.support_msg_invalid_child{0} 타입의 활동들은 지원활동으로 추가될 수 없습니다.support_msg_max_children_reached여기에 {0} 활동을 놓을 수 없습니다. 지원활동은 최대 {1}개의 하위 활동만을 허용합니다.support_msg_cannot_be_child다른 활동안에 지원 활동을 놓을 수 없습니다.grp_chk_clear_branch_mappings이 모둠구성 활동과 연관된 모든 모둠별 분기 연계가 삭제될 것입니다. 계속하시겠습니까? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/lt_LT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/lt_LT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/lt_LT_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3mnu_file_finishPabaigacv_invalid_branch_target_from_activityŠaka iš {0} jau yra.about_popup_title_lblApie - {0}cv_invalid_trans_closed_sequenceNegalima prijungti naujo perėjimo prie užvertos sekos.al_cannot_move_to_diff_opt_seqNorėdami perkelti veiklą į skirtingą seką pasirinktinėse sekose, pirmiausia nuvilkite veiklą iš pasirinktinių sekų srities, tada spustelėkite ir nuvilkite į naują vietą pasirinktinų sekų viduje.al_group_name_invalid_blankGrupės negali būti be pavadinimo.al_group_name_invalid_existingGrupių vardai turi nesikartoti.learner_choice_grp_lblMokinio pasirinkimaspi_equal_group_sizesVienodi grupių dydžiaicompetence_editor_dlgKompetencijos rengyklėcompetences_lblKompetencijoscompetence_editor_add_competence_btnPridėticompetence_def_dlgKompetencijos apibrėžimo dialogascompetence_editor_warning_title_existsJau yra kompetencija su antrašte {0}competence_editor_warning_title_blankKompetencija turi turėti antraštęcompetence_editor_warning_competence_mappedKompetencija, kurią ketinate šalinti, šiuo metu yra atvaizduota vienoje ar keliose veiklose. Šios kompetencijos pašalinimas panaikins visus jos atvaizdavimus. Ar tikrai norite tęsti?map_comptence_btnAtvaizduoti kompetencijosecompetence_mappings_btnKompetencijų atvaizdavimaicompetences_mapped_to_act_lblKompetencijosmap_gate_conditions_btnAtvaizduoti loginių elementų sąlygasgate_mapping_auto_condition_msgVisos likusios sąlygos bus atvaizduotos pasirinktų loginių elementų užvertoje būklėje.gate_openatvertigate_closedužvertial_activity_view_competence_mappings_invalidĮsitikinkite, kad prieš bandydami peržiūrėti kompetencijos atvaizdavimus pasirinkote atitinkamą veiklą.ws_dlg_date_modified_lblModifikuota: {0}ws_save_title_reserved_charsAntraštėje negali būti specialių simbolių: {0}mnu_file_import_communityImportuoti iš LAMS bendruomenės ...gradebook_output_typePažymių knygelės išvestisview_students_before_selectionPeržiūrėti mokinius prieš pasirenkant?arrange_act_btnSutvarkyti veiklassupport_act_btnPriežiūrasupport_act_btn_tooltipSukurkite pasirinktinų priežiūros veiklų rinkinį.support_act_titlePriežiūros veiklasupport_msg_no_connectionPriežiūros veiklos negali būti sujungtos su kitomis veiklomissupport_msg_invalid_child{0} tipo veiklos negali būti pridėtos kaip priežiūros veiklossupport_msg_max_children_reachedNegalima numesti veiklos: {0}. Priežiūros veikla gali turėti daugiausiai {1} dukterinių veiklų.support_msg_cannot_be_childNegalima numesti priežiūros veiklos į kitos veiklos vidų.grp_chk_clear_branch_mappingsPerspėjimas: tai panaikins visus esamos grupės atvaizdavimus, susietus su šia grupine veikla, šakose. Norite tęsti?al_continueTęstibranch_mapping_dlg_condition_linked_msg{0} susietas su esama šaka. Norite tęsti?branch_mapping_dlg_condition_linked_allYra sąlygųbranch_mapping_dlg_condition_linked_singleŠi sąlyga yrato_condition_untitled_item_lblBe pavadinimo {0}redundant_branch_mappings_msgProjekte yra nepanaudotų šakų atvaizdavimų, kurie bus pašalinti. Norite tęsti?cv_activityProtected_activity_remove_msgPašalinimui prašome panaikinti šios veiklos pažymėjimą kaip {0}.cv_activityProtected_activity_link_msgŠis {0} susietas su {1}.cv_activityProtected_child_activity_link_msgŠis {0} turi dukterinį elementą, susietą su {1}.branch_mapping_dlg_condition_col_value_maxLygus arba didesnis už {0}optional_act_btnVeiklaoptional_seq_btnSekaoptional_seq_btn_tooltipKurti pasirinktinių sekų rinkinį.pi_optSequence_remove_msg_titleSekų šalinimaspi_optSequence_remove_msgŠi šalinama seka (sekos) gali būti su veiklomis, kurios bus pašalintos. Norite panaikinti šias sekas?pi_no_seq_actJokia sekalbl_num_sequences- sekosactivityDrop_optSequence_error_msgPrašome numesti veiklą ant vienos iš sekų.cv_invalid_optional_seq_activity_no_branchesPašalinkite iš {0} bet kokias sujungtas šakas prieš pridėdami prie pasirinktinės sekos.ta_iconDrop_optseq_error_msgKonteineryje nėra jokių veikiančių sekų.act_seq_lock_chkPrašome atrakinti pasirinktinų sekų konteinerį prieš priskiriant šią veiklą pasirinktinei sekai.cv_invalid_optional_seq_activityPašalinkite perėjimus į ir iš {0} prieš nustatydami kaip pasirinktinę seką.cv_invalid_optional_activity_no_branchesPašalinkinte nuo {0} bet kokias prijungtas šakas prieš nustatydami kaip pasirinktinę veiklą.opt_activity_seq_titlePasirinktinės sekosto_conditions_dlg_lt_lblMažiau už arba lygubranch_mapping_dlg_condition_col_value_minMažiau už arba lygu {0}pi_actVeiklospi_seqSekosto_conditions_dlg_defin_long_typesritisto_conditions_dlg_defin_bool_typetaip/neto_conditions_dlg_defin_item_header_lbl[ pasirinkti išvestį]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblPavadinimasto_conditions_dlg_condition_items_value_col_lblSąlygato_conditions_dlg_options_item_header_lbl[ Sąlygos]sequence_act_title_new{0} {1}close_mc_tooltipSumažintito_conditions_dlg_gte_lblDaugiau už arba lyguto_conditions_dlg_lte_lblMažiau už arba lygugroupnaming_dialog_col_groupName_lblGrupės pavadinimasmnu_file_insertdesignĮterpti/Sulieti ...ws_dlg_insert_btnĮterptibranch_mapping_dlg_branch_item_default{0} {numatytasis}pi_group_matching_btn_lblPritaikyti grupes šakomspi_tool_output_matching_btn_lblPritaikyti sąlygas šakomsrefresh_btnAtnaujintito_conditions_dlg_condition_items_update_defaultConditionsKetinate atnaujinti pasirinkto išvesties apibrėžimo sąlygas. Tuo pašalinsite visas sąsajas su esamomis šakomis. Norite tęsti?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNegalima atnaujinti, nes nerasta jokių naudotojo apibrėžtų sąlygų. Gali prireikti nustatyti jas priemonės kūrimo puslapyje.to_conditions_dlg_defin_user_defined_typenustatyta naudotojogrouping_invalid_with_common_names_msgNegalima įrašyti projekto, nes grupinė veikla '{0}' turi daugiau nei vieną grupę su tuo pačiu pavadinimu. Prašome peržiūrėti grupavimą ir pabandyti dar kartą.al_activity_paste_invalidDeja, Jūs negalite įklijuoti šio veiklos tipopreview_btn_tooltip_disabledPrieš peržiūrint seką, turite ją pirmiau įrašyti, o tada spustelėti „Peržiūrėti“condmatch_dlg_message_lblNumatytoji šaka gali būti pasirinkta pažymint norimos šakos „numatyta“ žymimąjį langelį Savybių srityje.cv_design_insert_warningĮterpus kitą seką, negalite nutraukti šio veiksmo, nes senoji seka automatiškai įrašoma su įterpta naująja seka. Grįžimui prie senosios sekos turite pašalinti visas naująsias sekos veiklas rankiniu būdu, o tada įrašyti. Norint palikti esamas sekas nepakeistas, spustelėkite „Nutraukti“. Kitu atveju spustelėkite „Gerai“ ir pažymėsite įterptiną seką.pi_branch_tool_acts_default--Pasirinkimas--cv_invalid_trans_diff_branchesNegalima sukurti perėjimo tarp veiklų skirtingose šakose.cv_invalid_branch_target_to_activityŠaka į {0} jau yra.cv_invalid_design_on_apply_changesNegalite pritaikyti pakeitimų. Trūksta vieno ar kelių perėjimų.apply_changes_btnPritaikyti pakeitimusapply_changes_btn_tooltipPritaikyti pakeitimus projekte ir grįžti į pamokos stebėjimą.cancel_btnNutraukticv_activity_readOnlyVeikla negali būti {0}. Veikla yra skirta tik skaitymui.cv_edit_on_fly_lblTiesioginis redagavimascv_element_readOnly_action_delpašalintascv_element_readOnly_action_modpakeistascv_eof_finish_invalid_msgProjektas turi būti galiojantis, kad galėtumėte baigti redaguoti.cv_eof_finish_modified_msgĮspėjimas: Jūsų projektas buvo pakeistas. Norite užverti neįrašę?cv_trans_readOnlyPerėjimas negali būti {0}. Perėjimo tikslas yra skirtas tiktai skaitymui.cancel_btn_tooltipGrįžti į pamokos stebėjimą.about_popup_version_lblVersijaabout_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} yra prekės ženklas {0} Foundation ( {1} ).about_popup_license_lblŠi programa yra nemokama; Jūs galite ją platinti ir/arba modifikuoti pagal GNU General Public License 2 versiją kaip publikuota Free Software Foundation. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.org branching_act_titleŠakojimasispi_activity_type_sequenceSekos veikla ({0})groupnaming_dialog_instructions_lblSpustelėkite vardą, kad pakeistumėte jo reikšmę.pi_branch_tool_acts_lblĮvestis (Priemonė)pi_condmatch_btn_lblKurti sąlygasto_conditions_dlg_title_lblKurti išvesties sąlygasal_doneAtliktacondmatch_dlg_cond_lst_lblSąlygoscondmatch_dlg_title_lblSuvienodinti šakų sąlygaspi_defaultBranch_cb_lblnumatytasisto_conditions_dlg_add_btn_lbl+ Pridėtito_conditions_dlg_clear_all_btn_lblIšvalyti viskąto_conditions_dlg_remove_item_btn_lbl- Pašalintito_conditions_dlg_from_lblto_conditions_dlg_to_lblĮto_conditions_dlg_range_lblDiapazonasbranch_mapping_dlg_branch_col_lblŠakabranch_mapping_dlg_condition_col_lblSąlygabranch_mapping_dlg_group_col_lblGrupėbranch_mapping_no_branch_msgNepasirinkta jokia šaka.branch_mapping_no_mapping_msgNepasirinktas joks atvaizdavimas.branch_mapping_no_condition_msgNepasirinkta jokia sąlyga.branch_mapping_auto_condition_msgVisos likusios sąlygos bus atvaizduotos numatytojoje šakoje.branch_mapping_dlg_match_dgd_lblAtvaizdavimaibranch_mapping_dlg_condition_col_valueSritis nuo {0} iki {1}branch_mapping_dlg_condition_col_value_exactTiksli {0} reikšmėpi_mapping_btn_lblNustatyti atvaizdavimuspi_define_monitor_cb_lblApibrėžti ekranegroupmatch_dlg_title_lblAtvaizduoti grupes šakosebranch_mapping_no_groups_msgNepasirinktos jokios grupės.group_branch_act_lblGrupinisbranch_mapping_dlg_branches_lst_lblŠakosgroupmatch_dlg_groups_lst_lblGrupėsgroupnaming_dlg_title_lblGrupinis pervadinimaspi_activity_type_branchingŠakojimosi veiklapi_branch_typeŠakojimosi tipaspi_group_naming_btn_lblPavadinti grupessequence_act_titleSekatool_branch_act_lblMokinio atsiliepimaschosen_branch_act_lblMokytojo pasirinkimasto_condition_start_valuepradinė reikšmėto_condition_end_valuegalutinė reikšmėto_condition_invalid_value_range{0} negali būti galiojančios sąlygos ribose.to_condition_invalid_value_direction{0} negali būti didesnis už {1}.is_remove_warning_msgPerspėjimas: ketinate ištrinti pamoką. Ar norite ją išsaugoti kaip {0}?cv_invalid_trans_target_to_activityPerėjimas į {0} jau egzistuojabranch_btnŠakaflow_btnSrautasmnu_file_importImportuoticv_design_export_unsavedJūs negalite eksportuoti neįrašyto projekto.cv_design_unsavedProjektas buvo pakeistas. Tęsti neįrašius?mnu_file_exportEksportuotiws_chk_overwrite_existingŠis aplankas jau turi savyje failą, pavadintą {0}ws_click_virtual_folderNegalite panaudoti šio aplanko.mnu_file_exitIšeitiws_no_file_openFailas nerastas.cv_invalid_trans_circular_sequenceJums uždara seka neleidžiamabin_tooltipNumeskite veiklą į šiukšlių dėžę, kad pašalintumėte iš veiklos sekos.new_btn_tooltipIšvalo dabartinę seką ir vėl darbinę zoną parengia naudojimuiopen_btn_tooltipRodyti failo dialogą veiklos sekos atvėrimuisave_btn_tooltipDabartinės veiklos sekos spartus įrašymascopy_btn_tooltipPasirinktos veiklos kopijavimaspaste_btn_tooltipĮdėti pasirinktos veiklos kopijątrans_btn_tooltipPanaudokite šį rašiklį, kad nupieštumėte perėjimą tarp veiksmų (arba spauskite klavišą CTRL)optional_btn_tooltipSukurkite laisvai pasirenkamų veiklų rinkinį.gate_btn_tooltipSukurkite sustojimo punktąbranch_btn_tooltipSukurkite šakasflow_btn_tooltipSrauto kontrolės veiklų kūrimasgroup_btn_tooltipSukurkite besigrupuojančią veikląpreview_btn_tooltipPažiūrėkite, kaip Jūsų seką matys mokiniaicv_activity_dbclick_readonlyJūs negalite redaguoti projekto, jeigu jis skirtas tik skaitymui. Prašome įrašyti projekto kopiją ir pabandyti dar kartą.cv_readonly_lblTiktai skaitymuial_empty_designDeja, Jūs negalite įrašyti tuščio projektocv_autosave_err_msgĮvyko klaida bandant automatiškai įrašyti Jūsų projektą. Prašome padidinti Flash Player laikmenos nustatymus.cv_autosave_rec_msgJūs pasirinkote atnaujinti paskutinį prarastą ar neįrašytą projektą. Jūsų dabartinis projektas bus išvalytas. Tęsti?cv_autosave_rec_titleĮspėjimasmnu_file_recoverAtkurti...cv_activity_copy_invalidDeja, Jums neleidžiama kopijuoti šios dukterinės veiklos.cv_activity_cut_invalidDeja, Jums neleidžiama iškirpti šios dukterinės veiklos.al_activity_copy_invalidDeja, Jūs privalote pasirinkti veiklą prieš spustelint „kopijuoti“al_activity_openContent_invalidDeja, prieš spustelėdami meniu juostoje Atverti/Taisyti veiklos turinį, turite pasirinkti veiklą.ws_del_confirm_msgAr Jūs įsitikinęs, kad norite pašalinti šį failą ar aplanką?ws_file_name_emptyDeja, Jums neleidžia išsaugoti projekto be failo vardo.ccm_open_activitycontentAtsiverti/Redaguoti veiklos turinįws_entre_file_namePrašome įvesti projekto pavadinimą ir tada spustelėti mygtuką „Įrašyti“.cv_activity_helpURL_undefinedNegali surasti pagalbos puslapio, skirto {0}cv_untitled_lblBe pavadinimo - 1mnu_help_helpKūrimo pagalbaccm_copy_activityKopijuoti veikląpi_max_actMaks. {0}ccm_paste_activityĮdėti veikląact_tool_titleVeiklų priemonių rinkinysal_alertĮspėjimasal_cancelNutrauktial_confirmPatvirtintial_okGeraiapp_chk_langloadNeįkelti kalbos duomenysapp_chk_themeloadNeįkelti temos duomenysapp_fail_continuePrograma negali būti toliau vykdoma. Prašom susisiekti su priežiūros tarnybachosen_grp_lblPasirinkite ekranecopy_btnKopijuoticv_invalid_design_savedJūsų projektas dar nepatvirtintas, bet įrašytas; spragtelėkite "Galimos problemos", kad pamatytumėte tai, kas neteisinga.cv_invalid_trans_targetJūs negalite sukurti perėjimo į šį objektącv_show_validationSvarstytinos problemoscv_valid_design_savedSveikinimai! - Jūsų projektas patvirtintas ir įrašytasdb_datasend_confirmDėkojame už duomenų siuntimą į serverįdelete_btnŠalintigate_btnLoginis elementasgroup_btnGrupėgrouping_act_titleGrupavimasld_val_activity_columnVeiklald_val_doneAtliktald_val_issue_columnSvarstytina problemald_val_titlePatvirtinimo problemoslicense_not_selectedŠiuo metu nepasirinkta jokia licencija - prašome pasirinkti vienąmnu_editTaisytimnu_edit_copyKopijuotimnu_edit_cutIškirptimnu_edit_pasteĮdėtimnu_edit_redoGrąžintimnu_edit_undoAtšauktimnu_fileFailasmnu_file_closeUžvertimnu_file_newNaujasmnu_file_openAtvertimnu_file_saveĮrašytimnu_file_saveasĮrašyti kaip...mnu_helpPagalbamnu_help_abtApie LAMSmnu_toolsPriemonėsmnu_tools_optPridėti papildomas parinktismnu_tools_prefsParinktysmnu_tools_transPridėti perėjimąnew_btnNaujasnew_confirm_msgAr Jūs esate įsitikinęs, kad norite išvalyti savo projektą, esantį ekrane?none_act_lblJoksopen_btnAtvertioptional_btnPasirinktinispaste_btnĮklijuotiperm_act_lblTeisėspi_activity_type_gateLoginio elemento veiklapi_activity_type_groupingGrupinė veiklapi_definelaterApibrėžkite ekranepi_end_offsetUžverti loginį elementapi_group_typeGrupavimo tipaspi_hoursValandosccm_piSavybių inspektorius...ccm_author_activityhelpAutoriaus veiklos pagalbaws_dlg_descriptionApibūdinimastrans_dlg_nogateTusčiapi_daysDienoscv_close_return_to_ext_srcUždaryti ir grįžti į {0}cv_eof_changes_appliedPakeitimai sėkmingai pritaikytipi_lbl_currentgroupEsamas grupavimasmnu_file_apply_changesPritaikyti pakeitimuspi_lbl_descAprašaspi_lbl_groupGrupavimaspi_lbl_titleAntraštėpi_min_actMin. {0}validation_error_transitionNoActivityBeforeOrAfterPerėjimas turi turėti veiklą prieš arba po perėjimopi_minsMinutėspi_no_groupingJokspi_num_learnersMokinių skaičiuspi_optional_titlePasirinktinė veiklapi_runofflineAutonominė veiklapi_start_offsetAtverti loginį elementąpi_titleSavybėsprefix_copyofKopija nuoprefs_dlg_cancelNutrauktiprefs_dlg_lng_lblKalbaprefs_dlg_okGeraiprefs_dlg_theme_lblTemaprefs_dlg_titleParinktyspreview_btnPeržiūraproperty_inspector_titleSavybėsrandom_grp_lblAtsitiktinisrename_btnPervadintisave_btnĮrašytisched_act_lblTvarkaraštissynch_act_lblSinchronizuotitk_titleVeiklų priemonių rinkinystrans_btnPerėjimastrans_dlg_cancelNutrauktitrans_dlg_gateSinchronizacijatrans_dlg_gatetypecmbTipastrans_dlg_okGeraitrans_dlg_titlePerėjimasws_RootŠakninis aplankasws_chk_overwrite_resourceĮspėjimas: Jūs ketinate perrašyti šią seką!ws_click_folder_filePrašome pasirinkti aplanką įrašymui arba projektą jo perrašymuiws_copy_same_folderIšeities ir paskirties aplankai yra tie patysws_dlg_cancel_buttonNutrauktiws_dlg_filenameFailo pavadinimasws_dlg_location_buttonVietaws_dlg_ok_buttonGeraiws_dlg_open_btnAtvertiws_dlg_properties_buttonSavybėsws_dlg_save_btnĮrašytiws_dlg_titleDarbinė zonaws_newfolder_cancelNutrauktiws_newfolder_insPrašom įrašyti naują aplanko pavadinimąws_newfolder_okGeraiws_no_permissionDeja, jūs neturite leidimo rašyti į šiuos ištekliusws_rename_insPrašom įrašyti naują vardąws_tree_mywspMano darbinė zonaws_tree_orgsMano grupėsws_view_license_buttonPeržiūrėtiact_lock_chkPrieš priskiriant šią užduotį prie laisvai pasirenkamų, prašome atrakinti laisvai pasirenkamos veiklos konteinerį. sys_error_msg_startSistemos klaida:sys_error_msg_finishNorint tęsti, gali prireikti iš naujo paleisti LAMS Author. Ar norite įrašyti informaciją apie šią klaidą, kad vėliau galėtumėte ją ištaisyti? sys_errorSistemos klaidapi_num_groupsGrupių skaičiuspi_parallel_titleLygiagreti veiklaopt_activity_titlePasirinktinė veiklalbl_num_activities{0} - Veiklosal_sendSiųstial_cannot_move_activityDeja, Jūs negalite perkelti šios veiklos.cv_gateoptional_hit_chkJūs negalite pridėti loginio elemento veiklos kaip pasirinktinės.prefix_copyof_countKopija ({0})ws_save_folder_invalidJūs negalite išsaugoti projekto šiame aplanke. Prašom pasirinkti galiojantį poaplankį.ws_click_file_openPrašom paspausti „Projektas“ norėdami jį atverti.ws_license_lblLicencijaws_license_comment_lblPapildoma licencijos informacijacv_invalid_optional_activityPrieš nustatydami šią veiklą kaip pasirinktinę, turite pašalinti visus perėjimus iš {0} į ją ir iš jos į {0}.cv_trans_target_act_missingTrūksta antros perėjimo veiklos.cv_invalid_trans_target_from_activityPerėjimas nuo {0} jau egzistuojavalidation_error_activityWithNoTransitionVeikla turi turėti įvestą ar išvestą perėjimąvalidation_error_inputTransitionType1Ši veikla neturi jokio perėjimovalidation_error_inputTransitionType2Visose veiklose yra įvesties perėjimai.validation_error_outputTransitionType1Ši veikla neturi jokio išvesties perėjimovalidation_error_outputTransitionType2Visuose veiksmuose yra išvesties perėjimai. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/mi_NZ_dictionary.xml 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3trans_dlg_titleTauwhiromnu_tools_transTā Tauwhirooptional_seq_btn_tooltipHāngaia he huinga raupapa kōwhiri.trans_btnTauwhiroabout_popup_version_lblTe Āhuaabout_popup_license_lbl<p> He kore utu tēnei papatono; ka taea te tohatoha me te whakahōu i raro i ngā tikanga o te GNU ahua2 pērā i ngā putanga o te Free Software Foundation. <br><br>{0}</p>ws_newfolder_okĀEtrans_dlg_okĀEws_dlg_ok_buttonĀEws_dlg_location_buttonWāhiws_RootWhaiaronga Iomatuaws_license_comment_lblTāpiri Parongo Raihanaal_cancelWhakakoreprefs_dlg_cancelWhakakoretrans_dlg_cancelWhakakorews_dlg_cancel_buttonWhakakorews_newfolder_cancelWhakakorecancel_btnWhakakorenew_btnHōumnu_file_newHōupreview_btnĀrokitesave_btnTiakicv_design_insert_warningKa kōkuhu raupapa ako anō, kāore e taea te whakakore i tēnei mahi - ka tiaki aunoa tō raupapa ako tawhito ki te raupapa ako hōu. Kia taea te hoki whakamuri ki tōu raupapa ako tawhito, whakakorea katoatia ā ringa ngā ngohe o te raupapa ako hōu, katahi ka tiaki. Kia waihō tūturutia tō raupapa ako pāwhiria Whakakore. Pāwhirihia te whakaae rānei kia tīpako raupapa ako hei kōkuhu.sys_error_msg_startKua puta tēnei hapa pūnaha:opt_activity_titleNgohe Kōwhiringa ws_license_lblRaihanamnu_help_helpĀwhina ccm_author_activityhelpĀwhina Kaituhi pi_num_groupsTapeke rōpū ccm_copy_activityTāruatia te Ngoheccm_paste_activityTāpia te Ngohemnu_file_exitPutangamnu_file_exportKawe Atumnu_file_importKawe Maiws_dlg_descriptionWhakamāramatrans_dlg_nogateKorecv_readonly_lblPānui Anakecv_autosave_rec_titleWhakatūpatoto_conditions_dlg_condition_items_value_col_lbltikangaws_dlg_save_btnTiakicv_invalid_optional_seq_activity_no_branchesTangohia ngā pekanga katoa i honoa {0} i mua i tāpiri ki te raupapa ako kōwhiri.cv_invalid_design_on_apply_changesKāore e taea te hōatu rerekētanga. Kei te ngaro ētehi tauwhiro.apply_changes_btnHōatu Rerekētangaopt_activity_seq_titleRaupapa Ako Kōwhiriapply_changes_btn_tooltipHōatu rerekētanga ki te hoahoatanga me hoki ki te aroturuki. al_okĀEprefs_dlg_okĀEbranch_mapping_no_condition_msgKāore he Tikanga i kōwhirihiamnu_edit_undoWhakakoreatk_titleHe Puna Whakamahitrans_dlg_gateTukutahitangatrans_dlg_gatetypecmbMomows_copy_same_folderHe wāhi ōrite te kōpaki pūtake me te kōpaki ūngaws_dlg_filenameIngoaws_dlg_open_btnHuakinaws_dlg_properties_buttonĀhuatangaws_dlg_titlePapamahiws_newfolder_insWhakaingoatia te kōpaki hōuws_rename_insWhakaurua koa te ingoa hōuws_tree_mywspTāku Papamahiws_tree_orgsNgā Whakahaerews_view_license_buttonTirosys_error_msg_finishTērā pea me tīmata anō koe i te Pūnaha Akoranga ā Hiko. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?app_chk_langloadKāhore anō kia utaina ngā raraunga reoapp_chk_themeloadKāhore anō kia utaina ngā raraunga kaupapaapp_fail_continueKāhore te Taupānga e taea te haere tonu. Whakapā atu ki te Kaiwhakahaerecopy_btnTāruatiacv_invalid_design_savedKua tiakina ngā mahi, ēngari kāhore anō tō wāhanga ako kia whai mana. Pāwhiria ngā ‘Take’ kia kite atu i ngā raru.cv_invalid_trans_targetKāhore e taea te tauwhiro ki tēnei akorangacv_show_validationTakecv_valid_design_savedNgā mihi ki a koe! Kua tiakina, kua whai mana to wāhanga akodb_datasend_confirmNgā mihi mō te tuku raraunga ki te tūmau delete_btnWhakakoregate_btnTomokangagroup_btnWhakarōpūgrouping_act_titleWhakarōpūld_val_activity_columnNgoheld_val_doneKua oti paild_val_issue_columnTakeld_val_titleNgā take whai manalicense_not_selectedKōwhiritia tētehi raihana mō tēnei wāhanga akomnu_editWhakatikatikamnu_edit_copyTāruatiamnu_edit_cutWhakakoreamnu_edit_pasteTāpiamnu_edit_redoMahia anō mnu_fileKōnaemnu_file_closeKatiamnu_file_openHuakinamnu_file_saveTiakimnu_file_saveasTiaki hei ..mnu_helpĀwhinamnu_help_abtWhakamārama a LAMSmnu_toolsNgā Taputapumnu_tools_optTā Whiringamnu_tools_prefsManakohanganone_act_lblKoreopen_btnHuakinaoptional_btnWhiringapaste_btnTāpiaperm_act_lblWhakaaetangapi_activity_type_gateNgohe Tomokangapi_activity_type_groupingNgohe Whakarōpūpi_hoursHāorapi_lbl_currentgroupWhakarōpū o naianeipi_lbl_titleIngoapi_lbl_groupWhakarōpūpi_max_actNgohe mutunga rawapi_min_actNgohe iti rawa pi_minsMinitipi_no_groupingKorepi_num_learnersĀkonga taupi_optional_titleNgohe Whiriwhiripi_titleĀhuatangaprefix_copyofHe tāruatanga oprefs_dlg_lng_lblReoprefs_dlg_theme_lblKaupapaprefs_dlg_titleManakohangaproperty_inspector_titleĀhuatangarandom_grp_lblMatapōkererename_btnWhakaingoatia anōsched_act_lblWhakaritengasynch_act_lblTukutahisys_errorHapa Pūnaha al_sendTukunalbl_num_activitiesNgoheact_tool_titleHe Puna Whakamahial_alertKia Matohial_confirmWhakatūturutiaws_dlg_date_modified_lblkētanga mutunga: {0}chosen_grp_lblKōwhiritia ki Aroturukito_conditions_dlg_defin_long_typeāhuatanga whanuito_conditions_dlg_defin_bool_typetika/hēto_conditions_dlg_defin_item_header_lbl[ Kōwhiri Huaputa ]to_conditions_dlg_condition_items_name_col_lblIngoato_conditions_dlg_options_item_header_lbl[ Kōwhiringa ]close_mc_tooltipWhakamōkitosupport_msg_no_connectionKāore e taea te tūhono ngohe ki ērā atu o ngā ngohe.support_msg_invalid_childKāore e taea te tāpiri ngohe āwhina {0} ki ēnei momo ngohesupport_msg_max_children_reachedKāore e taea te waihō: {0} ki kōnei. Ko te {1} te mōrahi e whakaae te ngohe āwhina mō ngā ngohe tamaiti.support_msg_cannot_be_childKāore e taea te waihō tētehi ngohe āwhina i roto i tētehi atu ngohe.to_conditions_dlg_gte_lblNui rawa ōrite rāneigradebook_output_typeHuanga Pukaaromatawaiview_students_before_selectionTirohia ngā ākonga i mua i te kōwhiringa?arrange_act_btnRaupapa Ngohesupport_act_btnĀwhinasupport_act_btn_tooltipHangaia he huinga o ngā ngohe āwhina.support_act_titleNgohe Āwhinapi_daysNgā Rāws_del_confirm_msgMe āta whai koe te whakakore tēnei kōnae/ kōpae?ws_no_file_openKāore i rapu kōnaepi_parallel_titleNgohe Whakararaprefix_copyof_countTāruarua o ({0})cv_untitled_lblIngoa Kore- 1mnu_file_recoverWhakaora...new_confirm_msgMe āta whai koe te whakakore i tō hoahoa i te mata?ws_chk_overwrite_resourceKia mataara: ka tata koe te tuhirua i tēnei whakaraupapa ako!ws_click_folder_filePāwhiria tētehi Kōpaki hei tiaki, tētehi Hoahoa rānei hei tuhiruaal_cannot_move_activityAroha, kāore e taea te nuku tēnei ngohe.ws_click_file_openPāwhirihia tētehi hoahoa ki te tuwhera.cv_invalid_optional_activityTangohia ngā tauwhiro mai i {0} i mua i te tautuhi hei ngohe kōwhiri.cv_trans_target_act_missingKei te ngaro te ngohe tuarua o te Tauwhirocv_activity_copy_invalidAroha, kāore e taea te tāruarua tēnei ngohe tamaiti.cv_activity_cut_invalidAroha, kāore e taea te tapahi tēnei ngohe tamaiti.cv_invalid_trans_target_to_activityKei te tīari kē tētahi tauwhiro ki {0}cv_design_unsavedKua whakarerekētia te hoahoa i te atamira. Haere tonu me te kore tiaki?new_btn_tooltipWhakakorea tēnei akoranga me te tautuhi anō i te papamahi. open_btn_tooltipWhakaaturia ngā Kōrero ā-Kōnae ki te tuwhera Raupapa Ako.save_btn_tooltipTiaki teretia tēnei Raupapa Akocopy_btn_tooltipTāruatia te ngohe i kōwhirihiapaste_btn_tooltipTāpia atu te ngohe i kōwhirihiaoptional_btn_tooltipHanga huinga ngohe kōwhiri.gate_btn_tooltipHanga wāhi taubranch_btn_tooltipHanga pekanga (ka taea ki LAMS v2.1)flow_btn_tooltipHanga ngohe mana ripogroup_btn_tooltipHanga ngohe Whakarōpūpreview_btn_tooltipTiro wawetia tō Raupapa Ako mā te āhua e kitea ai e ngā ākongaal_activity_copy_invalidAroha! Tīpakohia te ngohe i mua i te pāwhiri tārua.ccm_piĀhuatanga Tautuhingaws_chk_overwrite_existingHe kōnae kē kei tēnei kōpaki e kīia nei ko {0}branch_btnPekangaflow_btnRipows_click_virtual_folderKāore e taea te whakamahi tēnei kōpakicv_invalid_trans_circular_sequenceKāore e whakaaetia kia huri haere te raupapa.bin_tooltipWhakatakahia he ngohe ki tēnei ipu ki te tangohia mai i te raupapa ako.cv_gateoptional_hit_chkKāore e taea te tāpiri ngohe tomokanga hei tūnga ngohe kōwhiri.ws_save_folder_invalidKāore e taea te tiaki ki tēnei kōpaki. Kōwhiria tetehi kōpaki roto whaimana.cv_invalid_trans_target_from_activityKei te tīari kē he Tauwhiro mai i {0} ws_entre_file_nameTuhia te ingoa hoahoa, ka pāwhiri ai i te pātene Tiaki.cv_activity_helpURL_undefinedKāore e taea te rapu wharangi āwhina mō {0}cv_activity_dbclick_readonlyKāore e taea te whakatika taputapu o te hoahoa pānui-anake. Tiakina he tāruatanga o te hoahoa, ka whakamātau anō ai.ws_file_name_emptyAroha! Kāore e taea te tiaki hoahoa kāore anō kia tapaina.al_empty_designAroha! Kāore e taea te tiaki he hoahoa wātea.cv_autosave_err_msgKua puta he hapa i te wa tiaki-aunoa. Ka haere tonutia te hapa, whakapā atu ki te Kaiwhakahaere Pūnaha.cv_close_return_to_ext_srcKatia hoki anō ki {0}condmatch_dlg_title_lblWhakaōrite Tikanga ki ngā Pekangabranch_mapping_dlg_condition_col_lblTikangacv_eof_changes_appliedKua hōatu tika ngā whakarerekētanga.mnu_file_apply_changesHōatu Rerekētangavalidation_error_transitionNoActivityBeforeOrAfterMe noho tētehi ngohe ki mua ki muri rānei i te tauwhiro.validation_error_activityWithNoTransitionMe noho tētehi tauwhiro tāuru tāputa rānei ki te ngohe.validation_error_inputTransitionType1Kāhore te ngohe tētehi tauwhiro tāuru.validation_error_inputTransitionType2Kāore ngā ngohe i te ngaro i ngā tauwhiro tāuru.validation_error_outputTransitionType1Kāhore i tēnei ngohe tētehi tauwhiro tāputa.validation_error_outputTransitionType2Kāore ngā ngohe i te ngaro i ngā tauwhiro tāuru.cv_activity_readOnlyKāore e taea tēnei ngohe {0}.He pānui anakē tēnei Ngohecv_edit_on_fly_lblWhakatikaina Ngohecv_element_readOnly_action_delKua tangohiacv_element_readOnly_action_modWhakahōutangacv_eof_finish_invalid_msgMe whai mana te hoahoatanga kia whakaoti te whakatikatika.cv_eof_finish_modified_msgWhakatūpato: Kua whakarerekētia te hoahoa. Ka puta me te kore tiaki?cv_trans_readOnlyKāore e taea te tauwhiro {0}. He pānui anakē te tauwhiro.cancel_btn_tooltipHoki ki te aroturuki.mnu_file_finishKua Otiabout_popup_title_lblWhakamārama - {0}about_popup_trademark_lblHe moko o {0} Rōpū ( {0} ).stream_reference_lblPūnaha Akoranga ā Hikogpl_license_urlwww.gnu.org/rēhita/gpl.txtstream_urlhttp://{0}rōpū.orgbranching_act_titlePekangato_conditions_dlg_lte_lblIti rawa ōrite rāneipi_end_offsetKatiapi_start_offsetHuakinapi_definelaterTautuhia ā Muri Atupi_group_typeĀhuatanga ā rōpūpi_lbl_descĀhuatangaal_doneKua Mututo_conditions_dlg_add_btn_lbl+ Tāpirito_conditions_dlg_from_lblNā:to_conditions_dlg_to_lblKi:branch_mapping_dlg_branch_col_lblPekangabranch_mapping_dlg_group_col_lblRōpūpi_define_monitor_cb_lblTāutuhia ki Aroturukibranch_mapping_no_groups_msgKāore he Rōpū i kōwhirihia branch_mapping_dlg_branches_lst_lblPekangagroupmatch_dlg_groups_lst_lblRōpūgroupnaming_dlg_title_lblIngoa Rōpūpi_activity_type_branchingNgohe Pekangapi_branch_typeMomo Pekangapi_group_naming_btn_lblIngoa Rōpūsequence_act_titleRaupapatangato_conditions_dlg_remove_item_btn_lbl- Tangohiabranch_mapping_dlg_condition_linked_singleKo te tikanga koto_condition_untitled_item_lblIngoa Kore {0}redundant_branch_mappings_msgHe mahere pekanga wātea tō te hoahoa kei te tangohia. Ka haere tonu?cv_activityProtected_activity_remove_msgKi te tangohia whakawāteatia tēnei ngohe i te {0} cv_activityProtected_activity_link_msgKua hono tēnei {0} ki {1}cv_activityProtected_child_activity_link_msgHe honoa tamaiti tēnei {0} ki {1}pi_activity_type_sequenceNgohe Whakaraupapa (Pekanga)groupnaming_dialog_instructions_lblPāwhiria te ingoa ki te whakarerekē i te uarapi_branch_tool_acts_lblTāuru (Utauta)branch_mapping_no_branch_msgKāore te Pekanga i kōwhirihia.pi_defaultBranch_cb_lbltaunoato_conditions_dlg_clear_all_btn_lblWhakakore Katoato_conditions_dlg_range_lblWhakarite Inenga Whānui:chosen_branch_act_lblKōwhiringa Kaiakobranch_mapping_no_mapping_msgKāore he Whakamahere i kōwhirihiabranch_mapping_auto_condition_msgKa whakamaheretia ngā toenga Tikanga katoa ki te Pekanga taunoa.branch_mapping_dlg_match_dgd_lblMaheretangabranch_mapping_dlg_condition_col_valueInenga Whānui {0} ki {1}branch_mapping_dlg_condition_col_value_exactUara pū o {0}pi_mapping_btn_lblWhakarite Maheretangagroupmatch_dlg_title_lblWhakamahere Rōpū ki ngā Pekangagroup_branch_act_lblWhai Rōpūto_condition_start_valueuara timatangato_condition_end_valueuara mutungato_condition_invalid_value_rangeKāore e taea te {0} te noho ki waenga i tēnei tikanga.to_condition_invalid_value_directionKāore e taea e {0} te noho nui rawa i te {1}.is_remove_warning_msgKIA MATAARA: Kei te tango i tēnei akoranga. Ka hia koe te pūpuri i te akoranga hei akoranga {0}?al_continueHaere tonubranch_mapping_dlg_condition_linked_msgKua herenga {0} ki tētehi pekanga kē. Ka haere tonu?branch_mapping_dlg_condition_linked_allHe tikanga ōnato_conditions_dlg_title_lblWhakarite Tikanga Huaputapi_condmatch_btn_lblWhakarite Tikangatrans_btn_tooltipWhakamahia tēnei pene ki te tā tauwhiro ngohe (pēhia CTRL rānei)pi_tool_output_matching_btn_lblHono Tikanga ki Pekangacv_invalid_optional_seq_activityTangohia ngā takatau katoa {0} i mua i te whakarite hei raupapa ako kōwhiri.to_conditions_dlg_condition_items_update_defaultConditionsKei te whakahōutia e koe ngā tikanga mō ngā tāutunga huaputa. Ka whakawātea tēnei i ngā hononga ki ngā pekanga e tū nei. Ka haere tonutia?branch_mapping_dlg_condition_col_value_maxNui rawa i te {0}optional_act_btnNgoheoptional_seq_btnRaupapacv_invalid_optional_activity_no_branchesTangohia ngā pekanga i honoa {0} i mua i te whakarite ngohe kōwhiri.al_cannot_move_to_diff_opt_seqKi te nuku ngohe ki tētehi raupapa ako kē i roto i ngā Raupapa Kōwhiringa, kumea te ngohe ki waho i te wāhi Raupapa Kōwhiringa, pāwhirihia kumea hoki ki tōna wāhi hōu i roto i te Raupapa Kōwhiringa. to_conditions_dlg_lt_lblIti rawa ōrite rāneibranch_mapping_dlg_condition_col_value_minIti rawa ōrite rānei {0}pi_actNgohepi_seqRaupapa Akobranch_mapping_dlg_condtion_items_update_defaultConditions_zeroKāore e taea te whakahōutia nā te kore o ngā tikanga tāutu kaimahi. Whakaritea ēnei i te wharangi kaituhi o te taputapu.condmatch_dlg_cond_lst_lblTikangapi_optSequence_remove_msg_titleKei te Tango raupapa akopi_optSequence_remove_msgKei te tangohia te/ngā raupapa ako tērā pea he ngohe o roto. Ne, ka tangohia ēnei raupapa ako?pi_no_seq_actTau Raupapa Akolbl_num_sequences{0} - Raupapa AkoactivityDrop_optSequence_error_msgWaihōtia te ngohe ki tētehi o ngā raupapa ako.pi_runofflineWhakahaere Tuimotuto_conditions_dlg_defin_item_fn_lbl{0} ({1})sequence_act_title_new{0} {1}about_popup_copyright_lbl© 2002-2009 {0} Rōpū.groupnaming_dialog_col_groupName_lblIngoa Rōpūmnu_file_insertdesignKōkuhu/Hanumi...ws_dlg_insert_btnKōkuhubranch_mapping_dlg_branch_item_default{0} (taunoa)pi_group_matching_btn_lblHono Rōpū ki Pekangarefresh_btnTāmatahiato_conditions_dlg_defin_user_defined_typetāutu kaimahial_activity_paste_invalidKāore e taea te whakapiri tēnei āhuatanga ngohegrouping_invalid_with_common_names_msgKāore e taea te tiaki tēnei hoahoatanga ngohe '{0}' nā te tapaina rōpū ōrite. Arotakengia ngā rōpū anō mahi anō.preview_btn_tooltip_disabledKia taea te arokite raupapa, tiakina i te tuatahi, katahi ka pāwhiria te Arokite condmatch_dlg_message_lblKa taea te tīpako pekanga taunoa i te pāwhiria i te takina "taunoa" i ngā wāhi Āhuatanga o te pekanga.tool_branch_act_lblHuaputa Ākongaws_no_permissionAroha mai, kāhore i a koe te whai mana ki te tuhi ki tēnei rauemicv_invalid_trans_diff_branchesKāhore e taea te hanga tauwhiro ki waenga ngohe i ngā pekanga rerekē.pi_branch_tool_acts_default--Kōwhirihia--cv_invalid_branch_target_to_activityKua whakarite pekanga kē ki {0}.cv_invalid_branch_target_from_activityKua whakarite pekanga mai kē nō {0}.cv_invalid_trans_closed_sequenceKāhore e taea te tāpiri tauwhiro hōu ki te ngohe i mutu atu.al_group_name_invalid_blankKāore e taea ngā ingoa rōpū te noho piako.al_group_name_invalid_existingMe noho ahurei ngā ingoa rōpū.competence_editor_add_competence_btnTāpirigate_openhuakigate_closedkua katiata_iconDrop_optseq_error_msgKāore i ētahi paepae raupapa ako e whakaāheitiaact_seq_lock_chkHuakina koa ngā Raupapa Ako Kōwhiri i mua i te honoa ngohe ki te raupapa ako kōwhiri.act_lock_chkHuakina koa te paepae Ngohe Kōwhiringa i mua i te tautapa i te ngohe nei hei kōwhiringa.cv_design_export_unsavedKāore e taea te Tuku hoahoa kāore anō kia tiakina.cv_autosave_rec_msgKa tata koe te whakaora anō i tērā hoahoa ngaro, hoahoa kāore i tiakina rānei. Mā te whakaora ka whakawāteatia tō hoahoa o nāianei. Haere tonu?ccm_open_activitycontentTūwhera/Whakatika Ihirangi Ngoheal_activity_openContent_invalidAroha! Tīpakohia te ngohe i mua i te pāwhiri ki te tūemi tahua Tuwhera/Whakatika Ihirangi Ngohe ki te tahua ngohe pāwhiri matau.learner_choice_grp_lblKōwhiringa Ākongapi_equal_group_sizesRōpū Tokomaha Ōritecompetence_editor_dlgKaiwhakatika Matataucompetences_lblMatataucompetence_def_dlgKōrero Tāutu Matataucompetence_editor_warning_title_existsKua whakamahia kētia he matatau me te taitara {0} competence_editor_warning_title_blankKāore e taea te taitara matatau te noho piako.competence_editor_warning_competence_mappedKua whakamahere kētia te matatau e whakamātau ana koe ki te muku ki tētahi, ētahi ngohe rānei. Ko te muku i tēnei matatau ka muku i ana whakamaherenga katoa. Me haere tonu?map_comptence_btnWhakamaheretia ki te Matataucompetence_mappings_btnMaheretanga Matataucompetences_mapped_to_act_lblMatataumap_gate_conditions_btnTikanga Tomokanga Maheregate_mapping_auto_condition_msgKa whakamaheretia ngā tikanga e toe ana ki te tomokanga kati i kōwhirihia.al_activity_view_competence_mappings_invalidMe āta kōwhiri koe i tētehi ngohe i mua i te tiro ki ōna whakamaheretanga matatau.ws_save_title_reserved_charsKāore e taea te taitara te whai pūāhua motuhake: {0}mnu_file_import_communityKawe mai i te Hapori a LAMS \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ms_MY_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3mnu_file_exitKeluarFile Menu Exitws_no_file_openTiada fail dijumpaiAlert message if no matching file is found to open in selected folder of Workspace.gate_btn_tooltipCipta poin berhentitool tip message for gate button in toolbarcv_readonly_lblLihat SahajaLabel for top left of canvas shown when a read-only design is open.cv_autosave_rec_titleAmaranAlert title for auto save recovery message.trans_dlg_nogateTiadaDrop down default for gate typepi_daysHariDays label in property inspector for gate toolstream_reference_lblLAMSReference label for the application stream.cancel_btnBatalToolbar - Cancel Buttonmnu_file_finishTamatMenu bar File - Finish (Edit Mode)about_popup_title_lblMengenai - {0}Title for the About Pop-up window.about_popup_version_lblVersiLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} adalah hak cipta {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.al_doneSelesaiLabel for dialog completion button.condmatch_dlg_cond_lst_lblKondisiLabel for primary list heading on Condition to Branch Matching dialog.to_conditions_dlg_add_btn_lbl+ TambahLabel for button to add a condition.branch_mapping_dlg_condition_col_lblKondisiColumn heading for showing condition description of the mapping.cv_design_export_unsavedAnda tidak boleh Eksport design yang tidak disimpanAlert message when trying to export can unsaved design.al_activity_openContent_invalidMaaf! Anda perlu memilih aktiviti sebelum klik menu Buka/Sunting Isi Aktiviti di menu klik kanan aktivitialert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasal_okOKOK on the alert dialogws_dlg_open_btnBukaWsp Dia Open Button labelapp_chk_langloadData bahasa tidak berjaya diloadmessage for unsuccessful language loadingal_cancelBatalTo Confirm title for LFErrorapp_chk_themeloadData tema tidak berjaya diloadmessage for unsuccessful theme loadingcopy_btnSalinToolbar &gt; Copy Buttoncv_show_validationIsuThe button on the confirm dialogdb_datasend_confirmTerima kasih kerana menghantar data ke serverMessage when user sucessfully dumps data to the serverdelete_btnPadamLabel for Delete buttongate_btnGateToolbar &gt; Gate Buttongroup_btnKumpulanToolbar &gt; Group Buttonld_val_activity_columnAktivitiThe heading on the activity in the ValidationIssuesDialogld_val_doneSelesaiThe button label for the dialogld_val_issue_columnIsuThe heading on the issue in the ValidationIssuesDialogmnu_editEditMenu bar Editmnu_edit_copySalinMenu bar Edit &gt; Copymnu_edit_pasteTampalMenu bar Edit &gt; Pastemnu_fileFailMenu bar Filemnu_file_closeTutupMenu bar Closemnu_file_newBaruMenu bar Newmnu_file_openBukaMenu bar Openmnu_file_saveSimpanMenu bar savemnu_file_saveasSimpan sebagai...Menu bar Save asmnu_helpTolongMenu bar Helpmnu_help_abtMengenai LAMSMenu bar Aboutmnu_toolsAlatanMenu bar Toolsnew_btnBaruToolbar &gt; New Buttonnone_act_lblTiadaNo gate activity selectedopen_btnBukaToolbar &gt; Open Buttonpaste_btnTampalToolbar &gt; Paste Buttonpi_end_offsetTutup gateEnd offset labelpi_hoursJamHours label in Property Inspectorpi_lbl_descDiskripsiDescription Label for PIpi_lbl_titleTajukTitle label for PIpi_minsMinitMins label in teh property inspectorpi_no_groupingTiadaCombo title for no groupingprefs_dlg_cancelBatal6prefs_dlg_lng_lblBahasa7prefs_dlg_okOK5prefs_dlg_theme_lblTema8random_grp_lblRawakLabel for the grouping drop down in the PropertyInspectorsave_btnSimpanToolbar &gt; Save buttontrans_dlg_cancelBatalCancel button on transition dialogtrans_dlg_gatetypecmbJenisGate type combo labeltrans_dlg_okOKOK Button on transition dialogws_RootRootRoot folder title for workspacews_dlg_cancel_buttonBatal2ws_dlg_filenameNama FailLabel for File name in workspace windowws_dlg_location_buttonLokasiWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelal_alertAwasGeneric title for Alert windowal_confirmTerimaTo Confirm title for LFErrorchosen_grp_lblPilihanLabel for the grouping drop down in the PropertyInspectorlicense_not_selectedTiada lesen dipilih - Sila pilihShown if no license is selected in the drop down in workspacemnu_edit_cutPotongMenu bar Edit &gt; Cutoptional_btnPilihanToolbar &gt; Optional Buttonperm_act_lblIzinLabel for permission gate activitypi_activity_type_gateAktiviti GetActivity type for gate in PIsys_error_msg_finishAnda mungkin perlu memulakan semula Pengarang LAMS untuk sambung. Adakah anda mahu menyimpan informasi mengenai ralat ini untuk membantu mengatasi masalah ini?Common System error message finish paragraphcv_invalid_optional_activityBuang ke dan dari peralihan dari {0} sebelum seting ia sebagai aktiviti tambahan.Alert message when user try to drop an activity with to or from transition into optional containeral_activity_copy_invalidMaaf! Anda perlu memilih aktiviti sebelum klik salin.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvaspi_max_actAktiviti TerbanyakLabel for maximum Activities or Sequencespi_min_actAktiviti TerkecilLabel for minimum Activities or Sequencespreview_btnPreviuToolbar &gt; Preview Buttonsynch_act_lblPenyelarasanUsed as a label for the Synch Gate Activity Typetrans_dlg_gateMenyelaraskanHeader for the transition props dialogtrans_dlg_titlePeralihanTitle for the transition properties dialogws_chk_overwrite_resourceAmaran: anda sedang menulis semula turutanws_click_folder_fileSila klik sama ada di Folder untuk simpan, atau Design untuk menulis semulaError msg if no folder or file is selectedws_dlg_titleRuang kerja0ws_view_license_buttonViewTo show the license to the usercopy_btn_tooltipSalin aktiviti yang dipilihtool tip message for copy button in toolbarpaste_btn_tooltipTampal salinan aktiviti yang dipilihtool tip message for paste button in toolbarccm_open_activitycontentBuka/Edit Isi AktivitiLabel for Custom Context Menuccm_copy_activitySalik AktivitiLabel for Custom Context Menuccm_paste_activityTampal AktivitiLabel for Custom Context Menucv_untitled_lblTiada tajuk - 1Label for Design Title bar on canvasal_empty_designMaaf, Anda tidak boleh simpan design kosongalert message when user want to save an empty designcv_close_return_to_ext_srcTutup dan kembali ke {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedPerubahan telah berjayaChanges have been successful applied.cv_element_readOnly_action_deldibuangAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_moddiubahAction label for read only alert message for a Canvas Transition.pi_branch_tool_acts_lblInput (Alatan)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_defaultBranch_cb_lbldefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_clear_all_btn_lblBersihkan semuaLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- BuangLabel for button to remove condition.to_conditions_dlg_from_lblDaripada:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblKepada:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblSet JulatHeading label for section in the dialog to set numeric condition range.branch_mapping_no_mapping_msgTiada Mapping dipilihAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgTiada Kondisi dipilihAlert message when adding a Mapping without a Condition being selected.branch_mapping_dlg_match_dgd_lblMappingHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueJulat {0} hingga {1}Value for Condition field in mapping datagrid.ccm_piInspektor Property...Label for Custom Context Menuws_dlg_save_btnSimpanWsp Dia Save Button labelws_newfolder_cancelBatalCancel on the new folder name diaws_newfolder_insSila masukkan nama folder baruInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_rename_insSila masukkan nama baruMessage of the new name for the userws_tree_mywspRuangkerja SayaThe root level of the treesys_errorSistem RalatSystem Error elert window titlelbl_num_activitiesAktivitireplacement for word activitiesal_sendKirimSend button label on the system error dialogws_license_lblLesenLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformasi Lesen TambahanLabel for Licence Comment description below license drop downmnu_file_importImportMenu bar Importmnu_file_exportExportMenu bar Exportws_click_virtual_folderTidak boleh menggunakan folder iniAlert message for trying to use a virtual folder to save/open a file.prefix_copyof_countSalinan ({0}) untukPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_entre_file_nameSila masukkan nama design, dan klik butang Simpan.Error message when user try to save a design with no file namews_dlg_descriptionDiskripsiLabel for description in Workspace dialog - Properties tabcv_activity_dbclick_readonlyAnda tidah boleh mengubah alatan untuk design bacaan sahaja. Sila simpan salinan design dan cuba lagi.Alert message when double-clicking an Activity in an open read-only designws_file_name_emptyMaaf! Anda tidak dibenarkan menyimpan design tanpa nama fail.Error message when user try to save a design with no file namevalidation_error_inputTransitionType1Aktiviti ini tidak mempunyai input peralihanThis activity has no input transitionsequence_act_titleTurutanDefault title for Sequence Activity.mnu_edit_redoUlangcaraMenu bar Edit &gt; Redomnu_edit_undoNyahcaraMenu bar Edit &gt; Undomnu_tools_optLukis TambahanMenu bar Optionalpi_num_learnersNombor pelajarPI Num learners labelpi_optional_titleAktiviti TambahanTitle for oprional activity property inspectorpi_start_offsetBuka getStart offset labelrename_btnMenamakanLabel for Rename Buttonsched_act_lblJadualLabel for schedule gate activitytk_titleKit AktivitiLabel for Activities Toolkit Paneltrans_btnPeralihanToolbar &gt; Transition Buttonopt_activity_titleAktiviti TambahanTitle for Optional Activity Containeral_cannot_move_activityMaaf anda tidak boleh mengubah aktivitiAlert message when user tries to move child activity of any parallel activitymnu_help_helpTolong Karanganlabel for menu bar Help - Authoring Help optionccm_author_activityhelpTolong Karang AktivitiLabel for Custom Context Menuws_del_confirm_msgAdakah anda pasti untuk membuang fail/folder ini?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_openSila klik pada Design untuk buka.Alert message if folder tried to be opened.cv_trans_target_act_missingAktiviti kedua Peralihan hilang.Error message when target activity for transition is missingcv_activity_copy_invalidMaaf! Anda tidak dibenarkan menyalin anak aktiviti.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidMaaf! Anda tidak dibenarkan memotong anak aktiviti.Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activityPeralihan ke {0} sudah adaError message when a transition to the activity already existcv_design_unsavedDesign di kanvas telah berubah. Sambung tanpa menyimpannya?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipBersihkan turutan sekarang dan reset ruangkerja sedia digunakanTool tip message for new button in toolbaropen_btn_tooltipPapar Dialog Fail untuk buka Turutan AktivitiTool tip message for open button in toolbarsave_btn_tooltipSimpanan cepat Turutan Aktiviti sekarangtool tip message for save button in toolbartrans_btn_tooltipGuna pen untuk lukis turutan diantara aktiviti (atau tekan butang CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCipta set aktiviti tambahan.tool tip message for optional button in toolbarbranch_btn_tooltipCipta cabang (sedia di LAMS v2.1)tool tip message for branch button in toolbarflow_btn_tooltipCipta kontrol aliran aktivititool tip message for flow button in toolbarvalidation_error_inputTransitionType2Tiada aktiviti hilang input peralihanNo activities are missing their input transition.preview_btn_tooltipPratonton Turutan anda sebagai yang akan dilihat pelajar Tool tip message for preview button in toolbarws_chk_overwrite_existingFolder ini sudah mempunyai fail bernama {0}Alert message when saving a design with the same filename as an existing design.branch_btnCabangLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnAliranLabel for Flow button in Toolbarpi_parallel_titleAktiviti SelariTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceAnda tidak dibenarkan untuk mempunyai turutan berulangError message when a transition from one activity to another is creating a circular loopbin_tooltipJatuhkan aktiviti di tong untuk membuangnya dari turutan aktiviti.Tool tip message for canvas bincv_gateoptional_hit_chkAnda tidak boleh menampah get aktiviti sebagai aktiviti tambahan.Error message when user drags gate activity over to optional containerws_save_folder_invalidAnda tidak boleh menyimpan design di dalam folder ini. Sila pilih sub-folder yang sah.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityPeralihan dari {0} sudah sedia adaError message when a transition from the activity already existcv_activity_helpURL_undefinedTidak berjaya mencari halaman untu {0}Alert message when a tool activity has no help url defined.validation_error_outputTransitionType1Aktiviti ini tidak mempunyai output peralihanThis activity has no output transitionprefs_dlg_titleKeutamaan4act_tool_titleKit alatan AktivitiTitle for Activity Toolkit Panelapp_fail_continueAplikasi tidak dapat disambung. Sila hubungi message if application cannot continue due to any errorvalidation_error_outputTransitionType2Tiada aktiviti hilang output peralihanNo activities are missing their output transition.pi_activity_type_groupingPengumpulan AktivitiActivity type for grouping in Property Inspectorprefix_copyofSalinan untukPrefix for copy paste command for canvas activitiesmnu_file_apply_changesTerap PerubahanApply Changesapply_changes_btnTerap PerubahanApply Changescv_activity_readOnlyAktiviti tidak boleh jadi {0}. Aktiviti hanya untuk dibaca sahaja.Alert message when a user performs an illegal action on a read-only transition.branching_act_titleCabanganLabel for Branching Activitypi_activity_type_sequenceTurutan Aktiviti (Cabang)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlik pada nama untuk mengubah nilai.Instructions for Group Naming dialog.branch_mapping_no_branch_msgTiada Cabang dipilih.Alert message when adding a Mapping without a Branch (Sequence) being selected.condmatch_dlg_title_lblKondisi Sesuai ke CabangDialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_branch_col_lblCabangColumn heading for showing sequence name of the mapping.branch_mapping_auto_condition_msgSemua Kondisi yang tinggal akan di mapkan ke Cabang asas.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_condition_col_value_exactNilai tepat untuk {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblSetup PemetaanLabel for button to open tool output to branch(s) dialog.cv_invalid_design_on_apply_changesTidak boleh menerap perubahan. Terdapat satu atau lebih peralihan yang hilang.Cannot apply changes. There are one or more transitions missing.branch_mapping_dlg_branches_lst_lblCabanganLabel for Branches list box on Branch Matching Dialogs.apply_changes_btn_tooltipTerap perubahan ke design dan kembali ke monitor belajar.tool tip message for save button in toolbarpi_activity_type_branchingMencabangkan AktivitiActivity type for Branching in Property Inspector.pi_branch_typeJenis cabanganProperty Inspector Branching type drop down.tool_branch_act_lblOutput AlatanBranching type label for Tool output Branching.group_btn_tooltipCipta aktiviti berkumpulantool tip message for group button in toolbarbranch_mapping_dlg_group_col_lblKumpulanColumn heading for showing group name of the mapping.cv_eof_finish_invalid_msgDesign mesti sah untuk menyelesaikan suntingan.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.groupmatch_dlg_groups_lst_lblKumpulanLabel for Groups list box on Group/Branch Matching Dialog.pi_lbl_groupPerkumpulanGrouping label for PIws_tree_orgsKumpulan SayaShown in the top level of the tree in the workspacebranch_mapping_no_groups_msgTiada Kumpulan dipilihAlert message when adding a Mapping without a Group being selected.pi_num_groupsNombor kumpulanNumber of groups in Property inspectorpi_group_naming_btn_lblNama KumpulanLabel for button that opens Group Naming dialog.grouping_act_titlePengumpulanDefault title for the grouping activitygroupmatch_dlg_title_lblMap Kumpulan kepada CabangMap Groups to Branchesgroupnaming_dlg_title_lblPenamaan KumpulanTitle label for Group Naming dialog.pi_group_typeJenis PengumpulanProperty Inspector Grouping type drop downgroup_branch_act_lblAsas kumpulanBranching type label for Group-based Branching.pi_lbl_currentgroupPengumpulan SekarangCurrent grouping label for PIcv_invalid_design_savedDesign anda belum lagi sah, tetapi telah disimpan, klik 'Isu' untuk melihat ralat.Message when an invalid design has been savedcv_invalid_trans_targetAnda tidak boleh mencipta peralihan kepada objek iniError message for when transition tool is dropped outside of valid target activitycv_valid_design_savedTahniah! - Design anda sah dan telah disimpanMessage when a valid design has been savedld_val_titleIssue pengesahanThe title for the dialogmnu_tools_prefsKeutamaanMenu bar preferencesmnu_tools_transLukis PeralihanMenu bar draw transitionnew_confirm_msgAdakah anda pasti untuk memadam design anda pada skrin?Msg when user clicks new while working on the existing designpi_definelaterDefine di MonitorLabel for Define later for PIpi_titlePropertiOn the title bar of the PIproperty_inspector_titlePropertiOn the title bar of the PIws_copy_same_folderSumber dan destinasi folder adalah samaThe user has tried to drag and drop to the same placews_dlg_properties_buttonPropertiWorkspace dialogue Properties btn labelws_no_permissionMaaf, anda tidak mempunyai keizinan untuk menulis pada sumber iniMessage when user does not have write permission to complete actionact_lock_chkSila buka kunci Aktiviti Tambahan sebelum menukar aktiviti sebagai pilihanAlert Message if user drags the activity to locked optional activity container sys_error_msg_startSistem ralat telah muncul:Common System error message starting linepi_runofflineRun OfflineLabel for Run Oflinecv_autosave_err_msgRalat telah muncul semasa proses simpanan automatik design anda. Jika ralat ini berterusan sila hubungi Admin SistemAlert error message when auto-save fails.cv_eof_finish_modified_msgAmaran: Design anda telah di ubah. Adakah anda mahu menutup tanpa menyimpannya?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyPeralihan tidak boleh {0}. Target Peralihan hanya boleh dibaca.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipKembali ke monitor belajar.tool tip message for cancel button in toolbar (edit mode)to_conditions_dlg_title_lblCipta Kondisi Alat OutputDialog title for creating new tool output conditions.pi_define_monitor_cb_lblDefine di MonitorCheckbox label for option to define group to branch mappings in Monitor.cv_autosave_rec_msgAnda akan memulihkan design terakhir yang hilang atau tidak disimpan. Design sekarang anda akan dibersihkan. Teruskan?Message informing users that they have recovered data for a design.mnu_file_recoverPulih...Menu bar Recovervalidation_error_transitionNoActivityBeforeOrAfterPeralihan mesti mempunyai aktiviti sebelum atau selepas peralihanA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAktiviti mesti mempunyai input atau output peralihanAn activity must have an input or output transitioncv_edit_on_fly_lblSuntingan LiveLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.about_popup_license_lblProgram ini adalah perisian percuma; anda boleh mengagihkan ia dan/atau mengubah ia dibawah terma GNU General Public Lisense versi 2 seperti yang diumumkan oleh Free Software Foundation.Label displaying the license statement in the About dialog.pi_condmatch_btn_lblSetup Penyataan Kondisi Label for button to open dialog to create output conditions.branch_mapping_dlg_condition_linked_singleKondisi ini ialahPhrase used at start of linked conditions alert message when clearing a single entry.chosen_branch_act_lblPilihan PengajarBranching type label for Teacher choice Branching.to_condition_start_valuenilai mulaValue representing the min boundary value of the conditions range.to_condition_end_valuenilai tamatValue representing the max boundary value of the conditions value.to_condition_invalid_value_range{0} tidak boleh berada diantara jarak kondisi sekarang.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction{0} tidak boleh melebihi {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgAMARAN: Pengajaran akan dibuang. Adakah anda mahu menyimpan pegajaran sebagai {0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueSambungContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} bersambung dengan cabang sedia ada. Anda mahu teruskan?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allTerdapat kondisiPhrase used at start of linked conditions alert message when clearing all.to_condition_untitled_item_lblUntitled {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgDesign mempunyai cabang pemetaan tidak digunakan yang akan dibuang. Adakah anda mahu teruskan?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgUntuk buang sila tidak memilih pilihan aktiviti sebagai {0}.Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg{0} bersambung dengan {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg{0} mempunyai anak bersambung dengan {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxLebih dari {0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btnAktivitiToolbar button for Optional Activity.optional_seq_btnTurutanToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipCipta set pilihan turutanTooltip for Sequences within Optionaly Activity button.about_popup_copyright_lbl© 2002-2008 {0} Foundation.Label displaying copyright statement in About dialog.pi_optSequence_remove_msg Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_optSequence_remove_msg_title Removing sequencesact_seq_lock_chkSila buka bekas Turutan Tidak Wajib sebelum menetapkan aktiviti ke turutan tidak wajib.Alert Message if user drags the activity to locked optional sequences container.pi_no_seq_actNombor TurutanLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - TurutanLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgSila letakkan aktiviti ke salah satu turutan.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesBuang dahan bersambung dari {0} sebelum menambah kedalam turutan tidak wajib.Alert message when user try to drop an activity with connected branches into optional sequences container.cv_invalid_optional_activity_no_branchesTiada turutan dibenarkan lagi pada bekas ini.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.cv_invalid_optional_seq_activityBuang ke atau dari peralihan dari {0} sebelum seting ia ke turutan tidak wajibAlert message when user try to drop an activity with to or from transition into optional sequences container.ta_iconDrop_optseq_error_msgBuang dahan bersambung dari {0} sebelum seting ia sebagai aktiviti tidak wajibAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleTurutan Tidak WajibTitle for Optional Sequences Container.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_lt_lblKurang dari atau samaLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minKurang dari atau sama {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actAktivitiMin and max label postfix when an Optional Activity is selected.pi_seqTurutanMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typejulatType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typebetul/salahType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ DefinisiHeader label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNamaColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblKondisiColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Pilihan ]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipMinimizeTooltip message for close button on Branching canvas. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/nl_BE_dictionary.xml 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3to_conditions_dlg_remove_item_btn_lbl- VerwijderenLabel for button to remove condition.pi_defaultBranch_cb_lblstandaardCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_from_lblVan:Label for start value in condition range for long or numeric output values.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_defin_long_typereeksType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typewaar:onwaarType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ Definitions ] Header label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNaamColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblVoorwaardeColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Options ] Header label value (first index) for tool long (range) options drop-down.close_mc_tooltipMinimaliserenTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblGroter dan of gelijk aanGreater than or equal toto_conditions_dlg_lte_lblKleiner dan of gelijk aanLess than or equal togroupnaming_dialog_col_groupName_lblGroep NaamColumn label for editable datagrid in Group Naming dialog.ws_chk_overwrite_resourcePas op : U staat op het punt om een sequentie te overschrijven !ws_tree_orgsMijn groepenShown in the top level of the tree in the workspaceal_activity_copy_invalidSorry, je moet de activiteit eerst selecteren voor je op de kopiëerknop kliktAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvascv_autosave_rec_msgU staat op het punt om het verloren gegaan of niet bewaard ontwerp terug te halen. Uw huidige ontwerp zal worden gewist. Doorgaan ?Message informing users that they have recovered data for a design.cv_invalid_design_savedUw ontwerp is nog niet geldig, maar het is bewaard, klik op ' Knelpunten ' om te zien wat er verkeerd isMessage when an invalid design has been savedmnu_help_abtMeer over LAMSMenu bar Aboutpi_no_groupingGeenCombo title for no groupingact_lock_chkOntsluit de container van optionele activiteiten voor U deze activiteit als optioneel kan aanduidenAlert Message if user drags the activity to locked optional activity container condmatch_dlg_cond_lst_lblConditiesLabel for primary list heading on Condition to Branch Matching dialog.groupmatch_dlg_title_lblGroepen op vertakkingen koppelenMap Groups to Branchesto_condition_invalid_value_rangeDe {0} mag niet in het bereik van een bestaande conditie liggen.Alert message when a submitted condition interferes with another previously submitted condition.ws_no_file_openGeen bestand gevondenAlert message if no matching file is found to open in selected folder of Workspace.pi_hoursUrenHours label in Property Inspectorpi_minsMinutenMins label in teh property inspectorsave_btn_tooltipSnel bewaren van de huidige sequentietool tip message for save button in toolbarcv_invalid_trans_target_from_activityDe overgang van {0} bestaal alError message when a transition from the activity already existtrans_btn_tooltipGebruik deze pen om overgangen tussen activiteiten te tekenen (of druk op de CTRL-toets)tool tip message for transition button in toolbaropen_btn_tooltipToon de bestands-dialoog om een activiteitensequentie te openenTool tip message for open button in toolbarcv_invalid_trans_target_to_activityDe overgang naar {0} bestaat al.Error message when a transition to the activity already existal_cannot_move_activitySorry, U kan deze activiteit niet verplaatsenAlert message when user tries to move child activity of any parallel activityws_dlg_save_btnBewaarWsp Dia Save Button labelws_dlg_ok_buttonOKWsp Dia OK Button labelcv_trans_readOnlyOvergang kan niet {0} zijn. De overgang is van het type alleen-lezen.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).tk_titleActiviteitenLabel for Activities Toolkit Panelws_dlg_cancel_buttonAnnuleren2ws_dlg_filenameBestandsnaamLabel for File name in workspace windowws_save_folder_invalidU kan geen ontwerp opslaan in deze map. Kies een geldige sub-map.Alert message if root My Workspace folder is selected to save a design in.prefix_copyof_countKopie ({0}) vanPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.cv_invalid_trans_circular_sequenceU kan geen cirkelvormige sequentie makenError message when a transition from one activity to another is creating a circular loopmnu_file_exportExporterenMenu bar Exportmnu_file_exitAfsluitenFile Menu Exitpreview_btn_tooltipZo zullen uw leerlingen uw sequentie zienTool tip message for preview button in toolbarpi_num_groupsAantal groepenNumber of groups in Property inspectorcopy_btn_tooltipKopiëer de geselecteerde activiteittool tip message for copy button in toolbargate_btn_tooltipMaak een stop-punttool tip message for gate button in toolbaroptional_btn_tooltipMaak een set optionele activiteitentool tip message for optional button in toolbarflow_btn_tooltipMaak stroom-controle activiteitentool tip message for flow button in toolbarpaste_btn_tooltipPlak een kopie van de geselecteerde activiteittool tip message for paste button in toolbaral_sendZendenSend button label on the system error dialogcv_design_unsavedHet ontwerp in de werkruimte is gewijzigd. Doorgaan zonder dit te bewaren ?Alert message when opening/importing when current design on canvas is unsaved or modified.cv_trans_target_act_missingDe tweede activiteit van de overgang ontbreekt.Error message when target activity for transition is missingcv_invalid_optional_activityVerwijder de overgangen van en naar {0} voor je deze activiteit optioneel maaktAlert message when user try to drop an activity with to or from transition into optional containerws_click_file_openKlik op een Ontwerp om te openenAlert message if folder tried to be opened.pi_group_typeGroeperingstypeProperty Inspector Grouping type drop downsys_errorSysteemfoutSystem Error elert window titlews_copy_same_folderDe bron- en bestemmingsmap zijn dezelfdeThe user has tried to drag and drop to the same placews_rename_insGeef de nieuwe naam op a.u.bMessage of the new name for the userws_dlg_properties_buttonEigenschappenWorkspace dialogue Properties btn labelsys_error_msg_startVolgende systeemfout heeft zich voorgedaan :Common System error message starting linesys_error_msg_finishHet kan nodig zijn dat U LAMS Author moet herstarten om verder te kunnen. Wil U volgende informatie aangaande deze fout opslaan om het probleem te helpen oplossen ?Common System error message finish paragraphws_click_folder_fileKlik op een map om in te bewaren, of op een Ontwerp om te overschrijvenError msg if no folder or file is selectedws_dlg_open_btnOpenWsp Dia Open Button labelws_no_permissionSorry, U mag niet naar deze bron schrijvenMessage when user does not have write permission to complete actionws_newfolder_okOKOK on the new folder name diaws_newfolder_cancelAnnuleerCancel on the new folder name diaopt_activity_titleOptionele activiteitTitle for Optional Activity Containerws_view_license_buttonToonTo show the license to the userws_license_lblLicentieLabel for Licence drop down on workspace properties tab viewws_license_comment_lblBijkomende informatie over de licentieLabel for Licence Comment description below license drop downld_val_issue_columnKnelpuntThe heading on the issue in the ValidationIssuesDialoggrouping_act_titleGroeperingDefault title for the grouping activitypi_lbl_currentgroupHuidige groeperingCurrent grouping label for PIws_dlg_location_buttonPlaatsWorkspace dialogue Location btn labelgroup_btn_tooltipMaak een groeperingsactiviteittool tip message for group button in toolbaral_cancelAnnulerenTo Confirm title for LFErroral_confirmBevestigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDe taalgegevens zijn nog niet geladenmessage for unsuccessful language loadingapp_chk_themeloadDe themagegevens zijn nog niet geladenmessage for unsuccessful theme loadingapp_fail_continueDeze toepassing kan niet verder worden uitgevoerd. Neem contact op met de helpdeskmessage if application cannot continue due to any errorchosen_grp_lblGekozenLabel for the grouping drop down in the PropertyInspectorcopy_btnKopiërenToolbar &gt; Copy Buttoncv_invalid_trans_targetU kunt aan dit object geen overgang makenError message for when transition tool is dropped outside of valid target activitycv_show_validationKnelpuntenThe button on the confirm dialogcv_valid_design_savedGelukwensen! - Uw ontwerp is geldig en is bewaardMessage when a valid design has been saveddb_datasend_confirmDank U voor het zenden van gegevens naar de serverMessage when user sucessfully dumps data to the serverdelete_btnVerwijderenLabel for Delete buttongate_btnDoorgangToolbar &gt; Gate Buttongroup_btnGroepToolbar &gt; Group Buttonld_val_activity_columnActiviteitThe heading on the activity in the ValidationIssuesDialogld_val_doneBeëindigdThe button label for the dialoglicense_not_selectedMomenteel is geen licentie geselcteerd - Kies er één a.u.b.Shown if no license is selected in the drop down in workspacemnu_editBewerkenMenu bar Editmnu_edit_copyKopiërenMenu bar Edit &gt; Copymnu_edit_cutKnippenMenu bar Edit &gt; Cutmnu_edit_pastePlakkenMenu bar Edit &gt; Pastemnu_edit_redoOpnieuwMenu bar Edit &gt; Redomnu_edit_undoOngedaan makenMenu bar Edit &gt; Undomnu_fileBestandMenu bar Filemnu_file_closeSluitenMenu bar Closemnu_file_newNieuwMenu bar Newmnu_file_openOpenMenu bar Openmnu_file_saveBewaarMenu bar savemnu_file_saveasBewaar alsMenu bar Save asmnu_helpHelpMenu bar Helpmnu_tools_optTeken OptioneelMenu bar Optionalmnu_tools_prefsVoorkeurenMenu bar preferencesmnu_tools_transTeken OvergangenMenu bar draw transitionnew_btnNieuwToolbar &gt; New Buttonnew_confirm_msgBent U zeker dat U uw ontwerp op het scherm wil wissen?Msg when user clicks new while working on the existing designnone_act_lblGeenNo gate activity selectedopen_btnOpenToolbar &gt; Open Buttonoptional_btnOptioneelToolbar &gt; Optional Buttonpaste_btnPlakkenToolbar &gt; Paste Buttonperm_act_lblToelatingLabel for permission gate activitypi_activity_type_gateDoorgangsactiviteitActivity type for gate in PIpi_activity_type_groupingGroepsactiviteitActivity type for grouping in Property Inspectorpi_definelaterBepaal laterLabel for Define later for PIpi_end_offsetDoorgang sluitenEnd offset labelpi_lbl_descBeschrijvingDescription Label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMax. ActiviteitenLabel for maximum Activities or Sequencespi_min_actMin. ActiviteitenLabel for minimum Activities or Sequencespi_num_learnersAantal deelnemersPI Num learners labelpi_optional_titleOptionele activiteitTitle for oprional activity property inspectorpi_runofflineOffline uitvoerenLabel for Run Oflinepi_start_offsetDoorgang openenStart offset labelpi_titleEigenschappenOn the title bar of the PIprefix_copyofKopie vanPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAfbreken6prefs_dlg_lng_lblTaal7prefs_dlg_okOK5prefs_dlg_theme_lblThema8prefs_dlg_titleVoorkeuren4preview_btnVoorbeeldToolbar &gt; Preview Buttonproperty_inspector_titleEigenschappenOn the title bar of the PIrandom_grp_lblWillekeurigLabel for the grouping drop down in the PropertyInspectorrename_btnHernoemenLabel for Rename Buttonsave_btnBewaarToolbar &gt; Save buttonsched_act_lblTijdschemaLabel for schedule gate activitysynch_act_lblSynchroniserenUsed as a label for the Synch Gate Activity Typetrans_btnOvergangToolbar &gt; Transition Buttontrans_dlg_gateSynchronisatieHeader for the transition props dialogtrans_dlg_gatetypecmbTypeGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleOvergangTitle for the transition properties dialogws_RootBasisRoot folder title for workspacetrans_dlg_cancelAnnulerenCancel button on transition dialogal_empty_designSorry, U kan geen leeg ontwerp bewarenalert message when user want to save an empty designcv_readonly_lblAlleen lezenLabel for top left of canvas shown when a read-only design is open.cv_activity_dbclick_readonlyU kan geen gereedschap in een alleen-lezen ontwerp bewerken. Sla een kopie van het ontwerp op en probeer opnieuwAlert message when double-clicking an Activity in an open read-only designcv_gateoptional_hit_chkU kan geen doorgangsactiviteit niet optioneel makenError message when user drags gate activity over to optional containerbin_tooltipSleep een activiteit op deze prullenbak om ze uit de sequentie te verwijderen.Tool tip message for canvas binpi_parallel_titleParallelle activiteitTitle for parallel activity property inspectorws_click_virtual_folderU kan deze map niet gebruikenAlert message for trying to use a virtual folder to save/open a file.mnu_file_importImporterenMenu bar Importflow_btnStroomLabel for Flow button in Toolbarws_chk_overwrite_existingDeze map bevat al een bestand genaamd {0}Alert message when saving a design with the same filename as an existing design.cv_design_export_unsavedU kan geen ontwerp exporteren dat niet opgeslagen werd.Alert message when trying to export can unsaved design.branch_btnVertakkingLabel for disabled Branch button shown as submenu for flow button in Toolbarnew_btn_tooltipVerwijdert de huidige sequentie en zet de werkruimte terug klaarTool tip message for new button in toolbarbranch_btn_tooltipMaak een vertakking (beschikbaar in LAMS v 2.1)tool tip message for branch button in toolbarws_dlg_titleWerkruimte0ws_tree_mywspMijn werkruimteThe root level of the treelbl_num_activitiesActiviteitenreplacement for word activitiesws_newfolder_insGeef een naam voor de nieuwe mapInstructions on the new name pop upld_val_titleValidatie knelpuntenThe title for the dialogpi_lbl_groupGroeperingGrouping label for PIcv_autosave_rec_titleWaarschuwingAlert title for auto save recovery message.cv_invalid_design_on_apply_changesKan wijzigingen niet opslaan. Er ontbreken 1 of meer overgangen.Cannot apply changes. There are one or more transitions missing.validation_error_outputTransitionType2Er zijn geen activiteiten die hun uitvoer-overgang missen.No activities are missing their output transition.validation_error_outputTransitionType1Deze activiteit heeft geen uitvoer-overgang.This activity has no output transitionact_tool_titleActiviteitenTitle for Activity Toolkit Panelmnu_toolsGereedschapMenu bar Toolscv_autosave_err_msgEr heeft zich een fout voorgedaan tijdens een poging om uw ontwerp automatisch te bewaren. Als deze fout zich blijft voordoen, neem dan contact op met uw systeembeheerderAlert error message when auto-save fails.al_alertAandachtGeneric title for Alert windowvalidation_error_inputTransitionType1Deze activiteit heeft geen invoer overgangThis activity has no input transitionvalidation_error_activityWithNoTransitionEen activiteit moet een invoer- of uitvoer-overgang hebbenAn activity must have an input or output transitionmnu_file_recoverHerstellen...Menu bar Recovervalidation_error_inputTransitionType2Er zijn geen activiteiten die hun invoer-overgang missen.No activities are missing their input transition.validation_error_transitionNoActivityBeforeOrAfterEen overgang moet een activiteit voor of na de overgang hebbenA Transition must have an activity before or after the transitionws_del_confirm_msgBen je zeker dat je dit bestand of deze map wil verwijderen ?Confirmation message when user tries to delete a file or folder in workspace dialog boxcv_activity_copy_invalidSorry, je kan deze dochter-activiteit niet kopiërenError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSorry, je kan deze dochter-activiteit niet knippen.Error message when user try to cut child activity from either optional or parallel activity containerpi_daysDagenDays label in property inspector for gate toolbranching_act_titleZijtak(ken)Label for Branching Activitystream_urlhttp://{0}foundation.orgURL address for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_reference_lblLAMS Reference label for the application stream.about_popup_license_lblDit programma valt onder de Vrije Software; u mag het verspreiden en/of aanpassen onder de voorwarden van de GNU General Public License version 2 zoals die is gepubliceerd door de Free Software Foundation.Label displaying the license statement in the About dialog.about_popup_trademark_lbl{0} is een handelsmerk van {0} stichting ( {1} )Label displaying the trademark statement in the About dialog.about_popup_version_lblVersieLabel displaying the version no on the About dialog.about_popup_title_lblOver - {0}Title for the About Pop-up window.mnu_file_finishEindeMenu bar File - Finish (Edit Mode)cancel_btn_tooltipTerug naar de les bekijkentool tip message for cancel button in toolbar (edit mode)cv_eof_finish_modified_msgWaarschuwing: Uw ontwerp is gewijzigd. Wilt u afsluiten zonder op te slaan?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_eof_finish_invalid_msgBeeindigen niet mogelijk: het ontwerp voldoet nog niet aan de minimumeisen.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_element_readOnly_action_modgewijzigdAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_delverwijderdAction label for read only alert message for a Canvas Transition.cv_edit_on_fly_lblLive aanpassenLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_activity_readOnlyActiviteit kan niet {0} zijn. De Activiteit is van het type alleen-lezen.Alert message when a user performs an illegal action on a read-only transition.cancel_btnAnnulerenToolbar - Cancel Buttonapply_changes_btn_tooltipSla de aanpassingen op en keer terug naar 'les bekijken'.tool tip message for save button in toolbarapply_changes_btnWijzigingen toepassenApply Changesmnu_file_apply_changesWijzigingen toepassenApply Changescv_eof_changes_appliedWijzigingen zijn succesvol toegepast.Changes have been successful applied.cv_close_return_to_ext_srcAfsluiten en terug naar {0}Button label used on close and return button in save confirm message popup.cv_untitled_lblZonder titel - 1Label for Design Title bar on canvasws_file_name_emptySorry! Het is toegestaan een ontwerp op te slaan zonder bestandsnaam.Error message when user try to save a design with no file nametrans_dlg_nogateGeenDrop down default for gate typews_dlg_descriptionOmschrijvingLabel for description in Workspace dialog - Properties tabcv_activity_helpURL_undefinedKan geen help pagina vinden voor {0}Alert message when a tool activity has no help url defined.ws_entre_file_nameGeef het ontwerp een naam, en klik daarna op de knop Opslaan.Error message when user try to save a design with no file nameccm_piEigenschappen Inspecteur...Label for Custom Context Menumnu_help_helpAuteurs helplabel for menu bar Help - Authoring Help optionccm_author_activityhelpAuteurs Activiteit HelpLabel for Custom Context Menuccm_open_activitycontentOpen/Wijzig Activiteit InhoudLabel for Custom Context Menual_activity_openContent_invalidSorry! U moet een activiteit kiezen voordat u op het Open/Wijzigen Activiteit Inhoud menu item in het activiteit-rechts-klik-menu klikt.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasccm_copy_activityKopieer ActiviteitLabel for Custom Context Menuccm_paste_activityPlak ActiviteitLabel for Custom Context Menuto_condition_invalid_value_directionDe {0} kan niet groter zijn dan de {1}.Alert message when the start value is greater than end value of the submitted condition.to_conditions_dlg_range_lblStel bereik in:Heading label for section in the dialog to set numeric condition range.groupnaming_dialog_instructions_lblKlik op een naam om de waarde te wijzigen.Instructions for Group Naming dialog.branch_mapping_dlg_condition_col_lblConditieColumn heading for showing condition description of the mapping.pi_activity_type_branchingVertakkings activiteitActivity type for Branching in Property Inspector.about_popup_copyright_lbl© 2002-2008 {0} stichting.Label displaying copyright statement in About dialog.is_remove_warning_msgLet op: de les staat op het punt te worden verwijderd. Wilt u de les bewaren als {0}?Message for the alert dialog which appears following confirmation dialog for removing a lesson.branch_mapping_dlg_branch_col_lblVertakkingColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_linked_singleDeze conditie is Phrase used at start of linked conditions alert message when clearing a single entry.pi_seqSequentiesMin and max label postfix when an Optional Sequences activity is selected.pi_actActiviteitenMin and max label postfix when an Optional Activity is selected.branch_mapping_dlg_condition_col_value_minMinder of gelijk aan {0}Value for Condition field in mapping datagrid when Less than option is selected.to_conditions_dlg_lt_lblMinder dan of gelijk aanLess than option for long type conditions.opt_activity_seq_titleOptionele sequentiesTitle for Optional Sequences Container.ta_iconDrop_optseq_error_msgVerwijder alle koppelingen van {0} voor het als een optionele activiteit in te stellenAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.cv_invalid_optional_seq_activityVerwijder alle transities van {0} voor het als optionele sequentie in te stellen.Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesEr zijn geen sequenties actief voor deze container.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.pi_no_seq_actAantal sequentiesLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - SequentiesLabel to describe the amount of sequences in the container.optional_act_btnActiviteitToolbar button for Optional Activity.branch_mapping_dlg_condition_linked_allEr zijn conditiesPhrase used at start of linked conditions alert message when clearing all.optional_seq_btnSequentieToolbar button for Sequences within Optional Activity.al_continueDoorgaanContinue button on Alert dialogcv_invalid_optional_seq_activity_no_branchesVerwijder alle koppelingen alvorens {0} toe te voegen als optionele sequentie.Alert message when user try to drop an activity with connected branches into optional sequences container.activityDrop_optSequence_error_msgLaat de activiteit op één van de sequenties vallen.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.pi_optSequence_remove_msgDe te verwijderen sequentie(s) bevat(ten) mogelijk nog activiteiten; die zullen worden verwijderd. Doorgaan?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_optSequence_remove_msg_titleSequenties verwijderenRemoving sequencesoptional_seq_btn_tooltipEen set optionele sequenties maken.Tooltip for Sequences within Optionaly Activity button.branch_mapping_dlg_condition_col_value_maxGroter dan of gelijk aan {0}Value for Condition field in mapping datagrid when Greater than option is selected.cv_activityProtected_child_activity_link_msgDeze {0} heeft een gekoppeld kind aan een {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.cv_activityProtected_activity_link_msgDeze {0} is gekoppeld aan een {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_activity_remove_msgDe-selecteer de activiteit als de {0} om te verwijderen.Instruction how to delete an Activity linked to a Branching Activity.group_branch_act_lblGroep-gebaseerdBranching type label for Group-based Branching.to_condition_end_valueeind waardeValue representing the max boundary value of the conditions value.to_condition_start_valuestart waardeValue representing the min boundary value of the conditions range.sequence_act_titleSequentieDefault title for Sequence Activity.to_condition_untitled_item_lblOnbenoemde {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.pi_group_naming_btn_lblGroepnamenLabel for button that opens Group Naming dialog.branch_mapping_dlg_condition_col_valueBereik {0} tot {1}Value for Condition field in mapping datagrid.branch_mapping_no_branch_msgGeen tak geselecteerd.Alert message when adding a Mapping without a Branch (Sequence) being selected.groupmatch_dlg_groups_lst_lblGroepenLabel for Groups list box on Group/Branch Matching Dialog.to_conditions_dlg_clear_all_btn_lblAlles wissenLabel for button to clear all conditions.al_doneKlaarLabel for dialog completion button.branch_mapping_dlg_group_col_lblGroepColumn heading for showing group name of the mapping.groupnaming_dlg_title_lblGroepnamenTitle label for Group Naming dialog.branch_mapping_no_groups_msgGeen groepen geselecteerd.Alert message when adding a Mapping without a Group being selected.to_conditions_dlg_add_btn_lbl+ ToevoegenLabel for button to add a condition.branch_mapping_dlg_condition_col_value_exactExtra waarde van {0}Value for Condition field in mapping datagrid when range set is only single value.branch_mapping_dlg_condition_linked_msg{0} is gekoppeld aan een bestaande tak. Willt u doorgaan?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.pi_branch_typeVertakkings-typeProperty Inspector Branching type drop down.branch_mapping_dlg_branches_lst_lblVertakkingenLabel for Branches list box on Branch Matching Dialogs.branch_mapping_no_condition_msgGeen condities geselecteerd.Alert message when adding a Mapping without a Condition being selected.to_conditions_dlg_to_lblAan:Label for end value in condition range for long or numeric output values.act_seq_lock_chkDe optionele sequentie container is nog gesloten: open die voordat u de activiteit toekent.Alert Message if user drags the activity to locked optional sequences container.redundant_branch_mappings_msgHet ontwerp bevat ongebruikte vertakking-mappings die verwijderd zullen worden. Doorgaan?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.branch_mapping_dlg_match_dgd_lblMappingsHeading label for Mapping datagrid.pi_define_monitor_cb_lblIn monitor definierenCheckbox label for option to define group to branch mappings in Monitor.branch_mapping_no_mapping_msgGeen mappings geselecteerd.Alert message when removing a Mapping without a Mapping being selected.to_conditions_dlg_title_lblNieuwe uitvoer-condities makenDialog title for creating new tool output conditions.pi_condmatch_btn_lblConditionele stellingen opstellenLabel for button to open dialog to create output conditions.tool_branch_act_lblGereedschap uitvoerBranching type label for Tool output Branching.pi_mapping_btn_lblMappings opzettenLabel for button to open tool output to branch(s) dialog.branch_mapping_auto_condition_msgAlle overblijvende condities zullen op de standaard vertakking worden gekoppeld.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.chosen_branch_act_lblDocent keuzeBranching type label for Teacher choice Branching.condmatch_dlg_title_lblCondities met vertakkingen koppelenDialog title for matching conditions to branches for Tool based Branching.pi_branch_tool_acts_lblInvoer (gereedschap)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_activity_type_sequenceActiviteit sorteren ({0})Activity type for Sequence (Branch) in Property Inspector.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/no_NO_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3validation_error_activityWithNoTransitionEn aktivitet må ha en inn- eller en utgangs-forbindelse.cv_trans_readOnlyForbindelsen kan ikke være {0}. Forbindelsens mål har kun lese rettighet.pi_tool_output_matching_btn_lblKnytt betingelser til forskjellige grenercv_design_insert_warningNår du har lagt til en ny sekvens så kan du ikke avbryte denne aksjonen - din gamle sekvens blir lagret automatisk med den nye sekvensen. or å gå tilbake til den gamle sekvensen så må du fjerne alle nye sekvenser manuelt og så lagre. For å lagre den aktive sekvensen uendret, klikk på Avbryt. Hvis ikke, klikk på OK for å velge en ny sekvens som skal legges til.act_seq_lock_chkVennligst lås opp beholderen for alternative sekvenser før du tilordner denne aktiviteten til en alternativ sekvensvalidation_error_inputTransitionType2Ingen av aktivitetene mangler inngangs-forbindelser.cv_invalid_trans_target_from_activityEn forbindelse fra {0] eksisterer allerede.cv_eof_changes_appliedEndringene er implementert korrekt.sys_error_msg_finishDu må starte om LAMS Forfatter for å fortsette. Vil du lagre informasjon om denne feilen slik at den kan bli utbedret?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroKan ikke foreta oppdatering fordi det finnes ingen bruker definisjon. Du må definere dette på verktøyets forfatter side(r).al_activity_copy_invalidBeklager ! Du må velge hvilken aktivtet du skal kopiere før du klikker på kopier.al_activity_openContent_invalidBeklager ! Du må velge en aktivitet før du klikker på Åpne/Rediger ikonet.map_comptence_btnKartlegging av kompetansebranch_mapping_dlg_match_dgd_lblBetingelserpi_mapping_btn_lblDefiner betingelserbranch_mapping_no_mapping_msgIngen betingelser er valgtto_conditions_dlg_defin_item_header_lbl[Velg utgangsdata]tool_branch_act_lblStudentenes oppnådde resultatcompetences_lblKompetansesequence_act_titleSekvensto_conditions_dlg_condition_items_update_defaultConditionsDu er i ferd med å oppdatere reglene for oppnådde resultat. Dette vil fjerne alle lenker til de grener som er definert. Vil du fortsette ?pi_branch_tool_acts_lblAktivitet (verktøy)groupnaming_dialog_col_groupName_lblGruppe navnmnu_file_insertdesignSett inn/slå sammen...ws_dlg_insert_btnSett innbranch_mapping_dlg_branch_item_default{0} (standard)pi_group_matching_btn_lblKnytt grupper til forskjellige grenerrefresh_btnFrisk opp skjermbildetto_conditions_dlg_defin_user_defined_typebruker definertgrouping_invalid_with_common_names_msgKan ikke lagre designet fordi gruppe aktiviteteten '{0}' har flere grupper med samme navn. Vennligst kontroller og forsøk igjen.al_activity_paste_invalidBeklager, du kan ikke lime inn denne type aktivitetpreview_btn_tooltip_disabledFor å forhåndsvise din sekvens så må du først lagre den og deretter klikke på Forhåndsvis.condmatch_dlg_message_lblStandard gren blir valgt ved å klikke på standard i området for egenskapercompetences_mapped_to_act_lblKompetansebranch_mapping_dlg_condition_col_valueOmråde {0} til {1}branch_mapping_dlg_condition_col_value_exactEksakt verdi av {0}condmatch_dlg_title_lblKnytt betingelser til grenenepi_define_monitor_cb_lblDefineres i kontrollmodusgroupmatch_dlg_title_lblPlanlegg grupper mot forgreningerbranch_mapping_no_groups_msgIngen gruppe er valgt.group_branch_act_lblGruppebasertbranch_mapping_dlg_branches_lst_lblGrenergroupmatch_dlg_groups_lst_lblGruppergroupnaming_dlg_title_lblNavngiving av grupperpi_activity_type_branchingForgreningsaktivitetpi_branch_typeType forgreningpi_group_naming_btn_lblNavngi grupperchosen_branch_act_lblLærerens valgto_condition_start_valueStart verdito_condition_end_valueSlutt verdito_condition_invalid_value_rangeVerdien {0} kan ikke være innenfor området til et definert områdeto_condition_invalid_value_direction{0} kan ikke være større enn {1}is_remove_warning_msgMERK ! Leksjonen er i ferd med å bli slettet. Ønsker du at å lagre denne som {0}al_continueFortsettbranch_mapping_dlg_condition_linked_msg{0} er knyttet til en gren. Ønsker du å fortsette ?branch_mapping_dlg_condition_linked_allDet er satt betingelserbranch_mapping_dlg_condition_linked_singleDenne betingelsen erto_condition_untitled_item_lblUten tittel {0}redundant_branch_mappings_msgDette designet har grener som ikke er benyttet og denne vil bli fjernet. Ønsker du å fortsette ?cv_activityProtected_activity_remove_msgFor å fjerne denne aktiviteten, vennligst velg ut denne aktiviteten som {0}support_act_btnBrukerstøttesupport_act_titleAktivitet for brukerstøttesupport_msg_no_connectionAktiviteter for brukerstøtte kan ikke knyttes til andre aktivitetersupport_msg_invalid_childAktivitet av typen {0} kan ikke legges til fordi dette er brukerstøtte aktivitetsupport_msg_max_children_reachedKan ikke sette inn aktiviteten: {0} her. Aktiviteten brukerstøtte tillater maksimalt {0} tilliggende aktiviteter.support_msg_cannot_be_childKan ikke sette inn en brukerstøtte aktivitet i en annen aktivitet.support_act_btn_tooltipLage et sett av alternativ brukerstøtte.optional_act_btnAktivitetcv_activityProtected_activity_link_msgDenne {0} er forbundet med en {1}cv_activityProtected_child_activity_link_msgDenne {0} har en "child" forbundet med en {1}branch_mapping_dlg_condition_col_value_maxStørre enn eller lik {0}optional_seq_btnSekvensoptional_seq_btn_tooltipLage et antall alternative sekvenserpi_optSequence_remove_msg_titleFjerner sekvenserpi_optSequence_remove_msgSekvensen(e) som skal fjernes kan inneholde aktiviteter som vil bli slettet. Ønsker du å fjerne disse sekvensene ?pi_no_seq_actAntall sekvenserlbl_num_sequences{0} - sekvenseractivityDrop_optSequence_error_msgVennligst legg inn aktiviteten i en av sekvensenecv_invalid_optional_seq_activity_no_branchesFjern grenforbindelser fra {0} før du forbinder den til en alternativ sekvensopt_activity_seq_titleAlternative sekvenserto_conditions_dlg_lt_lblMindre enn eller likto_conditions_dlg_defin_long_typeområdeta_iconDrop_optseq_error_msgDet er ingen sekvenser i denne beholderencv_invalid_optional_seq_activityFjern til og fra forbindelser {0} før du forbinder den til en alternativ sekvenscv_invalid_optional_activity_no_branchesFjern grenforbindelser fra {0} før du forbinder den til en alternativ aktivitetbranch_mapping_dlg_condition_col_value_minMindre enn eller lik {0}pi_actAktiviteterpi_seqSekvenserto_conditions_dlg_defin_bool_typeriktig/galtto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNavnto_conditions_dlg_condition_items_value_col_lblBetingelseto_conditions_dlg_options_item_header_lbl[Alternativer]sequence_act_title_new{0} {1}close_mc_tooltipMinimerto_conditions_dlg_gte_lblStørre enn eller likto_conditions_dlg_lte_lblMindre enn eller likmnu_help_helpHjelp ccm_open_activitycontentÅpne/rediger aktivitetsinnholdccm_copy_activityKopier aktivitetccm_paste_activityLim inn aktivitetccm_piKontroll av eiendomsrett.....ccm_author_activityhelpHjelp for forfatterws_dlg_descriptionBekrivelsetrans_dlg_nogateIngenpi_daysDagercv_close_return_to_ext_srcLukk og gå til {0}mnu_file_apply_changesBruk endringenevalidation_error_transitionNoActivityBeforeOrAfterEn forbindelse må ha en aktivitet før og etter seg.validation_error_inputTransitionType1Denne aktiviteten har ingen forbindelse til inngangenvalidation_error_outputTransitionType1Denne aktiviteten har ingen forbindelse fra utgangenvalidation_error_outputTransitionType2Ingen aktiviteter mangler utgangs-forbindelser.cv_invalid_design_on_apply_changesKan ikke gjennomføre endringene. Det mangler en eller flere forbindelser.apply_changes_btnBruk endringeneapply_changes_btn_tooltipGjennomfør endringene og gå tilbake til kontroll modus.cancel_btnAvbrytcv_edit_on_fly_lblAktuell endringcv_element_readOnly_action_delfjernetcv_element_readOnly_action_modendretcv_activity_readOnlyAktiviteten kan ikke være {0}. Aktiviteten har kun leserettigheter.cv_eof_finish_invalid_msgDesignet må være gyldig for å kunne gjennomføre endringene.cv_eof_finish_modified_msgMERK ! Designet er endret. Ønsker du å avslutte uten å lagre ?cancel_btn_tooltipGå tilbake til kontroll modus.mnu_file_finishAvsluttabout_popup_title_lblOm - {0}about_popup_version_lblVersjonabout_popup_trademark_lbl{0} er varemerket til {0} stiftelsen ({1})to_conditions_dlg_add_btn_lbl+ legg tilabout_popup_license_lblDenne programvaren er en fri programmvare, du kan distribuere den videre og/eller endre denne så lenge betingelsene i GNU General Public License versjon 2, utgitt av Free Software Foundation, følges.stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_titleForgreningpi_activity_type_sequenceSekvens aktivitet ({0})groupnaming_dialog_instructions_lblKlikk på et navn for å endre dettepi_condmatch_btn_lblDefiner forutsettningeneto_conditions_dlg_title_lblDefiner utgangsparametreal_doneUtførtcondmatch_dlg_cond_lst_lblForutsettningerpi_defaultBranch_cb_lblstandardto_conditions_dlg_clear_all_btn_lblFjern altto_conditions_dlg_remove_item_btn_lblFjernto_conditions_dlg_to_lblTil:to_conditions_dlg_range_lblOmråde:branch_mapping_dlg_branch_col_lblGrenbranch_mapping_dlg_condition_col_lblForutsettningbranch_mapping_dlg_group_col_lblGruppepi_num_groupsAntall grupperbranch_mapping_no_branch_msgDet er ikke valgt en gren.branch_mapping_no_condition_msgIngen forutsettninger er valgt.branch_mapping_auto_condition_msgDe gjenstående utgangsparametre vil bli tillagt standard forgreningencv_autosave_rec_titleAdvarselpi_parallel_titleParallell aktivitetopt_activity_titleAlternativ aktivitetlbl_num_activities{0} - aktiviteteral_sendSendal_cannot_move_activityBeklager du kan ikke flytte denne aktiviteten.cv_gateoptional_hit_chkDu kan ikke legge inn en port som en alternativ aktivitet.prefix_copyof_countKopi {0} avws_save_folder_invalidDu kan ikke lagre en design i denne mappen. Vennligst velg en gyldig undermappe.ws_click_file_openVennligst klikk på et design for å åpne denne.ws_license_lblLisensws_license_comment_lblTilleggsinformasjon for lisenscv_invalid_optional_activityFjerner til og fra forbindelser fra {0} før den defineres som en tilleggs aktivitet.cv_trans_target_act_missingDen andre aktiviteten i forbindelsen mangler.cv_invalid_trans_target_to_activityEn forbindelse til {0} eksisterer allerede.branch_btnGrenflow_btnAktivitets tilgangmnu_file_importImportercv_design_export_unsavedDu kan ikke eksportere en design som ikke er lagret.cv_design_unsavedDesignet i vinduet er endret. Fortsette uten å lagre ?mnu_file_exportEksporterws_chk_overwrite_existingDenne mappen inneholder allerede en fil med navn {0}ws_click_virtual_folderDu kan ikke benytte denne mappen.mnu_file_exitGå utws_no_file_openFilen ikke funnetcv_invalid_trans_circular_sequenceDu har ikke anledning til å lage en sirkulær sekvensbin_tooltipFlytt aktiviteten til papirkurven for å fjerne den fra sekvensen.mnu_file_recoverGjenopprett...new_btn_tooltipFjerner aktiv sekvens og klargjør arbeidsområdet for ny bruk.open_btn_tooltipVis fil dialog for å åpne en aktivitets sekvenscv_untitled_lblUbestemt -1save_btn_tooltipHurtiglagre den aktive sekvensen.copy_btn_tooltipKopier den valgte aktivitetpaste_btn_tooltipLim inn en kopi av den valgte aktivitettrans_btn_tooltipBenytt denne blyanten for å tegne forbindelseslinjer mellom aktiviteter (eller trykk CTRL tast)optional_btn_tooltipLag et sett av alternative aktivitetergate_btn_tooltipLag et stopp punktbranch_btn_tooltipLag en gren flow_btn_tooltipStyre tilgang til aktivitetenegroup_btn_tooltipLag en gruppe aktivitetpreview_btn_tooltipForhåndsvis din sekvens slik studentene vil se den.cv_activity_dbclick_readonlyDu kan ikke endre en design med kun lesetilgang. Lag en kopi av designet og prøv igjen.cv_readonly_lblKun lesetilgangal_empty_designBeklager, du kan ikke lagre en design uten innholdcv_autosave_err_msgDet har oppstått en feil når automatisk lagring av ditt design foretas. Vennlist øk lagringsområdet for Flash spilleren.cv_autosave_rec_msgDu er i ferd med å gjenopprette den siste eller en design som ikke er lagret. Den nåværende design vil bli fjernet. Fortsette ?cv_activity_copy_invalidBeklager ! Du har ikke tillatelse til å kopiere denne tilleggs-aktiviteten.ws_del_confirm_msgVil du virkelig fjerne denne filen/mappen ?cv_activity_cut_invalidBeklager ! Du har ikke tillatelse til å fjerne denne tilleggs-aktiviteten.ws_file_name_emptyBeklager ! Du kan ikke lagre et design uten å ha gitt det et navn.ws_entre_file_nameSkriv design navnet og klikk på Lagre knappen.cv_activity_helpURL_undefinedFinner ikke hjelpesiden for {0}none_act_lblIngen valgtopen_btnÅpnepaste_btnLim innoptional_btnAlternativperm_act_lblTilgangpi_group_typeGrupperingstypepi_activity_type_gatePort til aktivitetpi_activity_type_groupingGrupperingsaktivitetpi_definelaterDefiner i kontrollmoduspi_end_offsetLukk portenpi_hoursTimerpi_lbl_currentgroupAktiv grupperingpi_lbl_descBeskrivelsepi_lbl_groupGrupperingpi_lbl_titleTittelpi_max_actMaks. {0}pi_min_actMin. {0}pi_minsMinutterpi_no_groupingIngenpi_num_learnersAntall studenterpi_optional_titleAlternativ aktivitetpi_runofflineOff-line aktivitetprefs_dlg_lng_lblSpråkprefs_dlg_okOKprefs_dlg_theme_lblTemapi_start_offsetÅpne portenpi_titleEgenskaperprefix_copyofKopi avprefs_dlg_cancelAvbrytprefs_dlg_titleInnstillingerpreview_btnForhåndsvisningproperty_inspector_titleEgenskaperrandom_grp_lblTilfeldigrename_btnNytt navnsave_btnLagresched_act_lblPlanleggesynch_act_lblSynkroniseretk_titleAktivitetsverktøytrans_btnForbindelsetrans_dlg_cancelAvbryttrans_dlg_gateSynkroniseringtrans_dlg_gatetypecmbTypetrans_dlg_okOKto_conditions_dlg_from_lblFra:trans_dlg_titleForbindelsews_RootRotws_chk_overwrite_resourcePass på! Du er i ferd med å overskrive denne sekvensen !ws_click_folder_fileKlikk på en mappe for å lagre i, eller en design for å overskrivews_dlg_cancel_buttonAvbrytws_copy_same_folderKilde- og målmappe er den samme ws_dlg_filenameFilnavnws_dlg_location_buttonPlasseringws_dlg_ok_buttonOKws_dlg_open_btnÅpnews_dlg_properties_buttonEgenskaperws_dlg_save_btnLagrews_dlg_titleArbeidsområdews_newfolder_cancelAvbrytws_newfolder_insVennligst skriv det nye mappe navnetws_newfolder_okOKld_val_issue_columnEmnews_no_permissionBeklager, du har ikke rett til å skrive til denne ressursenws_rename_insSkriv inn nytt navnws_tree_mywspMitt arbeidsområdews_tree_orgsMine grupperws_view_license_buttonVisact_lock_chkLås opp beholderen for alternative aktiviteter før du angir denne aktiviteten som valgfrisys_error_msg_startFølgende system feil har oppstått:sys_errorSystemfeilact_tool_titleAktivitetsverktøyal_alertVarselal_cancelAvbrytal_confirmBekreftal_okOKapp_chk_langloadSpråkdata har ikke blitt lastetapp_chk_themeloadTemadata har ikke blitt lastetapp_fail_continueApplikasjonen må avsluttes. Kontakt støttepersonellchosen_grp_lblValgtcopy_btnKopierld_val_titleGyldighetskontrollcv_invalid_design_savedDin design er ikke gyldig ennå, men den er lagret, klikk 'Resultat' for å se på feilen.cv_invalid_trans_targetDu kan ikke opprette en forbindelse til dette objektetcv_show_validationResultatercv_valid_design_savedGratulerer! - Din sekvens er gyldig og er blitt lagretdb_datasend_confirmTakk for at du sender data til serverdelete_btnSlettgate_btnPortgroup_btnGruppegrouping_act_titleGrupperingld_val_activity_columnAktivitetld_val_doneUtførtlicense_not_selectedDet er ikke valgt lisens type. Vennligst velg.mnu_editRedigermnu_edit_copyKopiermnu_edit_cutKlippmnu_edit_pasteLimmnu_edit_redoGjør ommnu_edit_undoAngremnu_fileFilmnu_file_closeLukkmnu_file_newNymnu_file_openÅpnemnu_file_saveLagremnu_file_saveasLagre som...mnu_helpHjelpmnu_help_abtOmmnu_toolsVerktøymnu_tools_optTegn alternativmnu_tools_prefsForetrukne innstillingermnu_tools_transTegn forbindelsenew_btnNynew_confirm_msgØnsker du virkelig å fjerne designen fra skjemen?pi_branch_tool_acts_default--Valg--cv_invalid_trans_diff_branchesKan ikke lage tilkoblinger mellom aktiviteter i forskjellige grener.cv_invalid_branch_target_to_activityEn gren til {0} eksisterer allerede.cv_invalid_branch_target_from_activityEn gren fra {0} eksisterer allerede.cv_invalid_trans_closed_sequenceKan ikke lage en ny tilkobling til en lukket sekvens.al_cannot_move_to_diff_opt_seqFor å flytte en aktivitet til en annen sekvens med funksjonen Alternativ Sekvens, må du først flytte aktiviteten ut av Alternativ Sekvens og deretter klikke på den og dra den inn til den nye sekvensen.al_group_name_invalid_blankGruppe navn kan ikke være tomme.al_group_name_invalid_existinggruppe navn må være unike.about_popup_copyright_lbl© 2002-2009 {0} Stiftelselearner_choice_grp_lblStudentens valgpi_equal_group_sizesGruppene skal være like storecompetence_editor_dlgKompetanse editorcompetence_editor_warning_title_existsEn kompetanse med denne tittelen {0} finnes alleredecompetence_editor_warning_title_blankTittelen til kompetanse kan ikke være tomcompetence_editor_warning_competence_mappedden kompetansen som du ønsker å fjerne er knyttet til en eller flere aktiviteter. Sletter du denne kompetansen så vil tilknyttningene til aktiviteter bli brudt. Ønsker du å fortsette ?competence_editor_add_competence_btnLegg tilcompetence_def_dlgDefinisjon av kompetansecompetence_mappings_btnKartlegging av kompetansemap_gate_conditions_btnVurder portenes tilstandgate_mapping_auto_condition_msgAlle gjenstående betingelser vil bli vurdert mot de valgte porters status .gate_openåpengate_closedlukketal_activity_view_competence_mappings_invalidVennligst kontroller at du har valgt en aktivitet før du forsøker å se på kompetanse sammenligningene.mnu_file_import_communityImport fra LAMS brukerforening....ws_dlg_date_modified_lblSist modifisert:{0}ws_save_title_reserved_charsTittel kan ikke inneholde spesielle karakterer: {0}gradebook_output_typeUtgangsdata for karakterbokview_students_before_selectionVurdere studenter før utvelgelse ?arrange_act_btnOrganisere aktivitetergrp_chk_clear_branch_mappingsMERK: Dette vil slette alle gruppe til grener forbindelser for denne gruppeaktivitet, vil du fortsette ? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/pl_PL_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3delete_btnUsuńLabel for Delete buttonmnu_filePlikMenu bar Filegate_btnBramaToolbar &gt; Gate Buttongroup_btnGrupujToolbar &gt; Group Buttonld_val_doneZakończThe button label for the dialogld_val_issue_columnProblemThe heading on the issue in the ValidationIssuesDialoggrouping_act_titleGrupowanieDefault title for the grouping activityld_val_activity_columnAktywnośćThe heading on the activity in the ValidationIssuesDialogmnu_editEdycjaMenu bar Editld_val_titleProblemy zgodnościThe title for the dialogmnu_edit_copyKopiujMenu bar Edit &gt; Copymnu_edit_cutWytnijMenu bar Edit &gt; Cutmnu_edit_pasteWklejMenu bar Edit &gt; Pastemnu_edit_redoPonówMenu bar Edit &gt; Redomnu_edit_undoCofnijMenu bar Edit &gt; Undomnu_file_closeZamknijMenu bar Closemnu_file_newNowyMenu bar Newmnu_file_openOtwórzMenu bar Opendb_datasend_confirmDane zostały pomyślnie przesłane na serwerMessage when user sucessfully dumps data to the servermnu_file_saveZapiszMenu bar savelicense_not_selectedWybierz licencję dla tego projektuShown if no license is selected in the drop down in workspacemnu_file_saveasZapisz jako...Menu bar Save asmnu_help_abtO...Menu bar Aboutmnu_helpPomocMenu bar Helpnew_btnNowyToolbar &gt; New Buttonmnu_toolsNarzędziaMenu bar Toolsmnu_tools_optRysuj opcjonalneMenu bar Optionalmnu_tools_prefsPreferencjeMenu bar preferencesmnu_tools_transRysuj przejścieMenu bar draw transitionnone_act_lblBrakNo gate activity selectedopen_btnOtwórzToolbar &gt; Open Buttonpaste_btnWklejToolbar &gt; Paste Buttonnew_confirm_msgCzy na pewno chcesz usunąc wszystko w projekcie ?Msg when user clicks new while working on the existing designpi_lbl_descOpisDescription Label for PIoptional_btnOpcjonalneToolbar &gt; Optional Buttonpi_activity_type_gateBramaActivity type for gate in PIperm_act_lblOtwierana przez nauczycielaLabel for permission gate activitypi_activity_type_groupingRodzaj grupowaniaActivity type for grouping in Property Inspectorpi_definelaterZdefiniuj w MonitorzeLabel for Define later for PIprefs_dlg_okOK5pi_hoursGodzinyHours label in Property Inspectoral_okOKOK on the alert dialogpi_end_offsetZamknij bramęEnd offset labelpi_group_typeRodzaj grupowaniaProperty Inspector Grouping type drop downpi_lbl_currentgroupBieżące grupowanieCurrent grouping label for PIpi_lbl_groupGrupowanieGrouping label for PIpi_lbl_titleTytułTitle label for PIpi_max_actMaksimum AktywnościLabel for maximum Activities or Sequencespi_minsMinutyMins label in teh property inspectorpi_no_groupingŻadenCombo title for no groupingpi_min_actMinimum AktywnościLabel for minimum Activities or Sequencespi_num_learnersIlość studentówPI Num learners labelprefix_copyofKopia...Prefix for copy paste command for canvas activitiesprefs_dlg_cancelAnuluj6pi_optional_titleNarzędzie opcjonalneTitle for oprional activity property inspectorprefs_dlg_lng_lblJęzyk7prefs_dlg_theme_lblTemat8prefs_dlg_titlePreferencje4pi_runofflineUruchom aktywność w trybie off-lineLabel for Run Oflinepi_start_offsetOtwórz bramęStart offset labelpi_titleWłaściwościOn the title bar of the PIpreview_btnPodglądToolbar &gt; Preview Buttonproperty_inspector_titleWłaściwościOn the title bar of the PIrandom_grp_lblLosowyLabel for the grouping drop down in the PropertyInspectorcompetence_editor_warning_title_blankUprawnienie nie może być pusteWarning message when you try to define a competence with a blank competence titlecompetence_editor_warning_competence_mappedUsuwane uprawnienie jest już przypisane do aktywności. Czy kontynuować ?Warning message when you attempt to delete a competence that is mapped to one or more activities.map_comptence_btnMapowanie uprawnieńLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnMapowanie uprawnieńTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblUprawnieniaLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btnMapowanie warunków bramButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgWszystkie pozostałe warunki będą zamapowane do wybranych bramWarning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openOtwarteOpen state for gate activity, allows learners to pass through itgate_closedZamknięteClosed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalidUpewnij się że wybrałeś aktywność przed podglądem mapowania uprawnieńWarning that appears when no activity is selected when the user tries to view competence mappingsoptional_act_btnAktywnośćToolbar button for Optional Activity.optional_seq_btnSekwencjaToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipTworzy sekwencje opcjonalneTooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleUsuwanie sekwencjiRemoving sequencespi_optSequence_remove_msgUsuwana sekwencja może zawierać aktywności, które zostaną usunięte. Czy na pewno chcesz ją usunąc?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actBrak sekwencjiLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - SekwencjiLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgPrzenieś aktywność do właściwej sekwencjiAlert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesUsuń wszystkie połączone rozgałęzienia z {0} zanim wybierzesz aktywność opcjonalnąAlert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msgW tym obiekcie nie ma aktywnych sekwencjiError message when a Template Activity icon is dropped onto a empty Optional Sequences container.act_seq_lock_chkOdblokuj przed przypisaniem aktywności do sekwencjiAlert Message if user drags the activity to locked optional sequences container.cv_invalid_optional_seq_activityUsuń wszystkie połączenia z {0} zanim wybierzesz aktywność opcjonalną. Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesUsuń wszystkie połączone rozgałęzienia z {0} zanim wybierzesz aktywność opcjonalnąAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleSekwencja opcjonalnaTitle for Optional Sequences Container.to_conditions_dlg_lt_lblMniej lub równeLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minMniej lub równe {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actAktywnościMin and max label postfix when an Optional Activity is selected.pi_seqSekwencjeMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typezakresType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typeprawda/fałszType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ Definicje ]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNazwaColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblWarunekColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Opcje ]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipMinimalizujTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblWiększy niż lub równyGreater than or equal toto_conditions_dlg_lte_lblMniejszy niż lub równyLess than or equal togroupnaming_dialog_col_groupName_lblNazwa grupyColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignWstaw...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnWstawButton label on Workspace in INSERT mode.branch_mapping_dlg_branch_item_default{0} (default)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.pi_group_matching_btn_lblPrzypisz grupy do gałęziButton in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lblPrzypisz warunki do gałęziButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnOdświeżButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditionsZa chwilę ualtualnisz warunki, co wykasuje połączenia z istniejącymi gałęziami. Czy chcesz kontynuować ?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNie można uaktualnić. Brak zdefiniowanych warunków.Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_typeużytkownik zdefiniowanyType description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msgNie można zapisać projektu. Aktywność grupowa {0} ma dwie grupy o takiej samej nazwieAlert message displayed when the Grouping validation fails during saving a design.al_activity_paste_invalidNie można wkleić tej aktywnościAlert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledAby podglądnać sekwencję, musisz ją naipierw zapisaćTool tip message for preview button in toolbar when button is disabled.condmatch_dlg_message_lblDomyslna gałąź może być wybrana poprze zaznaczenie odpowiedniej opcji we właściwościachLabel for a message in the Condition to Branch matching dialog.cv_design_insert_warningNie można cofnąć akcji po dodaniu nowej sekwencji. Stara sekwencja jest automatycznie zapisaną z nowododaną aktywnością.Warning message when merge/insertpi_branch_tool_acts_default--wybór--Default item label for Input Tool dropdown list.cv_invalid_trans_diff_branchesNie można utworzyć połączenia między aktywnościami w różnych gałęziachError message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activityGałąź od {0} juz istniejeError message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityGałąź z {0} juz istniejeError message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceNie można ustanowić nowego połączenia do zamknietej sekwencjiError message displayed after drawing a transition from an activity in a closed sequence.al_cannot_move_to_diff_opt_seqAby przesunać aktywność w Sekwencji Opcjonalnej, najpierw wyjmij aktywność na zewnątrz a nastepnie przeciągnij ją do nowej lokalizacji w Sekwencji OpcjonalnejWarning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activityal_group_name_invalid_blankNazwy grup nie mogą być pusteWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingNazwy grup muszą być unikatoweWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different grouplearner_choice_grp_lblWybór studentaA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesTaki sam rozmiar grupCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgEdytor uprawnieńDialog for adding/editing/removing competencescompetences_lblUprawnieniaLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnDodajAdd competence buttoncompetence_def_dlgDefinicja uprawnieńTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsUprawnienie o nazwie {0} już istniejeWarning message when you try to add a competence with a competence title that already existsmnu_file_finishZakończMenu bar File - Finish (Edit Mode)about_popup_title_lblO - {0}Title for the About Pop-up window.about_popup_version_lblWersjaLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0) jest znakiem firmowym {0} Fundacji ( {1} )Label displaying the trademark statement in the About dialog.about_popup_license_lblTen program jest darmowy, może być dystrybuowany i/lub modyfikowany na zasadach licencji GNU General Public License wersja 2 - Free Software FoundationLabel displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.org URL address for the application stream.branching_act_titleRozgałęzianieLabel for Branching Activitypi_activity_type_sequenceSekwencja aktywności ({0})Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblAby zmienić kliknij na nazwieInstructions for Group Naming dialog.pi_branch_tool_acts_lblNarzędzioweLabel for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_condmatch_btn_lblWarunekLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblUtwórz WarunekDialog title for creating new tool output conditions.al_doneZakończLabel for dialog completion button.condmatch_dlg_cond_lst_lblWarunkiLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblUstaw warunki dla rozgałęzieńDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblDomyślnyCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lblDodajLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblWyczyść wszystkieLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblUsuńLabel for button to remove condition.to_conditions_dlg_from_lblOd:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblDo:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblZakresHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblRozgałęzienieColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblWarunekColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGrupaColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNie wybrano rozgałęzieniaAlert message when adding a Mapping without a Branch (Sequence) being selected.branch_mapping_no_mapping_msgNie wybrano żadnego mapowaniaAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNie wybrano żadnego warunkuAlert message when adding a Mapping without a Condition being selected.about_popup_copyright_lbl@ 2002-2009 {0} FundacjaLabel displaying copyright statement in About dialog.branch_mapping_auto_condition_msgWszystkie pozostałe warunki zostaną dodane do rozgałęzieniaAlert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMapowanieHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueZakres od {0} do {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactWartość {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblMapowanieLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblZdefiniuj w MoniotrzeCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblPrzypisz grupy do rozgałęzieńMap Groups to Branchesbranch_mapping_no_groups_msgNie wybrano żadnej grupyAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGrupoweBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblRozgałęzieniaLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGrupyLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblNazwa grupyTitle label for Group Naming dialog.pi_activity_type_branchingRozgałęzienieActivity type for Branching in Property Inspector.pi_branch_typeTyp rozgałęzieniaProperty Inspector Branching type drop down.pi_group_naming_btn_lblNazwa grupyLabel for button that opens Group Naming dialog.sequence_act_titleSekwencjaDefault title for Sequence Activity.tool_branch_act_lblNarzędzioweBranching type label for Tool output Branching.chosen_branch_act_lblWybór nauczycielaBranching type label for Teacher choice Branching.to_condition_start_valueWartość minValue representing the min boundary value of the conditions range.to_condition_end_valueWartość maxValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeWarunek {0} pozostaje w konflikcie z innym warunkiemAlert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_directionWartość min {0} nie może być większa niż wartość max {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgUwaga! Lekcja zostanie usunięta. Czy chcesz zachować lekcję jako {0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueDalejContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} połączono z gałęzią. Czy chcesz kontynuować ?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allWystępujące warunkiPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleWarunekPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblBez nazwy {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgProjekt zawiera nieużywane gałęzie, które zostaną usunięte. Czy chcesz kontynuować ?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgAby usunąć ustaw aktywność na {0}Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg{0} jest połączone z {1}Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg{0} posiada podrzędny element połączony z {1}Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxWiększe niż lub równe {0}Value for Condition field in mapping datagrid when Greater than option is selected.new_btn_tooltipTworzy nowy projekt. Uwaga! Bieżący projekt zostanie usunięty!Tool tip message for new button in toolbartrans_dlg_gatetypecmbTypGate type combo labelopen_btn_tooltipOtwiera nowy projektTool tip message for open button in toolbarsave_btn_tooltipZapisuje bieżący projekttool tip message for save button in toolbarcopy_btn_tooltipKopiuje zaznaczoną aktywnośćtool tip message for copy button in toolbarpaste_btn_tooltipWkleja kopię zaznaczonej aktywnościtool tip message for paste button in toolbartrans_btn_tooltipTworzy przejście pomiędzy aktywnościamitool tip message for transition button in toolbaroptional_btn_tooltipTworzy zestaw opcjonalnych aktywności.tool tip message for optional button in toolbargate_btn_tooltipTworzy punkt zatrzymaniatool tip message for gate button in toolbarbranch_btn_tooltipTworzy branch (dostępne w wersji 2.1)tool tip message for branch button in toolbarflow_btn_tooltipTworzy bramę, czyli kontrolę przejścia między aktywnościamitool tip message for flow button in toolbargroup_btn_tooltipUmożliwia Tworzenie grup i przypisanie do nich studentówtool tip message for group button in toolbarpreview_btn_tooltipPodgląd lekcjiTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNie można edytować projektu tylko-do-odczytu. Zapisz kopię projektu i spróbuj ponownieAlert message when double-clicking an Activity in an open read-only designcv_readonly_lbltylko-do-odczytuLabel for top left of canvas shown when a read-only design is open.al_empty_designNie można zapisać pustego projektualert message when user want to save an empty designcv_autosave_err_msgPodczas autozapisywania projektu wystąpił błąd. W przypadku powtórzenia błędu skontaktuj się z AdministratoremAlert error message when auto-save fails.cv_autosave_rec_msgZa chwilę odzyskasz utracony i niezapisany projekt. Twój obecny projekt zostanie wyczyszczony. Kontynuować ?Message informing users that they have recovered data for a design.cv_autosave_rec_titleOstrzeżenieAlert title for auto save recovery message.mnu_file_recoverOdzyskiwanie...Menu bar Recovercv_activity_copy_invalidNie można skopiować tej aktywnościError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidNie można wyciąć tej aktywnościError message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidZaznacz aktywnośćAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidZaznacz aktywność zanim wybierzesz Otwórz/Edytuj Zawartośc Aktywności po kliknięciu prawym przyciskiem myszyalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgCzy na pewno chcesz usunąć ten plik/folderConfirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyBrak nazwy projektu. Zapis nieudanyError message when user try to save a design with no file namews_entre_file_nameWpisz nazwę projektu i wciśnij ZapiszError message when user try to save a design with no file namecv_activity_helpURL_undefinedNie można odnależć strony pomocyAlert message when a tool activity has no help url defined.cv_untitled_lblBez nazwy - 1Label for Design Title bar on canvasmnu_help_helpPomoclabel for menu bar Help - Authoring Help optionccm_open_activitycontentOtwórz/Edytuj AktywnośćLabel for Custom Context Menuccm_copy_activityKopiuj aktywnośćLabel for Custom Context Menuccm_paste_activityWklej aktywnośćLabel for Custom Context Menuccm_piWłaściwości...Label for Custom Context Menuccm_author_activityhelpPomoc dla autorówLabel for Custom Context Menuws_dlg_descriptionOpisLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateBrakDrop down default for gate typepi_daysDniDays label in property inspector for gate toolcv_close_return_to_ext_srcZamknij i powróć do {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedZmiany zostały zapisaneChanges have been successful applied.mnu_file_apply_changesZastosuj zmianyApply Changesvalidation_error_transitionNoActivityBeforeOrAfterPrzed lub po przejściu musi wystąpić aktywnośćA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAktywność musi posiadać odpowiednie przejście (wejścia lub wyjścia)An activity must have an input or output transitionvalidation_error_inputTransitionType1Ta aktywność nie posiada wejściaThis activity has no input transitionvalidation_error_inputTransitionType2Wszystkie aktywności posiadają wejściaNo activities are missing their input transition.validation_error_outputTransitionType1Ta aktywność nie posiada wyjściaThis activity has no output transitionvalidation_error_outputTransitionType2Wszystkie aktywności posiadają wyjściaNo activities are missing their output transition.cv_invalid_design_on_apply_changesBrak jednego lub więcej przejścia. Zmiany nie mogą zostać zapisaneCannot apply changes. There are one or more transitions missing.apply_changes_btnZastosuj zmianyApply Changesapply_changes_btn_tooltipZastosuj zmiany i wróć do Monitoratool tip message for save button in toolbarcancel_btnAnulujToolbar - Cancel Buttoncv_activity_readOnlyAktywność nie może {0}. Aktywność jest tylko do odczytuAlert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblEdycja na żywoLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delUsuniętoAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modZmodyfikowanoAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgAby zakończyć edycję projekt musi być poprawnyAlert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgProjekt został zmieniony. Czy chcesz zamknąć bez zapisywania zmian ?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyPrzejście nie może być {0}. Przejście jest tylko do odczytuAlert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipPowrót do Monitoratool tip message for cancel button in toolbar (edit mode)rename_btnZmień nazwęLabel for Rename Buttonsave_btnZapiszToolbar &gt; Save buttonsched_act_lblOtwierana czasowoLabel for schedule gate activitytrans_dlg_okOKOK Button on transition dialogsynch_act_lblOtwierana synchronicznieUsed as a label for the Synch Gate Activity Typeapp_chk_langloadJęzyk nie został załadowanymessage for unsuccessful language loadingapp_chk_themeloadTemat nie został załadowanymessage for unsuccessful theme loadingtk_titlePanel narzędziLabel for Activities Toolkit Paneltrans_btnPrzejścieToolbar &gt; Transition Buttontrans_dlg_cancelAnulujCancel button on transition dialogtrans_dlg_gateWybierz typ synchronizacjiHeader for the transition props dialogtrans_dlg_titlePrzejścieTitle for the transition properties dialogws_RootRootRoot folder title for workspacews_chk_overwrite_resourceUwaga! Za chwilę zastąpisz istniejący zasób!ws_click_folder_fileWybierz folder aby zapisać lub aby zastąpić projektError msg if no folder or file is selectedws_copy_same_folderŹródło i folder przeznaczenia są takie sameThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAnuluj2ws_dlg_filenameNazwa pilkuLabel for File name in workspace windowws_dlg_location_buttonŚcieżkaWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnOtwórzWsp Dia Open Button labelws_dlg_properties_buttonWłaściwościWorkspace dialogue Properties btn labelws_dlg_save_btnZapiszWsp Dia Save Button labelws_dlg_titleProjekty0ws_newfolder_cancelAnulujCancel on the new folder name diaws_newfolder_okOKOK on the new folder name diaws_newfolder_insPodaj nazwę folderaInstructions on the new name pop upws_no_permissionNie masz uprawnień do zapisu tego źródłaMessage when user does not have write permission to complete actional_alertUwagaGeneric title for Alert windowal_cancelAnulujTo Confirm title for LFErroral_confirmPokażTo Confirm title for LFErrorws_rename_insPodaj nową nazwęMessage of the new name for the userws_tree_mywspMoje projektyThe root level of the treews_tree_orgsOrganizacjeShown in the top level of the tree in the workspacews_view_license_buttonWidokTo show the license to the useract_lock_chkOdblokuj przed przypisaniem aktywności (kłódka)Alert Message if user drags the activity to locked optional activity container sys_error_msg_startWystąpił następujący błąd systemuCommon System error message starting linesys_error_msg_finishAby kontynuować uruchom ponownie moduł autora. Czy chcesz zapisać informacje o błędzie aby naprawić problem ?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titlepi_num_groupsLiczba grupNumber of groups in Property inspectorpi_parallel_titleRównoległa AktywnośćTitle for parallel activity property inspectoropt_activity_titleOpcjonalne AktywnościTitle for Optional Activity Containerlbl_num_activitiesAktywnościreplacement for word activitiesal_sendWyślijSend button label on the system error dialogal_cannot_move_activityPrzykro mi, nie możesz przenieść tej aktywności.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNie możesz dodać bramy jako aktywności opcjonalnej.Error message when user drags gate activity over to optional containerprefix_copyof_countKopia ({0}) Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNie możesz zapisać projektu w tym folderze. Prosze wybierz prawidłowy folder.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openProszę kliknąć na Projekt aby go otworzyćAlert message if folder tried to be opened.ws_license_lblLicencjaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblDodatkowe informacje o licencjiLabel for Licence Comment description below license drop downcv_invalid_optional_activityUsuń wszystkie przejścia {0} zanim wybierzesz aktywność opcjonalnąAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingBrak drugiej aktywności przejścia Error message when target activity for transition is missingcv_invalid_trans_target_from_activityPrzejście z {0} już istniejeError message when a transition from the activity already existcv_invalid_trans_target_to_activityPrzesunięcie do {0} już istniejeError message when a transition to the activity already existbranch_btnBranchLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnBramaLabel for Flow button in Toolbarmnu_file_importImportMenu bar Importmnu_file_exportEksportMenu bar Exportcv_design_export_unsavedNie możesz eksportować nie zapisanego projektu.Alert message when trying to export can unsaved design.cv_design_unsavedProjekt został zmieniony. Kontynuować bez zapisywania ?Alert message when opening/importing when current design on canvas is unsaved or modified.ws_chk_overwrite_existingTen folder już posiada plik o nazwie {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNie możesz użyć tego folderuAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitWyjdźFile Menu Exitcopy_btnKopiujToolbar &gt; Copy Buttonws_no_file_openNie znaleziono plikuAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNie posiadasz praw do kołowej sekwencjiError message when a transition from one activity to another is creating a circular loopbin_tooltipPrzesuń aktywność na kosz aby usunąć ją z projektuTool tip message for canvas binapp_fail_continueProgram nie może kontynuować pracy. Proszę skontaktować się z pomocą technicznąmessage if application cannot continue due to any errorchosen_grp_lblWybranyLabel for the grouping drop down in the PropertyInspectorcv_show_validationProblemyThe button on the confirm dialogcv_invalid_design_savedProjekt nie jest poprawny, ale został zapisany, wciśnij 'Pokaż' aby dowiedzieć się więcejMessage when an invalid design has been savedcv_invalid_trans_targetNie można utworzyć przejścia do tego obiektuError message for when transition tool is dropped outside of valid target activitycv_valid_design_savedGratulacje! - Twój projekt został pomyślnie zapisanyMessage when a valid design has been savedact_tool_titlePanel narzędziTitle for Activity Toolkit Panel \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/pt_BR_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleCaixa de ferramentas para atividadesTitle for Activity Toolkit Panelal_alertAlertaGeneric title for Alert windowal_cancelCancelarTo Confirm title for LFErroral_confirmConfirmarTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadO idioma não pôde ser carregadomessage for unsuccessful language loadingapp_chk_themeloadO tema não pôde ser carregadomessage for unsuccessful theme loadingapp_fail_continueA aplicação não pode continuar. Por favor, entre em contato com o suportemessage if application cannot continue due to any errorchosen_grp_lblEscolhidoLabel for the grouping drop down in the PropertyInspectorcopy_btnCopiarToolbar &gt; Copy Buttoncv_invalid_design_savedo Seu design não é valido, mas ele foi salvo, clique em 'edição' para ver o que está errado.Message when an invalid design has been savedcv_invalid_trans_targetVocê não pode criar uma transição para este objetoError message for when transition tool is dropped outside of valid target activitycv_show_validationEdiçõesThe button on the confirm dialogcv_valid_design_savedParabéns! - Seu design foi salvoMessage when a valid design has been saveddb_datasend_confirmObrigado por enviar dados para o servidorMessage when user sucessfully dumps data to the serverdelete_btnApagarLabel for Delete buttongate_btnAberturaToolbar &gt; Gate Buttongroup_btnGrupoToolbar &gt; Group Buttongrouping_act_titleAtividade em grupoDefault title for the grouping activityld_val_activity_columnAtividadeThe heading on the activity in the ValidationIssuesDialogld_val_doneConcluídoThe button label for the dialogld_val_issue_columnEdiçãoThe heading on the issue in the ValidationIssuesDialogld_val_titleValidação de ediçõesThe title for the dialoglicense_not_selectedPor favor, selecione uma licença para esse designShown if no license is selected in the drop down in workspacemnu_editEditarMenu bar Editmnu_edit_copyCopiarMenu bar Edit &gt; Copymnu_edit_cutCortarMenu bar Edit &gt; Cutmnu_edit_pasteColarMenu bar Edit &gt; Pastemnu_edit_redoRefazerMenu bar Edit &gt; Redomnu_edit_undoDesfazerMenu bar Edit &gt; Undomnu_fileArquivoMenu bar Filemnu_file_closeFecharMenu bar Closemnu_file_newNovoMenu bar Newmnu_file_openAbrirMenu bar Openmnu_file_saveSalvarMenu bar savemnu_file_saveasSalvar comoMenu bar Save asmnu_helpAjudaMenu bar Helpmnu_help_abtSobreMenu bar Aboutmnu_toolsFerramentasMenu bar Toolsmnu_tools_optDesenhar caminho opcionalMenu bar Optionalmnu_tools_prefsPreferênciasMenu bar preferencesmnu_tools_transDesenhar a transiçãoMenu bar draw transitionnew_btnNovoToolbar &gt; New Buttonnew_confirm_msgVocê tem certeza que deseja apagar o design atual?Msg when user clicks new while working on the existing designnone_act_lblNenhumaNo gate activity selectedopen_btnAbrirToolbar &gt; Open Buttonoptional_btnOpcionalToolbar &gt; Optional Buttonpaste_btnColarToolbar &gt; Paste Buttonperm_act_lblPermissãoLabel for permission gate activitypi_activity_type_gateAtividade de aberturaActivity type for gate in PIpi_activity_type_groupingAtividade em grupoActivity type for grouping in Property Inspectorpi_definelaterDefinir depoisLabel for Define later for PIpi_end_offsetFinalizar aberturaEnd offset labelpi_group_typeTipe de grupoProperty Inspector Grouping type drop downpi_hoursHorasHours label in Property Inspectorpi_lbl_currentgroupGrupo atualCurrent grouping label for PIpi_lbl_descDescriçãoDescription Label for PIpi_lbl_groupAtividade em grupoGrouping label for PIpi_lbl_titleTítuloTitle label for PIpi_max_actAtividades máximaslabel for maximum Activitiespi_min_actAtividades mínimaslabel for Minimum activitiespi_minsMinutosMins label in teh property inspectorpi_no_groupingNenhumCombo title for no groupingpi_num_learnersNúmero de alunosPI Num learners labelpi_optional_titleAtividade opcionalTitle for oprional activity property inspectorpi_runofflineExecutar offlineLabel for Run Oflinepi_start_offsetIniciar aberturaStart offset labelpi_titlePropriedadesOn the title bar of the PIprefix_copyofCopiar dePrefix for copy paste command for canvas activitiesprefs_dlg_cancelCancelar6prefs_dlg_lng_lblIdioma7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titlePreferências4preview_btnVisualizarToolbar &gt; Preview Buttonproperty_inspector_titlePropriedadesOn the title bar of the PIrandom_grp_lblAleatórioLabel for the grouping drop down in the PropertyInspectorrename_btnRenomearLabel for Rename Buttonsave_btnSalvarToolbar &gt; Save buttonsched_act_lblRelaçãoLabel for schedule gate activitysynch_act_lblSincronizarUsed as a label for the Synch Gate Activity Typetk_titleCaixa de ferramentas de atividadesLabel for Activities Toolkit Paneltrans_btnTransiçãoToolbar &gt; Transition Buttontrans_dlg_cancelCancelarCancel button on transition dialogtrans_dlg_gateSincronizaçãoHeader for the transition props dialogtrans_dlg_gatetypecmbTipoGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleTransiçãoTitle for the transition properties dialogws_RootRaizRoot folder title for workspacews_chk_overwrite_resourceAtenção, você está para sobrescrever um recurso!ws_click_folder_filePor favor, selecione uma pasta para salvá-lo dentro, ou um design para sobrescrevê-loError msg if no folder or file is selectedws_copy_same_folderAs pastas de origem e destino são as mesmasThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCancelar2ws_dlg_filenameNome do arquivoLabel for File name in workspace windowws_dlg_location_buttonLocalWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnAbrirWsp Dia Open Button labelws_dlg_properties_buttonPropriedadesWorkspace dialogue Properties btn labelws_dlg_save_btnSalvarWsp Dia Save Button labelws_dlg_titleÁrea de trabalho0ws_newfolder_cancelCancelarCancel on the new folder name diaws_newfolder_insPor favor, digite um nome para a nova pastaInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionDesculpe, você não tem permissão para atualizar esse arquivoMessage when user does not have write permission to complete actionws_rename_insPor favor, digite um novo nomeMessage of the new name for the userws_tree_mywspMinha área de trabalhoThe root level of the treews_tree_orgsOrganizaçõesShown in the top level of the tree in the workspacews_view_license_buttonVisualizarTo show the license to the useract_lock_chkPor favor, destrave a caixa atividade opcional antes de propor essa atividade como opcionalAlert Message if user drags the activity to locked optional activity container sys_error_msg_startOcorreu o seguinte erro de sistema:Common System error message starting linesys_error_msg_finishVocê precisa reiniciar o LAMS Author para coninuar. Você gostaria de salvar as informações sobre esse erro para ajudar a corrigí-lo?Common System error message finish paragraphsys_errorErro de sistemaSystem Error elert window titlepi_num_groupsNúmero de gruposNumber of groups in Property inspectorpi_parallel_titleAtividade ParalelaTitle for parallel activity property inspectoropt_activity_titleAtividade OpcionalTitle for Optional Activity Containerlbl_num_activitiesAtividadesreplacement for word activitiesal_sendEnviarSend button label on the system error dialogal_cannot_move_activityDesculpe, você não pode mover essa atividade.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkVocê não pode adicionar uma atividade ponte como uma atividade opcional.Error message when user drags gate activity over to optional containerprefix_copyof_countCópia ({0}) dePrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidVocê não pode salvar um design nesta pasta. Favor selecionar uma sub-pasta válida.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openPor favor, clique sobre um Design para abrir.Alert message if folder tried to be opened.ws_license_lblLicençaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformação Adicional sobre a LicençaLabel for Licence Comment description below license drop downcv_invalid_optional_activityRemover para/de transições de {0}, antes de registrá-la como uma atividade opcional.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingA segunda atividade da Transição está faltando.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityUma Transição de {0} já existeError message when a transition from the activity already existcv_invalid_trans_target_to_activityUma Transição para {0} já existeError message when a transition to the activity already existbranch_btnSeçãoLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFluxoLabel for Flow button in Toolbarmnu_file_importImportarMenu bar Importcv_design_export_unsavedVocê não pode exportar um desing antes de salvá-lo.Alert message when trying to export can unsaved design.cv_design_unsavedO design na tela mudou. Continuar sem salvar?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExportarMenu bar Exportws_chk_overwrite_existingEsta pasta já contém um arquivo chamado {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderEsta pasta não pode ser usada.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitSairFile Menu Exitws_no_file_openArquivo não encontrado.Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceVocê não está autorizado a ter uma sequência circularError message when a transition from one activity to another is creating a circular loopbin_tooltipArraste uma atividade sobre este compartimento para removê-la da seqüência da atividade.Tool tip message for canvas binnew_btn_tooltipLimpar a seqüência atual e deixar o espaço de trabalho pronto para o usoTool tip message for new button in toolbaropen_btn_tooltipMostra a caixa de diálogo de arquivo para abrir uma Seqüência de AtividadeTool tip message for open button in toolbarsave_btn_tooltipSalvar rapidamente a Seqüência da Atividade atualtool tip message for save button in toolbarcopy_btn_tooltipCopiar a atividade selecionadatool tip message for copy button in toolbarpaste_btn_tooltipColar uma cópia da atividade selecionadatool tip message for paste button in toolbartrans_btn_tooltipUse a caneta para desenhar transições entre atividades (ou pressione a tecla CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCriar um conjunto de atividades opcionais.tool tip message for optional button in toolbargate_btn_tooltipCriar um ponto de paradatool tip message for gate button in toolbarbranch_btn_tooltipCriar uma seção (disponível no LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltipCriar um fluxo de controle de atividadestool tip message for flow button in toolbargroup_btn_tooltipCriar um Agrupamento de atividadetool tip message for group button in toolbarpreview_btn_tooltipPré-visualizar sua seqüência como aluno.Tool tip message for preview button in toolbarcv_activity_dbclick_readonlyVocê não está habilitado a editar ferramentas de um design somente leitura. Favor salvar uma cópia do design e tentar novamente.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSomente LeituraLabel for top left of canvas shown when a read-only design is open.al_empty_designDesculpe, você não pode salvar um design vazioalert message when user want to save an empty designcv_autosave_err_msgUm erro ocorreu durante o salvamento automático do seu design. Se o erro persistir, favor contactar o Administrador do Sistema.Alert error message when auto-save fails.cv_autosave_rec_msgVocê está para recuperar um design perdido ou não salvo. Seu design atual será limpo. Continuar?Message informing users that they have recovered data for a design.cv_autosave_rec_titleAlertaAlert title for auto save recovery message.mnu_file_recoverRecuperar...Menu bar Recovercv_activity_copy_invalidDesculpe! Você não está autorizado a copiar esta atividade.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidDesculpe! Você não está autorizado a recortar esta atividade.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidDesculpe! Você deve selecionar a atividade antes de clicar em copiarAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidDesculpe! Você deve selecionar a atividade antes de clicar no item do menu Abrir/Editar Conteúdo de Atividade.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgVocê tem certeza que deseja deletar este arquivo / pasta?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyDesculpe! Não é permitido salvar um design em atribuir um nome ao arquivo.Error message when user try to save a design with no file namews_entre_file_namePor favor, entre com o nome do design, e depois clique no botão salvar.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedNão é possível encontrar a página de ajuda para {0}Alert message when a tool activity has no help url defined.cv_untitled_lblSem título - 1Label for Design Title bar on canvasmnu_help_helpAjuda Autoraçãolabel for menu bar Help - Authoring Help optionccm_open_activitycontentAbrir/Editar conteúdo de atividadeLabel for Custom Context Menuccm_copy_activityCopiar atividadeLabel for Custom Context Menuccm_paste_activityColar atividadeLabel for Custom Context Menuccm_piInspetor de propriedade...Label for Custom Context Menuccm_author_activityhelpAjuda em Autorar AtividadeLabel for Custom Context Menuws_dlg_descriptionDescriçãoLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateNenhumDrop down default for gate typepi_daysDiasDays label in property inspector for gate toolcv_close_return_to_ext_srcFeche e retorne para {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/ru_RU_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_optional_titleОпциональное заданиеopt_activity_titleОпциональное заданиеtk_titleИнструментарий для заданийccm_open_activitycontentОткрыть/Редактировать содержание заданияpi_num_learnersКоличество учениковws_click_virtual_folderНевозможно использовать эту директорию.group_btn_tooltipСоздать групповое заданиеpi_daysДнейcv_invalid_optional_activityПеред тем как делать это задание опциональным, удалите все переходы на него и с него.trans_btn_tooltipИспользуйте эту ручку для создания перехода между заданиями (или удерживайте клавишу CTRL)ccm_copy_activityКопировать заданиеccm_paste_activityВставить заданиеccm_piИнспектор свойств...pi_parallel_titleПараллельное заданиеws_dlg_descriptionОписаниеcv_untitled_lblБез названия - 1mnu_file_recoverВосстановление...cv_invalid_trans_target_from_activityПереход от {0} уже существуетcv_activity_helpURL_undefinedСтраница помощи для {0} не найдена ws_chk_overwrite_existingЭтот каталог уже содержит файл с именем {0}optional_btn_tooltipСоздать ряд опциональных заданий.mnu_file_apply_changesПрименить измененияapply_changes_btnПрименить измененияcancel_btnОтменитьcv_element_readOnly_action_delудаленоcv_element_readOnly_action_modизмененоmnu_file_finishЗавершитьabout_popup_title_lblО - {0}pi_start_offsetОткрыть затворpi_lbl_groupГруппировкаws_tree_orgsМои группыabout_popup_version_lblВерсияnone_act_lblНи одногоgate_btnЗатворpi_end_offsetЗакрыть затворsave_btn_tooltipБыстрое сохранение текущей последовательности заданийcopy_btn_tooltipКопировать выделенное заданиеnew_btn_tooltipОчистить текущую последовательность и восстановить рабочее пространство для дальнейшего использованияcv_trans_target_act_missingОтсутствует второе задание для перехода.ccm_author_activityhelpПомощь по Редактору заданийpaste_btn_tooltipВставить копию выделенного заданияact_tool_titleИнструментарий Заданийld_val_activity_columnЗаданиеpi_activity_type_gateЗадание затвораpi_activity_type_groupingГрупповое заданиеcv_design_export_unsavedВы не можете экспортировать не сохраненный проект.cv_activity_copy_invalidИзвините! У Вас нет прав скопировать это дочернее задание.pi_lbl_currentgroupТекущая группировкаws_chk_overwrite_resourceВнимание, Вы собираетесь перезаписать ресурс!open_btn_tooltipПоказать диалог выбора файлов для открытия последовательности заданийcv_activity_cut_invalidИзвините! У Вас нет прав вырезать это дочернее задание.al_cannot_move_activityИзвините, Вы не можете переместить это задание.pi_group_typeГруппировка типаws_click_folder_fileПожалуйста, выберите Каталог для сохранения или Проект для его перезаписиws_no_permissionЖаль, Вы не имеете прав на запись в этот ресурсtrans_dlg_titleПереходsys_error_msg_finishВы, возможно, должны перезапустить LAMS Author , чтобы продолжить. Вы хотите сохранить следующую информацию об этой ошибке, чтобы помочь установить причину этой проблемы?ws_del_confirm_msgВы уверены, что хотите удалить этот файл/папку?mnu_file_exitВыходapp_chk_langloadЯзыковые данные не были загруженыapp_fail_continueВыполнение программы не может быть продолжено. Пожалуйста свяжитесь с группой поддержкиchosen_grp_lblВыбратьcv_invalid_trans_targetВы не можете создать переход к этому объектуmnu_edit_cutВырезатьmnu_file_newНовыйnew_btnНовыйnew_confirm_msgВы уверены, что хотите заменить текущий проект пустым новым?pi_runofflineВыполнить автономноal_activity_copy_invalidИзвините! Вы должны выбрать задание, перед тем как его копироватьmnu_tools_transДобавить переходprefix_copyofКопироватьlicense_not_selectedВы не выбрали лицензии. Сделайте это, пожалуйста.mnu_tools_optСоздать контейнер опциональных заданийprefs_dlg_cancelОтменитьprefs_dlg_lng_lblЯзыкprefs_dlg_theme_lblТемаpreview_btnПредварительный просмотрproperty_inspector_titleСвойстваrandom_grp_lblСлучайноrename_btnПереименоватьsave_btnСохранитьsched_act_lblРасписаниеsynch_act_lblСинхронизироватьtrans_dlg_cancelОтменитьtrans_dlg_gateСинхронизацияtrans_dlg_gatetypecmbТипws_RootКорневой каталогact_lock_chkПеред тем как делать это задание опциональным, разблокируйте, пожалуйста, контейнер опциональных заданий.ws_copy_same_folderКаталоги Источника и Получателя совпадаютws_dlg_cancel_buttonОтменитьws_dlg_filenameИмя файлаws_dlg_location_buttonРасположениеws_dlg_open_btnОткрытьws_dlg_properties_buttonСвойстваws_dlg_save_btnСохранитьws_dlg_titleРабочая средаws_newfolder_cancelОтменитьws_newfolder_insПожалуйста введите новое имя папкиws_rename_insПожалуйста введите новое имяws_tree_mywspМоя рабочая средаws_view_license_buttonПосмотретьsys_error_msg_startПроизошла следующая ошибка системы:sys_errorСистемная ошибкаal_sendОтправитьws_license_comment_lblДополнительные сведения о лицензииmnu_help_helpСоздание помощиws_click_file_openПожалуйста нажмите на Проект, чтобы его открыть.pi_num_groupsЧисло группcv_invalid_trans_target_to_activityПереход к {0} уже существуетcv_design_unsavedПроект изменен. Продолжить без сохранения?gate_btn_tooltipСоздать точку остановкиmnu_file_exportЭкспортws_no_file_openФайлы не найдены.mnu_file_importИмпортcv_readonly_lblТолько чтениеcv_autosave_rec_titleПредупреждениеpi_lbl_titleЗаглавиеpi_minsМинутыal_alertПредупреждениеal_cancelОтменитьal_confirmПодтвердитьapp_chk_themeloadДанные темы не были загруженыcopy_btnКопироватьcv_show_validationРазрешение проблемcv_valid_design_savedПоздравления! - Ваш проект прошёл верификацию и был сохраненdb_datasend_confirmСпасибо за Отправку данных на серверdelete_btnУдалитьgroup_btnГруппаgrouping_act_titleГруппироватьld_val_doneЗакончитьld_val_issue_columnПроблемаld_val_titleКонтроль ошибокmnu_editПравкаmnu_edit_copyКопироватьmnu_edit_pasteВставитьmnu_edit_redoВернутьmnu_edit_undoОтменитьmnu_fileФайлmnu_file_closeЗакрытьal_okОКmnu_file_openОткрытьmnu_file_saveСохранитьmnu_file_saveasСохранить как...mnu_helpПомощьmnu_help_abtО LAMSmnu_toolsСервисopen_btnОткрытьoptional_btnОпцииpaste_btnВставитьperm_act_lblПраваpi_hoursЧасыpi_lbl_descОписаниеpi_no_groupingНетpi_titleСвойстваsequence_act_titleПоследовательностьpi_condmatch_btn_lblЗадать условияcondmatch_dlg_cond_lst_lblУсловияpi_defaultBranch_cb_lblпо умолчаниюto_conditions_dlg_add_btn_lbl+ Добавитьto_conditions_dlg_clear_all_btn_lblОчистить всеto_conditions_dlg_remove_item_btn_lbl - Удалитьto_conditions_dlg_from_lblотto_conditions_dlg_to_lblдоto_conditions_dlg_range_lblПромежутокbranch_mapping_dlg_condition_col_lblУсловиеbranch_mapping_dlg_group_col_lblГруппаbranch_mapping_dlg_condition_col_valueВ промежутке от {0} до {1}ws_license_lblЛицензияws_file_name_emptyИзвините! Вы не можете сохранить проект с неопределенным названием файла.al_empty_designИзвините, Вы не можете сохранить пустой проектtrans_btnПереходgroupmatch_dlg_groups_lst_lblГруппыto_condition_start_valueначальное значениеto_condition_end_valueконечно значениеal_continueПродолжитьpreview_btn_tooltipПредварительный просмотр вашей последовательности, так как это будет показано для учениковal_activity_openContent_invalidПрежде чем нажать на пункт меню Открыть/Редактировать содержание задания, Вы должны выбрать какое-нибудь задание.cv_invalid_trans_circular_sequenceНельзя создавать замкнутые последовательностиbranch_mapping_dlg_condition_linked_singleЭто условиеoptional_act_btnЗаданиеoptional_seq_btnПоследовательностьlbl_num_sequences{0} - Последовательностейpi_actЗаданияpi_seqПоследовательностиpi_max_actМаксимум {0}pi_min_actМинимум {0}ws_dlg_ok_buttonОКtrans_dlg_okОКws_newfolder_okОКprefs_dlg_okОКbranching_act_titleРазветвлениеpi_activity_type_sequenceПоследовательностьcondmatch_dlg_title_lblОпределить соотвествие ветвей условиямchosen_branch_act_lblВыбор преподавателяpi_define_monitor_cb_lblОпределить позжеgroupmatch_dlg_title_lblОпределить соотвествие групп ветвямbranch_btnРазветвлениеbranch_mapping_no_branch_msgНе была выбрана ветвь.branch_mapping_dlg_branch_col_lblВетвьbranch_mapping_auto_condition_msgВсе оставшиеся Условия будут относиться к дефолтовой Ветви.branch_mapping_dlg_branches_lst_lblВетвиsequence_act_title_new{0} {1}to_conditions_dlg_condition_items_value_col_lblУсловиеclose_mc_tooltipСвернутьws_dlg_insert_btnВставитьbranch_mapping_dlg_branch_item_default{0} (по умолчанию)refresh_btnОбновитьpi_tool_output_matching_btn_lblОпределить соотвествия условий ветвямto_conditions_dlg_defin_user_defined_typeзадано пользователемcv_autosave_rec_msgВы выбрали восстановление предыдущего или несохраненного проекта. Ваш текущий проект будет удален. Желаете продолжить?cv_close_return_to_ext_srcЗакрыть и вернуться к {0}cancel_btn_tooltipВернуться в мониторингstream_reference_lblLAMSto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_lt_lblМеньше либо равноbranch_mapping_dlg_condition_col_value_minМеньше либо равно {0}to_conditions_dlg_defin_long_typeдиапазонto_conditions_dlg_defin_bool_typeправда/ложьto_conditions_dlg_options_item_header_lbl[ Условия ]to_conditions_dlg_gte_lblБольше либо равноto_conditions_dlg_lte_lblМеньше либо равноbranch_mapping_dlg_condition_col_value_maxБольше либо равно {0}lbl_num_activities{0} - Заданияcv_gateoptional_hit_chkВы не можете сделать Затвор опциональным заданиемtrans_dlg_nogateНе заданal_doneЗакончитьbranch_mapping_no_condition_msgНе было выбрано Условие.branch_mapping_dlg_condition_col_value_exactЗначение {0}branch_mapping_no_groups_msgНе была выбрана Группа.to_condition_invalid_value_direction {0} не может быть больше, чем {1}.is_remove_warning_msgВНИМАНИЕ: Урок будет удален. Вы хотите сохранить его как {0}? branch_mapping_dlg_condition_linked_allУсловияcv_activityProtected_activity_remove_msgЧтобы удалить это задание, снимите с него отметку {0}.cv_activityProtected_activity_link_msg{0} соединен с {1}.cv_activityProtected_child_activity_link_msgУ {0} существует потомок, соединенный с {1}.optional_seq_btn_tooltipСоздать ряд опциональных последовательностей.flow_btnДвижениеact_seq_lock_chkПеред тем как привязывать это задание к опциональной последовательности, разблокируйте, пожалуйста, контейнер опциональных заданий.branch_mapping_no_mapping_msgНи одного Соотвествия выбрано не было.pi_group_matching_btn_lblОпределить соотвествия групп ветвямal_activity_paste_invalidИзвините, но Вы не можете вставить задание данного типаpreview_btn_tooltip_disabledЧтобы войти в режим Предварительного просмотра Вашего проекта, Вам сначала необходимо сохранить его, а затем нажать кнопку Предварительный просмотрprefix_copyof_countКопия ({0}) ws_entre_file_nameВведите, пожалуйста, имя проекта, а затем нажмите на кнопку Сохранить.validation_error_transitionNoActivityBeforeOrAfterПереход должен иметь задание до или после себяvalidation_error_activityWithNoTransitionЗадание должно иметь входящий или исходящий переходvalidation_error_inputTransitionType1На это задание нет переходаvalidation_error_inputTransitionType2У всех заданий есть входящие переходыvalidation_error_outputTransitionType1Нет перехода из этого заданияvalidation_error_outputTransitionType2У всех заданий есть исходящие переходыcv_invalid_design_on_apply_changesНевозможно применить изменения. Отсутствует один или более переходовapply_changes_btn_tooltipПрименить изменения в проекте и вернуться в мониторингcv_activity_readOnlyЗадание не может быть {0}. Задание только для чтения.cv_eof_finish_invalid_msgЧтобы завершить редактирование, проект не должен содержать ошибокcv_eof_finish_modified_msgВаш проект был изменен. Завершить его без сохранения?cv_trans_readOnlyПереход не может быть {0}. Объект, на который осуществляется переход, только для чтения.about_popup_trademark_lbl{0} - торговая марка {0} Foundation ( {1} ).stream_urlhttp://{0}foundation.orgto_condition_untitled_item_lblБезымянный {0}pi_optSequence_remove_msg_titleУдаленные последовательностиpi_no_seq_actНомер последовательностиws_save_folder_invalidВы не можете сохранить проект в этой директории. Выберите, пожалуйста, подходящую поддиректорию.cv_activity_dbclick_readonlyВы не можете редактировать инструменты, если проект только для чтения. Сохраните, пожалуйста, копию проекта и попробуйте снова.activityDrop_optSequence_error_msgПоместите, пожалуйста, задание в одну из последовательностей.opt_activity_seq_titleКонтейнер опциональных заданийto_conditions_dlg_condition_items_name_col_lblИмяgroupnaming_dialog_col_groupName_lblИмя группыmnu_file_insertdesignВставить/Слить...redundant_branch_mappings_msgПроект содержит неиспользованные соответствия, которые будут удалены. Продолжить?pi_optSequence_remove_msgУдаляемые последовательности могут содержать задания. Эти задания также будут удалены. Все равно удалить?flow_btn_tooltipСоздать задания, управляющие движениемcv_autosave_err_msgПроизошла ошибка при попытке австосохранить Ваш проект. Увеличьте, пожалуйста, размер памяти в настройках вашего Flash Player.cv_edit_on_fly_lblРедактирование "на лету"about_popup_license_lblЭто программа является free software; Вы можете распространять и/или изменять ее при условиях соответствия GNU General Public License version 2 опубликованной Free Software Foundation. {0}gpl_license_urlwww.gnu.org/licenses/gpl.txtgroupnaming_dialog_instructions_lblЧтобы поменять имя, щекните на нем.pi_branch_tool_acts_lblИнструментgroup_branch_act_lblНа основе группgroupnaming_dlg_title_lblНазвания группpi_group_naming_btn_lblНазвания группto_condition_invalid_value_range{0} не может пересекаться с диапазоном другого Условия.ta_iconDrop_optseq_error_msgВ контейнере опциональных заданий нет последовательностей.cv_invalid_optional_seq_activityПеред тем как привязывать {0} к опциональной последовательности, удалите все переходы, связанные с ним.cv_invalid_optional_activity_no_branchesПеред тем как делать {0} опциональным заданием, удалите все разветвления, связанные с ним.pi_mapping_btn_lblЗадать соответствияto_conditions_dlg_title_lblСоздать результирующие Условияto_conditions_dlg_defin_item_header_lbl[Выберите тип результатов]tool_branch_act_lblРезультаты ученикаgrouping_invalid_with_common_names_msgВы не можете сохранить проект, так как групповое задание '{0}' содержит группы с одинаковыми именами. Переименуйте их, пожалуйста, и попробуйте снова.branch_mapping_dlg_match_dgd_lblСоотвествияbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroНевозможно сохранить, так как не заданы Условия. Вам, возможно, потребcv_design_insert_warningКак только вы сольете новую последовательность со старой, у вас не будет возможности отменить это действие - так как ваша новообразованная последовательность будет тутже автоматически сохранена. Чтобы вернуться назад, вам придется удалить все новые задания вручную и затем сохранить. Нажмите кнопку Отменить - чтобы оставить вашу последовательность неизмененной. ОК - чтобы продожить слияние.pi_branch_typeРазветвляющийсяpi_activity_type_branchingРазветвляющиеся заданияcv_invalid_optional_seq_activity_no_branchesПеред тем, как добавлять {0} к опциональной последовательности, удалите все ветви, в которых оно участвует.branch_mapping_dlg_condition_linked_msg{0} соединен с уже существующей ветвью. Продолжить?condmatch_dlg_message_lblЧтобы задать ветвь "по умолчанию", щелкните на флажке "по умолчанию" в свойствах соотвествующей ветви.to_conditions_dlg_condition_items_update_defaultConditionsУсловия для выбранных результирующих определений будут сохранены. Но при этом все ссылки на существующие ветви будут удалены. Продолжить?learner_choice_grp_lblПо выбору ученикаabout_popup_copyright_lbl© 2002-2009 {0} Foundation.bin_tooltipЧтобы удалить задание из последовательности, перетащите его в корзину.cv_eof_changes_appliedИзменения успешно сохранены.competence_editor_add_competence_btnДобавитьws_dlg_date_modified_lblИзменено: {0}ws_save_title_reserved_charsЗаголовок не может содержать символы: {0}mnu_file_import_communityИмпорт из LAMS Community...view_students_before_selectionПросмотреть учеников перед выбором?arrange_act_btnВыстроить заданияsupport_act_btnВспомогательныеsupport_act_btn_tooltipСоздать набор опциональных вспомогательных заданий.support_act_titleВспомогательное заданиеsupport_msg_no_connectionВспомогательные задания не могут быть соеденены с другими заданиямиsupport_msg_invalid_childЗадания типа {0} не могут быть добавлены как вспомогательные заданияsupport_msg_max_children_reachedНе возможно перетащить задание: {0}. Вспомогательное задание позволяет максимум {1} дочерних заданий.support_msg_cannot_be_childНевозможно перетащить вспомогательное задание внутрь другого задания.pi_branch_tool_acts_default--Выбрать--cv_invalid_trans_diff_branchesНевезможно создать переход между заданиями в разных разветвлениях.cv_invalid_branch_target_to_activityРазветвление к {0} уже существует.cv_invalid_branch_target_from_activityРазветвление от {0} уже существует.cv_invalid_trans_closed_sequenceНевозможно создать новый переход к закрытой последовательности.al_group_name_invalid_blankНазвания групп не могут быть пустыми.al_group_name_invalid_existingНазвания групп должны быть уникальными.pi_equal_group_sizesРавные размеры группcompetence_editor_dlgРедактор соответствийcompetences_lblСоответствияcompetence_def_dlgДиалог определения соответствийcompetence_editor_warning_title_existsСоответствие с заголовком {0} уже существует.competence_editor_warning_title_blankЗаголовок соответствия не может быть пустым.map_comptence_btnОпределить соответствияcompetence_mappings_btnОпределения соответствийcompetences_mapped_to_act_lblСоответствияmap_gate_conditions_btnОпределить условия затвораgate_mapping_auto_condition_msgВсе оставшиеся условия будут определены к выбраным затворам с закрытым состоянием.gate_openОткрытgate_closedЗакрытgradebook_output_typeВыходные данные Журналаmnu_tools_prefsНастройкиbranch_btn_tooltipСоздать разветвленияcv_invalid_design_savedВаш проект не прошел верификацию, но он был сохранен, щелкните 'Разрешение проблем', чтобы увидеть причины этого.pi_definelaterОпределить в мониторингеprefs_dlg_titleНастройкиal_cannot_move_to_diff_opt_seqЧтобы переместить задание в другую последовательность в опциональных последовательностях, сначала перетащите задание вне поля опциональной последовательности и затем перетащите его на новое положение внутри опциональной последовательности.competence_editor_warning_competence_mappedСоответствие, которое вы пытаетесь удалить сопоставлено к одному или более заданиям. Удаление соответствия приведет к удалению сопоставления. Вы хотите продолжить?al_activity_view_competence_mappings_invalidВыберите задание, чтобы просмотреть определения соответствий.grp_chk_clear_branch_mappingsПредупреждение: Это действие очистит все существующие определения групп к ветвлениям в данном задании. Вы хотите продолжить? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/sv_SE_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleVerktyg - aktiviteterTitle for Activity Toolkit Panelal_alertOBS!Generic title for Alert windowal_cancelAvbrytTo Confirm title for LFErroral_confirmBekräftaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSpråkdata har inte laddats inmessage for unsuccessful language loadingapp_chk_themeloadData om teman har inte laddats inmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan inte fortsätta. Var snäll och kontakta supportmessage if application cannot continue due to any errorchosen_grp_lblValdLabel for the grouping drop down in the PropertyInspectorcopy_btnKopieraToolbar &gt; Copy Buttoncv_invalid_design_savedDin design är ännu inte giltig men den har sparats. Klicka på 'Kvarvarande problem' för att se vilket felet är. Message when an invalid design has been savedcv_invalid_trans_targetDet går inte skapa en övergång till det här objektetError message for when transition tool is dropped outside of valid target activitycv_show_validationMer detaljerThe button on the confirm dialogcv_valid_design_savedGratulerar! - Din design är giltig och den har sparats.Message when a valid design has been saveddb_datasend_confirmDina data har framgångsrikt sänts till servern.Message when user sucessfully dumps data to the serverdelete_btnTa bortLabel for Delete buttongate_btnGrindToolbar &gt; Gate Buttongroup_btnGruppToolbar &gt; Group Buttongrouping_act_titleBilda grupperDefault title for the grouping activityld_val_activity_columnAktivitetThe heading on the activity in the ValidationIssuesDialogld_val_doneKlarThe button label for the dialogld_val_issue_columnDetaljThe heading on the issue in the ValidationIssuesDialogld_val_titleDetaljer angående valideringThe title for the dialoglicense_not_selectedVar snäll och välj en licens för den här designenShown if no license is selected in the drop down in workspacemnu_editRedigeraMenu bar Editmnu_edit_copyKopieraMenu bar Edit &gt; Copymnu_edit_cutKlipp utMenu bar Edit &gt; Cutmnu_edit_pasteKlistra inMenu bar Edit &gt; Pastemnu_edit_redoGör omMenu bar Edit &gt; Redomnu_edit_undoÅngraMenu bar Edit &gt; Undomnu_fileFilMenu bar Filemnu_file_closeStängMenu bar Closemnu_file_newNyMenu bar Newmnu_file_openÖppnaMenu bar Openmnu_file_saveSparaMenu bar savemnu_file_saveasSpara somMenu bar Save asmnu_helpHjälpMenu bar Helpmnu_help_abtOmMenu bar Aboutmnu_toolsVerktygMenu bar Toolsmnu_tools_optRita valfriMenu bar Optionalmnu_tools_prefsInställningarMenu bar preferencesmnu_tools_transRita övergångMenu bar draw transitionnew_btnNyToolbar &gt; New Buttonnew_confirm_msgÄr du säker på att du vill rensa bort din design från skärmen?Msg when user clicks new while working on the existing designnone_act_lblIngenNo gate activity selectedopen_btnÖppnaToolbar &gt; Open Buttonoptional_btnValfriToolbar &gt; Optional Buttonpaste_btnKlistra inToolbar &gt; Paste Buttonperm_act_lblTillståndLabel for permission gate activitypi_activity_type_gateGrind aktivitetActivity type for gate in PIpi_activity_type_groupingAktivitet för att bilda grupperActivity type for grouping in Property Inspectorpi_definelaterDefiniera senareLabel for Define later for PIpi_end_offsetStäng grindEnd offset labelpi_group_typeTyp av gruppbildningProperty Inspector Grouping type drop downpi_hoursTimmarHours label in Property Inspectorpi_lbl_currentgroupAktuell gruppbildningCurrent grouping label for PIpi_lbl_descBeskrivningDescription Label for PIpi_lbl_groupBildande av grupperGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMax aktiviteterlabel for maximum Activitiespi_min_actMin aktiviteterlabel for Minimum activitiespi_minsMinuterMins label in teh property inspectorpi_no_groupingIngenCombo title for no groupingpi_num_learnersAntal lärandePI Num learners labelpi_optional_titleValfri aktivitetTitle for oprional activity property inspectorpi_runofflineArbeta offlineLabel for Run Oflinepi_start_offsetÖppna grindenStart offset labelpi_titleEgenskaperOn the title bar of the PIprefix_copyofKopiera avPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAvbryt6prefs_dlg_lng_lblSpråk7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titleInställningar4preview_btnFörhandsgranskaToolbar &gt; Preview Buttonproperty_inspector_titleEgenskaperOn the title bar of the PIrandom_grp_lblSlumpmässigLabel for the grouping drop down in the PropertyInspectorrename_btnByt namnLabel for Rename Buttonsave_btnSparaToolbar &gt; Save buttonsched_act_lblSchemaLabel for schedule gate activitysynch_act_lblSynkroniseraUsed as a label for the Synch Gate Activity Typetk_titleVerktyg för aktiviteterLabel for Activities Toolkit Paneltrans_btnÖvergångToolbar &gt; Transition Buttontrans_dlg_cancelAvbrytCancel button on transition dialogtrans_dlg_gateSynkroniseringHeader for the transition props dialogtrans_dlg_gatetypecmbTypGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleÖvergångTitle for the transition properties dialogws_RootrotRoot folder title for workspacews_chk_overwrite_resourceOBS! Du håller på att skriva över en resurs!ws_click_folder_fileVar snäll och klicka antingen på en katalog som du vill spara i eller på en Design som du vill skriva över.Error msg if no folder or file is selectedws_copy_same_folderKäll- och målkatalogen är desammaThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAvbryt2ws_dlg_filenameNamn på filLabel for File name in workspace windowws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÖppnaWsp Dia Open Button labelws_dlg_properties_buttonEgenskaperWorkspace dialogue Properties btn labelws_dlg_save_btnSparaWsp Dia Save Button labelws_dlg_titleArbetsyta0ws_newfolder_cancelAvbrytCancel on the new folder name diaws_newfolder_insVar snäll och skriv in det nya namnet på katalogen.Instructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionDu har tyvärr inte tillstånd att skriva till den här resursen.Message when user does not have write permission to complete actionws_rename_insVar snäll och skriv in det nya namnetMessage of the new name for the userws_tree_mywspMin arbetsytaThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacews_view_license_buttonVisaTo show the license to the useract_lock_chkVar snäll och lås upp den här behållaren för valfria aktiviteter innan du anger den här aktiviteten som valfri.Alert Message if user drags the activity to locked optional activity container sys_error_msg_startEtt systemfel enligt följande har inträffat:Common System error message starting linesys_error_msg_finishDu kanske måste starta om LAMS Författare för att kunna fortsätta. Vill du spara den följande informationen om detta fel för att kunna använda den för att åtgärda felet?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titlepi_num_groupsAntal grupperNumber of groups in Property inspectorpi_parallel_titleParallell aktivitetTitle for parallel activity property inspectoropt_activity_titleAlternativ aktivitetTitle for Optional Activity Containerlbl_num_activitiesAktiviteterreplacement for word activitiesal_sendSkickaSend button label on the system error dialogal_cannot_move_activityDu kan tyvärr inte flytta den här aktiviteten.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkDu kan tyvärr inte lägga till en aktivitet av typ grind som en alternativ aktivitet. Error message when user drags gate activity over to optional containerprefix_copyof_countKopia ({0}) avPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidDu kan tyvärr inte spara en design i den här katalogen. Var snäll och välj en underkatalog.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openVar snäll och klicka på Design för att öppna.Alert message if folder tried to be opened.ws_license_lblLicensLabel for Licence drop down on workspace properties tab viewws_license_comment_lblKompletterande information om licenserLabel for Licence Comment description below license drop downcv_invalid_optional_activityFlytta övergångar till och från från {0} innan du anger detta som en alternativ aktivitet.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDen andra aktiviteten i övergången saknas.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityDet finns redan en övergång från {0}Error message when a transition from the activity already existcv_invalid_trans_target_to_activityDet finns redan en övergång till {0}Error message when a transition to the activity already existbranch_btnFörgreningLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFlödeLabel for Flow button in Toolbarmnu_file_importImporteraMenu bar Importcv_design_export_unsavedDet går inte att Exportera en design som du inte har sparat först. Alert message when trying to export can unsaved design.cv_design_unsavedDesignen på arbetsytan har ändrats. Vill du fortsätta utan att spara?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExporteraMenu bar Exportws_chk_overwrite_existingDen här katalogen innehåller redan en fil som heter {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderDet går inte att använda den här katalogen. Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitAvslutaFile Menu Exitws_no_file_openDet gick inte att hitta någon fil. Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceDet går tyvärr inte att ha en cirkulär sekvens.Error message when a transition from one activity to another is creating a circular loopbin_tooltipSläpp en aktivitet i den här korgen för att ta bort den från sekvensen av aktiviteter. Tool tip message for canvas binnew_btn_tooltipDetta tömmer den aktuella sekvensen och återställer arbetsytan så att du kan börja om från början.Tool tip message for new button in toolbaropen_btn_tooltipVisa dialogrutan för filer och öppna en sekvens för aktiviteter.Tool tip message for open button in toolbarsave_btn_tooltipSnabbspara den aktuella sekvensen för aktiviteter. tool tip message for save button in toolbarcopy_btn_tooltipKopiera den markerade aktiviteten. tool tip message for copy button in toolbarpaste_btn_tooltipKlistra in en kopia av den markerade aktiviteten. tool tip message for paste button in toolbartrans_btn_tooltipAnvänd den här pennan för att dra övergångar mellan aktiviteter (eller tryck på tangenten CTRL).tool tip message for transition button in toolbaroptional_btn_tooltipSkapa en uppsättning aktiviteter. tool tip message for optional button in toolbargate_btn_tooltipSkapa en slutpunkt.tool tip message for gate button in toolbarbranch_btn_tooltipSkapa en förgrening (tillgänglig i LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltipSkapa flödeskontrollerade aktivitetertool tip message for flow button in toolbargroup_btn_tooltipSkapa en aktivitet för att skapa grupper. tool tip message for group button in toolbarpreview_btn_tooltipFörhandsgranska din sekvens så att de lärande ser den. Tool tip message for preview button in toolbarcv_activity_dbclick_readonlyDet går inte att redigera verktyg som har designats som 'endast läsbart'. Var snäll och spara designen och försök igen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblEndast läsbartLabel for top left of canvas shown when a read-only design is open.al_empty_designDet går tyvärr inte att spara en tom design. alert message when user want to save an empty designcv_autosave_err_msgEtt fel har uppstått i samband med att det gjordes ett försök att automat-spara din design. Var snäll och kontakta systemadministratören. Alert error message when auto-save fails.cv_autosave_rec_msgDu håller på att återställa en förlorad eller inte sparad design. Den design som du håller på med kommer att tömmas. Vill du fortsätta?Message informing users that they have recovered data for a design.cv_autosave_rec_titleVarningAlert title for auto save recovery message.mnu_file_recoverÅterställ...Menu bar Recovercv_activity_copy_invalidDet går tyvärr inte att kopiera den här ärvda 'barn'-aktiviteten.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidDet går tyvärr inte att klippa ut den här ärvda 'barn'-aktiviteten.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidDu måste tyvärr markera aktiviteten innan du klickar på knappen 'Kopiera' eller kopierar enheten i den meny för aktiviteter som du högerklickar fram.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidDu måste tyvärr markera aktiviteten innan du klickar på knappen 'Kopiera' eller klickar på enheten Öppna/Redigera Innehåll i aktivitet i den meny för aktiviteter som du högerklickar fram.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgÄr du säker på att du vill ta bort den här filen/katalogen?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyDu får tyvärr inte skapa någon design utan filnamn.Error message when user try to save a design with no file namews_entre_file_nameVar snåll och skriv in namnet på designen och klicka sedan på knappen 'Spara'Error message when user try to save a design with no file namecv_activity_helpURL_undefinedDet går inte att hitta hjälpsidan för {0}Alert message when a tool activity has no help url defined.cv_untitled_lblUtan titlel -1Label for Design Title bar on canvasmnu_help_helpHjälp med pedagogisk designlabel for menu bar Help - Authoring Help optionccm_open_activitycontentÖppna/Redigera innehåll för aktivitetLabel for Custom Context Menuccm_copy_activityKopiera aktivitetLabel for Custom Context Menuccm_paste_activityKlistar in aktivitetLabel for Custom Context Menuccm_piInspektera egenskaper...Label for Custom Context Menuccm_author_activityhelpHjälp för aktiviteten pedagogisk designLabel for Custom Context Menuws_dlg_descriptionBeskrivningLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateIngenDrop down default for gate typepi_daysDagarDays label in property inspector for gate toolcv_close_return_to_ext_srcStäng och tillbaka till {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/th_TH_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/th_TH_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/th_TH_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleชุดกิจกรรมTitle for Activity Toolkit Panelal_alertแจ้งเตือนGeneric title for Alert windowal_cancelยกเลิกTo Confirm title for LFErroral_confirmยืนยันTo Confirm title for LFErroral_okตกลงOK on the alert dialogapp_chk_langloadยังไม่มีการโหลดภาษาmessage for unsuccessful language loadingapp_chk_themeloadยังไม่มีการโหลดรูปแบบทีมmessage for unsuccessful theme loadingapp_fail_continueยังไม่เปิดใช้งานระบบกรุณาติดต่อผู้ดูแลระบบmessage if application cannot continue due to any errorchosen_grp_lblเลือกLabel for the grouping drop down in the PropertyInspectorcopy_btnคัดลอกToolbar &gt; Copy Buttoncv_invalid_design_savedการออกแบบกิจกรรมยังไม่สมบูรณ์ กรุณาตรวจสอบอีกครั้งMessage when an invalid design has been savedcv_invalid_trans_targetเส้นทางกิจกรรมไม่ถูกต้องError message for when transition tool is dropped outside of valid target activitycv_show_validationIssuesThe button on the confirm dialogcv_valid_design_savedขอแสดงความยินดี! ได้บันทึกกิจกรรมนี้แล้วMessage when a valid design has been saveddb_datasend_confirmขอบคุณที่ส่งข้อมูลไปที่เซิร์ฟเวอร์Message when user sucessfully dumps data to the serverdelete_btnลบLabel for Delete buttongate_btnGate Toolbar &gt; Gate Buttongroup_btnกลุ่มToolbar &gt; Group Buttongrouping_act_titleจัดกลุ่มDefault title for the grouping activityld_val_activity_columnกิจกรรมThe heading on the activity in the ValidationIssuesDialogld_val_doneทำThe button label for the dialogld_val_issue_columnIssue The heading on the issue in the ValidationIssuesDialogld_val_titleValidation issues The title for the dialoglicense_not_selectedโปรดเลือกสิทธิ์ในการออกแบบShown if no license is selected in the drop down in workspacemnu_editแก้ไขMenu bar Editmnu_edit_copyคัดลอกMenu bar Edit &gt; Copymnu_edit_cutตัดMenu bar Edit &gt; Cutmnu_edit_pasteแปะMenu bar Edit &gt; Pastemnu_edit_redoทำซ้ำMenu bar Edit &gt; Redomnu_edit_undoยกเลิกทำMenu bar Edit &gt; Undomnu_fileไฟล์Menu bar Filemnu_file_closeปิดMenu bar Closemnu_file_newสร้างMenu bar Newmnu_file_openเปิดMenu bar Openmnu_file_revertย้อนหลังMenu bar Revertmnu_file_saveบันทึกMenu bar savemnu_file_saveasบันทึกเป็นMenu bar Save asmnu_helpช่วยเหลือMenu bar Helpmnu_help_abtเกี่ยวกับMenu bar Aboutmnu_toolsเครื่องมือMenu bar Toolsmnu_tools_optทางเลือกMenu bar Optionalmnu_tools_prefsอ้างอิงMenu bar preferencesmnu_tools_transสร้างเส้นวิถีทางMenu bar draw transitionnew_btnสร้าง Toolbar &gt; New Buttonnew_confirm_msgต้องการยกเลิกการออกแบบนี้Msg when user clicks new while working on the existing designnone_act_lblไม่ได้เลือกNo gate activity selectedopen_btnเปิดToolbar &gt; Open Buttonoptional_btnทางเลือกToolbar &gt; Optional Buttonpaste_btnแปะToolbar &gt; Paste Buttonperm_act_lblPermissionLabel for permission gate activitypi_activity_type_gateส่งกิจกรรมActivity type for gate in PIpi_activity_type_groupingกลุ่มกิจกรรมActivity type for grouping in Property Inspectorpi_definelaterเลือกทีหลัง Label for Define later for PIpi_end_offsetClose gate End offset labelpi_group_typeประเภทกลุ่มProperty Inspector Grouping type drop downpi_hoursชม.Hours label in Property Inspectorpi_lbl_currentgroupกลุ่มนี้Current grouping label for PIpi_lbl_descอธิบายDescription Label for PIpi_lbl_groupกลุ่มGrouping label for PIpi_lbl_titleTitle Title label for PIpi_max_actกิจกรรมมากสุดlabel for maximum Activitiespi_min_actกิจกรรมน้อยสุดlabel for Minimum activitiespi_minsนาทีMins label in teh property inspectorpi_no_groupingไม่มีCombo title for no groupingpi_num_learnersผู้เรียนPI Num learners labelpi_optional_titleเลือกกิจกรรมTitle for oprional activity property inspectorpi_runofflineแสดง OfflineLabel for Run Oflinepi_start_offsetเปิดStart offset labelpi_titleคุณสมบัติOn the title bar of the PIprefix_copyofบันทึกPrefix for copy paste command for canvas activitiesprefs_dlg_cancelยกเลิก6prefs_dlg_lng_lblภาษา7prefs_dlg_okตกลง5prefs_dlg_theme_lblหน้ากาก8prefs_dlg_titlePreferences 4preview_btnแสดงตัวอย่างToolbar &gt; Preview Buttonproperty_inspector_titlePropertiesOn the title bar of the PIrandom_grp_lblสุ่มเลือกLabel for the grouping drop down in the PropertyInspectorrename_btnเปลี่ยนชื่อLabel for Rename Buttonsave_btnบันทึกToolbar &gt; Save buttonsched_act_lblScheduleLabel for schedule gate activitysynch_act_lblประสานกันUsed as a label for the Synch Gate Activity Typetk_titleชุดกิจกรรมLabel for Activities Toolkit Paneltrans_btnแปลToolbar &gt; Transition Buttontrans_dlg_cancelยกเลิกCancel button on transition dialogtrans_dlg_gateการประสานHeader for the transition props dialogtrans_dlg_gatetypecmbชนิดGate type combo labeltrans_dlg_okตกลงOK Button on transition dialogtrans_dlg_titleTransition Title for the transition properties dialogws_RootรากRoot folder title for workspacews_chk_overwrite_resourceต้องการเขียนทับws_click_folder_fileโปรดเลือกโฟล์เดอร์ที่ต้องการบันทึกจัดเก็บError msg if no folder or file is selectedws_copy_same_folderกิจกรรมเหมือนกัน โปรดเลือกใหม่The user has tried to drag and drop to the same placews_dlg_cancel_buttonยกเลิก2ws_dlg_filenameชื่อไฟล์Label for File name in workspace windowws_dlg_location_buttonที่อยู่Workspace dialogue Location btn labelws_dlg_ok_buttonตกลงWsp Dia OK Button labelws_dlg_open_btnเปิดWsp Dia Open Button labelws_dlg_properties_buttonคุณสมบัติWorkspace dialogue Properties btn labelws_dlg_save_btnบันทึก Wsp Dia Save Button labelws_dlg_titleพื้นที่งาน0ws_newfolder_cancelยกเลิกCancel on the new folder name diaws_newfolder_insใส่ชื่อใหม่Instructions on the new name pop upws_newfolder_okตกลงOK on the new folder name diaws_no_permissionคุณไม่ได้รับอนุญาตให้เขียนได้Message when user does not have write permission to complete actionws_rename_insใส่ชื่อใหม่อีกครั้งMessage of the new name for the userws_tree_mywspพื้นที่งานของฉันThe root level of the treews_tree_orgsโครงงานShown in the top level of the tree in the workspacews_view_license_buttonแสดงTo show the license to the useract_lock_chkกรุณาปลดล็อกกิจกรรม ก่อนที่จะสร้างกิจกรรมAlert Message if user drags the activity to locked optional activity container sys_error_msg_startติดตามดูการทำงานระบบCommon System error message starting linesys_error_msg_finishจำเป็นต้อง re-start LAMS Author ใหม่ ต้องการบันทึกหรือไม่Common System error message finish paragraphsys_errorระบบไม่ทำงานSystem Error elert window title \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/tr_TR_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3new_btnYeniToolbar &gt; New Buttonnone_act_lblHiçbiriNo gate activity selectedpaste_btn_tooltipSeçilen etkinliğin kopyasını yapıştırtool tip message for paste button in toolbaral_confirmOnaylaTo Confirm title for LFErrorapp_chk_langloadDil verisi henüz yüklenmedimessage for unsuccessful language loadingcopy_btnKopyalaToolbar &gt; Copy Buttonld_val_activity_columnEtkinlikThe heading on the activity in the ValidationIssuesDialogmnu_editDüzenMenu bar Editmnu_edit_copyKopyalaMenu bar Edit &gt; Copymnu_edit_cutKesMenu bar Edit &gt; Cutmnu_edit_pasteYapıştırMenu bar Edit &gt; Pastemnu_edit_undoGeri AlMenu bar Edit &gt; Undomnu_fileDosyaMenu bar Filemnu_file_closeKapatMenu bar Closemnu_file_newYeniMenu bar Newmnu_file_openMenu bar Openmnu_helpYardımMenu bar Helpmnu_help_abtLAMS HakkındaMenu bar Aboutmnu_toolsAraçlarMenu bar Toolsmnu_tools_prefsSeçeneklerMenu bar preferencesopen_btnToolbar &gt; Open Buttonoptional_btnSeçmeliToolbar &gt; Optional Buttonccm_open_activitycontentEtkinlik içeriğini aç/düzenleLabel for Custom Context Menucv_close_return_to_ext_srcKapat ve {0}' a dönButton label used on close and return button in save confirm message popup.cv_readonly_lblSalt okunurLabel for top left of canvas shown when a read-only design is open.stream_reference_lblLAMS (Öğrenme Etkinliği Yönetim Sistemi)Reference label for the application stream.optional_act_btnEtkinlikToolbar button for Optional Activity.pi_actEtkinliklerMin and max label postfix when an Optional Activity is selected.to_conditions_dlg_gte_lblBüyük veya eşitGreater than or equal toto_conditions_dlg_lte_lblKüçük veya eşitLess than or equal tows_dlg_insert_btnEkleButton label on Workspace in INSERT mode.al_group_name_invalid_blankGrup isimleri boş bırakılamazWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingBu grup ismi kullanılıyor, farklı bir isim giriniz.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupws_save_folder_invalidBu klasöre bir tasarım kaydedemezsiniz. Lütfen geçerli bir alt-klasör seçin.Alert message if root My Workspace folder is selected to save a design in.mnu_file_saveasFarklı KaydetMenu bar Save assave_btnKaydetToolbar &gt; Save buttonws_click_folder_fileLütfen kaydetmek için bir klasöre, üzerine yazmak için Tasarıma tıklayınız.Error msg if no folder or file is selectedws_dlg_save_btnKaydetWsp Dia Save Button labelcv_design_insert_warningBir kez bir sıralama eklerseniz iptal edemezsiniz-eski sıralamanız otomatik olarak yeni sıralamayla kaydedilir. Eski sıralamanıza dönmek için yeni eklediklerinizi elle silmeli ve tekrar kaydetmelisiniz. Sıralamanızı mevcut haliyle bırakmak için İptal tuşuna basınız.Aksi takdirde eklemek istediğiniz sıralamayı seçmek için Tamam'a tıklayınız Warning message when merge/insertcv_eof_changes_appliedDeğişiklikler başarıyla uygulandıChanges have been successful applied.validation_error_transitionNoActivityBeforeOrAfterBir geçiş öncesinde veya sonrasında mutlaka bir etkinlik barındırmalıdırA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionBir etkinliğin giriş veya çıkış geçişi olmalıdırAn activity must have an input or output transitionvalidation_error_inputTransitionType1Bu etkinliğin giriş geçişi yokturThis activity has no input transitionvalidation_error_outputTransitionType1Bu etkinliğin çıkış geçişi yokturThis activity has no output transitioncv_invalid_design_on_apply_changesDeğişiklikler uygulanamıyor. Bir veya fazla geçiş eksik.Cannot apply changes. There are one or more transitions missing.apply_changes_btn_tooltipDeğişiklikleri uygula ve dersi tool tip message for save button in toolbarbranch_mapping_dlg_branches_lst_lblDallanmalarLabel for Branches list box on Branch Matching Dialogs.groupnaming_dlg_title_lblGrup adlandırmaTitle label for Group Naming dialog.pi_activity_type_branchingDallanma etkinliğiActivity type for Branching in Property Inspector.pi_group_naming_btn_lblGrupları adlandırLabel for button that opens Group Naming dialog.sequence_act_titleAkış sırasıDefault title for Sequence Activity.pi_group_matching_btn_lblGrupları dallanmalarla eşleştirButton in author that allows you to allocate groups to branches for group based branchingmnu_file_saveKaydetMenu bar savecv_invalid_design_savedTasarımınız henüz geçerli değil, ancak kaydedildi, problemi görmek için "Olası sorunlar" a tıklayınızMessage when an invalid design has been savedsave_btn_tooltipEtkinlik akışını hızlı kaydettool tip message for save button in toolbardelete_btnSilLabel for Delete buttonws_del_confirm_msgBu dosya/klasörü silmek istediğinizden emin misiniz?Confirmation message when user tries to delete a file or folder in workspace dialog boxcompetence_editor_warning_competence_mappedSilmeye çalıştığınız yetki bir yada daha fazla etkinlikte kullanılmaktadır.Silerek bu kullanımlarıda kaldırmış olacaksınız. Silmek istediğinizden emin misiniz?Warning message when you attempt to delete a competence that is mapped to one or more activities.preview_btn_tooltip_disabledAkış diagramını görüntülemek için önce çalışmanızı kaydedin daha sonra önizlemeye tıklayınTool tip message for preview button in toolbar when button is disabled.cv_design_export_unsavedKaydedilmemiş bir tasarımı dışa aktaramazsınızAlert message when trying to export can unsaved design.al_empty_designÜzgünüm, boş bir tasarımı kaydedemezsiniz.alert message when user want to save an empty designcv_valid_design_savedTebrikler! - Tasarımınız oluşturuldu ve kaydedildiMessage when a valid design has been savedcv_activity_dbclick_readonlySalt okunur bir tasarımı düzenleyemezsiniz. Lütfen tasarımın bir kopyasını kaydedip yeniden deneyiniz.Alert message when double-clicking an Activity in an open read-only designws_file_name_emptyÜzgünüm! Bir tasarımı dosya ismi olmadan kaydedemezsiniz.Error message when user try to save a design with no file namecondmatch_dlg_cond_lst_lblKoşullarLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblKoşulları dallanmalarla eşleştirDialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_condition_col_lblKoşulColumn heading for showing condition description of the mapping.cv_autosave_rec_msgKaydedilmemiş veya kaybedilmiş son tasarımınızı kurtarmak üzeresiniz. Geçerli tasarımınız silinecek. Devam etmek istiyor musunuz?Message informing users that they have recovered data for a design.branch_mapping_no_condition_msgHerhangi bir koşul seçilmediAlert message when adding a Mapping without a Condition being selected.branch_mapping_dlg_condition_linked_allKoşullar varPhrase used at start of linked conditions alert message when clearing all.branch_mapping_auto_condition_msgGeriye kalan tüm durumlar varsayılan dallanma olarak haritalanacak.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.to_condition_invalid_value_range{0} varolan bir koşulun aralığında olamazAlert message when a submitted condition interferes with another previously submitted condition.branch_mapping_dlg_condition_linked_singleKoşulPhrase used at start of linked conditions alert message when clearing a single entry.to_conditions_dlg_condition_items_value_col_lblKoşulColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_title_lblÇıktı koşulları oluşturDialog title for creating new tool output conditions.pi_condmatch_btn_lblKoşul oluşturLabel for button to open dialog to create output conditions.pi_tool_output_matching_btn_lblKoşulları dallanmalarla eşleştirButton in author that allows you to match conditions to branches for tool-output based branchinggrouping_invalid_with_common_names_msg{0} grupllama etkinliğinin birden fazla aynı ismi olması nedeniyle tasarımı kaydedemiyor. Gruplamay gözden geçirip tekrar deneyiniz.Alert message displayed when the Grouping validation fails during saving a design.map_gate_conditions_btnKapı koşulları oluştur.Button to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msg-Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stateto_conditions_dlg_condition_items_update_defaultConditionsSeçilen çıktı tanımları için durumlarınız güncellenmek üzere. Bu varolan tüm dallanmaları temizleyecektir. Devam etmek istiyor musunuz?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.ws_entre_file_nameLütfen tasarım ismini giriniz ve Kaydet butonuna tıklayınızError message when user try to save a design with no file namecv_autosave_err_msgTasarımınız otomatik kaydedilmeye çalışılırken bir hata oluştu. Lütfen Flash Player depolama ayarlarınızı yükseltiniz.Alert error message when auto-save fails.ws_newfolder_insYeni bir dosya ismi girinizInstructions on the new name pop upws_no_permissionÜzgünüm, bu kaynağa yazmak için izniniz yokMessage when user does not have write permission to complete actionws_rename_insLütfen yeni ismi girinizMessage of the new name for the userlicense_not_selectedHenüz bir lisans seçilmedi- Lütfen bir tane seçinizShown if no license is selected in the drop down in workspaceperm_act_lblİzinLabel for permission gate activityws_tree_mywspÇalışma alanımThe root level of the treews_tree_orgsGruplarımShown in the top level of the tree in the workspacesys_error_msg_startAşağıdaki hata meydana geldi:Common System error message starting linews_click_file_openAçmak için lütfen bir tasarımın üzerine tıklayınızAlert message if folder tried to be opened.copy_btn_tooltipSeçilen etkinliği kopyalatool tip message for copy button in toolbargrouping_act_titleGrup OluşturDefault title for the grouping activitybranch_mapping_dlg_condition_col_value{0} ile {1} aralığıValue for Condition field in mapping datagrid.pi_lbl_currentgroupGeçerli GruplamaCurrent grouping label for PIal_activity_view_competence_mappings_invalidYetki haritalarını görüntülemeye çalışmadan önce bir etkinlik seçtiğinizi emin olun.Warning that appears when no activity is selected when the user tries to view competence mappingspreview_btnÖnizlemeToolbar &gt; Preview Buttonpreview_btn_tooltipÖğrenenlerin göreceği biçimde akışı önizleTool tip message for preview button in toolbarws_view_license_buttonGörünümTo show the license to the userprefs_dlg_cancelİptal6trans_dlg_cancelİptalCancel button on transition dialogws_dlg_cancel_buttonİptal2ws_newfolder_cancelİptalCancel on the new folder name diaal_cancelİptalTo Confirm title for LFErrorcancel_btnİptalToolbar - Cancel Buttonsynch_act_lblSenkronize etUsed as a label for the Synch Gate Activity Typebranch_mapping_dlg_branch_col_lblDallanmaColumn heading for showing sequence name of the mapping.trans_dlg_gateSenkronize etmeHeader for the transition props dialogws_dlg_location_buttonKonumWorkspace dialogue Location btn labeloptional_seq_btnAkışToolbar button for Sequences within Optional Activity.cv_invalid_trans_target_to_activity{0} 'dan daha önce bir geçiş atanmışError message when a transition to the activity already existcv_design_unsavedTasarım değiştirildi. Kaydetmeden devam etmek istiyor musunuz?Alert message when opening/importing when current design on canvas is unsaved or modified.optional_btn_tooltipBir dizi seçmeli etkinlik oluşturur.tool tip message for optional button in toolbarbranch_btn_tooltipDallanma oluşturtool tip message for branch button in toolbargroup_btn_tooltipGrup etkinliği oluştur.tool tip message for group button in toolbaral_activity_copy_invalidÜzgünüm! Kopyalama yapmadan önce etkinliği seçmelisinizAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasccm_piÖzelliklerLabel for Custom Context Menubranch_btnDallanmaLabel for disabled Branch button shown as submenu for flow button in Toolbarcv_invalid_trans_target_from_activity{0} 'dan daha önce bir geçiş atanmışError message when a transition from the activity already existto_conditions_dlg_defin_bool_typeDoğru/YanlışType description for a lboolean-value based ouput definition.mnu_file_exportDışa aktarMenu bar Exportws_dlg_titleÇalışma Alanı0group_btnGrupToolbar &gt; Group Buttonpi_lbl_groupGruplamaGrouping label for PItrans_btnGeçişToolbar &gt; Transition Buttontrans_dlg_titleGeçişTitle for the transition properties dialogopt_activity_titleSeçmeli EtkinlikTitle for Optional Activity Containerws_license_comment_lblEk Lisans BilgisiLabel for Licence Comment description below license drop downal_cannot_move_activityÜzgünüm bu etkinliği taşıyamazsınızAlert message when user tries to move child activity of any parallel activityws_click_virtual_folderBu dizini kullanamazsınızAlert message for trying to use a virtual folder to save/open a file.prefix_copyof_countKopyası ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.cv_activity_helpURL_undefined{0} için yardım dosyasını bulamıyorAlert message when a tool activity has no help url defined.act_tool_titleEtkinlik Araç KutusuTitle for Activity Toolkit Panelapp_chk_themeloadTema verisi yüklenmedimessage for unsuccessful theme loadingapp_fail_continueUygulama tamamlanamadı. Lütfen destek için iletişime geçiniz.message if application cannot continue due to any errorcv_invalid_trans_targetBu nesne için geçiş yaratamazsınız.Error message for when transition tool is dropped outside of valid target activitydb_datasend_confirmSunucuya gönderdiğiniz veri için teşekkürlerMessage when user sucessfully dumps data to the servermnu_edit_redoİleri alMenu bar Edit &gt; Redonew_confirm_msgEkrandaki tasarımınızı silmek istediğinizden emin misiniz?Msg when user clicks new while working on the existing designpaste_btnYapıştırToolbar &gt; Paste Buttonpi_activity_type_groupingGrup EtkinliğiActivity type for grouping in Property Inspectorpi_hoursSaatlerHours label in Property Inspectorpi_lbl_titleBaşlıkTitle label for PIpi_minsDakikalarMins label in teh property inspectorpi_no_groupingHiçbiriCombo title for no groupingpi_num_learnersÖğrenen sayısıPI Num learners labelpi_optional_titleSeçmeli EtkinlikTitle for oprional activity property inspectorpi_titleÖzelliklerOn the title bar of the PIprefix_copyofKopyasıPrefix for copy paste command for canvas activitiesprefs_dlg_lng_lblDil7prefs_dlg_theme_lblTema8prefs_dlg_titleTercihler4property_inspector_titleÖzelliklerOn the title bar of the PIrandom_grp_lblRastgeleLabel for the grouping drop down in the PropertyInspectorrename_btnYeniden AdlandırLabel for Rename Buttontk_titleEtkinlik Araç KutusuLabel for Activities Toolkit Panelws_RootAna dizinRoot folder title for workspacews_chk_overwrite_resourceUyarı: Bu sıralamanın üzerine yazmak üzeresiniz!ws_copy_same_folderKaynak ve hedef dizinler aynıThe user has tried to drag and drop to the same placews_dlg_filenameDosya adıLabel for File name in workspace windowws_dlg_open_btnWsp Dia Open Button labelws_dlg_properties_buttonÖzelliklerWorkspace dialogue Properties btn labelsys_errorSistem hatasıSystem Error elert window titleal_sendGönderSend button label on the system error dialogpi_daysGünlerDays label in property inspector for gate toolws_license_lblLisansLabel for Licence drop down on workspace properties tab viewpi_num_groupsGrup sayısıNumber of groups in Property inspectorgate_btn_tooltipBitiş noktası yaratınıztool tip message for gate button in toolbarflow_btn_tooltipAkış kontrol etkinliği yaratınıztool tip message for flow button in toolbarccm_copy_activityEtkinliği KopyalaLabel for Custom Context Menuccm_paste_activityEtkinliği YapıştırLabel for Custom Context Menumnu_file_exitÇıkışFile Menu Exitws_no_file_openDosya bulunamadıAlert message if no matching file is found to open in selected folder of Workspace.flow_btnAkışLabel for Flow button in Toolbartrans_dlg_nogateHiçbiriDrop down default for gate typecv_untitled_lblBaşlıksız - 1Label for Design Title bar on canvascv_autosave_rec_titleUyarıAlert title for auto save recovery message.mnu_file_apply_changesDeğişiklikler UygulaApply Changesapply_changes_btnDeğişiklikler UygulaApply Changescv_activity_readOnlyBu etkinlik sadece okunabilirAlert message when a user performs an illegal action on a read-only transition.cv_element_readOnly_action_delKaldırıldıAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modDeğiştirildiAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDüzenlemeyi bitirmeniz için tasarımın geçerli olması gerekmektedir.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgUyarı: Tasarımınız değiştirildi. Kaydetmeden kapatmak istiyor musunuz?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.mnu_file_finishBitirMenu bar File - Finish (Edit Mode)about_popup_title_lblHAkkındaTitle for the About Pop-up window.pi_activity_type_sequenceSıralı EtkinlikActivity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblDeğerini değiştirmek istediğiniz ismin üzerine tıklayınız.Instructions for Group Naming dialog.to_conditions_dlg_add_btn_lbl+ EkleLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblHepsini TemizleLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblKaldırLabel for button to remove condition.to_conditions_dlg_from_lblBuradanLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblBurayaLabel for end value in condition range for long or numeric output values.branch_mapping_dlg_group_col_lblGrupColumn heading for showing group name of the mapping.to_conditions_dlg_defin_user_defined_typeKullanıcı tanımlıType description for a user-defined (boolean set) based ouput definition.al_alertDikkat!Generic title for Alert windowpi_defaultBranch_cb_lblVarsayılanCheckBox label for selecting the Branch as default for the BranchingActivity.chosen_branch_act_lblÖğretmen seçimiBranching type label for Teacher choice Branching.groupmatch_dlg_groups_lst_lblGruplarLabel for Groups list box on Group/Branch Matching Dialog.tool_branch_act_lblÖğrenen çıktısıBranching type label for Tool output Branching.to_condition_start_valueBaşlangıç değeriValue representing the min boundary value of the conditions range.to_condition_end_valueBitiş değeriValue representing the max boundary value of the conditions value.to_condition_invalid_value_direction{0} {1} den büyük olamazAlert message when the start value is greater than end value of the submitted condition.al_continueDevamContinue button on Alert dialogto_condition_untitled_item_lblBaşlıksız {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.branch_mapping_dlg_condition_col_value_maxBüyük veya eşit {0}Value for Condition field in mapping datagrid when Greater than option is selected.to_conditions_dlg_lt_lblKüçük veya eşitLess than option for long type conditions.pi_max_actEn fazla {0}Label for maximum Activities or Sequencespi_min_actEn az {0}Label for minimum Activities or Sequencesto_conditions_dlg_condition_items_name_col_lblİsimColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Seçenekler ]Header label value (first index) for tool long (range) options drop-down.groupnaming_dialog_col_groupName_lblGrup AdıColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignEkle/BirleştirMenu item label for Inserting a Learning Design.refresh_btnYenileButton label for Refresh button on the Tool Output Conditions dialog.pi_branch_tool_acts_default--Seçin--Default item label for Input Tool dropdown list.mnu_tools_optSeçmeli çizMenu bar Optionallbl_num_activities{0} - Etkinliklerreplacement for word activitiessched_act_lblZaman çizelgesiLabel for schedule gate activityopen_btn_tooltipEtkinlik akışını açmak için dosya diyalogunu gösterTool tip message for open button in toolbarmnu_file_importİçe aktarMenu bar Importabout_popup_version_lblSürümLabel displaying the version no on the About dialog.gpl_license_url http://www.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleDallanmaLabel for Branching Activitybranch_mapping_no_branch_msgDallanma seçilmediAlert message when adding a Mapping without a Branch (Sequence) being selected.act_lock_chkLütfen bu etkinliği seçmeli olarak tanımlamadan önce Seçmeli Etkinlik kutusunun kilidini açınız. Alert Message if user drags the activity to locked optional activity container cv_trans_target_act_missingGeçişin ikinci etkinliği eksik.Error message when target activity for transition is missingcv_activity_copy_invalidÜzgünüm! Bu alt etkinliği kopyalama izniniz yokError message when user try to copy child activity from either optional or parallel activity containermnu_tools_transGeçiş çizMenu bar draw transitionws_chk_overwrite_existingBu klasörde {0} isimli dosya daha önceden kaydedilmiş.Alert message when saving a design with the same filename as an existing design.pi_parallel_titleParalel EtkinlikTitle for parallel activity property inspectormnu_file_recoverKurtar...Menu bar Recovercv_activity_cut_invalidÜzgünüm! Bu alt etkinliği kesmeye izniniz yok.Error message when user try to cut child activity from either optional or parallel activity containernew_btn_tooltipGeçerli sıralamayı temizlerve çalışma alanını kullanım için hazırlar.Tool tip message for new button in toolbartrans_btn_tooltipBu kalemi etkinlikler arasında geçiş oluşturmak için kullanınız. (veya CTRL tuşuna basınız.)tool tip message for transition button in toolbaral_activity_openContent_invalidÜzgünüm! Etkinlik sağ menüsündeki Etkinlik içeriği Aç/Düzenle maddesine tıklamadan önce etkinliği seçmek zorundasınız.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasabout_popup_copyright_lbl© 2002-2008 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_license_lblBu program üzretsiz bir yazılımdır; dağıtabilir ve/veya Free Softvare Foundation tarafından yayınlanan GNU General Public Licence version 2 şartları altında değiştirebilirsiniz.Label displaying the license statement in the About dialog.branch_mapping_no_groups_msgHiçbir grup seçilmedi.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblGrup-tabanlıBranching type label for Group-based Branching.branch_mapping_dlg_condition_linked_msg{0} varolan bir dallanmaya bağlı. Devam etmek istiyor musunuz?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_branch_item_default{0} (varsayılan)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.cv_invalid_branch_target_to_activityDaha önce {0}'a bir dallanma oluşturulmuş.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityDaha önce {0}'dan bir dallanma oluşturulmuş.Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceKapalı bir sıralamaya yeni bir geçiş bağlayamazsınız.Error message displayed after drawing a transition from an activity in a closed sequence.is_remove_warning_msgUYARI: Bu ders kaldırılmak üzere. Bu dersi {0} olarak saklamak ister misiniz?Message for the alert dialog which appears following confirmation dialog for removing a lesson.cv_activityProtected_activity_remove_msgKaldırmak için lütfen bu etkinliğin {0} seçimini kaldırınız.Instruction how to delete an Activity linked to a Branching Activity.redundant_branch_mappings_msgBu tasarım kullanılmayan dallanma haritaları içeriyor ve kaldırılacak. Devam etmek istiyor musunuz?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_invalid_trans_diff_branchesFarklı dallanmaların içindeki etkinlikler arasında geçiş oluşturamazsınız.Error message displayed after drawing a transition between activities of two different branches.gate_btnKapıToolbar &gt; Gate Buttonpi_start_offsetKapıyı açStart offset labelcv_activityProtected_activity_link_msg{0} {1}'e bağlanmıştır.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_invalid_optional_seq_activity_no_branchesEtkinliği seçmeli sıralamaya eklemeden önce {0}'a bağlı dallanmaları kaldırınız.Alert message when user try to drop an activity with connected branches into optional sequences container.cv_invalid_optional_seq_activity{0}'ı seçmeli sıralama olarak ayarlamadan önce ona bağlı tüm geçişleri kaldırmalısınız.Alert message when user try to drop an activity with to or from transition into optional sequences container.to_conditions_dlg_defin_item_fn_lbl {0} ({1})Function label value for tool output definition drop-down.branch_mapping_dlg_condition_col_value_min{0}'dan küçük veya eşitValue for Condition field in mapping datagrid when Less than option is selected.to_conditions_dlg_defin_item_header_lbl[ Çıktı seç]Header label value (first index) for tool output definition drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipSimge durumuna küçültTooltip message for close button on Branching canvas.pi_branch_tool_acts_lblGirdi (Araç)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.cv_activityProtected_child_activity_link_msg{0}'ın {1}'e bağlı bir alt etkinliği var.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.pi_end_offsetKapıyı kapatEnd offset labelcv_invalid_optional_activity_no_branches{0}' sseçmeli etkinlik olarak ayarlamadan önce üzerinde bağlı olan dallanmaları klaldırmalısınız.Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.cancel_btn_tooltipDersi izlemeye döntool tip message for cancel button in toolbar (edit mode)to_conditions_dlg_range_lblAralıkHeading label for section in the dialog to set numeric condition range.branch_mapping_no_mapping_msgHerhangi bir harita seçilmediAlert message when removing a Mapping without a Mapping being selected.branch_mapping_dlg_match_dgd_lblHaritalamaHeading label for Mapping datagrid.to_conditions_dlg_defin_long_typearalıkType description for a long-value based ouput definition.cv_gateoptional_hit_chkKapı etkinliğini seçmeli etkinlik olarak ekleyemezsiniz.Error message when user drags gate activity over to optional containerpi_mapping_btn_lblHaritalamaLabel for button to open tool output to branch(s) dialog.cv_invalid_optional_activity{0}'ı seçmeli etkinlik olarak atamadan önce bağlı olan geçişleri kaldırınız.Alert message when user try to drop an activity with to or from transition into optional containerbin_tooltipEtkinlik akışından kaldırmak istediğiniz etkinliği bu kutuya bırakınız.Tool tip message for canvas bincv_show_validationSorunlarThe button on the confirm dialogld_val_issue_columnSorunThe heading on the issue in the ValidationIssuesDialogbranch_mapping_dlg_condition_col_value_exact{0}'ın tam değeriValue for Condition field in mapping datagrid when range set is only single value.pi_definelaterİzlemede tanımlaLabel for Define later for PIpi_seqAkışlarMin and max label postfix when an Optional Sequences activity is selected.cv_trans_readOnlyGeçiş {0} olamaz. Geçiş hedefi salt okunur.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).condmatch_dlg_message_lblİstenen dallanma için varsayılan dallanma Özellikler alanındaki "varsayılan" onay kutusuna tıklanarak seçilebilir. Label for a message in the Condition to Branch matching dialog.pi_activity_type_gateAkışa bir kapı koyarak belirli koşullar oluşana kadar bekletme etkinliğiActivity type for gate in PIld_val_titleGeçerlemeThe title for the dialogvalidation_error_inputTransitionType2Girdi geçişinde eksik etkinlik yok.No activities are missing their input transition.validation_error_outputTransitionType2Çıktı geçişinde eksik etkinlik yok.No activities are missing their output transition.cv_invalid_trans_circular_sequenceDairesel bir akış oluşturmaya izniniz yok.Error message when a transition from one activity to another is creating a circular loopchosen_grp_lblİzlemede seçLabel for the grouping drop down in the PropertyInspectorpi_define_monitor_cb_lblİzlemede tanımlaCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblDallanmaların harita gruplarıMap Groups to Branchescv_edit_on_fly_lblÇalışırken düzenleLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.learner_choice_grp_lblÖğrencinin tercihine bırakA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesGrup büyüklükleri eşit olsun.Checkbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgYetki düzenlemeDialog for adding/editing/removing competencescompetence_editor_warning_title_exists{0} başlıklı yetki zaten var.Warning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankYetki başlığı boş bırakılamaz.Warning message when you try to define a competence with a blank competence titlecompetence_editor_add_competence_btnEkleAdd competence buttoncompetence_def_dlgYetki tanımlamaTitle for Dialog that allows you to define new or edit existing competencescompetences_mapped_to_act_lblYetkilerLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_comptence_btnYetkileri haritalaLabel for button that invokes the Competence Mappings dialogcompetences_lblYetkilerLabel in Competence Editor dialog to show all the competences in the learning designcompetence_mappings_btnYetki haritalarıTitle for the dialog that allows you to map competences to an activitygate_openAçıkOpen state for gate activity, allows learners to pass through itgate_closedKapalıClosed state for gate activity, does not allow learners to pass through itpi_lbl_descAçıklamaDescription Label for PIws_dlg_descriptionAçıklamaLabel for description in Workspace dialog - Properties tabal_okTamamOK on the alert dialogprefs_dlg_okTAMAM5ws_newfolder_okTAMAMOK on the new folder name diaws_dlg_ok_buttonTAMAMWsp Dia OK Button labeltrans_dlg_okTAMAMOK Button on transition dialogpi_runofflineÇevrimdışı EtkinlikLabel for Run Oflinepi_group_typeGruplama türüProperty Inspector Grouping type drop downal_activity_paste_invalidÜzgünüm bu tür bir etkinliği kopyalayamazsınızAlert message when user is attempting to paste a unsupported activity type.pi_branch_typeDallanma türüProperty Inspector Branching type drop down.trans_dlg_gatetypecmbTürGate type combo labelld_val_doneTamamThe button label for the dialogal_doneSonlandırLabel for dialog completion button.al_cannot_move_to_diff_opt_seqBir etkinliği seçmeli etkinlikler içinde farklı bir akışa taşımak için önce etkinliği seçmeli etkinlik alanı dışına sürüklemeniz ve daha sonra seçmeli etkinlik alanında istediğiniz yere sürüklemeniz gerekmektedir.Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activityoptional_seq_btn_tooltipBir dizi seçmeli etkinlik oluşturur.Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleAkış şırasını kaldırRemoving sequencespi_optSequence_remove_msgKaldırılacak akış/lar etkinlikler içeriyor olabilir. Bu akışları kaldırmak istiyor musunuz?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actAkışların numarasıLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - AkışLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgLütfen etkinliği akışlardan birinin üzerine bırakınız.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.ta_iconDrop_optseq_error_msgBu kutuda kullanılabilir akışlar bulunmamaktadırError message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleSeçmeli AkışTitle for Optional Sequences Container.act_seq_lock_chkLütfen bu etkinliği seçmeli etkinliğe atamadan önce Seçmeli Etkinlik kutusunun kilidini açınız.Alert Message if user drags the activity to locked optional sequences container.mnu_help_helpTasarım Yardımlabel for menu bar Help - Authoring Help optionsys_error_msg_finishDevam etmek için LAMS Tasarımı yeniden başlatmalısınız. Problem belirlenmesine yardımcı olacak hata bilgisini kaydetmek istiyor musunuz?Common System error message finish paragraphccm_author_activityhelpYazarlık Etkinliği Yardım Label for Custom Context Menubranch_mapping_dlg_condtion_items_update_defaultConditions_zeroKullanıcı tanımlı bir koşul bulunamadığında güncellenemiyor. Araçlar'ın tasarım sayfalarında yapılandırmanız gerekmektedir.Alert message when the updating the conditions with a selected output definition that has no default conditions.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ws_dlg_date_modified_lblSon düzenlenme: {0}Show the last modified datetime of the selected design in the workspacews_save_title_reserved_charsBaşlık özel karakterler içeremez: {0}Error alert when trying to save with a title containing illegal characters.mnu_file_import_communityLAMS topluluğundan içe aktarFile menu item for importing a learning design from the LAMS community \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/vi_VN_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleBộ công cụ hoạt độngTitle for Activity Toolkit Panelal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏTo Confirm title for LFErroral_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on the alert dialogapp_chk_langloadDữ liệu ngôn ngữ không được nạp vàomessage for unsuccessful language loadingapp_chk_themeloadDữ liệu đề tài vẫn chưa được tảimessage for unsuccessful theme loadingapp_fail_continueỨng dụng không thể tiếp tục. Hãy liên hệ hỗ trợmessage if application cannot continue due to any errorchosen_grp_lblChọn lựaLabel for the grouping drop down in the PropertyInspectorcopy_btnSao chépToolbar &gt; Copy Buttoncv_invalid_design_savedThiết kế của bạn chưa hiệu lực, nhưng đã được lưu lại, bấm'Các vấn đề' để xem sai sótMessage when an invalid design has been savedcv_invalid_trans_targetBạn không thể thiết lập chuyển tiếp với đối tượng nàyError message for when transition tool is dropped outside of valid target activitycv_show_validationCác vấn đềThe button on the confirm dialogcv_valid_design_savedChúc mừng! - Thiết kế của bạn đã có hiệu lực và đã được lưuMessage when a valid design has been saveddb_datasend_confirmCám ơn đã gửi dữ liệu tới serverMessage when user sucessfully dumps data to the serverdelete_btnXóaLabel for Delete buttongate_btnCổngToolbar &gt; Gate Buttongroup_btnNhómToolbar &gt; Group Buttongrouping_act_titleGom nhómDefault title for the grouping activityld_val_activity_columnHoạt độngThe heading on the activity in the ValidationIssuesDialogld_val_doneHoàn thànhThe button label for the dialogld_val_issue_columnVấn đềThe heading on the issue in the ValidationIssuesDialogld_val_titleCác vấn đề về hiệu lựcThe title for the dialoglicense_not_selectedSự lựa chọn không được phép - Hãy lựa chọn khácShown if no license is selected in the drop down in workspacemnu_editHiệu chỉnhMenu bar Editmnu_edit_copySao chépMenu bar Edit &gt; Copymnu_edit_cutCắtMenu bar Edit &gt; Cutmnu_edit_pasteDánMenu bar Edit &gt; Pastemnu_edit_redoLàm lạiMenu bar Edit &gt; Redomnu_edit_undoHủy thao tác vừa làmMenu bar Edit &gt; Undomnu_fileFileMenu bar Filemnu_file_closeĐóngMenu bar Closemnu_file_newMớiMenu bar Newmnu_file_openMởMenu bar Openmnu_file_saveLưuMenu bar savemnu_file_saveasLưu như...Menu bar Save asmnu_helpTrợ giúpMenu bar Helpmnu_help_abtLiên quan về LAMSMenu bar Aboutmnu_toolsCông cụMenu bar Toolsmnu_tools_optTùy chọn vẽMenu bar Optionalmnu_tools_prefsTính năngMenu bar preferencesmnu_tools_transSự chuyển tiếp vẽMenu bar draw transitionnew_btnMớiToolbar &gt; New Buttonnew_confirm_msgBạn có chắc muốn xóa các thiết kế của mình trên màn hìnhMsg when user clicks new while working on the existing designnone_act_lblKhông lựa chọnNo gate activity selectedopen_btnMở Toolbar &gt; Open Buttonoptional_btnTùy ChọnToolbar &gt; Optional Buttonpaste_btnDánToolbar &gt; Paste Buttonperm_act_lblChấp nhậnLabel for permission gate activitypi_activity_type_gateHoạt động của CổngActivity type for gate in PIpi_activity_type_groupingGom nhóm hoạt độngActivity type for grouping in Property Inspectorpi_definelaterĐịnh nghĩa sauLabel for Define later for PIpi_end_offsetĐóng CổngEnd offset labelpi_group_typeLoại nhómProperty Inspector Grouping type drop downpi_hoursGiờHours label in Property Inspectorpi_lbl_currentgroupNhóm hiện thờiCurrent grouping label for PIpi_lbl_descMô tảDescription Label for PIpi_lbl_groupGom nhómGrouping label for PIpi_lbl_titleTiêu ĐềTitle label for PIpi_max_actSố hoạt động tối đalabel for maximum Activitiespi_min_actSố hoạt động tối thiểulabel for Minimum activitiespi_minsPhútMins label in teh property inspectorpi_no_groupingĐể trốngCombo title for no groupingpi_num_learnersSố học viênPI Num learners labelpi_optional_titleHoạt động tùy chọnTitle for oprional activity property inspectorpi_runofflineChạy ngoại tuyếnLabel for Run Oflinepi_start_offsetMở cổngStart offset labelpi_titleĐặc tínhOn the title bar of the PIprefix_copyofBản saoPrefix for copy paste command for canvas activitiesprefs_dlg_cancelHủy bỏ6prefs_dlg_lng_lblNgôn Ngữ7prefs_dlg_okĐồng ý5prefs_dlg_theme_lblĐề tài8prefs_dlg_titleTùy thích4preview_btnXem trướcToolbar &gt; Preview Buttonproperty_inspector_titleĐặc tínhOn the title bar of the PIrandom_grp_lblNgẫu nhiênLabel for the grouping drop down in the PropertyInspectorrename_btnĐổi tênLabel for Rename Buttonsave_btnLưuToolbar &gt; Save buttonsched_act_lblLịch trình hoạt động của cổngLabel for schedule gate activitysynch_act_lblĐồng bộ hóaUsed as a label for the Synch Gate Activity Typetk_titleBộ công cụ hoạt độngLabel for Activities Toolkit Paneltrans_btnSự chuyển tiếpToolbar &gt; Transition Buttontrans_dlg_cancelHủy bỏCancel button on transition dialogtrans_dlg_gateSự đồng bộ hóaHeader for the transition props dialogtrans_dlg_gatetypecmbLoạiGate type combo labeltrans_dlg_okChấp nhậnOK Button on transition dialogtrans_dlg_titleSự chuyển tiếpTitle for the transition properties dialogws_RootThư mục gốcRoot folder title for workspacews_chk_overwrite_resourceCảnh báo : bạn đang ghi đè lên chuỗi này !ws_click_folder_fileHãy bấm vào một thư mục để lưu lại, hoặc ghi đè lên thiết kế khácError msg if no folder or file is selectedws_copy_same_folderThư mục nguồn và thư mục đích là mộtThe user has tried to drag and drop to the same placews_dlg_cancel_buttonHủy bỏ2ws_dlg_filenameTên FileLabel for File name in workspace windowws_dlg_location_buttonKhu vựcWorkspace dialogue Location btn labelws_dlg_ok_buttonĐồng ýWsp Dia OK Button labelws_dlg_open_btnMởWsp Dia Open Button labelws_dlg_properties_buttonĐặc tínhWorkspace dialogue Properties btn labelws_dlg_save_btnLưuWsp Dia Save Button labelws_dlg_titleKhông gian làm việc0ws_newfolder_cancelHủy bỏCancel on the new folder name diaws_newfolder_insHãy đặt tên một thư mục mớiInstructions on the new name pop upws_newfolder_okĐồng ýOK on the new folder name diaws_no_permissionXin lỗi, bạn không được phép ghi lên tài nguyên nàyMessage when user does not have write permission to complete actionws_rename_insHãy nhập tên mớiMessage of the new name for the userws_tree_mywspKhông gian làm việc của tôiThe root level of the treews_tree_orgsNhóm của tôiShown in the top level of the tree in the workspacews_view_license_buttonXemTo show the license to the useract_lock_chkHãy mở khóa chứa đựng hoạt động tùy chọn trước khi gán cho hoạt động các tùy chọnAlert Message if user drags the activity to locked optional activity container sys_error_msg_startLỗi hệ thống này đã được tìm thấyCommon System error message starting linesys_error_msg_finishBạn cần phải khởi động lại tính năng Soạn bài của LAMS để tiếp tục. Bạn có muốn lưu các thông tin về lỗi này để giúp sửa lỗi ?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titlepi_num_groupsSố lượng nhómNumber of groups in Property inspectorpi_parallel_titleHoạt động đồng thờiTitle for parallel activity property inspectoropt_activity_titleHoạt động tùy chọnTitle for Optional Activity Containerlbl_num_activitiesHoạt Độngreplacement for word activitiesal_sendGửiSend button label on the system error dialogal_cannot_move_activityXin lỗi, ban không thể thay đổi hoạt động nàyAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkBạn không thể thêm cổng hoạt động như là một hoạt động tùy chọnError message when user drags gate activity over to optional containerprefix_copyof_countBản sao ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidBạn không thể lưu thiết kế trong thư mục này. Hãy chọn một thư mục con có hiệu lựcAlert message if root My Workspace folder is selected to save a design in.ws_click_file_openHãy bấm vào một thiết kế để mở ra.Alert message if folder tried to be opened.ws_license_lblBản quyềnLabel for Licence drop down on workspace properties tab viewws_license_comment_lblThông tin bản quyền thêm vàoLabel for Licence Comment description below license drop downcv_invalid_optional_activityĐổi chỗ và rời sự chuyển tiếp từ {0} trước khi thiết lập nó thành hoạt động tùy chọnAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingHoạt động thứ hai của sự chuyển tiếp đang thất lạcError message when target activity for transition is missingcv_invalid_trans_target_from_activitySự chuyển tiếp từ {0} đã tồn tạiError message when a transition from the activity already existcv_invalid_trans_target_to_activitySự chuyển tiếp đến {0} đã tồn tạiError message when a transition to the activity already existbranch_btnNhánhLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnLuồngLabel for Flow button in Toolbarmnu_file_importNhập vàoMenu bar Importcv_design_export_unsavedBạn không thể xuất ra một thiết kế chưa được lưuAlert message when trying to export can unsaved design.cv_design_unsavedThiết kế trên nền đã thay đổi.Bạn có muốn tiếp tục mà không cần lưu?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportXuất raMenu bar Exportws_chk_overwrite_existingThư mục này đã chứa tên tệp tin {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderKhông thể sử dụng thư mục nàyAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitThoátFile Menu Exitws_no_file_openKhông tìm thấy Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceBạn không được phép có vòng lặpError message when a transition from one activity to another is creating a circular loopbin_tooltipThả vào thùng rác một hoạt động để gỡ bỏ nó khỏi vòng hoạt độngTool tip message for canvas binnew_btn_tooltipXóa bỏ kết quả hiện tại và lập lại không gian làm việc sẵn sàng cho sử dụngTool tip message for new button in toolbaropen_btn_tooltipHiển thị tệp Tool tip message for open button in toolbarsave_btn_tooltipLưu nhanh kết quả hoạt động hiện tạitool tip message for save button in toolbarcopy_btn_tooltipSao chép hoạt động được chọntool tip message for copy button in toolbarpaste_btn_tooltipDán bản sao của hoạt động được lựa chọntool tip message for paste button in toolbartrans_btn_tooltipSử dụng bút để thể hiện liên kết giữa các hoạt động (hoặc bấm phím CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipKhởi tạo một bộ các hoạt động tùy chọntool tip message for optional button in toolbargate_btn_tooltipTạo điểm dừngtool tip message for gate button in toolbarbranch_btn_tooltipTạo nhánh (chỉ có thể ở LAMS phiên bản 2.1)tool tip message for branch button in toolbarflow_btn_tooltipTạo luồng điều khiển các hoạt độngtool tip message for flow button in toolbargroup_btn_tooltipTạo hoạt động nhómtool tip message for group button in toolbarpreview_btn_tooltipXem trước bài học như học viên sẽ được xemTool tip message for preview button in toolbarcv_activity_dbclick_readonlyBạn không thể sửa các công cụ của thiết kế chỉ đươc đọc.Hãy lưu bản sao của thiết kế và thử lại sauAlert message when double-clicking an Activity in an open read-only designcv_readonly_lblChỉ đọcLabel for top left of canvas shown when a read-only design is open.al_empty_designXin lỗi, Bạn không thể lưu một thiết kế rỗngalert message when user want to save an empty designcv_autosave_err_msgMột lỗi đã được phát hiện khi tự động lưu thiết kế của bạn.Nếu lỗi này vẫn còn xin hãy liên hệ với quản trị hệ thốngAlert error message when auto-save fails.cv_autosave_rec_msgBạn sắp khôi phục lại mất mát gần đây hoặc thiết kế chưa lưu.Message informing users that they have recovered data for a design.cv_autosave_rec_titleCảnh báoAlert title for auto save recovery message.mnu_file_recoverKhôi phục lại ...Menu bar Recovercv_activity_copy_invalidXin lỗi.! Bạn không được phép sao chép kết quả hoạt động nàyError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidXin lỗi.! Bạn không được cắt bỏ kết quả hoạt động nàyError message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidXin lỗi! Bạn phải chọn hoạt động trước khi sao chépAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidXin lỗi! Bạn phải chọn hoạt động trước khi Mở/Sửa danh mục nội dung hoạt động khi bấm chuoalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgBạn có chắc là muốn xóa tệp tin/ thư mục này không?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyXin lỗi! Bạn không thể lưu thiết kế mà không đặt tênError message when user try to save a design with no file namews_entre_file_nameHãy nhập tên thiết kế,và sau đó bấm nút lưuError message when user try to save a design with no file namecv_activity_helpURL_undefinedKhông thể tìm thấy trang trợ giúp cho {0}Alert message when a tool activity has no help url defined.cv_untitled_lblKhông tiêu đề - 1Label for Design Title bar on canvasmnu_help_helpGiúp soạn giảlabel for menu bar Help - Authoring Help optionccm_open_activitycontentMở/Sửa nội dung hoạt độngLabel for Custom Context Menuccm_copy_activitySao chép hoạt độngLabel for Custom Context Menuccm_paste_activityDán hoạt độngLabel for Custom Context Menuccm_piTính năng kiểm tra...Label for Custom Context Menuccm_author_activityhelpGiúp soạn bàiLabel for Custom Context Menuws_dlg_descriptionMô tảLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateKhôngDrop down default for gate typepi_daysNgàyDays label in property inspector for gate toolcv_close_return_to_ext_srcĐóng và quay trở lại {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/zh_CN_dictionary.xml 12 Jan 2010 01:19:31 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_autosave_rec_msg你将要恢复上一个丢失的或没保存的设计。你的当前设计会被清除。继续吗?chosen_grp_lbl在监视器中选择to_conditions_dlg_range_lbl范围sched_act_lbl计划cv_autosave_rec_title警告synch_act_lbl同步mnu_file_recover恢复tk_title活动工具箱act_tool_title活动工具箱al_alert提示al_cancel取消al_confirm确认al_ok确定cv_invalid_design_saved虽然已被保存,但设计不再有效,请点击“潜在问题”查看是什么错了?app_chk_themeload主题还没有被加载app_fail_continue程序无法继续。请联系技术支持人员license_not_selected当前没有选择许可证-请选一个。copy_btn复制pi_min_act最小{0}cv_invalid_trans_target您不能创建到该对象的链接cv_show_validation问题pi_runoffline离线活动db_datasend_confirm感谢您发送数据到服务器delete_btn删除gate_btngroup_btngrouping_act_title分组ld_val_activity_column活动ld_val_done完成ld_val_issue_column问题ld_val_title验证问题ws_chk_overwrite_resource警告:您正试图改写这个序列!mnu_edit编辑mnu_edit_copy复制mnu_edit_cut剪切mnu_edit_paste粘贴mnu_edit_redo重做mnu_edit_undo回退mnu_file文件mnu_file_close关闭mnu_file_new新建mnu_file_open打开mnu_file_save保存ws_tree_orgs我的组mnu_help帮助to_conditions_dlg_defin_item_header_lbl[选择输出] mnu_tools工具mnu_tools_opt创建可选活动mnu_tools_prefs偏好mnu_tools_trans创建链接new_btn新建new_confirm_msg您确定要清除屏幕上的设计吗?none_act_lblopen_btn打开optional_btn可选活动paste_btn粘贴perm_act_lbl权限pi_activity_type_gate门活动pi_activity_type_grouping分组活动to_conditions_dlg_from_lbl起始值pi_end_offset关闭门pi_group_type分组类型pi_hours小时pi_lbl_currentgroup当前分组pi_lbl_desc描述pi_lbl_group分组pi_lbl_title标题to_conditions_dlg_to_lbl结束值al_group_name_invalid_existing组名必须唯一pi_mins分钟cv_autosave_err_msg试图自动保存你的设计时发生了一个错误。请增加Flash Player存储设置。app_chk_langload语言数据没有加载pi_optional_title可选活动cv_valid_design_saved祝贺! -设计有效并且已被保存。pi_start_offset打开门pi_title属性prefix_copyof副本prefs_dlg_cancel取消prefs_dlg_lng_lbl语言prefs_dlg_ok确定prefs_dlg_theme_lbl主题prefs_dlg_title偏好preview_btn预览property_inspector_title属性random_grp_lbl随机rename_btn重命名save_btn保存trans_btn链接trans_dlg_cancel取消trans_dlg_gate同步trans_dlg_gatetypecmb类型trans_dlg_ok确定trans_dlg_title链接ws_Rootws_click_folder_file请选择文件夹保存,或者一个设计去覆盖它ws_copy_same_folder源和目标文件夹相同ws_dlg_cancel_button取消ws_dlg_filename文件名ws_dlg_location_button位置ws_dlg_ok_button确定ws_dlg_open_btn打开ws_dlg_properties_button属性ws_dlg_save_btn保存ws_dlg_title工作空间ws_newfolder_cancel取消ws_newfolder_ins请输入新文件夹名ws_newfolder_ok确定ws_no_permission对不起,您没有权限写入该资源ws_rename_ins请输入新名称ws_tree_mywsp我的工作空间mnu_help_abt关于LAMSws_view_license_button视图pi_definelater在监视器中定义sys_error_msg_start系统错误如下:sys_error_msg_finish您可能需要重新启动LAMS设计面板。您想保存下面的信息来帮助解决问题吗?sys_error系统错误al_send发送al_activity_copy_invalid对不起!在点击复制按钮前,你必需选中这个活动。opt_activity_title可选活动ws_license_lbl许可证ws_license_comment_lbl附加的许可证信息al_cannot_move_activity对不起,您不能移动该活动prefix_copyof_count({0})的复制ws_save_folder_invalid您不能把设计保存在该文件夹,请选择子文件夹ws_click_file_open请点击要打开的设计cv_invalid_optional_activity在设置它为可选活动前,移除它前后的连接cv_trans_target_act_missing该连接缺少后置活动pi_num_groups组数cv_gateoptional_hit_chk您可以把门活动设为一个可选活动cv_invalid_trans_target_from_activity从{0}开始的连接已经存在cv_invalid_trans_target_to_activity到达{0}的连接已经存在cv_design_unsaved画布上的设计已经改变。不保存而继续吗?mnu_file_exit退出cv_design_export_unsaved您必须先保存再导出mnu_file_export导出ws_chk_overwrite_existing该文件夹已经包含一个名为{0}的文件ws_no_file_open找不到文件branch_btn分支flow_btnmnu_file_import导入ws_click_virtual_folder无法使用该文件夹pi_parallel_title并行活动cv_invalid_trans_circular_sequence设计中不允许存在环路cv_activity_cut_invalid对不起!你不允许剪切这个子活动。mnu_file_saveas另存为...to_conditions_dlg_title_lbl创建输出条件ws_del_confirm_msg你确信你想删除这个文件/文件夹吗?cv_activity_copy_invalid对不起!你不允许复制这个子活动。al_activity_openContent_invalid对不起!在你点击活动右键菜单中的打开/编辑活动内容选项之前,你必需选中这个活动。close_mc_tooltip最小new_btn_tooltip清除当前序列,重置工作空间以供使用copy_btn_tooltip复制选定的活动paste_btn_tooltip粘贴选定的活动trans_btn_tooltip用这个钢笔图标来创建活动之间的链接(或按CTRL键)optional_btn_tooltip创建一组可选择的活动branch_btn_tooltip创建一个分支(在LAMS v 2.1版本中可用)group_btn_tooltip创建一个分组活动bin_tooltip将一个活动拖到这个垃圾箱,从而将它从活动序列中移除cv_activity_dbclick_readonly你不能编辑只读设计的工具。请保存设计的复本后再试。cv_readonly_lbl只读open_btn_tooltip显示文件对话框,打开一个活动序列save_btn_tooltip快速保存当前活动序列gate_btn_tooltip创建一个停止点flow_btn_tooltip创建流式控制活动preview_btn_tooltip预览你的序列,就象学习者将看到的样子al_empty_design对不起,你不能保存一个空的设计。ws_entre_file_name请输入该设计的名称,然后点击“保存”按钮。cv_activity_helpURL_undefined不能找到关于{0}的帮助页面cv_untitled_lbl无标题-1ws_file_name_empty对不起!你不能保存一个没有文件名的设计。pi_days日期mnu_help_help创建者帮助ccm_author_activityhelp创建活动帮助ccm_open_activitycontent打开/编辑活动内容ccm_copy_activity复制活动ccm_paste_activity粘贴活动ccm_pi属性检查者...ws_dlg_description描述trans_dlg_nogatecv_close_return_to_ext_src关闭并回到 {0}cv_eof_changes_applied更改成功.mnu_file_apply_changes应用所做的更改validation_error_transitionNoActivityBeforeOrAfter连接之前或之后必须要有一个活动validation_error_activityWithNoTransition一个活动必须要有一个输入或输出连接validation_error_inputTransitionType1该活动没有输入连接validation_error_inputTransitionType2没有活动正在丢失他们的输入连接.validation_error_outputTransitionType1该活动没有输出连接validation_error_outputTransitionType2没有活动正在丢失他们的输出连接。cv_invalid_design_on_apply_changes不能应用更改. 一个或多个连接丢失。apply_changes_btn应用更改apply_changes_btn_tooltip将更改应用到设计并回到监视课程。cancel_btn取消cv_activity_readOnly活动不能为{0}. 该活动是只读的。cv_edit_on_fly_lbl灵活编辑cv_element_readOnly_action_del移去cv_element_readOnly_action_mod修改cv_eof_finish_invalid_msg为了完成编辑,设计必须是有效的。cv_eof_finish_modified_msg警告:您的设计已经修改了,是否不保存而直接关闭?cv_trans_readOnly连接不能为{0}. 连接目标是只读的。cancel_btn_tooltip回到监视课程。mnu_file_finish完成about_popup_title_lbl关于 - {0}about_popup_version_lbl版本branch_mapping_dlg_condition_col_value_max大于或等于{0}about_popup_license_lbl该软件是一个自由软件; 您可以重新发布并/或修改它,前提是您必须遵守自由软件组织发布的准则。stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_title分支tool_branch_act_lbl学习者的输出groupnaming_dialog_instructions_lbl点击一个名称来改变其值。pi_branch_tool_acts_lbl输入branch_mapping_no_branch_msg没有被选择的分支。al_done完成condmatch_dlg_cond_lst_lbl条件condmatch_dlg_title_lbl分支的匹配条件pi_defaultBranch_cb_lbl默认to_conditions_dlg_add_btn_lbl+增加to_conditions_dlg_clear_all_btn_lbl全部清除to_conditions_dlg_remove_item_btn_lbl—移去branch_mapping_dlg_branch_col_lbl分支branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblbranch_mapping_no_mapping_msg没有选择图。branch_mapping_no_condition_msg没有选择条件。branch_mapping_auto_condition_msg所有现存的条件将会出现在默认的分支上。branch_mapping_dlg_match_dgd_lblbranch_mapping_dlg_condition_col_value范围{0}到{1}branch_mapping_dlg_condition_col_value_exact{0}的精确值pi_mapping_btn_lbl安装图pi_define_monitor_cb_lbl在监视器中定义groupmatch_dlg_title_lbl分支的图组branch_mapping_no_groups_msg没有选择组。group_branch_act_lbl基于组branch_mapping_dlg_branches_lst_lbl分支groupmatch_dlg_groups_lst_lblgroupnaming_dlg_title_lbl组命名pi_activity_type_branching分支活动pi_branch_type分支类型pi_group_naming_btn_lbl名称组sequence_act_title序列chosen_branch_act_lbl教师选择to_condition_start_value开始值to_condition_end_value结束值to_condition_invalid_value_range{0}不在目前条件下的范围中。to_condition_invalid_value_direction{0}不能大于{1}。is_remove_warning_msg警告:该课程将要被移去。您想把该课程保留为{0}吗?al_continue继续branch_mapping_dlg_condition_linked_msg{0}链接到一个已经存在的分支上,您要继续吗?branch_mapping_dlg_condition_linked_all有条件的branch_mapping_dlg_condition_linked_single此条件是opt_activity_seq_title可选序列act_seq_lock_chk在将该活动加入到可选序列之前,请将该可选序列解锁。to_condition_untitled_item_lbl无标题{0}redundant_branch_mappings_msg该设计包含将要被移去的未知的分支图,您想要继续吗?cv_activityProtected_activity_remove_msg要移去请不要将活动选择为{0}。pi_optSequence_remove_msg移去序列有可能会删除一些活动。您确信要移去这些序列吗?pi_no_seq_act无序列lbl_num_sequences{0}-序列activityDrop_optSequence_error_msg请将此活动移到某个序列中。cv_invalid_optional_seq_activity_no_branches在将{0}添加到一个可选序列之前,请移去与{0}相连的任何分支。ta_iconDrop_optseq_error_msg此容器中没有活动的序列。cv_invalid_optional_seq_activity在将{0}放到一个可选序列之前,请移去所有和{0}相连的链接。cv_invalid_optional_activity_no_branches在将{0}放到一个可选序列之前,请移去所有和{0}相连的分支。cv_activityProtected_activity_link_msg{0}链接到{1}上。cv_activityProtected_child_activity_link_msg{0}有一个链接到{1}的子链。optional_act_btn活动optional_seq_btn序列optional_seq_btn_tooltip创建一组可选序列。pi_optSequence_remove_msg_title正在移去序列。to_conditions_dlg_lt_lbl小于或等于branch_mapping_dlg_condition_col_value_min小于或等于{0}pi_act活动pi_seq序列about_popup_copyright_lbl© 2002-2008 {0} 基金。to_conditions_dlg_defin_item_fn_lbl{0} ({1})sequence_act_title_new{0} {1}to_conditions_dlg_defin_long_type范围to_conditions_dlg_defin_bool_type正确/错误to_conditions_dlg_condition_items_name_col_lbl名称to_conditions_dlg_condition_items_value_col_lbl条件to_conditions_dlg_options_item_header_lbl【选项】to_conditions_dlg_gte_lbl大于或等于to_conditions_dlg_lte_lbl小于或等于groupnaming_dialog_col_groupName_lbl组名称mnu_file_insertdesign插入/合并ws_dlg_insert_btn插入branch_mapping_dlg_branch_item_default{0}(默认)pi_group_matching_btn_lbl把组匹配到分支refresh_btn刷新pi_tool_output_matching_btn_lbl把条件匹配到分支al_activity_paste_invalid对不起,您不能粘贴这种类型的活动。to_conditions_dlg_condition_items_update_defaultConditions您将要更新您选定的输出定义的条件,这将要清除所有现存分支的链接,是否继续?branch_mapping_dlg_condtion_items_update_defaultConditions_zero因为没有发现用户定义条件,无法更新。可能需要在工具编写页面给予定义。to_conditions_dlg_defin_user_defined_type用户定义pi_branch_tool_acts_default--选项-- grouping_invalid_with_common_names_msg不能保存设计,因为组活动'{0}'有多于一组带有相同名字,请检查组后再试。preview_btn_tooltip_disabled要“预览”序列,需要先保存,然后点击“预览”condmatch_dlg_message_lbl通过点击期望分支属性区“默认”复选框,默认分支能被选中。cv_invalid_trans_diff_branches在不同分支上的活动之间不能创建过渡。cv_invalid_branch_target_to_activity到{0}的分支已经存在。cv_invalid_branch_target_from_activity从{0}发出的分支已经存在。cv_invalid_trans_closed_sequence不能连接一个新的过渡到封闭序列上。al_group_name_invalid_blank组名不能为空。al_cannot_move_to_diff_opt_seq在可选序列中移动的一个活动到不同序列,首先把活动拖出可选序列区,然后点击并拖动该活动到可选序列的新位置。cv_design_insert_warning一旦插入另一个序列后就无法取消这个行为——老序列在新序列插入式自动保存了。要回到老序列,需要先手工删除全部新序列活动,然后保存。要保留当前序列不变,点击“取消”。否则,点击“确定”选择一个序列插入。pi_max_act最大{0}pi_no_grouping无分组act_lock_chk在设定这个活动为可选之前,请先解除这个可选活动容器的锁定。lbl_num_activities{0} -活动pi_activity_type_sequence序列活动({0}) pi_condmatch_btn_lbl创建条件about_popup_trademark_lbl{0}是{0}基金( {1} )的注册商标。pi_num_learners学习者编号learner_choice_grp_lbl学习者的选择pi_equal_group_sizes组大小相同competence_editor_dlg权限编辑competences_lbl权限competence_editor_add_competence_btn添加权限competence_def_dlg权限定义对话框competence_editor_warning_title_exists该名称的权限已经存在competence_editor_warning_title_blank权限名称不能为空competence_editor_warning_competence_mapped你试图删除的权限目前正被映射到一个或多个活动。删除这个权限将会移除它的映射。你确定要继续吗?map_comptence_btn权限映射competence_mappings_btn权限——活动competences_mapped_to_act_lbl映射到一个活动的所有权限map_gate_conditions_btn条件——闸门状态(开/关)gate_mapping_auto_condition_msg剩下的所有条件将被映射到选定的关闭状态的闸门gate_open开门gate_closed关门al_activity_view_competence_mappings_invalid请确定您在查看权限映射之前已经选定了一个活动ws_dlg_date_modified_lbl最后修改时间ws_save_title_reserved_chars标题中不能含有特殊字符mnu_file_import_community从LAMS社区输入support_act_btn支持arrange_act_btn安排活动support_act_title支持活动view_students_before_selection在选择之前浏览学习者support_act_btn_tooltip创建可选择的支持活动的集合gradebook_output_type成绩册输出support_msg_no_connection支持的此活动与其它活动没有联系support_msg_invalid_child次活动类型{0}不能被添加为所支持的活动support_msg_max_children_reached不能从{0}删除活动。此支持的活动允许最大数量的{1}子活动support_msg_cannot_be_child不能删除一个支持的活动,如果此活动已经包含在另外一个活动中grp_chk_clear_branch_mappings警告:此操作将会清除已经存在的、与此组活动有关在分支地图的所有组,确定要继续吗? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/authoring/zh_TW_dictionary.xml 12 Jan 2010 01:19:32 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_invalid_optional_seq_activity_no_branches在將{0}添加到一個可選編程之前,請移除與{0}相連的任何分支Alert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msg此內容中沒有活動的編程Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_copyright_lbl2002-2009{0}基金會Label displaying copyright statement in About dialog.cv_invalid_optional_seq_activity將{0}放到一個選澤編程之前,請移去所有和{0}相連的鏈結。Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branches將{0}放到一個選澤編程之前,請移去所有和{0}相連的分支。Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_title選擇編程Title for Optional Sequences Container.to_conditions_dlg_lt_lbl小於或等於Less than option for long type conditions.branch_mapping_dlg_condition_col_value_min小於或等於{0}Value for Condition field in mapping datagrid when Less than option is selected.pi_act活動Min and max label postfix when an Optional Activity is selected.pi_seq編程Min and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_type範圍Type description for a long-value based ouput definition.to_conditions_dlg_defin_bool_type真/假Type description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[選擇輸出]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lbl名稱Column header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lbl狀態Column header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[選項]Header label value (first index) for tool long (range) options drop-down.about_popup_trademark_lbl{0}是{0}基金會的註冊商標({1})Label displaying the trademark statement in the About dialog.sequence_act_title_new{0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.ws_dlg_insert_btn插入Button label on Workspace in INSERT mode.close_mc_tooltip最小化Tooltip message for close button on Branching canvas.to_conditions_dlg_gte_lbl大於或等於Greater than or equal toto_conditions_dlg_lte_lbl小於或等於Less than or equal togroupnaming_dialog_col_groupName_lbl群組名稱Column label for editable datagrid in Group Naming dialog.mnu_file_insertdesign插入/合併Menu item label for Inserting a Learning Design.branch_mapping_dlg_branch_item_default{0}(預設)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.ld_val_activity_column活動The heading on the activity in the ValidationIssuesDialogpi_group_matching_btn_lbl分配群組到分支Button in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lbl分配狀態到分支Button in author that allows you to match conditions to branches for tool-output based branchingrefresh_btn重新整理Button label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditions您將要更新您選定的輸出定義的條件,這將要清除所有現存分支的鏈結,是否繼續?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zero因為沒有發現使用者定義條件,無法更新。可能需要在工具編寫頁面給予定義。Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_type使用者定義Type description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msg不能保存設計,因為組活動'{0}'有多於一組帶有相同名字,請檢查組後再試。Alert message displayed when the Grouping validation fails during saving a design.trans_dlg_title鏈接Title for the transition properties dialogact_tool_title活動工具箱Title for Activity Toolkit Panelal_alert提示Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm確認To Confirm title for LFErroral_ok確定OK on the alert dialogapp_chk_langload語言資料尚未載入message for unsuccessful language loadingapp_chk_themeload主題資料尚未載入message for unsuccessful theme loadingapp_fail_continue應用程式無法繼續,請聯繫支援窗口message if application cannot continue due to any errorcopy_btn複製Toolbar &gt; Copy Buttoncv_invalid_trans_target您不能建立轉移於這個物件Error message for when transition tool is dropped outside of valid target activitycv_show_validation議題The button on the confirm dialogdb_datasend_confirm謝謝傳送資料至伺服器Message when user sucessfully dumps data to the serverdelete_btn刪除Label for Delete buttongate_btnToolbar &gt; Gate Buttongroup_btn小組Toolbar &gt; Group Buttongrouping_act_title分組Default title for the grouping activityld_val_done完成The button label for the dialogld_val_issue_column議題The heading on the issue in the ValidationIssuesDialoglicense_not_selected目前沒有選定任何授權 - 請選擇一項Shown if no license is selected in the drop down in workspacemnu_edit編輯Menu bar Editmnu_edit_copy複製Menu bar Edit &gt; Copymnu_edit_paste貼上Menu bar Edit &gt; Pastemnu_edit_redo取消(復原)Menu bar Edit &gt; Redomnu_edit_undo復原Menu bar Edit &gt; Undomnu_file檔案Menu bar Filemnu_file_close關閉Menu bar Closemnu_file_new新增Menu bar Newmnu_file_open開啟Menu bar Openmnu_file_save儲存Menu bar savemnu_file_saveas另存新檔Menu bar Save asmnu_help求助Menu bar Helpmnu_help_abt關於LAMSMenu bar Aboutmnu_tools工具Menu bar Toolsmnu_tools_opt建立選項Menu bar Optionalmnu_tools_trans建立鏈接Menu bar draw transitionnew_btn新增Toolbar &gt; New Buttonnew_confirm_msg您確定要清除螢幕上的設計?Msg when user clicks new while working on the existing designnone_act_lblNo gate activity selectedopen_btn開啟Toolbar &gt; Open Buttonoptional_btn選項Toolbar &gt; Optional Buttonpaste_btn貼上Toolbar &gt; Paste Buttonperm_act_lbl許可Label for permission gate activitypi_activity_type_gate門活動Activity type for gate in PIpi_activity_type_grouping分組活動Activity type for grouping in Property Inspectorpi_end_offset關閉門End offset labelpi_group_type分組類型Property Inspector Grouping type drop downpi_hours小時Hours label in Property Inspectorpi_lbl_currentgroup目前分組Current grouping label for PIpi_lbl_desc描述Description Label for PIpi_lbl_group分組Grouping label for PIpi_lbl_title標題Title label for PIld_val_title確認議題The title for the dialogmnu_edit_cut剪下Menu bar Edit &gt; Cutcv_valid_design_saved恭喜!您的設計是有效的,而且已經儲存好了。Message when a valid design has been savedsave_btn_tooltip快速儲存目前的活動序列tool tip message for save button in toolbarcopy_btn_tooltip複製已選定的活動tool tip message for copy button in toolbarpaste_btn_tooltip貼上已複製的選定活動tool tip message for paste button in toolbartrans_btn_tooltip利用這枝筆在活動之間劃過渡符號(或按CTRL鍵)tool tip message for transition button in toolbaroptional_btn_tooltip建立一組選擇性活動tool tip message for optional button in toolbargate_btn_tooltip建立一個停止點tool tip message for gate button in toolbarbranch_btn_tooltip建立一個分支(限於LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltip建立流程控制活動tool tip message for flow button in toolbargroup_btn_tooltip建立一個分組活動tool tip message for group button in toolbarpreview_btn_tooltip以學習者身份預覽活動序列時將看到它Tool tip message for preview button in toolbaral_activity_copy_invalid抱歉!您必須先點選活動名稱,再按〈複製〉鈕Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasccm_open_activitycontent開啟/編輯活動內容Label for Custom Context Menuccm_copy_activity複製活動Label for Custom Context Menuccm_paste_activity貼上活動Label for Custom Context Menuccm_pi屬性檢閱Label for Custom Context Menumnu_file_exit結束File Menu Exital_activity_openContent_invalid抱歉!您必須先選擇活動,才能按開啟/編輯活動內容功能alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_design_export_unsaved您不能匯出為儲存的設計Alert message when trying to export can unsaved design.mnu_file_export匯出Menu bar Exportcv_close_return_to_ext_src關閉並回到 {0}Button label used on close and return button in save confirm message popup.pi_mins分鐘Mins label in teh property inspectorpi_no_groupingCombo title for no groupingpi_optional_title選擇性活動Title for oprional activity property inspectorpi_start_offset開啟門Start offset labelpi_title屬性On the title bar of the PIprefix_copyof副本Prefix for copy paste command for canvas activitiesprefs_dlg_cancel取消6prefs_dlg_lng_lbl語言7prefs_dlg_ok確定5prefs_dlg_theme_lbl主題8preview_btn預覽Toolbar &gt; Preview Buttonproperty_inspector_title屬性On the title bar of the PIrandom_grp_lbl隨機Label for the grouping drop down in the PropertyInspectorrename_btn重新命名Label for Rename Buttonsave_btn儲存Toolbar &gt; Save buttonsched_act_lbl時程Label for schedule gate activitysynch_act_lbl同步化Used as a label for the Synch Gate Activity Typetk_title活動工具箱Label for Activities Toolkit Paneltrans_btn鏈接Toolbar &gt; Transition Buttontrans_dlg_cancel取消Cancel button on transition dialogtrans_dlg_gate同步Header for the transition props dialogtrans_dlg_gatetypecmb類型Gate type combo labeltrans_dlg_ok確定OK Button on transition dialogws_Root根目錄Root folder title for workspacews_chk_overwrite_resource警告:您正要覆寫此系列ws_click_folder_file請點選一個要儲存的檔案夾,或欲覆寫的設計Error msg if no folder or file is selectedws_copy_same_folder來源與目的檔案夾相同The user has tried to drag and drop to the same placews_dlg_cancel_button取消2ws_dlg_filename檔案名稱Label for File name in workspace windowws_dlg_location_button位置Workspace dialogue Location btn labelws_dlg_ok_button確定Wsp Dia OK Button labelws_dlg_open_btn開啟Wsp Dia Open Button labelws_dlg_properties_button屬性Workspace dialogue Properties btn labelws_dlg_save_btn儲存Wsp Dia Save Button labelws_dlg_title工作空間0ws_newfolder_cancel取消Cancel on the new folder name diaws_newfolder_ins請輸入新的檔案夾名稱Instructions on the new name pop upws_newfolder_ok確定OK on the new folder name diaws_no_permission抱歉!您沒有寫入許可Message when user does not have write permission to complete actionws_rename_ins請輸入新的名稱Message of the new name for the userws_tree_mywsp我的工作空間The root level of the treews_tree_orgs我的小組Shown in the top level of the tree in the workspacews_view_license_button檢視To show the license to the usersys_error_msg_start發生以下系統錯誤Common System error message starting linesys_error_msg_finish您可能需要重新啟動LAMS Author 繼續編寫工作。您是否要儲存以下關於錯誤的訊息以幫助解決這個問題Common System error message finish paragraphsys_error系統錯誤System Error elert window titleal_send送出Send button label on the system error dialogpi_daysDays label in property inspector for gate toolopt_activity_title選擇性活動Title for Optional Activity Containerws_license_lbl授權Label for Licence drop down on workspace properties tab viewws_license_comment_lbl額外的授權資訊Label for Licence Comment description below license drop downal_cannot_move_activity抱歉!您不能移動這個活動Alert message when user tries to move child activity of any parallel activitymnu_help_help編寫說明label for menu bar Help - Authoring Help optionccm_author_activityhelp編寫活動說明Label for Custom Context Menuws_del_confirm_msg您真的要刪除這個檔案/檔案夾?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_open請點選欲開啟的活動Alert message if folder tried to be opened.cv_invalid_optional_activity設定為選擇性活動之前,要先移除{0} 的過渡Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missing過渡的第二個活動不見了Error message when target activity for transition is missingpi_num_groups小組數目Number of groups in Property inspectorcv_activity_copy_invalid抱歉,您不能複製這個子活動Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalid抱歉!您不能剪去這個子活動Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activity過渡到{0} 已經存在Error message when a transition to the activity already existcv_design_unsaved畫布上的設計已經改變。不儲存而繼續嗎? Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltip清除目前序列,重設工作空間備用Tool tip message for new button in toolbaropen_btn_tooltip顯示檔案對話框以開啟活動序列Tool tip message for open button in toolbarws_chk_overwrite_existing這個檔案夾已經包含一個稱為{0}的檔案Alert message when saving a design with the same filename as an existing design.ws_no_file_open找不到檔案Alert message if no matching file is found to open in selected folder of Workspace.branch_btn分支Label for disabled Branch button shown as submenu for flow button in Toolbarflow_btn流程Label for Flow button in Toolbarmnu_file_import匯入Menu bar Importws_click_virtual_folder不能使用這個檔案夾Alert message for trying to use a virtual folder to save/open a file.pi_parallel_title平行活動Title for parallel activity property inspectorcv_invalid_trans_circular_sequence不允許有迴圈存在 Error message when a transition from one activity to another is creating a circular loopbin_tooltip將一個活動拖到這個垃圾箱,從而將它從活動序列中移除 Tool tip message for canvas bincv_gateoptional_hit_chk您不能加入一個門活動當作選擇性活動Error message when user drags gate activity over to optional containerprefix_copyof_count({0}) 的副本Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalid您不能儲存設計於這個檔案夾,請選擇一個合法的次檔案夾Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activity從{0}的過渡已經存在Error message when a transition from the activity already existws_entre_file_name請輸入設計名稱,然後按〈儲存〉鈕Error message when user try to save a design with no file namecv_activity_helpURL_undefined找不到{0}的求助網頁Alert message when a tool activity has no help url defined.ws_dlg_description描述Label for description in Workspace dialog - Properties tabtrans_dlg_nogateDrop down default for gate typecv_activity_dbclick_readonly您不能編輯唯讀設計的工具,請儲存一份設計副本再嘗試看看!Alert message when double-clicking an Activity in an open read-only designcv_readonly_lbl唯讀Label for top left of canvas shown when a read-only design is open.ws_file_name_empty抱歉!您不能儲存設計如果沒有檔案名稱Error message when user try to save a design with no file namecv_untitled_lbl無標題-1Label for Design Title bar on canvasal_empty_design抱歉!您不能儲存空的設計alert message when user want to save an empty designcv_autosave_rec_msg您只能恢復最後失掉或未儲存設計,您目前的設計將被清除,要繼續?Message informing users that they have recovered data for a design.cv_autosave_rec_title警告Alert title for auto save recovery message.mnu_file_recover恢復Menu bar Recoveral_activity_paste_invalid你無法貼上這類的活動Alert message when user is attempting to paste a unsupported activity type.to_conditions_dlg_from_lblLabel for start value in condition range for long or numeric output values.about_popup_license_lbl這個軟體是自由軟體;在自由軟體基金會GNU一般公共授權版本2的規範下,你可以分送或修改。Label displaying the license statement in the About dialog.preview_btn_tooltip_disabled要預覽序列,需要先保存,然後按下預覽Tool tip message for preview button in toolbar when button is disabled.stream_reference_lbl學習活動管理系統Reference label for the application stream.gpl_license_url www.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_title分支Label for Branching Activityto_conditions_dlg_to_lblLabel for end value in condition range for long or numeric output values.cv_activityProtected_activity_remove_msg要移除請取消選取這個活動如{0}Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg這個{0}連結到一個{1}Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg這個{0}有個子項連結到{1}Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_max大於或等於{0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btn活動Toolbar button for Optional Activity.optional_seq_btn編程Toolbar button for Sequences within Optional Activity.mnu_file_apply_changes使用改變參數Apply Changesoptional_seq_btn_tooltip建立一套選擇性編程Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_title移除編程Removing sequencespi_optSequence_remove_msg移除的編程包含活動將被刪除。你要移除編程嗎?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_act編成的號碼Label on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0}-編程Label to describe the amount of sequences in the container.activityDrop_optSequence_error_msg請將此活動移至其中ㄧ個編程Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.condmatch_dlg_message_lbl通過點擊分支屬性區“預設"選取方塊,預設分支可被選中Label for a message in the Condition to Branch matching dialog.cv_design_insert_warning一旦插入另一個編程後就無法取消——舊編程在新編程插入時自動保存了。要回到舊編程,需要先手動刪除全部新編程活動,然後保存。要保留當前編程不變,按下“取消”。否則,點擊“確定”選擇一個編程插入。Warning message when merge/insertpi_defaultBranch_cb_lbl預設CheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ 增加Label for button to add a condition.to_conditions_dlg_clear_all_btn_lbl清除全部Label for button to clear all conditions.act_seq_lock_chk在指定活動給選擇編程前請先解除操作編程內容Alert Message if user drags the activity to locked optional sequences container.branch_mapping_dlg_condition_linked_single這個狀況是Phrase used at start of linked conditions alert message when clearing a single entry.cv_eof_changes_applied更改已成功設定Changes have been successful applied.validation_error_transitionNoActivityBeforeOrAfter轉場之間必須要有一個活動事件A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransition一個活動事件必須要有一個輸入或輸出的轉場An activity must have an input or output transitionvalidation_error_inputTransitionType1這個活動事件沒有輸入轉場This activity has no input transitionvalidation_error_inputTransitionType2沒有任何活動事件遺漏輸入轉場No activities are missing their input transition.validation_error_outputTransitionType1這個活動事件沒有輸入轉場This activity has no output transitionvalidation_error_outputTransitionType2沒有任何活動事件遺漏輸出轉場No activities are missing their output transition.cv_invalid_design_on_apply_changes無法更改。一個或多個轉場遺漏Cannot apply changes. There are one or more transitions missing.apply_changes_btn套用更改Apply Changesapply_changes_btn_tooltip套用設計更改並回到監督課程tool tip message for save button in toolbarcancel_btn取消Toolbar - Cancel Buttoncv_activity_readOnly活動事件不可為{0}。這個活動事件為唯讀。 Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lbl即時編輯Label for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_del移除Action label for read only alert message for a Canvas Transition.cv_element_readOnly_action_mod修改Action label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msg設計必須有效以便完成編輯Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msg警告:你的設計已經被更改,你要放棄儲存並關閉嗎?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnly轉場不能為{0}。轉場目標為唯讀。Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltip回到監督課程tool tip message for cancel button in toolbar (edit mode)mnu_file_finish完成Menu bar File - Finish (Edit Mode)about_popup_title_lbl關於-{0}Title for the About Pop-up window.pi_activity_type_sequence編程活動({0})Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lbl按其中ㄧ個名字去更改它的值Instructions for Group Naming dialog.pi_branch_tool_acts_lbl輸入(工具)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.branch_mapping_no_branch_msg未選取分支Alert message when adding a Mapping without a Branch (Sequence) being selected.al_done完成Label for dialog completion button.to_conditions_dlg_remove_item_btn_lbl移除Label for button to remove condition.to_conditions_dlg_range_lbl範圍Heading label for section in the dialog to set numeric condition range.pi_condmatch_btn_lbl建立狀態Label for button to open dialog to create output conditions.to_conditions_dlg_title_lbl建立輸出狀態Dialog title for creating new tool output conditions.condmatch_dlg_cond_lst_lbl狀態Label for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lbl配對狀態到分支Dialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl狀態Column heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lbl群組Column heading for showing group name of the mapping.branch_mapping_no_mapping_msg沒有選擇映圖Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msg沒有選擇狀態Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msg所有剩下的狀態將會映圖到預設的分支Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lbl映圖Heading label for Mapping datagrid.branch_mapping_dlg_condition_col_value範圍{0}到{1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exact{0}的正確值Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lbl設定映圖Label for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lbl定義在監督畫面Checkbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lbl對應群組到分支Map Groups to Branchesbranch_mapping_no_groups_msg沒有選擇群組Alert message when adding a Mapping without a Group being selected.group_branch_act_lbl群組基礎Branching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lbl分支Label for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lbl群組Label for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lbl群組命名Title label for Group Naming dialog.pi_activity_type_branching分支活動Activity type for Branching in Property Inspector.pi_branch_type分支類別Property Inspector Branching type drop down.pi_group_naming_btn_lbl命名群組Label for button that opens Group Naming dialog.sequence_act_title編序Default title for Sequence Activity.tool_branch_act_lbl學習者輸出Branching type label for Tool output Branching.chosen_branch_act_lbl教師選擇Branching type label for Teacher choice Branching.to_condition_start_value起始值Value representing the min boundary value of the conditions range.to_condition_end_value結束值Value representing the max boundary value of the conditions value.to_condition_invalid_value_range這項{0}不可在已存在狀況的範圍內Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction這個{0}不可大於{1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msg警告:這個課程將移除。你是否要保留課程為{0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continue繼續Continue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0}連結到既有的分支。你要繼續嗎?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_all有些狀態Phrase used at start of linked conditions alert message when clearing all.pi_branch_tool_acts_default--選項-- Default item label for Input Tool dropdown list.cv_invalid_trans_diff_branches無法在不同分支活動間建立轉場Error message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activity分支到{0}已經存在Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activity分支從{0}已經存在Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequence無法連接到新的轉場道已經關閉的編程Error message displayed after drawing a transition from an activity in a closed sequence.al_group_name_invalid_blank群組名稱不可為空白Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existing群組名稱必須為不同Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different grouplearner_choice_grp_lbl學習者的選擇A type of grouping where the learner picks which group they'd like to be incompetence_editor_dlg能力編輯Dialog for adding/editing/removing competencescompetences_lbl能力Label in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btn加入Add competence buttoncompetence_def_dlg能力定義對話框Title for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_exists含有標題的能力{0}已經存在Warning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blank此能力標題不可為空白Warning message when you try to define a competence with a blank competence titlemap_comptence_btn映圖到能力Label for button that invokes the Competence Mappings dialogcompetence_mappings_btn能力映圖Title for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lbl能力Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btn映圖入口情形Button to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msg所有其他的狀態將會映圖到選取的入口關閉狀況Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_open開啟Open state for gate activity, allows learners to pass through itgate_closed關閉Closed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalid再檢視完整映圖前請確認你已經選取一項活動Warning that appears when no activity is selected when the user tries to view competence mappingsws_dlg_date_modified_lbl最後更正:{0}Show the last modified datetime of the selected design in the workspacews_save_title_reserved_chars標題不可包含特殊字元Error alert when trying to save with a title containing illegal characters.pi_equal_group_sizes群組大小相同Checkbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalal_cannot_move_to_diff_opt_seq在可選編程中移動的一個活動到不同編程,首先把活動拖出可選編程區,然後按下並拖動該活動到可選編程的新位置。Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitycompetence_editor_warning_competence_mapped你試圖刪除的許可權目前正被映射到一個或多個活動。刪除這個許可權將會移除它的映射。你確定要繼續嗎?Warning message when you attempt to delete a competence that is mapped to one or more activities.act_lock_chk請先打開選擇性活動容器,才能將活動設為選擇性活動Alert Message if user drags the activity to locked optional activity container cv_invalid_design_saved您的設計尚未有效,但已經儲存,請按'議題'鈕查明錯誤處Message when an invalid design has been savedmnu_tools_prefs偏好Menu bar preferenceschosen_grp_lbl選擇被監視中Label for the grouping drop down in the PropertyInspectorlbl_num_activities{0}-活動replacement for word activitiespi_definelater之後再定義Label for Define later for PIpi_min_act最小活動或編程{0}Label for minimum Activities or Sequencesprefs_dlg_title偏好4pi_max_act最大活動數{0}Label for maximum Activities or Sequencesto_condition_untitled_item_lbl未命名The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msg將會移除設計中未使用的分支映圖。你要繼續嗎?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.pi_num_learners學習者數目PI Num learners labelpi_runoffline離線活動Label for Run Oflinecv_autosave_err_msg自動儲存設計時發生錯誤,如果錯誤一直發生,請增加你的Flash播放器的儲存設定。Alert error message when auto-save fails. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ar_JO_dictionary.xml 12 Jan 2010 01:19:41 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sp_save_lblاحفظLabel for Save buttonsp_view_tooltipاعرض جميع مدخلات دفتر الملاحظاتtool tip message for view all buttonsp_save_tooltipاحفظ مدخلات دفتر ملاحظاتكtool tip message for save buttonsp_title_lblالعنوانLabel for title field of scratchpad (notebook)sp_panel_lblدفتر الملاحظاتLabel for panel title of scratchpad (notebook)hd_resume_lblتابعLabel for Resume buttonhd_exit_lblخروجLabel for Exit buttonln_export_btnتصديرLabel for Export buttonsys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج الى اعاده بدء نافذه المتصفح للمواصله. هل ترغب بلحفض المعلومات التاليه عن الخطا لمساعدتنا في تحديد المشكله؟ Common System error message finish paragraphsys_errorخطأ في النظامSystem Error alert window titleal_alertتحذيرGeneric title for Alert windowal_cancelالغاءCancel on alert dialogal_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on alert dialogal_validation_act_unreachedلم تصل لهذا النشاط لتفتحهAlert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipاقفز لنشاطك التاليtool tip message for resume buttonhd_exit_tooltipاغلق بيئة المتعلم و نافذة المتصفحtool tip message for exit buttonln_export_tooltipصدر اضافاتك إلى لتصميمtool tip message for export buttoncompleted_act_tooltipانقر مرتين لمراجعة النشاط الكاملtool tip message for completed activity iconcurrent_act_tooltipانقر مرتين للمشاركة في النشاط الحالي tool tip message for current activity iconal_doubleclick_todoactivityعفوا،لم تصل الى هذا النشاط بعدalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblاعرض الكل Label for View All button \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/cy_GB_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblAil-ddechrauLabel for Resume buttonhd_exit_lblGadaelLabel for Exit buttonln_export_btnAllforioLabel for Export buttonsys_error_msg_startMae’r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd angen i chi ail-ddechrau ffenestr y porwr i barhau. Ydych chi eisiau cadw’r wybodaeth ganlynol am y gwall hwn i ddatrys y broblem hon?Common System error message finish paragraphsys_errorGwall SystemSystem Error alert window titleal_alertRhybuddGeneric title for Alert windowal_cancelCansloCancel on alert dialogal_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on alert dialogal_validation_act_unreachedNi allwch agor y Gweithgaredd oherwydd nad ydych wedi ei gyrraedd eto.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipNeidio i’ch gweithgaredd cyfredoltool tip message for resume buttonhd_exit_tooltipGadael Amgylchedd y Dysgwr a chau ffenestr y porwrtool tip message for exit buttonln_export_tooltipAllforio’ch cyfraniadau i’r wers hontool tip message for export buttoncompleted_act_tooltipClicio dwywaith i adolygu’r gweithgaredd gorffenedig hwntool tip message for completed activity iconcurrent_act_tooltipClicio dwywaith i gymryd rhan yn y gweithgaredd cyfredoltool tip message for current activity iconal_doubleclick_todoactivityNid ydych wedi cyrraedd y gweithgaredd hwn etoalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblGweld PopethLabel for View All buttonsp_save_lblCadwLabel for Save buttonsp_view_tooltipGweld pob cofnod nodfwrddtool tip message for view all buttonsp_save_tooltipCadw’ch cofnod nodfwrddtool tip message for save buttonsp_title_lblTeitlLabel for title field of scratchpad (notebook)sp_panel_lblNodfwrddLabel for panel title of scratchpad (notebook)al_timeoutRhybudd! Ni ellir cymhwyso data cynnydd nes bod y llwytho wedi gorffen. Cliciwch Iawn i barhau i lwytho.Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/da_DK_dictionary.xml 12 Jan 2010 01:19:34 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblFortsætLabel for Resume buttonhd_exit_lblExitLabel for Exit buttonln_export_btnEksportérLabel for Export buttonsys_error_msg_startFølgende systemfejl er opstået:Common System error message starting linesys_error_msg_finishDu skal genstarte browseren for at fortsætte. Ønsker du at gemme følgende information om fejlen med henblik på at løse problemet?Common System error message finish paragraphsys_errorSystem fejlSystem Error alert window titleal_alertNB!Generic title for Alert windowal_cancelAnnullérCancel on alert dialogal_confirmBekræftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedDu kan ikke åbne aktiviteten, da du ikke er nået til den endnu.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipGå til din igangværende aktivitettool tip message for resume buttonhd_exit_tooltipForlad brugerområdet og luk browservinduettool tip message for exit buttonln_export_tooltipEksportér dit bidrag til denne lektiontool tip message for export buttoncompleted_act_tooltipDobbeltklik for at se den gennemførte aktivitettool tip message for completed activity iconcurrent_act_tooltipDobbelklik for at deltage i den igangværende aktivitettool tip message for current activity iconal_doubleclick_todoactivityBeklager, du er ikke nået til denne aktivitet endnualert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVis alleLabel for View All buttonsp_save_lblGemLabel for Save buttonsp_view_tooltipVis alle notertool tip message for view all buttonsp_save_tooltipGem din notetool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotesbogLabel for panel title of scratchpad (notebook)al_timeoutAdvarsel! Yderligere data kan ikke tilføjes før indlæsning er færdig. Klik på "OK" for at fortsætte indlæsningAlert message for timeout error when loading learning design.al_sendSendSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/de_DE_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblWeiterLabel for Resume buttonhd_exit_lblBeendenLabel for Exit buttonln_export_btnExportLabel for Export buttonsys_error_msg_startEs ist ein Systemfehler aufgetreten:Common System error message starting linesys_error_msg_finishStarten Sie den Browser neu, um fortzusetzen. Wollen Sie eine Information über den aufgetretenen Fehler speichern, damit das Problem behoben werden kann?Common System error message finish paragraphsys_errorSystemfehlerSystem Error alert window titleal_alertWarnung, HinweisGeneric title for Alert windowal_cancelAbbrechenCancel on alert dialogal_confirmBestätigenTo Confirm title for LFErroral_okOKOK on alert dialoghd_resume_tooltipDirekt zur derzeitigen Aktivitättool tip message for resume buttonhd_exit_tooltipLernumgebung verlassen und Browserfenster schließentool tip message for exit buttonln_export_tooltipExport Ihrer Beiträge in dieser Lektiontool tip message for export buttoncompleted_act_tooltipDoppelklick für Rückblick auf diese abgeschlossene Aktivitättool tip message for completed activity iconcurrent_act_tooltipDoppelklick zur Teilnahme an der derzeitigen Aktivitättool tip message for current activity iconal_doubleclick_todoactivitySorry, Sie haben diese Aktivität noch nicht erreicht.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblAlle ansehenLabel for View All buttonsp_save_lblSpeichernLabel for Save buttonsp_view_tooltipAlle Notizbucheinträge ansehentool tip message for view all buttonsp_save_tooltipNotizbucheintrag speicherntool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotizbuchLabel for panel title of scratchpad (notebook)al_timeoutHinweis: Die Fortschrittsdaten können nicht angezeigt werden, bevor die Daten verarbeitet wurden. Klicken Sie auf OK um fortzustezen.Alert message for timeout error when loading learning design.al_validation_act_unreachedDiese Aktivität können Sie erst später nutzen.Alert message when clicking on an unreached activity in the progess bar.al_sendSendenSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/el_GR_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_act_reached_maxΟ μέγιστος αριθμός προαιρετικών δραστηριοτήτων έχει ήδη επιτευχθεί.pres_dataproviderloading_lblΦόρτωση παρουσίας ...al_timeoutΠροειδοποίηση!Η πρόοδος των δεδομένων δεν μπορεί να εφαρμοστεί μέχρις ότου να τελειώσει η φόρτωση. Κάντε κλικ στο ΟΚ για να συνεχιστεί η φόρτωσηsp_save_lblΑποθήκευσηhd_resume_lblΕπανάληψηhd_exit_lblΈξοδοςln_export_btnΕξαγωγήal_cancelΑκύρωσηal_confirmΕπιβεβαίωσηal_okΟΚsp_panel_lblΣημειωματάριοal_doubleclick_todoactivityΛυπούμαστε, δεν έχετε τελείωσατε τη δραστηριότητα ακόμηcurrent_act_tooltipΔιπλό κλικ για να συμμετάσχετε στην τρέχουσα δραστηριότηταcompleted_act_tooltipΔιπλο κλικ για την ανασκόπηση αυτης της συμπληρωμένης δραστηριότηταςln_export_tooltipΕξαγωγή της συνεισφοράς σας στο μάθημα αυτόsys_error_msg_startένα ακόλουθο λάθος συστήματος έχει συμβείsys_error_msg_finishΜπορεί να χρειαστείτε επαννεκίνηση του παραθύρου του φυλλομετρητή γαι να συνεχίσετε. Θέλετε να αποθηκεύσετε τις ακόλουθες πληροφορίες για το λάθος αυτό έτσι ώστε α βοηθηθείτε στην επίλυση του προβλήματος;sys_errorΛάθος συστήματοςal_validation_act_unreachedΔεν μπορείτε να ανοίξετε τη Δραστηριότητα αφού δεν έχετε φθάσει ακόμηal_sendΑποστολήsynchronise_gate_tooltipΑυτή η Πόρτα θα ανοίξει μόνο όταν όλοι εκπαιδευόμενοι φθάσουν σε αυτό το σημείο. hd_exit_tooltipΈξοδος από το Περιβάλλον του Εκπαιδευόμενου και κλείσιμο του παραθύρου του φυλλομετρητή ιστού.pres_colnamelearners_lblΕκπαιδευόμενοιsp_view_lblΠροβολή όλωνhd_resume_tooltipΜετάβαση στην τρέχουσα δραστηριότητά σαςschedule_gate_tooltipΑυτή η Πόρτα θα ανοίξει σε {0}.not_attempted_act_tooltipΧρειάζεται να συμπληρώσετε τις δραστηριότητες πριν από αυτή τη δραστηριότητα για να έχετε πρόσβαση σε αυτή. al_alertΕιδοποίησηpermission_gate_tooltipΔεν μπορείτε να περάσετε αυτή την Πόρτα μέχρι να σας αφήσει ο καθηγητής σας. pres_panel_lblΠαρουσίαsp_title_lblΤίτλοςsupport_acts_titleΔραστηριότητες Υποστήριξηςsupport_act_tooltipΚάντε διπλό κλικ για να συμμετάσχετε σε αυτή τη δραστηριότητα υποστήριξηςsp_view_tooltipΠροβολή όλων των καταχωρήσεων του σημειωματαρίουsp_save_tooltipΑποθήκευση της καταχώρησης του σημειωματαρίου σας. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/en_AU_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumehd_exit_lblExitln_export_btnExportal_validation_act_unreachedYou can't open the Activity as you haven't reached it yet.sys_error_msg_startA following system error has occurred:sys_errorSystem Erroral_alertAlertal_cancelCancelal_confirmConfirmal_okOKsys_error_msg_finishYou may need to re-start this browser window to continue. Do you want to save the following information about this error to help fix this problem?hd_resume_tooltipJump to your current activityhd_exit_tooltipExit the Learner Environment and close the browser windowln_export_tooltipExport your contributions to this lessoncompleted_act_tooltipDouble click to review this completed activitycurrent_act_tooltipDouble click to participate in the current activityal_doubleclick_todoactivitySorry, you have not reached this activity yetsp_save_tooltipSave your notebook entrysp_title_lblTitlesp_view_lblView Allsp_save_lblSavesp_view_tooltipView all notebook entriessp_panel_lblNotebooksupport_acts_titleSupport Activitiessupport_act_tooltipDouble click to participate in this support activityal_timeoutWarning! Progress data cannot be applied until loading has finished. Click OK to continue loadingal_sendSendpermission_gate_tooltipYou can't move past this Gate until the teacher releases it.schedule_gate_tooltipThis Gate will be opened on {0}.synchronise_gate_tooltipThis Gate will only be released once all learners reach this point.not_attempted_act_tooltipYou need to complete the activities before this activity to access it.al_act_reached_maxThe maximum number optional activities has already been reached.pres_panel_lblPresencepres_colnamelearners_lblLearnerspres_dataproviderloading_lblLoading presence... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/en_dictionary.xml 12 Jan 2010 01:19:37 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumehd_exit_lblExitln_export_btnExportal_validation_act_unreachedYou can't open the Activity as you haven't reached it yet.sys_error_msg_startA following system error has occurred:sys_errorSystem Erroral_alertAlertal_cancelCancelal_confirmConfirmal_okOKsys_error_msg_finishYou may need to re-start this browser window to continue. Do you want to save the following information about this error to help fix this problem?hd_resume_tooltipJump to your current activityhd_exit_tooltipExit the Learner Environment and close the browser windowln_export_tooltipExport your contributions to this lessoncompleted_act_tooltipDouble click to review this completed activitycurrent_act_tooltipDouble click to participate in the current activityal_doubleclick_todoactivitySorry, you have not reached this activity yetsp_save_tooltipSave your notebook entrysp_title_lblTitlesp_view_lblView Allsp_save_lblSavesp_view_tooltipView all notebook entriessp_panel_lblNotebooksupport_acts_titleSupport Activitiessupport_act_tooltipDouble click to participate in this support activityal_timeoutWarning! Progress data cannot be applied until loading has finished. Click OK to continue loadingal_sendSendpermission_gate_tooltipYou can't move past this Gate until the teacher releases it.schedule_gate_tooltipThis Gate will be opened on {0}.synchronise_gate_tooltipThis Gate will only be released once all learners reach this point.not_attempted_act_tooltipYou need to complete the activities before this activity to access it.al_act_reached_maxThe maximum number optional activities has already been reached.pres_panel_lblPresencepres_colnamelearners_lblLearnerspres_dataproviderloading_lblLoading presence... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/es_ES_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeout¡Atención!: El procesamiento no puede realizarse hasta que la ejecución no haya finalizado. Pulse OK para continuar con la ejecución.al_validation_act_unreachedNo puede acceder a esta actividad ya que todavía no ha llegado a la misma.sys_error_msg_finishNecesita reiniciar esta ventana para continuar. ¿Desea salvar la siguiente información sobre este error para ayudar a resolver este problema?hd_resume_lblContinuarhd_exit_lblSalirln_export_btnExportarsys_error_msg_startEl siguiente error de sistema ha ocurrido:sys_errorError de Sistemaal_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okOKhd_resume_tooltipVolver a la actividad actualcompleted_act_tooltipDoble click para revisitar actividad current_act_tooltipDoble click para participar en actividadhd_exit_tooltipSalir de la lección y cerrar ventanasupport_acts_titleActividades de Soportesupport_act_tooltipPresione dos veces para entrar en esta actividadal_doubleclick_todoactivityTodavía no ha llegado a esta actividadsp_save_lblGuardarsp_view_tooltipVer todas las notassp_save_tooltipGuardar tu notasp_title_lblTítulosp_view_lblVer Todossp_panel_lblAnotacionesal_sendEnviarln_export_tooltipExportar Portfolio de esta lecciónpres_panel_lblAlumnos onlinepermission_gate_tooltipNo puede avanzar hasta que el profesor asi lo disponga.schedule_gate_tooltipEsta puerta se abrirá el {0}.not_attempted_act_tooltipDebe completar las actividades anteriores a esta actividad para poder acceder esta.al_act_reached_maxYa se ha alcanzado el número máximo de actividades opcionales.pres_colnamelearners_lblAlumnospres_dataproviderloading_lblCargando alumnos online...synchronise_gate_tooltipEsta puerta se abrirá cuando todos los estudiantes hayan llegado hasta este punto. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/fr_FR_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pres_panel_lblPrésencepres_colnamelearners_lblApprenantspres_dataproviderloading_lblChargement de présence ...not_attempted_act_tooltipVous devez compléter toutes les activités antérieures avant de pouvoir accéder à cette activitésupport_act_tooltipDouble clic pour participer dans cette activité de soutienhd_resume_tooltipRetour à l'activité en coursal_validation_act_unreachedVous ne pouvez pas ouvrir cette activité car vous n'y êtes pas encore arrivé.al_doubleclick_todoactivityVous n'avez pas encore atteint cette activité...current_act_tooltipDouble-cliquez pour participer à l'activité en courssupport_acts_titleActivités de soutiencompleted_act_tooltipDouble-cliquez pour revoir cette activité terminéesp_view_lblAfficher toutsp_view_tooltipAfficher toutes les entrées du calepinhd_resume_lblRevenirhd_exit_lblSortirln_export_btnExportersys_error_msg_startL'erreur système s'est produite:sys_errorErreur systèmeal_alertAlerteal_cancelAbandonal_confirmConfirmeral_okOKhd_exit_tooltipQuitter l'environnement Apprenant et fermer la fenêtre du navigateurln_export_tooltipExporter vos contributions à cette leçonsp_title_lblTitreal_timeoutAttention! Les données de progression ne peuvent pas être appliquées avant la fin du chargement. Cliquez Ok pour continuer le chargemental_sendEnvoyerschedule_gate_tooltipCette porte va s'ouvir le {0}synchronise_gate_tooltipCette porte va s'ouvrir seulement lorsque tous les apprenants arrivent ici.sp_panel_lblCalepinsp_save_tooltipEnregistrer votre note du calepinpermission_gate_tooltipVous ne pouvez pas rentrer avant que l'enseignant vous autorise.al_act_reached_maxLe nombre maximal d'activités optionnelles à été atteintsys_error_msg_finishIl se peut que vous deviez ré-ouvrir ce navigateur pour continuer. Voulez-vous sauvegarder les informations suivantes concernant cette erreur pour aider à la résoudre?sp_save_lblEnregistrer \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/hu_HU_dictionary.xml 12 Jan 2010 01:19:37 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblFolytatásLabel for Resume buttonhd_exit_lblKilépésLabel for Exit buttonln_export_btnExportálásLabel for Export buttonsys_error_msg_startA következő hiba történt: Common System error message starting linesys_errorRendszerhibaSystem Error alert window titleal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseCancel on alert dialogal_confirmJóváhagyásTo Confirm title for LFErroral_okOKOK on alert dialoghd_resume_tooltipUgrás az aktuális tevékenységretool tip message for resume buttonhd_exit_tooltipKilépés a tanulási környezetből és a böngésző bezárásatool tip message for exit buttoncurrent_act_tooltipKattintson duplán a tevékenységben való részvételheztool tip message for current activity iconsp_save_lblMentésLabel for Save buttonsp_view_tooltipAz összes jegyzetfüzet bejegyzés megjelenítésetool tip message for view all buttonsp_save_tooltipJegyzettömb bejegyzés mentésetool tip message for save buttonsp_title_lblCímLabel for title field of scratchpad (notebook)sp_panel_lblJegyzetfüzetLabel for panel title of scratchpad (notebook)al_doubleclick_todoactivitySajnálom, még nem érkezett el ehhez a tevékenységhez.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblMindent mutatLabel for View All buttonal_timeoutFigyelem! Nem használhatja az épp toltődő adatokat, amíg teljesen be nem töltődtek. Kattintson az OK gombra a betöltés folytatásához!Alert message for timeout error when loading learning design.al_sendKüldésSend button label on the system error dialogsys_error_msg_finishA folytatáshoz újra kellene indítania ezt a böngésző-ablakot. El szeretné menteni az alábbi tájékoztatást erről a hibáról a probléma megoldásának érdekében?Common System error message finish paragraphal_validation_act_unreachedNem nyithatja meg a tevékenységet, mivel még nem érkezett el ideAlert message when clicking on an unreached activity in the progess bar.ln_export_tooltipExportálja a hozzájárulásait ehhez a leckéheztool tip message for export buttoncompleted_act_tooltipDupla kattintással újra megnézheti ezt a befejezett tevékenységettool tip message for completed activity icon \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/it_IT_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutAttenzione! Devi attendere che finisca il caricamento. Clicca su OK per continuare.Alert message for timeout error when loading learning design.sys_error_msg_finishPotete avere bisogno di riavviare il browser per continuare. Desiderate conservare le seguenti informazioni su questo errore per contribuire a riparare questo problema?Common System error message finish paragraphsp_save_lblSalvaLabel for Save buttonal_okOKOK on alert dialoghd_resume_tooltipPassate alla vostra attività correntetool tip message for resume buttonhd_exit_tooltipUscire dalla Gestione Studenti e chiudere la finestra di browsertool tip message for exit buttonhd_resume_lblRiassuntoLabel for Resume buttonhd_exit_lblEsciLabel for Exit buttonln_export_btnEsportaLabel for Export buttonsp_title_lblTitoloLabel for title field of scratchpad (notebook)sys_errorErrore di SistemaSystem Error alert window titleal_alertAttenzioneGeneric title for Alert windowal_cancelCancellaCancel on alert dialogal_confirmConfermaTo Confirm title for LFErroral_validation_act_unreachedNon potete aprire l'attività poichè non la avete raggiunta ancora.Alert message when clicking on an unreached activity in the progess bar.sp_view_lblControlla tuttoLabel for View All buttonal_doubleclick_todoactivitySpiacente, non sei arrivato ancora a questa attivitàalert message when user double click on the todo activity in the sequence in learner progresscurrent_act_tooltipDoppio click per partecipare all'attività correntetool tip message for current activity iconln_export_tooltipEsporta il tuo contributo a questa Lezionetool tip message for export buttoncompleted_act_tooltipDoppio click per rivedere questa attività completamentetool tip message for completed activity iconsys_error_msg_startE' accaduto il seguente errore di sistema:Common System error message starting lineal_sendInviaSend button label on the system error dialogsynchronise_gate_tooltipQuesta barriera sarà aperta soltanto quando tutti gli studenti avranno raggiunto questo punto.Tooltip for synchronise gate in learner progress barsp_save_tooltipSalva i tuoi appuntitool tip message for save buttonsp_view_tooltipVisualizza tutte le voci del Blocco Notetool tip message for view all buttonsp_panel_lblBlocco NoteLabel for panel title of scratchpad (notebook)permission_gate_tooltipNon puoi passare oltre questa barriera fino a quando il docente non l'abbia aperta. Tooltip for permission gate in learner progress barschedule_gate_tooltipQuesta barriera sarà aperta su {0}.Tooltip for schedule gate in learner progress barnot_attempted_act_tooltipDevi completare le attività prima di questa per potervi accedere.Tooltip for not yet attempted activities in the learner progress baral_act_reached_maxIl numero massimo di attività opzionali è già stato raggiunto.al_act_reached_maxpres_panel_lblPresenzaPresence panel labelpres_colnamelearners_lblStudentiPresence datagrid learners columnpres_dataproviderloading_lblCaricamento presenza...Presence datagrid learning loading alert \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ja_JP_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startシステムエラーが発生しました:sys_errorシステムエラーal_cancelキャンセルal_confirm確認al_okOKal_validation_act_unreachedまだそのアクティビティに到達していないため、開けません。hd_resume_tooltip現在のアクティビティにジャンプします。hd_exit_tooltip学習者用システムを終了し、Web ブラウザのウィンドウを閉じますln_export_tooltipこのレッスンの進捗をエクスポートしますcompleted_act_tooltipダブルクリックで、この完了したアクティビティをチェックしますcurrent_act_tooltipダブルクリックで、現在のアクティビティに参加しますal_doubleclick_todoactivityまだこのアクティビティに到達していませんsp_view_lblすべて表示sp_save_lbl保存sp_title_lblタイトルal_timeout警告!読み込みが終了するまで進捗データを適用することはできません。OK をクリックすると読み込みを続行しますal_send送信hd_resume_lbl再開hd_exit_lbl終了ln_export_btnエクスポートpres_panel_lbl出席pres_dataproviderloading_lbl出席の読み込み中...support_acts_titleサポート・アクティビティsupport_act_tooltipダブルクリックで、現在のサポート・アクティビティに参加しますsp_save_tooltipあなたのノートブックの項目を保存しますsp_view_tooltipノートブックの項目をすべて表示しますsp_panel_lblノートブックsys_error_msg_finish続行するためにはこの Web ブラウザを再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?schedule_gate_tooltipこのゲートは {0} に開きます。synchronise_gate_tooltipすべての学習者がここに到達するとゲートが開きます。not_attempted_act_tooltipこのアクティビティにアクセスするには、その前にあるアクティビティを完了する必要があります。pres_colnamelearners_lbl学習者al_act_reached_max最大選択枠アクティビティ数に達しました。al_alert通知permission_gate_tooltip先生がゲートを開くまで、ゲートを通過することはできません。 \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ko_KR_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeout경고! 로딩이 완료되기까지 프로그레스 데이터가 적용될 수 없습니다. 로딩을 계속하기 위해서는 확인을 클릭하십시요.Alert message for timeout error when loading learning design.hd_resume_lbl다시 계속하기Label for Resume buttonln_export_btn내보내기Label for Export buttonsys_error_msg_start다음 시스템 오류가 발생하였습니다:Common System error message starting linesys_error_msg_finish계속하기 위해서는 브라우저 창을 다시 시작하는 것이 필요할 수도 있습니다. 이 문제를 고치기 위해서 이 오류에 대한 다음 정보를 저장하기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error alert window titleal_alert경고Generic title for Alert windowal_cancel취소Cancel on alert dialogal_confirm확인To Confirm title for LFErroral_validation_act_unreached당신은 다다르지 못한 활동을 열 수 없습니다.Alert message when clicking on an unreached activity in the progess bar.hd_exit_tooltip학습자 환경에서 나와 브라우저 창을 닫음tool tip message for exit buttonhd_resume_tooltip현재 활동으로 점프tool tip message for resume buttonln_export_tooltip당신의 기여를 이 강의로 내보내기tool tip message for export buttoncompleted_act_tooltip완료한 활동을 검토하기 위해 더블 클릭하세요.tool tip message for completed activity iconcurrent_act_tooltip현재 활동에 참여하기 위해 더블클릭하세요.tool tip message for current activity iconal_doubleclick_todoactivity죄송합니다. 아직 당신은 이 활동에 도달하지 못하였습니다.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lbl모두 보기Label for View All buttonsp_save_lbl저장Label for Save buttonsp_title_lbl제목Label for title field of scratchpad (notebook)hd_exit_lbl나가기Label for Exit buttonsp_panel_lbl노트북Label for panel title of scratchpad (notebook)sp_view_tooltip모든 노트북 항목 보기tool tip message for view all buttonsp_save_tooltip당신의 노트북 항목을 저장하시요.tool tip message for save buttonal_ok확인OK on alert dialogal_send보내기Send button label on the system error dialogpermission_gate_tooltip교수자가 해제하기전에는 이 관문을 통과해서 지나갈 수 없습니다.Tooltip for permission gate in learner progress barschedule_gate_tooltip이 관문은 {0}에 열릴 것입니다.Tooltip for schedule gate in learner progress barsynchronise_gate_tooltip이 관문은 모든 학습자가 이 지점에 도달해야 해제됩니다.Tooltip for synchronise gate in learner progress barnot_attempted_act_tooltip이 활동을 하기 위해서는 이전 활동들을 완료해야 합니다.Tooltip for not yet attempted activities in the learner progress bar \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/mi_NZ_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀEal_confirmWhakatūturutiasp_view_tooltipTirohia ngā tāurunga pukatuhi katoasp_panel_lblPukatuhial_cancelWhakakorehd_resume_lblHaere Anōln_export_btnKawea Atusys_error_msg_startI puta mai tēnei hapa pūnaha:sys_error_msg_finishTērā pea me tīmata anō e koe tēnei matapihi pūtirotiro kia hāere tonu ai ō mahi. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?sys_errorHapa Pūnahaal_alertKia Matohial_validation_act_unreachedKāore e taea e koe te Ngohe te huaki, nō te mea kāhore anō koe kia tae atu.hd_resume_tooltipHūpeke atu ki tō ngohe o nāianeihd_exit_tooltipWaiho te Wāhi Akoranga, ka kati ai i te matapihi pūtirotiroln_export_tooltipTukuna atu koe ō tākoha ki tēnei akorangacompleted_act_tooltipKia rua ngā pāwhiringa hei arotake i tēnei ngohe oti current_act_tooltipKia rua ngā pāwhiringa hei whai wāhi ki te ngohe o nāianeial_doubleclick_todoactivityAroha mai, kāhore anō koe kia tae atu ki tēnei ngohesp_view_lblTirohia te Katoasp_save_lblTiakisp_title_lblTaitarasp_save_tooltipTiaki tōu tāurunga pukatuhial_timeoutKia Tūpato! Kaore e taea te tāpiri raraunga kaneke kia mutu rā anō te uta. Pāwhiria ĀE ki te haere tonu. hd_exit_lblPutangasupport_acts_titleNgohe Āwhinasupport_act_tooltipPāwhiria kia uru ki tēnei ngohe āwhinaal_sendTukunanot_attempted_act_tooltipWhakaotia ngā ngohe o mua ki te uru mai ki tēnei ngohe.permission_gate_tooltipKāhore e taea te haere ki tua o tēnei tomokanga tae ki te wā i whakawātea te kaiako.schedule_gate_tooltipKa tūwheratia te tomokanga hei te {0}.synchronise_gate_tooltipKa tūwheratia te Tomokanga hei te taenga mai o ngā ākonga katoa.pres_colnamelearners_lblĀkongaal_act_reached_maxKua tae kē ki te mōrahi o ngā ngohe kōwhiringa.pres_panel_lblKo wai i tuihono maipres_dataproviderloading_lblKa utaina tuihonotia mai ... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ms_MY_dictionary.xml 12 Jan 2010 01:19:43 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblSambungLabel for Resume buttonhd_exit_lblKeluarLabel for Exit buttonln_export_btnEksportLabel for Export buttonsys_error_msg_startRalat sistem ini telah berlaku:Common System error message starting linesys_error_msg_finishAnda mungkin perlu memulakan semula tetingkap pelayar untuk sambung. Adakah anda mahu menyimpan ralat ini untuk membantu menyelesaikan masalah ini?Common System error message finish paragraphsys_errorRalat SistemSystem Error alert window titleal_alertAletGeneric title for Alert windowal_cancelBatalCancel on alert dialogal_confirmSahTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedAnda tidak boleh membuka Aktiviti kerana anda tidak sampai aktiviti ini lagi.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipLompat ke aktiviti sekarangtool tip message for resume buttonhd_exit_tooltipKeluar Persekitaran Pelajaran dan tutup tetingkap pelayartool tip message for exit buttonln_export_tooltipEksport kontribusi anda ke pelajaran initool tip message for export buttoncompleted_act_tooltipKlik dua kali untuk reviu aktiviti yang telah lengkap initool tip message for completed activity iconcurrent_act_tooltipKlik dua kali untuk menyertai aktiviti sekarangtool tip message for current activity iconal_doubleclick_todoactivityMaaf, anda tidak mencapai aktiviti ini lagialert message when user double click on the todo activity in the sequence in learner progresssp_view_lblPapar SemuaLabel for View All buttonsp_save_lblSimpanLabel for Save buttonsp_view_tooltipPapar semua entri buku notatool tip message for view all buttonsp_save_tooltipSimpan entri buku nota andatool tip message for save buttonsp_title_lblTajukLabel for title field of scratchpad (notebook)sp_panel_lblBuku notaLabel for panel title of scratchpad (notebook)al_timeoutAmaran! Perkembangan data tidak boleh digunakan sehingga ia tamat dipindahkan. Klik OK untuk sambung pindahanAlert message for timeout error when loading learning design.al_sendHantarSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/nl_BE_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblHervattenLabel for Resume buttonhd_exit_lblEindeLabel for Exit buttonln_export_btnExporterenLabel for Export buttonsys_error_msg_startVolgende fout heeft zich voorgedaan:Common System error message starting linesys_error_msg_finishMogelijk dien je je browservenster te herstarten om verder te gaan. Wil je volgende informatie over deze fout opslaan om het probleem te helpen oplossen ?Common System error message finish paragraphsys_errorSysteemfoutSystem Error alert window titleal_alertWaarschuwingGeneric title for Alert windowal_cancelAnnulerenCancel on alert dialogal_confirmBevestigenTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedJe kan deze activiteit nog niet openen; je hebt ze nog niet bereikt in het verloop van de les.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipGa naar de volgende activiteittool tip message for resume buttonhd_exit_tooltipVerlaat de leeromgeving en sluit het venster.tool tip message for exit buttonln_export_tooltipExporteer uw bijdragen aan deze lestool tip message for export buttoncompleted_act_tooltipDubbelklik om deze voltooide activiteit te overzien.tool tip message for completed activity iconcurrent_act_tooltipDubbelklik om deel te nemen aan deze activiteittool tip message for current activity iconal_doubleclick_todoactivitySorry, je hebt deze activiteit nog niet bereikt.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblAlles bekijkenLabel for View All buttonsp_save_lblBewaarLabel for Save buttonsp_view_tooltipBekijk alle notities.tool tip message for view all buttonsp_save_tooltipBewaar je notitietool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotietiesLabel for panel title of scratchpad (notebook)al_sendVerzendenSend button label on the system error dialogal_timeoutWaarschuwing! Voortgang kan niet worden berekend totdat het laden gereed is. Klik op OK om door te gaan met ladenAlert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/no_NO_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3not_attempted_act_tooltipDu må ferdigstille de foregående aktivitetene før du kan begynne med denne aktiviteten.sys_error_msg_finishDu må starte nettleseren på nytt for å kunne fortsette. Ønsker du å lagre info. om denne feilen for å hjelpe oss å rette problemet ?sp_panel_lblNotatbokhd_resume_tooltipGå til din aktive aktivitethd_exit_tooltipGå ut av studentmiljøet og steng av nettleserenln_export_tooltipEksporter ditt bidrag til denne leksjonencurrent_act_tooltipDobbeltklikk for å delta i den aktive aktivitetenal_doubleclick_todoactivityBeklager, du har ikke kommet fram til denne aktiviteten endasp_view_lblVis allesp_save_lblLagresp_view_tooltipVis alle notatersp_save_tooltipLagre dine notatersp_title_lblTittelhd_resume_lblFortsettehd_exit_lblGå utln_export_btnEksportersys_error_msg_startFølgende system feil har oppstått:sys_errorSystem feilal_cancelAngreal_confirmBekreftal_okOKal_validation_act_unreachedDu kan ikke åpne en aktivitet du ikke har kommet fram til enda.support_acts_titleBrukerstøtte aktivitetsupport_act_tooltipDobbeltklikk for å delta i denne brukerstøtte aktivitetenal_sendSendal_timeoutAdvarsel ! Data for fremdrift kan ikke benyttes før nedlasting er ferdig. Klikk på OK for å fortsette nedlastingen.al_alertVarselcompleted_act_tooltipDobbeltklikk for å vurdere den ferdigstillte aktivitetenpermission_gate_tooltipDu kan ikke fortsette forbi denne porten før foreleseren åpner denne.schedule_gate_tooltipDenne porten vil åpnes {0}.synchronise_gate_tooltipDenne porten vil bli åpnet med en gang alle studenter når denne.al_act_reached_maxMaksimalt antall tilleggsaktiviteter er nådd.pres_panel_lblAudienspres_colnamelearners_lblStudenterpres_dataproviderloading_lblLast inn audiense..... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/pl_PL_dictionary.xml 12 Jan 2010 01:19:35 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutOstrzeżenie! Ładowanie danych musi zostać zakończone. Kliknij OKAlert message for timeout error when loading learning design.hd_exit_lblWyjścieLabel for Exit buttonln_export_btnEksportLabel for Export buttonsys_error_msg_startWystąpił następujący błąd systemu:Common System error message starting linesys_error_msg_finishAby kontynuować należy ponownie uruchomić przeglądarkę. Czy chcesz zapisać informacje o błędzie aby naprawić ten problem?Common System error message finish paragraphsys_errorBłąd SystemuSystem Error alert window titleal_alertUwagaGeneric title for Alert windowal_cancelAnulujCancel on alert dialogal_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedNie możesz otworzyć Aktywności jeśli do niej nie dotarłeśAlert message when clicking on an unreached activity in the progess bar.hd_exit_tooltipOpuść moduł Studenta i zamknij okno przeglądarkitool tip message for exit buttonln_export_tooltipEksportuj twoje uwagi do tej lekcjitool tip message for export buttoncompleted_act_tooltipKliknij dwa razy aby podejrzeć zakończoną aktywnośćtool tip message for completed activity iconcurrent_act_tooltipKliknij dwa razy aby uczestniczyć w obecnej aktywnościtool tip message for current activity iconal_doubleclick_todoactivityNie dotarłeś jeszcze do tej aktywności alert message when user double click on the todo activity in the sequence in learner progresssp_save_lblZapiszLabel for Save buttonsp_view_tooltipPokaż wszystkie wpisy do notatnikatool tip message for view all buttonsp_save_tooltipZapisz swój wpis do notatnikatool tip message for save buttonsp_title_lblTytułLabel for title field of scratchpad (notebook)sp_panel_lblNotatnikLabel for panel title of scratchpad (notebook)hd_resume_lblDalejLabel for Resume buttonhd_resume_tooltipPrzejdź do właściwej aktywnościtool tip message for resume buttonsp_view_lblWszystkieLabel for View All buttonal_sendWysłanoSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/pt_BR_dictionary.xml 12 Jan 2010 01:19:34 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumirLabel for Resume buttonhd_exit_lblSairLabel for Exit buttonln_export_btnExportarLabel for Export buttonsys_error_msg_startUm erro de sistema de segmento ocorreu:Common System error message starting linesys_error_msg_finishVocê talvez necessite reiniciar esta janela do navegador para continuar. Você deseja salvar a informação vinda deste erro para ajudar a solucionar este problema?Common System error message finish paragraphsys_errorErro do SistemaSystem Error alert window titleal_alertAlertaGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedVocê não pode abrir a Atividade que você ainda não alcançouAlert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipPular para a atividade atualtool tip message for resume buttonhd_exit_tooltipSair do ambiente Aluno e fechar a janela do navegadortool tip message for exit buttonln_export_tooltipExportar suas contribuições para esta liçãotool tip message for export buttoncompleted_act_tooltipClicar duas vezes para rever a atividade finalizadatool tip message for completed activity iconcurrent_act_tooltipClicar duas vezes para participar da atividade atualtool tip message for current activity iconal_doubleclick_todoactivityDesculpe, você não alcançou está atividade aindaalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVisualizar todasLabel for View All buttonsp_save_lblSalvarLabel for Save buttonsp_view_tooltipVisualizar todas as entradas no caderno de notastool tip message for view all buttonsp_save_tooltipSalvar sua entrada no caderno de notastool tip message for save buttonsp_title_lblTítuloLabel for title field of scratchpad (notebook)sp_panel_lblCaderno de NotasLabel for panel title of scratchpad (notebook)al_timeoutcuidado! O progresso dos dados não pode ser aplicado enquanto não terminar de carregar. Clique em OK para continuar carregando.Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/ru_RU_dictionary.xml 12 Jan 2010 01:19:40 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3current_act_tooltipСделайте двойной щелчок, чтобы принять участие в текущем заданииln_export_tooltipЭкспорт Ваших вкладов в этот урокhd_resume_tooltipПерейти к Вашему текущему заданию.completed_act_tooltipСделайте двойной щелчок, чтобы просмотреть это завершённое заданиеal_doubleclick_todoactivityИзвините, Вы ещё не достигли этого заданияhd_exit_lblВыйтиsys_error_msg_finishВы, возможно, должны перезагрузить это окно браузера, чтобы продолжить. Хотите ли Вы сохранить следующую информацию об этой ошибке, чтобы помочь установить причину этой проблемы?al_validation_act_unreachedВы не можете открыть задание, поскольку Вы еще его не достигли.hd_resume_lblВозобновитьln_export_btnЭкспортsys_error_msg_startПроизошла следующая ошибка системыsys_errorСистемная ошибкаal_alertИзвещениеal_cancelОтменитьal_confirmПодтвердитьhd_exit_tooltipВыйдите из среды обучения и закройте окно браузераsp_view_lblПросмотреть всёsp_save_lblСохранитьsp_view_tooltipПросмотреть все записи в тетрадиsp_save_tooltipСвохранить Ваши записи в тетрадиsp_title_lblЗаголовокsp_panel_lblТетрадьal_okОКal_sendОтправитьal_timeoutВнимание! Невозможно производить изменения до того, как закончится загрузка. Нажмите ОК, чтобы ее продолжитьpermission_gate_tooltipВы не можете пройти дальше этого затвора до тех пор пока преподаватель откроет его.schedule_gate_tooltipЭтот затвор будет открыт {0}synchronise_gate_tooltipЗатвор будет открыт, когда все ученики достигнут этого этапа.not_attempted_act_tooltipВам нужно выполнить другие задания прежде чем перейти к этому.al_act_reached_maxМаксимальное количество вспомогательных заданий уже было достигнуто.pres_panel_lblПрисутствиеpres_colnamelearners_lblУченикиpres_dataproviderloading_lblЗагружается присутствие...support_acts_titleВспомогательные заданияsupport_act_tooltipЩелкните два раза, чтобы участвовать в этом вспомогательном задании \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/sv_SE_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResuméLabel for Resume buttonhd_exit_lblAvslutaLabel for Exit buttonln_export_btnExporteraLabel for Export buttonsys_error_msg_startDet följande systemfelet har inträffat:Common System error message starting linesys_error_msg_finishDu kanske måste starta om detta webbläsarfönster. Vill du spara följande information om detta fel i syfte att hjälpa till att lösa problemet?Common System error message finish paragraphsys_errorSystemfelSystem Error alert window titleal_alertVarningGeneric title for Alert windowal_cancelAvbrytCancel on alert dialogal_confirmBekräftaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedDu kan öppna aktiviteten eftersom du inte har nått den ännu.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipHoppa till din aktuella aktivitettool tip message for resume buttonhd_exit_tooltipLämna den lärandes miljö och stäng webbläsarfönstret. tool tip message for exit buttonln_export_tooltipExportera dina bidrag till den här lektionentool tip message for export buttoncompleted_act_tooltipDubbelklicka för att granska den här fullföljda aktivitetentool tip message for completed activity iconcurrent_act_tooltipDubbelklicka för att delta i den aktuella aktivitetentool tip message for current activity iconal_doubleclick_todoactivityDu har tyvärr inte nått den här aktiviteten ännualert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVisa allaLabel for View All buttonsp_save_lblSparaLabel for Save buttonsp_view_tooltipVisa alla inlägg i Anteckningartool tip message for view all buttonsp_save_tooltipSpara ditt inlägg i Anteckningar tool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblAnteckningarLabel for panel title of scratchpad (notebook)al_timeoutVarning! Det går inte att använda data under behandling förrän laddningen är avslutad. Klicka på OK för att fortsätta laddningen. Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/tr_TR_dictionary.xml 12 Jan 2010 01:19:39 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_exit_tooltipÖğrenme ortamından çıkar ve tarayıcı pencersini kapatır.tool tip message for exit buttonschedule_gate_tooltipKapı {0}'da açılacak.Tooltip for schedule gate in learner progress barln_export_tooltipBu derse yaptığınız katkıyı dışa aktarır.tool tip message for export buttonln_export_btnDışa AktarLabel for Export buttoncurrent_act_tooltipŞuan yaptığınız etkinliğiğe katılmak için çift tıklayınız.tool tip message for current activity iconsynchronise_gate_tooltipBu kapı tüm öğrenciler bu noktaya ulaştığında açılacaktır.Tooltip for synchronise gate in learner progress baral_validation_act_unreachedHenüz gelmediğiniz bir etkinliği açamazsınız.Alert message when clicking on an unreached activity in the progess bar.al_doubleclick_todoactivityÜzgünüm, henüz bu etkinliğe gelmediniz.alert message when user double click on the todo activity in the sequence in learner progresshd_resume_tooltipŞuan yapmakta olduğunuz etkinliğe devam eder.tool tip message for resume buttonhd_exit_lblÇıkışLabel for Exit buttonsys_error_msg_startAşağıdaki sistem hatası oluştu.Common System error message starting linesys_errorSistem HatasıSystem Error alert window titleal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorsp_title_lblBaşlıkLabel for title field of scratchpad (notebook)al_sendGönderSend button label on the system error dialoghd_resume_lblDevam EtLabel for Resume buttonnot_attempted_act_tooltipBu etkinleğe erişmeden önce diğer etkinlikleri tamamlamalısınız.Tooltip for not yet attempted activities in the learner progress barpermission_gate_tooltipÖğretmen izin verene kadar bu kapıdan geçemezsiniz.Tooltip for permission gate in learner progress barsp_panel_lblNot DefteriLabel for panel title of scratchpad (notebook)al_act_reached_maxMaksimum seçmeli etkinlik sayısına erişildi.al_act_reached_maxpres_colnamelearners_lblÖğrencilerPresence datagrid learners columnpres_panel_lblGörünümPresence panel labelpres_dataproviderloading_lblGörünüm yükleniyorPresence datagrid learning loading alertal_timeoutUyarı! Yükleme bitmeden süreç verisi uygulanamaz. Yüklemeye devam etmek için Tamam'a tıklayınız.Alert message for timeout error when loading learning design.al_okTamamOK on alert dialogal_cancelİptalCancel on alert dialogcompleted_act_tooltipTamamlanmış etkinliği incelemek için çift tıklayınız.tool tip message for completed activity iconsp_view_lblTümünü gösterLabel for View All buttonsp_view_tooltipTüm not defteri girişlerini görüntüler.tool tip message for view all buttonsys_error_msg_finishDevam etmek için tarayıcıyı kapatıp tekrar açmalısınız. Bu problemin giderilmesine yardımcı olmak için hata bilgisini kaydetmek istiyor musunuz?Common System error message finish paragraphsp_save_tooltipNot defteritool tip message for save buttonsp_save_lblKaydetLabel for Save button \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/vi_VN_dictionary.xml 12 Jan 2010 01:19:33 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutCảnh báo ! Dữ liệu tiến trình chỉ được chấp nhật khi kết thúc quá trình đăng tải. Kích nút Đồng ý để tiếp tục đăng tải.Alert message for timeout error when loading learning design.hd_exit_lblThoát Label for Exit buttonln_export_btnĐưa raLabel for Export buttonsys_error_msg_startĐã phát hiện thấy lỗi hệ thốngCommon System error message starting linesys_error_msg_finishBạn cần phải khởi động lại cửa trình duyệt để tiếp tục. Bạn có muốn lưu những thông tin về lỗi này để giúp sửa lỗi không?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error alert window titleal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏCancel on alert dialogal_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on alert dialogal_validation_act_unreachedBạn không thể mở hoạt động vì bạn vẫn chưa chỉ vào Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipTới hoạt động hiện thời của bạntool tip message for resume buttonhd_exit_tooltipThoát khỏi môi trường của học viên và đóng cửa sổ trình duyệttool tip message for exit buttonln_export_tooltipĐưa ra các đóng góp của bạn về bài học nàytool tip message for export buttoncompleted_act_tooltipNháy kép để xem lại hoạt động đã được hoàn tấttool tip message for completed activity iconcurrent_act_tooltipNháy kép để tham gia hoạt động hiện thờitool tip message for current activity iconal_doubleclick_todoactivityXin lỗi, bạn vẫn chưa chỉ tới hoạt độngalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblXem tất cảLabel for View All buttonsp_save_lblLưuLabel for Save buttonsp_view_tooltipXem tất cả các ghi chép sổ taytool tip message for view all buttonsp_save_tooltipLưu ghi chép sổ tay của bạntool tip message for save buttonsp_title_lblTiêu đềLabel for title field of scratchpad (notebook)sp_panel_lblSổ tayLabel for panel title of scratchpad (notebook)hd_resume_lblHồi phụcLabel for Resume buttonal_sendGửiSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/zh_CN_dictionary.xml 12 Jan 2010 01:19:38 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sp_view_tooltip观看所有的笔记条目tool tip message for view all buttonsp_save_tooltip保存你的笔记条目tool tip message for save buttonsp_title_lbl标题Label for title field of scratchpad (notebook)sp_panel_lbl笔记本Label for panel title of scratchpad (notebook)sp_view_lbl观看所有的Label for View All buttonsp_save_lbl保存Label for Save buttonhd_resume_lbl重新开始Label for Resume buttonhd_exit_lbl退出Label for Exit buttonln_export_btn导出Label for Export buttonsys_error_msg_start发生了一个系统错误Common System error message starting linesys_error_msg_finish你需要重新启动这个浏览器窗口来继续。你想保存关于这个错误的下列信息来帮助解决这个问题吗?Common System error message finish paragraphsys_error系统错误System Error alert window titleal_alert警惕Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm确认To Confirm title for LFErroral_okOK on alert dialogal_validation_act_unreached你不能打开这个活动,因为你还没有到达它。Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltip跳转到你的当前活动tool tip message for resume buttonhd_exit_tooltip退出学习者环境,关闭浏览器窗口tool tip message for exit buttonln_export_tooltip导出对这个课程的你的贡献tool tip message for export buttoncompleted_act_tooltip双击,回顾这个已完成的活动tool tip message for completed activity iconcurrent_act_tooltip双击,参加到当前活动tool tip message for current activity iconal_doubleclick_todoactivity对不起,你还没有到达这个活动alert message when user double click on the todo activity in the sequence in learner progressal_timeout警告!只有加载完成时数据才能被应用,点击确定以继续加载Alert message for timeout error when loading learning design.al_send发送Send button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/learner/zh_TW_dictionary.xml 12 Jan 2010 01:19:36 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_start系統發生錯誤Common System error message starting linesys_error_msg_finish您需要重新啟動這個瀏覽器視窗才能繼續。您想要保存這個錯誤的資訊,來幫助解決問題嗎?Common System error message finish paragraphsp_view_tooltip檢視所有筆記條目tool tip message for view all buttonsp_save_tooltip儲存您的筆記條目tool tip message for save buttonhd_exit_lbl離開Label for Exit buttonln_export_btn匯出Label for Export buttonhd_resume_lbl重新開始Label for Resume buttonsys_error系統錯誤System Error alert window titleal_alert警告Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOK on alert dialogal_doubleclick_todoactivity對不起,您尚未到達這個活動alert message when user double click on the todo activity in the sequence in learner progresssp_view_lbl觀看全部Label for View All buttonsp_save_lbl儲存Label for Save buttonsp_title_lbl標題Label for title field of scratchpad (notebook)sp_panel_lbl筆記本Label for panel title of scratchpad (notebook)al_send送出Send button label on the system error dialogschedule_gate_tooltip這個閘門將開啟於{0}. Tooltip for schedule gate in learner progress barsynchronise_gate_tooltip這個閘門將被釋放一旦所有學習者到達這個點Tooltip for synchronise gate in learner progress barpres_panel_lbl呈現Presence panel labelpres_colnamelearners_lbl學習者Presence datagrid learners columnpres_dataproviderloading_lbl下載呈現...Presence datagrid learning loading alertal_validation_act_unreached你無法開啟此活動因你還未達到Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltip跳到你目前的活動tool tip message for resume buttonhd_exit_tooltip離開學習者環境並關閉瀏覽視窗tool tip message for exit buttonln_export_tooltip輸出你的貢獻到此課程tool tip message for export buttoncompleted_act_tooltip按兩下去看完成的活動tool tip message for completed activity iconcurrent_act_tooltip按兩下去參加目前的活動tool tip message for current activity iconal_timeout警告!進行中的資料無法套用直到下再完成前,請按好去繼續下載Alert message for timeout error when loading learning design.permission_gate_tooltip直到敎師釋放前,你無法移動此閘門Tooltip for permission gate in learner progress barnot_attempted_act_tooltip你必須在此活動前完成所有活動,才可進行Tooltip for not yet attempted activities in the learner progress baral_act_reached_max選擇性活動的最大數已經達到al_act_reached_max \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ar_JO_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertتحذيرGeneric title for Alert windowal_cancelإلغاءTo Confirm title for LFErroral_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on the alert dialogapp_chk_langloadبيانات اللغة قد حملتmessage for unsuccessful language loadingapp_chk_themeloadبيانات المحمول لم تحمل بعدmessage for unsuccessful theme loadingapp_fail_continueالبرنامج لا يمكنه الاستمرار الرجاء الاتصال بالدعم الفنيmessage if application cannot continue due to any errordb_datasend_confirmشكرا على ارسال البيانات الى الخادمMessage when user sucessfully dumps data to the servermnu_editتعديلMenu bar Editmnu_edit_copyنسخMenu bar Edit &gt; Copymnu_edit_cutقصMenu bar Edit &gt; Cutmnu_edit_pasteلصقMenu bar Edit &gt; Pastemnu_fileملفMenu bar Filemnu_file_refreshانعاشMenu bar Refreshmnu_file_editclassتعديل الصفMenu bar Edit Classmnu_file_startتشغيلMenu bar Startmnu_helpمساعدةMenu bar Helpmnu_help_abtعنMenu bar Aboutperm_act_lblاذنLabel for permission gate activitysched_act_lblجدولLabel for schedule gate activitysynch_act_lblزامن Used as a label for the Synch Gate Activity Typews_Rootمجلد رئيسيRoot folder title for workspacews_dlg_cancel_buttonالغاء2ws_dlg_location_buttonموقعWorkspace dialogue Location btn labelws_tree_mywspمساحة عمليThe root level of the treews_tree_orgsمؤسساتShown in the top level of the tree in the workspacesys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج لاعادة تشغيل النظام للاستمرار،هل تريد حفظ المعلومات التالية حول هذا الخطأ لحل المشكلة؟Common System error message finish paragraphsys_errorخطأ نظامSystem Error elert window titlemnu_file_scheduleجدولMenu bar Schedulemnu_file_exitخروجMenu bar Exitmnu_view_learnersتلاميذMenu bar Learnersmnu_goانطلقMenu bar Gomnu_go_lessonدرسMenu bar Go to Lesson Tabmnu_go_scheduleجدولMenu bar Go to Schedule Tabmnu_go_learnersتلاميذMenu bar Go to Learners Tabmnu_go_todoما يجب القيام به Menu bar Todomnu_help_helpمساعدةMenu bar Help itemrefresh_btnانعاشRefresh buttonhelp_btnمساعدةHelp buttonmtab_lessonدرسMonitor Lesson details tabmtab_seqسلسلةMonitor Sequence tabmtab_learnersتلاميذMonitor Learners tabmtab_todoما يجب القيام به Monitor Todo tabls_status_lblالوضع الحاليStatus label - Lesson detailsls_learners_lblتلاميذLearner label - Lesson detailsls_class_lblصفClass label - Lesson detailsls_manage_class_lblصفClass managing label - Lesson detailsls_manage_status_lblالوضع الحاليStatus managing label - Lesson detailsls_manage_start_lblابدأStart managing label - Lesson detailsls_manage_learners_btnعرض الطلابView learners button - Lesson details (manage section)ls_manage_editclass_btnتعديل الصفEdit class button - Lesson details (manage section)ls_manage_apply_btnيطبقStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnجدولSchedule start button - Lesson details (manage section)ls_manage_start_btnشغل الآنStart immediately button - Lesson details (manage section)ls_manage_date_lblتاريخDate field title - Lesson details (manage section)ls_duration_lblانقضت المدةElapsed duration of lesson - Lesson detailsls_manage_status_cmbاختر الوضع الحاليStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateتشغيلLesson status option - Activatels_status_cmb_disableيضعفLesson status option - Disable (suspend)ls_status_cmb_enableنشطLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveارشيفLesson status option - Archivels_status_active_lblنشطCurrent status description if active (enabled)ls_status_disabled_lblمعلقCurrent status description if suspended (disabled)ls_status_archived_lblحفظ بالرشيفCurrent status description if archviedls_status_started_lblبدأCurrent status description if started (enabled)ls_win_editclass_titleتعديل الصفEdit class window titlels_win_learners_titleعرض الطلابView learners window titlemnu_viewعرضMenu bar Viewls_win_editclass_save_btnحفظSave button on Edit Class popupls_win_editclass_cancel_btnالغاءCancel button on Edit Class popupls_win_learners_close_btnاغلاقClose button on View Learners popupls_win_editclass_organisation_lblمنظمةHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblموظفينHeading for Staff list on Edit Class popupls_win_editclass_learners_lblتلاميذHeading for Learners list on the Edit Class popupls_win_learners_heading_lblتلاميذ في الصفHeading on View Learners window panel.td_desc_headingضوابط متقدمةTodo tab description headingtd_desc_textلا يجب استخدام شريط ما يجب القيام به لاتمام السلسة. انظر التعليمات لمزيد من المعلومات. <br><br>هذه الميزه اصبحت الآن متوفرة بالكامل. Todo tab descriptionopt_activity_titleنشاط اختياريTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesنشاطات الاطفالNumber of child activities for Complex activity shown on canvas.ls_of_textمنi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtتنظيم الدرسHeading for Management section of Lesson Tabls_tasks_txtوظائف مطلوبةHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnانطلقGo button on contribute entry itemlearner_exportPortfolio_btnتصدير المعلومات الشخصيةLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivityهل انت متأكد من انك تريد إجبار الطالب '{0}' في النشاط '{1}' ؟Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityلقد قمت بإستثناء الطالب '{0}' من النشاط الحالي أو النشاط المستكمل '{1}' Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishهل انت متأكد من انك تريد إجبار الطالب '{0}' لانهاء الدرس؟Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetالرجاء اسقاط الطالب'{0}' في نشاط أو في نهاية الدرس. Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateالطلاب المنتهيينTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_status_scheduled_lblمجدولLesson status option - Scheduled (Not Started)goContribute_btn_tooltipاكمل المهمه الآنtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipمساعدةtool tip message for help button in toolbarrefresh_btn_tooltipاعد تحميل احدث البيانات عن تقدم الطلابtool tip message for the refresh buttonls_manage_editclass_btn_tooltipعدل قائمة الطلاب و المعلمين المكلفين اهذا الدرسtool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipاعرض جميع الطلاب المكلفين لهذا الدرسtool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipغير حالة هذا النشاط بناءً على خيار القائمةtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipصدر المعلومات الشخصية للحصة و احفظها في الكمبيوتر لغايات مستقبليةtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipصدر المعلومات الشخصية للطالب و احفظها في الكمبيوتر لغايات مستقبليةtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipابدأ الدرس الآنtool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipجدول الحصة لتبدأ في وقت لاحقtool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipانقر نقرا مزدوجا لاستعراض مساهمات الطلاب في النشاط الحاليtool tip message for current activity iconcompleted_act_tooltip انقر نقرا مزدوجا لاستعراض مساهمات الطلاب في النشاط المستكملtool tip message for completed activity iconal_doubleclick_todoactivityعفوا ،الطالب: {0} لم يصل للنشاط: {1} بعدalert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartلم يتم إختيار تاريخ. الرجاء إختيار تاريخ ووقت.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblالوقت (ساعات : دقائق)Time fields title - Lesson details (manage section)al_validation_schtimeالرجاء إدخال تاريخ صحيح.Alert message when user enters an invalid time for schedule startccm_monitor_activityفتح مراقب نشاطLabel for Custom Context Monitor Activityccm_monitor_activityhelpتعليمات مراقبة النشاطLabel for Custom Context Monitor Activity Helpfinish_learner_tooltipلاجبار طالب على انهاء الدرس، اسحب ايقونة الطالب فوق هذا الشريط وافلتRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnيومياتLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipاستعرض كل اليوميات tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/cy_GB_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertRhybuddGeneric title for Alert windowal_cancelCansloTo Confirm title for LFErroral_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on the alert dialogapp_chk_langloadNid yw'r data iaith wedi cael eu llwythomessage for unsuccessful language loadingapp_chk_themeloadNid yw'r data thema wedi cael eu llwythomessage for unsuccessful theme loadingapp_fail_continueNi all y rhaglen barhau. Cysylltwch â'r tîm cymorthmessage if application cannot continue due to any errordb_datasend_confirmDiolch am anfon data i'r gweinyddMessage when user sucessfully dumps data to the servermnu_editGolyguMenu bar Editmnu_edit_copyCopïoMenu bar Edit &gt; Copymnu_edit_cutTorriMenu bar Edit &gt; Cutmnu_edit_pasteGludoMenu bar Edit &gt; Pastemnu_fileFfeilMenu bar Filemnu_file_refreshAdnewydduMenu bar Refreshmnu_file_editclassGolygu DosbarthMenu bar Edit Classmnu_file_startDechrauMenu bar Startmnu_helpCymorthMenu bar Helpmnu_help_abtAmMenu bar Aboutperm_act_lblCaniatâdLabel for permission gate activitysched_act_lblTrefnlenLabel for schedule gate activitysynch_act_lblSyncroneiddioUsed as a label for the Synch Gate Activity Typews_RootGwreiddynRoot folder title for workspacews_dlg_cancel_buttonCanslo2ws_dlg_location_buttonLleoliadWorkspace dialogue Location btn labelws_tree_mywspFy Lle GwaithThe root level of the treews_tree_orgsSefydliadauShown in the top level of the tree in the workspacesys_error_msg_startMae'r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd rhaid i chi ailddechrau LAMS Author er mwyn parhau. Ydych chi eisiau cadw'r wybodaeth ganlynol am y gwall hwn i helpu datrys y broblem hon?Common System error message finish paragraphsys_errorGwall SystemSystem Error elert window titlemnu_file_scheduleTrefnlenMenu bar Schedulemnu_file_exitGadaelMenu bar Exitmnu_view_learnersDysgwyr...Menu bar Learnersmnu_goEwchMenu bar Gomnu_go_lessonGwersMenu bar Go to Lesson Tabmnu_go_scheduleTrefnlenMenu bar Go to Schedule Tabmnu_go_learnersDysgwyrMenu bar Go to Learners Tabmnu_go_todoI'w wneudMenu bar Todomnu_help_helpCymorth MonitroMenu bar Help itemrefresh_btnAdnewydduRefresh buttonhelp_btnCymorthHelp buttonmtab_lessonGwersMonitor Lesson details tabmtab_seqDilyniantMonitor Sequence tabmtab_learnersDysgwyrMonitor Learners tabmtab_todoI'w wneudMonitor Todo tabls_status_lblStatws:Status label - Lesson detailsls_learners_lblDysgwyr:Learner label - Lesson detailsls_class_lblDosbarth:Class label - Lesson detailsls_manage_class_lblDosbarth:Class managing label - Lesson detailsls_manage_status_lblNewid Statws:Status managing label - Lesson detailsls_manage_start_lblDechrau:Start managing label - Lesson detailsls_manage_learners_btnGweld y DysgwyrView learners button - Lesson details (manage section)ls_manage_editclass_btnGolygu DosbarthEdit class button - Lesson details (manage section)ls_manage_apply_btnGweithreduStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnTrefnlenSchedule start button - Lesson details (manage section)ls_manage_start_btnDechrau NawrStart immediately button - Lesson details (manage section)ls_manage_date_lblDyddiadDate field title - Lesson details (manage section)ls_duration_lblAmser a aeth heibio:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbDewis statws:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateGweithreduLesson status option - Activatels_status_cmb_disableAnalluogiLesson status option - Disable (suspend)ls_status_cmb_enableGweithredolLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchifoLesson status option - Archivels_status_active_lblWedi'i greu ond heb ei gychwynCurrent status description if active (enabled)ls_status_disabled_lblWedi'i atalCurrent status description if suspended (disabled)ls_status_archived_lblWedi'i archifoCurrent status description if archviedls_status_started_lblWedi cychwynCurrent status description if started (enabled)ls_win_editclass_titleGolygu DosbarthEdit class window titlels_win_learners_titleGweld y DysgwyrView learners window titlemnu_viewGweldMenu bar Viewls_win_editclass_save_btnCadwSave button on Edit Class popupls_win_editclass_cancel_btnCansloCancel button on Edit Class popupls_win_learners_close_btnCauClose button on View Learners popupls_win_editclass_organisation_lblSefydliadHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStaffHeading for Staff list on Edit Class popupls_win_editclass_learners_lblDysgwyrHeading for Learners list on the Edit Class popupls_win_learners_heading_lblDysgwyr yn y dosbarth:Heading on View Learners window panel.td_desc_headingUwch Reolyddion:Todo tab description headingtd_desc_textNid oes angen defnyddio'r Tab I'w Wneud hwn er mwyn cwblhau'r dilyniant. Gweler y dudalen cymorth am fwy o wybodaeth. .&lt;br&gt;&lt;br&gt; Mae'r nodwedd hon yn weithredol nawr.Todo tab descriptionopt_activity_titleGweithgaredd DewisolTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesgweithgareddau plantNumber of child activities for Complex activity shown on canvas.ls_of_textoi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtRheoli GwersHeading for Management section of Lesson Tabls_tasks_txtTasgau GofynnolHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnEwchGo button on contribute entry itemlearner_exportPortfolio_btnAllforio PortffolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblWedi'i drefnuLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityYdych chi'n siŵr eich bod chi eisiau gorfodi dysgwr '{0}' i gwblhau i Weithgaredd '{1}'? Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityRydych wedi gollwng dysgwr '{0}' ar naill ai ei weithgaredd cyfredol neu ei weithgaredd wedi'i gwblhau'{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishYdych chi'n siŵr eich bod chi eisiau gorfodi dysgwr '{0}' i gwblhau i ddiwedd y wers? Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetGollyngwch ddysgwr '{0}' ar weithgaredd neu ddiwedd y wers.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateDysgwyr sydd wedi Gorffen:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipCwblhewch y dasg hon nawrtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipCymorthtool tip message for help button in toolbarrefresh_btn_tooltipAil-lwythwch y data cynnydd diweddaraf ar gyfer y dysgwyrtool tip message for the refresh buttonls_manage_editclass_btn_tooltipGolygwch restr y dysgwyr a'r staff a neilltuwyd ar gyfer y wers hontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipYn dangos yr holl ddysgwyr sydd wedi'u neilltuo ar gyfer y wers hontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipNewidiwch statws y wers hon yn seiliedig ar y dewisiadau ar y gwymplentool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipAllforiwch y portffolio dosbarth a'i gadw ar eich cyfrifiadur i'w gyfeirio ato yn y dyfodoltool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipAllforiwch y portffolio dysgwr hwn a'i gadw ar eich cyfrifiadur i'w gyfeirio ato yn y dyfodoltool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipDechreuwch y wers ar unwaithtool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipTrefnwch i'r wers ddechrau yn y dyfodoltool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipCliciwch ddwywaith i weld cyfraniad sydd ar y gweill ar gyfer gweithgaredd cyfredol y dysgwrtool tip message for current activity iconcompleted_act_tooltipCliciwch ddwywaith i weld y cyfraniad ar gyfer gweithgaredd y dysgwr sydd wedi'i gwblhautool tip message for completed activity iconal_doubleclick_todoactivityNid yw dysgwr: {0} wedi cyrraedd gweithgaredd: {1}, eto.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartDim dyddiad wedi'i ddewis. Dewiswch ddyddiad ac amser.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblAmser (Oriau : Munudau)Time fields title - Lesson details (manage section)al_validation_schtimeRhowch amser dilys.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipEr mwyn gorfodi dysgwr i gwblhau'r wers, llusgwch eicon y dysgwr i'r bar hwn a rhyddhau’r eiconRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityAgor Gweithgaredd MonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpCymorth Gweithgaredd MonitorLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnCofnod DyddlyfrLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipGweld pob Cofnod Dyddlyfr wedi'i gadw gan y Dysgwyrtool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblDysgwr URL:Learner URL:ls_manage_learnerExpp_lblGalluogi allforio portffolio ar gyfer y dysgwrLabel for Enable export portfolio for Learnerls_confirm_expp_enabledAllforio Portffolio wedi'i alluogi ar gyfer y dysgwyrConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledAllforio Portffolio wedi'i analluogi ar gyfer y dysgwyrConfirmation message on disabling export portfolio for learnersls_remove_confirm_msgRydych chi wedi dewis Dileu'r wers hon. Nid oes modd adfer gwersi sydd wedi'u dileu. Parhau?remove confirm msgls_status_cmb_removeDileuLesson status option - Removels_status_removed_lblWedi’i ddileuCurrent status description if deleted (removed) lesson.al_yesIeYes on the alert dialogal_noNa'No' on the alert dialogls_remove_warning_msgRHYBUDD: Mae’r wers ar fin gael ei dileu. Ydych chi eisiau cadw’r wers hon fel archif?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} dysgwyrGroup name for the class's learners group.staff_group_name{0} staffGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/da_DK_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_manage_learnerExpp_lblSlå "Eksportér portfolio for bruger" tilLabel for Enable export portfolio for Learnerls_confirm_expp_enabled"Eksportér portfolio" er nu slået til for brugereConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabled"Eksportér portfolio" er nu slået fra for brugereConfirmation message on disabling export portfolio for learnerscontinue_btnFortsætContinue button labelcheck_avail_btnCheck tilgængelighedCheck Availability button labells_continue_lblHej {1}! Du er ikke færdig med at redigere [0}.Continue message labells_sequence_live_edit_btnLive EditLive Edit buttonls_sequence_live_edit_btn_tooltipRedigér det aktuelle design for denne session.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblUndersøger...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblIkke tilgængelig, prøv igen.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblBeklager, {0} redigeres i øjeblikket af {1}.Warning message on Monitor locked screen.ls_learnerURL_lblBruger URLLearner URL:learner_viewJournals_btn Journal indlægLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipSe alle journalindlæg fra brugeretool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_status_active_lblOprettet men endnu ikke startetCurrent status description if active (enabled)mnu_help_helpHjælp til MonitoreringMenu bar Help itemls_manage_status_lblÆndr statusStatus managing label - Lesson detailsls_manage_start_btnStart nuStart immediately button - Lesson details (manage section)about_popup_version_lblVersionLabel displaying the version no on the About dialog.al_confirm_live_editDu er ved at åbne Live Edit. Ønsker du at fortsætte?Confirm warning (dialog) message displayed when opening Live Edit.al_sendSendSend button label on the system error dialogabout_popup_title_lblOm - {0}Title for the About Pop-up window.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} er registreret varmærke for {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDette program er freeware; du må videreformidle og/eller ændre det på de betingelser, som er angivet i GNU General Public License version 2, publiceret af Free Software Foundation.Label displaying the license statement in the About dialog.learners_group_name{0} brugereGroup name for the class's learners group.ls_remove_confirm_msgDu har valgt at fjerne denne lektion. Fjernede lektioner kan ikke hentes frem igen. Vil du fortsætte?remove confirm msgls_status_cmb_removeFjernLesson status option - Removels_status_removed_lblFjernetCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNej'No' on the alert dialogls_remove_warning_msgLektionen er ved at blive fjernet. Ønsker du at beholde den i arkivet?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} stabGroup name for the class's staff group.al_cancelAnnullérTo Confirm title for LFErrorls_manage_schedule_btnTidsplanSchedule start button - Lesson details (manage section)ls_win_editclass_cancel_btnAnnullérCancel button on Edit Class popupsched_act_lblTidsplanLabel for schedule gate activityws_RootRodRoot folder title for workspacemnu_file_scheduleTidsplanMenu bar Schedulemnu_go_scheduleTidsplanMenu bar Go to Schedule Tabws_dlg_cancel_buttonAnnullér2ccm_monitor_activityÅbn aktivitetsmonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpHjælp til monitoraktivitetLabel for Custom Context Monitor Activity Helptd_desc_textBrug af denne "At gøre" funktion er ikke nødvendig for at gennemføre sekvensen. Se hjælpesiden for mere information. <br><br>Denne funktion er nu i funktion.Todo tab descriptionopt_activity_titleValgfri aktivitetTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesUnderaktivitetNumber of child activities for Complex activity shown on canvas.ls_of_textafi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtHåndtér lektionHeading for Management section of Lesson Tabls_tasks_txtObligatoriske opgaverHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGå tilGo button on contribute entry itemlearner_exportPortfolio_btnEksportér portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_validation_schstartIngen dato blev valgt. Vælg dato og tidspunkt.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityEr du sikker på at du vil tvinge brugeren '{0}' til Aktivitet '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityDu har placeret brugeren '{0}' enten på hans/hendes aktuelle eller afsluttede Aktivitet '{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishEr du sikker på, at du vil tvinge brugeren {0} til slutningen af lektionen?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetPlacér venligst brugeren {0} på en aktivitet eller afslutningen af en lektion.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateFærdige brugereTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblTid (Timer : Minutter)Time fields title - Lesson details (manage section)ls_status_scheduled_lblFastsat tilLesson status option - Scheduled (Not Started)goContribute_btn_tooltipFærdiggør denne opgave nutool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHjælptool tip message for help button in toolbarrefresh_btn_tooltipGenindlæs de seneste progressionsdata for brugernetool tip message for the refresh buttonls_manage_editclass_btn_tooltipRedigér listen med brugere og instruktører, som er indskrevet til denne lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipVis alle brugere, som er indskrevet til denne lektiontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipSkift status for denne lektion baseret på drop down menuentool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksportér klasseportfolioen og gem den på din computere til senere brugtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksportér denne brugerportfolio og gem den på din computer til senere brugtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipStart lektionen nutool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipFastsæt lektionen til at starte på et senere tidspunkttool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDobbelklik for at se igangværende bidrag til brugernes aktuelle aktivitetertool tip message for current activity iconcompleted_act_tooltipDobbeltklik for at se bidrag til brugernes afsluttede aktivitetertool tip message for completed activity iconal_validation_schtimeAngiv et gyldigt tidspunktAlert message when user enters an invalid time for schedule startfinish_learner_tooltipFor at tvinge en bruger til at afslutte lektionen, træk brugerens ikon over til denne bjælke og slip detRollover message when user moves their mouse over the end gate bar in monitor tab viewal_doubleclick_todoactivityBeklager, bruger: {0} er ikke nået til denne aktivitet: {1} endnu.alert message when user double click on the todo activity in the sequence under learner tabal_alertNB!Generic title for Alert windowal_confirmBekræftTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSprogindstillingerne er ikke indlæstmessage for unsuccessful language loadingapp_chk_themeloadTemaindstillingerne er ikke indlæstmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan ikke fortsætte. Konkakt supportmessage if application cannot continue due to any errordb_datasend_confirmTak for at sende oplysninger til serverenMessage when user sucessfully dumps data to the servermnu_editRedigérMenu bar Editmnu_edit_copyKopiérMenu bar Edit &gt; Copymnu_edit_cutKlipMenu bar Edit &gt; Cutmnu_edit_pasteSæt indMenu bar Edit &gt; Pastemnu_fileFilMenu bar Filemnu_file_refreshGenindlæsMenu bar Refreshmnu_file_editclassRedigér klasseMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHjælpMenu bar Helpmnu_help_abtOmMenu bar Aboutperm_act_lblRettighederLabel for permission gate activitysynch_act_lblSynkronisérUsed as a label for the Synch Gate Activity Typews_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_tree_mywspMit arbejdsområdeThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacesys_error_msg_startFølgende fejl er opstået:Common System error message starting linesys_error_msg_finishDu er nødt til at genstarte LAMS Forfatter for at fortsætte. Ønsker du at gemme følgende information om fejlen med henblik på at afhjælpe problemet?Common System error message finish paragraphsys_errorSystem fejlSystem Error elert window titlemnu_file_exitExitMenu bar Exitmnu_view_learnersBrugereMenu bar Learnersmnu_goGå tilMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_learnersBrugereMenu bar Go to Learners Tabmnu_go_todoAt gøreMenu bar Todorefresh_btnGenindlæsRefresh buttonhelp_btnHjælpHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSekvensMonitor Sequence tabmtab_learnersBrugereMonitor Learners tabmtab_todoAt gøreMonitor Todo tabls_status_lblStatusStatus label - Lesson detailsls_learners_lblBrugereLearner label - Lesson detailsls_class_lblKlasseClass label - Lesson detailsls_manage_class_lblKlasseClass managing label - Lesson detailsls_manage_start_lblStartStart managing label - Lesson detailsls_manage_learners_btnVis brugereView learners button - Lesson details (manage section)ls_manage_editclass_btnRedigér klasseEdit class button - Lesson details (manage section)ls_manage_apply_btnAnvendStatus Apply button - Lesson details (manage section)ls_manage_date_lblDatoDate field title - Lesson details (manage section)ls_duration_lblTid gåetElapsed duration of lesson - Lesson detailsls_manage_status_cmbVælg statusStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktivérLesson status option - Activatels_status_cmb_disableDeaktivérLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkivLesson status option - Archivels_status_disabled_lblSuspenderetCurrent status description if suspended (disabled)ls_status_archived_lblArkiveretCurrent status description if archviedls_status_started_lblStartetCurrent status description if started (enabled)ls_win_editclass_titleRedigér klasseEdit class window titlels_win_learners_titleVis brugereView learners window titlemnu_viewVisMenu bar Viewls_win_editclass_save_btnGemSave button on Edit Class popupls_win_learners_close_btnLukClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblInstruktørerHeading for Staff list on Edit Class popupls_win_editclass_learners_lblBrugereHeading for Learners list on the Edit Class popupls_win_learners_heading_lblBrugere i klassenHeading on View Learners window panel.td_desc_headingAvancerede indstillingerTodo tab description headingls_continue_action_lblKlik på {0] for at fortsætte.Action label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/de_DE_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_status_disabled_lblVerschobenCurrent status description if suspended (disabled)ls_status_archived_lblArchiviertCurrent status description if archviedls_status_started_lblBegonnenCurrent status description if started (enabled)ls_win_editclass_titleKlasse bearbeitenEdit class window titlels_win_learners_titleTeilnehmer/innen anzeigenView learners window titlemnu_viewAnzeigenMenu bar Viewls_win_editclass_save_btnSpeichernSave button on Edit Class popupls_win_editclass_cancel_btnAbbrechenCancel button on Edit Class popupls_win_learners_close_btnBeendenClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblTrainer/innenHeading for Staff list on Edit Class popupls_win_editclass_learners_lblTeilnehmer/innenHeading for Learners list on the Edit Class popupls_win_learners_heading_lblTeilnehmer/innen in Klasse:Heading on View Learners window panel.td_desc_headingErweiterte Kontrollen:Todo tab description headingtd_desc_textDie Bearbeitung des Todo-Tab ist nicht notwendig, um die Sequenz abzuschließen. Weitere Informationenn auf der Hilfeseite. <br><br> Diese Funktion steht jetzt vollständig zur Verfügung. Todo tab descriptionopt_activity_titleOptionale AktivitätTitle for Optional Activity on canvas (monitoring)ls_of_textvoni.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLektion verwaltenHeading for Management section of Lesson Tabls_tasks_txtErforderliche AufgabenHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnStartGo button on contribute entry itemlearner_exportPortfolio_btnPortfolio exportierenLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_validation_schstartEs wurde noch kein datum eingetragen. Wählen Sie Datum und Zeit aus.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityWollen Sie Teilnehmer/in {0} wirklich dazu zwingen Aktivität '{1}' abzuschließen?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivitySie haben Teilnehmer/in {0} von der aktuellen oder der abgeschlossenen Aktivität '{1}' abgewählt. Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishSind Sie sicher, dass Sie Teilnehmer/in {0} zwingen wollen die Lektion bis zum Ende abzuschließen?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetBitte wählen Sie Teilnehmer/in {0} für eine Aktivität oder bis zum Ende der Lektion ab.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateFertige Teilnehmer/innen:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblZeit (Stunden:Minuten)Time fields title - Lesson details (manage section)ls_status_scheduled_lblGeplantLesson status option - Scheduled (Not Started)goContribute_btn_tooltipBeendenSie diese Aufgabe jetzttool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHilfetool tip message for help button in toolbarrefresh_btn_tooltipAktualisieren Sie die Lernfortschrittsdaten jetzt.tool tip message for the refresh buttonls_manage_editclass_btn_tooltipBearbeiten Sie die Liste der Teilnehmer/inenn und Trainer/innen für diese Lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipAlle Teilnehmer/innen dieser Lektion anzeigentool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipÄndern Sie den Status der Lektion (Dropdown-Auswahl)tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExport des Portfolios der Klasse auf Ihren Computer für spätere Auswertungen.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExport des Portfolios der Teilnehmer/innen auf Ihren Computer für spätere Auswertungen.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipLektion direkt startentool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipGeplante Lektion für späteren Beginntool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDoppelklick für Rückblick auf Teilnehmerbeiträge in derzeitiger Aktivitättool tip message for current activity iconcompleted_act_tooltipDoppelklick für Rückblick auf Teilnehmerbeiträge in abgeschlossenen Aktivitätentool tip message for completed activity iconal_validation_schtimeGeben Sie eine gültige Zeit ein.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipUm den/die Teilnehmer/in an das Ende der Lektion zu verschieben, ziehen Sie sein/ihr Icon an die entsprechende Stelle.Rollover message when user moves their mouse over the end gate bar in monitor tab viewal_doubleclick_todoactivitySorry, Teilnehmer/in {0} hat die Aktivität {1} noch nicht erreicht.alert message when user double click on the todo activity in the sequence under learner tabal_alertWarnungGeneric title for Alert windowal_cancelAbbrechenTo Confirm title for LFErroral_confirmBestätigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDie Sprachdateien wurden nicht geladenmessage for unsuccessful language loadingapp_chk_themeloadDie Themedateien wurden nicht geladenmessage for unsuccessful theme loadingapp_fail_continueDie Anwendung kann nicht fortgesetzt werden. Bitte kontakten Sie den Support.message if application cannot continue due to any errordb_datasend_confirmVielen Dank für die Übermittlung Ihrer Daten.Message when user sucessfully dumps data to the servermnu_editBearbeitenMenu bar Editmnu_edit_copyKopierenMenu bar Edit &gt; Copymnu_edit_cutAusschneidenMenu bar Edit &gt; Cutmnu_edit_pasteEinfügenMenu bar Edit &gt; Pastemnu_fileDateiMenu bar Filemnu_file_refreshAktualisierenMenu bar Refreshmnu_file_editclassKlasse bearbeitenMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHilfeMenu bar Helpmnu_help_abtÜberMenu bar Aboutperm_act_lblRechteLabel for permission gate activitysched_act_lblAblaufLabel for schedule gate activitysynch_act_lblSynchronisierenUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAbbrechen2ws_dlg_location_buttonOrtWorkspace dialogue Location btn labelws_tree_mywspMein ArtbeitsplatzThe root level of the treews_tree_orgsOrganisationenShown in the top level of the tree in the workspacesys_error_msg_startDieser Systemfehler ist auftgetreten:Common System error message starting linesys_error_msg_finishSie müssen den LAMS Monitor nun noch einmal starten. Wollen Sie Informationen über den aufgetretenen Fehler speichern, um sie weiter zu geben?Common System error message finish paragraphsys_errorSystemfehlerSystem Error elert window titlemnu_file_scheduleAblaufMenu bar Schedulemnu_file_exitAusgangMenu bar Exitmnu_view_learnersTeilnehmer/innen...Menu bar Learnersmnu_goGoMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_scheduleAblaufMenu bar Go to Schedule Tabmnu_go_learnersTeilnehmer/innenMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todorefresh_btnAktualisierenRefresh buttonhelp_btnHilfeHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSequenzMonitor Sequence tabmtab_learnersTeilnehmer/innenMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblTeilnehmer/innen:Learner label - Lesson detailsls_class_lblKlasse:Class label - Lesson detailsls_manage_class_lblKlasse:Class managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnTeilnehmer anzeigenView learners button - Lesson details (manage section)ls_manage_editclass_btnKlase bearbeitenEdit class button - Lesson details (manage section)ls_manage_apply_btnAusführenStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnAblaufSchedule start button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblAbgelaufene Zeit:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbAusgewählter Status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktivierenLesson status option - Activatels_status_cmb_disableDeaktivierenLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchivLesson status option - Archivels_manage_status_lblBearbeitungsstatus:Status managing label - Lesson detailslbl_num_activitiesTeilaktivitätenNumber of child activities for Complex activity shown on canvas.ls_manage_learnerExpp_lblPortfolioexport für Teilnehmer/innen aktivierenLabel for Enable export portfolio for Learnerls_confirm_expp_enabledPortfolioexport für Teilnehmer/innen ist jetzt aktivConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledPortfolioexport für Teilnehmer/innen ist jetzt gesperrtConfirmation message on disabling export portfolio for learnersccm_monitor_activityAktivitätenbeobachtung öffnenLabel for Custom Context Monitor Activityccm_monitor_activityhelpHilfe zur AktivitätenbeobachtungLabel for Custom Context Monitor Activity Helpls_learnerURL_lblTeilnehmer/innen URLLearner URL:learner_viewJournals_btnJournaleinträgeLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipAlle von Teilnehmer/innen gespeicherte Jouraleinträge ansehentool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.learners_group_name{0} Teilnehmer/innenGroup name for the class's learners group.ls_remove_confirm_msgSie haben das Löschen der Lektion gewählt. Gelöschte Lektionen könenn nicht wieder hergestellt werden. Wollen Sie fortfahren?remove confirm msgls_status_cmb_removeLöschenLesson status option - Removels_status_removed_lblGelöschtCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNein'No' on the alert dialogls_remove_warning_msgHinweis: Diese Lektion soll gelöscht werden. Soll sie statt dessen archiviert werden?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} Trainer/innenGroup name for the class's staff group.check_avail_btnVerfügbakeit prüfenCheck Availability button labelcontinue_btnWeiterContinue button labells_continue_lblHallo {1}, Sie haben die Bearbeitung von {0} abgeschlossen.Continue message labells_sequence_live_edit_btnLaufende Lektion bearbeitenLive Edit buttonls_sequence_live_edit_btn_tooltipDas Design der aktuellen Lektion bearbeitenTool tip message for Live Edit buttonmsg_bubble_check_action_lblPrüfung...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNicht verfügbar. Noch einmal probieren.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSorry, {0} wird zur Zeit von {1} bearbeitet.Warning message on Monitor locked screen.al_confirm_live_editSie versuchen gerade eine laufende Lektion zu bearbeiten. Wollen siefortsetzenConfirm warning (dialog) message displayed when opening Live Edit.al_sendSendenSend button label on the system error dialogabout_popup_title_lblÜber - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} ist ein geschütztes Markenzeichen der {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDieses Program mit freie Software. Unter den Bedingungen der GNU General Public License Version 2 (veröffentlicht durch die Free Software Foundation) kann es weiter verbreitet und/oder bearbeitet werden.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.mnu_help_helpHilfe zur BeobachtungMenu bar Help itemls_manage_start_btnJetzt beginnenStart immediately button - Lesson details (manage section)ls_status_active_lblAngelegt, aber noch nicht begonnenCurrent status description if active (enabled)ls_continue_action_lblKlick {0}, zum fortsetzenAction label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/el_GR_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgfinish_learner_tooltipΓια την Υποχρεωτική Προώθηση ενός εκπαιδευόμενου στο τέλος του μαθήματος, σύρετε το εικονίδιο του πάνω από τη μπάρα αυτή κι αφήστε το.mnu_view_learnersΕκπαιδευομένων ... view_act_mapped_competencesΠροβολή Συνδεδεμένων Ικανοτήτωνabout_popup_title_lblΠερί - {0}about_popup_version_lblΈκδοση staff_group_name{0} επόπτες al_confirm_forcecomplete_to_end_of_branching_seqΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο {0} στο τέλος του κλάδου αυτής της ακολουθίας;al_confirm_forcecomplete_toactivityΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο '{0}' στη Δραστηριότητα '{1}'; al_confirm_forcecomplete_tofinishΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο'{0}' στο τέλος του μαθήματος; al_activity_view_competence_mappings_invalidΠαρακαλώ σιγουρευτείτε ότι είναι επιλεγμένη μία δραστηριότητα πρίν προσπαθείτε να δείτε τις συνδέσεις ικανοτήτωνbranch_mapping_dlg_conditions_dgd_lblΣυνδέσειςlearner_exportPortfolio_btn_tooltipΕξαγωγή του φακέλου εργασιών του εκπαιδευόμενου και αποθήκευση στον ΗΥ σας για μελλοντική αναφορά. class_exportPortfolio_btn_tooltipΕξαγωγή του φακέλου εργασιών της τάξης και αποθήκευση στον ΗΥ σας για μελλοντική αναφορά.ls_win_editclass_save_btnΑποθήκευσηls_win_editclass_staff_lblΕπόπτεςclose_mc_tooltipΕλαχιστοποίησηlbl_num_sequences{0} - Ακολουθίεςmv_search_not_found_msg{0} δεν είχαν βρεθεί.mv_search_current_page_lblΣελίδα {0} από {1}al_cancelΑκύρωσηal_confirmΕπιβεβαίωσηal_okΟΚmnu_edit_copyΑντιγραφήmnu_edit_cutΑποκοπήmnu_edit_pasteΕπικόλλησηmnu_fileΑρχείοmnu_file_refreshΑνανέωσηmnu_helpΒοήθειαmnu_help_abtΣχετικά perm_act_lblΆδειαws_RootΡίζαws_dlg_cancel_buttonΑκύρωσηws_dlg_location_buttonΤοποθεσίαmv_search_go_btn_lblΠήγαινεmnu_file_exitΈξοδοςmnu_go_todoΓια να κάνετεrefresh_btnΑνανέωσηhelp_btnΒοήθειαmtab_seqΑκολουθίαmtab_todoΓια να κάνετεls_status_lblΚατάστασηls_class_lblΤάξηls_manage_class_lblΤάξηls_status_started_lblΈχουν αρχίσειls_win_editclass_cancel_btnΑκύρωσηopt_activity_titleΠροαιρετική δραστηριότηταlbl_num_activitiesπαιδικές δραστηριότητεςls_of_textαπόcv_activity_helpURL_undefinedΔεν μπορώ να βρω τη σελίδα βοήθεια για {0}ls_status_cmb_disableΑπενεργοποίησηls_manage_start_lblΈναρξηws_tree_orgsΟργανισμοίls_status_cmb_enableΕνεργοποίησεls_confirm_expp_enabledΗ Εξαγωγή του φακέλου εργασιών είναι ενεργοποιημένη τώρα για τους εκπαιδευόμενουςls_status_cmb_activateΕνεργοποίησεls_remove_confirm_msgΕχετε επιλέξει να Διαγράψετε το μάθημα. Διαγραμμένα μαθήματα δε μπορούν να ανακληθούν. Θέλετε να συνεχίσετε;ls_status_removed_lblΔιαγραμμένοls_remove_warning_msgΠΡΟΣΟΧΗ: Το μάθημα πρόκειται να διαγραφεί. Θέλετε να κρατήσετε αυτό το μάθημα σαν αρχειοθετημένο;ws_tree_mywspΟ χώρος εργασίας μουls_status_active_lblΔημιουργήθηκε αλλά δεν εκκινήθηκεabout_popup_copyright_lbl© 2002-2008 Ίδρυμα {0}.al_validation_schtimeΠαρακαλώ εισάγετε μια έγκυρη ώρα.ls_status_scheduled_lblΠρογραμματισμένοsynch_act_lblΣυγχρονισμόςsys_error_msg_startΈνα επόμενο λάθος συστήματος συνέβηls_seq_status_synch_gateΠύλη συγχρονισμούls_seq_status_choose_groupingΕπέλεξε ομάδαls_seq_status_system_gateΠύλη Συστήματοςls_seq_status_not_setΔεν έχει ακόμα οριστείls_seq_status_sched_gateΗμερολόγιο Πύληςbranch_mapping_dlg_group_col_lblΟμάδαccm_monitor_view_group_mappingsΠροβολή Ομάδων Κλάδωνsched_act_lblΠρογραμματισμόςal_validation_schstartΔεν επιλέχθηκε ημερομηνία. Παρακαλώ επιλέξτε μια μέρα και ώραmsg_bubble_failed_action_lblΜη διαθέσιμο, Προσπαθήστε πάλι.goContribute_btn_tooltipΣυμπληρώστε αυτο το στόχο τώρα.ls_locked_msg_lblΣυγνώμη, {0} επεξεργάζεται αυτήν την περίοδο από τον/την {1}.app_chk_langloadΤα δεδομένα ης Γλώσσας δεν έχουν φορτωθείls_confirm_expp_disabledΗ Εξαγωγή του Φακέλου Εργασιών είναι απενεργοποιημένη τώρα για τους εκπαιδευόμενους ls_sequence_live_edit_btn_tooltipΕπεξεργαστείτε το τρέχον σχέδιο για αυτό το μάθημα.sys_error_msg_finishΜπορεί να χρειάζεται να επανεκκινήσετε LAMS Συγγραφέα για να ξεκινήσετε. Θέλετε να αποθηκεύσετε τις επόμενες πληροφορίες σχετικά μ αυτό το λάθοςtd_desc_textΗ χρήση αυτής της ετικέττας Να Κάνετε δεν απαιτείται να ολοκληρώσετε την ακολουθία. Δείτε τη σελίδα βοήθειας για περισσότερες πληροφορίες. Αυτό το χαρακτηριστικό γνώρισμα είναι τώρα πλήρως λειτουργικό.ls_win_editclass_organisation_lblΟργανισμόςls_win_learners_close_btnΚλείσιμοls_status_archived_lblΑρχειοθετημέναls_duration_lblΠαρερχόμενη Διάρκειαls_manage_date_lblΗμερομηνίαls_manage_schedule_btnΠρογραμματισμόςmtab_lessonΜάθημαmnu_go_scheduleΠρογραμματισμόςmnu_go_lessonΜάθημαmnu_file_scheduleΠρογραμματισμόςsys_errorΛάθος Συστήματοςdb_datasend_confirmΕυχαριστούμε για την αποστολή δεδομένων στον εξυπηρετητή.app_fail_continueΗ αίτημα δεν μπορεί να συνεχιστεί. Παρακαλώ επικοινωνήστε με την υποστήριξηapp_chk_themeloadΤα δεδομένα του θέματος δεν έχουν φορτωθείmv_search_invalid_input_msgΟ αριθμός σελίδων πρέπει να είναι μεταξύ 1 και {0}mv_search_error_msgΠαρακλώ εισαγάγετε ένα ερώτημα ή τον αριθμό σελίδας μεταξύ 1 και {0}mv_search_default_txtΕισαγάγετε την ερώτηση που ζητάτε ή τον αριθμό σελίδαςls_manage_apply_btn_tooltipΑλλαγή της κατάστασης του μαθήματος με βάση την επιλογή.al_error_forcecomplete_to_different_seq{0} δεν μπορεί να μετακινηθεί σε μία δραστηριότητα που βρίσκεται σε διαφορετικό κλάδο ή ακολουθία.competence_desc_lblΠεριγραφήls_learnerURL_lblURL Εκπαιδευόμενου: view_competences_dlgΠροβολή Ικανοτήτωνls_manage_time_lblΧρόνος (Ώρες:Λεπτά)help_btn_tooltipΒοήθειαorder_learners_by_completion_lblΤαξινόμηση ως προς ολοκλήρωσηls_confirm_presence_disabledΤώρα οι Εκπαιδευόμενοι δεν μπορούν να βλέπουν ποιοι είναι είναι σε απευθείας Σύνδεση (on line)ls_status_cmb_removeΔιαγραφήal_yesΝαιal_noΟχιls_win_learners_heading_lblΕκπαιδευόμενοι στην τάξη:ls_learners_lblΕκπαιδευόμενοι: ls_manage_presenceEnabled_lblΕπιτρέπεται οι Εκπαιδευόμενοι να βλέπουν ποιοι είναι σε απευθείας Σύνδεση (on line)ls_seq_status_moderationΔιαχειριστής Εποπτώνcontinue_btnΣυνεχιστείτε mnu_help_helpΒοήθεια Εποπτείαςal_sendΑποστολήccm_monitor_activityΆνοιγμα Εποπτείας Δραστηριότηταςccm_monitor_activityhelpΒοήθεια Δραστηριότητα Εποπτείαςmtab_learnersΕκπαιδευόμενοι mnu_editΕπεξεργασίαls_confirm_presence_enabledΤώρα οι Εκπαιδευόμενοι μπορούν να βλέπουν ποιοι είναι είναι σε απευθείας Σύνδεση (on line)mnu_file_editclassΕπεξεργασία Τάξηςtd_goContribute_btnGols_manage_status_lblΑλλαγή Κατάστ.ls_continue_lblΓεια {1}, δεν έχετε τελειώσει την επεξεργασία του {0}.mnu_go_learnersΕκπαιδευόμενοι ls_win_editclass_titleΕπεξεργασία Τάξηςls_sequence_live_edit_btnΖωντανή Επεξ.ls_manage_editclass_btnΕπεξεργασία Τάξηςal_activity_openContent_invalidΣυγνώμη! Απαιτείται η επιλογή μιας δραστηριότητας πριν επιλέξετε Άνοιγμα/Επεξεργασία από το μενού του δεξιού πλήκτρου.ls_continue_action_lblΚάντε κλικ στο {0} για να συνεχίσει. ls_manage_learnerExpp_lblΕνεργοποίηση Εξαγωγής Φακέλου Εργασιών για τους Εκπαιδευόμενουςls_manage_start_btnΈναρξη Τώραview_competences_in_ld_lblΙκανότητες στο σχεδιασμό μάθησης: {0}ls_manage_start_btn_tooltipΈναρξη μαθήματος τώρα.learners_group_name{0} εκπαιδευόμενοι ls_win_learners_titleΠροβολή Εκπαιδευόμενων ls_seq_status_define_laterΟρίστε Αργότεραls_seq_status_contributionΣυνεισφοράal_confirm_live_editΕίστε έτοιμοι να κάνετε "ζωντανή" επεξεργασία μιας δραστηριότητας ενώ εκπονείται. Θέλετε να συνεχιστείτε;ls_seq_status_perm_gateΆδεια Πύλης ls_win_editclass_learners_lblΕκπαιδευόμενοιlearner_viewJournals_btnΠεριοδικό Κατ.mnu_go_sequenceΑκολουθίαccm_monitor_view_condition_mappingsΠροβολή Συνθηκών Κλάδωνmv_search_index_view_btn_lblΠροβολή Ευρετηρίουbranch_mapping_dlg_branch_col_lblΚλάδοςbranch_mapping_dlg_condition_col_lblΣυνθήκηmnu_viewΠροβολή ls_manage_learners_btnΕκπαιδευόμενοιrefresh_btn_tooltipΞανακατεβάστε τα τελευταία δεδομένα προόδου για τους εκπαιδευόμενους current_act_tooltipΔιπλό κλικ για την ανασκόπηση της προόδου συμβολής του εκπαιδευόμενου στη συμπλήρωση της δραστηριότητας. learner_viewJournals_btn_tooltipΠροβολή όλων των Άρθρων του Περιοδικού με τις Εγγραφές Ημερολογίου τους που δημοσιεύθηκαν από τους Εκπαιδευόμενους.mnu_goΜετάβασηcompleted_act_tooltipΔιπλό κλικ για την ανασκόπηση της συμβολής του εκπαιδευόμενου στην συμπλήρωση της δραστηριότητας.ls_manage_learners_btn_tooltipΔείχνει όλους τους εκπαιδευόμενους που έχουν οριστεί στο μάθημα αυτό.al_doubleclick_todoactivityΛυπούμαστε, εκπαιδευόμενος: {0} δεν έχει προσεγγίσει ακόμη τη δραστηριότητα: {1}.about_popup_trademark_lbl{0} είναι ένα εμπορικό σήμα {του ιδρύματος 0} ({1}).al_error_forcecomplete_invalidactivityΤοποθετήσατε τον εκπαιδευόμενο '{0}' στην τρέχουσα ή στην πλήρη δραστηριότητα '{1}' al_error_forcecomplete_notargetΠαρακαλώ τοπηθετήστε τον εκπαιδευόμενο '{0}' σε μια δραστηριότητα ή τέλος μαθήματος.title_sequencetab_endGateΧρήστες που τελείωσαν.ls_manage_schedule_btn_tooltipΠρογραμματισμός μαθήματος για έναρξη σε μελλοντικό χρόνο.learner_exportPortfolio_btnΕξαγ. Φακ. Εργασιώνmnu_file_startΈναρξηcheck_avail_btnΈλεγχος Διαθεσιμότηταςmsg_bubble_check_action_lblΈλεγχος . . .ls_status_disabled_lblΥπό Αναστολήls_status_cmb_archiveΑρχειοθέτησηls_manage_apply_btnΕφαρμογήls_manage_txtΔιαχείριση Μαθήματοςls_tasks_txtΑπαιτούμενες Εργασίεςal_alertΕιδοποίησηls_seq_status_teacher_branchingΚλάδος επιλεγόμενος από τον Καθηγητήςcompetences_mapped_to_act_lblΣυνδεδεμένες Ικανότητες στο {0}mapped_competences_lblΣυνδεδεμένες Ικανότητεςmsg_no_learners_in_lessonΈνας ή περισσότεροι εκπαιδευόμενοι πρέπει να είναι επιλεγμένοιcompetence_title_lblΤίτλοςlabel.grouping.general.instructions.branchingΔεν μπορείτε να προσθέσετε ή να αφαιρέσετε ομάδες σε αυτή την ομαδοποίηση αφού χρησιμοποιείται για διακλάδωση διότι η προσθήκη και η αφαίρεση των ομάδων θα είχαν επιπτώσεις στην οργάνωση της διακλάδωσης. Μπορείτε μόνο να προσθέσετε/απομακρύνετε τους χρήστες στις υπάρχουσες ομάδες.cv_design_unsaved_live_editΟι αλλαγές που δεν έχουν αποθηκευθεί θα σωθούν αυτόματα. Θέλετε να συνεχίσετε την εισαγωγή/(συν)ένωση;ls_manage_status_cmbΕπιλ. Κατάστασηview_time_chart_btn_tooltipΔείτε ένα διάγραμμα με την πρόοδο τους ως προς το χρόνο των επιλεγμένων εκπαιδευομένων για κάθε δραστηριότηταls_manage_editclass_btn_tooltipΕπεξεργασία λίστας Εκπαιδευόμενων και Εποπτών που έχουν οριστεί για αυτό το μάθημα.about_popup_license_lblΑυτό το πρόγραμμα είναι ελεύθερο λογισμικό μπορείτε να το διανείμετε ή/και να το τροποποιήσετε υπό τους όρους της άδειας GNU όπως δημοσιεύονται από το Ίδρυμα Ελεύθερο Λογισμικού.td_desc_headingΠροχωρημένοι έλεγχοιls_win_learners_heading_class_lblΤάξηls_win_learners_heading_activity_lblΔραστηριότηταlearner_plus_tooltip (0) εκπαιδευόμενοι. Κάντε διπλό κλικ για να δείτε την πλήρη λίστα. view_time_graph_btnΠροβολή Γραφήματος Χρόνουview_time_graph_btn_tooltipΔείτε ένα διάγραμμα των εκπαιδευμένων και της προόδοτ τους στο χρόνο για κάθε δραστηριότηταview_time_chart_btnΠροβολή Διαγράματος Χρόνουsupport_act_titleΔραστηριότητα Υποστήριξηςal_error_forcecomplete_support_actΔεν μπορείτε να υποχρεώσετε ένα εκπαιδευόμενο να ολοκληρώσει μια δραστηριότητα υποστήριξηςls_confirm_presence_im_enabledΤα Άμεσσα Μηνύματα είναι ενεργάls_confirm_presence_im_disabledΤα Άμεσσα Μηνύματα είναι ανενεργάls_manage_presenceImEnabled_lblΕνεργοποίηση Άμεσων Μηνυμάτων \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/en_AU_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} cannot be dropped on an activity that is in a different branch or sequence.mnu_go_sequenceSequenceal_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportdb_datasend_confirmThanks for Sending data to servermnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_fileFilemnu_file_refreshRefreshmnu_file_editclassEdit Classmnu_file_startStartmnu_helpHelpmnu_help_abtAboutperm_act_lblPermissionsched_act_lblSchedulesynch_act_lblSynchronisews_RootRootws_dlg_cancel_buttonCancelws_dlg_location_buttonLocationws_tree_mywspMy Workspacews_tree_orgsOrganisationssys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errormnu_file_scheduleSchedulemnu_file_exitExitmnu_view_learnersLearners...mnu_goGomnu_go_lessonLessonmnu_go_scheduleSchedulemnu_go_learnersLearnersmnu_go_todoTodorefresh_btnRefreshhelp_btnHelpmtab_lessonLessonmtab_seqSequencemtab_learnersLearnersmtab_todoTodols_status_lblStatus:ls_learners_lblLearners:ls_class_lblClass:ls_manage_class_lblClass:ls_manage_start_lblStart:ls_manage_learners_btnView Learnersls_manage_editclass_btnEdit Classls_manage_apply_btnApplyls_manage_schedule_btnSchedulels_manage_date_lblDatels_duration_lblElapsed Duration:ls_manage_status_cmbSelect status:ls_status_cmb_activateActivatels_status_cmb_disableDisablels_status_cmb_enableActivels_status_cmb_archiveArchivels_status_archived_lblArchivedls_status_started_lblStartedls_win_editclass_titleEdit Classls_win_learners_titleView Learnersmnu_viewViewls_win_editclass_save_btnSavels_win_editclass_cancel_btnCancells_win_learners_close_btnClosels_win_editclass_organisation_lblOrganisationls_win_editclass_learners_lblLearnerstd_desc_headingAdvanced Controls:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.&lt;br&gt;&lt;br&gt;This feature is now fully functional.opt_activity_titleOptional Activityls_of_textofls_manage_txtManage Lessonls_tasks_txtRequired Taskstd_goContribute_btnGols_status_disabled_lblDisabledlearner_exportPortfolio_btnExport Portfoliols_status_scheduled_lblScheduledal_error_forcecomplete_invalidactivityYou have dropped the learner '{0}' on either its current or on its completed activity '{1}'al_error_forcecomplete_notargetPlease drop the learner '{0}' on an activity or end of lesson.title_sequencetab_endGateFinished Learners:al_confirm_forcecomplete_toactivityAre you sure you want to force complete learner '{0}' to Activity '{1}'?al_confirm_forcecomplete_tofinishAre you sure you want to force complete learner '{0}' to the end of lesson?ls_manage_learnerExpp_lblEnable export portfolio for learnerls_confirm_expp_enabledExport Portfolio is now enabled for learnersls_confirm_expp_disabledExport Portfolio is now disabled for learnersrefresh_btn_tooltipReload the latest progress data for the learners ls_manage_schedule_btn_tooltipSchedule lesson to start in a future timecurrent_act_tooltipDouble click to review in-progress contribution for learner's current activitycompleted_act_tooltipDouble click to review the contribution for learner's completed activityls_learnerURL_lblLearner URL:ls_manage_status_lblChange Status:al_validation_schstartNo date was selected. Please select a date and time.ls_manage_time_lblTime (Hours : Minutes)ls_manage_learners_btn_tooltipShows all the learners assigned to this lessonls_manage_apply_btn_tooltipChange the status of this lesson based on the drop down selectionls_manage_start_btn_tooltipStart the lesson immediatelygoContribute_btn_tooltipComplete this task nowhelp_btn_tooltipHelpls_manage_start_btnStart Nowls_status_active_lblCreated but not startedal_doubleclick_todoactivitySorry, learner: {0} has not reached the activity: {1}, yet.ls_confirm_presence_enabledNow learners can see who is onlinels_confirm_presence_disabledNow learners cannot see who is onlinelearner_viewJournals_btnJournal Entrieslearner_viewJournals_btn_tooltipView all Journal Entries saved by Learnerslabel.grouping.general.instructions.branchingYou cannot add or remove groups for this grouping as it is used for Branching and adding and removing groups would affect the group to branch setup. You can only add/remove users to the existing groups.mv_search_default_txtEnter search query or page numberbranch_mapping_dlg_conditions_dgd_lblMappingsal_validation_schtimePlease enter a valid time.ccm_monitor_activityOpen Activity Monitorccm_monitor_activityhelpMonitor Activity Helpmnu_help_helpMonitoring Helpsupport_act_titleSupport Activityal_error_forcecomplete_support_actCannot force complete a learner to a support activityfinish_learner_tooltipTo force complete a learner to the end of lesson, drag the learner icon over to this bar and release the iconabout_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} learnersls_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson?ls_remove_confirm_msgYou have selected to Remove this lesson. Removed lessons cannot be retrieved again. Continue?ls_status_cmb_removeRemovels_status_removed_lblRemovedal_yesYesal_noNoal_confirm_live_editYou are about to open Live Edit. Do you wish to continue?al_sendSendcheck_avail_btnCheck Availabilitycontinue_btnContinuels_continue_lblHi {1}, you haven't finished editing <b>{0}</b>.ls_sequence_live_edit_btnLive Editls_sequence_live_edit_btn_tooltipEdit the current design for this lesson.msg_bubble_check_action_lblChecking ...msg_bubble_failed_action_lblUnavailable, Try Again.ls_locked_msg_lblSorry, <b>{0}</b> is currently being edited by {1}.ls_continue_action_lblClick {0} to proceed.mv_search_error_msgPlease enter a search query or page number between 1 and {0}about_popup_copyright_lbl© 2002-2009 {0} Foundation. mv_search_invalid_input_msgThe page number must be between 1 and {0}lbl_num_sequences{0} - Sequencesal_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.lbl_num_activities{0} - Activitiesls_win_learners_heading_activity_lblActivityls_win_editclass_staff_lblMonitorsls_manage_editclass_btn_tooltipEdit the list of learners and monitors assigned to this lessonstaff_group_name{0} monitorsmv_search_not_found_msg{0} was not found.mv_search_current_page_lblPage {0} of {1}mv_search_go_btn_lblGomv_search_index_view_btn_lblIndex Viewclose_mc_tooltipMinimizels_seq_status_moderationModerationls_seq_status_define_laterDefine Laterls_seq_status_perm_gatePermission Gatels_seq_status_synch_gateSynchronise Gatels_seq_status_choose_groupingChoose Groupingls_seq_status_contributionContributionls_seq_status_system_gateSystem Gatels_seq_status_teacher_branchingTeacher Chosen Branchingls_seq_status_not_setNot yet setls_seq_status_sched_gateSchedule Gateapp_chk_langloadThe language data has not been loadedbranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionccm_monitor_view_group_mappingsView Groups to Branchesccm_monitor_view_condition_mappingsView Conditions to Branchesbranch_mapping_dlg_group_col_lblGroupcv_activity_helpURL_undefinedCannot find help page for {0}cv_design_unsaved_live_editUnsaved changes will be automatically saved. Do you wish to continue with insert/merge? ls_win_learners_heading_class_lblClassmapped_competences_lblMapped Competenciescompetences_mapped_to_act_lblCompetencies mapped to {0}competence_title_lblTitlecompetence_desc_lblDescriptionview_competences_dlgView Competenciesview_competences_in_ld_lblCompetencies in learning design: {0}view_act_mapped_competencesView Mapped Competenciesls_manage_presenceEnabled_lblAllow Learners to see who is onlineal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.order_learners_by_completion_lblOrder by completional_confirm_forcecomplete_to_end_of_branching_seqAre you sure you want to force complete learner {0} to the end of this branching sequence?learner_plus_tooltip{0} learners. Double-click to see the full list.ls_win_learners_heading_lblLearners in {0}: {1}class_exportPortfolio_btn_tooltipExport the class portfolio and save it on you computer for future referencelearner_exportPortfolio_btn_tooltipExport this learner portfolio and save it on you computer for future referenceview_time_graph_btnView Time Graphview_time_graph_btn_tooltipView a graph of student progress against time for each activityview_time_chart_btnView Time Chartview_time_chart_btn_tooltipView a chart of the selected student's progress against time for each activitymsg_no_learners_in_lessonOne or more learners must be selectedls_manage_presenceImEnabled_lblEnable Instant Messaging ls_confirm_presence_im_enabledInstant Messaging is now enabledls_confirm_presence_im_disabledInstant Messaging is now disabled \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/en_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} cannot be dropped on an activity that is in a different branch or sequence.mnu_go_sequenceSequenceal_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportdb_datasend_confirmThanks for Sending data to servermnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_fileFilemnu_file_refreshRefreshmnu_file_editclassEdit Classmnu_file_startStartmnu_helpHelpmnu_help_abtAboutperm_act_lblPermissionsched_act_lblSchedulesynch_act_lblSynchronisews_RootRootws_dlg_cancel_buttonCancelws_dlg_location_buttonLocationws_tree_mywspMy Workspacews_tree_orgsOrganisationssys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errormnu_file_scheduleSchedulemnu_file_exitExitmnu_view_learnersLearners...mnu_goGomnu_go_lessonLessonmnu_go_scheduleSchedulemnu_go_learnersLearnersmnu_go_todoTodorefresh_btnRefreshhelp_btnHelpmtab_lessonLessonmtab_seqSequencemtab_learnersLearnersmtab_todoTodols_status_lblStatus:ls_learners_lblLearners:ls_class_lblClass:ls_manage_class_lblClass:ls_manage_start_lblStart:ls_manage_learners_btnView Learnersls_manage_editclass_btnEdit Classls_manage_apply_btnApplyls_manage_schedule_btnSchedulels_manage_date_lblDatels_duration_lblElapsed Duration:ls_manage_status_cmbSelect status:ls_status_cmb_activateActivatels_status_cmb_disableDisablels_status_cmb_enableActivels_status_cmb_archiveArchivels_status_archived_lblArchivedls_status_started_lblStartedls_win_editclass_titleEdit Classls_win_learners_titleView Learnersmnu_viewViewls_win_editclass_save_btnSavels_win_editclass_cancel_btnCancells_win_learners_close_btnClosels_win_editclass_organisation_lblOrganisationls_win_editclass_learners_lblLearnerstd_desc_headingAdvanced Controls:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.&lt;br&gt;&lt;br&gt;This feature is now fully functional.opt_activity_titleOptional Activityls_of_textofls_manage_txtManage Lessonls_tasks_txtRequired Taskstd_goContribute_btnGols_status_disabled_lblDisabledlearner_exportPortfolio_btnExport Portfoliols_status_scheduled_lblScheduledal_error_forcecomplete_invalidactivityYou have dropped the learner '{0}' on either its current or on its completed activity '{1}'al_error_forcecomplete_notargetPlease drop the learner '{0}' on an activity or end of lesson.title_sequencetab_endGateFinished Learners:al_confirm_forcecomplete_toactivityAre you sure you want to force complete learner '{0}' to Activity '{1}'?al_confirm_forcecomplete_tofinishAre you sure you want to force complete learner '{0}' to the end of lesson?ls_manage_learnerExpp_lblEnable export portfolio for learnerls_confirm_expp_enabledExport Portfolio is now enabled for learnersls_confirm_expp_disabledExport Portfolio is now disabled for learnersrefresh_btn_tooltipReload the latest progress data for the learners ls_manage_schedule_btn_tooltipSchedule lesson to start in a future timecurrent_act_tooltipDouble click to review in-progress contribution for learner's current activitycompleted_act_tooltipDouble click to review the contribution for learner's completed activityls_learnerURL_lblLearner URL:ls_manage_status_lblChange Status:al_validation_schstartNo date was selected. Please select a date and time.ls_manage_time_lblTime (Hours : Minutes)ls_manage_learners_btn_tooltipShows all the learners assigned to this lessonls_manage_apply_btn_tooltipChange the status of this lesson based on the drop down selectionls_manage_start_btn_tooltipStart the lesson immediatelygoContribute_btn_tooltipComplete this task nowhelp_btn_tooltipHelpls_manage_start_btnStart Nowls_status_active_lblCreated but not startedal_doubleclick_todoactivitySorry, learner: {0} has not reached the activity: {1}, yet.ls_confirm_presence_enabledNow learners can see who is onlinels_confirm_presence_disabledNow learners cannot see who is onlinelearner_viewJournals_btnJournal Entrieslearner_viewJournals_btn_tooltipView all Journal Entries saved by Learnerslabel.grouping.general.instructions.branchingYou cannot add or remove groups for this grouping as it is used for Branching and adding and removing groups would affect the group to branch setup. You can only add/remove users to the existing groups.mv_search_default_txtEnter search query or page numberbranch_mapping_dlg_conditions_dgd_lblMappingsal_validation_schtimePlease enter a valid time.ccm_monitor_activityOpen Activity Monitorccm_monitor_activityhelpMonitor Activity Helpmnu_help_helpMonitoring Helpsupport_act_titleSupport Activityal_error_forcecomplete_support_actCannot force complete a learner to a support activityfinish_learner_tooltipTo force complete a learner to the end of lesson, drag the learner icon over to this bar and release the iconabout_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} learnersls_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson?ls_remove_confirm_msgYou have selected to Remove this lesson. Removed lessons cannot be retrieved again. Continue?ls_status_cmb_removeRemovels_status_removed_lblRemovedal_yesYesal_noNoal_confirm_live_editYou are about to open Live Edit. Do you wish to continue?al_sendSendcheck_avail_btnCheck Availabilitycontinue_btnContinuels_continue_lblHi {1}, you haven't finished editing <b>{0}</b>.ls_sequence_live_edit_btnLive Editls_sequence_live_edit_btn_tooltipEdit the current design for this lesson.msg_bubble_check_action_lblChecking ...msg_bubble_failed_action_lblUnavailable, Try Again.ls_locked_msg_lblSorry, <b>{0}</b> is currently being edited by {1}.ls_continue_action_lblClick {0} to proceed.mv_search_error_msgPlease enter a search query or page number between 1 and {0}about_popup_copyright_lbl© 2002-2009 {0} Foundation. mv_search_invalid_input_msgThe page number must be between 1 and {0}lbl_num_sequences{0} - Sequencesal_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.lbl_num_activities{0} - Activitiesls_win_learners_heading_activity_lblActivityls_win_editclass_staff_lblMonitorsls_manage_editclass_btn_tooltipEdit the list of learners and monitors assigned to this lessonstaff_group_name{0} monitorsmv_search_not_found_msg{0} was not found.mv_search_current_page_lblPage {0} of {1}mv_search_go_btn_lblGomv_search_index_view_btn_lblIndex Viewclose_mc_tooltipMinimizels_seq_status_moderationModerationls_seq_status_define_laterDefine Laterls_seq_status_perm_gatePermission Gatels_seq_status_synch_gateSynchronise Gatels_seq_status_choose_groupingChoose Groupingls_seq_status_contributionContributionls_seq_status_system_gateSystem Gatels_seq_status_teacher_branchingTeacher Chosen Branchingls_seq_status_not_setNot yet setls_seq_status_sched_gateSchedule Gateapp_chk_langloadThe language data has not been loadedbranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionccm_monitor_view_group_mappingsView Groups to Branchesccm_monitor_view_condition_mappingsView Conditions to Branchesbranch_mapping_dlg_group_col_lblGroupcv_activity_helpURL_undefinedCannot find help page for {0}cv_design_unsaved_live_editUnsaved changes will be automatically saved. Do you wish to continue with insert/merge? ls_win_learners_heading_class_lblClassmapped_competences_lblMapped Competenciescompetences_mapped_to_act_lblCompetencies mapped to {0}competence_title_lblTitlecompetence_desc_lblDescriptionview_competences_dlgView Competenciesview_competences_in_ld_lblCompetencies in learning design: {0}view_act_mapped_competencesView Mapped Competenciesls_manage_presenceEnabled_lblAllow Learners to see who is onlineal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.order_learners_by_completion_lblOrder by completional_confirm_forcecomplete_to_end_of_branching_seqAre you sure you want to force complete learner {0} to the end of this branching sequence?learner_plus_tooltip{0} learners. Double-click to see the full list.ls_win_learners_heading_lblLearners in {0}: {1}class_exportPortfolio_btn_tooltipExport the class portfolio and save it on you computer for future referencelearner_exportPortfolio_btn_tooltipExport this learner portfolio and save it on you computer for future referenceview_time_graph_btnView Time Graphview_time_graph_btn_tooltipView a graph of student progress against time for each activityview_time_chart_btnView Time Chartview_time_chart_btn_tooltipView a chart of the selected student's progress against time for each activitymsg_no_learners_in_lessonOne or more learners must be selectedls_manage_presenceImEnabled_lblEnable Instant Messaging ls_confirm_presence_im_enabledInstant Messaging is now enabledls_confirm_presence_im_disabledInstant Messaging is now disabled \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/es_ES_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_manage_status_lblCambiar Status:ls_manage_start_btnComenzar Ahorals_status_active_lblCreado pero no iniciadols_confirm_presence_enabledEstudiantes pueden ver quien esta onlineclose_mc_tooltipMinimizaral_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okOKapp_chk_themeloadLa información de plantilla no ha sido cargadaapp_fail_continueLa aplicación no puede continuar. Contacte al administrador de sistema.db_datasend_confirmLa información de fallo ha sido enviada al servidor. Gracias.mnu_editEditarmnu_edit_copyCopiarmnu_edit_cutCortarmnu_edit_pastePegarmnu_fileArchivomnu_file_refreshRefrescarmnu_file_editclassEditar Clasemnu_file_startComenzarmnu_helpAyudamnu_help_abtAcerca deperm_act_lblPermisosched_act_lblTiempows_RootRaízws_dlg_cancel_buttonCancelarws_dlg_location_buttonLocalizaciónws_tree_mywspMi Espacio de Trabajows_tree_orgsOrganizacionessys_error_msg_startHa ocurrido un error de sistema.sys_error_msg_finishTiene que recomenzar sys_errorError de sistemamnu_file_scheduleTiempomnu_file_exitSalirmnu_view_learnersEstudiantes...mnu_goIrmnu_go_lessonLecciónmnu_go_scheduleTiempomnu_go_learnersEstudiantesmnu_go_todoPara hacerrefresh_btnRefrescarhelp_btnAyudamtab_lessonLecciónmtab_learnersEstudiantesmtab_todoPara hacerls_status_lblStatusls_learners_lblEstudiantesls_class_lblClasels_manage_class_lblClasels_manage_start_lblComenzarls_manage_learners_btnVer Estudiantesls_manage_editclass_btnEditar Clasels_manage_apply_btnAplicar cambiosls_manage_schedule_btnTiempols_manage_date_lblFechals_duration_lblDuración:ls_manage_status_cmbSeleccione statusls_status_cmb_activateActivarls_status_cmb_disableDeshabilitarls_status_cmb_enableActivols_status_cmb_archiveArchivarls_status_disabled_lblSuspendidols_status_archived_lblArchivadols_status_started_lblComenzadols_win_editclass_titleEditar Clasels_win_learners_titleVer Estudiantesmnu_viewVerls_win_editclass_save_btnGuardarls_win_editclass_cancel_btnCancelarls_win_learners_close_btnCerrarls_win_editclass_organisation_lblOrganizaciónls_win_editclass_staff_lblTutoresls_win_editclass_learners_lblEstudiantesls_win_learners_heading_lblEstudiantes en Clasetd_desc_headingControles avanzadosopt_activity_titleActividades Opcionaleslbl_num_activitiesSubactividadesls_of_textdels_manage_txtAdministrar lecciónls_tasks_txtTareas Requeridastd_goContribute_btnIrmnu_go_sequenceSecuenciaal_confirm_forcecomplete_toactivity¿Está seguro que desea mover al estudiante '{0}' a la Actividad '{1}'?synch_act_lblSincronizarccm_monitor_activityAbrir Seguimiento para Actividadlearner_exportPortfolio_btnExportar Portfolioal_error_forcecomplete_invalidactivitySe ha tratado de mover el estudiante '{0}' a la misma actividad o a otra actividad que ya ha sido completada '{1}'.al_confirm_forcecomplete_tofinish¿Esta seguro de mover el estudiante '{0}' hasta el final de la lección?al_error_forcecomplete_notargetTiene que mover al estudiante '{0}' a una actividad o a el final de la lección.title_sequencetab_endGateEstudiantes que han terminado la lección:ls_status_scheduled_lblProgramadaal_confirm_forcecomplete_to_end_of_branching_seq¿Esta seguro que desea adelantar al estudiante {0} hasta el final de esta rama?al_error_forcecomplete_to_different_seq{0} no puede ser movido a una actividad que no pertenece a la secuencia a la que está asignado.lbl_num_sequences{0} - Secuenciasls_manage_learnerExpp_lblActivar Portfolio Export para estudiantesls_confirm_expp_enabledPortfolio Export esta activo para estudiantesls_confirm_expp_disabledPortfolio Export esta desactivado para estudianteshelp_btn_tooltipAyudarefresh_btn_tooltipActualizar la información de estudiantesls_manage_apply_btn_tooltipCambiar el estado de esta leccióncompleted_act_tooltipDoble click para ver la contribución de este estudiante a esta actividadls_learnerURL_lblAcceso directo URL:support_act_titleActividades de Soporteal_validation_schstartNo se ha seleccionado fecha. Por favor seleccione fechar y hora para continuar.ls_manage_time_lblHora (Horas : Minutos)goContribute_btn_tooltipCompletar esta tarea ahorals_manage_editclass_btn_tooltipEditar la lista de estudiantes para esta lecciónls_manage_learners_btn_tooltipLista de estudiantes registrados en esta lecciónclass_exportPortfolio_btn_tooltipExportar el portfolio de toda la claselearner_exportPortfolio_btn_tooltipExportar el portfolio para este estudiantels_manage_start_btn_tooltipComenzar esta lección inmediatamentels_manage_schedule_btn_tooltipAgendar el comienzo de esta leccióncurrent_act_tooltipDoble click para ver el progreso de este estudiante en esta actividadal_error_forcecomplete_support_actNo se puede poner un estudiante en una actividad de soporteal_doubleclick_todoactivity{0} no ha alcanzado actividad {1} todavíalearner_viewJournals_btnAnotacioneslearner_viewJournals_btn_tooltipVer todas las anotaciones de los estudiantesal_yesSimv_search_default_txtBuscar o páginaal_noNoal_validation_schtimeLa hora entrada no es válida.finish_learner_tooltipPara mover a un estudiante hasta el final de la lección, seleccione al estudiante y arrastre hasta esta barra. check_avail_btnVerificar disponibilidadcontinue_btnContinuarls_continue_lblHola {1}, usted no ha terminado de editar esta lección {0}.ls_sequence_live_edit_btnEdición en Vivols_sequence_live_edit_btn_tooltipEditar esta leccionmsg_bubble_check_action_lblValidando ...msg_bubble_failed_action_lblNo esta disponible, Pruebe nuevamentels_locked_msg_lblAtención: {0} esta siendo editada por {1}. al_confirm_live_editUsted esta apunto de Editar esta lección. ¿Desea continuar?al_sendEnviarabout_popup_title_lblAcerca de {0}about_popup_version_lblVersiónabout_popup_trademark_lbl{0} es marca registrada de {0} Foundation ( {1} ). about_popup_license_lblEste programa es de software libre. Usted puede distribuirlo y/o modificarlo bajo los terminos de la GNU General Public License versión 2 como está publicada por la Free Software Foudantion. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} estudiantesstaff_group_name{0} tutoresls_remove_confirm_msgHa seleccionado un diseño para borrar. Note que no puede recuperar diseños despues de esta acción. ¿Desea continuar?ls_status_cmb_removeBorrarls_status_removed_lblBorradols_remove_warning_msgAtención: Esta lección esta por ser borrada. ¿Desea mantener la lección?ls_continue_action_lblPresione {0} para continuartd_desc_textEl uso de esta pestaña no es requerido para completar esta lección. Vea la página de informacion para más detalles. mtab_seqSecuenciaal_activity_view_competence_mappings_invalidAsegúrese que tiene una actividad seleccionada para poder ver sus competenciasal_activity_openContent_invalidAtención: Usted debe seleccionar una actividad antes de elegir la opción de Abrir o Editar Contenido.mv_search_error_msgIngrese un vocablo a buscar o el número de página entre 1 y {0}mv_search_invalid_input_msgEl número de página debe ser entre 1 y {0}mv_search_not_found_msgNo se encontro {0}mv_search_current_page_lblPágina {0} de {1}mv_search_go_btn_lblIrmv_search_index_view_btn_lblVolver al índiceabout_popup_copyright_lbl© 2002-2009 Fundación {0}. ccm_monitor_activityhelpAyuda para Seguimiento de Actividadmnu_help_helpAyuda de Seguimientols_seq_status_moderationModeraciónls_seq_status_define_laterDefinir en Seguimientols_seq_status_perm_gatePuerta de permisols_seq_status_synch_gatePuerta de Sincronizaciónls_seq_status_choose_groupingAsignar gruposls_seq_status_contributionContribucciónls_seq_status_system_gatePuerta de sistemals_seq_status_teacher_branchingAsignación de estudiantes a ramasls_seq_status_not_setNo ha sido asignado todavíals_seq_status_sched_gatePuerta por tiempoapp_chk_langloadLa información de lenguaje no ha sido cargadabranch_mapping_dlg_conditions_dgd_lblRamas y Condicionesbranch_mapping_dlg_branch_col_lblRamabranch_mapping_dlg_condition_col_lblCondiciónccm_monitor_view_group_mappingsMostrar Grupos y Ramasccm_monitor_view_condition_mappingsMostrar Condiciones y Ramasbranch_mapping_dlg_group_col_lblGruposcv_activity_helpURL_undefinedNo se puede encontrar la página de {0}cv_design_unsaved_live_editLos cambios relizados hasta ahora deben ser guardados. ¿Desea continuar con Insertar?label.grouping.general.instructions.branchingNo se puede remover o añadir grupos porque están siendo usados para una o más actividades de ramificación. Se puede solo añadir o remover usuarios a grupos pre-existentes.mapped_competences_lblConección de Objectivos y Actividadescompetences_mapped_to_act_lblObjetivos conectados a {0} competence_title_lblTítulocompetence_desc_lblDescripción view_competences_dlgVer Objetivosview_competences_in_ld_lblObjetivos en diseño: {0} view_act_mapped_competencesVer conección de objetivos y actividadesls_manage_presenceEnabled_lblPermitir ver que estudiantes estan online order_learners_by_completion_lblOrderar por completiciónls_confirm_presence_disabledEstudiantes no pueden ver quien esta onlinels_win_learners_heading_class_lblClasels_win_learners_heading_activity_lblActividadlearner_plus_tooltip{0} alumnos. Pulse dos veces para ver la lista completa.view_time_graph_btnVer gráfico de tiemposview_time_graph_btn_tooltipVer gráfico del tiempo que le ha tomado a cada estudiante realizar cada actividad.view_time_chart_btnVer gráfico de tortaview_time_chart_btn_tooltipVer gráfico que muestra el tiempo de un usuario en particular para cada actividad.msg_no_learners_in_lessonAl menos un estudiante debe ser seleccionadols_manage_presenceImEnabled_lblActivar mensajes instantaneosls_confirm_presence_im_enabledSe han activado mensajes instantaneosls_confirm_presence_im_disabledSe han desactivado mensajes instantaneos \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/fr_FR_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3support_act_titleActivité de soutienal_error_forcecomplete_to_different_seq{0} ne peut pas être ajouté à une activité qui se situe dans une branche ou une séquence différente. al_error_forcecomplete_invalidactivityVous avez sorti l'apprenant '{0}' de son activité courante ou de son activité terminée '{1}'al_error_forcecomplete_notargetVeuillez sortir l'apprenant '{0}' sur une activité ou à la fin de la leçon.al_confirm_forcecomplete_toactivityVoulez-vous vraiment terminer de force l'activité '{1}' pour l'apprenant '{0}'?al_activity_openContent_invalidDésolé! Vous essayez de sélectionner l'activité avant d'avoir cliqué sur ouvrir/modifier un contenu d'activité dans le menu (clic droit pour l'ouvrir).ccm_monitor_activityOuvrir l'outil de suivi pour les activitésccm_monitor_activityhelpAide pour l'outil de suivils_win_learners_heading_activity_lblActivitéal_doubleclick_todoactivityDésolé, l'étudiant: {0} n'a pas encore atteint l'activité: {1}.al_error_forcecomplete_support_actImpossible de forcer qu'un apprenant finisse une activité de soutienapp_fail_continueL'application ne peut pas continuer. Veuillez contacter votre contact locallearner_viewJournals_btn_tooltipAfficher toutes les entrées du calepin enregistrés par les apprenantsccm_monitor_view_group_mappingsAfficher groupes vers branchescurrent_act_tooltipDouble-cliquer pour voir l'avancement de la contribution de l'apprenant dans l'activité en coursal_activity_view_competence_mappings_invalidVeuillez vous assurer que vous avez sélectionné une activité avant d'essayer d'afficher le mappage des compétences.mnu_viewAfficherls_win_learners_titleAfficher les apprenantsls_manage_learners_btnAfficher les apprenantscompleted_act_tooltipDouble-cliqueer pour afficher la contribution de l'apprenant pour l'activité terminéeview_time_graph_btnAfficher graphique chronologiquemv_search_index_view_btn_lblRetourner à l'indexccm_monitor_view_condition_mappingsAfficher conditions vers branchesview_time_chart_btn_tooltipAfficher un graphique chronologique de progression pour l'apprenant choisi pour chaque activité.view_time_graph_btn_tooltipAfficher un graphique chronologique de progression de l'apprenant pour chaque activité.view_act_mapped_competencesAfficherr les compétences mises en correspondanceview_competences_dlgAfficher les compétencesview_time_chart_btnAfficher graphique chronologiqueal_sendEnvoyermsg_no_learners_in_lessonUn ou plusieurs apprenants doivent être sélectionnésls_manage_presenceImEnabled_lblActiver la messagerie instantanée ls_confirm_presence_im_enabledLa messagerie instantanée est maintenant activéels_confirm_presence_im_disabledLa messagerie instantanée est maintenant desactivéeabout_popup_title_lblAu sujet:al_confirm_live_editVous êtes sur le point d'ouvrir l'édition en direct. Voulez-vous continuer?about_popup_version_lblVersionabout_popup_copyright_lbl2002-2009 {0} Foundation.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ).about_popup_license_lblCe programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier, selon les termes de la version 2 de la licence générale publique GNU tel qu'elle est publiée par la "Free Software Foundation".stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgls_continue_action_lblCliquez sur {0} pour effectuer.lbl_num_sequences{0} - séquencesmv_search_not_found_msg{0} n'a pas été trouvé.mv_search_current_page_lblPage {0} sur {1}mv_search_go_btn_lblAller àclose_mc_tooltipRéduireal_confirm_forcecomplete_to_end_of_branching_seqEtes-vous sûr de vouloir forcer l'apprenant {0} de compléter jusqu'à la fin de cette séquence?ls_seq_status_moderationModérationls_seq_status_define_laterDéfinir plus tardls_seq_status_perm_gatePermission Portels_seq_status_synch_gateSynchroniser portels_seq_status_choose_groupingChoisir regroupementls_seq_status_contributionContributionls_seq_status_system_gatePorte systèmels_seq_status_not_setPas encore définils_seq_status_sched_gatePorte horairebranch_mapping_dlg_conditions_dgd_lblMise en correspondance (mappage)branch_mapping_dlg_branch_col_lblBranchebranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupemnu_go_sequenceSéquencecv_activity_helpURL_undefinedLa page d'aide pour {0} est introuvablelabel.grouping.general.instructions.branchingVous ne pouvez pas ajouter ou enlever des groupes de ce regroupement puisque ce dernier est utilisé pour des branchements. Vous pouvez seulement ajouter/enlever des utilisateurs pour des groupes qui existentview_competences_in_ld_lblCompétences pour le design d'apprentissage: {0}mapped_competences_lblCompétences mises en correspondancecompetences_mapped_to_act_lblCompétences mises en correspondance avec {0}competence_title_lblTitrecompetence_desc_lblDescriptionorder_learners_by_completion_lblOrdre d'achèvementls_manage_presenceEnabled_lblPermettre aux apprenants de voir qui est en lignels_confirm_presence_enabledLes apprenants peuvent voir qui est en lignels_confirm_presence_disabledLes apprenants ne peuvent pas voir qui est en lignels_win_learners_heading_class_lblClasselearner_plus_tooltip{0} apprenants. Double-cliquez pour voir la liste complètetd_desc_headingContrôles avancéstd_desc_textL'utilisation de cet onglet "A faire" n'est pas indispensable pour finir la sequence. Voir la page d'aide pour plus d'informations. <br><br> Cette fonctionnalité est maintenant disponible.lbl_num_activities{0} - activités ls_of_textdels_manage_txtGérer la leçonls_tasks_txtTâches obligatoirestd_goContribute_btnAllerlearner_exportPortfolio_btnExporter le Portfoliols_status_scheduled_lblPlanifiéal_confirm_forcecomplete_tofinishVoulez-vous vraiment terminer de force la leçon pour l'apprenant '{0}'?title_sequencetab_endGateApprenants ayant terminé:goContribute_btn_tooltipTerminer cette tâche maintenanthelp_btn_tooltipAiderefresh_btn_tooltipRecharger les dernières données sur la progression des apprenantsls_manage_editclass_btn_tooltipModifier la liste des apprenants et enseignants assignés à cette leçonls_manage_learners_btn_tooltipMontrer tous les apprenants assignés à cette leçonls_manage_apply_btn_tooltipChanger l'état de cette leçon selon le menu déroulantls_manage_start_btn_tooltipCommencer la leçon immédiatementls_manage_schedule_btn_tooltipPlanifier le moment du début de la leçon al_validation_schstartAucune date n'a été sélectionnée. Veuillez choisir une date et une heure.ls_manage_time_lblTemps (Heures : Minutes)al_validation_schtimeVeuillez entrer une heure valide.mtab_learnersApprenantsfinish_learner_tooltipPour forcer un apprenant à terminer la leçon, glissez l'icône de l'apprenant par dessus cette barre et relâchez-làlearner_viewJournals_btnEntrées du calepinls_learnerURL_lblURL de l'apprenant:ls_manage_learnerExpp_lblAutorise l'exportation de portfolio pour l'apprenantls_confirm_expp_enabledL'exportation de portfolio est maintenant autorisée pour les étudiantsls_confirm_expp_disabledL'exporation de portfolio est maintenant désactivée pour les étudiantsls_remove_confirm_msgVous avez choisi de supprimer cette leçon, les leçons supprimées le sont définitivement, souhaitez vous continuer?ls_status_cmb_removeSupprimerls_status_removed_lblsuppriméeal_yesOuial_noNonls_remove_warning_msgATTENTION : Cette leçon va être supprimée, souhaitez vous la conserver?learners_group_name{0} apprenant(s)staff_group_name{0} moniteurscheck_avail_btnVérifier la disponibilitécontinue_btnContinuerls_continue_lblBonjour {1}, vous n'avez pas fini d'éditer {0}.ls_sequence_live_edit_btnEdition en directls_sequence_live_edit_btn_tooltipEditer le design actuel de cette leçon.msg_bubble_check_action_lblVérification...msg_bubble_failed_action_lblIndisponible, essayer encore.ls_locked_msg_lblDésolé, {0} est en cours d'édition par {1}.opt_activity_titleActivité en optionapp_chk_langloadLes données de langue n'ont pas été chargéesapp_chk_themeloadLes données du thème n'ont pas été chargéesdb_datasend_confirmMerci pour votre envoi de données au serveurmnu_editModifiermnu_edit_copyCopiermnu_edit_cutCoupermnu_edit_pasteCollermnu_file_refreshRafraîchirmnu_file_editclassModifier la classemnu_file_startCommencermnu_helpAidemnu_help_abtA propos deperm_act_lblPermissionsched_act_lblHorairesynch_act_lblSynchroniserws_RootRacinews_dlg_cancel_buttonAbandonnerws_dlg_location_buttonLieuws_tree_mywspMon Espace de travailws_tree_orgsInstitutionssys_error_msg_startL'erreur système suivante s'est produite:sys_errorErreur systèmemnu_file_scheduleHorairemnu_file_exitSortirmnu_view_learnersApprenants...mnu_goAllermnu_go_lessonLeçonmnu_go_scheduleHorairemnu_go_learnersApprenantsmnu_go_todoA fairerefresh_btnRafraîchirhelp_btnAidemtab_lessonLeçonmtab_seqSéquencemtab_todoA fairels_status_lblEtat:ls_learners_lblApprenants:ls_class_lblClasse:ls_manage_class_lblClasse:ls_manage_status_lblEtat du changement:ls_manage_start_lblDébut:ls_manage_editclass_btnModifier la classels_manage_apply_btnAppliquerls_manage_schedule_btnHorairels_manage_start_btnCommencer maintenantls_manage_date_lblDatels_duration_lblDurée écoulée:ls_manage_status_cmbChoisir l'état:ls_status_cmb_activateActiverls_status_cmb_disableDésactiverls_status_cmb_enableActifls_status_cmb_archiveArchivels_status_active_lblCréée mais inactivels_status_disabled_lblSuspenduls_status_archived_lblArchivéls_status_started_lblCommencéls_win_editclass_titleModifier la classels_win_editclass_cancel_btnAbandonnerls_win_learners_close_btnFermerls_win_editclass_organisation_lblInstitutionls_win_editclass_staff_lblMoniteursls_win_editclass_learners_lblApprenantsls_win_learners_heading_lblApprenants dans {0}:{1}al_alertAlerteal_cancelAbandonneral_confirmConfirmeral_okOKls_seq_status_teacher_branchingBranchement choisi par l'enseignantmnu_help_helpAide pour la supervisionmv_search_default_txtEntrer la requête de recherche ou le numéro de pagemv_search_invalid_input_msgLe numéro de page doit être compris entre 1 et {0}mv_search_error_msgEntrer la requête de recherche ou un numéro de page compris entre 1 et {0}mnu_fileFichiercv_design_unsaved_live_editLes changement pas enregistrés vont être enregistrés automatiquement. Voulez-vous continuer avec insertion/fusionsys_error_msg_finishVous devez peut-être redémarrer LAMS Auteur pour continuer. Voulez-vous sauvegarder l'information suivante à propose de cette erreur pour aide à régler le problème?ls_win_editclass_save_btnEnregistrerclass_exportPortfolio_btn_tooltipExporter le portfolio de la classe sur votre ordinateur pour usage ultérieurlearner_exportPortfolio_btn_tooltipExporter le portfolio de cet apprenant et le sauvegarder sur votre ordinateur pour usage ultérieur \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/hu_HU_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_confirm_forcecomplete_tofinishBiztos benne, hogy kényszeríti a '{0}' tanulót a lecke befejezésére?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_status_archived_lblArchíváltCurrent status description if archviedls_status_started_lblElindítottCurrent status description if started (enabled)ls_win_editclass_titleOsztály szerkesztéseEdit class window titlels_win_learners_titleTanulókView learners window titlemnu_viewNézetMenu bar Viewls_win_editclass_save_btnMentésSave button on Edit Class popupls_win_editclass_cancel_btnMégseCancel button on Edit Class popupls_win_learners_close_btnBezárásClose button on View Learners popupls_win_editclass_organisation_lblSzervezésHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblSzemélyekHeading for Staff list on Edit Class popupls_win_editclass_learners_lblTanulókHeading for Learners list on the Edit Class popupls_win_learners_heading_lblAz osztály tanulóiHeading on View Learners window panel.td_desc_headingSpeciális szabályokTodo tab description headinglbl_num_activitiesalárendelt tevékenységekNumber of child activities for Complex activity shown on canvas.ls_of_text:i.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLecke menedzseléseHeading for Management section of Lesson Tablearner_exportPortfolio_btnPortfólió exportálásaLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_sendKüldésSend button label on the system error dialogccm_monitor_activityTevékenység Monitor megnyitásaLabel for Custom Context Monitor Activityal_validation_schstartNem választott dátumot. Kérem, válasszon egy dátumot és időt!Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblIdő (óra : perc)Time fields title - Lesson details (manage section)ls_status_scheduled_lblÜtemezettLesson status option - Scheduled (Not Started)help_btn_tooltipSúgótool tip message for help button in toolbarls_manage_editclass_btn_tooltipA leckéhez kapcsolódó tanulók és munkatársak listájának szerkesztésetool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMegmutatja a leckéhez kapcsolódó összes tanulóttool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_start_btn_tooltipAzonnal elindítja a leckéttool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonal_validation_schtimeKérem, adja meg a helyes időt!Alert message when user enters an invalid time for schedule startlearner_viewJournals_btnNapló bejegyzésekLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learners_group_name{0} tanulóGroup name for the class's learners group.ls_status_cmb_removeTörlésLesson status option - Removels_status_removed_lblTörölveCurrent status description if deleted (removed) lesson.al_yesIgenYes on the alert dialogal_noNem'No' on the alert dialogcontinue_btnTovábbContinue button labelmsg_bubble_check_action_lblEllenőrzés ...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblPróbálja újra!Label displayed when check failed i.e. lesson is still locked.about_popup_version_lblVerzióLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} a {0} Alapítvány védjegye ( {1} )Label displaying the trademark statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.org URL address for the application stream.al_error_forcecomplete_to_different_seqNem küldheti a {0} tanulót olyan tevékenységhez, amely másik elágazásban vagy folyamatban van.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequenceal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseTo Confirm title for LFErroral_confirmMegerősítésTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadA nyelvi adatok nem töltődtek be.message for unsuccessful language loadingmnu_editSzerkesztésMenu bar Editmnu_edit_copyMásolásMenu bar Edit &gt; Copymnu_edit_cutKivágásMenu bar Edit &gt; Cutmnu_edit_pasteBeillesztésMenu bar Edit &gt; Pastemnu_fileFájlMenu bar Filemnu_file_refreshFrissítésMenu bar Refreshmnu_file_editclassOsztály szerkesztéseMenu bar Edit Classmnu_file_startKezdésMenu bar Startmnu_helpSúgóMenu bar Helpmnu_help_abtNévjegyMenu bar Aboutsched_act_lblÜtemtervLabel for schedule gate activitysynch_act_lblSzinkronizálásUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonMégse2ws_dlg_location_buttonElérési útWorkspace dialogue Location btn labelws_tree_mywspAz én munkaterületemThe root level of the treews_tree_orgsSzervezésShown in the top level of the tree in the workspacels_manage_learners_btnTanulók megjelenítéseView learners button - Lesson details (manage section)sys_error_msg_startA következő rendszerhiba történt:Common System error message starting linesys_errorRendszerhibaSystem Error elert window titlemnu_file_scheduleÜtemezésMenu bar Schedulemnu_file_exitKilépésMenu bar Exitmnu_view_learnersTanulókMenu bar Learnersmnu_go_lessonLeckeMenu bar Go to Lesson Tabmnu_go_scheduleÜtemezésMenu bar Go to Schedule Tabmnu_go_learnersTanulókMenu bar Go to Learners Tabmnu_help_helpSúgóMenu bar Help itemrefresh_btnFrissítésRefresh buttonhelp_btnSúgóHelp buttonmtab_lessonLeckeMonitor Lesson details tabmtab_learnersTanulókMonitor Learners tabls_status_lblÁllapot:Status label - Lesson detailsls_learners_lblTanulók:Learner label - Lesson detailsls_class_lblOsztály:Class label - Lesson detailsls_manage_class_lblOsztály:Class managing label - Lesson detailsls_manage_status_lblÁllapot változása:Status managing label - Lesson detailsls_manage_start_lblKezdés:Start managing label - Lesson detailsls_manage_editclass_btnOsztály szerkesztéseEdit class button - Lesson details (manage section)ls_manage_apply_btnAlkalmazStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblPortfolió exportálásának engedélyezése tanulók számáraLabel for Enable export portfolio for Learnerls_confirm_expp_enabledA portfolió exportálása engedélyezett ranulók számára.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledA portfolió exportálása nem engedélyezett ranulók számára.Confirmation message on disabling export portfolio for learnersls_manage_schedule_btnÜtemezésSchedule start button - Lesson details (manage section)ls_manage_start_btnKezdés mostStart immediately button - Lesson details (manage section)ls_manage_date_lblDátumDate field title - Lesson details (manage section)ls_duration_lblEltelt idő:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbÁllapotválasztás:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktíválásLesson status option - Activatels_status_cmb_disableLetiltvaLesson status option - Disable (suspend)ls_status_cmb_enableAktívLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiveLesson status option - Archivels_status_active_lblAktívCurrent status description if active (enabled)ls_status_disabled_lblFelfüggesztettCurrent status description if suspended (disabled)sys_error_msg_finishA folytatáshoz újra kellene indítania a LAMS Szerzőt. Szeretné menteni az alábbi információt erről a hibáról a probléma kijavításának érdekében?Common System error message finish paragraphtitle_sequencetab_endGateAz elkészült tanulókTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipAzonnal befejezi a feladatottool tip message for go button in required tasks list in lesson tabrefresh_btn_tooltipÚjratölti a legfrissebb adatokat a tanuló előmenetelérőltool tip message for the refresh buttonmv_search_default_txtAdjon meg keresőfeltételt vagy oldalszámot!The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_not_found_msgA {0} nem találhatóThis message appears when the search does not find any learners whose names contain the search parameter.ls_tasks_txtKötelező feladatokHeading for Required Tasks (todo section of Lesson tab)ccm_monitor_activityhelpA Figyelő tevékenység súgójaLabel for Custom Context Monitor Activity Helpal_confirm_forcecomplete_toactivityBiztos benne, hogy kényszeríti a '{0}' tanulót a '{1}' tevékenység befejezésére?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedls_manage_schedule_btn_tooltipEgy későbbi időpontban történő indításra ütemezi a leckéttool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timeabout_popup_copyright_lbl© 2002-2008 {0} Alapítvány.Label displaying copyright statement in About dialog.ls_seq_status_sched_gateÜtemező kapuA type of Gate Activity where progress depends on time (start time and/or end time)app_chk_themeloadA téma adatai nem töltőftek bemessage for unsuccessful theme loadingapp_fail_continueAz alkalmazást nem folytatható. Kérem, keresse fel a technikai segítséget!message if application cannot continue due to any errorperm_act_lblTiltásLabel for permission gate activitymnu_goIndításMenu bar Gomnu_go_todoElvégzendőMenu bar Todomtab_seqJelenetMonitor Sequence tabmtab_todoElvégzendőMonitor Todo tabopt_activity_titleVálasztható tevékenységTitle for Optional Activity on canvas (monitoring)td_goContribute_btnIndításGo button on contribute entry itemls_learnerURL_lblA tanuló URL-je:Learner URL:mv_search_current_page_lblOldal: {0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblIndításIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.ls_seq_status_perm_gateTiltó kapuA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_system_gateRendszer-kapuA System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_not_setMég nincs beállítvaThe value of the sequence's status is not setdb_datasend_confirmKöszönöm, hogy feltöltötte az adatokat a szerverre.Message when user sucessfully dumps data to the serverls_remove_confirm_msgA lecke eltávolítását választotta. Az eltávolított leckéket nem hozhatja többé vissza. Folytatja?remove confirm msgls_remove_warning_msgFigyelem: Eltávolítani készül ezt a leckét. Meg szeretné tartani inkább?Message for the alert dialog which appears following confirmation dialog for removing a lesson.check_avail_btnA tevékenység ellenőrzéseCheck Availability button labells_continue_lblSzia {1}! Nem fejezte be a {0} szerkesztését.Continue message labells_locked_msg_lblSajnálom, ezt: {0} éppen {1} szerkeszti.Warning message on Monitor locked screen.about_popup_title_lblTájékoztató - {0}Title for the About Pop-up window.about_popup_license_lblEz a program szabad szoftver. Továbbadhatja, és/vagy módosíthatja a Free Software Foundation (Szabad Szoftver Alapítvány) 2-es verziójú GNU General Public Licence (Általános Nyilvános Licensz) feltételei mellett.Label displaying the license statement in the About dialog.ls_seq_status_contributionKözreműködésAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingA tanár által választott elágazásA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_synch_gateSzinkronizáló kapuA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_moderationModerálásDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_choose_groupingCsoportosítás választásaAllows the Teacher to add the learners to chosen groupstd_desc_textAz Elvégzendő fül használata nem szükséges a folyamat befejezéséhez. További információkért nézze meg a súgót! <br><br>Ez a lehetőség már teljesen működőképes.Todo tab descriptionls_manage_apply_btn_tooltipMegváltoztatja a lecke állapotát, attól függően, mit választunk legördülő menüből. tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportálja az osztláy portfólióját, és elmenti az ön gépére, egy későbbi tájékoztatás céljáratool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportálja ennek a tanulónak a portfólióját, és elmenti az ön gépére, egy későbbi tájékoztatás céljáratool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referenceal_doubleclick_todoactivitySajnálom, a {0} tanuló még nem ért el a(z) {1} tevékenységhez.alert message when user double click on the todo activity in the sequence under learner tabstaff_group_name{0} megfigyelésGroup name for the class's staff group.ls_sequence_live_edit_btnKözvetlen szerkesztésLive Edit buttonls_sequence_live_edit_btn_tooltipSzerkeszti ennek a leckének a jelenlegi tervét.Tool tip message for Live Edit buttonal_confirm_live_editA Közvetlen Szerkesztést készül megnyitni.Folytassuk?Confirm warning (dialog) message displayed when opening Live Edit.ls_continue_action_lblKattintson erre: {0} a folytatáshoz!Action label displayed when a user can proceed to Live Edit.close_mc_tooltipLekicsinyítTooltip message for close button on Branching canvas.lbl_num_sequences{0} - Folyamat(ok)Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidSajnálom, választania kell egy tevékenységet, mielőtt rákattint az alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgKérem, adja meg a keresési feltételt, vagy egy 1 és {0} közötti oldalszámot!This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgAz oldalszámnak 1 és {0} között kell lennieThis error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_index_view_btn_lblIndex nézetWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.current_act_tooltipDupla kattintással áttekintheti a folyamatban lévő közreműködéseket a tanulók jelenlegi tevékenységéheztool tip message for current activity iconcompleted_act_tooltipDupla kattintással áttekintheti a folyamatban lévő közreműködéseket a tanulók befejezett tevékenységéheztool tip message for completed activity iconfinish_learner_tooltipHa a befejezéshez a lecke végére akarja kényszeríteni a tanulót, húzza a tanuló ikonját erre a sávra, majd eressze el!Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btn_tooltipMegjeleníti a tanulók átal mentett összes naplótételttool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_confirm_forcecomplete_to_end_of_branching_seqBiztos benne, hogy kényszeríteni akarja a {0} tanulót, hogy az elágazás végén befejezze ezt a folyamatot?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_seq_status_define_laterKésőbb definiálOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authoral_error_forcecomplete_invalidactivityA '{0}' tanulót egy folyamatban lévő, vagy a már befejezett '{1}' tevékenységhez küldteError message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_notargetKérem, küldje a '{0}' tanulót egy tevékenységhez, vagy a lecke végére!Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasbranch_mapping_dlg_conditions_dgd_lblLeképezésekHeading label for Mapping datagrid.branch_mapping_dlg_branch_col_lblElágazásColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblFeltételColumn heading for showing condition description of the mapping.ccm_monitor_view_group_mappingsMegjeleníti az elágazásokhoz rendelt csoportokatLabel for Custom Context View Group Mappingsccm_monitor_view_condition_mappingsMegjeleníti az elágazásokhoz rendelt feltételeketLabel for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lblCsoportColumn heading for showing group name of the mapping.mnu_go_sequenceJelenetMenu bar Go to Sequence Tabcv_activity_helpURL_undefinedNem található súgó ehhez: {0}Alert message when a tool activity has no help url defined.cv_design_unsaved_live_editA nem mentett változásokat automatikusan menteni fogjuk. Folytatni szeretné a beszúrást/összefűzést?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/it_IT_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3refresh_btn_tooltipRicarica gli ultimi dati sulla progressione degli studentitool tip message for the refresh buttonls_seq_status_define_laterDefinisci in seguitoOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_choose_groupingScegli i gruppiAllows the Teacher to add the learners to chosen groupsls_seq_status_contributionContributoAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingSezione scelta dal docenteA type of branching where the Teacher chooses which learners to add to each branchal_cancelAnnullaTo Confirm title for LFErroral_confirmConfermaTo Confirm title for LFErrorls_seq_status_not_setNon ancora stabilitoThe value of the sequence's status is not setapp_chk_themeloadI dati del Tema non sono stati caricatimessage for unsuccessful theme loadingapp_fail_continueL'applicazione non può continuare. Per favore, contatta il supporto tecnico.message if application cannot continue due to any errordb_datasend_confirmGrazie per l'invio dei dati al serverMessage when user sucessfully dumps data to the servermnu_editModificaMenu bar Editmnu_edit_copyCopiaMenu bar Edit &gt; Copymnu_edit_cutTagliaMenu bar Edit &gt; Cutmnu_edit_pasteIncollaMenu bar Edit &gt; Pastemnu_fileFileMenu bar Filemnu_file_editclassModifica ClasseMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpAiutoMenu bar Helpmnu_help_abtSu LAMSMenu bar Aboutperm_act_lblPermessoLabel for permission gate activitysched_act_lblProgrammaLabel for schedule gate activitysynch_act_lblSincronizzaUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnnulla2ws_dlg_location_buttonPosizioneWorkspace dialogue Location btn labelws_tree_mywspLa mia area di lavoroThe root level of the treews_tree_orgsOrganizzazioniShown in the top level of the tree in the workspacesys_errorErrore di sistemaSystem Error elert window titlemnu_file_scheduleProgrammaMenu bar Schedulels_win_learners_heading_lblStudenti nella classeHeading on View Learners window panel.mnu_view_learnersStudenti...Menu bar Learnersmnu_goVaiMenu bar Gomnu_go_lessonLezioneMenu bar Go to Lesson Tabmnu_go_scheduleProgrammaMenu bar Go to Schedule Tabmnu_go_learnersStudentiMenu bar Go to Learners Tabmnu_go_todoDa fareMenu bar Todohelp_btnAiutoHelp buttonmtab_lessonLezioneMonitor Lesson details tabmtab_seqSequenzaMonitor Sequence tabmtab_learnersStudentiMonitor Learners tabmtab_todoDa fareMonitor Todo tabls_status_lblStatusStatus label - Lesson detailsal_alertAlertGeneric title for Alert windowmv_search_index_view_btn_lblIndiceWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.ls_win_editclass_titleModifica ClasseEdit class window titlesys_error_msg_finishDevi far ripartire LAMS Author per continuare. Vuoi salvare le seguenti informazioni sull'errore per contribuire a risolvere questo problema?Common System error message finish paragraphabout_popup_trademark_lbl{0} è un marchio di {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ls_win_editclass_save_btnSalvaSave button on Edit Class popupls_win_editclass_cancel_btnAnnullaCancel button on Edit Class popupls_win_learners_close_btnChiudiClose button on View Learners popupls_win_editclass_organisation_lblOrganizzazioneHeading for Organisation tree on Edit Class popupls_win_editclass_learners_lblStudentiHeading for Learners list on the Edit Class popuptd_desc_headingControlli avanzatiTodo tab description headingopt_activity_titleAttività opzionaleTitle for Optional Activity on canvas (monitoring)ls_learners_lblStudentiLearner label - Lesson detailsls_class_lblClasseClass label - Lesson detailsls_manage_class_lblClasseClass managing label - Lesson detailsls_manage_start_lblStartStart managing label - Lesson detailsls_manage_learners_btnVista StudentiView learners button - Lesson details (manage section)ls_manage_editclass_btnModifica ClasseEdit class button - Lesson details (manage section)ls_manage_apply_btnApplicaStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnProgrammaSchedule start button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblTempo trascorsoElapsed duration of lesson - Lesson detailsls_manage_status_cmbScegli statusStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAttivaLesson status option - Activatels_status_cmb_disableDisabilitaLesson status option - Disable (suspend)ls_status_cmb_enableAttivoLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchivioLesson status option - Archivels_status_disabled_lblSospesoCurrent status description if suspended (disabled)ls_status_archived_lblArchiviatoCurrent status description if archviedls_status_started_lblIniziatoCurrent status description if started (enabled)mnu_file_exitEsciMenu bar Exitls_seq_status_moderationModeratoreDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_of_textdii.e. 1 of 10 Used for showing how many learners have startedls_manage_txtGestisci la LezioneHeading for Management section of Lesson Tabls_tasks_txtCompiti richiestiHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnVaiGo button on contribute entry itemlearner_exportPortfolio_btnEsporta PortfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivitySei sicuro di voler forzare per lo studente '{0}' il completamento dell'attività '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityHai posto lo studente '{0}' o sulla sua attività corrente o sulla sua attività '{1}'già completataError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishSei sicuro di voler forzare lo studente '{0}' a terminare la lezione?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_win_learners_titleMostra StudentiView learners window titlemnu_viewMostraMenu bar Viewal_error_forcecomplete_notargetPer favore, colloca lo studente '{0}' su un'attività o sulla fine della lezione.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasls_status_scheduled_lblPianificatoLesson status option - Scheduled (Not Started)goContribute_btn_tooltipCompleta questo compito adessotool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipAiutotool tip message for help button in toolbarls_manage_editclass_btn_tooltipModifica la lista degli studenti e dello staff assegnati a questa lezionetool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMostra tutti gli studenti assegnati a questa lezionetool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipCambia lo status di questa lezione dal menu a cascatatool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEsporta il portfolio di classe e salvalo sul tuo computer per consultarlo in seguitotool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEsporta il portfolio di questo studente e salvalo sul tuo computer per consultarlo in seguitotool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipInizia questa lezione immediatamentetool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipProgramma una lezione da iniziare successivamente tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDoppio click per correggere in progress il contributo degli studenti per la corrente attivitàtool tip message for current activity iconcompleted_act_tooltipDoppio click per correggere il contributo degli studenti per l' attività completatatool tip message for completed activity iconal_doubleclick_todoactivitySpiacente, lo studente {0} non è ancora giunto all'attività {1}.alert message when user double click on the todo activity in the sequence under learner tabmnu_file_refreshAggiornaMenu bar Refreshccm_monitor_activityApri Attività di MonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpAiuto per Attività di MonitorLabel for Custom Context Monitor Activity Helpls_learnerURL_lblURL StudenteLearner URL:finish_learner_tooltipPer forzare il completamento della lezione da parte di uno studente, trascina l'icona dello studente sopra questa barra, quindi rilascia l'icona.Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnInserimenti DiarioLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVedi tutti gli inserimenti nel Diario salvati dagli Studenti.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_manage_learnerExpp_lblConsenti export portfolio per gli studentiLabel for Enable export portfolio for Learnerls_confirm_expp_enabledExport Porfolio è ora abilitato per gli studentiConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledExport Porfolio è ora disabilitato per gli studentiConfirmation message on disabling export portfolio for learnersmnu_help_helpAiuto per MonitoringMenu bar Help itemls_manage_status_lblModifica StatusStatus managing label - Lesson detailsls_manage_start_btnInizia oraStart immediately button - Lesson details (manage section)ls_status_active_lblCreato ma non iniziatoCurrent status description if active (enabled)learners_group_name{0} studentiGroup name for the class's learners group.al_yesSiYes on the alert dialogal_noNo'No' on the alert dialogstaff_group_name{0} staffGroup name for the class's staff group.ls_status_cmb_removeRimuoviLesson status option - Removels_status_removed_lblRimossoCurrent status description if deleted (removed) lesson.sys_error_msg_startSi è verificato il seguente errore di sistemaCommon System error message starting lineal_validation_schstartNessuna data selezionata. Scegli data e ora, prego.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTempo (Ore : Minuti)Time fields title - Lesson details (manage section)al_validation_schtimeInserisci un valore valido, per favore. Alert message when user enters an invalid time for schedule startls_remove_confirm_msgHai scelto di rimuovere questa lezione. Le lezioni rimosse non possono essere poi recuperate. Continuare?remove confirm msgcheck_avail_btnControlla disponibilitàCheck Availability button labelcontinue_btnContinuaContinue button labells_continue_lblCiao {1}, non hai finito di modificare {0}.Continue message labells_sequence_live_edit_btnModifica LiveLive Edit buttonls_sequence_live_edit_btn_tooltipModifica il progetto attuale per questa lezione.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblControllando...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNon disponibile. Prova ancora.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSpiacente, {0} è attualmente in via di modifica da {1}.Warning message on Monitor locked screen.al_confirm_live_editStai per aprire Live Edit. Vuoi continuare?Confirm warning (dialog) message displayed when opening Live Edit.al_sendInviaSend button label on the system error dialogabout_popup_title_lblSu - {}Title for the About Pop-up window.about_popup_version_lblVersioneLabel displaying the version no on the About dialog.about_popup_license_lblQuesto programma è free software; puoi redistribuirlo e/o modificarlo a termini della GNU General Public License version 2 come pubblicato dalla Free Software Foundation. {0}Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblClicca {0} per procedere.Action label displayed when a user can proceed to Live Edit.al_okOKOK on the alert dialogapp_chk_langloadI dati relativi alla lingua non sono stati caricatimessage for unsuccessful language loadinglbl_num_activitiesAttivitàNumber of child activities for Complex activity shown on canvas.ls_remove_warning_msgATTENZIONE: La lezione stà per essere rimossa. Desideri conservare questa lezione?Message for the alert dialog which appears following confirmation dialog for removing a lesson.close_mc_tooltipRiduciTooltip message for close button on Branching canvas.mv_search_default_txtImmetti termine di ricerca o numero di paginaThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequencesSequenzeNumber of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidAttento! Devi selezionare un'attività prima di cliccare su Apri/Modifica Contenuto Attività nel menu Attività alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgPerfavore immetti un termine di ricerca o un numero di pagina compreso tra 1 e [0]This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgIl numero di pagina deve essere compreso tra 1 e [0]This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg[0] non è stato trovatoThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblPagina [0] di [1]{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblCercaIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.refresh_btnAggiornaRefresh buttonal_confirm_forcecomplete_to_end_of_branching_seqSiete sicuri di voler spostare lo studente "0" al termine di questa sequenza?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq"0" non può essere spostato su un'attività che si trova su un diverso ramo/sequenza.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencebranch_mapping_dlg_condition_col_lblCondizioniColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppoColumn heading for showing group name of the mapping.ls_seq_status_perm_gatePorta di permessoA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gatePorta di sincronizzazioneA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_system_gatePorta di sistemaA System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_sched_gatePorta di tempoA type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_branch_col_lblRamiColumn heading for showing sequence name of the mapping.ccm_monitor_view_group_mappingsVisualizza gruppi e ramiLabel for Custom Context View Group Mappingsccm_monitor_view_condition_mappingsVisualizza condizioni e ramiLabel for Custom Context View Condition Mappingsls_win_editclass_staff_lblStaffHeading for Staff list on Edit Class popupbranch_mapping_dlg_conditions_dgd_lblMappingHeading label for Mapping datagrid.title_sequencetab_endGateStudenti che hanno completatoTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonmnu_go_sequenceSequenzaMenu bar Go to Sequence Tabcv_activity_helpURL_undefinedImpossibile trovare la pagina di Aiuto per (0)Alert message when a tool activity has no help url defined.cv_design_unsaved_live_editLe modifiche non salvate saranno automaticamente salvate. Desiderate continuare con l'inserimento/unione?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching Impossibile aggiungere o rimuovere gruppi; è possibile solo aggiungere/rimuovere utenti dai gruppi esistenti.Third instructions paragraph on the chosen branching screen.about_popup_copyright_lbl© 2002-2009 {0} Foundation.Label displaying copyright statement in About dialog.ls_confirm_presence_disabledOra gli studenti non possono vedere chi è on linels_confirm_presence_disabledls_confirm_presence_enabledOra gli studenti possono vedere chi è on linels_confirm_presence_enabledview_competences_dlgVedi CompetenzeAllows you to view all the competences within a learning designview_competences_in_ld_lblCompetenze nel progetto di e-learning: {0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentview_act_mapped_competencesVedi le competenze pianificateAllows you to view competences mapped to a particular activitymapped_competences_lblPiano delle competenzeTitle for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lblCompetenze programmate per {0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lblTitoloCompetence Title label in Mapped Competences dialogcompetence_desc_lblDescrizioneCompetence Description label in Mapped Competences dialogorder_learners_by_completion_lblOrdine di completamentoLabel for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lblConsenti agli studenti di vedere chi è onlinels_manage_presenceEnabled_lblal_activity_view_competence_mappings_invalidAssicurati di aver selezionato un'attività prima di tentare di vedere il suo piano delle competenze.Warning that appears when no activity is selected when the user tries to view competence mappingstd_desc_textQuesto non è necessario per completare la sequenza. Vedi la pagina di aiuto per maggiori informazioni.Todo tab descriptionls_win_learners_heading_class_lblClasseHeading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lblAttivitàHeading on View Learners window panel (learners at activity).learner_plus_tooltip{0} studenti. Doppio click per vedere l'elenco completo.Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ja_JP_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3td_desc_heading拡張コントロール:view_competences_in_ld_lbl学習デザインにおける権限: {0}ls_continue_lbl{1} さん、<b>{0}</b> の編集が終了していません。ls_manage_status_cmb選択されたステータス: sys_error_msg_finish作業を続けるためには LAMS 教材作成を再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?stream_reference_lblLAMSls_manage_learnerExpp_lbl学習者によるポートフォリオのエクスポートを許可しますls_manage_presenceEnabled_lbl学習者が他ユーザーのオンライン状況を見ることを許可するal_activity_openContent_invalidアクティビティのコンテキストメニューで 開く/編集 をクリックする前に、アクティビティを選択する必要があります。about_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} は {0} Foundation ( {1} ) の商標です。ls_sequence_live_edit_btn_tooltipレッスンの現在のデザインを編集します。msg_bubble_check_action_lblチェック中...msg_bubble_failed_action_lblレッスンが正しい形式ではありません。再編集してください。label.grouping.general.instructions.branchingこのグループ分けは、分岐で使用されています。グループの追加や削除は、分岐の設定に影響を与えますので、このグループ分けからグループを追加したり削除したりすることはできません。既存のグループからユーザを追加 / 削除することは可能です。al_confirm_live_editライブ編集を中止します。続行しますか?al_send送信about_popup_title_lbl{0} についてstream_urlhttp://{0}foundation.orggpl_license_urlwww.gnu.org/licenses/gpl.txt ls_continue_action_lbl{0} をクリックして次に進みます。lbl_num_sequences{0} - シーケンスmv_search_not_found_msg{0} は見つかりませんでした。ls_of_text / mv_search_go_btn_lblGomv_search_index_view_btn_lblインデックスの表示close_mc_tooltip最小化al_error_forcecomplete_to_different_seq{0} を、異なる分岐、またはシーケンスのアクティビティにドロップすることはできません。ls_seq_status_moderation評価ls_seq_status_define_later後で定義するls_seq_status_perm_gateゲートの設定ls_seq_status_synch_gate同期ゲートls_seq_status_choose_groupingグループ分けls_seq_status_contribution進捗ls_seq_status_system_gateシステムゲートls_seq_status_not_setまだ設定されていませんls_seq_status_sched_gateスケジュールゲートbranch_mapping_dlg_branch_col_lbl分岐branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblグループmnu_go_sequenceシーケンスcv_activity_helpURL_undefined{0}のヘルプは見つかりませんでしたtd_desc_textToDo タブはシーケンスが完了していなくても使用できます。詳細はヘルプをご覧ください。<br><br>この特徴は現在、完全に動作しています。opt_activity_title選択枠アクティビティlbl_num_activities{0} - アクティビティls_manage_txtレッスン管理ls_tasks_txt必要なタスクtd_goContribute_btnGolearner_exportPortfolio_btnエクスポートls_status_scheduled_lblスケジュール済みal_confirm_forcecomplete_toactivity学習者 "{0}" にアクティビティ "{1}" の完了を強制しますか?al_error_forcecomplete_invalidactivity学習者 "{0}" を、学習中もしくは完了したアクティビティ "{1}" にドロップしました。al_confirm_forcecomplete_tofinish学習者 "{0}" にレッスンの最後までの完了を強制しますか?al_error_forcecomplete_notarget学習者 "{0}" をアクティビティもしくはレッスン修了にドロップしてください。title_sequencetab_endGate終了した学習者:help_btn_tooltipヘルプrefresh_btn_tooltip学習者用の最新の進行データを再読込しますls_manage_learners_btn_tooltipこのレッスンに所属する全学習者を閲覧しますls_manage_apply_btn_tooltipレッスンの状態を、ドロップダウンリストの内容に変更しますls_manage_start_btn_tooltip今すぐレッスンを開始しますcurrent_act_tooltipダブルクリックで、学習者の現在のアクティビティに対する進捗状況をチェックしますcompleted_act_tooltipダブルクリックで、学習者の完了したアクティビティに対する状況をチェックしますal_doubleclick_todoactivity学習者 {0} は アクティビティ {1} に到達していません。finish_learner_tooltip学習者アイコンをこのバーにドロップすると、レッスン修了までの完了を強制しますccm_monitor_activityhelpヘルプlearner_viewJournals_btnジャーナルエントリlearner_viewJournals_btn_tooltip学習者が保存した全てのジャーナルエントリを表示しますls_learnerURL_lbl学習者 URL:ls_confirm_expp_enabled学習者によるポートフォリオのエクスポートを有効にしました。ls_confirm_expp_disabled学習者によるポートフォリオのエクスポートを無効にしました。ls_remove_confirm_msg学習履歴の削除 が選択されました。削除された学習履歴は復元できません。続けますか?ls_status_cmb_remove学習履歴の削除ls_status_removed_lbl削除されましたal_yesはいal_noいいえls_remove_warning_msg警告: 学習履歴を削除しようとしています。このレッスンを残しておきますか?learners_group_name{0} 学習者ls_win_editclass_staff_lblモニターcheck_avail_btn正規性チェックcontinue_btn続行ls_sequence_live_edit_btnライブ編集mnu_edit編集mnu_edit_copyコピーmnu_edit_cut切り取りmnu_edit_paste貼り付けmnu_fileファイルmnu_file_refresh更新mnu_file_editclassクラスを編集mnu_file_startスタートmnu_helpヘルプmnu_help_abtAboutperm_act_lbl手動で開くsched_act_lblタイマーで設定synch_act_lbl全員を待つws_Rootルートws_dlg_cancel_buttonキャンセルws_dlg_location_button場所ws_tree_mywspワークスペースws_tree_orgs組織sys_error_msg_startシステムエラーが発生しました:sys_errorシステムエラーmnu_file_scheduleスケジュールmnu_file_exit終了mnu_view_learners学習者...mnu_goGomnu_go_lessonレッスンmnu_go_scheduleスケジュールmnu_go_learners学習者mnu_go_todoToDomnu_help_helpヘルプrefresh_btn更新help_btnヘルプmtab_lessonレッスンmtab_seqシーケンスmtab_learners学習者mtab_todoToDols_status_lblステータス:ls_learners_lbl学習者:ls_class_lblクラス:ls_manage_class_lblクラス:ls_manage_status_lblステータス変更:ls_manage_start_lbl開始:ls_manage_learners_btn学習者を表示ls_manage_editclass_btnクラスを編集ls_manage_apply_btn適用ls_manage_schedule_btnスケジュールls_manage_start_btnすぐに開始ls_manage_date_lbl日付ls_duration_lbl経過期間:ls_status_cmb_activate再開ls_status_cmb_disable中断ls_status_cmb_enable再開ls_status_cmb_archiveアーカイブ保存ls_status_active_lbl有効ls_status_disabled_lbl無効ls_status_archived_lblアーカイブls_status_started_lbl開始ls_win_editclass_titleクラスを編集ls_win_learners_title学習者を表示ls_win_editclass_save_btn保存ls_win_editclass_cancel_btnキャンセルls_win_learners_close_btn閉じるls_win_editclass_organisation_lbl組織ls_win_editclass_learners_lbl学習者ls_manage_editclass_btn_tooltipこのレッスンに割り当てられる学習者とモニターのリストを編集しますstaff_group_name{0} モニターccm_monitor_activityアクティビティ モニターbranch_mapping_dlg_conditions_dgd_lbl割り当てcompetences_mapped_to_act_lbl権限を {0} にマップしました。mapped_competences_lbl権限の割り当てal_activity_view_competence_mappings_invalid権限の割り当てを表示する前にアクティビティを選択してください。view_act_mapped_competences権限の割り当てを表示al_cancelキャンセルal_confirm確認al_okOKapp_chk_langload言語データはロードされませんでしたapp_chk_themeloadテーマはロードされませんでしたapp_fail_continueアプリケーションは作業を続行できません。サポートに連絡してくださいdb_datasend_confirmデータをサーバに送信しましたccm_monitor_view_group_mappings分岐のグループを表示ccm_monitor_view_condition_mappings分岐の条件を表示goContribute_btn_tooltipこのタスクの実行画面へ移動するmv_search_invalid_input_msgページ番号は 1 から {0} の間ですmv_search_current_page_lblページ {0} / {1}mv_search_default_txt検索する文字列かページ番号を入力してくださいls_seq_status_teacher_branching先生が分岐を選択al_confirm_forcecomplete_to_end_of_branching_seq学習者 {0} に、この分岐シーケンスの最後までの完了を強制しますか?class_exportPortfolio_btn_tooltipクラスのポートフォリオをエクスポートし、今後参照するためにこのコンピュータに保存しますlearner_exportPortfolio_btn_tooltip学習者のポートフォリオをエクスポートし、今後参照するためにこのコンピュータに保存しますls_win_learners_heading_lbl{0} の学習者: {1}mv_search_error_msg検索する文字列かページ番号 (1-{0}) を入力してくださいls_locked_msg_lbl<b>{0}</b> はユーザー {1} が編集中です。competence_title_lblタイトルcompetence_desc_lbl説明view_competences_dlg権限の表示order_learners_by_completion_lbl完了順ls_win_learners_heading_class_lblクラスls_win_learners_heading_activity_lblアクティビティlearner_plus_tooltip学習者 {0}ダブルクリックで全リストが見れます。ls_confirm_presence_enabled現在、学習者は他ユーザーのオンライン状況を見ることができますls_confirm_presence_disabled現在、学習者は他ユーザーのオンライン状況を見ることができませんls_manage_presenceImEnabled_lblインスタント・メッセージを有効にするsupport_act_titleサポート・アクティビティal_error_forcecomplete_support_act強制的に学習者がサポート・アクティビティを完了させることはできませんmsg_no_learners_in_lesson1 人以上の学習者が選択しなければいけませんls_confirm_presence_im_enabledインスタント・メッセージは有効ですls_confirm_presence_im_disabledインスタント・メッセージは無効ですal_alert通知ls_manage_schedule_btn_tooltipレッスンの開始予定時刻を設定しますal_validation_schstart日付が選択されていません。日付と時刻を選択してください。ls_manage_time_lbl時刻 (時 : 分)al_validation_schtime正しい時刻を入力してください。view_time_graph_btn_tooltipアクティビティごとの進捗状況のグラフの表示view_time_chart_btn学習時間グラフの表示cv_design_unsaved_live_edit保存されていない変更は自動的に保存されます。挿入/統合を続けますか?view_time_chart_btn_tooltipアクティビティごとの進捗状況のグラフの表示view_time_graph_btn学習時間グラフの表示mnu_view表示about_popup_version_lblバージョンabout_popup_license_lbl<p>このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された GNU 一般公衆利用許諾契約書 バージョン 2 の定める条件の下で再頒布または改変することができます。<br><br>{0}</p> \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ko_KR_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_seq_status_moderation중재Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later추후 정의Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate허가 관문A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate관문 동기화A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping모둠 선택Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution기여Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate시스템 관문A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_teacher_branching교수자가 선택한 갈래A type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_set아직 미설정The value of the sequence's status is not setls_seq_status_sched_gate예약 관문A type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_conditions_dgd_lbl매핑Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl갈래Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl조건Column heading for showing condition description of the mapping.ccm_monitor_view_group_mappings갈래 모둠 보기Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings갈래 조건 보기Label for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lbl모둠Column heading for showing group name of the mapping.mnu_go_sequence순차학습Menu bar Go to Sequence Tabcv_activity_helpURL_undefined{0}에 대한 도움말 페이지를 찾을 수 없습니다.Alert message when a tool activity has no help url defined.al_confirm_forcecomplete_to_end_of_branching_seq모든 학습자들을 이 갈래 순차학습 끝으로 보내기를 원하십니까?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq{0}는 순차학습의 다른 갈래에 있는 활동위에 놓여질 수 없습니다.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencecv_design_unsaved_live_edit저장되지 않은 변경은 자동으로 저장될 것입니다. 삽입/통합으로 계속하기를 원하십니까?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching모둠이 갈래에서 사용중이므로 이 모둠무리에 대해 모둠을 추가하거나 제거할 수 없습니다. 모둠을 추가하거나 제거하는 것은 갈래 모둠 설정에 영향을 줍니다. 기존 모둠에 사용자를 추가하거나 제거할 수 있습니다.Third instructions paragraph on the chosen branching screen.al_alert주의Generic title for Alert windowal_cancel취소To Confirm title for LFErroral_confirm확인To Confirm title for LFErrorapp_chk_langload언어 데이터가 올려지지 않았습니다.message for unsuccessful language loadingapp_chk_themeload주제 데이터가 올려지지 않았습니다.message for unsuccessful theme loadingapp_fail_continue응용프로그램이 계속할 수 없습니다. 지원팀에게 문의하십시요message if application cannot continue due to any errordb_datasend_confirm서버에 자료를 올려주어서 감사합니다.Message when user sucessfully dumps data to the servermnu_edit편집Menu bar Editmnu_edit_copy복사Menu bar Edit &gt; Copymnu_edit_cut자르기Menu bar Edit &gt; Cutmnu_edit_paste붙이기Menu bar Edit &gt; Pastemnu_file파일Menu bar Filemnu_file_refresh새로고침Menu bar Refreshmnu_file_editclass분반 편집Menu bar Edit Classmnu_file_start시작Menu bar Startmnu_help도움말Menu bar Helpmnu_help_abt정보Menu bar Aboutperm_act_lbl허가Label for permission gate activitysched_act_lbl일정Label for schedule gate activitysynch_act_lbl동기화Used as a label for the Synch Gate Activity Typews_Root최상위 폴더Root folder title for workspacews_dlg_cancel_button취소2ws_dlg_location_button위치Workspace dialogue Location btn labelws_tree_mywsp내 작업공간The root level of the treews_tree_orgs조직Shown in the top level of the tree in the workspacesys_error_msg_start다음 시스템오류가 발생하였습니다.Common System error message starting linesys_error_msg_finish계속하기 위해서는 LAMS 저작을 다시 시작해야 합니다. 이문제를 고치는데 도움을 주기 위해서 이 오류에 대한 다음 정보를 저장하기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error elert window titlemnu_file_schedule일정Menu bar Schedulemnu_file_exit나감Menu bar Exitmnu_view_learners학습자들Menu bar Learnersmnu_go진행Menu bar Gomnu_go_schedule일정Menu bar Go to Schedule Tabmnu_go_learners학습자들Menu bar Go to Learners Tabmnu_go_todo할일Menu bar Todorefresh_btn새로고침Refresh buttonhelp_btn도움말Help buttonmtab_seq순차학습Monitor Sequence tabmtab_learners학습자들Monitor Learners tabmtab_todo할일Monitor Todo tabls_status_lbl상태Status label - Lesson detailsls_learners_lbl학습자들Learner label - Lesson detailsls_class_lbl분반Class label - Lesson detailsls_manage_class_lbl분반Class managing label - Lesson detailsls_manage_start_lbl시작Start managing label - Lesson detailsls_manage_learners_btn학습자 보기View learners button - Lesson details (manage section)ls_manage_editclass_btn분반 편집Edit class button - Lesson details (manage section)ls_manage_apply_btn적용Status Apply button - Lesson details (manage section)ls_manage_schedule_btn일정Schedule start button - Lesson details (manage section)ls_manage_date_lbl일자Date field title - Lesson details (manage section)ls_duration_lbl경과시간Elapsed duration of lesson - Lesson detailsls_manage_status_cmb상태 선택Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activate활성화Lesson status option - Activatels_status_cmb_disable비활성화Lesson status option - Disable (suspend)ls_status_cmb_enable활성화Lesson status option - Enable (make active/unsuspend)ls_status_cmb_archive저장소Lesson status option - Archivels_status_disabled_lbl비활성화됨Current status description if suspended (disabled)ls_status_archived_lbl저장됨Current status description if archviedls_status_started_lbl시작됨Current status description if started (enabled)ls_win_editclass_title분반 편집Edit class window titlels_win_learners_title학습자 보기View learners window titlemnu_view보기Menu bar Viewls_win_editclass_save_btn저장Save button on Edit Class popupls_win_editclass_cancel_btn취소Cancel button on Edit Class popupls_win_learners_close_btn닫기Close button on View Learners popupls_win_editclass_organisation_lbl조직Heading for Organisation tree on Edit Class popupls_win_editclass_staff_lbl관리자Heading for Staff list on Edit Class popupls_win_editclass_learners_lbl학습자Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl과목의 학습자 수Heading on View Learners window panel.td_desc_heading고급 제어Todo tab description headingtd_desc_text순차학습을 마치기 위해서 할일 탭을 사용할 필요가 없습니다. 더 많은 정보를 위해서 도움말 페이지를 보기바랍니다. Todo tab descriptionopt_activity_title선택 활동Title for Optional Activity on canvas (monitoring)lbl_num_activities하위 활동Number of child activities for Complex activity shown on canvas.ls_of_text/i.e. 1 of 10 Used for showing how many learners have startedls_manage_txt강좌 관리Heading for Management section of Lesson Tabls_tasks_txt필요작업Heading for Required Tasks (todo section of Lesson tab)td_goContribute_btn진행Go button on contribute entry itemlearner_exportPortfolio_btn포트폴리오 내보내기Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lbl예정됨Lesson status option - Scheduled (Not Started)ls_manage_learnerExpp_lbl학습자에 대한 포트폴리오 내보내기 활성화Label for Enable export portfolio for Learnerls_confirm_expp_enabled학습자에 대한 포트폴리오 내보내기가 활성화 되었습니다.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled학습자에 대한 포트폴리오 내보내기가 비 활성화되었습니다.Confirmation message on disabling export portfolio for learnersal_confirm_forcecomplete_toactivity당신은 학습자 '{0}'가 '{1}' 활동을 강제 완료하기를 원하십니까?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivity학습자의 현재 또는 완료한 활동'{1}'에서 학습자 '{0}'를 제거하였습니다.Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinish학습자 '{0}'를 강좌 끝에서 강제 완료하기를 원하십니까?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notarget학습자 '{0}'를 활동 혹은 강좌의 끝에 있게 하십시요.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate완료한 학습자들Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_learnerURL_lbl학습자 URLLearner URL:refresh_btn_tooltip학습자들에 대한 최근의 진도 자료 다시 올리기tool tip message for the refresh buttonls_manage_apply_btn_tooltip드롭 다운 선택에 의한 강의 상태 변경tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statuscompleted_act_tooltip학습자가 완료한 활동에 대한 기여를 검토하기 위해서 더블클릭하새요.tool tip message for completed activity iconlearner_exportPortfolio_btn_tooltip학습자의 포트폴리오를 내보내기 하여 추후 참조를 위해 당신의 컴퓨터에 저장하십시요.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn지금 시작Start immediately button - Lesson details (manage section)ls_status_active_lbl생성되었지만 아직 시작되지 않음Current status description if active (enabled)ls_manage_status_lbl상태 변경Status managing label - Lesson detailsgoContribute_btn_tooltip이 일을 지금 하세요.tool tip message for go button in required tasks list in lesson tabhelp_btn_tooltip도움말tool tip message for help button in toolbarls_manage_editclass_btn_tooltip이 강의에 할당된 학습자 및 관리자 목록 편집 tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltip이 강의에 할당된 모든 학습자 보기 tool tip message for the view learners button in lesson tab under manage lesson sectionclass_exportPortfolio_btn_tooltip강좌 포트폴리오를 내보내기 하고 추후 참조를 위해 당신의 컴퓨터에 저장하십시요.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerls_manage_start_btn_tooltip지금 강좌를 시작tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessoncurrent_act_tooltip학습자의 현재 활동에 대한 진행중인 기여를 검토하기 위해 더블클릭하십시요.tool tip message for current activity iconls_manage_schedule_btn_tooltip추후에 시작할 수 있도록 강좌를 예약tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timeal_doubleclick_todoactivity죄송합니다. 학습자 {0} 가 아직 활동 {1}에 도달하지 못하였습니다.alert message when user double click on the todo activity in the sequence under learner tablearner_viewJournals_btn저널 항목Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip학습자에 의해 저장된 모든 저널 항목 보기tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.mtab_lesson학습Monitor Lesson details tabmnu_go_lesson학습Menu bar Go to Lesson Tabmnu_help_help학습자 관찰 도움말Menu bar Help itemccm_monitor_activity활동 관찰 열기Label for Custom Context Monitor Activityccm_monitor_activityhelp관찰 활동 도움말Label for Custom Context Monitor Activity Helplearners_group_name{0} 학습자들Group name for the class's learners group.staff_group_name{0} 스태프Group name for the class's staff group.al_validation_schstart날짜가 선택되지 않았습니다. 날짜와 시간을 선택하여 주십시요.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl시간(시간:분)Time fields title - Lesson details (manage section)al_ok확인OK on the alert dialogal_validation_schtime올바른 시간을 입력하세요.Alert message when user enters an invalid time for schedule startfinish_learner_tooltip학습자를 강의의 마지막부분으로 강제 종료하고자 하기 위해서는 학습자 아이콘을 이 막대 다음으로 드래그 한 다음 놓으십시요.Rollover message when user moves their mouse over the end gate bar in monitor tab viewal_no아니오'No' on the alert dialogls_remove_warning_msg학습이 제거되려고 합니다. 이 학습이 보관되기를 원하십니까?Message for the alert dialog which appears following confirmation dialog for removing a lesson.ls_remove_confirm_msg당신은 이 학습을 제거하는 것을 선택하였습니다. 제거된 학습은 다시 복원될 수 없습니다. 계속하시겠습니까? remove confirm msgls_status_cmb_remove제거Lesson status option - Removels_status_removed_lbl제거됨Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_send보내기Send button label on the system error dialogcontinue_btn계속Continue button labells_sequence_live_edit_btn라이브 편집Live Edit buttonls_continue_action_lbl계속하기 위해서 {0}를 클릭하세요Action label displayed when a user can proceed to Live Edit.stream_reference_lbl람스Reference label for the application stream.check_avail_btn사용가능 확인Check Availability button labelmsg_bubble_failed_action_lbl사용불가, 다시시도 하세요Label displayed when check failed i.e. lesson is still locked.msg_bubble_check_action_lbl확인중...Label displayed when checking availability of lesson.about_popup_license_lbl이 프로그램은 프리소프트웨어 입니다; Free Software Foundationd 에 의해 발간된 GNU General Public Licence version2의 조건에 한해서 재배포하거나 수정할 수 있습니다. Label displaying the license statement in the About dialog.about_popup_trademark_lbl{0}는 {0} 재단의 등록상표입니다. ({1}).Label displaying the trademark statement in the About dialog.al_confirm_live_edit라이브편집을 열려고 합니다. 계속하시겠습니까?Confirm warning (dialog) message displayed when opening Live Edit.ls_continue_lbl안녕하세요{1}, 아직 {0}를 편집하는 것을 마치지 않았습니다.Continue message labells_sequence_live_edit_btn_tooltip이 학습에 대한 설계를 편집Tool tip message for Live Edit buttonabout_popup_version_lbl버전Label displaying the version no on the About dialog.about_popup_title_lbl{0} 정보Title for the About Pop-up window.stream_urlhttp://{0}foundation.org URL address for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.ls_locked_msg_lbl죄송합니다. {0}은 {1}에 의해 편집 중입니다.Warning message on Monitor locked screen.about_popup_copyright_lbl© 2002-2008 {0} 재단Label displaying copyright statement in About dialog.close_mc_tooltip최소화Tooltip message for close button on Branching canvas.mv_search_default_txt검색 쿼리나 페이지 번호를 입력하세요The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequences{0}-순차학습Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalid죄송합니다. 활동의 오른쪽 클릭 메뉴의 활동 콘텐츠 메뉴 열기/편집을 클릭하기전에 활동을 선택하여야 합니다.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msg검색 쿼리나 1과 {0} 사이의 페이지 번호를 입력하세요This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg페이지 번호는 1에서 {0} 사이 이어야 합니다.This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0} 을 찾을 수 없습니다.This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl{1} 중 {0} 페이지{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl진행If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl인덱스 보기When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/mi_NZ_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀElearners_group_name{0} ākongaccm_monitor_activityTuwhera Aroturuki Ngoheccm_monitor_activityhelpĀwhina Aroturuki Ngoheal_validation_schtimeTāpiritia he wā whai mana.learner_viewJournals_btnTāuru Hautaka learner_viewJournals_btn_tooltipTirohia ngā Tāuru Hautaka i tiakina e ngā Ākongaal_doubleclick_todoactivityAroha, kāhore anō tēnei akonga: {0} kia tae atu ki te ngohe: {1}.about_popup_license_lbl<p> He kore utu tēnei papatono; ka taea te tohatoha me te whakahōu i raro i ngā tikanga o te GNU ahua2 pērā i ngā putanga o te Free Software Foundation. <br><br>{0}</p>about_popup_version_lblTe ĀhuagoContribute_btn_tooltipWhakaotia tēnei tūmahi ināianeirefresh_btn_tooltipTīkina ake anō ngā raraunga kaneke hōu tonu mō ngā ākongals_manage_editclass_btn_tooltipWhakatikaina te rārangi ākonga, kaiako hoki kua tautapatia ki tēnei akoranga ls_manage_learners_btn_tooltipKa whakaatu i ngā ākonga katoa kua tautapatia ki tēnei akorangals_manage_apply_btn_tooltipHurihia te tūnga o te akoranga e ai ki te kōwhiringa taka-iho ls_manage_start_btn_tooltipTīmataria te ākoranga ināia tonu neils_manage_schedule_btn_tooltipWhakaritea kia tīmata te akoranga ā tētehi wā o muri current_act_tooltipKia rua ngā pāwhiringa hei arotake i ngā takoha kei te haere mō tā te ākonga ngohe o nāianei completed_act_tooltipKia rua ngā pāwhiringa hei arotake i ngā takoha kei te haere mō te ngohe kua oti nei i te ākongals_duration_lblTe Wā kua Haere:class_exportPortfolio_btn_tooltipKawea atu te kōpaki akomanga, ka tiaki ki tāu rorohiko hei tohutoro māu ā muri atual_confirmWhakatūturutiaapp_chk_langloadKāhore anō kia utaina ngā raraunga reoapp_chk_themeloadKāhore ngā raraunga kaupapa kia utainaapp_fail_continueKāhore te Taupānga e taea te haere tonu. Whakapā atu ki te Kaiwhakahaeredb_datasend_confirmNgā mihi mō te tuku raraunga ki te tūmau mnu_help_abtWhakamāramaws_dlg_location_buttonŪngasys_error_msg_finishTērā pea me tīmata anō koe i te Pūnaha Akoranga ā Hiko. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?al_cancelWhakakorels_win_editclass_cancel_btnWhakakorews_dlg_cancel_buttonWhakakorews_RootWhaiaronga Iomatuals_manage_apply_btnHōatuls_manage_schedule_btnWhakaritengals_manage_date_lblTe Rāls_status_archived_lblPūrangals_status_started_lblKua timatals_learnerURL_lblĀkonga URLls_class_lblTaipitopitomnu_viewTirohials_win_editclass_save_btnTiakils_win_learners_close_btnKatials_win_editclass_organisation_lblWhakahaerels_win_editclass_staff_lblKaiakols_win_editclass_learners_lblĀkongaopt_activity_titleNgohe Whiringalbl_num_activitiesNgohe Tamarikils_of_textotd_goContribute_btnHaeretitle_sequencetab_endGateĀkonga i mutuls_status_scheduled_lblKua Whakariteahelp_btn_tooltipĀwhinamnu_file_refreshTāmatatiarefresh_btnTāmatatiasys_error_msg_startKua puta tēnei hapa pūnaha:ls_status_cmb_activateWhakahoheals_status_cmb_disableMonokials_status_cmb_enableHohels_status_cmb_archivePūrangals_status_disabled_lblTāherels_win_learners_heading_lblNgā ākonga kei te akomanga:td_desc_headingArā atu Mana Anō:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.ls_manage_txtWhakahaere Akorangals_tasks_txtTūmahi Kia Mahiaal_confirm_forcecomplete_toactivityMe āta whai koe ki te uruhi i te otinga o te ākonga '{0} ki te ngohe {1}?al_error_forcecomplete_invalidactivityKua waiho e koe te ākonga ‘{0}’ i tāna mahi o nāianei, i tāna ngohe oti rānei ‘{1}’al_confirm_forcecomplete_tofinishMe āta whai koe ki te uruhi i te otinga o te ākonga ‘{0}’ ki te mutunga o te akoranga?al_error_forcecomplete_notargetWaiho koa te ākonga ‘{0}’ ki tētehi ngohe, ki te mutunga o te akoranga rānei. ls_manage_time_lblTe Wā (Haora : Miniti)mnu_help_helpĀwhinals_manage_start_btnTīmatariaal_alertKia Matohimnu_editWhakatikatikamnu_edit_copyTāruatiamnu_edit_cutWhakakoreamnu_edit_pasteTāpiamnu_fileKōnaemnu_file_editclassWhakatikatika Akomangamnu_file_startTīmatariamnu_helpĀwhinaperm_act_lblWhakaaetangasched_act_lblWhakaritengasynch_act_lblTukutahiws_tree_mywspTaku Papamahiws_tree_orgsWhakahaeresys_errorHapa Pūnahamnu_file_scheduleWhakaritengamnu_file_exitPutangamnu_view_learnersĀkonga....mnu_goHaeremnu_go_lessonAkorangamnu_go_scheduleWhakaritengamnu_go_learnersĀkongamnu_go_todoHei Mahihelp_btnĀwhinamtab_lessonAkorangamtab_seqRaupapamtab_learnersĀkongamtab_todoHei Mahils_status_lblTūngals_learners_lblĀkongals_manage_class_lblAkorangals_win_learners_titleTirohials_manage_start_lblTīmatarials_manage_editclass_btnWhakatikatika akomangaclose_mc_tooltipWhakaitils_status_active_lblKua hangaia ēngari kāore anō kia tīmatariamv_search_go_btn_lblRapumv_search_default_txtTuhi rapu ui tau wharangi rāneimv_search_error_msgTuhi rapu ui tau wharangi rānei mai 1 me {0}mv_search_invalid_input_msgKo te tau wharangi mai 1 me {0}mv_search_not_found_msgKāore te {0} i rapumv_search_current_page_lblWharangi {0} ki {1}ls_seq_status_contributionTākohamv_search_index_view_btn_lblTirohanga Matuals_seq_status_moderationAroturukiview_time_chart_btn_tooltipTirohia ki tētehi tūtohinga kia kite i te kāneke o te ākonga ki te wā mō ia ngohe.support_act_titleNgohe Āwhinaal_error_forcecomplete_support_actKāore e taea te whakaotia i te ākonga mō te ngohe āwhina.view_time_graph_btn_tooltipTirohia ki tētehi kauwhata kia kite i te kāneke o te ākonga ki te wā mō ia ngohe.ls_seq_status_define_laterTautu a muri atuls_seq_status_perm_gateTomokanga Whakaaeal_validation_schstartKāore i kōwhiria te rā. Kōwhirihia te rā me te wā.finish_learner_tooltipE uruhina ai te ākonga ki te whakaoti tae noa ki te mutunga o te akoranga, tōia te ata ākonga ki te pae nei, ka wete.ls_remove_confirm_msgKua kōwhiria e koe te Tango tēnei akoranga. Kāore e taea te whakahokia mai anō ngā akoranga i tango. Haere tonu?ls_status_cmb_removeTangohials_status_removed_lblKua Tangohiaal_yesĀeal_noKāolearner_exportPortfolio_btn_tooltipKawea atu te kōpaki ākonga, ka tiaki ki tāu rorohiko hei tohutoro māu ā muri atual_sendTukunacheck_avail_btnTirohiacontinue_btnHaere tonuls_continue_lblKia ora {0}, kāhore anō koe kia mutu te whakatikatika {0}.ls_sequence_live_edit_btn_tooltipWhakatikaina tēnei hoahoatanga mō tēnei ngohe.msg_bubble_check_action_lblKei te tirohia...ls_locked_msg_lblAroha, {0} kei te whakatikaina e {1}.about_popup_title_lblWhakamārama - {0}about_popup_trademark_lblHe moko o {0} Rōpū {1}.stream_reference_lblPūnaha Akoranga ā Hikogpl_license_urlwww.gnu.org/rēhita/gpl.txtstream_urlhttp://{0}rōpū.orgls_continue_action_lblPāwhirihia {0} kia haere tonu.ls_sequence_live_edit_btnWhakatikaina Ngohemsg_bubble_failed_action_lblKāore e taea, me mahi anō.al_confirm_live_editKei te tūwhera koe i te Whakatikaina Ngohe. Ka hiahia koe te haere tonu?ls_manage_learners_btnTirohials_manage_status_lblTūngals_manage_status_cmbKōwhiria:ls_win_editclass_titleWhakatikatikals_seq_status_synch_gateTomokanga Tukutahils_seq_status_choose_groupingKōwhiri Whakarōpūlbl_num_sequences{0} - Raupapa Akols_remove_warning_msgKia Mataara: Kei te tango akoranga. Ka pirangi te mau tēnei akoranga?view_time_graph_btnTirohia Kauwhata Wāls_seq_status_system_gateTomokanga Pūnahaabout_popup_copyright_lbl© 2002-2009 {0} Rōpū.branch_mapping_dlg_condition_col_lblTikangaccm_monitor_view_condition_mappingsTirohia Tikanga ki Rōpūal_error_forcecomplete_to_different_seq{0} kāore e taea te whakakore ngohe kei tētehi atu pekanga raupapa ako rānei.label.grouping.general.instructions.branchingKāore e taea te tāpiri tangohia rānei mō tēnei whakarōpūtanga nā te whakaritenga pekanga. Ka taea te tāpiri/tango kaimahi anakē ki ngā rōpū e tū nei.ls_seq_status_teacher_branchingPekanga Kaiako i Kōwhirihials_seq_status_not_setKāhore anō i Whakatauls_seq_status_sched_gateTomokanga Wābranch_mapping_dlg_conditions_dgd_lblMāheretangabranch_mapping_dlg_branch_col_lblPekangaccm_monitor_view_group_mappingsTirohia Rōpū ki Pekangabranch_mapping_dlg_group_col_lblRōpūmnu_go_sequenceRaupapa Akocv_activity_helpURL_undefinedKāore i kimi te wharangi āwhi mō {0}al_confirm_forcecomplete_to_end_of_branching_seqMe āta whai koe ki te uruhi i te otinga o te ākonga '{0} ki te mutunga o tēnei raupapa pekanga?view_time_chart_btnTirohia Tūtohinga Wācompetence_title_lblTaitaracompetence_desc_lblWhakamāramals_manage_learnerExpp_lblWhakahohe te tuku kōpaki mō te ākongalearner_exportPortfolio_btnKawe Kōpaki Atuls_confirm_expp_disabledKua monokia te kawe kōpaki mo ngā ākongals_confirm_expp_enabledKua whakahohetia te kawe kōpaki mō ngā ākongacv_design_unsaved_live_editKa tiaki aunoa ngā rerekētanga kāore i tiaki. Haere tonutia te kōkuhu/hanumi?al_activity_openContent_invalidAroha! Tīpakohia tētehi ngohe i mua i te pāwhiri i te Huakina/Whakatikatika i te papatono Ihirangi Ngohe ki te taha matau. view_competences_dlgTirohia Matatauview_competences_in_ld_lblMatatau hoahoa ako: {0}view_act_mapped_competencesTirohia ngā Matatau kua Whakamaheretiamapped_competences_lblMatatau kua Whakamaheretiacompetences_mapped_to_act_lblMatatau kua Whakamaheretia ki {0}al_activity_view_competence_mappings_invalidMe āta kōwhiri koe i tētehi ngohe i mua i te tiro ki ōna matatau kua whakamaheretia.order_learners_by_completion_lblRaupapa mā te mahi otils_manage_presenceEnabled_lblTukuna ngā ākonga kia kite ko wai kua tuihono mails_confirm_presence_enabledKa taea e ngā ākonga te kite ko wai kua tuihono mai ināianei.ls_confirm_presence_disabledKāore e taea e ngā ākonga te kite ko wai kua tuihono mai ināianeils_win_learners_heading_class_lblAkomangals_win_learners_heading_activity_lblNgohelearner_plus_tooltip{0} Ākonga. Pāwhirihia kia kite te rārangi katoa.staff_group_name{0} kaiako aroturuki \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ms_MY_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertAletGeneric title for Alert windowal_cancelBatalTo Confirm title for LFErroral_confirmSahTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadData Bahasa tidak berjaya diloadmessage for unsuccessful language loadingapp_chk_themeloadData tema tidak berjaya diloadmessage for unsuccessful theme loadingapp_fail_continueAplikasi tidak berjaya diteruskan. Sila hubungi kumpulan sokonganmessage if application cannot continue due to any errordb_datasend_confirmTerima kasih kerana menghantar data ke pelayanMessage when user sucessfully dumps data to the servermnu_editSuntingMenu bar Editmnu_edit_copySalinMenu bar Edit &gt; Copymnu_edit_cutPotongMenu bar Edit &gt; Cutmnu_edit_pasteTampalMenu bar Edit &gt; Pastemnu_fileFailMenu bar Filemnu_file_refreshRefreshMenu bar Refreshmnu_file_editclassSunting KelasMenu bar Edit Classmnu_file_startMulaMenu bar Startmnu_helpBantuMenu bar Helpmnu_help_abtTentangMenu bar Aboutperm_act_lblKeizinanLabel for permission gate activitysched_act_lblJadualLabel for schedule gate activitysynch_act_lblSynchroniseUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonBatal2ws_dlg_location_buttonLokasiWorkspace dialogue Location btn labelws_tree_mywspRuang Kerja SayaThe root level of the treews_tree_orgsOrganisasiShown in the top level of the tree in the workspacesys_error_msg_startRalat sistem ini telah muncul:Common System error message starting linesys_error_msg_finishAnda mungkin perlu memulakan semula LAMS untuk sambung. Adakah anda mahu menyimpan ralat untuk membantu menyelesaikan masalah ini?Common System error message finish paragraphsys_errorRalat SistemSystem Error elert window titlemnu_file_scheduleJadualMenu bar Schedulemnu_file_exitKeluarMenu bar Exitmnu_view_learnersPelajar...Menu bar Learnersmnu_goPergiMenu bar Gomnu_go_lessonPelajaranMenu bar Go to Lesson Tabmnu_go_scheduleJadualMenu bar Go to Schedule Tabmnu_go_learnersPelajarMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpAwasi BantuanMenu bar Help itemrefresh_btnRefreshRefresh buttonhelp_btnBantuHelp buttonmtab_lessonPelajaranMonitor Lesson details tabmtab_seqTurutanMonitor Sequence tabmtab_learnersPelajarMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblPelajar:Learner label - Lesson detailsls_class_lblKelas:Class label - Lesson detailsls_manage_class_lblKelas:Class managing label - Lesson detailsls_manage_status_lblTukar Status:Status managing label - Lesson detailsls_manage_start_lblMula:Start managing label - Lesson detailsls_manage_learners_btnPapar PelajarView learners button - Lesson details (manage section)ls_manage_editclass_btnSunting KelasEdit class button - Lesson details (manage section)ls_manage_apply_btnPohonStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnJadualSchedule start button - Lesson details (manage section)ls_manage_start_btnMula SekarangStart immediately button - Lesson details (manage section)ls_manage_date_lblTarikhDate field title - Lesson details (manage section)ls_duration_lblDurasi TinggalElapsed duration of lesson - Lesson detailsls_manage_status_cmbPilih status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktifkanLesson status option - Activatels_status_cmb_enableAktifLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkibLesson status option - Archivels_status_archived_lblArkibCurrent status description if archviedls_win_editclass_titleSunting KelasEdit class window titlels_win_learners_titlePapar PelajarView learners window titlemnu_viewPaparMenu bar Viewls_win_editclass_save_btnSimpanSave button on Edit Class popupls_win_editclass_cancel_btnBatalCancel button on Edit Class popupls_win_learners_close_btnTutupClose button on View Learners popupls_win_editclass_organisation_lblOrganisasiHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStafHeading for Staff list on Edit Class popupls_win_editclass_learners_lblPelajarHeading for Learners list on the Edit Class popupls_win_learners_heading_lblPelajar dalam kelas:Heading on View Learners window panel.td_desc_headingKontrol AdvanTodo tab description headingtd_desc_textGuna Tab Todo tidak diperlukan untuk menyempurnakan turutan. Sila lihat laman bantuan untuk maklumat lanjut <br> <br>Fitur ini telah berfungsi dengan penuh sekarang.Todo tab descriptionopt_activity_titleAktiviti PilihanTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesanak aktivitiNumber of child activities for Complex activity shown on canvas.ls_of_textdarii.e. 1 of 10 Used for showing how many learners have startedls_manage_txtUrus PelajaranHeading for Management section of Lesson Tabls_tasks_txtTugas DiperlukanHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnPergiGo button on contribute entry itemlearner_exportPortfolio_btnEksport PorfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblJadualLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityAdakah anda pasti untuk memaksa pelajar '{0}' yang telah selesai ke Aktiviti '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityAnda telah menjatuhkan pelajar '{0}' pada aktiviti sekarang atau aktviti '{1}' yang telah selesaiError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishAdakah anda pasti untuk memaksa pelajar '{0}' yang telah selesai untuk menamatkan pelajaran?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetSila jatuhkan pelajar '{0}' ke aktiviti atau tamatkan pelajaran.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGatePelajar Selesai:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipLengkapkan tugas ini sekarangtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipBantuantool tip message for help button in toolbarrefresh_btn_tooltipRelod data perkembangan terbaru untuk pelajartool tip message for the refresh buttonls_manage_editclass_btn_tooltipSunting senarai pelajar dan staf yang ditetapkan untuk pelajaran initool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipPapar semua pelajar yang ditetapkan untuk pelajaran initool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipUbah status pelajaran mengikut pilihan drop downtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksport portfolio kelas dan simpan di dalam komputer anda untuk rujukan masa depantool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksport portfolio pelajar dan simpan di dalam komputer anda untuk rujukan masa depantool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipMula pelajaran dengan segeratool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipJadualkan pelajaran untuk mula pada masa depantool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipKlik dua kali untuk reviu kontribusi dalam progres untuk aktiviti pelajar sekarangtool tip message for current activity iconcompleted_act_tooltipKlik dua kali untuk reviu kontribusi pelajar dalam aktiviti yang telah selesaitool tip message for completed activity iconal_doubleclick_todoactivityMaaf, pelajar: {0} tidak mencapai aktiviti: {1}, lagi.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartTiada tarikh dipilih. Sila pilih tarikh dan masa.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblMasa (Jam : Minit)Time fields title - Lesson details (manage section)al_validation_schtimeSila masukkan masa yang betul.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipUntuk memaksa pelajar yang telah selesai menamatkan pelajaran, tarik ikon pelajar ke bar ini dan lepaskan ikon tersebutRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityBuka Paparan AktivitiLabel for Custom Context Monitor Activityccm_monitor_activityhelpAwasi Bantuan AktivitiLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnEntri JurnalLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipPapar semua simpanan Entri Jurnal oleh pelajartool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL Pelajar:Learner URL:ls_manage_learnerExpp_lblBenarkan eksport portfolio untuk pelajarLabel for Enable export portfolio for Learnerls_confirm_expp_enabledEksport Portfolio telah dibenarkan untuk pelajar.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledEksport Portfolio telah dihilangkan untuk pelajar.Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgAnda telah memilih untuk Membuang pelajaran ini. Pelajaran yang telah dibuang tidak boleh diambil kembali. Sambung?remove confirm msgls_status_cmb_removeBuangLesson status option - Removels_status_removed_lblDibuangCurrent status description if deleted (removed) lesson.al_yesYaYes on the alert dialogal_noTidak'No' on the alert dialogls_remove_warning_msgAMARAN: Pelajaran ini akan dibuang. Adakah anda mahu teruskan?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} pelajarGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.check_avail_btnPeriksa KesediaanCheck Availability button labelcontinue_btnSambungContinue button labells_continue_lblHi {1}, anda tidak selesai menyunting {0}.Continue message labells_sequence_live_edit_btnSunting HidupLive Edit buttonls_sequence_live_edit_btn_tooltipSunting desain untuk pelajaran ini.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblPeriksa ...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblTiada, Cuba Lagi.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblMaaf, {0} sedan disunting oleh {1}.Warning message on Monitor locked screen.al_confirm_live_editAnda akan membuka Suntingan Hidup. Adakah anda mahu teruskan?Confirm warning (dialog) message displayed when opening Live Edit.al_sendHantarSend button label on the system error dialogabout_popup_title_lblTentang - {0}Title for the About Pop-up window.about_popup_version_lblVersiLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} adalah hakcipta Yayasan {0} ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblProgram ini adalah perisian percuma; anda boleh mengagihkan ia dan/atau mengubahnya dibawah terma GNU General Public License Versi 2 seperti yang diterbitkan oleh Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKlik {0} untuk teruskan.Action label displayed when a user can proceed to Live Edit.ls_status_active_lblDicipta tetapi tidak dimulakan lagiCurrent status description if active (enabled)ls_status_disabled_lblDigantungCurrent status description if suspended (disabled)ls_status_started_lblDimulakanCurrent status description if started (enabled)ls_status_cmb_disableHilangkanLesson status option - Disable (suspend)about_popup_copyright_lbl© 2002-2008 Yayasan {0}.Label displaying copyright statement in About dialog.mv_search_default_txtMasukkan query carian atau nombor halamanThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequences{0} - TurutanNumber of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidMaaf! Anda perlu memilih aktiviti sebelum anda klik menu Buka/Sunting Isi Aktiviti pada menu klik kanan aktiviti.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgSila masukkan query carian atau nombor halaman diantara 1 dengan {0}This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgNombor halaman mesti diantara 1 dan {0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0} tidak dijumpaiThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblHalaman {0} dari {1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblPergiIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lblPandangan IndexWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.close_mc_tooltipMinimizeTooltip message for close button on Branching canvas. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/nl_BE_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_manage_editclass_btn_tooltipDe lijst met de aan deze lijst toegewezen cursisten en medewerkers aanpasentool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipToont alle cursisten die aan deze les zijn toegewezentool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipVerander de status van deze les op basis van de selectie uit de lijsttool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusal_alertOpgeletGeneric title for Alert windowal_cancelAnnulerenTo Confirm title for LFErroral_confirmBevestigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDe taal-gegevens zijn niet geladenmessage for unsuccessful language loadingapp_chk_themeloadDe thema-gegevens zijn niet geladenmessage for unsuccessful theme loadingapp_fail_continueHet programma kan niet verder werken. Waarschuw ondersteuning/de helpdeskmessage if application cannot continue due to any errordb_datasend_confirmDank voor het naar de server sturen van gegevensMessage when user sucessfully dumps data to the servermnu_editWijzigenMenu bar Editmnu_edit_copyKopieerenMenu bar Edit &gt; Copymnu_edit_cutKnippenMenu bar Edit &gt; Cutmnu_edit_pastePlakkenMenu bar Edit &gt; Pastemnu_fileBestandMenu bar Filemnu_file_refreshVernieuwenMenu bar Refreshmnu_file_editclassCategorie aanpassenMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHelpMenu bar Helpmnu_help_abtOverMenu bar Aboutperm_act_lblToestemmingLabel for permission gate activitysched_act_lblRoosterLabel for schedule gate activitysynch_act_lblSynchroniserenUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnnuleren2ws_dlg_location_buttonLokatieWorkspace dialogue Location btn labelws_tree_mywspMijn WerkplekThe root level of the treews_tree_orgsOrganisatiesShown in the top level of the tree in the workspacesys_error_msg_startDe volgens systeemfout is opgetreden:Common System error message starting linesys_error_msg_finishMogelijk moet u LAMS opnieuw opstarten voordat u door kunt. Wilt u de volgende informatie opslaan zodat wij de oorzaak van de fout kunnen proberen op te zoeken?Common System error message finish paragraphsys_errorSysteemfoutSystem Error elert window titlemnu_file_scheduleRoosterMenu bar Schedulemnu_file_exitAfsluitenMenu bar Exitmnu_view_learnersCursisten...Menu bar Learnersmnu_goGaanMenu bar Gomnu_go_lessonLesMenu bar Go to Lesson Tabmnu_go_scheduleRoosterMenu bar Go to Schedule Tabmnu_go_learnersCursistenMenu bar Go to Learners Tabmnu_go_todoTe doenMenu bar Todomnu_help_helpBewaak-hulpMenu bar Help itemrefresh_btnVernieuwenRefresh buttonhelp_btnHelpHelp buttonmtab_lessonLesMonitor Lesson details tabmtab_seqOpeenvolgingMonitor Sequence tabmtab_learnersCursistenMonitor Learners tabmtab_todoTe doenMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblCursisten:Learner label - Lesson detailsls_class_lblCategorie:Class label - Lesson detailsls_manage_class_lblCategorie:Class managing label - Lesson detailsls_manage_status_lblStatus wijzigen:Status managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnCursisten bekijkenView learners button - Lesson details (manage section)ls_manage_editclass_btnCategorie wijzigenEdit class button - Lesson details (manage section)ls_manage_apply_btnToepassenStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblCursist toestaan portfolio te exporterenLabel for Enable export portfolio for Learnerls_confirm_expp_enabledCursisten kunnen hun portfolio nu exporterenConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledCursisten kunnen hun portfolio nu NIET exporterenConfirmation message on disabling export portfolio for learnersls_manage_schedule_btnRoosterSchedule start button - Lesson details (manage section)ls_manage_start_btnNu startenStart immediately button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblVerstreken periode:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbStatus selecteren:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateActiverenLesson status option - Activatels_status_cmb_disableUitschakelenLesson status option - Disable (suspend)ls_status_cmb_enableActiefLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiefLesson status option - Archivels_status_active_lblAangemaakt maar nog niet gestartCurrent status description if active (enabled)ls_status_disabled_lblBevrorenCurrent status description if suspended (disabled)ls_status_archived_lblGearchiveerdCurrent status description if archviedls_status_started_lblGestartCurrent status description if started (enabled)ls_win_editclass_titleCategorie wijzigenEdit class window titlels_win_learners_titleCursisten bekijkenView learners window titlemnu_viewBeeldMenu bar Viewls_win_editclass_save_btnOpslaanSave button on Edit Class popupls_win_editclass_cancel_btnAnnulerenCancel button on Edit Class popupls_win_learners_close_btnAfsluitenClose button on View Learners popupls_win_editclass_organisation_lblOrganisatieHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStafledenHeading for Staff list on Edit Class popupls_win_editclass_learners_lblCursistenHeading for Learners list on the Edit Class popupls_win_learners_heading_lblCursisten in de klas:Heading on View Learners window panel.td_desc_headingGeavanceerde opties:Todo tab description headingtd_desc_textHet gebruik van deze TeDoen-tab is niet nodig om de reeks af te maken. Zie de helppagina voor meer informatie. <br><br>Deze optie is nu volledig bruikbaar.Todo tab descriptionopt_activity_titleOptionele activiteitTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesOnderliggende activiteitenNumber of child activities for Complex activity shown on canvas.ls_of_textvan dei.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLes beherenHeading for Management section of Lesson Tabls_tasks_txtBenodigde takenHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnUitvoerenGo button on contribute entry itemlearner_exportPortfolio_btnPortfolio exporterenLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_sendVerzendenSend button label on the system error dialogccm_monitor_activityActiviteitenmonitor openenLabel for Custom Context Monitor Activityccm_monitor_activityhelpActiviteitenbeheer helpLabel for Custom Context Monitor Activity Helpal_validation_schstartEr is geen datum gekozen. Selecteer een datum en tijd.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityWeet u zeker dat u cursist '{0}' wil verplichten activiteit '{1}' te maken?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityU heeft cursist '{0}' op zijn huidige of afgemaakt activiteit '{1} laten vallen.'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishWeet u zeker dat u cursist '{0}' naar het eind van de les wil forceren?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetLaat cursist '{0}' op een activiteit of eind van de les vallen.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateCursisten die klaar zijn:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblTijd (Uren : Minuten)Time fields title - Lesson details (manage section)ls_learnerURL_lblURL van de cursist:Learner URL:ls_status_scheduled_lblGeplandLesson status option - Scheduled (Not Started)goContribute_btn_tooltipDeze taak nu afmakentool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHelptool tip message for help button in toolbarrefresh_btn_tooltipDe gegevens over voortgang van de cursisten actualiserentool tip message for the refresh buttonclass_exportPortfolio_btn_tooltipExporteer de portfolio van de klas en sla de gegevens op op uw eigen computer, zodat u er later gebruik van kunt makentool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExporteer de portfolio van de cursist en sla de gegevens op op uw eigen computer, zodat u er later gebruik van kunt makentool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipDe les direct startentool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipBepalen op welke datum/tijd de les moet startentool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDubbelklik om de actuele bijdrages van de cursist te bekijkentool tip message for current activity iconcompleted_act_tooltipDubbelklik om de afgeronde activiteiten van de cursist te bekijkentool tip message for completed activity iconal_validation_schtimeVoer een geldige tijd in.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipOm een cursist naar het eind van een les te forceren, sleept u het cursist-icoon naar deze balk en laat u de muisknop losRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnLogboekLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipLogboeken van alle cursisten bekijkentool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_doubleclick_todoactivitySorry, cursist: {0} heeft activitei: {1}, nog niet bereikt.alert message when user double click on the todo activity in the sequence under learner tablearners_group_name{0} cursistenGroup name for the class's learners group.ls_remove_confirm_msgU heeft ervoor gekozen deze les te verwijderen. Verwijderde lessen kunnen niet terug gehaald worden. Doorgaan?remove confirm msgls_status_cmb_removeVerwijderenLesson status option - Removels_status_removed_lblVerwijderdCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNee'No' on the alert dialogls_remove_warning_msgWAARSCHUWING: de les gaat verwijderd worden. Wilt u hem in het archief opslaan?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} medewerkersGroup name for the class's staff group.check_avail_btnBeschikbaarheid controlerenCheck Availability button labelcontinue_btnDoorgaanContinue button labells_continue_lblBeste {1}, je bent nog niet klaar met het wijzigen van {0}.Continue message labells_sequence_live_edit_btnRealtime wijzigenLive Edit buttonls_sequence_live_edit_btn_tooltipHet ontwerp van de les wijzigen.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblControle loopt...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblOnbeschikbaar. Probeer het nogmaals.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSorry, {0} wordt momenteel bewerkt door {1}.Warning message on Monitor locked screen.al_confirm_live_editU staat op het punt realtime te gaan wijzigen. Doorgaan?Confirm warning (dialog) message displayed when opening Live Edit.about_popup_title_lblOver - {0}Title for the About Pop-up window.about_popup_version_lblVersieLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 Stichting {0} .Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} is een handelsmerk van {0} stichting ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDit programma valt onder de Vrije Software; u mag het verspreiden en/of aanpassen onder de voorwaarden van de GNU General Public License versie 2 zoals gepubliceerd door de Free Software Foundation. <br><br> {0}Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKlik {0} om door te gaan.Action label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/no_NO_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} kan ikke bli overført til en aktivitet som er i en annen gren eller sekvenslearner_viewJournals_btn_tooltipSe på alle journaler som er skrevet av studenteneabout_popup_trademark_lbl{0} er varemerket til {0} Stiftelse ({1}).ls_seq_status_perm_gateTilgangs port. Åpnes av foreleser.mv_search_error_msgVennligst start et søke eller sett inn et sidenummer med en tallverdi mellom 1 og {0}ls_seq_status_sched_gateTidsstyrt portsys_error_msg_finishDu må kanskje starte om LAMS forfatter for å fortsette. Ønsker du å lagre informasjon om dette problemet for å hjelpe oss å rette feilen ?al_activity_openContent_invalidBeklager ! Du må velge en aktivitet før du velger Åpne/Rediger Aktivitets Innhold meny punktet.mnu_go_sequenceSekvensls_manage_learnerExpp_lblKoble til eksport av mapper for studentenorder_learners_by_completion_lblList opp etter ferdigstillelsels_manage_apply_btnBruklearners_group_name{0} studenterls_learnerURL_lblStudentens URL:ls_status_active_lblUtarbeidet, men ikke startetls_manage_status_lblEndre status:ls_manage_start_btnStart nålbl_num_activities{0} - aktiviteterlearner_viewJournals_btnJournaleral_validation_schtimeVennligst angi et gyldig tidspunkt.mnu_editRedigermnu_file_editclassRediger klassels_win_editclass_titleRediger klassels_manage_editclass_btn_tooltipRediger listen for studenter og forelesere for denne aktivitetenls_win_editclass_staff_lblForeleserestaff_group_name{0} forelesere i kontroll modusbranch_mapping_dlg_conditions_dgd_lblBetingelseropt_activity_titleAlternativ aktivitetls_of_textavls_manage_txtAdministrer leksjonls_tasks_txtPålagte oppgavertd_goContribute_btnStartlearner_exportPortfolio_btnEksporter mappeal_validation_schstartDet er ikke angitt noen dato. Vennligst velg dato og tidspunkt.al_confirm_forcecomplete_toactivityEr du sikker på at du ønsker å flytte studenten '{0}' til aktivitet '{1}' ?al_error_forcecomplete_invalidactivityDu har flyttet studenten '{0}' til enten den nåværende eller til den ferdige aktiviteten'{1}'al_confirm_forcecomplete_tofinishEr du sikker på at du ønsker å flytte studenten '{0}' til slutten av leksjonen ?al_error_forcecomplete_notargetVenligst flytt studenten '{0}' til en aktivitet eller på slutten av leksjonen.title_sequencetab_endGateFerdige studenter:ls_manage_time_lblTid (Timer:Minutter)ls_status_scheduled_lblPlanlagt tidgoContribute_btn_tooltipFullfør denne oppgaven nåhelp_btn_tooltipHjelprefresh_btn_tooltipLast inn de siste fremdriftsdata for studentenels_manage_learners_btn_tooltipViser alle studenter som er knyttet til denne leksjonenls_manage_apply_btn_tooltipEndre status for denne leksjonen med informasjon fra menyenclass_exportPortfolio_btn_tooltipEksporter klassens mappe og lagre den på din datamaskin for senere referanselearner_exportPortfolio_btn_tooltipEksporter elevens mappe og lagre den på din datamaskin for senere referansels_manage_start_btn_tooltipStart leksjonen omgåendels_manage_schedule_btn_tooltipPlanlegg at leksjonen skal starte senerecurrent_act_tooltipDobbeltklikk for å se fremdriften for studentens nåværende aktivitetcompleted_act_tooltipDobbeltklikk for å se innholdet i studentens ferdigstilte aktivitetal_doubleclick_todoactivityBeklager, studenten {0} har ikke nådd fram til aktiviteten: {1} enda.al_cancelAvbrytal_confirmBekreftal_okOKapp_chk_themeloadTema data er ikke lastet inn.app_fail_continueProgrammet kan ikke fortsette. Vennligst kontakt brukerstøtten.db_datasend_confirmTakk for at data er sendt til server.mnu_edit_copyKopiermnu_edit_cutKlipp utmnu_edit_pasteLim innmnu_fileFilmnu_file_refreshFrisk oppmnu_file_startStartmnu_helpHjelpmnu_help_abtOmperm_act_lblTilgangsched_act_lblTidsplansynch_act_lblSynkroniserws_RootRotws_dlg_cancel_buttonAvbrytws_dlg_location_buttonStedws_tree_mywspMitt arbeidsområdews_tree_orgsOrganisasjonersys_error_msg_startDen følgende system feilen har oppstått:sys_errorSystem feilmnu_file_scheduleTidsplanmnu_file_exitGå utmnu_view_learnersStudenter...mnu_goStartmnu_go_lessonLeksjonmnu_go_scheduleTidsplanmnu_go_learnersStudentermnu_go_todoMå gjøresmnu_help_helpHjelprefresh_btnFrisk opphelp_btnHjelpmtab_lessonLeksjonmtab_seqSekvensmtab_learnersStudentermtab_todoHuskelistels_status_lblStatus:ls_learners_lblStudenter:ls_class_lblKlasse:ls_manage_class_lblKlasse:ls_manage_start_lblStart:ls_manage_learners_btnSe på studenterls_manage_schedule_btnTidsplanls_manage_date_lblDatols_duration_lblMedgått tid:ls_manage_status_cmbVelg status:ls_status_cmb_activateAktiverls_status_cmb_disableKoble frals_status_cmb_enableAktivls_status_cmb_archiveArkiverls_status_disabled_lblKoblet frals_status_archived_lblArkivertls_status_started_lblStartetls_win_learners_titleSe på studentermnu_viewSe påls_win_editclass_save_btnLagrels_win_editclass_cancel_btnAngrels_win_learners_close_btnLukkls_win_editclass_organisation_lblOrganisasjonls_win_editclass_learners_lblStudenterls_win_learners_heading_lblStudenter i klassen:td_desc_headingAvanserte kontroller:td_desc_textDet er ikke behov for å benytte denne huskelisten for å gjøre ferdig sekvensen. Konferer hjelpesidene for mer informasjon.<br><br>. Denne egenskapen er nå i funksjon.ccm_monitor_activityÅpne kontroll modusccm_monitor_activityhelpHjelpls_manage_editclass_btnRediger klassels_continue_lblOoops ! {1}, du har ikke gjort deg ferdig med å redigere {0}.ls_sequence_live_edit_btn_tooltipRediger dette designet for denne leksjonen.support_act_titleBrukerstøtte aktivitetal_error_forcecomplete_support_actKan ikke tvinge en student til en brukerstøtte aktivitetfinish_learner_tooltipFor å kunne flytte en student til siste del av leksjonen, så flytt student ikonet over dette skillet.about_popup_title_lblOM - {0}about_popup_version_lblVersjonstream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgabout_popup_license_lblDenne programvaren er en fri programmvare, du kan distribuere den videre og/eller endre denne så lenge betingelsene i GNU General Public License versjon 2, utgitt av Free Software Foundation, følges.ls_remove_confirm_msgDu har valgt å slette denne leksjonen. Slettede leksjoner kan ikke hentes inn igjen. Vil du fortsette ?ls_status_cmb_removeFjernls_status_removed_lblFjernetal_yesJaal_noNeicheck_avail_btnKontroller tilgjengelighetcontinue_btnFortsettls_sequence_live_edit_btnAktuell endringmsg_bubble_check_action_lblKontrollerer....msg_bubble_failed_action_lblIkke tilgjengelig, forsøk igjen.ls_locked_msg_lblBeklager {0} er i ferd med å bli endret av {1}.al_confirm_live_editDu er i ferd med å åpne for endringer. Ønsker du å fortsette ?al_sendSendls_continue_action_lblKlikk på {0} for å fortsette.app_chk_langloadSpråkdata er ikke lastet inn.competences_mapped_to_act_lblKompetanse som er tilknyttet {0}mv_search_default_txtStart et søk eller sett inn et sidenummermv_search_invalid_input_msgSidenummeret må være mellom 1 og {0}mv_search_not_found_msg{0} ble ikke funnetmv_search_current_page_lblSide {0} av {1}lbl_num_sequences{0} sekvensermv_search_go_btn_lblStart søkmv_search_index_view_btn_lblOversiktclose_mc_tooltipMinimerls_seq_status_moderationOrdstyrerls_seq_status_define_laterDefineres senerels_seq_status_choose_groupingVelg grupperingls_seq_status_contributionBidragls_seq_status_system_gateStopp punktls_seq_status_not_setIkke bestemt endabranch_mapping_dlg_branch_col_lblGrenbranch_mapping_dlg_condition_col_lblForutsettningerbranch_mapping_dlg_group_col_lblGruppeccm_monitor_view_group_mappingsSe på grupper og grenerccm_monitor_view_condition_mappingsSe på forutsettningene for grenercv_activity_helpURL_undefinedFinner ikke hjelpesiden for {0}cv_design_unsaved_live_editEndringer som ikke er lagret vil bli lagret automatisk. Ønsker du å fortsette med å sette inn ?label.grouping.general.instructions.branchingDu kan ikke legge til eller fjerne grupper her fordi den inngår i en grenaktivitet. Du kan kun endre antall brukere i gruppene.al_alertVarsells_remove_warning_msgAdvarsel ! Leksjonen er i ferd med å bli fjernet. Vil du beholde denne ?ls_seq_status_synch_gateSynkroniserings portls_seq_status_teacher_branchingValg av gren. Utføres av foreleserabout_popup_copyright_lbl© 2002-2009 {0} Stiftelse.competence_title_lblTittelcompetence_desc_lblBeskrivelsels_confirm_expp_enabledEksport av mapper er nå tilkoblet for studentenels_confirm_expp_disabledEksport av mapper er frakoblet for studenteneal_activity_view_competence_mappings_invalidVennligst kontroller at du har valgt en aktivitet før du forsøker å se på kompetanse sammenligningene. ls_manage_presenceEnabled_lblTillat studentene å se hva som er on-linels_confirm_presence_enabledStudentene kan se hvem som er on-linels_confirm_presence_disabledStudentene kan ikke se hvem som er on-lineview_competences_dlgSe kompetanse al_confirm_forcecomplete_to_end_of_branching_seqEr du sikker på at du vil overføre studenten {0} til slutten av denne gren-sekvensen ?view_act_mapped_competencesSe på kompetanse som er tilordnet aktiviteterview_competences_in_ld_lblKompetanse som er tilknyttet designet {0}mapped_competences_lblKompetanse tilknyttet aktiviteterls_win_learners_heading_class_lblKlassels_win_learners_heading_activity_lblAktivitetlearner_plus_tooltip{0} studenter. Dobbeltklikk for å se hele listen.view_time_graph_btnSe tidsplanview_time_graph_btn_tooltipSe på en graf som viser studentens fremdrift i henhold til tidsplanview_time_chart_btnSe tidsplanview_time_chart_btn_tooltipSe en graf som viser studentens fremdrift i henhold til planlagt tidsplan for hver aktivitet.msg_no_learners_in_lessonDet må velges en eller flere studenter.ls_manage_presenceImEnabled_lblKoble til meldingstjenestels_confirm_presence_im_enabledMeldingstjenesten er tilkobletls_confirm_presence_im_disabledMeldingstjenesten er frakoblet \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/pl_PL_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertUwagaGeneric title for Alert windowal_cancelAnulujTo Confirm title for LFErroral_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDane językowe nie zostały załadowanemessage for unsuccessful language loadingapp_chk_themeloadTemat nie został załadowanymessage for unsuccessful theme loadingapp_fail_continueProgram nie może kontynuuować. Skontaktuje się z administratoremmessage if application cannot continue due to any errordb_datasend_confirmDane zostały wysłaneMessage when user sucessfully dumps data to the servermnu_editEdycjaMenu bar Editmnu_edit_copyKopiujMenu bar Edit &gt; Copymnu_edit_cutWytnijMenu bar Edit &gt; Cutmnu_edit_pasteWklejMenu bar Edit &gt; Pastemnu_filePlikMenu bar Filemnu_file_refreshOdświeżMenu bar Refreshmnu_file_editclassEdytuj klasęMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpPomocMenu bar Helpmnu_help_abtO...Menu bar Aboutperm_act_lblPozwolenieLabel for permission gate activitysched_act_lblPlanLabel for schedule gate activitysynch_act_lblSynchronizujUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnuluj2ws_dlg_location_buttonLokalizacjaWorkspace dialogue Location btn labelws_tree_mywspMoje ProjektyThe root level of the treews_tree_orgsOrganizacjeShown in the top level of the tree in the workspacesys_error_msg_startWystąpił następujący bład systemuCommon System error message starting linesys_error_msg_finishMusisz ponownie uruchomić moduł Autora systemu LAMS. Czy chcesz zapisać informacje na temat błedu aby go naprawić ?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titlemnu_file_schedulePlanMenu bar Schedulemnu_file_exitWyjścieMenu bar Exitmnu_view_learnersStudenci...Menu bar Learnersmnu_goIdź doMenu bar Gomnu_go_lessonLekcjaMenu bar Go to Lesson Tabmnu_go_scheduleSekwencjaMenu bar Go to Schedule Tabmnu_go_learnersPostępMenu bar Go to Learners Tabmnu_go_todoDo zrobieniaMenu bar Todomnu_help_helpPomocMenu bar Help itemrefresh_btnOdświeżRefresh buttonhelp_btnPomocHelp buttonmtab_lessonLekcjaMonitor Lesson details tabmtab_seqSekwencjaMonitor Sequence tabmtab_learnersPostępMonitor Learners tabmtab_todoDo zrobieniaMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblStudenci:Learner label - Lesson detailsls_class_lblKlasa:Class label - Lesson detailsls_manage_class_lblKlasa:Class managing label - Lesson detailsls_manage_status_lblStatus:Status managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnPokaż studentówView learners button - Lesson details (manage section)ls_manage_editclass_btnEdytuj klasęEdit class button - Lesson details (manage section)ls_manage_apply_btnPotwierdźStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblUmożliwia eksport portfolio studentaLabel for Enable export portfolio for Learnerls_confirm_expp_enabledEksport portfolio został włączony dla studentówConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledEksport portfolio został wyłączony dla studentówConfirmation message on disabling export portfolio for learnersls_manage_schedule_btnPlanSchedule start button - Lesson details (manage section)ls_manage_start_btnUruchomStart immediately button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblCzas trwania:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbWybierz:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktywujLesson status option - Activatels_status_cmb_disableZatrzymajLesson status option - Disable (suspend)ls_status_cmb_enableUruchomLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiwizujLesson status option - Archivels_status_active_lblAktywnaCurrent status description if active (enabled)ls_status_disabled_lblZawieszonaCurrent status description if suspended (disabled)ls_status_archived_lblArchilwalnaCurrent status description if archviedls_status_started_lblUruchomionaCurrent status description if started (enabled)ls_win_editclass_titleEdycja klasyEdit class window titlels_win_learners_titleWidok studentówView learners window titlemnu_viewWidokMenu bar Viewls_win_editclass_save_btnZapiszSave button on Edit Class popupls_win_editclass_cancel_btnAnulujCancel button on Edit Class popupls_win_learners_close_btnZamknijClose button on View Learners popupls_win_editclass_organisation_lblOrganizacjaHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblPracownicyHeading for Staff list on Edit Class popupls_win_editclass_learners_lblStudenciHeading for Learners list on the Edit Class popupls_win_learners_heading_lblStudenci w klasie:Heading on View Learners window panel.td_desc_headingOpcje zaawansowaneTodo tab description headingtd_desc_textAby zakończyć sekwencję nie trzeba używać zakładki Do Zrobienia. Aby uzyskać więcej informacji zobacz pomocTodo tab descriptionopt_activity_titleAktywność opcjonalnaTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesAktywności podrzędneNumber of child activities for Complex activity shown on canvas.ls_of_textzi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtOpcje lekcjiHeading for Management section of Lesson Tabls_tasks_txtWymagane zadaniaHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnIdźGo button on contribute entry itemlearner_exportPortfolio_btnEksport portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataccm_monitor_activityMonitoruj aktywnośćLabel for Custom Context Monitor Activityccm_monitor_activityhelpPomoc dla monitoringu aktywnościLabel for Custom Context Monitor Activity Helpal_validation_schstartNie wybrano daty. Wybierz datę i czasMessage when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityCzy na pewno chcesz zmusić studenta '{0}' do zakończenia aktywności '{1}' ?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityPrzesunałęś studenta '{0}' albo na aktywność bieżącą albo na aktywność '{1}' którą już zakończyłError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishCzy na pewno chcesz zmusić studenta '{0}' do zakończenia lekcji ?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetPrzesuń studenta '{0}' na aktywność lub zakończ lekcjęError Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateStudenci którza zakończyli pracęTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblCzas (Godziny : Minuty)Time fields title - Lesson details (manage section)ls_learnerURL_lblURL studentaLearner URL:ls_status_scheduled_lblZaplanowanaLesson status option - Scheduled (Not Started)goContribute_btn_tooltipZakończ natychmiast zadanietool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipPomoctool tip message for help button in toolbarrefresh_btn_tooltipZaładuj ponownie ostatnie dane postępu dla studentówtool tip message for the refresh buttonls_manage_editclass_btn_tooltipEdycja listy studentów i pracowników przypisanych do lekcjitool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipPokaż wszystkich studentów przypisanych do tej lekcjitool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipZmień status lekcji korzystając z listy rozwijanejtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksportuj portfolio klasy i zapisz je na swoim kompuerze w celu ponownego użycia w przyszłościtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksportuj portfolio studenta i zapisz je na swoim kompuerze w celu ponownego użycia w przyszłościtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipUruchom natychmiast lekcję tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipPlan lekcji do uruchomienia w przyszłościtool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipPodwójne kliknięcie aby zobaczyć postępy studenta dla danej aktywnościtool tip message for current activity iconcompleted_act_tooltipPodwójne kliknięcie aby zobaczyć postępy studenta dla zakończonej aktywnościtool tip message for completed activity iconal_validation_schtimeWprowadź poprawny format czasuAlert message when user enters an invalid time for schedule startfinish_learner_tooltipAby zmusić studenta do zakończenia lekcji, przeciągnij i upuść ikonę studenta na tą belkęRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnWpisy do dziennikaLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipPokaż wszystkie wpisy do dziennikatool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_doubleclick_todoactivityStudent: {0} nie osiągnął jeszcze aktywności: {1}alert message when user double click on the todo activity in the sequence under learner tablearners_group_nameStudenci {0}Group name for the class's learners group.ls_remove_confirm_msgCzy chcesz usunąć zaznaczoną lekcję ? Lekcja zostanie utracona bezpowrotnieremove confirm msgls_status_cmb_removeUsuńLesson status option - Removels_status_removed_lblUsuniętaCurrent status description if deleted (removed) lesson.al_yesTakYes on the alert dialogal_noNie'No' on the alert dialogls_remove_warning_msgUwaga! Lekcja zostanie usunięta. Czy chcesz przechować ją w archiwum ?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_nameKadra {0}Group name for the class's staff group.check_avail_btnSprawdź dostępnośćCheck Availability button labelcontinue_btnDalejContinue button labells_continue_lblHej {1}, nie zakończono edycji {0}Continue message labells_sequence_live_edit_btnEdycja na żywoLive Edit buttonls_sequence_live_edit_btn_tooltipEdycja projektu dla tej lekcjiTool tip message for Live Edit buttonmsg_bubble_check_action_lblSprawdzanie...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNiedostępne, Spróbuj ponownieLabel displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblNiestety, {0} jest właśnie edytowane przez {1}Warning message on Monitor locked screen.al_confirm_live_editZa chwilę rozpoczniesz Edycję na żywo. Czy chesz kontynuować ?Confirm warning (dialog) message displayed when opening Live Edit.al_sendWysłanoSend button label on the system error dialogabout_popup_title_lblO - {0}Title for the About Pop-up window.about_popup_version_lblWersjaLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} jest znakiem firmowym {0} Fundacji ( {1} )Label displaying the trademark statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKliknij {0} aby kontynuowaćAction label displayed when a user can proceed to Live Edit.about_popup_license_lblTen program jest darmowy, może być dystrybuowany i/lub modyfikowany na zasadach licencji GNU General Public License wersja 2 - Free Software Foundation Label displaying the license statement in the About dialog.al_confirm_forcecomplete_to_end_of_branching_seqCzy na pewno chcesz zakończyć sekwencje studenta {0} ?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.about_popup_copyright_lbl@ 2002-2008 {0} FundacjaLabel displaying copyright statement in About dialog.close_mc_tooltipMinimalizujTooltip message for close button on Branching canvas.mv_search_current_page_lblStrona {0} z {1}{0} is the page we are on now and {1} is the number of pagesmv_search_not_found_msg{0} nie znaleziono.This message appears when the search does not find any learners whose names contain the search parameter.mv_search_index_view_btn_lblIndeksWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.lbl_num_sequences{0} - SekwencjiNumber of child sequence or Optional Sequences activity shown on canvas.mv_search_invalid_input_msgZakres stron musi być z przedziału od 1 do {0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_default_txtWpisz szukaną frazę lub numer stronyThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msgProszę podać szukaną frazę lub numer strony z zakresu od 1 do {0}This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_go_btn_lblSzukajIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.al_activity_openContent_invalidPrzed wybraniem polecenia Otwórz/Edycja należy zaznaczyć właściwą aktywność. Menu aktywności po kliknięciu prawym przyciskiem myszy na aktywności.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasal_error_forcecomplete_to_different_seqStudent {0} nie może zostać przeniosiony na aktywność (inna gałąź lub inna sekwencja)This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderationModeracjaDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_laterZdefiniuj późniejOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_synch_gateOtwierana synchronicznieA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_perm_gateOtwierana przez nauczycielaA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_choose_groupingWybierz grupowanieAllows the Teacher to add the learners to chosen groupsls_seq_status_contributionDodatkiAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingWybierana przez nauczycielaA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_setBrak ustawieńThe value of the sequence's status is not setls_seq_status_sched_gateOtwierana czasowoA type of Gate Activity where progress depends on time (start time and/or end time)ls_seq_status_system_gateBrama systemowaA System Gate is a stop point that can be controlled by time setting or user control \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/pt_BR_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertAlertaGeneric title for Alert windowal_cancelCancelarTo Confirm title for LFErroral_confirmConfirmarTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadOs dado do idioma não foram carregadosmessage for unsuccessful language loadingapp_chk_themeloadOs dados do tema não foram carregadosmessage for unsuccessful theme loadingapp_fail_continueA aplicação não pode continar. Favor contactar o suportemessage if application cannot continue due to any errordb_datasend_confirmObrigado por enviar dados para o servidorMessage when user sucessfully dumps data to the servermnu_editEditarMenu bar Editmnu_edit_copyCopiarMenu bar Edit &gt; Copymnu_edit_cutRecortarMenu bar Edit &gt; Cutmnu_edit_pasteColarMenu bar Edit &gt; Pastemnu_fileArquivoMenu bar Filemnu_file_refreshAtualizarMenu bar Refreshmnu_file_editclassEditar ClasseMenu bar Edit Classmnu_file_startIniciarMenu bar Startmnu_helpAjudaMenu bar Helpmnu_help_abtSobreMenu bar Aboutperm_act_lblPermissãoLabel for permission gate activitysched_act_lblAgendaLabel for schedule gate activitysynch_act_lblSincronizarUsed as a label for the Synch Gate Activity Typews_RootRaizRoot folder title for workspacews_dlg_cancel_buttonCancelar2ws_dlg_location_buttonLocalWorkspace dialogue Location btn labelws_tree_mywspMeus Espaço de TrabalhoThe root level of the treews_tree_orgsOrganizaçõesShown in the top level of the tree in the workspacesys_error_msg_startO seguinte erro de sistem ocorreu:Common System error message starting linesys_error_msg_finishVocê talvez necessite reiniciar esta janela do navegador para continuar. Você deseja salvar a informação vinda deste erro para ajudar a solucionar este problema?Common System error message finish paragraphsys_errorErro de SistemaSystem Error elert window titlemnu_file_scheduleAgendaMenu bar Schedulemnu_file_exitSairMenu bar Exitmnu_view_learnersAlunos...Menu bar Learnersmnu_goIrMenu bar Gomnu_go_lessonLiçãoMenu bar Go to Lesson Tabmnu_go_scheduleAgendaMenu bar Go to Schedule Tabmnu_go_learnersAlunosMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpAjudaMenu bar Help itemrefresh_btnAtualizaRefresh buttonhelp_btnAjudaHelp buttonmtab_lessonLiçãoMonitor Lesson details tabmtab_seqSeqüênciaMonitor Sequence tabmtab_learnersAlunosMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblEstadoStatus label - Lesson detailsls_learners_lblAlunos:Learner label - Lesson detailsls_class_lblClasse:Class label - Lesson detailsls_manage_class_lblClasse:Class managing label - Lesson detailsls_manage_status_lblEstado:Status managing label - Lesson detailsls_manage_start_lblInício:Start managing label - Lesson detailsls_manage_learners_btnVisualizar Alunos:View learners button - Lesson details (manage section)ls_manage_editclass_btnEditar ClasseEdit class button - Lesson details (manage section)ls_manage_apply_btnAplicarStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnAgendaSchedule start button - Lesson details (manage section)ls_manage_start_btnIniciar agoraStart immediately button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblTempo decorridoElapsed duration of lesson - Lesson detailsls_manage_status_cmbSeleciona estadoStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAtivadoLesson status option - Activatels_status_cmb_disableDesativadoLesson status option - Disable (suspend)ls_status_cmb_enableAtivoLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArquivoLesson status option - Archivels_status_active_lblAtivoCurrent status description if active (enabled)ls_status_disabled_lblSuspensoCurrent status description if suspended (disabled)ls_status_archived_lblArquivoCurrent status description if archviedls_status_started_lblComeçadoCurrent status description if started (enabled)ls_win_editclass_titleEditar ClasseEdit class window titlels_win_learners_titleVisualizar AlunosView learners window titlemnu_viewVisualizarMenu bar Viewls_win_editclass_save_btnSalvarSave button on Edit Class popupls_win_editclass_cancel_btnCancelarCancel button on Edit Class popupls_win_learners_close_btnFecharClose button on View Learners popupls_win_editclass_organisation_lblOrganizaçãoHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblDocenteHeading for Staff list on Edit Class popupls_win_editclass_learners_lblAlunosHeading for Learners list on the Edit Class popupls_win_learners_heading_lblAlunos na classe:Heading on View Learners window panel.td_desc_headingControles Avançados:Todo tab description headingtd_desc_textO uso da Aba Todo não é necessário para completar a seqüência. Veja a página de ajuda para maiores informações.<br><br>Esta opção agora é totalmente funcional.Todo tab descriptionopt_activity_titleAtividade OpcionalTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesatividades filhasNumber of child activities for Complex activity shown on canvas.ls_of_textdei.e. 1 of 10 Used for showing how many learners have startedls_manage_txtGerenciar LiçãoHeading for Management section of Lesson Tabls_tasks_txtTarefas NecessáriasHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnIrGo button on contribute entry itemlearner_exportPortfolio_btnExportar PortfólioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblAgendaLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityVocê tem certeza que você quer forçar o aluno a completar '{0}' para a Atividade '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityVocê soltou o aluno '{0}' na atividade atual ou na atividade completadaError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishVocê tem certeza que você quer forçar o aluno a completar '{0}' para o fim da lição? Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetFavor arrastar e soltar o aluno '{0}' sobre a atividade ou sobre o fim da lição.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateAluno que terminaramTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipCompletar esta tarefa agoratool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipAjudatool tip message for help button in toolbarrefresh_btn_tooltipRecarregar os dados de progresso mais recentes dos alunostool tip message for the refresh buttonls_manage_editclass_btn_tooltipEditar a lista de alunos e docentes designados para esta liçãotool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMostra todos os alunos designados para esta liçãotool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipMuda o estado desta lição com base na seleção do menu suspensotool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportar este portfólio da classe e salvar no computador para referência futuratool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportar este portfólio do aluno e salvar no computador para referência futuratool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipIniciar a lição imediatamentetool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipAgendar uma lição para iniciar no futurotool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipClicar duas vezes para rever o progresso da contribuição para o aluno da atividade atualtool tip message for current activity iconcompleted_act_tooltipClicar duas vezes para rever a contribuição para o aluno da atividade completadatool tip message for completed activity iconal_doubleclick_todoactivityDesculpe aluno: {0} não alcançou a atividade: {1} ainda.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartNenhuma data foi selecionada. Favor selecionar a data e a hora.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTempo (Horas : Minutos)Time fields title - Lesson details (manage section)al_validation_schtimeFavor digitar um valor (tempo) válido.Alert message when user enters an invalid time for schedule startfinish_learner_tooltippara forçar o aluno a completar a lição até o final, arraste e solte o ícone do aluno sobre esta barra Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityAtividade de monitoração abertaLabel for Custom Context Monitor Activityccm_monitor_activityhelpAjuda da atividade monitoradaLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnEntradas de jornaisLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVer todos os Jornais salvos pelos alunostool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL do alunoLearner URL:ls_manage_learnerExpp_lblHabilita exportar Portfólio para alunoLabel for Enable export portfolio for Learnerls_confirm_expp_enabledExportar Portfólio para aluno está agora habilitado Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledExportar Portfólio para aprendiz está agora desabilitado Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgVocê selecionou esta lição para Remover. Lições removidas não podem ser recuperadas novamente. Continuar?remove confirm msgls_status_cmb_removeremoverLesson status option - Removels_status_removed_lblRemovidoCurrent status description if deleted (removed) lesson.al_yesSimYes on the alert dialogal_noNão'No' on the alert dialogls_remove_warning_msgCuidado: A lição está para ser removida. Você quer arquivá-la?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} alunosGroup name for the class's learners group.staff_group_name{0} pessoalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/ru_RU_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_noНетstaff_group_name{0} сотрудниковls_win_editclass_cancel_btnОтменитьcheck_avail_btnПроверить доступностьls_sequence_live_edit_btn_tooltipРедактировать проект этого урокаls_learnerURL_lblСсылка для ученика:continue_btnПродолжитьmv_search_not_found_msg{0} не найдено.mv_search_go_btn_lblПерейти кls_win_learners_close_btnЗакрытьmv_search_current_page_lblСтраница {0} из {1}ls_manage_learners_btn_tooltipПоказать всех уччеников, крикрепленных к этому урокуls_manage_apply_btn_tooltipИзменить статус урока, основываясь на выборе в выпадающем менюls_seq_status_system_gateСистемный затворmnu_go_todoСписок заданийmtab_todoСписок заданийtd_desc_textИспользование Списка заданий необязательно для выполнения этой последовательности. Обратите в раздел помощь за соотвествующей информацией.<br><br> Эта функция теперь доступна в полном объеме.al_error_forcecomplete_invalidactivityВы перетащили пользователя '{0}' на его текущее или уже выполненное задание '{1}'ccm_monitor_activityhelpПомощь по мониторингу заданийal_validation_schstartВы не выбрали дату. Выберите, пожалуйста, дату и время.al_confirm_forcecomplete_toactivityДействительно ли вы желаете принудительно завершить задания у ученика '{0}' вплоть до '{1}'?ls_seq_status_not_setЕще не заданls_sequence_live_edit_btnРедактирование "на лету"about_popup_license_lblЭто программа является free software; Вы можете распространять и/или изменять ее при условиях соответствия GNU General Public License version 2 опубликованной Free Software Foundation. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txt stream_urlhttp://{0}foundation.orgal_okОКclose_mc_tooltipСвернутьls_tasks_txtОбязательные заданияls_manage_time_lblВремя (Часы : Минуты)ls_continue_lblЗдравствуйте, {1}, вы не закончили редактирование {0}.al_confirm_forcecomplete_tofinishДействительно ли вы желаете принудительно завершить урок у ученика '{0}'?competences_mapped_to_act_lblЗнания определены к {0}ls_status_cmb_removeУдалитьls_status_removed_lblУдаленныйal_yesДаls_continue_action_lblНажмите {0}, чтобы продолжить. mv_search_default_txtВведите поисковый запрос или номер страницыbranch_mapping_dlg_conditions_dgd_lblСоотвествияlbl_num_sequences{0} - Последовательностейal_activity_openContent_invalidИзвините! Перед тем как нажать пункт меню Открыть/Редактировать Задание, Вы должны выбрать задание.mv_search_error_msgВведите, пожалуйста, поисковый запрос или номер страницы между 1 и {0}mv_search_invalid_input_msgНомер страницы должен быть между 1 и {0}ls_seq_status_sched_gateЗатвор, работающий по времениbranch_mapping_dlg_branch_col_lblРазветвлениеfinish_learner_tooltipЧтобы принудительно завершить урок у ученика, перетащите его иконку ну эту панель.mnu_help_helpПомощь по мониторингуls_manage_status_lblИзменить статус:ls_manage_learners_btnПросмотр учениковls_manage_learnerExpp_lblРазрешить ученикам экспортировать портфолиоls_confirm_expp_enabledЭкспорт портфолио разрешен для учениковls_confirm_expp_disabledЭкспорт портфолио запрещен для учениковls_duration_lblОжидаемая продолжительность:td_desc_headingРасширенное управлениеopt_activity_titleОпциональное заданиеlbl_num_activities{0} - Заданияls_of_textизls_manage_txtУправление урокомtd_goContribute_btnПерейти кlearner_exportPortfolio_btnЭкспорт портфолиоal_sendОтправитьls_status_scheduled_lblЗапланированоеgoContribute_btn_tooltipЗавершить это задание сейчасhelp_btn_tooltipПомощьls_manage_start_btn_tooltipНачать урок незамедлительноmsg_bubble_check_action_lblПроверка...msg_bubble_failed_action_lblНедостуно, попробуйте еще раз.ls_locked_msg_lblИзвините, но {0} сейчас редактируется {1}.al_confirm_live_editРедактирование "на лету" будет открыто. Желаете продолжить?about_popup_title_lblО программе - {0}about_popup_version_lblВерсияabout_popup_copyright_lbl© 2002-2008 {0} Foundation.about_popup_trademark_lbl{0} является торговой маркой {0} Foundation ( {1} ).branch_mapping_dlg_condition_col_lblУсловиеal_error_forcecomplete_to_different_seqВы не можете перетащить {0} на задание из другой ветви или последовательности.al_error_forcecomplete_notargetПожалуйста, перетащите пользователя '{0}' на задание либо конец урока.ls_win_editclass_organisation_lblОрганизацияmnu_file_startСтартmnu_helpПомощьmnu_help_abtО программеperm_act_lblРазрешениеsched_act_lblРасписаниеsynch_act_lblСинхронизированныйws_RootКореньws_dlg_cancel_buttonОтменитьws_dlg_location_buttonРасположениеws_tree_mywspМоя рабочая средаws_tree_orgsОрганизацииsys_error_msg_startПроизошла следующая системная ошибка:sys_errorСистемная ошибкаmnu_file_scheduleРасписаниеmnu_file_exitВыходmnu_view_learnersУченики...mnu_goПерейти кmnu_go_lessonУрокmnu_go_scheduleРасписаниеmnu_go_learnersУченикиrefresh_btnОбновитьhelp_btnПомощьrefresh_btn_tooltipОбновить пользовательскую информацию.al_alertПредупреждениеal_cancelОтменитьal_confirmПодтвердитьapp_chk_langloadЯзыковые данные загружены неудачноapp_chk_themeloadДанные для темы загружены неудачноapp_fail_continueПрограмма завершит работу. Пожалуйста, свяжитесь со службой поддержки.db_datasend_confirmСпасибо за то, что послали данные на серверmnu_editРедактироватьmnu_edit_copyКопироватьmnu_edit_cutВырезатьmnu_edit_pasteВставитьmnu_fileФайлmnu_file_refreshОбновитьmnu_file_editclassРедактировать классbranch_mapping_dlg_group_col_lblГруппаmnu_go_sequenceПоследовательностьcv_activity_helpURL_undefinedНет справки для {0}cv_design_unsaved_live_editНесохраненные изменения будут автоматически сохранены. Желаете ли вы продолжить вставку/слияние?mtab_lessonУрокmtab_seqПоследовательностьmtab_learnersУченикиls_status_lblСтатус:ls_learners_lblУченики:ls_class_lblКласс:ls_manage_class_lblКласс:ls_manage_editclass_btnРедактировать классls_manage_apply_btnПрименитьls_manage_schedule_btnРасписаниеls_manage_start_btnСтартовать сейчасls_manage_date_lblДатаls_manage_status_cmbВыберите статус:ls_status_cmb_activateАктивироватьls_status_cmb_disableДеактивироватьls_status_cmb_enableАктивноls_status_cmb_archiveАрхивls_status_active_lblСоздано, но еще запущенls_status_disabled_lblНеактивноls_status_archived_lblАрхивныйls_status_started_lblЗапущенныйls_win_editclass_titleРедактировать классls_win_learners_titleПросмотр учениковmnu_viewВидls_win_editclass_save_btnСохранитьls_win_editclass_staff_lblСотрудникиls_win_editclass_learners_lblУченикиls_win_learners_heading_lblУченики в классе:sys_error_msg_finishЧтобы продолжить работу, перезапустите, пожалуйста, Редактор заданий. Желаете ли Вы сохранить информацию о произошедщей ошибке, чтобы помочь решить ее в будущем?ccm_monitor_activityОткрыть мониторинг заданияccm_monitor_view_condition_mappingsПосмотреть соотвествия Ветвей Условиямccm_monitor_view_group_mappingsПосмотреть соотвествия Ветвей Группамtitle_sequencetab_endGateЗавершили:ls_seq_status_perm_gateРазрешение учителяls_seq_status_synch_gateСинхронизацияal_doubleclick_todoactivityИзвините, но ученик {0} еще не достиг {1} заданияls_remove_confirm_msgВы нажали Удалить этот урок. Удаленные уроки не могут быть восстановлены. Продолжить?ls_remove_warning_msgВНИМАНИЕ: Урок будет удален. Желаете ли вы сохранить его?mv_search_index_view_btn_lblИндекс страницls_seq_status_moderationАрбитражls_seq_status_define_laterОпределить позжеls_seq_status_choose_groupingРаспределить по группамls_seq_status_contributionСделатьls_seq_status_teacher_branchingОснованное на решении учителяls_manage_schedule_btn_tooltipЗапланировать старт урока на заданное времяcurrent_act_tooltipДважды нажмите мышью, чтобы посмотреть текущее состояние задания у пользователяcompleted_act_tooltipДважды нажмите мышью, чтобы посмотреть завершенные задания у пользователяal_validation_schtimeВведите, пожалуйста, правильное время.learner_viewJournals_btnЗаписиlearner_viewJournals_btn_tooltipПросмотреть все записи, сделанные пользователемlearner_exportPortfolio_btn_tooltipЭкспортировать и сохранить портфолио пользователя для дальнейщих обращений к немуls_manage_editclass_btn_tooltipРедактировать список пользователей и сотрудников, прикрепленных к этому уроку.label.grouping.general.instructions.branchingВы не можете добавлять или удалять группы в это групповое задание, так как оно используется в Разветвлении, а добавление или удаление новых групп повлечет за собой изменение настроек соотвествий ветвей группам. Вы можете только добавлять или удалять пользователей в уже существующие группы.al_activity_view_competence_mappings_invalidПожалуйста, убедитесь, что вы выбрали задание перед просмотром знаний.order_learners_by_completion_lblУпорядочить по факту завершенияlearners_group_name{0} ученикиls_manage_start_lblСтарт:view_competences_dlgПросмотреть знанияview_competences_in_ld_lblЗнания в учебных шаблонах: {0}view_act_mapped_competencesПросмотреть определенные знанияmapped_competences_lblОпределенные знанияcompetence_title_lblЗаголовокcompetence_desc_lblОписаниеls_manage_presenceEnabled_lblРазрешить ученикам видеть кто находится онлайнls_confirm_presence_enabledС данного момента ученики могут видеть кто находится онлайнls_confirm_presence_disabledС данного момента ученики не могут видеть кто находится онлайнls_win_learners_heading_class_lblКлассls_win_learners_heading_activity_lblЗаданиеlearner_plus_tooltip{0} учеников. Щелкните два раза для просмотра полного списка.view_time_graph_btnПросмотр временного графикаview_time_graph_btn_tooltipПросмотреть график успеваемости выбранных студентов по времени, потраченном на каждое заданиеview_time_chart_btnПросмотр временной диаграммыview_time_chart_btn_tooltipПросмотреть диаграмму успеваемости выбранных студентов по времени, потраченном на каждое заданиеclass_exportPortfolio_btn_tooltipЭкспортировать и сохранить портфолио всего класса для дальнейщих обращений к немуal_confirm_forcecomplete_to_end_of_branching_seqВы желаете принудительно завершить эту разветвляющуюся последовательность у ученика '{0}'?support_act_titleВспомогательное заданиеal_error_forcecomplete_support_actНевозможно принудительно завершить вспомогательные задания у ученикаmsg_no_learners_in_lessonОдин или более учеников должны быть отмеченыls_manage_presenceImEnabled_lblРазрешить обмен сообщениямиls_confirm_presence_im_enabledОбмен сообщениями включенls_confirm_presence_im_disabledОбмен сообщениями отключен \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/sv_SE_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertPåminnelseGeneric title for Alert windowal_cancelAvbrytTo Confirm title for LFErroral_confirmBekräftaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSpråkdata har inte laddats inmessage for unsuccessful language loadingapp_chk_themeloadTemadata har inte laddats inmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan inte fortsätta. Var snäll och kontakta supporten. message if application cannot continue due to any errordb_datasend_confirmTack för att du skickar data till servern. Message when user sucessfully dumps data to the servermnu_editRedigeraMenu bar Editmnu_edit_copyKopieraMenu bar Edit &gt; Copymnu_edit_cutKlippMenu bar Edit &gt; Cutmnu_edit_pasteKlistraMenu bar Edit &gt; Pastemnu_fileFilMenu bar Filemnu_file_refreshÅterställMenu bar Refreshmnu_file_editclassRedigera klassMenu bar Edit Classmnu_file_startStartaMenu bar Startmnu_helpHjälpMenu bar Helpmnu_help_abtOmMenu bar Aboutperm_act_lblTillståndLabel for permission gate activitysched_act_lblSchemaläggLabel for schedule gate activitysynch_act_lblSynkroniseraUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAvbryt2ws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_tree_mywspMin arbetsytaThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacesys_error_msg_startFöljande systemfel har inträffat:Common System error message starting linesys_error_msg_finishDet kan bli nödvändigt att starta om LAMS Författare för stt det ska gå att fortsätta. Vill du spara den följande informationen om detta fel i syfte att hjälpa till att åtgärda det?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titlemnu_file_scheduleSchemaMenu bar Schedulemnu_file_exitAvslutaMenu bar Exitmnu_view_learnersLärande...Menu bar Learnersmnu_goMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_scheduleSchemaMenu bar Go to Schedule Tabmnu_go_learnersLärandeMenu bar Go to Learners Tabmnu_go_todoAtt göraMenu bar Todomnu_help_helpHjälpMenu bar Help itemrefresh_btnÅterställRefresh buttonhelp_btnHjälpHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSekvensMonitor Sequence tabmtab_learnersLärandeMonitor Learners tabmtab_todoAtt göra Monitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblLärande:Learner label - Lesson detailsls_class_lblKlass:Class label - Lesson detailsls_manage_class_lblKlass:Class managing label - Lesson detailsls_manage_status_lblStatus:Status managing label - Lesson detailsls_manage_start_lblStarta:Start managing label - Lesson detailsls_manage_learners_btnVisa lärandeView learners button - Lesson details (manage section)ls_manage_editclass_btnRedigera klassEdit class button - Lesson details (manage section)ls_manage_apply_btnTillämpaStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnSchemaSchedule start button - Lesson details (manage section)ls_manage_start_btnStarta nuStart immediately button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblHar pågått under:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbVälj status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktiveraLesson status option - Activatels_status_cmb_disableAvaktiveraLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkivLesson status option - Archivels_status_active_lblAktivCurrent status description if active (enabled)ls_status_disabled_lblAvbrutenCurrent status description if suspended (disabled)ls_status_archived_lblArkiveradCurrent status description if archviedls_status_started_lblStartadCurrent status description if started (enabled)ls_win_editclass_titleRedigera klassEdit class window titlels_win_learners_titleVisa lärandeView learners window titlemnu_viewVisaMenu bar Viewls_win_editclass_save_btnSparaSave button on Edit Class popupls_win_editclass_cancel_btnAvbrytCancel button on Edit Class popupls_win_learners_close_btnStängClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblPersonalHeading for Staff list on Edit Class popupls_win_editclass_learners_lblLärandeHeading for Learners list on the Edit Class popupls_win_learners_heading_lblLärande i klassen:Heading on View Learners window panel.td_desc_headingAvancerade kontroller:Todo tab description headingtd_desc_textAnvänd den här fliken 'Att göra' för att fullfölja sekvensen. Se hjälpsidan för mer info.<br /><br />Den här egenskapen är nu fullt fungerande. Todo tab descriptionopt_activity_titleValfri aktivitetTitle for Optional Activity on canvas (monitoring)lbl_num_activities'barn'-aktiviteterNumber of child activities for Complex activity shown on canvas.ls_of_textavi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtAdministrera lektionHeading for Management section of Lesson Tabls_tasks_txtObligatoriska uppgifterHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGo button on contribute entry itemlearner_exportPortfolio_btnExportera portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblSchemalagdLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityÄr du säker på att du vill tvinga lärande '{0}' vidare till aktivitet '{1]'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityDu har 'släppt' lärande '{0}' antingen på dennes aktuella eller dennes fullföljda aktivitet. Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishÄr du säker på att du vill tvinga lärande '{0}' till lektionens slut?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetVar snäll och 'släpp' lärande '{0}' på en aktivitet eller i slutet på en lektion. Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateLärande som har avslutat:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipFullfölj den här uppgiften nutool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHjälptool tip message for help button in toolbarrefresh_btn_tooltipLadda om de senaste datana för de lärandes progressiontool tip message for the refresh buttonls_manage_editclass_btn_tooltipRedigera listan över de lärande och den personal som har tilldelats denna lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipVisa alla de lärande som har tilldelats denna lektiontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipÄndra status på den här lektionen baserat på urvalet för 'nedsläpp'.tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportera klassens portfolio och spara den på din dator för framtida referens.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportera den här portfolion för lärande och spara den på din dator för framtida referens.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipStarta lektionen omedelbarttool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipSchemalägg lektionen så att den ska starta vid ett tillfälle i framtidentool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDubbelklicka för att granska de bidrag som är på gång i den lärandes aktuella aktivitettool tip message for current activity iconcompleted_act_tooltipDubbelklicka för att granska bidragen i den lärandes fullföljda aktivitet. tool tip message for completed activity iconal_doubleclick_todoactivityLärande: {0} har tyvärr inte nått aktivitet: {1}, ännu. alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartInget datum sparades. Var snäll och välj ett datum och en tid.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTid (timmar : minuter)Time fields title - Lesson details (manage section)al_validation_schtimeVar snäll och mata in en giltig tidAlert message when user enters an invalid time for schedule startfinish_learner_tooltipFör att tvinga en lärande att fullfölja och gå till lektionens slut så ska Du dra den lärandes ikon över till den här raden och sedan släpper Du ikonen. Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityÖppna monitorering av aktivetetLabel for Custom Context Monitor Activityccm_monitor_activityhelpHjälp för monitorering av aktivetetLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnInlägg i journalenLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVisa alla de inlägg i journalerna som de lärande har sparat.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblLärande URL:Learner URL:ls_manage_learnerExpp_lblAktivera export av portfolio för lärande.Label for Enable export portfolio for Learnerls_confirm_expp_enabled Export av portfolio för lärande har nu aktiverats. Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled Export av portfolio för lärande har nu avaktiverats. Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgDu har valt att 'Ta bort' den här lektionen. Det går inte att återställa borttagna lektioner. Vill du fortsätta?remove confirm msgls_status_cmb_removeTa bortLesson status option - Removels_status_removed_lblBorttagenCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNej'No' on the alert dialogls_remove_warning_msgVarning! Du håller på att ta bort lektionen, Vill du behålla och arkivera den?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} lärandeGroup name for the class's learners group.staff_group_name{0} personalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/tr_TR_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_win_editclass_save_btnKaydetSave button on Edit Class popupabout_popup_license_lblBu program üzretsiz bir yazılımdır; dağıtabilir ve/veya Free Softvare Foundation tarafından yayınlanan GNU General Public Licence version 2 şartları altında değiştirebilirsiniz. Label displaying the license statement in the About dialog.stream_urlhttp://{0}foundation.orgURL address for the application stream.learner_viewJournals_btn_tooltipÖğrencilerin kaydettiği günlük mesajlarının tümünü göster.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.branch_mapping_dlg_condition_col_lblKoşulColumn heading for showing condition description of the mapping.learner_exportPortfolio_btn_tooltipBu öğrencinin portfolyosunu dışa aktarıp bilgisayarınıza kaydeder.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referenceclass_exportPortfolio_btn_tooltipDersin portfolyosunu dışa aktarır ve ileride kullanılmak üzere bilgisayarınıza kaydeder.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computercv_design_unsaved_live_editKaydedilmeyen değişiklikler otomatik olarak kaydedilecek. Ekle/birleştir ile devam etmek istiyor musunuz?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.al_validation_schtimeLütfen geçerli bir zaman giriniz.Alert message when user enters an invalid time for schedule startview_competences_dlgYetkileri görüntüleAllows you to view all the competences within a learning designview_act_mapped_competencesHaritalanmış yetkileri görüntüleAllows you to view competences mapped to a particular activityccm_monitor_view_condition_mappingsKoşullara olan dallanmaları gösterLabel for Custom Context View Condition Mappingsccm_monitor_view_group_mappingsGrup dallanmalarını gösterLabel for Custom Context View Group Mappingsls_manage_learners_btnÖğrenci görüntüleView learners button - Lesson details (manage section)ls_win_learners_titleÖğrenenleri görüntüleView learners window titlemnu_viewGörünümMenu bar Viewmv_search_index_view_btn_lblDizin görünümüWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.al_activity_view_competence_mappings_invalidYetkileri gmrüntülemeden önce bir etkinlik seçtiğinizden emin olunuz.Warning that appears when no activity is selected when the user tries to view competence mappingscurrent_act_tooltipÖğrencinin şimdiki etkinliğine katılımını gözlemek için çift tıklayınız.tool tip message for current activity iconcompleted_act_tooltipÖğrencilerin tamamladığı etkinlikleri görmek için çift tıklayınız.tool tip message for completed activity iconal_cancelİptalTo Confirm title for LFErrorws_dlg_cancel_buttonİptal2learner_exportPortfolio_btnPortfolyo kaydetLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_manage_learnerExpp_lblÖğrenci için portfolyo dışa aktarmayı etkinleştirLabel for Enable export portfolio for Learnerls_confirm_expp_enabledPortfolyo dışa aktarma etkinleştirildi.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledPortfolyo dışa aktarmayı devreden çıkarConfirmation message on disabling export portfolio for learnersls_win_editclass_organisation_lblOrganizasyonHeading for Organisation tree on Edit Class popupal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorapp_chk_langloadDil bileşenleri yüklenmedimessage for unsuccessful language loadingapp_chk_themeloadTema bileşenleri yüklenmedimessage for unsuccessful theme loadingapp_fail_continueUygulamaya devam edilemiyor. Destek için iletişime geçiniz.message if application cannot continue due to any errordb_datasend_confirmSunucuya gönderdiğiniz veri için teşekkürler.Message when user sucessfully dumps data to the servermnu_editDüzenleMenu bar Editmnu_edit_copyKopyalaMenu bar Edit &gt; Copymnu_edit_cutKesMenu bar Edit &gt; Cutmnu_edit_pasteYapıştırMenu bar Edit &gt; Pastemnu_fileDosyaMenu bar Filemnu_file_refreshYenileMenu bar Refreshmnu_file_editclassDers düzenleMenu bar Edit Classmnu_file_startBaşlaMenu bar Startmnu_helpYardımMenu bar Helpmnu_help_abtHakkındaMenu bar Aboutperm_act_lblİzinLabel for permission gate activitymv_search_not_found_msg{0} bulunamadıThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblSayfa {0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblGitIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.ls_seq_status_moderationEtkinlik yönetDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_perm_gateİzin kapısıA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_choose_groupingGruplamayı seçAllows the Teacher to add the learners to chosen groupsls_seq_status_system_gateSistem kapısıA System Gate is a stop point that can be controlled by time setting or user controlws_RootAna dizinRoot folder title for workspacews_tree_mywspÇalışma AlanımThe root level of the treesys_error_msg_startBir sistem hatası oluştu.Common System error message starting linesys_errorSistem hatasıSystem Error elert window titlemnu_file_exitÇıkışMenu bar Exitmnu_goGitMenu bar Gomnu_go_lessonDersMenu bar Go to Lesson Tabrefresh_btnYenileRefresh buttonhelp_btnYardımHelp buttonmtab_lessonDersMonitor Lesson details tabmtab_seqSıralamaMonitor Sequence tabls_status_lblDurumStatus label - Lesson detailsls_manage_start_lblBaşlaStart managing label - Lesson detailsls_manage_editclass_btnSınıfı düzenleEdit class button - Lesson details (manage section)ls_manage_apply_btnUygulaStatus Apply button - Lesson details (manage section)ls_manage_start_btnŞimdi başlaStart immediately button - Lesson details (manage section)ls_manage_date_lblTarihDate field title - Lesson details (manage section)ls_manage_status_cmbDurum seçStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateEtkinleştirLesson status option - Activatels_status_cmb_disablePasifLesson status option - Disable (suspend)ls_status_cmb_enableAktifLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArşivLesson status option - Archivels_status_active_lblOluşturuldu ancak başlatılmadıCurrent status description if active (enabled)ls_status_disabled_lblPasifCurrent status description if suspended (disabled)ls_status_archived_lblArşivlendiCurrent status description if archviedls_status_started_lblBaşladıCurrent status description if started (enabled)ls_win_editclass_titleSınıfı düzenleEdit class window titlels_win_learners_close_btnKapatClose button on View Learners popupls_win_editclass_learners_lblÖğrencilerHeading for Learners list on the Edit Class popupls_win_learners_heading_lblSınıftaki öğrencilerHeading on View Learners window panel.td_desc_headingGelişmiş kontrollerTodo tab description headingopt_activity_titleSeçmeli EtkinlikTitle for Optional Activity on canvas (monitoring)lbl_num_activities{0} - EtkinliklerNumber of child activities for Complex activity shown on canvas.ls_manage_txtDersi yönetHeading for Management section of Lesson Tabls_tasks_txtYapılması gereken görevlerHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGitGo button on contribute entry itemal_sendGönderSend button label on the system error dialogal_validation_schstartTarih seçilmedi. Lütfen tarih ve zaman seçiniz.Message when no date is selected for starting a lesson by schedule.title_sequencetab_endGateBitiren öğrencilerTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_learnerURL_lblÖğrenci URL'siLearner URL:goContribute_btn_tooltipBu görevi şimdi tamamlatool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipYardımtool tip message for help button in toolbarls_manage_editclass_btn_tooltipBu derse kayırlı öğrencileri düzenler ve izler.tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipBu derse kayıtlı öğrencileri gösterir.tool tip message for the view learners button in lesson tab under manage lesson sectionls_class_lblSınıfClass label - Lesson detailsls_manage_class_lblSınıfClass managing label - Lesson detailsls_manage_status_lblDurum değiştirStatus managing label - Lesson detailsls_win_editclass_cancel_btnİptalCancel button on Edit Class popupls_duration_lblGeçen zamanElapsed duration of lesson - Lesson detailsccm_monitor_activityhelpEtkinlik yardımını izleLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnGünlük mesajlarıLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learners_group_name{0} öğrenciGroup name for the class's learners group.ls_remove_confirm_msgBu dersi kaldırmayı seçtiniz. Bu işlemi tekrar geri lamazsınız. devam etmek istiyor musunuz?remove confirm msgcontinue_btnDevam etContinue button labelmsg_bubble_check_action_lblKontrol ediliyor...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblGerçekleştirilemedi, tekrar deneyiniz.Label displayed when check failed i.e. lesson is still locked.branch_mapping_dlg_branch_col_lblDallanmaColumn heading for showing sequence name of the mapping.branch_mapping_dlg_group_col_lblGrupColumn heading for showing group name of the mapping.mnu_go_sequenceSıralamaMenu bar Go to Sequence Tabcv_activity_helpURL_undefined{0}'ın yardım sayfası bulunamıyor.Alert message when a tool activity has no help url defined.al_doubleclick_todoactivityÜzgünüm, öğrenci {0} henüz etkinliğe erişmedialert message when user double click on the todo activity in the sequence under learner tabls_status_cmb_removeKaldırLesson status option - Removels_status_removed_lblKaldırıldıCurrent status description if deleted (removed) lesson.al_yesEvetYes on the alert dialogal_noHayır'No' on the alert dialogls_remove_warning_msgUYARI: Ders kaldırılmak üzere. Bu dersi saklamak istiyor musunuz?Message for the alert dialog which appears following confirmation dialog for removing a lesson.check_avail_btnKullanılabilirliğini kontrol et.Check Availability button labelabout_popup_title_lbl{0} hakkındaTitle for the About Pop-up window.about_popup_version_lblSürümLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2008 {0} Foundation. Label displaying copyright statement in About dialog.ls_manage_start_btn_tooltipDersi hemen başlattool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessongpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.mtab_learnersÖğrencilerMonitor Learners tabls_learners_lblÖğrencilerLearner label - Lesson detailsls_of_textin i.e. 1 of 10 Used for showing how many learners have startedccm_monitor_activityEtkinlik izlemeyi açLabel for Custom Context Monitor Activityclose_mc_tooltipSimge durumuna küçültTooltip message for close button on Branching canvas.ls_seq_status_define_laterDaha sonra tanımlaOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_continue_lblHi {1}, düzenlemeyi bitirmediniz.Continue message labelstream_reference_lblLAMSReference label for the application stream.mv_search_default_txtAnahtar kelime veya sayfa numarası giriniz.The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.ls_manage_time_lblZaman (Saat:dakika)Time fields title - Lesson details (manage section)ls_seq_status_teacher_branchingÖğretmen seçimli dallanmaA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_setHenüz kurulmadıThe value of the sequence's status is not setal_activity_openContent_invalidÜzgünüm! Etkinlik sağ menüsündeki Etkinlik içeriği Aç/Düzenle maddesine tıklamadan önce etkinliği seçmek zorundasınız. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvassched_act_lblTakvimLabel for schedule gate activitymnu_file_scheduleTakvimMenu bar Schedulemnu_go_scheduleTakvimMenu bar Go to Schedule Tabmnu_go_learnersÖğrencilerMenu bar Go to Learners Tabls_manage_schedule_btnTakvimSchedule start button - Lesson details (manage section)synch_act_lblSenkronize etUsed as a label for the Synch Gate Activity Typews_dlg_location_buttonKonumWorkspace dialogue Location btn labelmnu_view_learnersÖğrenciler..Menu bar Learnersls_locked_msg_lblÜzgünüm, {0} şuan {1} tarafından düzenleniyor.Warning message on Monitor locked screen.ls_continue_action_lblDevam etmek için {0}'a tıklayınız.Action label displayed when a user can proceed to Live Edit.ls_manage_apply_btn_tooltipAçılır menü ile bu dersin durumunu değiştirir.tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statustd_desc_textBu sekmenin kullanımı akışı tamamlamanızı gerektirmez. Daha fazla bilgi için yardım sayfasına bakınız. Bu özellik tüm işlevleriyle çalışıyor.Todo tab descriptional_confirm_forcecomplete_to_end_of_branching_seqÖğrenci {0}'ı dallanma sıralamasını sonuna göndermek istediğinizden emin misiniz?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_manage_schedule_btn_tooltipDersi belirlenen tarihte başlatmak üzere takvim oluşturur.tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timemnu_help_helpİzleme yardımMenu bar Help itemws_tree_orgsOrganizasyonShown in the top level of the tree in the workspacestaff_group_name{0} izleyiciGroup name for the class's staff group.al_confirm_live_editÇalışırken düzenle'yi açmak üzeresiniz. Devam etmek istiyor musunuz?Confirm warning (dialog) message displayed when opening Live Edit.mnu_go_todoYapMenu bar Todomtab_todoYapMonitor Todo tabal_error_forcecomplete_notargetLütfen öğrenci {0}'ı bir etkinliğin üzerine veya dersin sonuna bırakınız.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasrefresh_btn_tooltipÖğrenciler için son değişimleri yüklertool tip message for the refresh buttonbranch_mapping_dlg_conditions_dgd_lblHaritalamaHeading label for Mapping datagrid.mv_search_error_msgLütfen 1 ve {0} arasında bir sayfa sayısı veya anahtar kelime girerek sorgulama yapınız.This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgSayfa numarası 1 ile {0} arasında olmalıdır.This error message appears if the number entered by the user lies outside the range of viewable pages.al_confirm_forcecomplete_toactivityÖğrenci '{0}' ı Etkinlik {1}'i yapmaya zorlamak istediğinizden emin misiniz?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityÖğrenci {0}'ı şuanki etkinliğine veya tamamladığı etkinlik {1}'e bıraktınız.Error message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_to_different_seq{0} farklı bir sıralama veya dallanmadaki etkinliğe bırakılamaz.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_win_editclass_staff_lblİzlemeHeading for Staff list on Edit Class popupls_seq_status_contributionKatılımAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.finish_learner_tooltipÖğrenciyi dersi tamamlamaya zorlamak için öğrenci simgesini bu çubuğa sürükleyiniz ve bırakınız.Rollover message when user moves their mouse over the end gate bar in monitor tab viewlabel.grouping.general.instructions.branchingGrubun dallanmasını etkileyeceğinden bu gruplamaya grup ekleyip kaldıramazsınız. Sadece varolan gruplara kullanıcıekleyip kaldırabilirsiniz.Third instructions paragraph on the chosen branching screen.ls_sequence_live_edit_btn_tooltipBu ders için geçerli tasarımı düzenler.Tool tip message for Live Edit buttonls_sequence_live_edit_btnCanlı düzenleLive Edit buttonls_seq_status_sched_gateKapıyı programlaA type of Gate Activity where progress depends on time (start time and/or end time)ls_seq_status_synch_gateSenkronize kapısıA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_status_scheduled_lblZaman çizelgesi oluşturuldu.Lesson status option - Scheduled (Not Started)mapped_competences_lblHaritalanmış yetkikerTitle for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lblYetkiler {0}'a haritalandı.Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lblBaşlıkCompetence Title label in Mapped Competences dialogview_competences_in_ld_lblÖğrenme tasarımındaki yetkiler: {0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentcompetence_desc_lblAçıklamaCompetence Description label in Mapped Competences dialogal_okTamamOK on the alert dialogorder_learners_by_completion_lblDersi tamamlama sürecini öğrenciye göster.Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lblÖğrencilerin çevrimiçi kişileri görmesine izin ver.ls_manage_presenceEnabled_lblls_confirm_presence_enabledÖğrencileri çevrimiçi kişileri göremeyecekler.ls_confirm_presence_enabledls_confirm_presence_disabledÖğrencileri çevrimiçi kişileri görebilecekler.ls_confirm_presence_disabledal_confirm_forcecomplete_tofinishÖğrenci {0}'ı dersi bitirmeye zorlamak istediğinizden emin misiniz?Message to get confirmation from user before sending data to server for force complete to the end of lessonlbl_num_sequences{0} - AkışlarNumber of child sequence or Optional Sequences activity shown on canvas.sys_error_msg_finishDevam etmek için LAMS tasarımı yeniden başlatmalısınız. Problemin giderilmesinde yardımcı olmak için hata bilgisini kaydetmek ister misiniz?Common System error message finish paragraphabout_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ls_win_learners_heading_class_lblSınıfHeading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lblEtkinlikHeading on View Learners window panel (learners at activity).learner_plus_tooltip{0} öğrenci. Tüm listeyi görmek için çift tıklayınız.Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/vi_VN_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertCảnh báoGeneric title for Alert windowal_cancelHủyTo Confirm title for LFErroral_confirmXác nhậnTo Confirm title for LFErroral_okChấp nhậnOK on the alert dialogapp_chk_langloadDữ liệu ngôn ngữ không được đưa lênmessage for unsuccessful language loadingapp_chk_themeloadTodomessage for unsuccessful theme loadingapp_fail_continueChương trình không thể tiếp tục. Hãy liên hệ hỗ trợmessage if application cannot continue due to any errordb_datasend_confirmCảm ơn đã gửi dữ liệu tới máy chủMessage when user sucessfully dumps data to the servermnu_editSửaMenu bar Editmnu_edit_copySao chépMenu bar Edit &gt; Copymnu_edit_cutCắtMenu bar Edit &gt; Cutmnu_edit_pasteDánMenu bar Edit &gt; Pastemnu_fileTệp tinMenu bar Filemnu_file_refreshHồi phụcMenu bar Refreshmnu_file_editclassĐiều chỉnh lớpMenu bar Edit Classmnu_file_startBắt đầuMenu bar Startmnu_helpTrợ giúpMenu bar Helpmnu_help_abtGần nhưMenu bar Aboutperm_act_lblCho phépLabel for permission gate activitysched_act_lblThời gian biểuLabel for schedule gate activitysynch_act_lblĐồng bộUsed as a label for the Synch Gate Activity Typews_RootGốcRoot folder title for workspacews_dlg_cancel_buttonHủy2ws_dlg_location_buttonVị tríWorkspace dialogue Location btn labelws_tree_mywspKhông gian làm việc của tôiThe root level of the treews_tree_orgsTổ chứcShown in the top level of the tree in the workspacesys_error_msg_startĐã xảy ra lỗi hệ thống sauCommon System error message starting linesys_error_msg_finishBạn có thể phải khởi động lại Module soạn giảng của LAMS để tiếp tục. Bạn có muốn lưu thông tin dưới đây về lỗi này để trợ giúp khắc phục lỗi này?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titlemnu_file_scheduleThời gian biểuMenu bar Schedulemnu_file_exitKết thúcMenu bar Exitmnu_view_learnersNgười họcMenu bar Learnersmnu_goTiếp tụcMenu bar Gomnu_go_lessonBài họcMenu bar Go to Lesson Tabmnu_go_scheduleThời gian biểuMenu bar Go to Schedule Tabmnu_go_learnersNgười họcMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpTrợ giúp theo dõiMenu bar Help itemrefresh_btnPhục hồiRefresh buttonhelp_btnTrợ giúpHelp buttonmtab_lessonbài họcMonitor Lesson details tabmtab_seqChuỗiMonitor Sequence tabmtab_learnersNgười họcMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblTrạng tháiStatus label - Lesson detailsls_learners_lblNgười họcLearner label - Lesson detailsls_class_lblLớp họcClass label - Lesson detailsls_manage_class_lblLớp họcClass managing label - Lesson detailsls_manage_status_lblThay đổi trạng tháiStatus managing label - Lesson detailsls_manage_start_lblBắt đầuStart managing label - Lesson detailsls_manage_learners_btnXem người họcView learners button - Lesson details (manage section)ls_manage_editclass_btnĐiều chỉnh lớp họcEdit class button - Lesson details (manage section)ls_manage_apply_btnĐăng kýStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnThời gian biểuSchedule start button - Lesson details (manage section)ls_manage_start_btnBắt đầu Start immediately button - Lesson details (manage section)ls_manage_date_lblNgàyDate field title - Lesson details (manage section)ls_duration_lblKhoảng thời gian mà hoạt động đã diễn raElapsed duration of lesson - Lesson detailsls_manage_status_cmbLựa chọn trạng tháiStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateTrạng thái hoạt độngLesson status option - Activatels_status_cmb_disableVô hiệu hóaLesson status option - Disable (suspend)ls_status_cmb_enableHoạt độngLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveLưu trữLesson status option - Archivels_status_active_lblTạo nhưng không bắt đầuCurrent status description if active (enabled)ls_status_disabled_lblHoãnCurrent status description if suspended (disabled)ls_status_archived_lblLưu trữCurrent status description if archviedls_status_started_lblBắt đầuCurrent status description if started (enabled)ls_win_editclass_titleĐiều chỉnh lớp họcEdit class window titlels_win_learners_titleXem người họcView learners window titlemnu_viewXem Menu bar Viewls_win_editclass_save_btnLưuSave button on Edit Class popupls_win_editclass_cancel_btnHủyCancel button on Edit Class popupls_win_learners_close_btnĐóngClose button on View Learners popupls_win_editclass_organisation_lblTổ chứcHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblNhân viênHeading for Staff list on Edit Class popupls_win_editclass_learners_lblNgười họcHeading for Learners list on the Edit Class popupls_win_learners_heading_lblHọc viên trong lớpHeading on View Learners window panel.td_desc_headingKiểm soát nâng caoTodo tab description headingtd_desc_textTab Todo không được yêu cầu để hoàn thành chuỗi này. Xem trợ giúpTodo tab descriptionopt_activity_titleHoạt động tùy chọnTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesHoạt động conNumber of child activities for Complex activity shown on canvas.ls_of_textThuộc vềi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtQuản lý bài họcHeading for Management section of Lesson Tabls_tasks_txtNhiệm vụ yêu cầuHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnTiếp tụcGo button on contribute entry itemlearner_exportPortfolio_btnXuất kết quả học tậpLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblThời gian biểuLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityBạn có chắc chắn muốn sắp xếp những học viên hoàn thành '{0}' vào hành động '{1}' ? Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityBạn muốn đặt học viên '{0}' tại hoạt động hiện tại hay lên hoạt động đã hoàn thành '{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishBạn có chắc chắn muốn sắp xếp học viên hoàn tất bài học '{0}' về cuối bài họcMessage to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetHãy đặt học viên '{0}' lên 1 hoạt động hoặc về cuối bài họcError Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateNhững người học đã kết thúcTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipHoàn tất nhiệm vụtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipTrợ giúptool tip message for help button in toolbarrefresh_btn_tooltipNạp lại dữ liệu mới nhất cho người họctool tip message for the refresh buttonls_manage_editclass_btn_tooltipĐiều chỉnh danh sách học viên và nhân viên được gán cho lớp học nàytool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipHiển thị tất cả học viên gán cho lớp học nàytool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipThay đổi trạng thái bài học dựa trên sự lựa chọn giảm xuốngtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipXuất kết quả học tập của lớp học và lưu nó trên máy tính của bạn để xem sautool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipXuất kết quả học tập của học viên này và lưu nó trên máy tính của bạn để xem sautool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipBắt đầu bài học này ngaytool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipLịch bài giảng sautool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipKichk đúp để xem trước quá trình cung cấp cho hoạt động hiện tại của học viêntool tip message for current activity iconcompleted_act_tooltipKích đúp để xem trước sự cung cấp đối với các họat động hoàn thành cảu học viêntool tip message for completed activity iconal_doubleclick_todoactivityXin lỗi, học viên: {0} đã không đi đến hoạt động {1}alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartBạn chưa lựa chọn ngày. Hãy chọn 1 ngày và thời gianMessage when no date is selected for starting a lesson by schedule.ls_manage_time_lblThời gian (Giờ: Phút)Time fields title - Lesson details (manage section)al_validation_schtimeHãy nhập vào thời gian hợp lýAlert message when user enters an invalid time for schedule startfinish_learner_tooltipĐể hoàn tất việc sắp xếp học viên tới cuối bài học, kéo biểu tượng học viên qua thanh này và thả biểu tượng đóRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityMở hoạt động theo dõiLabel for Custom Context Monitor Activityccm_monitor_activityhelpTrợ giúp hoạt động theo dõiLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnNhật ký đăng nhậpLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipXem tất cả nhật ký đăng nhập được lưu bởi học viêntool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL của học viênLearner URL:ls_manage_learnerExpp_lblCó thể xuất kết quả học tập cho học viênLabel for Enable export portfolio for Learnerls_confirm_expp_enabledBây giờ có thể xuất kết quả học tập cho học viênConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledBây giờ không thể xuất kết quả học tập cho học viênConfirmation message on disabling export portfolio for learnersls_remove_confirm_msgBạn vừa chọn bỏ đi bài học này. Bài học được bỏ đi sẽ không thể lấy lại được. Tiếp tục?remove confirm msgls_status_cmb_removeGõ bỏLesson status option - Removels_status_removed_lblĐã gỡ bỏCurrent status description if deleted (removed) lesson.al_yesYes on the alert dialogal_noKhông'No' on the alert dialogls_remove_warning_msgCảnh báo : Bài học sẽ được bỏ đi. Bạn có muốn giữ bài học này dưới dạng văn thư không?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} Học viênGroup name for the class's learners group.staff_group_name{0} Giảng viênGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/zh_CN_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alert警惕Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm确定To Confirm title for LFErroral_okOK on the alert dialogapp_chk_langload语言数据没有被装载message for unsuccessful language loadingapp_chk_themeload题目数据没有被装载message for unsuccessful theme loadingapp_fail_continue请求不能继续。请联系技术支持。message if application cannot continue due to any errordb_datasend_confirm谢谢您向服务器传送数据Message when user sucessfully dumps data to the servermnu_edit编辑Menu bar Editmnu_edit_copy复制Menu bar Edit &gt; Copymnu_edit_cut剪切Menu bar Edit &gt; Cutmnu_edit_paste粘贴Menu bar Edit &gt; Pastemnu_file文件Menu bar Filemnu_file_refresh刷新Menu bar Refreshmnu_file_editclass编辑类Menu bar Edit Classmnu_file_start开始Menu bar Startmnu_help帮助Menu bar Helpmnu_help_abt关于Menu bar Aboutperm_act_lbl允许Label for permission gate activitysched_act_lbl时间表Label for schedule gate activitysynch_act_lbl同步Used as a label for the Synch Gate Activity Typews_RootRoot folder title for workspacews_dlg_cancel_button取消2ws_dlg_location_button位置Workspace dialogue Location btn labelws_tree_mywsp我的工作空间The root level of the treews_tree_orgs组织Shown in the top level of the tree in the workspacesys_error_msg_start发生了一个系统错误Common System error message starting linesys_error_msg_finish你需要重新启动LAMS设计来继续。你向保存下列有关这个错误的信息来帮助解决这个问题吗?Common System error message finish paragraphsys_error系统错误System Error elert window titlemnu_file_schedule时间表Menu bar Schedulemnu_file_exit退出Menu bar Exitmnu_view_learners学习者Menu bar Learnersmnu_go前进Menu bar Gomnu_go_lesson课程Menu bar Go to Lesson Tabmnu_go_schedule时间表Menu bar Go to Schedule Tabmnu_go_learners学习者Menu bar Go to Learners Tabmnu_go_todo去做Menu bar Todols_manage_editclass_btn编辑班级Edit class button - Lesson details (manage section)ls_manage_apply_btn申请Status Apply button - Lesson details (manage section)ls_manage_schedule_btn时间表Schedule start button - Lesson details (manage section)ls_manage_start_btn立即开始Start immediately button - Lesson details (manage section)ls_status_cmb_disable不可用Lesson status option - Disable (suspend)ls_status_cmb_enable活动的Lesson status option - Enable (make active/unsuspend)ls_status_disabled_lbl暂停的Current status description if suspended (disabled)ls_status_archived_lbl存档的Current status description if archviedls_win_learners_title观看学习者View learners window titlemnu_view观看Menu bar Viewls_win_editclass_save_btn保存Save button on Edit Class popupls_win_editclass_learners_lbl学习者Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl班级中的学习者Heading on View Learners window panel.opt_activity_title可选活动Title for Optional Activity on canvas (monitoring)lbl_num_activities子活动Number of child activities for Complex activity shown on canvas.ls_tasks_txt必需的任务Heading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGo button on contribute entry itemal_confirm_forcecomplete_tofinish你确信你想强迫完成学习者'{0}'到课程结尾吗?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_status_scheduled_lbl预定的Lesson status option - Scheduled (Not Started)goContribute_btn_tooltip现在完成这个任务tool tip message for go button in required tasks list in lesson tabrefresh_btn_tooltip重载学习者的最近进展数据tool tip message for the refresh buttonls_manage_learners_btn_tooltip显示所有分配给这个课程的学习者tool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltip在向下移动选择的基础上改变这个课程的状态tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusls_manage_status_cmb选择状态Status combo top (index) item - Lesson details (manage section)ls_manage_learners_btn观看学习者View learners button - Lesson details (manage section)ls_manage_date_lbl日期Date field title - Lesson details (manage section)ls_duration_lbl消逝的持续时间Elapsed duration of lesson - Lesson detailsls_status_cmb_activate使活动Lesson status option - Activatels_status_cmb_archive存档Lesson status option - Archivels_status_started_lbl开始的Current status description if started (enabled)ls_win_editclass_title编辑班级Edit class window titlels_win_editclass_cancel_btn取消Cancel button on Edit Class popupls_win_learners_close_btn关闭Close button on View Learners popupls_win_editclass_organisation_lbl组织Heading for Organisation tree on Edit Class popuptd_desc_heading高级控制Todo tab description headingtd_desc_text使用这个Todo标签不是完成序列所必需的。更多信息请看帮助页面。这个特征已完全功能化。Todo tab descriptionls_of_texti.e. 1 of 10 Used for showing how many learners have startedls_manage_txt管理课程Heading for Management section of Lesson Tablearner_exportPortfolio_btn导出公文包Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivity你确信你想强迫学习者'{0}'完成活动'{1}'吗?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivity你已经将学习者'{0}'置于当前或已完成的活动'{1}'中了。Error message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_notarget请将学习者'{0}'置于活动中或课程的结尾。Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate已完成的学习者Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonhelp_btn_tooltip帮助tool tip message for help button in toolbarls_manage_schedule_btn_tooltip确定课程将来开始的时间tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltip双击,为学习者的当前活动回顾发展中的贡献tool tip message for current activity iconal_doubleclick_todoactivity对不起,学习者'{0}'还没有到达活动'{1}'。alert message when user double click on the todo activity in the sequence under learner tabrefresh_btn刷新Refresh buttonhelp_btn帮助Help buttonmtab_lesson课程Monitor Lesson details tabmtab_seq序列Monitor Sequence tabmtab_learners学习者Monitor Learners tabmtab_todo去做Monitor Todo tabls_learners_lbl学习者Learner label - Lesson detailsls_class_lbl班级Class label - Lesson detailsls_manage_class_lbl班级Class managing label - Lesson detailsls_manage_start_lbl开始Start managing label - Lesson detailsls_status_lbl状态Status label - Lesson detailsclass_exportPortfolio_btn_tooltip导出课程公文包,为了将来的参考,在你的计算机上保存它。tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltip导出这个学习者公文包,为了将来的参考,在你的计算机上保存它。tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltip立即开始课程tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessoncompleted_act_tooltip双击,回顾学习者已完成活动的贡献tool tip message for completed activity iconal_validation_schstart没有日期被选定。请选择一个日期和时间。Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl时间(小时:分钟)Time fields title - Lesson details (manage section)al_validation_schtime请输入一个有效的时间。Alert message when user enters an invalid time for schedule startls_manage_learnerExpp_lbl学习者允许导出的导出文件夹Label for Enable export portfolio for Learnerls_confirm_expp_enabled学习者现在可以导出文件夹Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled学习者现在不允许导出文件夹Confirmation message on disabling export portfolio for learnersal_send发送Send button label on the system error dialogccm_monitor_activity打开活动监视器Label for Custom Context Monitor Activityccm_monitor_activityhelp监视活动帮助Label for Custom Context Monitor Activity Helpls_learnerURL_lbl学习者 URL:Learner URL:finish_learner_tooltip要强制使一个学生结束课程,请将该学生的图标拖到此栏并释放该图标Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btn日志入口Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip查看学习者保存的日志入口tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.learners_group_name{0}-学习者Group name for the class's learners group.ls_remove_confirm_msg您已经选择移去该课程,移去的课程将不能再获取,继续吗?remove confirm msgls_status_cmb_remove移去Lesson status option - Removels_status_removed_lbl移去的Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_no'No' on the alert dialogcheck_avail_btn检查可用性Check Availability button labelcontinue_btn继续Continue button labells_continue_lbl您好{0},您还没有完成编辑{0}。Continue message labells_sequence_live_edit_btn灵活编辑Live Edit buttonls_sequence_live_edit_btn_tooltip为该课程编辑目前的设计。Tool tip message for Live Edit buttonmsg_bubble_check_action_lbl检查中...Label displayed when checking availability of lesson.msg_bubble_failed_action_lbl不可用,重试。Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lbl对不起,{0}目前正在被{1}编辑。Warning message on Monitor locked screen.al_confirm_live_edit您将打开灵活编辑,继续吗?Confirm warning (dialog) message displayed when opening Live Edit.about_popup_title_lbl关于-{0}Title for the About Pop-up window.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_trademark_lbl{0} 是一个商标。Label displaying the trademark statement in the About dialog.about_popup_license_lbl该软件是一个自由软件; 您可以重新发布并/或修改它,前提是您必须遵守自由软件组织发布的准则。Label displaying the license statement in the About dialog.stream_reference_lbl LAMS Reference label for the application stream.gpl_license_url www.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_url http://{0}foundation.org URL address for the application stream.ls_continue_action_lbl点击{0}以继续。Action label displayed when a user can proceed to Live Edit.about_popup_copyright_lbl © 2002-2008 {0} 基金。Label displaying copyright statement in About dialog.lbl_num_sequences{0}—序列Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalid对不起,在您右击鼠标选择打开/编辑活动菜单之前,请选择该活动。alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasclose_mc_tooltip最小Tooltip message for close button on Branching canvas.mv_search_default_txt输入搜索查询或页面号码The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msg请输入搜索查询或范围在1到{0}直接的页面号码This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg页面号码必须在1和{0}之间This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0}没有找到。This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl页面{0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl开始If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl索引视图When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.al_confirm_forcecomplete_to_end_of_branching_seq你确定要强制学习者{0}结束该分支流程吗?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_seq_status_teacher_branching教师A type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_set还没有设置The value of the sequence's status is not setbranch_mapping_dlg_conditions_dgd_lbl映射Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl条件Column heading for showing condition description of the mapping.ccm_monitor_view_group_mappings查看分支的分组Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings查看分支的条件Label for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lblColumn heading for showing group name of the mapping.mnu_go_sequence流程Menu bar Go to Sequence Tabcv_activity_helpURL_undefined找不到{0}的帮助页面Alert message when a tool activity has no help url defined.view_competences_dlg查看映射Allows you to view all the competences within a learning designview_competences_in_ld_lbl学习设计中的权限:{0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentview_act_mapped_competences查看权限映射Allows you to view competences mapped to a particular activitymapped_competences_lbl已映射的权限Title for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lbl权限映射到{0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lbl标题Competence Title label in Mapped Competences dialogcompetence_desc_lbl描述Competence Description label in Mapped Competences dialogal_activity_view_competence_mappings_invalid请确定在查看权限映射前已选定一个活动。Warning that appears when no activity is selected when the user tries to view competence mappingsal_error_forcecomplete_to_different_seq{0}不能被强制拖到不同分支或流程中的活动中This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderation延迟Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later稍后定义Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate许可闸门A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate同步闸门A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping选择小组Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution贡献Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate系统闸门A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_sched_gate时间闸门A type of Gate Activity where progress depends on time (start time and/or end time)cv_design_unsaved_live_edit未保存的修改将被自动保存,你想继续插入/合并吗?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching您不能添加或移除分组中的小组,因为它正在被分支流程使用;并且添加或移除小组将影响到分支设置的分组。您只能在现有的小组中添加或移除用户。Third instructions paragraph on the chosen branching screen.ls_win_editclass_staff_lbl监控者Heading for Staff list on Edit Class popupmnu_help_help监控帮助Menu bar Help itemls_status_active_lbl已创建但还不开始Current status description if active (enabled)ls_manage_editclass_btn_tooltip编辑分配给这个课程的学习者和监控者列表tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_status_lbl改变状态Status managing label - Lesson detailsorder_learners_by_completion_lbl通过完成活动来命令学生Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonstaff_group_name{0}-监控者Group name for the class's staff group.ls_remove_warning_msg警告:该课程将被移去,您想保留该课程吗?Message for the alert dialog which appears following confirmation dialog for removing a lesson. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/monitoring/zh_TW_dictionary.xml 12 Jan 2010 01:19:52 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_seq_status_not_set尚未設定The value of the sequence's status is not setbranch_mapping_dlg_condition_col_lbl狀態Column heading for showing condition description of the mapping.ls_seq_status_sched_gate時程閘門A type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_conditions_dgd_lbl映圖Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_group_col_lbl群組Column heading for showing group name of the mapping.ccm_monitor_view_group_mappings檢視群組到分支Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings檢視Label for Custom Context View Condition Mappingsmnu_go_sequence編程Menu bar Go to Sequence Tabview_competences_in_ld_lbl設計中的能力Label for dialog that shows all the competences in a learning design with a name specified by the argumentmtab_lesson課程Monitor Lesson details tabmtab_seq順序Monitor Sequence tabls_status_lbl狀態Status label - Lesson detailssys_error系統錯誤System Error elert window titlemnu_file_schedule時程表Menu bar Schedulemnu_file_exit離開Menu bar Exitmnu_go_lesson課程Menu bar Go to Lesson Tabmnu_go_schedule時程表Menu bar Go to Schedule Tabrefresh_btn重新整理Refresh buttonhelp_btn輔助Help buttoncv_activity_helpURL_undefined無法找到{0}的幫助頁面Alert message when a tool activity has no help url defined.cv_design_unsaved_live_edit未保存的修改將被自動保存,您想要繼續插入/合併嗎?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching您不能添加或移除分組中的小組,因為它正在被分支流程使用;並且添加或移除小組將影響到分支設置的分組。您只能在現有的小組中添加或移除使用者。Third instructions paragraph on the chosen branching screen.view_competences_dlg檢視能力Allows you to view all the competences within a learning designview_act_mapped_competences檢視映圖能力Allows you to view competences mapped to a particular activitymapped_competences_lbl映圖能力Title for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lbl能力硬圖到{0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lbl標題Competence Title label in Mapped Competences dialogcompetence_desc_lbl描述Competence Description label in Mapped Competences dialogal_activity_view_competence_mappings_invalid請確定在查看能力硬圖前已選定一個活動。Warning that appears when no activity is selected when the user tries to view competence mappingsorder_learners_by_completion_lbl按完成排序Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lbl允許學習者查看誰在線上ls_manage_presenceEnabled_lblls_confirm_presence_enabled現在學習者可以看誰在線上ls_confirm_presence_enabledls_confirm_presence_disabled學習者無法看到誰在線上ls_confirm_presence_disabledls_win_learners_heading_class_lbl課程Heading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lbl活動Heading on View Learners window panel (learners at activity).learner_plus_tooltip{0}學習者。按兩下去看完整的名單Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity.al_alert注意Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm確認To Confirm title for LFErroral_okOK on the alert dialogapp_chk_langload語言資料還未被載入message for unsuccessful language loadingapp_chk_themeload主題資料還未被載入message for unsuccessful theme loadingapp_fail_continue應用程式無法繼續。請聯絡技術支援message if application cannot continue due to any errordb_datasend_confirm謝謝您傳送資料到伺服器Message when user sucessfully dumps data to the servermnu_edit編輯Menu bar Editmnu_edit_copy拷貝Menu bar Edit &gt; Copymnu_edit_cut剪下Menu bar Edit &gt; Cutmnu_edit_paste貼上Menu bar Edit &gt; Pastemnu_file檔案Menu bar Filemnu_file_refresh重新整理Menu bar Refreshmnu_file_editclass編輯Menu bar Edit Classmnu_file_start開始Menu bar Startmnu_help幫助Menu bar Helpmnu_help_abt有關Menu bar Aboutperm_act_lbl允許Label for permission gate activitysched_act_lbl行程Label for schedule gate activitysynch_act_lbl同步Used as a label for the Synch Gate Activity Typews_Root根目錄Root folder title for workspacews_dlg_cancel_button取消2ws_dlg_location_button地點Workspace dialogue Location btn labelws_tree_mywsp我的工作空間The root level of the treews_tree_orgs組織Shown in the top level of the tree in the workspacesys_error_msg_start系統錯誤發生Common System error message starting linemnu_view_learners學習者...Menu bar Learnersmnu_go啟用Menu bar Gomnu_go_learners學習者Menu bar Go to Learners Tabmnu_go_todo執行Menu bar Todomnu_help_help監視Menu bar Help itemmtab_learners學習者Monitor Learners tabmtab_todo執行Monitor Todo tabls_learners_lbl學習者Learner label - Lesson detailsls_class_lbl課程Class label - Lesson detailssys_error_msg_finish你需要重新啟動LAMS設計來繼續。你想保留下列有關這個錯誤的資訊來幫助解決這個問題嗎?Common System error message finish paragraphal_validation_schtime請輸入一個有效的時間Alert message when user enters an invalid time for schedule startfinish_learner_tooltip要強制一位學習者結束課程,請將該學習者的圖示拖到此欄並釋放該圖示Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activity開啟活動監視器Label for Custom Context Monitor Activityccm_monitor_activityhelp監視活動輔助Label for Custom Context Monitor Activity Helplearner_viewJournals_btn日記記錄Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip檢視學習者所有儲存的日記記錄tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lbl壆習者URL:Learner URL:ls_remove_confirm_msg您已經選擇移除該課程,移除的課程將不能再獲取,繼續嗎?remove confirm msgls_status_cmb_remove移除Lesson status option - Removels_status_removed_lbl已移除Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_no'No' on the alert dialogls_remove_warning_msg警告:此課程將被移除。你要保存此課程嗎?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0}學習者Group name for the class's learners group.staff_group_name{0}監視Group name for the class's staff group.check_avail_btn檢查可使用的標示Check Availability button labelcontinue_btn繼續Continue button labells_continue_lbl嗨{1},你尚未完成編輯{0}Continue message labells_sequence_live_edit_btn即時編輯Live Edit buttonls_sequence_live_edit_btn_tooltip編輯此課程的設計Tool tip message for Live Edit buttonmsg_bubble_check_action_lbl檢查...Label displayed when checking availability of lesson.msg_bubble_failed_action_lbl不可用,請再試ㄧ次Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lbl抱歉,{0}目前被{1}編輯中Warning message on Monitor locked screen.al_confirm_live_edit你將開啟即時編輯,你想繼續嗎?Confirm warning (dialog) message displayed when opening Live Edit.al_send送出Send button label on the system error dialogabout_popup_title_lbl有關- {0}Title for the About Pop-up window.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2009 {0} 基金會Label displaying copyright statement in About dialog.about_popup_trademark_lbl {0} 是{0}基金會( {1} )的註冊商標Label displaying the trademark statement in the About dialog.about_popup_license_lbl該軟體是一個自由軟體; 您可以重新發佈並/或修改它,前提是您必須遵守自由軟體組織發佈的準則。Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.ls_manage_class_lbl課程:Class managing label - Lesson detailsls_manage_status_lbl改變狀態:Status managing label - Lesson detailsls_manage_start_lbl開始:Start managing label - Lesson detailsls_manage_learners_btn檢視使用者View learners button - Lesson details (manage section)ls_manage_editclass_btn編輯課程Edit class button - Lesson details (manage section)ls_manage_apply_btn套用Status Apply button - Lesson details (manage section)ls_manage_schedule_btn行程Schedule start button - Lesson details (manage section)ls_manage_start_btn現在開始Start immediately button - Lesson details (manage section)ls_manage_date_lbl日期Date field title - Lesson details (manage section)ls_duration_lbl持續時間Elapsed duration of lesson - Lesson detailsls_manage_status_cmb選擇狀態Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activate啟用Lesson status option - Activatels_status_cmb_disable關閉Lesson status option - Disable (suspend)ls_status_cmb_enable啟用Lesson status option - Enable (make active/unsuspend)ls_status_cmb_archive檔案櫃Lesson status option - Archivels_status_active_lbl已建立但尚未啟用Current status description if active (enabled)ls_status_disabled_lbl已經關閉Current status description if suspended (disabled)ls_status_archived_lbl已歸檔Current status description if archviedls_status_started_lbl已經啟用Current status description if started (enabled)ls_win_editclass_title編輯課程Edit class window titlels_win_learners_title檢視學習者View learners window titlemnu_view檢視Menu bar Viewls_win_editclass_save_btn儲存Save button on Edit Class popupls_win_editclass_cancel_btn取消Cancel button on Edit Class popupls_win_learners_close_btn結束Close button on View Learners popupls_win_editclass_organisation_lbl組織Heading for Organisation tree on Edit Class popupls_win_editclass_staff_lbl監視Heading for Staff list on Edit Class popupls_win_editclass_learners_lbl學習者Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl學習者於{0}: {1} Heading on View Learners window panel.td_desc_heading進階控制Todo tab description headingopt_activity_title選擇性活動Title for Optional Activity on canvas (monitoring)lbl_num_activities{0} - 活動Number of child activities for Complex activity shown on canvas.ls_of_texti.e. 1 of 10 Used for showing how many learners have startedls_manage_txt管理課程Heading for Management section of Lesson Tabgpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.td_goContribute_btn執行Go button on contribute entry itemlearner_exportPortfolio_btn輸出檔案Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lbl已排定時程Lesson status option - Scheduled (Not Started)stream_urlhttp://{0}foundation.org URL address for the application stream.ls_manage_learnerExpp_lbl啟動給學習者的檔案夾Label for Enable export portfolio for Learnerls_confirm_expp_enabled輸出檔案夾已經啟動給學習者Confirmation message on enabling export portfolio for learnersal_confirm_forcecomplete_toactivity你確認要強迫學習者'{0}'完活動'{1}'嗎?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedls_tasks_txt必要的工作項目Heading for Required Tasks (todo section of Lesson tab)ls_confirm_expp_disabled對學習者的輸出檔案夾已經關閉Confirmation message on disabling export portfolio for learnerstd_desc_text使用這個Todo標籤不是完編程列所必需的。更多資訊請看幫助頁面。這個特徵已完全功能化。Todo tab descriptional_error_forcecomplete_invalidactivity你已經將學習者'{0}'置於當前或已完成的活動'{1}'中了Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinish你確信你想強迫完成學習者'{0}'到課程結尾嗎?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notarget請安置學習者{0}瑜課程結束的活動中Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate已完成的學習者Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltip現在完成這個項目tool tip message for go button in required tasks list in lesson tabhelp_btn_tooltip幫助tool tip message for help button in toolbarrefresh_btn_tooltip重新載入最近的進度資料給學習者tool tip message for the refresh buttonls_manage_editclass_btn_tooltip編輯學習者的名單與此課程的監視視窗tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltip顯示此課程所有的學習者tool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltip根據下拉的選項改變課程的狀態tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusls_continue_action_lbl按下{0}去進行Action label displayed when a user can proceed to Live Edit.learner_exportPortfolio_btn_tooltip輸出此學習者的檔案夾並儲存於電腦中以未來參考tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencelbl_num_sequences{0} - 編程Number of child sequence or Optional Sequences activity shown on canvas.class_exportPortfolio_btn_tooltip輸出此課程的檔案夾並儲存於電腦中以供未來參考tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerls_manage_start_btn_tooltip送出tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltip安排課程起始在一個未來的時間tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltip請按兩下去檢視進行中的學習者的現在活動付出tool tip message for current activity iconcompleted_act_tooltip請按兩下去檢視學習者的完成活動進行中的付出tool tip message for completed activity iconal_doubleclick_todoactivity抱歉,學習者:{0}尚未達到這項活動:{1}alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstart日期未選定,請選擇一個日期與時間Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl時間(小時:分)Time fields title - Lesson details (manage section)al_activity_openContent_invalid對不起,在您右擊滑鼠選擇打開/編輯活動功能表之前,請選擇該活動。alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_default_txt輸入搜尋字串或頁碼The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msg請輸入搜尋字串或介於1和{0}頁碼This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg頁碼必須介於1和{0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0}沒有找到This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl頁面{0}的{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl啟動If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl目錄檢視When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.close_mc_tooltip最小話Tooltip message for close button on Branching canvas.al_confirm_forcecomplete_to_end_of_branching_seq你確定要強制學習者{0}結束該分支流程嗎?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq{0}不能被強制拖到不同分支或流程的活動中This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderation主導Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later稍後定義Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate許可閘門A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate同步閘門A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping選擇群組Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution付出Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate系統閘門A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_teacher_branching敎師選則分支A type of branching where the Teacher chooses which learners to add to each branch \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ar_JO_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizardDesc_1_lblالدليل ادناه يحتوي تصاميم لانشاء الدرس. اختر احداها والنقر عل زر التالي للاستمرار. Step 1 descriptioncancel_btnإلغاءCancel button to exit wizardal_cancelإلغاءCancel on alert dialogconfirmMsg_1_txt{0} لقد بدأ.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} قد جدول لـ {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} تم انشاءه و لكن لم يتم تشغيلهConclusion screen description if lesson created but not startedsummery_design_lblسلسلة:Label for summery heading of selected design field.al_validation_schstartلم يتم اختيار التاريخ،من فضلك اختر الوقت و التاريخ ،و انقر ابدأMessage when no date is selected starting a lesson by schedule.summery_title_lblعنوان:Label for summery heading of defined title.summery_desc_lblوصف:Label for summery heading of defined description.summery_course_lblمجموعة:Label for summery heading of selected course field.summery_class_lblمجموعة فرعية:Label for summery heading of selected class field.summery_staff_lblالموظفونLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblمتعلمون:Label for summery heading of number of selected learners in the lesson class.al_sendارسلOK on system error dialogal_validation_schtimeالرجاء إدخال وقت مقبولAlert message when user enters an invalid time for schedule startdate_lblالتاريخLabel for Schedule Date fieldtime_lblالوقت (الساعات : الدقائق)Label for Schedule Time fieldwizard_selAll_cb_lblإختر الكلّLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} متعلّمونGroup name for the class's learners group.wizard_learner_expp_cb_lblمكّن تصدير المعلومات الشخصية للمتعلّمLabel for Enable export portfolio for Learnerstaff_group_name{0} مراقبونGroup name for the class's staff group.addmore_btnأضف درسا آخراButton to add another lesson, return to first step.sys_error_msg_startلم تكن قادرا على إنشاء الدّرس.Common System error message starting linesys_error_msg_finishهل تريد ارسال تقرير بالخطأ ؟Common System error message finish paragraphsys_errorخطأ النظامSystem Error elert window titleprev_btn< سابقPrevious step buttonnext_btnتالي >Next step buttonfinish_btnالنهايةFinish button to complete wizardclose_btnاغلقClose button to close windowstart_btnإبدأ الآنStart button to start new lessontitle_lblالعنوانNew Lesson titledesc_lblالوصفNew Lesson descriptionlearner_lblمتعلمونHeading for list of class learnersstaff_lblمراقبونHeading for list of class staffschedule_cb_lblالجدولLabel for schedule checkboxsummery_lblالخلاصةHeading for summery outlinews_Rootالمجلد الرئيسيRoot folder title for workspacews_tree_mywspمساحة العملThe root level of the workspace treewizardTitle_1_lblاختر التصميمStep 1 screen titlewizardTitle_2_lblتفاصيل الدّرسStep 2 screen titlewizardTitle_3_lblخطوة 2 من 3: إختر المتعلّمين و المراقبينStep 3 screen titlewizardTitle_4_lblخطوة 3 من 3: أكّد تفاصيل الدّرسStep 4 screen titlewizardTitle_x_lblدرس: {0}Confirmation screen titleal_alertانذارGeneric title for Alert windowal_confirmأكّدTo Confirm title for LFErroral_okموافقOK on alert dialogal_validation_msg1يجب اختيار تصميم صحيحMessage when no design is selected on step 1al_validation_msg2العنوان حقل اجباري Message when title field is empty on Step 2al_validation_msg3_1لم يتم اختبار مادة أو درسMessage when no course/class is selected in Step 3al_validation_msg3_2يجب اختيار على الاقل طالب و مدرس Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblيمكنك اضافة الاسم و الوصف الذي تريد الطلاب أن يروه لهذه المادةStep 2 descriptionwizardDesc_3_lblيمكنك عدم اختيار الطلاب و الموظفين من الصف بعدم نقر المربع الملاصق لأسمائهمStep 3 descriptionwizardDesc_4_lblبالضغط على زر التشغيل يمكنك بدأ الدرس فورا وبرمجة الدرس ليبدأ في وقت و زمن محددين Step 4 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/cy_GB_dictionary.xml 12 Jan 2010 01:20:08 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startNid oeddech yn gallu creu gwers.Common System error message starting linesys_error_msg_finishYdych chi eisiau anfon adroddiad gwall?Common System error message finish paragraphsys_errorGwall SystemSystem Error elert window titleprev_btn&lt; BlaenorolPrevious step buttonnext_btnNesaf &gt;Next step buttonfinish_btnDechrau yn y MonitorFinish button to complete wizardcancel_btnCansloCancel button to exit wizardclose_btnCauClose button to close windowstart_btnDechrau NawrStart button to start new lessontitle_lblTeitlNew Lesson titledesc_lblDisgrifiadNew Lesson descriptionlearner_lblDysgwyrHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblTrefnlenLabel for schedule checkboxsummery_lblCrynodebHeading for summery outlinews_RootGwraiddRoot folder title for workspacews_tree_mywspFy Lle GwaithThe root level of the workspace treewizardTitle_1_lblDewiswch y DilyniantStep 1 screen titlewizardTitle_2_lblManylion y WersStep 2 screen titlewizardTitle_3_lblDewiswch Fyfyrwyr a StaffStep 3 screen titlewizardTitle_4_lblCadarnhewch Fanylion y WersStep 4 screen titlewizardTitle_x_lblGwers: {0}Confirmation screen titleal_alertRhybuddGeneric title for Alert windowal_cancelCansloCancel on alert dialogal_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on alert dialogal_validation_msg1Rhaid dewis dilyniant dilys.Message when no design is selected on step 1al_validation_msg2Teitl yn faes gofynnol.Message when title field is empty on Step 2al_validation_msg3_1Dim cwrs neu ddosbarth wedi'i ddewis.Message when no course/class is selected in Step 3al_validation_msg3_2Rhaid cael o leiaf 1 aelod staff a dysgwr wedi'i ddewis.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblMae'r strwythur cyfeiriadur isod yn cynnwys y dilyniannu y gallwch eu creu ar gyfer gwers. Dewiswch un a chliciwch ar y botwm nesaf i barhau.Step 1 descriptionwizardDesc_2_lblGallwch ychwanegu'r enw a'r disgrifiad yr hoffech i'r myfyrwyr ei weld ar gyfer y wers hon.Step 2 descriptionwizardDesc_3_lblGallwch ddewis dad-ddewis myfyrwyr a staff o'r dosbarth hwn trwy ddad-dicio'r blwch wrth ochr eu henwau.Step 3 descriptionwizardDesc_4_lblTrwy wasgu ar y botwm Dechrau gallwch ddechrau’r wers yn syth. Hefyd, gallwch drefnu i'r wers ddechrau ar ddyddiad ac amser arbennig.Step 4 descriptionconfirmMsg_1_txt{0} wedi dechrau.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} wedi cael ei drefnu ar gyfer {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} wedi cael ei greu ond heb ei ddechrau eto.Conclusion screen description if lesson created but not startedal_validation_schstartDim dyddiad wedi'i ddewis. Dewiswch ddyddiad ac amser, yna cliciwch ar y botwm Trefnlen.Message when no date is selected starting a lesson by schedule.summery_design_lblDilyniant:Label for summery heading of selected design field.summery_title_lblTeitl:Label for summery heading of defined title.summery_desc_lblDisgrifiad:Label for summery heading of defined description.summery_course_lblGrŵp:Label for summery heading of selected course field.summery_class_lblIs-grŵp:Label for summery heading of selected class field.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblDysgwyr:Label for summery heading of number of selected learners in the lesson class.al_sendAnfonOK on system error dialogal_validation_schtimeRhowch amser dilys.Alert message when user enters an invalid time for schedule startdate_lblDyddiadLabel for Schedule Date fieldtime_lblAmser (Awr : Munud)Label for Schedule Time fieldwizard_selAll_cb_lblDewis PopethLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblGalluogi allforio portffolio i'r dysgwrLabel for Enable export portfolio for Learnerlearners_group_name{0} dysgwyrGroup name for the class's learners group.staff_group_name{0} staffGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/da_DK_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startDet lykkedes dig ikke at oprette en lektion.Common System error message starting linesys_error_msg_finishØnsker du at sende en fejlrapport?Common System error message finish paragraphsys_errorSystemfejlSystem Error elert window titleprev_btn< ForrigePrevious step buttonnext_btn> NæsteNext step buttonfinish_btnStart i MonitorFinish button to complete wizardcancel_btnAnnullérCancel button to exit wizardclose_btnLukClose button to close windowstart_btnStart nuStart button to start new lessontitle_lblTitelNew Lesson titledesc_lblBeskrivelseNew Lesson descriptionlearner_lblBrugereHeading for list of class learnersstaff_lblInstruktørerHeading for list of class staffschedule_cb_lblTidsplanLabel for schedule checkboxsummery_lblResuméHeading for summery outlinews_RootRodRoot folder title for workspacews_tree_mywspMit arbejdsområdeThe root level of the workspace treewizardTitle_1_lblVælg sekvensStep 1 screen titlewizardTitle_2_lblLektionsdetaljerStep 2 screen titlewizardTitle_3_lblVælg brugere og instruktørerStep 3 screen titlewizardTitle_4_lblBekræft lektionsdetaljerStep 4 screen titlewizardTitle_x_lbl{0}Confirmation screen titleal_alertNB!Generic title for Alert windowal_cancelAnnullérCancel on alert dialogal_confirmBekræftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Vælg et gyldigt designMessage when no design is selected on step 1al_validation_msg2Du skal skrive en titelMessage when title field is empty on Step 2al_validation_msg3_1Intet kursus og ingen klasse blev valgtMessage when no course/class is selected in Step 3al_validation_msg3_2Der skal vælges mindst én bruger og én instruktørMessage when either no staff/learner users are selected in Step 3.wizardDesc_1_lblMappestrukturen nedenfor indeholder de sekvenser, som du kan oprette lektioner med. Vælg ét og klik på "Næste" for at fortsætte.Step 1 descriptionwizardDesc_2_lblDu kan tilføje det navn og den beskrivelse, du ønsker brugerne skal se for denne lektion.Step 2 descriptionwizardDesc_3_lblDu kan fravælge brugere og instruktører fra denne klasse ved at fjerne markeringen i boksen ud for deres navne.Step 3 descriptionwizardDesc_4_lblVed at klikke på knappen "Start" kan du aktivere lektionen med det samme. Du kan også sætte lektionen til at starte på en bestemt dato og et bestemt tidspunkt.Step 4 descriptionconfirmMsg_1_txt{0} er startet.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} er fastsat til at starte {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} er oprettet, men er ikke startet endnu.Conclusion screen description if lesson created but not startedal_validation_schstartIngen dato blev valgt. Vælg en dato og et tidspunkt, og klik derefter på knappen "Skema".Message when no date is selected starting a lesson by schedule.summery_design_lblSekvensLabel for summery heading of selected design field.summery_title_lblTitelLabel for summery heading of defined title.summery_desc_lblBeskrivelseLabel for summery heading of defined description.summery_course_lblGruppeLabel for summery heading of selected course field.summery_class_lblUndergruppeLabel for summery heading of selected class field.summery_staff_lblInstruktørerLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblBrugereLabel for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogal_validation_schtimeAngiv et gyldigt tidspunktAlert message when user enters an invalid time for schedule startdate_lblDatoLabel for Schedule Date fieldtime_lblTid (timer : minutter)Label for Schedule Time fieldwizard_selAll_cb_lblVælg alleLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblSlå "Eksportér portfolio" til for brugereLabel for Enable export portfolio for Learnerlearners_group_name{0} brugereGroup name for the class's learners group.staff_group_name{0} stabGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/de_DE_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startSie sind nicht berechtigt, eine Lektion anzulegen.Common System error message starting linesys_error_msg_finishWollen sie einen Fehlerbericht versenden?Common System error message finish paragraphsys_errorSystemfehlerSystem Error elert window titleprev_btn< ZurückPrevious step buttonnext_btnWeiter >Next step buttoncancel_btnAbbrechenCancel button to exit wizardclose_btnSchließenClose button to close windowtitle_lblTitelNew Lesson titledesc_lblBeschreibungNew Lesson descriptionlearner_lblTeilnehmer/innenHeading for list of class learnersstaff_lblTrainer/innenHeading for list of class staffschedule_cb_lblTerminLabel for schedule checkboxsummery_lblZusammenfassungHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMein ArbeitsplatzThe root level of the workspace treewizardTitle_2_lblDetails der LektionStep 2 screen titlewizardTitle_3_lblTeilnehmer/innen undf Trainer/innen auswählenStep 3 screen titlewizardTitle_4_lblDetails bestätigenStep 4 screen titlewizardTitle_x_lblLektion: {0}Confirmation screen titleal_alertHinweisGeneric title for Alert windowal_cancelAbbrechenCancel on alert dialogal_confirmBestätigenTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Titel ist ein Pflichtfeld.Message when title field is empty on Step 2al_validation_msg3_1Es wurde keine Klasse oder Kurs ausgewählt.Message when no course/class is selected in Step 3al_validation_msg3_2Es muß mindestens je ein/e Trainer/in und ein/e Teilnehmer/in ausgewählt werden.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblGeben Sie einen Namen und eine Beschreibung ein, die die Teilnehmer/innen sehen können.Step 2 descriptionwizardDesc_3_lblKlicken Sie auf die Box, um die jeweiligen Personen abzuwählen.Step 3 descriptionwizardDesc_4_lblMit dem Klick auf den Start-Button beginnen Sie die Lektion sofort. Sie können jedoch auch einen Termin für den Beginn festlegen.Step 4 descriptionconfirmMsg_1_txt{0} hat begonnen.Conclusion screen description if lesson startedconfirmMsg_2_txtDer Beginn von '{0}' wurde auf {1} festsetzt.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} wurde angelegt, aber noch nicht gestartet.Conclusion screen description if lesson created but not startedal_validation_schstartBisher wurde kein Termin ausgewählt. Tragen sie nun einen Termin ein und klicken Sie dann auf den 'Termin'-Button.Message when no date is selected starting a lesson by schedule.summery_title_lblTitel:Label for summery heading of defined title.summery_desc_lblBeschreibung:Label for summery heading of defined description.summery_staff_lblTrainer/innen:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblTeilnehmer/innen:Label for summery heading of number of selected learners in the lesson class.al_sendSendenOK on system error dialogdate_lblDatumLabel for Schedule Date fieldtime_lblZeit (Stunden:Minuten)Label for Schedule Time fieldal_validation_schtimeGeben Sie bitte eine gültige Zeit ein.Alert message when user enters an invalid time for schedule startwizardDesc_1_lblIn den Verzeichnissen sind Design enthalten, die Sie für eine Lektion verwenden können. Wählen Sie eine aus und klicken Sie auf den Button 'Weiter'.Step 1 descriptionsummery_design_lblSequenz:Label for summery heading of selected design field.summery_course_lblGruppe:Label for summery heading of selected course field.finish_btnBeobachtung startenFinish button to complete wizardstart_btnJetzt startenStart button to start new lessonwizardTitle_1_lblSequenz auswählenStep 1 screen titleal_validation_msg1Ein gültiges Design muß ausgewählt werden.Message when no design is selected on step 1summery_class_lblUntergruppe:Label for summery heading of selected class field.wizard_learner_expp_cb_lblPortfolioexport für Teilnehmer/innen deaktivierenLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblAlle auswählenLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} Teilnehmer/innenGroup name for the class's learners group.staff_group_name{0} Trainer/innenGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/el_GR_dictionary.xml 12 Jan 2010 01:20:07 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizard_selAll_cb_lblΕπιλογή όλωνLabel for select all check box used to select all staff or learner users in list.wizardTitle_3_lblΕπιλέξτε Εκπαιδευόμενους και ΕπόπτεςStep 3 screen titlestaff_lblΕπόπτεςHeading for list of class stafffinish_btnΕκκίνηση σε ΕποπτείαFinish button to complete wizardstart_btnΈναρξη ΤώραStart button to start new lessonconfirmMsg_1_txt{0} έχει αρχίσει.Conclusion screen description if lesson startedsummery_desc_lblΠεριγραφή:Label for summery heading of defined description.al_sendΑποστολήOK on system error dialogcancel_btnΑκύρωσηCancel button to exit wizarddesc_lblΠεριγραφήNew Lesson descriptional_cancelΑκύρωσηCancel on alert dialogal_confirmΕπιβεβαίωσηTo Confirm title for LFErroral_okΟΚOK on alert dialogwizard_learner_expp_cb_lblΕνεργ. Εξαγ. Φακ. Εργασ. ΕκπαιδευόμενωνLabel for Enable export portfolio for Learnerwizard_learner_enLiveEdit_cb_lblΕνεργοποίηση "Ζωντανής" Επεξεργασίαςwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblΜπορείτε να προσθέσετε το όνομα και την περιγραφή του μαθήματος που θα θέλατε να δουν οι σπουδαστές για το μάθημα αυτό. Step 2 descriptionwizardDesc_3_lblΜπορείτε να επιλέξετε/απο-επιλέξετε Εκπαιδευόμενους και Επόπτες από αυτή την τάξη επιλέγοντας/αποεπιλέγοντας το αντίστοιχο πλαίσιο δίπλα από τα ονόματά τους. Step 3 descriptionwizard_learner_enpres_cb_lblΠροβ. Συνδεδεμένων σε Εκπ.Checkbox label for presenceal_validation_schtimeΠαρακαλώ εισαγάγετε έναν έγκυρο χρόνο. Alert message when user enters an invalid time for schedule starttime_lblΧρόνος (Ώρες : Λεπτά)Label for Schedule Time fieldsummery_staff_lblΠροσωπικό: Label for summery heading of number of selected staff in the lesson class.ws_RootΡίζαRoot folder title for workspacesummery_design_lblΑκολουθία: Label for summery heading of selected design field.close_btnΚλείσιμοClose button to close windowwizardDesc_1_lblΗ παρακάτω δομή καταλόγου περιέχει τις ακολουθίες με τις οποίες μπορείτε να δημιουργήσετε ένα μάθημα. Επιλέξτε μία και πατήστε στο κουμπί "Επόμενο" για να συνεχίσετε. Step 1 descriptional_validation_msg3_2Πρέπει να είναι επιλεγμένοι τουλάχιστον ένα μέλος διδακτικού προσωπικού και ένας εκπαιδευόμενος. Message when either no staff/learner users are selected in Step 3.al_validation_msg2Ο Τίτλος είναι απαιτούμενο πεδίο.Message when title field is empty on Step 2staff_group_name{0} προσωπικόGroup name for the class's staff group.wizardTitle_2_lblΛεπτομέρειες μαθήματοςStep 2 screen titlewizardTitle_4_lblΕπιβεβαιώστε τις λεπτομέρειες του μαθήματοςStep 4 screen titlenext_btnΕπόμενο >Next step buttonsys_error_msg_finishΘέλετε να στείλετε μια αναφορά με τα λάθη;Common System error message finish paragraphws_tree_mywspΟ χώρος εργασίας μουThe root level of the workspace treesummery_class_lblΥποομάδα: Label for summery heading of selected class field.wizardTitle_1_lblΕπιλέξτε μία ακολουθίαStep 1 screen titlesys_error_msg_startΔεν μπορείτε να δημιουργήσετε ένα μάθημα. Common System error message starting lineconfirmMsg_3_txt{0} έχει δημιουργθεί αλλά δεν έχει αρχίσει ακόμη. Conclusion screen description if lesson created but not startedal_validation_msg1Πρέπει να επιλεχθεί μία έγκυρη σχεδίαση. Message when no design is selected on step 1summery_course_lblΟμάδα: Label for summery heading of selected course field.confirmMsg_2_txt{0} έχει προγραμματιστεί για {1}. Conclusion screen description if lesson scheduledal_validation_schstartΚαμία ημερομηνία δεν έχει επιλεγεί. Παρακαλώ επιλέξτε ημερομηνία και ώρα, και μετά πατήστε "Αρχή"Message when no date is selected starting a lesson by schedule.date_lblΗμερομηνίαLabel for Schedule Date fieldsys_errorΛάθος ΣυστήματοςSystem Error elert window titleprev_btn< ΠροηγούμενοPrevious step buttonwizardTitle_x_lblΜάθημα: {0}Confirmation screen titlesummery_learners_lblΕκπαιδευόμενοι: Label for summery heading of number of selected learners in the lesson class.al_validation_msg3_1Κανένα μάθημα ή τάξη δεν έχει επιλεgεί.Message when no course/class is selected in Step 3learners_group_name{0} εκπαιδευόμενοιGroup name for the class's learners group.title_lblΤίτλοςNew Lesson titlesummery_title_lblΤίτλος: Label for summery heading of defined title.learner_lblΕκπαιδευόμενοιHeading for list of class learnerswizardDesc_4_lblΜε το πάτημα του κουμπιού "ΈναρξηΤώρα" μπορείτε να αρχίσετε το μάθημα αμέσως. Μπορείτε επίσης να προγραμματίσετε την εκκίνηση του μαθήματος σε συγκεκριμένη ημερομηνία και ώρα. Step 4 descriptionwizard_splitLearners_LearnersPerLesson_lblΕκπαιδευόμενοι ανά μάθημαwizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_leanersInGroup_lblΕκπαιδευόμενοι σε αυτη την ομάδαwizard_splitLearners_leanersInGroup_lblal_alertΕιδοποίησηGeneric title for Alert windowwizard_splitLearners_splitSumShort{0} περιπτώσεις αυτού του μαθήματος με {1} εκπαιδευόμενους κατανεμημένους σε κάθε ένα από αυτά.Shorter split learners summarywizard_splitLearners_splitSum{0} περιπτώσεις αυτού του μαθήματος θα δημιουργηθούν και περίπου {1} εκπαιδευόμενοι θα κατανεμηθούν σε κάθε μάθημα.Split learners summaryconfirmMsg_4_txt{0} περιπτώσεις {1} έχουν αρχίσει. Conclusion screen description if starting several lessonssummery_lblΣύνοψηHeading for summery outlineaddmore_btnΠροσθήκη άλλου ΜαθήματοςButton to add another lesson, return to first step.schedule_cb_lblΠρογραμματισμός ΈναρξηςLabel for schedule checkboxwizard_splitLearners_cb_lblΘέλετε να χωρίσετε τους εκπαιδευόμενους σε ξεχωριστά αντίγραφα του μαθήματος;wizard_splitLearners_cb_lblwizard_wkspc_date_modified_lblΤελευταία τροποποίηση: (0)Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/en_AU_dictionary.xml 12 Jan 2010 01:20:07 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startYou were unable to create a lesson.Common System error message starting linesys_error_msg_finishDo you want to send an error report?Common System error message finish paragraphsys_errorSystem ErrorSystem Error elert window titleprev_btn&lt; PrevPrevious step buttonnext_btnNext &gt;Next step buttoncancel_btnCancelCancel button to exit wizardclose_btnCloseClose button to close windowtitle_lblTitleNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblLearnersHeading for list of class learnersschedule_cb_lblScheduleLabel for schedule checkboxws_RootRootRoot folder title for workspacews_tree_mywspMy WorkspaceThe root level of the workspace treewizardTitle_2_lblLesson DetailsStep 2 screen titlewizardTitle_x_lblLesson: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelCancelCancel on alert dialogal_confirmConfirmTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Title is a required field. Message when title field is empty on Step 2al_validation_msg3_1No course or class was selected. Message when no course/class is selected in Step 3confirmMsg_1_txt{0} has been started.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} has been created but has not been started yet.Conclusion screen description if lesson created but not startedsummery_title_lblTitle:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_learners_lblLearners:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogwizard_learner_expp_cb_lblEnable export portfolio for learnerLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSelect AllLabel for select all check box used to select all staff or learner users in list.al_validation_msg1A valid sequence must be selected.Message when no design is selected on step 1summery_design_lblSequence:Label for summery heading of selected design field.summery_course_lblGroup:Label for summery heading of selected course field.summery_class_lblSubgroup:Label for summery heading of selected class field.finish_btnStart in MonitorFinish button to complete wizardstart_btnStart NowStart button to start new lessonal_validation_schtimePlease enter a valid time.Alert message when user enters an invalid time for schedule startdate_lblDateLabel for Schedule Date fieldtime_lblTime (Hours : Minutes)Label for Schedule Time fieldal_validation_schstartNo date was selected. Please select a date and time, and then click Schedule button.Message when no date is selected starting a lesson by schedule.learners_group_name{0} learnersGroup name for the class's learners group.wizardDesc_1_lblClick on a folder below to open it to view available sequences. Select one and click on the Next button to continue.Step 1 descriptionwizardTitle_3_lblStep 2 of 3: Select Learners and MonitorsStep 3 screen titlewizardDesc_3_lblYou can select/unselect Learners and Monitors from this class by checking/unchecking the box next to their names.Step 3 descriptionwizardTitle_4_lblStep 3 of 3: Confirm Lesson detailsStep 4 screen titlewizardDesc_4_lblBy clicking on Start you can begin the lesson immediately. You can also schedule it to start at a particular date and time.Step 4 descriptionconfirmMsg_2_txt{0} has been scheduled to start on {1}.Conclusion screen description if lesson scheduledwizardTitle_1_lblStep 1 of 3: Select your SequenceStep 1 screen titlestaff_lblMonitorsHeading for list of class staffal_validation_msg3_2There must be at least 1 monitor member and learner selected.Message when either no staff/learner users are selected in Step 3.summery_staff_lblMonitors:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} monitorsGroup name for the class's staff group.addmore_btnAdd Another LessonButton to add another lesson, return to first step.summery_lblSummaryHeading for summery outlinewizard_splitLearners_leanersInGroup_lblLearners in this group:wizard_splitLearners_leanersInGroup_lblconfirmMsg_4_txt{0} instances of {1} have been started.Conclusion screen description if starting several lessonswizard_splitLearners_splitSum{0} instances of this lesson will be created and approximately {1} learners will be allocated to each lesson.Split learners summarywizard_splitLearners_splitSumShort{0} instances of this lesson with {1} learners allocated to eachShorter split learners summarywizard_splitLearners_LearnersPerLesson_lblLearners per lesson:wizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_cb_lblDo you want to split these learners into separate copies of this lesson? wizard_splitLearners_cb_lblwizard_learner_enLiveEdit_cb_lblEnable Live Editwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblYou can add the name and description you would like the learners to see for this lesson.Step 2 descriptionwizard_learner_enpres_cb_lblAllow Learners to see who is onlineCheckbox label for presencewizard_wkspc_date_modified_lblLast modified: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/en_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startYou were unable to create a lesson.Common System error message starting linesys_error_msg_finishDo you want to send an error report?Common System error message finish paragraphsys_errorSystem ErrorSystem Error elert window titleprev_btn&lt; PrevPrevious step buttonnext_btnNext &gt;Next step buttoncancel_btnCancelCancel button to exit wizardclose_btnCloseClose button to close windowtitle_lblTitleNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblLearnersHeading for list of class learnersschedule_cb_lblScheduleLabel for schedule checkboxws_RootRootRoot folder title for workspacews_tree_mywspMy WorkspaceThe root level of the workspace treewizardTitle_2_lblLesson DetailsStep 2 screen titlewizardTitle_x_lblLesson: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelCancelCancel on alert dialogal_confirmConfirmTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Title is a required field. Message when title field is empty on Step 2al_validation_msg3_1No course or class was selected. Message when no course/class is selected in Step 3confirmMsg_1_txt{0} has been started.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} has been created but has not been started yet.Conclusion screen description if lesson created but not startedsummery_title_lblTitle:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_learners_lblLearners:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogwizard_learner_expp_cb_lblEnable export portfolio for learnerLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSelect AllLabel for select all check box used to select all staff or learner users in list.al_validation_msg1A valid sequence must be selected.Message when no design is selected on step 1summery_design_lblSequence:Label for summery heading of selected design field.summery_course_lblGroup:Label for summery heading of selected course field.summery_class_lblSubgroup:Label for summery heading of selected class field.finish_btnStart in MonitorFinish button to complete wizardstart_btnStart NowStart button to start new lessonal_validation_schtimePlease enter a valid time.Alert message when user enters an invalid time for schedule startdate_lblDateLabel for Schedule Date fieldtime_lblTime (Hours : Minutes)Label for Schedule Time fieldal_validation_schstartNo date was selected. Please select a date and time, and then click Schedule button.Message when no date is selected starting a lesson by schedule.learners_group_name{0} learnersGroup name for the class's learners group.wizardDesc_1_lblClick on a folder below to open it to view available sequences. Select one and click on the Next button to continue.Step 1 descriptionwizardTitle_3_lblStep 2 of 3: Select Learners and MonitorsStep 3 screen titlewizardDesc_3_lblYou can select/unselect Learners and Monitors from this class by checking/unchecking the box next to their names.Step 3 descriptionwizardTitle_4_lblStep 3 of 3: Confirm Lesson detailsStep 4 screen titlewizardDesc_4_lblBy clicking on Start you can begin the lesson immediately. You can also schedule it to start at a particular date and time.Step 4 descriptionconfirmMsg_2_txt{0} has been scheduled to start on {1}.Conclusion screen description if lesson scheduledwizardTitle_1_lblStep 1 of 3: Select your SequenceStep 1 screen titlestaff_lblMonitorsHeading for list of class staffal_validation_msg3_2There must be at least 1 monitor member and learner selected.Message when either no staff/learner users are selected in Step 3.summery_staff_lblMonitors:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} monitorsGroup name for the class's staff group.addmore_btnAdd Another LessonButton to add another lesson, return to first step.summery_lblSummaryHeading for summery outlinewizard_splitLearners_leanersInGroup_lblLearners in this group:wizard_splitLearners_leanersInGroup_lblconfirmMsg_4_txt{0} instances of {1} have been started.Conclusion screen description if starting several lessonswizard_splitLearners_splitSum{0} instances of this lesson will be created and approximately {1} learners will be allocated to each lesson.Split learners summarywizard_splitLearners_splitSumShort{0} instances of this lesson with {1} learners allocated to eachShorter split learners summarywizard_splitLearners_LearnersPerLesson_lblLearners per lesson:wizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_cb_lblDo you want to split these learners into separate copies of this lesson? wizard_splitLearners_cb_lblwizard_learner_enLiveEdit_cb_lblEnable Live Editwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblYou can add the name and description you would like the learners to see for this lesson.Step 2 descriptionwizard_learner_enpres_cb_lblAllow Learners to see who is onlineCheckbox label for presencewizard_wkspc_date_modified_lblLast modified: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/es_ES_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3start_btnComenzar ahoraStart button to start new lessonsummery_design_lblSecuencia: Label for summery heading of selected design field.summery_course_lblGrupo:Label for summery heading of selected course field.sys_error_msg_startNo se pudo crear una lección.Common System error message starting linesys_error_msg_finish¿Desea enviar un reporte de error al servidor? Este reporte ayudará a los programadores a determinar el error.Common System error message finish paragraphsys_errorError de sistemaSystem Error elert window titleprev_btn< AnteriorPrevious step buttonnext_btnContinuar >Next step buttonsummery_class_lblSubgrupoLabel for summery heading of selected class field.cancel_btnCancelarCancel button to exit wizardclose_btnCerrarClose button to close windowtitle_lblTítuloNew Lesson titledesc_lblDescripciónNew Lesson descriptionlearner_lblEstudiantesHeading for list of class learnersstaff_lblTutoresHeading for list of class staffsummery_lblResúmenHeading for summery outlinews_RootRaizRoot folder title for workspacews_tree_mywspMi Espacio de TrabajoThe root level of the workspace treewizardTitle_2_lblDetalles de la LecciónStep 2 screen titlewizardTitle_3_lblSeleccione Estudiantes y TutoresStep 3 screen titlewizardTitle_4_lblConfirmar Detalles de LecciónStep 4 screen titlewizardTitle_x_lblLección: {0}Confirmation screen titleal_alertAtenciónGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2El título de la lección es necesario.Message when title field is empty on Step 2al_validation_msg3_1No se ha seleccionado curso o clase.Message when no course/class is selected in Step 3al_validation_msg3_2Debe haber por lo menos un tutor y estudiante seleccionadoMessage when either no staff/learner users are selected in Step 3.wizardDesc_2_lblAgrege el nombre y descripción deseado para esta lección. Este nombre será usado por los estudiantes para seleccionar la lección.Step 2 descriptionwizardDesc_3_lblDes-seleccionar a los estudiantes y tutores que no quiera incluir en esta lección.Step 3 descriptionwizardDesc_4_lblPuede empezar su lección en un tiempo determinado o presione en Comenzar para empezar su lección ahora mismo.Step 4 descriptionconfirmMsg_1_txtLa lección {0} ha sido iniciada. Conclusion screen description if lesson startedconfirmMsg_2_txtLa lección {0} comenzará en {1}. Conclusion screen description if lesson scheduledconfirmMsg_3_txtLa lección {0} ha sido creada pero no ha comenzado todavía. Conclusion screen description if lesson created but not startedsummery_title_lblTítulo: Label for summery heading of defined title.summery_desc_lblDescripción: Label for summery heading of defined description.al_validation_schstartNo se ha seleccionado fecha. Por favor seleccione la fecha y la hora, luego pulse el botón PlanMessage when no date is selected starting a lesson by schedule.summery_staff_lblTutores:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblEstudiantes:Label for summery heading of number of selected learners in the lesson class.al_sendEnviarOK on system error dialogwizardTitle_1_lblSeleccione la secuenciaStep 1 screen titleal_validation_msg1Se debe seleccionar una secuencia válidaMessage when no design is selected on step 1wizardDesc_1_lblLa estructura de directorios contiene las secuencias que usted puede utilizar para crear una lección. Seleccione una y pulse en el siguiente botón para continuar.Step 1 descriptionwizard_learner_expp_cb_lblActivar Portfolio Export para estudiantesLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSeleccionar todosLabel for select all check box used to select all staff or learner users in list.al_validation_schtimeLa hora entrada no es válida.Alert message when user enters an invalid time for schedule startdate_lblFechaLabel for Schedule Date fieldtime_lblHora (horas : minutos)Label for Schedule Time fieldlearners_group_name{0} estudiantesGroup name for the class's learners group.staff_group_name{0} tutoresGroup name for the class's staff group.addmore_btnAgregar una nueva lecciónButton to add another lesson, return to first step.finish_btnEmpezar en SeguimientoFinish button to complete wizardwizard_learner_enpres_cb_lblPermitir ver que alumnos estan onlineCheckbox label for presencewizard_splitLearners_splitSum{0} copias de esta lección serán creadas y aproximadamente {1} estudiantes serán incluidos en cada lección.Split learners summarywizard_splitLearners_splitSumShort{0} copias de la lección con {1} estudiantes en cada unaShorter split learners summaryconfirmMsg_4_txt{0} copias de {1} has sido comenzadas.Conclusion screen description if starting several lessonswizard_splitLearners_cb_lbl¿Desea dividir a los estudiantes generando varias copiasde la misma lección?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblEstudiantes en este grupowizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblEstudiantes por lecciónwizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblHabilitar Edición en Vivowizard_learner_enLiveEdit_cb_lblschedule_cb_lblComenzar en fecha específicaLabel for schedule checkboxwizard_wkspc_date_modified_lblÚltimo cambio: {0} Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/fr_FR_dictionary.xml 12 Jan 2010 01:20:09 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3start_btnCommencer maintenantStart button to start new lessonwizardTitle_1_lblChoisir la séquenceStep 1 screen titleal_validation_msg1Une séquence valide doit être sélectionnée.Message when no design is selected on step 1wizardDesc_1_lblLa structure des dossiers ci-dessous contient les séquences pour lesquelles vous pouvez créer une leçon. Choisissez-en un et cliquez sut le bouton Suivant pour continuer.Step 1 descriptionfinish_btnDébuter en mode supervisionFinish button to complete wizardsummery_design_lblSéquence:Label for summery heading of selected design field.summery_course_lblGroupe:Label for summery heading of selected course field.summery_class_lblSousgroupe:Label for summery heading of selected class field.learners_group_nameapprenantsGroup name for the class's learners group.wizard_selAll_cb_lblSélectionner toutLabel for select all check box used to select all staff or learner users in list.staff_group_nameencadrantsGroup name for the class's staff group.wizard_learner_expp_cb_lblAutorise l'exportation pour l'apprenantLabel for Enable export portfolio for LearnerwizardDesc_2_lblVous pouvez ajouter le nom et la description que les étudiants verront pour cette leçon.Step 2 descriptionaddmore_btnAjouter une leçonButton to add another lesson, return to first step.confirmMsg_1_txt{0} a commencé.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} a été planifié pour {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} a été créé but n'a pas encore commencé.Conclusion screen description if lesson created but not startedsummery_title_lblTitre:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_staff_lblEnseignant(s):Label for summery heading of number of selected staff in the lesson class.summery_learners_lblApprenants:Label for summery heading of number of selected learners in the lesson class.al_sendEnvoyerOK on system error dialogdate_lblDateLabel for Schedule Date fieldtime_lblTemps (Heures : Minutes)Label for Schedule Time fieldal_validation_schtimeVeuillez entrer une heure valide.Alert message when user enters an invalid time for schedule startwizardDesc_4_lblVous pouvez commencer la leçon tout de suite en cliquant sur le bouton Début. Vous pouvez aussi planifier une heure de début pour cette leçon.Step 4 descriptional_validation_schstartAucune date sélectionnée. Veuillez choisir un jour et une heure, puis cliquer sur le bouton HoraireMessage when no date is selected starting a lesson by schedule.sys_error_msg_startIl n'a pas été possible de créer la leçon.Common System error message starting linesys_error_msg_finishVoulez-vous envoyer un rapport d'erreur?Common System error message finish paragraphsys_errorErreur systèmeSystem Error elert window titleprev_btn< Préc.Previous step buttonnext_btnSuiv. >Next step buttoncancel_btnAbandonnerCancel button to exit wizardclose_btnFermerClose button to close windowtitle_lblTitreNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblApprenantsHeading for list of class learnersstaff_lblEnseignantsHeading for list of class staffschedule_cb_lblHoraireLabel for schedule checkboxsummery_lblRésuméHeading for summery outlinews_RootRacineRoot folder title for workspacews_tree_mywspMon Espace de travailThe root level of the workspace treewizardTitle_2_lblDétails de la leçonStep 2 screen titlewizardTitle_4_lblConfirmez les détails de la leçonStep 4 screen titlewizardTitle_x_lblLeçon: {0}Confirmation screen titleal_alertAvertissementGeneric title for Alert windowal_cancelAbandonnerCancel on alert dialogal_confirmConfirmerTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Le titre est un champ obligatoire.Message when title field is empty on Step 2al_validation_msg3_1Ni classe ni cours n'ont été sélectionnés.Message when no course/class is selected in Step 3wizard_learner_enpres_cb_lblActiver le contrôle de présenceCheckbox label for presencewizardTitle_3_lblChoisissez les étudiants et les moniteurs (superviseurs)Step 3 screen titleal_validation_msg3_2Il doit y avoir au moins un moniteur (superviseur) et un apprenant sélectionnés.Message when either no staff/learner users are selected in Step 3.wizardDesc_3_lblVous pouvez choisir de désélectionner étudiants et moniteurs de cette classe en décochant les boîtes près de leur nom.Step 3 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/hu_HU_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3desc_lblLeírásNew Lesson descriptionsummery_design_lblTervezés:Label for summery heading of selected design field.summery_title_lblCím:Label for summery heading of defined title.summery_desc_lblLeírás:Label for summery heading of defined description.summery_course_lblKurzus:Label for summery heading of selected course field.summery_class_lblOsztály:Label for summery heading of selected class field.summery_staff_lblMunkatársak:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblTamulók:Label for summery heading of number of selected learners in the lesson class.al_sendKüldésOK on system error dialogdate_lblDátumLabel for Schedule Date fieldtime_lblIdő (óra : perc)Label for Schedule Time fieldal_validation_schtimeKérem, írja be az érvényes időt!Alert message when user enters an invalid time for schedule startlearner_lblTanulókHeading for list of class learnerssys_error_msg_finishKívánja elküldeni a hibajelentést?Common System error message finish paragraphsys_errorRendszerhibaSystem Error elert window titleprev_btn< ElőzőPrevious step buttonnext_btnKövetkező >Next step buttonfinish_btnVégeFinish button to complete wizardcancel_btnMégseCancel button to exit wizardclose_btnBezárásClose button to close windowstart_btnKezdés és befejezésStart button to start new lessontitle_lblCímNew Lesson titlestaff_lblSzemélyekHeading for list of class staffschedule_cb_lblÜtemezésLabel for schedule checkboxsummery_lblÖsszefoglalóHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspAz én munkaterületemThe root level of the workspace treewizardTitle_2_lblA lecke részleteiStep 2 screen titlewizardTitle_3_lblHallgatók és személyek kiválasztásaStep 3 screen titlewizardTitle_4_lblA lecke részleteinek jóváhagyásaStep 4 screen titlewizardTitle_x_lblLecke {0}Confirmation screen titleal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseCancel on alert dialogal_confirmJóváhagyásTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2A cím kötelező mezőMessage when title field is empty on Step 2confirmMsg_1_txt{0} elindultConclusion screen description if lesson startedwizard_learner_expp_cb_lblEngedélyezi a diák portfóloójának exportálásátLabel for Enable export portfolio for Learnersys_error_msg_startNem tudta létrerhozni a leckét.Common System error message starting lineal_validation_msg3_1Nem választott kurzust vagy osztályt.Message when no course/class is selected in Step 3al_validation_msg3_2Legalább egy munkatársat és egy tanulót kell választania.Message when either no staff/learner users are selected in Step 3.wizardTitle_1_lblVálasszon jelenetet!Step 1 screen titleal_validation_msg1Egy érvényes jelenetet kell választania.Message when no design is selected on step 1wizardDesc_1_lblAz alábbi könyvtárszerkezet tartalmazza azokat a jeleneteket, melyekhez leckét készíthet. Válasszon egyet közülük, majd a folytatáshoz kattintson a Tovább gombra!Step 1 descriptionwizardDesc_2_lbl Ha szeretné, hogy a diákok nevet és leírást lássanak ehhez a leckéhez, itt megadhatja ezeket.Step 2 descriptionwizardDesc_3_lblTörölheti diákok vagy munkatársak kiválasztását ennél az osztálynál, ha üresen hagyja a nevük melletti jelölőnégyzetet.Step 3 descriptionwizardDesc_4_lblA Start gomb lenyomásával azonnal elindíthatja ezt a leckét. Ütemezheti is a leckét, hogy egy bizonyos dátum adott időpontjában induljon.Step 4 descriptionconfirmMsg_2_txtA {0} ütemezése ekkorra: {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txtA {0} létrehozása megtörtént, de elindítva még nincs.Conclusion screen description if lesson created but not startedal_validation_schstartNem választott dátumot. Kérem, válasszon dátumot és időpontot, mielőtt az Ütemezés gombra kattint!Message when no date is selected starting a lesson by schedule.wizard_selAll_cb_lblMindent kiválasztLabel for select all check box used to select all staff or learner users in list.learners_group_nameA tanulók száma: {0}Group name for the class's learners group.staff_group_nameA munkatársak száma: {0}Group name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/it_IT_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3finish_btnInizia in MonitorFinish button to complete wizardal_validation_msg1Occorre selezionare una sequenza valida.Message when no design is selected on step 1summery_design_lblSequenza:Label for summery heading of selected design field.summery_course_lblGruppo:Label for summery heading of selected course field.summery_class_lblSottogruppo:Label for summery heading of selected class field.wizard_selAll_cb_lblSeleziona TuttoLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblConsenti Esporta Portfolio per lo studenteLabel for Enable export portfolio for Learnerstart_btnInizia oraStart button to start new lessonwizardTitle_1_lblSeleziona la sequenzaStep 1 screen titleal_validation_schstartNessuna data è stata selezionata. Scegli la data e l'ora, quindi clicca su Programma.Message when no date is selected starting a lesson by schedule.staff_group_name{0} staffGroup name for the class's staff group.wizardTitle_4_lblConferma dettagli lezioneStep 4 screen titleal_validation_msg2Occorre inserire il Titolo della lezione.Message when title field is empty on Step 2sys_error_msg_startNon è stato possibile creare una lezione.Common System error message starting linesys_error_msg_finishVuoi inviare un report di questo errore?Common System error message finish paragraphsys_errorErrore di SistemaSystem Error elert window titleprev_btn<PrecedentePrevious step buttonnext_btnSuccessivo>Next step buttoncancel_btnAnnullaCancel button to exit wizardclose_btnChiudiClose button to close windowtitle_lblTitoloNew Lesson titledesc_lblDescrizioneNew Lesson descriptionlearner_lblStudentiHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblProgrammaLabel for schedule checkboxsummery_lblSommarioHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspLa mia Area di lavoroThe root level of the workspace treewizardTitle_2_lblDettagli sulla LezioneStep 2 screen titlewizardTitle_3_lblScegli Studenti e StaffStep 3 screen titlewizardTitle_x_lblLezione: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelAnnullaCancel on alert dialogal_confirmConfermaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg3_1Non è stato scelto alcun corso o classe.Message when no course/class is selected in Step 3al_validation_msg3_2Occorre scegliere almeno un membro di staff e uno studente.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblPuoi aggiungere il nome e la descrizione che gli studenti utilizzeranno per questa lezione.Step 2 descriptionwizardDesc_3_lblDeseleziona studenti e staff che non vuoi includere in questa lezione.Step 3 descriptionwizardDesc_4_lblPremendo il pulsante Inizia puoi cominciare subito la lezione. Puoi anche programmare l'inizio della lezione per una particolare data e ora.Step 4 descriptionconfirmMsg_1_txt{0} è iniziataConclusion screen description if lesson startedconfirmMsg_2_txt{0} è stata programmata per {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}è stata creata ma non è ancora iniziata.Conclusion screen description if lesson created but not startedsummery_title_lblTitolo:Label for summery heading of defined title.summery_desc_lblDescrizione:Label for summery heading of defined description.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblStudenti:Label for summery heading of number of selected learners in the lesson class.al_sendInviaOK on system error dialoglearners_group_name{0} studentiGroup name for the class's learners group.wizardDesc_1_lblLa seguente directory contiene le sequenze per le quali puoi creare una lezione. Scegline una e clicca sul pulsante Successivo per continuare.Step 1 descriptiondate_lblDataLabel for Schedule Date fieldtime_lblTempo (Ore : Minuti)Label for Schedule Time fieldal_validation_schtimeInserisci un valore valido per il tempo, prego.Alert message when user enters an invalid time for schedule startaddmore_btnAggiungi un'altra lezioneButton to add another lesson, return to first step.wizard_learner_enpres_cb_lblConsenti agli studenti di vedere chi è on lineCheckbox label for presencewizard_splitLearners_cb_lblVuoi dividere questi studenti in copie separate di questa lezione?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblStudenti in questo gruppo:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblStudenti per lezione:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblAbilita modifica livewizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSumSaranno create {0} istanze di questa lezione e circa {1} studenti saranno assegnati a ogni lezione. Split learners summarywizard_splitLearners_splitSumShort{0} istanze di questa lezione con {1} studenti assegnati a ciascunaShorter split learners summaryconfirmMsg_4_txt{0} istanze di {1} sono cominciate.Conclusion screen description if starting several lessons \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ja_JP_dictionary.xml 12 Jan 2010 01:20:07 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3summery_learners_lbl学習者:Label for summery heading of number of selected learners in the lesson class.al_send送信OK on system error dialogal_validation_schtime正しい時刻を入力してください。Alert message when user enters an invalid time for schedule startdate_lbl日付Label for Schedule Date fieldtime_lbl時刻 (時 : 分)Label for Schedule Time fieldwizard_selAll_cb_lblすべて選択Label for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl学習者によるポートフォリオのエクスポートを許可しますLabel for Enable export portfolio for Learnerlearners_group_name{0} 学習者Group name for the class's learners group.al_validation_msg2タイトルが必要です。Message when title field is empty on Step 2sys_error_msg_startレッスンの作成に失敗しました。Common System error message starting linesys_error_msg_finishエラーレポートを送信しますか?Common System error message finish paragraphsys_errorシステムエラーSystem Error elert window titleprev_btn< 前へPrevious step buttonnext_btn次へ >Next step buttonfinish_btnモニタの開始Finish button to complete wizardcancel_btnキャンセルCancel button to exit wizardclose_btn閉じるClose button to close windowstart_btnすぐに開始Start button to start new lessontitle_lblタイトルNew Lesson titledesc_lbl説明New Lesson descriptionlearner_lbl学習者Heading for list of class learnersschedule_cb_lblスケジュールLabel for schedule checkboxsummery_lbl要約Heading for summery outlinews_RootルートRoot folder title for workspacews_tree_mywspワークスペースThe root level of the workspace treewizardTitle_1_lblシーケンス選択Step 1 screen titlewizardTitle_2_lblレッスンの詳細Step 2 screen titlewizardTitle_3_lbl学習者とスタッフの選択Step 3 screen titlewizardTitle_4_lblレッスンの詳細確認Step 4 screen titlewizardTitle_x_lblレッスン: {0}Confirmation screen titleal_alert警告Generic title for Alert windowal_cancelキャンセルCancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1有効なシーケンスを選択してください。Message when no design is selected on step 1al_validation_msg3_1コースかグループが選択されていません。Message when no course/class is selected in Step 3al_validation_msg3_2スタッフか学習者を、少なくとも 1 人は選択する必要があります。Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lbl下のディレクトリにはレッスンの作成に利用できるシーケンスが存在します。1 つ選択して 次へ をクリックしてください。Step 1 descriptionwizardDesc_2_lbl学習者に参照して欲しいレッスン名と説明をつけ加えることができます。Step 2 descriptionwizardDesc_3_lbl学習者やスタッフの名前の横にあるチェックを消すと、このクラスから外すことができます。Step 3 descriptionconfirmMsg_1_txt{0} は開始されました。Conclusion screen description if lesson startedconfirmMsg_3_txt{0} は作成されましたが、まだ開始していません。Conclusion screen description if lesson created but not startedal_validation_schstart日付が選択されていません。日時を指定して スケジュール ボタンをクリックしてください。Message when no date is selected starting a lesson by schedule.summery_design_lblシーケンス:Label for summery heading of selected design field.summery_title_lblタイトル:Label for summery heading of defined title.summery_desc_lbl説明:Label for summery heading of defined description.summery_course_lblグループ:Label for summery heading of selected course field.summery_class_lblサブグループ:Label for summery heading of selected class field.summery_staff_lblスタッフ:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} スタッフGroup name for the class's staff group.staff_lblスタッフHeading for list of class staffconfirmMsg_2_txt{0} は {1} に開始する予定です。Conclusion screen description if lesson scheduledwizardDesc_4_lbl開始 ボタンをクリックすると、すぐにレッスンを開始できます。もしくは、レッスン開始日時を指定して実行することもできます。Step 4 descriptionaddmore_btn別のレッスンを追加Button to add another lesson, return to first step. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ko_KR_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3addmore_btn레슨 추가Button to add another lesson, return to first step.sys_error_msg_start당신은 강좌를 생성할 수 없습니다.Common System error message starting linesys_error_msg_finish오류 보고서를 보내기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error elert window titleprev_btn<이전Previous step buttonnext_btn다음>Next step buttoncancel_btn취소Cancel button to exit wizardclose_btn닫기Close button to close windowtitle_lbl제목`New Lesson titledesc_lbl설명New Lesson descriptionlearner_lbl학습자들Heading for list of class learnersstaff_lbl교수자Heading for list of class staffschedule_cb_lbl일정Label for schedule checkboxsummery_lbl요약Heading for summery outlinews_Root최상위 폴더Root folder title for workspacews_tree_mywsp내 작업공간The root level of the workspace treewizardTitle_2_lbl과목 상세Step 2 screen titlewizardTitle_3_lbl학습자과 교수자 선택Step 3 screen titlewizardTitle_4_lbl과정 상세 확인Step 4 screen titlewizardTitle_x_lbl과정:{0}Confirmation screen titleal_alert주의Generic title for Alert windowal_cancel취소Cancel on alert dialogal_confirm확인To Confirm title for LFErroral_validation_msg2제목은 필요한 항목입니다.Message when title field is empty on Step 2al_validation_msg3_1과정 혹은 분반이 선택되지 않았습니다.Message when no course/class is selected in Step 3al_validation_msg3_2최소한 1명의 교수자와 학습자가 선택되어야만 합니다.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lbl이 강좌에서 학습자들이 볼 수 있도록 이름과 설명을 추가할 수 있습니다.Step 2 descriptionwizardDesc_3_lbl당신은 학습자나 교수자의 이름 옆에 있는 박스에 채크를 해지 함으로써 이 분반에서 학습자나 교수자를 선택해제 할수 있습니다.Step 3 descriptionwizardDesc_4_lbl시작버튼을 클릭해서 강좌를 시작할 수 있습니다. 또는 정해진 일시에 강좌가 시작될 수 있도록 일정을 잡을 수 있습니다.Step 4 descriptionconfirmMsg_1_txt{0} 가 시작되었습니다.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} 은 {1}로 일정이 정해져 있습니다.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}은 생성되었지만 시작되지 않았습니다.Conclusion screen description if lesson created but not startedsummery_title_lbl제목Label for summery heading of defined title.summery_desc_lbl설명Label for summery heading of defined description.summery_staff_lbl교수자Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl학습자Label for summery heading of number of selected learners in the lesson class.al_send보내기OK on system error dialogwizard_learner_expp_cb_lbl학습자에 대한 포트폴리오 내보내기 활성화Label for Enable export portfolio for LearnerwizardDesc_1_lbl다음 디렉토리 구조는 학습을 위해서 생성할 수 있는 학습설계를 포함하고 있습니다. 계속하기 위해서는 하나를 선택한 후 다음버튼을 클릭하세요.Step 1 descriptional_validation_schstart아무 날짜가 선택되지 않았습니다. 날짜와 시간을 선택한 다음 예약일정버튼을 클릭하세요.Message when no date is selected starting a lesson by schedule.summery_design_lbl시퀀스Label for summery heading of selected design field.summery_course_lbl그룹Label for summery heading of selected course field.summery_class_lbl하위그룹Label for summery heading of selected class field.wizard_selAll_cb_lbl모두 선택Label for select all check box used to select all staff or learner users in list.finish_btn모니터에서 시작Finish button to complete wizardstart_btn지금 시작Start button to start new lessonwizardTitle_1_lbl시퀀스 선택Step 1 screen titleal_validation_msg1올바른 시퀀스를 선택해야 합니다.Message when no design is selected on step 1learners_group_name{0} 학습자들Group name for the class's learners group.staff_group_name{0} 스태프Group name for the class's staff group.al_ok확인OK on alert dialogal_validation_schtime올바른 시간을 입력하세요.Alert message when user enters an invalid time for schedule startdate_lbl날짜Label for Schedule Date fieldtime_lbl시간(시:분)Label for Schedule Time field \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/mi_NZ_dictionary.xml 12 Jan 2010 01:20:07 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀEOK on alert dialogal_cancelWhakakoreCancel on alert dialogcancel_btnWhakakoreCancel button to exit wizardlearners_group_name{0} ākongaGroup name for the class's learners group.staff_group_name{0} kaiakoGroup name for the class's staff group.summery_class_lblRōpū ā-Roto:Label for summery heading of selected class field.wizard_selAll_cb_lblTīpako te KatoaLabel for select all check box used to select all staff or learner users in list.ws_RootWhaiaronga IomatuaRoot folder title for workspacesummery_title_lblTaitaraLabel for summery heading of defined title.summery_desc_lblWhakamāramaLabel for summery heading of defined description.summery_course_lblRōpūLabel for summery heading of selected course field.summery_learners_lblĀkongaLabel for summery heading of number of selected learners in the lesson class.al_sendTukunaOK on system error dialogdate_lblTe RāLabel for Schedule Date fieldtime_lblTe Wā (Hāora: Miniti)Label for Schedule Time fieldal_validation_schtimeTapiritia te wā.Alert message when user enters an invalid time for schedule startsys_error_msg_startKāore i tāea e koe te whakarite akoranga.Common System error message starting linesys_error_msg_finishKei te pīrangi ki te tuku pūrongo hapa?Common System error message finish paragraphsys_errorHapa PūnahaSystem Error elert window titleprev_btn< ki muriPrevious step buttonfinish_btnTimataria ki AroturukiFinish button to complete wizardclose_btnKatiaClose button to close windowstart_btnTimatariaStart button to start new lessontitle_lblTaitaraNew Lesson titledesc_lblWhakamāramaNew Lesson descriptionlearner_lblĀkongaHeading for list of class learnersstaff_lblKaiakoHeading for list of class staffschedule_cb_lblWhakaritengaLabel for schedule checkboxsummery_lblWhakarāpopotongaHeading for summery outlinews_tree_mywspTāku PapamahiThe root level of the workspace treewizardTitle_1_lblKōwhiria te AkorangaStep 1 screen titlewizardTitle_2_lblTaipitopito AkorangaStep 2 screen titlewizardTitle_3_lblKōwhiria ngā Ākonga me ngā KaiakoStep 3 screen titlewizardTitle_4_lblWhakatūturutia ngā Taipitopito AkorangaStep 4 screen titlewizardTitle_x_lblAkoranga: {0}Confirmation screen titleal_alertKia MatohiGeneric title for Alert windowal_confirmWhakatūturutiaTo Confirm title for LFErroral_validation_msg1Kōwhiria he hoahoatanga tūturu.Message when no design is selected on step 1al_validation_msg2He pūmautanga tō te āpure Taitara.Message when title field is empty on Step 2al_validation_msg3_1Kāhore i kōwhiri akoranga, ākonga rānei.Message when no course/class is selected in Step 3wizardDesc_2_lblKa taea te tāpiri i te ingoa me te whakaahuatanga o te akoranga e hiahia ana koe kia kite ngā ākonga. Step 2 descriptionwizardDesc_4_lblMā te pāwhiri i te pātene Tīmata ka timata wawe tonu te akoranga. Ka taea hoki te whakarite kia tīmataria te akoranga i tētehi rā, i tētahi wā ake hoki.Step 4 descriptionconfirmMsg_1_txt{0} i tīmatariaConclusion screen description if lesson startedconfirmMsg_2_txt{0} i whakaritea mō {1}Conclusion screen description if lesson scheduledal_validation_schstartKāore tētehi rā i kōwhiria. Kōwhiria koa tētehi rā me tētehi wā, ka pāwhiri ai i te Tīmata. Message when no date is selected starting a lesson by schedule.summery_design_lblAkorangaLabel for summery heading of selected design field.wizard_wkspc_date_modified_lblkētanga mutunga: {0}Shows the last modified datetime for a Learning Design.addmore_btnTāpiri AkorangaButton to add another lesson, return to first step.al_validation_msg3_2Kōwhiria kia kotahi te kaiako, ākonga hoki i te itinga rawa.Message when either no staff/learner users are selected in Step 3.wizard_learner_expp_cb_lblWhakaaetia te kawe kōpaki atu mō ngā ākongaLabel for Enable export portfolio for LearnerconfirmMsg_3_txt{0} i hangaia ēngari kāhore anō kia tīmatariaConclusion screen description if lesson created but not startednext_btnki mua >Next step buttonwizardDesc_3_lblKa taea te whakakore ākonga me ngā kaiako i tēnei akoranga mā te whakawātea i te pouaka taki i te taha o ngā ingoa.Step 3 descriptionwizardDesc_1_lblKa noho ngā hoahoatanga hei hanga akoranga ki te hanganga whaiaronga i raro nei. Kōwhiria tētehi, ka pāwhiri ai i te patene ka whai ake kia haere tonu atu.Step 1 descriptionsummery_staff_lblAroturuki:Label for summery heading of number of selected staff in the lesson class.wizard_learner_enpres_cb_lblTukuna ngā ākonga kia kite ko wai kua tuihono maiCheckbox label for presencewizard_splitLearners_cb_lblKa tino pīrangi ki te wehewehe i ēnei ākonga ki ngā tāruatanga motuahake o tēnei akoranga?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblĀkonga i roto i tēnei rōpū:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblTapeke ākonga i tēnei akoranga:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblWhakahohe Whakatikanga i Tēnei Wā Tonuwizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSumka hangaia {0} ngā tauira o tēnei akoranga me te tohatoha pea i te {1} ākonga ki ia akoranga Split learners summarywizard_splitLearners_splitSumShortka hangaia {0} ngā tauira o tēnei akoranga me te tohatoha i te {1} ākonga ki ia akoranga Shorter split learners summaryconfirmMsg_4_txtkua tīmataria {0} ngā tauira o te {1}. Conclusion screen description if starting several lessons \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ms_MY_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startAnda tidak boleh mencipta kelasCommon System error message starting linesys_error_msg_finishAdakah anda mahu menghantar laporan ralat?Common System error message finish paragraphsys_errorRalat SistemSystem Error elert window titleprev_btn< BelakangPrevious step buttonnext_btnHapadan >Next step buttonfinish_btnMula di PaparanFinish button to complete wizardcancel_btnBatalCancel button to exit wizardclose_btnTutupClose button to close windowstart_btnMula SekarangStart button to start new lessontitle_lblTajukNew Lesson titledesc_lblDeskripsiNew Lesson descriptionlearner_lblPelajarHeading for list of class learnersstaff_lblStafHeading for list of class staffschedule_cb_lblJadualLabel for schedule checkboxsummery_lblRingkasanHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspRuang kerja SayaThe root level of the workspace treewizardTitle_1_lblPilih TurutanStep 1 screen titlewizardTitle_2_lblPerincian KelasStep 2 screen titlewizardTitle_3_lblPilih Pelajar dan StafStep 3 screen titlewizardTitle_4_lblSahkan Perincian KelasStep 4 screen titlewizardTitle_x_lblKelas {0}Confirmation screen titleal_alertAletGeneric title for Alert windowal_cancelBatalCancel on alert dialogal_confirmTerimaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Turutan sah mesti dipilihMessage when no design is selected on step 1al_validation_msg2Tajuk adalah ruangan perluMessage when title field is empty on Step 2al_validation_msg3_1Tiada kursus atau kelas dipilih.Message when no course/class is selected in Step 3al_validation_msg3_2Mesti terdapat sekurang-kurangnya 1 ahli staf dan pelajar dipilih.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblAnda boleh menambah nama dan diskripsi yang mahu dipaparkan kepada pelajar untuk kelasi ini.Step 2 descriptionwizardDesc_3_lblAnda boleh memilih untuk tidak memilih pelajar dan staf dari kelas ini dengan tidak menanda box di sebelah nama mereka.Step 3 descriptionconfirmMsg_1_txt{0} telah bermula.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} telah di jadualkan untuk {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} telah di cipta tetapi belum bermula lagi.Conclusion screen description if lesson created but not startedal_validation_schstartTiada tarik dipilih. Sila pilih tarikh dan masa, dan klik butang Jadual.Message when no date is selected starting a lesson by schedule.summery_design_lblTurutan:Label for summery heading of selected design field.summery_title_lblTajuk:Label for summery heading of defined title.summery_desc_lblDiskripsi:Label for summery heading of defined description.summery_course_lblKumpulan:Label for summery heading of selected course field.summery_class_lblSub kumpulan:Label for summery heading of selected class field.summery_staff_lblStaf:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblPelajar:Label for summery heading of number of selected learners in the lesson class.al_sendKirimOK on system error dialogal_validation_schtimeSila masukkan masa yang sah.Alert message when user enters an invalid time for schedule startdate_lblTarikhLabel for Schedule Date fieldtime_lblMasa (Jam : Minit)Label for Schedule Time fieldwizard_selAll_cb_lblPilih SemuaLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblBenarkan eksport portfolio untuk pelajarLabel for Enable export portfolio for Learnerlearners_group_name{0} pelajarGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.wizardDesc_4_lblDengan menekan butang Mula anda boleh terus memulakan kelas. Anda juga boleh menjadualkan kelas untuk bermula pada tarikh dan masa tertentu.Step 4 descriptionwizardDesc_1_lblStruktur direktori di bawah mengandungi turutan yang membenarkan anda membuat kelas. Pilih satu dan klik pada butang hadapan untuk sambung.Step 1 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/nl_BE_dictionary.xml 12 Jan 2010 01:20:09 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startHet is niet gelukt om een les te creëren.Common System error message starting linesys_error_msg_finishWil je een foutenrapport verzenden ?Common System error message finish paragraphsys_errorSteemfoutSystem Error elert window titleprev_btn< VorigePrevious step buttonnext_btnVolgende >Next step buttoncancel_btnAnnuleerCancel button to exit wizardclose_btnSluitenClose button to close windowtitle_lblTitelNew Lesson titledesc_lblOmschrijvingNew Lesson descriptionlearner_lblLeerlingenHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblSchemaLabel for schedule checkboxsummery_lblSamenvattingHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMijn WerkruimteThe root level of the workspace treewizardTitle_2_lblDetails van de lesStep 2 screen titlewizardTitle_3_lblKies leerlingen en staffStep 3 screen titlewizardTitle_4_lblBevestig details van de lesStep 4 screen titlewizardTitle_x_lblLes {0}Confirmation screen titleal_alertWaarschuwingGeneric title for Alert windowal_cancelAnnuleerCancel on alert dialogal_confirmBevestigTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Titel is een verplicht veld.Message when title field is empty on Step 2al_validation_msg3_1Er werd geen cursus of klas aangeduid.Message when no course/class is selected in Step 3al_validation_msg3_2Er moet ten minste 1 stafflid en leerling worden aangeduid.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblJe kan een naam en omschrijving toevoegen die de leerlingen voor deze les te zien krijgen.Step 2 descriptionwizardDesc_3_lblJe kan leerlingen en staff uit deze klas verwijderen de checkbox bij hun naam leeg te maken.Step 3 descriptionwizardDesc_4_lblDoor op de startknop te drukken kan je deze les nu beginnen. Je kan ook plannen om de les te starten op bepaalde dag en tijd.Step 4 descriptionconfirmMsg_1_txt{0} is gestart.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} is gepland voor {1} .Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} werd aangemaakt, maar is nog niet gestart.Conclusion screen description if lesson created but not startedal_validation_schstartEr werd nog geen tijdstip aangeduid. Kies een datum en tijd, en klik op start.Message when no date is selected starting a lesson by schedule.summery_design_lblOntwerp:Label for summery heading of selected design field.summery_title_lblTital:Label for summery heading of defined title.summery_desc_lblOmschrijving:Label for summery heading of defined description.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblLeerlingen:Label for summery heading of number of selected learners in the lesson class.al_sendVerzendenOK on system error dialogfinish_btnStart in monitorFinish button to complete wizardstart_btnNu startenStart button to start new lessonwizardTitle_1_lblKies een sequentieStep 1 screen titleal_validation_msg1Kies een geldige sequentie.Message when no design is selected on step 1wizardDesc_1_lblDe mappenstructuur hieronder bevat de sequenties waarvan je een les kan maken. Kies er een en klik op "volgende" om verder te gaan.Step 1 descriptionwizard_learner_expp_cb_lblExport van student-portfolio mogelijk makenLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblAlles selecterenLabel for select all check box used to select all staff or learner users in list.date_lblDatumLabel for Schedule Date fieldtime_lblTijd (uren : minuten)Label for Schedule Time fieldal_validation_schtimeVoer een geldige tijd in.Alert message when user enters an invalid time for schedule startlearners_group_name{0} studentenGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.summery_course_lblGroep:Label for summery heading of selected course field.summery_class_lblSubgroep:Label for summery heading of selected class field. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/no_NO_dictionary.xml 12 Jan 2010 01:20:08 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizardTitle_1_lblSteg 1 av 3: Velg leksjonStep 1 screen titlewizard_learner_expp_cb_lblTilkobl eksport av mapper for studentenLabel for Enable export portfolio for Learnersummery_design_lblSekvens:Label for summery heading of selected design field.summery_course_lblGruppe:Label for summery heading of selected course field.wizardTitle_4_lblSteg 3 av 3: Bekreft detaljene til denne leksjonenStep 4 screen titlestart_btnStart nåStart button to start new lessonwizard_selAll_cb_lblVelg alleLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} studenterGroup name for the class's learners group.al_validation_msg1En gyldig sekvens må velges.Message when no design is selected on step 1summery_class_lblUndergruppe:Label for summery heading of selected class field.confirmMsg_2_txt{0} har blitt planlagt for å starte den {1}.Conclusion screen description if lesson scheduledal_validation_schtimeVennligst angi et gyldig tidspunkt.Alert message when user enters an invalid time for schedule startwizardTitle_x_lblLeksjon: {0}Confirmation screen titleconfirmMsg_1_txt{0} har blitt startet.Conclusion screen description if lesson startedwizardTitle_3_lblSteg 2 av 3: Velg studenter og forelesereStep 3 screen titlefinish_btnStart i kontrollmodusFinish button to complete wizardwizardDesc_1_lblKlikk på en mappe for å se på innholdet. Velg en sekvens og klikk på "Neste" for å fortsette.Step 1 descriptional_validation_msg3_2Det må minimum velges en foreleser og en student.Message when either no staff/learner users are selected in Step 3.wizardDesc_3_lblDu kan velge å legge til/fjerne studenter og forelesere fra denne klassen ved å klikke i ruten ved siden av navnet deres.Step 3 descriptionwizardDesc_2_lblDu kan legge til navn og beskrivelse av den leksjon som du ønsker at studentene skal se.Step 2 descriptionwizardDesc_4_lblVelger du start knappen så starter leksjonen umiddelbart. Du kan også starte leksjonen på et bestemt tidspunkt. Step 4 descriptionconfirmMsg_3_txt{0} har blitt opprettet, men ennå ikke startet.Conclusion screen description if lesson created but not startedal_validation_schstartDet er ikke valgt en dato. Vennligst velg dato og tid og klikk deretter på start.Message when no date is selected starting a lesson by schedule.summery_title_lblTittel:Label for summery heading of defined title.summery_desc_lblBeskrivelse:Label for summery heading of defined description.summery_learners_lblStudenter:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogdate_lblDatoLabel for Schedule Date fieldtime_lblTidspunkt (Timer:Minutter)Label for Schedule Time fieldsys_error_msg_startDu klarte ikke å lage en leksjon.Common System error message starting linesys_error_msg_finishØnsker du å sende en feilrapport ?Common System error message finish paragraphsys_errorFeilSystem Error elert window titleprev_btn<ForrigePrevious step buttonnext_btnNeste>Next step buttoncancel_btnAngreCancel button to exit wizardclose_btnStengClose button to close windowtitle_lblTittelNew Lesson titledesc_lblBeskrivelseNew Lesson descriptionlearner_lblStudenter:Heading for list of class learnersschedule_cb_lblTidsplanLabel for schedule checkboxsummery_lblOppsummeringHeading for summery outlinews_RootRotRoot folder title for workspacews_tree_mywspMitt arbeidsområdeThe root level of the workspace treewizardTitle_2_lblLeksjon detaljerStep 2 screen titleal_cancelAngreCancel on alert dialogal_confirmBekreftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Tittel må fylles ut.Message when title field is empty on Step 2al_validation_msg3_1Ingen kurs eller klasse er valgt.Message when no course/class is selected in Step 3staff_group_name{0} forelesereGroup name for the class's staff group.summery_staff_lblForelesere:Label for summery heading of number of selected staff in the lesson class.staff_lblForelesereHeading for list of class staffal_alertVarselGeneric title for Alert windowaddmore_btnLegg til en ny leksjonButton to add another lesson, return to first step.wizard_learner_enpres_cb_lblKobl til leksjonCheckbox label for presencewizard_splitLearners_cb_lblVil du dele studente inn til egne kopier av leksjonen ?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblStudenter i denne gruppenwizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblStudenter pr leksjonwizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblKoble inn aktiv redigeringwizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSum{0}tilfelle av denne leksjonen vil bli opprettet og omtrent {1}studenter vil bli tilordnet til hver leksjon.Split learners summarywizard_splitLearners_splitSumShort{0} tilfelle av denne leksjonen med {1} studenter tilordnet til hverShorter split learners summaryconfirmMsg_4_txt{0} tilfelle av {1} har blitt startet.Conclusion screen description if starting several lessonswizard_wkspc_date_modified_lblSist modifisert: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/pl_PL_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startNie udało się utworzyć lekcji.Common System error message starting linesys_error_msg_finishCzy chcesz wysłać raport o błędach?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titleprev_btnWsteczPrevious step buttonnext_btnDalejNext step buttonfinish_btnStartFinish button to complete wizardcancel_btnAnulujCancel button to exit wizardclose_btnZakończClose button to close windowstart_btnStartStart button to start new lessontitle_lblTytułNew Lesson titledesc_lblOpisNew Lesson descriptionlearner_lblStudenciHeading for list of class learnersstaff_lblProwadzącyHeading for list of class staffschedule_cb_lblPlan zajęćLabel for schedule checkboxsummery_lblPodsumowanieHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMoje ProjektyThe root level of the workspace treewizardTitle_1_lblWybierz projektStep 1 screen titlewizardTitle_2_lblSzczegóły lekcjiStep 2 screen titlewizardTitle_3_lblWybierz studentów i prowadzącychStep 3 screen titlewizardTitle_4_lblPotwierdź szczegóły lekcjiStep 4 screen titlewizardTitle_x_lblLekcja: {0}Confirmation screen titleal_alertUwagaGeneric title for Alert windowal_cancelAnulujCancel on alert dialogal_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Należy wybrać prawidłowy projektMessage when no design is selected on step 1al_validation_msg2Wymagane jest pole tytułuMessage when title field is empty on Step 2al_validation_msg3_1Żaden kurs ani klasa nie zostały wybraneMessage when no course/class is selected in Step 3al_validation_msg3_2Musi być przynajmniej jeden prowadzący i student wybrany.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblKatalogi zawierają projekty, z których możesz utworzyć lekcję. Wybierz projekt i wciśnij Dalej aby kontynuowaćStep 1 descriptionwizardDesc_2_lblMożesz dodać nazwę i opis lekcji, które bedą widoczne dla studentówStep 2 descriptionwizardDesc_3_lblMożesz wyłączyć studentów i prowadzących klikając na pola wyboru obok ich nazwiskStep 3 descriptionwizardDesc_4_lblMożesz uruchomić lekcję natychmiast poprzez wciśnięcie przysisku Start. Możesz także wybrać dokładną date i godzinę rozpoczęcia lekcjiStep 4 descriptionconfirmMsg_1_txt{0} została uruchomionaConclusion screen description if lesson startedconfirmMsg_2_txt{0} została zaplanowana na {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} została utworzona ale nie uruchomionaConclusion screen description if lesson created but not startedal_validation_schstartNie została wybrana żadna data. Proszę wybierz date i czas, następnie naciśnij start.Message when no date is selected starting a lesson by schedule.summery_design_lblProjektLabel for summery heading of selected design field.summery_title_lblTytuł:Label for summery heading of defined title.summery_desc_lblOpis:Label for summery heading of defined description.summery_course_lblKurs:Label for summery heading of selected course field.summery_class_lblKlasa:Label for summery heading of selected class field.summery_staff_lblProwadzący:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblStudenci:Label for summery heading of number of selected learners in the lesson class.al_sendWysłaneOK on system error dialogal_validation_schtimeWprowadź poprawny forma czasuAlert message when user enters an invalid time for schedule startdate_lblDataLabel for Schedule Date fieldtime_lblCzas (Godziny : Minuty)Label for Schedule Time fieldwizard_selAll_cb_lblZaznacz wszystkoLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblUmożliwia studentom eksport portfolioLabel for Enable export portfolio for Learnerlearners_group_name{0} studentówGroup name for the class's learners group.staff_group_name{0} kadraGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/pt_BR_dictionary.xml 12 Jan 2010 01:20:06 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startVocê não está habilitado para criar a lição.Common System error message starting linesys_error_msg_finishVocê quer enviar um relatório de erro?Common System error message finish paragraphsys_errorErro de sistemaSystem Error elert window titleprev_btn&lt; AnteriorPrevious step buttonnext_btnPróximo &gt;Next step buttonfinish_btnTerminarFinish button to complete wizardcancel_btnCancelarCancel button to exit wizardclose_btnFecharClose button to close windowstart_btnIniciar agoraStart button to start new lessontitle_lblTítuloNew Lesson titledesc_lblDescriçãoNew Lesson descriptionlearner_lblAlunosHeading for list of class learnersstaff_lblCorpo DocenteHeading for list of class staffschedule_cb_lblAgendaLabel for schedule checkboxsummery_lblSumárioHeading for summery outlinews_RootRaizRoot folder title for workspacews_tree_mywspMeu Espaço de TrabalhoThe root level of the workspace treewizardTitle_1_lblSelecione a sequênciaStep 1 screen titlewizardTitle_2_lblDetalhes da LiçãoStep 2 screen titlewizardTitle_3_lblSelecione os Alunos e Corpo DocenteStep 3 screen titlewizardTitle_4_lblConfirme os Detalhes da LiçãoStep 4 screen titlewizardTitle_x_lblLição: {0}Confirmation screen titleal_alertAlertaGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Uma sequência válida deve ser selecionadaMessage when no design is selected on step 1al_validation_msg2Título é um campo obrigatórioMessage when title field is empty on Step 2al_validation_msg3_1Nenhum curso ou classe foram selecionados.Message when no course/class is selected in Step 3al_validation_msg3_2Deve haver pelo menos 1 membro do corpo docente e um aluno selecionado.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblA estrutura de pastas abaixo contém as sequências que você pode criar para uma lição. Selecione uma e clique no botão próximo para continuar.Step 1 descriptionwizardDesc_2_lblVocê pode adicionar o nome e a descrição que você que os estudantes vejam para essa lição.Step 2 descriptionwizardDesc_3_lblVocê pode tirar a seleção dos estudantes e docentes desta classe clicando no box próximo aos seus respectivos nomes.Step 3 descriptionwizardDesc_4_lblPressionando o botão Iniciar você pode começar a lição imediatamente. Você também pode agendar a lição para iniciar em uma data e horário em particular.Step 4 descriptionconfirmMsg_1_txt{0} foi iniciada.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} foi agendada para {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} foi criada, mas ainda não foi iniciada.Conclusion screen description if lesson created but not startedal_validation_schstartNenhuma data foi selecionada. Favor selecionar a data e o tempo, e então clicar no botão Agenda.Message when no date is selected starting a lesson by schedule.summery_design_lblSequência:Label for summery heading of selected design field.summery_title_lblTítuloLabel for summery heading of defined title.summery_desc_lblDescriçãoLabel for summery heading of defined description.summery_course_lblGrupo:Label for summery heading of selected course field.summery_class_lblSub-grupoLabel for summery heading of selected class field.summery_staff_lblCorpo DocenteLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblEstudantesLabel for summery heading of number of selected learners in the lesson class.al_sendEnviarOK on system error dialogal_validation_schtimeFavor digitar um valor (tempo) válido.Alert message when user enters an invalid time for schedule startdate_lblDataLabel for Schedule Date fieldtime_lblTempo (Horas : Minutos)Label for Schedule Time fieldwizard_selAll_cb_lblSelecionar todosLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblhabilita exportação do portfólio para alunosLabel for Enable export portfolio for Learnerlearners_group_name{0} alunosGroup name for the class's learners group.staff_group_name{0} pessoalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/ru_RU_dictionary.xml 12 Jan 2010 01:20:08 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3finish_btnНачать в режиме "Монитор"Finish button to complete wizardsummery_class_lblПодгруппа:Label for summery heading of selected class field.summery_course_lblГруппа:Label for summery heading of selected course field.summery_design_lblПоследовательность:Label for summery heading of selected design field.start_btnНачать сейчасStart button to start new lessonwizardTitle_x_lblУрок: {0}Confirmation screen titleal_alertОповещениеGeneric title for Alert windowal_cancelОтменитьCancel on alert dialogal_confirmПодтвердитьTo Confirm title for LFErroral_validation_msg2Название необходимого поля.Message when title field is empty on Step 2confirmMsg_1_txt{0} был начат.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} был создан, но ещё не начат.Conclusion screen description if lesson created but not startedsummery_title_lblЗаголовок:Label for summery heading of defined title.summery_desc_lblОписание:Label for summery heading of defined description.summery_learners_lblСтуденты:Label for summery heading of number of selected learners in the lesson class.al_sendОтправитьOK on system error dialogdate_lblДатаLabel for Schedule Date fieldtime_lblВремя (Часы : Минуты)Label for Schedule Time fieldal_validation_schtimeПожалуйста введите корректное время.Alert message when user enters an invalid time for schedule startnext_btnДалее &qt;Next step buttonprev_btn&lt; НазадPrevious step buttonsys_errorСистемная ошибкаSystem Error elert window titlecancel_btnОтменитьCancel button to exit wizardclose_btnЗакрытьClose button to close windowtitle_lblЗаголовокNew Lesson titledesc_lblОписаниеNew Lesson descriptionlearner_lblУченикиHeading for list of class learnersschedule_cb_lblРасписаниеLabel for schedule checkboxsummery_lblЛетоHeading for summery outlinews_RootКорневая директорияRoot folder title for workspacews_tree_mywspМоя рабочая областьThe root level of the workspace treewizardTitle_2_lblДетали урокаStep 2 screen titleal_validation_msg1Должна быть выбрана доступная последовательность.Message when no design is selected on step 1wizard_selAll_cb_lblВыбрать всёLabel for select all check box used to select all staff or learner users in list.wizardDesc_1_lblДревовидная структура ниже содержит проекты, для которых Вы можете создать урок. Выберите один из них и нажмите "Далее", для продолжения.Step 1 descriptionwizardTitle_3_lblВыберите студентов и сотрудниковStep 3 screen titleal_validation_msg3_1Не были выбраны курсы или классы.Message when no course/class is selected in Step 3al_validation_msg3_2Должен быть выбран по крайней мере один сотрудник и ученик.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblВы можете добавить название и описание для этого урока, те, которые Вы хотели бы, чтобы видели студенты.Step 2 descriptionwizardDesc_3_lblВы можете исключить студентов и сотрудников из этого класса, убрав отменку о их включении рядом с их именами.Step 3 descriptionwizardDesc_4_lblНажав на кнопке "Начать" Вы можете начать урок немедленно. Вы можете также создать расписание, чтобы начать урок в конкретное число и время.Step 4 descriptional_validation_schstartНе была выбрана дата. Пожалуйста выберите дату и время, а затем нажмите кнопку "Расписание".Message when no date is selected starting a lesson by schedule.sys_error_msg_startВы не могли создать урок.Common System error message starting linesys_error_msg_finishВы хотите отправить сообщение об ошибке?Common System error message finish paragraphwizardTitle_1_lblВыберите последовательностьStep 1 screen titlewizard_learner_expp_cb_lblРазрешить ученикам экпорт портфолиоLabel for Enable export portfolio for Learnerlearners_group_name{0} учениковGroup name for the class's learners group.staff_group_name{0} сотрудниковGroup name for the class's staff group.summery_staff_lblСотрудники:Label for summery heading of number of selected staff in the lesson class.staff_lblСотрудникиHeading for list of class staffwizardTitle_4_lblПодтвердите детали урокаStep 4 screen titleconfirmMsg_2_txt{0} было запланировано на {1}.Conclusion screen description if lesson scheduledal_okОКOK on alert dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/sv_SE_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startDu kunde inte skapa någon lektion.Common System error message starting linesys_error_msg_finishVill du skicka en felrapport?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titleprev_btn<FöregåendePrevious step buttonnext_btnNästa>Next step buttonfinish_btnAvslutaFinish button to complete wizardcancel_btnAvbrytCancel button to exit wizardclose_btnStängClose button to close windowstart_btnStarta och avslutaStart button to start new lessontitle_lblTitelNew Lesson titledesc_lblBeskrivningNew Lesson descriptionlearner_lblLärandeHeading for list of class learnersstaff_lblPersonalHeading for list of class staffschedule_cb_lblSchemaLabel for schedule checkboxsummery_lblSammanfattningHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMin arbetsytaThe root level of the workspace treewizardTitle_1_lblVälj designStep 1 screen titlewizardTitle_2_lblDetaljer om lektionStep 2 screen titlewizardTitle_3_lblVälj lärande och personalStep 3 screen titlewizardTitle_4_lblBekräfta detaljer om lektionStep 4 screen titlewizardTitle_x_lblLektion {0}Confirmation screen titleal_alertPåminnelseGeneric title for Alert windowal_cancelAvbrytCancel on alert dialogal_confirmBekräftaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Du måste välja en giltig design. Message when no design is selected on step 1al_validation_msg2Titel är ett obligatoriskt fält.Message when title field is empty on Step 2al_validation_msg3_1Ingen kurs eller klass har valts. Message when no course/class is selected in Step 3al_validation_msg3_2Du måste välja åtminstone en medlem av personalen och en lärande. Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblDen nedanstående strukturen för katalog innehåller de designer som du kan använda för att skapa en lektion. Välj en och klicka på knappen Nästa för att fortsätta. Step 1 descriptionwizardDesc_2_lblDu kan lägga till det namn och den beskrivning för den här lektionen som du vill att de lärande ska se. Step 2 descriptionwizardDesc_3_lblDu kan välja att ta bort lärande och personal från den här klassen genom att avmarkera rutan intill deras namn. Step 3 descriptionwizardDesc_4_lblGenom att trycka på knappen Start kan du påbörja lektionen genast. Du kan också schemalägga lektionen så att den ska starta på ett specifikt datum och tid. Step 4 descriptionconfirmMsg_1_txt{0} har påbörjats.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} har schemalagts för {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} har skapats med har inte påbörjats ännu.Conclusion screen description if lesson created but not startedal_validation_schstartDu valde inget datum. Var snäll och välj ett datum och en tid, klicka sedan på start. Message when no date is selected starting a lesson by schedule.summery_design_lblDesign:Label for summery heading of selected design field.summery_title_lblTitel:Label for summery heading of defined title.summery_desc_lblBeskrivning:Label for summery heading of defined description.summery_course_lblKurs:Label for summery heading of selected course field.summery_class_lblKlass:Label for summery heading of selected class field.summery_staff_lblPersonal:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblLärande:Label for summery heading of number of selected learners in the lesson class.al_sendSkickaOK on system error dialogal_validation_schtimeVar snäll och mata in en giltig tidAlert message when user enters an invalid time for schedule startdate_lblDatumLabel for Schedule Date fieldtime_lblTid (Timmar: Minuter)Label for Schedule Time fieldwizard_selAll_cb_lblMarkera alltLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl Aktivera export av portfolio för lärandeLabel for Enable export portfolio for Learnerlearners_group_name{0} lärandeGroup name for the class's learners group.staff_group_name{0} personalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/tr_TR_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_cancelİptalCancel on alert dialogwizardTitle_1_lblBasamak 1/3: Sıralamanızı seçinStep 1 screen titlewizardTitle_2_lblDers ayrıntılarıStep 2 screen titlewizardTitle_3_lblBasamak 2/3: Öğrencileri ve izlemeyi seçStep 3 screen titlewizardTitle_4_lblBasamak 3/3: Ders ayrıntılarını onaylaStep 4 screen titlewizardTitle_x_lblDers: {0}Confirmation screen titleal_validation_msg1Geçerli bir sıralama seçilmelidir.Message when no design is selected on step 1wizardDesc_3_lblİzleyici ve öğrencilerin adlarının yanında bulunan seçim kutularını işaretleyerek seçebilir veya işareti kaldırarak seçimi kaldırabilirsiniz.Step 3 descriptional_validation_msg2Başlık doldurulması gereken alanlardandır.Message when title field is empty on Step 2wizard_learner_expp_cb_lblPortfolyo dışa aktarmayı etkinleştir.Label for Enable export portfolio for Learnersys_error_msg_startDers yaratma işlemi başarılamadı.Common System error message starting linesys_error_msg_finishHata raporu göndermek istiyor musunuz?Common System error message finish paragraphsys_errorSistem hatasıSystem Error elert window titleprev_btn<ÖncekiPrevious step buttonnext_btnSonraki>Next step buttonclose_btnKapatClose button to close windowstart_btnŞİmdi başlatStart button to start new lessontitle_lblBaşlıkNew Lesson titlelearner_lblÖğrencilerHeading for list of class learnersschedule_cb_lblTakvimLabel for schedule checkboxws_tree_mywspÇalışma alanımThe root level of the workspace treeal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorsummery_course_lblGrupLabel for summery heading of selected course field.summery_class_lblAlt grupLabel for summery heading of selected class field.summery_learners_lblÖğrencilerLabel for summery heading of number of selected learners in the lesson class.al_sendGönderOK on system error dialogdate_lblTarihLabel for Schedule Date fieldwizard_selAll_cb_lblTümünü seçLabel for select all check box used to select all staff or learner users in list.ws_RootAna dizinRoot folder title for workspacecancel_btnİptalCancel button to exit wizardal_validation_msg3_1Herhangi bir ders veya sınıf seçilmedi.Message when no course/class is selected in Step 3confirmMsg_1_txt{0} başlatıldı.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} {1} tarihinde başlatılmak üzere ayarlandı.Conclusion screen description if lesson scheduledsummery_design_lblSıralamaLabel for summery heading of selected design field.summery_title_lblBaşlıkLabel for summery heading of defined title.time_lblZaman (Saat: Dakika)Label for Schedule Time fieldal_validation_schtimeLütfen geçerli bir zaman giriniz.Alert message when user enters an invalid time for schedule startlearners_group_name{0} öğrenciGroup name for the class's learners group.addmore_btnBaşka bir ders ekleButton to add another lesson, return to first step.al_validation_msg3_2En az 1 izleme üyesi ve öğrenci seçilmeliMessage when either no staff/learner users are selected in Step 3.summery_staff_lblİzleyenlerLabel for summery heading of number of selected staff in the lesson class.staff_group_name{0} izleyiciGroup name for the class's staff group.confirmMsg_3_txt{0} oluşturuldu ancak henüz başlatılmadıConclusion screen description if lesson created but not startedwizardDesc_4_lblBaşlat butonuna basarak dersi hemen başlatabilirsiniz. Ayrıca dersi belirlenen zamanda başlatmak için takvimi ayarlayabilirsiniz.Step 4 descriptional_validation_schstartTarih seçilmedi. Lütfen tarih ve zaman seçiniz ve Takvim butonuna tıklayınız.Message when no date is selected starting a lesson by schedule.staff_lblİzleyenlerHeading for list of class staffsummery_lblÖzetHeading for summery outlinefinish_btnBaşlatFinish button to complete wizardal_okTamamOK on alert dialogdesc_lblAçıklamaNew Lesson descriptionwizardDesc_2_lblBu dersi görecek öğrenciler için bir isim ve açıklama ekleyebilirsiniz.Step 2 descriptionsummery_desc_lblAçıklamaLabel for summery heading of defined description.wizard_learner_enpres_cb_lblÖğrencilerin çevrimiçi kişileri görmesine izin ver.Checkbox label for presencewizard_splitLearners_leanersInGroup_lblBu gruptaki öğrencileri:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblDers başına düşen öğrenci:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblGerçek zamanlı düzenlemeyi geçerli kıl.wizard_learner_enLiveEdit_cb_lblwizard_splitLearners_cb_lblÖğrencilerin dersin farklı kopyalarına bölmek istiyor musunuz?wizard_splitLearners_cb_lblconfirmMsg_4_txt-Conclusion screen description if starting several lessonswizard_splitLearners_splitSum-Split learners summarywizard_splitLearners_splitSumShort-Shorter split learners summarywizardDesc_1_lblMevcut akışları açmak ve görüntülemek için aşağıdaki dosyayı tıklayınız. Birini seçip devam etmek için ileri butonuna tıklayınız.Step 1 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/vi_VN_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startBạn không thể tạo bài họcCommon System error message starting linesys_error_msg_finishBạn có muốn gửi báo cáo lỗi không?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titleprev_btn< TrướcPrevious step buttonnext_btnSau >Next step buttonfinish_btnBắt đầu màn hìnhFinish button to complete wizardcancel_btnHủy bỏCancel button to exit wizardclose_btnĐóngClose button to close windowstart_btnBắt đầuStart button to start new lessontitle_lblTiêu đềNew Lesson titledesc_lblMô tảNew Lesson descriptionlearner_lblCác học viênHeading for list of class learnersstaff_lblGiáo viênHeading for list of class staffschedule_cb_lblBảng kế hoạchLabel for schedule checkboxsummery_lblMùa hèHeading for summery outlinews_RootGốcRoot folder title for workspacews_tree_mywspKhông gian làm việc của tôiThe root level of the workspace treewizardTitle_1_lblLựa chọn bối cảnhStep 1 screen titlewizardTitle_2_lblChi tiết bài họcStep 2 screen titlewizardTitle_3_lblLựa chọn sinh viên và giáo viênStep 3 screen titlewizardTitle_4_lblXác nhận chi tiết bài họcStep 4 screen titlewizardTitle_x_lblBài học: {0} Confirmation screen titleal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏCancel on alert dialogal_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on alert dialogal_validation_msg1Bố cảnh có hiệu lực phải được lựa chọn.Message when no design is selected on step 1al_validation_msg2Yêu cầu tiêu đề.Message when title field is empty on Step 2al_validation_msg3_1Không có khoá học hay lớp được lựa chọn.Message when no course/class is selected in Step 3al_validation_msg3_2Ít nhât phải có một cán bộ và học viên được lựa chọn.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblCấu trúc thư mục dưới bao gồm các bối cảnh mà bạn tạo cho một bài học. Chọn một hoặc bấm vào nút tiếp theo để tiếp tục.Step 1 descriptionwizardDesc_2_lblBạn có thể đặt tên và định nghĩa mà bạn muốn cho học viên thấy về bài học.Step 2 descriptionwizardDesc_3_lblBạn có thể hủy chọn sinh viên hoặc cán bộ ơ lớp này bằng cách bỏ tích vào ô cạnh tên của họ.Step 3 descriptionwizardDesc_4_lblBằng cách bấm nút bắt đầu bạn có thể bắt đầu bài học ngay. Bạn còn có thể lên lịch cho bài học bắt đầu bằng ngày giờ cụ thểStep 4 descriptionconfirmMsg_1_txt{0} đã bắt đầuConclusion screen description if lesson startedconfirmMsg_2_txt{0} đã lên lịch cho {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} đã được tạo nhưng chưa bắt đầuConclusion screen description if lesson created but not startedal_validation_schstartChưa chọn ngày tháng. Xin hãy chọn ngày tháng, và bấm nút kế hoạchMessage when no date is selected starting a lesson by schedule.summery_design_lblBối cảnh:Label for summery heading of selected design field.summery_title_lblTiêu đề:Label for summery heading of defined title.summery_desc_lblĐịnh nghĩa:Label for summery heading of defined description.summery_course_lblNhóm:Label for summery heading of selected course field.summery_class_lblNhóm con:Label for summery heading of selected class field.summery_staff_lblGiáo viên:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblHọc viênLabel for summery heading of number of selected learners in the lesson class.al_sendGửiOK on system error dialogal_validation_schtimeHãy nhập thời gian bắt đầu hiệu lựcAlert message when user enters an invalid time for schedule startdate_lblNgàyLabel for Schedule Date fieldtime_lblGiờ (giờ :phút)Label for Schedule Time fieldwizard_selAll_cb_lblChọn tất cảLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblCho phép học viết xuất ra tài liệuLabel for Enable export portfolio for Learnerlearners_group_nameHọc viên {0}Group name for the class's learners group.staff_group_nameGiảng viên {0}Group name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/zh_CN_dictionary.xml 12 Jan 2010 01:20:10 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_start你不能创建一个课程Common System error message starting linesys_error_msg_finish你想发送一个错误报告吗?Common System error message finish paragraphsys_error系统错误System Error elert window titleprev_btn<前一步Previous step buttonnext_btn下一步>Next step buttoncancel_btn取消Cancel button to exit wizardclose_btn关闭Close button to close windowtitle_lbl标题New Lesson titledesc_lbl描述New Lesson descriptionlearner_lbl学习者Heading for list of class learnersschedule_cb_lbl时间表Label for schedule checkboxsummery_lbl摘要Heading for summery outlinews_RootRoot folder title for workspacews_tree_mywsp我的工作空间The root level of the workspace treewizardTitle_2_lbl课程详情Step 2 screen titlewizardTitle_4_lbl确认课程详情Step 4 screen titlewizardTitle_x_lbl课程:{0}Confirmation screen titleal_alert警惕Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm确认To Confirm title for LFErroral_okOK on alert dialogal_validation_msg1必需选择一个有效的设计。Message when no design is selected on step 1al_validation_msg2必需有标题。Message when title field is empty on Step 2al_validation_msg3_1没有课程或班级被选中。Message when no course/class is selected in Step 3al_validation_msg3_2必需有至少1个人员和学习者被选中。Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lbl下面的目录结构包含你创建课程所需的设计。选中一个,点击“下一步”按钮继续。Step 1 descriptionwizardDesc_2_lbl你可以为这个课程添加你想让学生看见的课程名称和描述。Step 2 descriptionwizardDesc_3_lbl你可以通过不在他们名字旁边的方框打勾,从而不从这个班级选中学生和人员。Step 3 descriptionwizardDesc_4_lbl通过按“开始”按钮,你可以直接开始课程。你也可以确定课程的时间,在特定的日期和时间开始。Step 4 descriptionconfirmMsg_1_txt{0}已经开始。Conclusion screen description if lesson startedconfirmMsg_2_txt{0}已经为{1}确定了时间。Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}已经创建但还没有开始。Conclusion screen description if lesson created but not startedal_validation_schstart没有日期被选中。请选择日期和时间,然后点击“开始”。Message when no date is selected starting a lesson by schedule.summery_design_lbl设计Label for summery heading of selected design field.summery_title_lbl标题Label for summery heading of defined title.summery_desc_lbl描述Label for summery heading of defined description.summery_course_lbl课程Label for summery heading of selected course field.summery_class_lbl班级Label for summery heading of selected class field.summery_staff_lbl全体人员Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl学习者Label for summery heading of number of selected learners in the lesson class.al_send发送OK on system error dialogdate_lbl日期Label for Schedule Date fieldtime_lbl时间(小时:分钟)Label for Schedule Time fieldal_validation_schtime请输入一个有效的时间。Alert message when user enters an invalid time for schedule startwizard_selAll_cb_lbl全部选择Label for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl学习者可以导出的文件Label for Enable export portfolio for Learnerlearners_group_name{0}学习者Group name for the class's learners group.staff_group_name{0}全体Group name for the class's staff group.addmore_btn添加新课程Button to add another lesson, return to first step.wizard_learner_enpres_cb_lbl使课程可用Checkbox label for presencewizardTitle_3_lbl选择学习者和监控人员Step 3 screen titlewizard_splitLearners_cb_lbl你想将这些学习者分到不同的课程副本中去吗?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lbl该组中的学习者wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lbl每门课的学习者wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lbl使实时编辑可用wizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSum该课程中将要创建{0}个实例,并且将给每个课程安排大约{1}个学习者。Split learners summarywizard_splitLearners_splitSumShort该课程有{0}个实例,每个实例都安排了{1}个学习者Shorter split learners summaryconfirmMsg_4_txt{1}个实例中的{0}个已经开始运行Conclusion screen description if starting several lessonsfinish_btn在监控环境中开始Finish button to complete wizardstaff_lbl监控者Heading for list of class staffwizardTitle_1_lbl步骤1/3:选择你的流程Step 1 screen titlestart_btn现在开始Start button to start new lesson \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/flashxml/wizard/zh_TW_dictionary.xml 12 Jan 2010 01:20:09 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3date_lbl日期Label for Schedule Date fieldtime_lbl時間(小時:分)Label for Schedule Time fieldwizard_selAll_cb_lbl選擇所有Label for select all check box used to select all staff or learner users in list.learners_group_name{0}學習者Group name for the class's learners group.staff_group_name{0}監視者Group name for the class's staff group.addmore_btn加入另一個課程Button to add another lesson, return to first step.wizard_learner_enpres_cb_lbl讓學習者看到誰在線上Checkbox label for presencewizard_splitLearners_leanersInGroup_lbl此群組的學習者wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lbl每一個課程的學習者wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lbl啟動即時編輯wizard_learner_enLiveEdit_cb_lblconfirmMsg_4_txt{0}事件的{1}已經開始Conclusion screen description if starting several lessonswizard_wkspc_date_modified_lbl最後修訂:{0}Shows the last modified datetime for a Learning Design.wizardDesc_1_lbl下面的資料夾包含課程所需的編程。選中一個,按“下一步”按鈕繼續。Step 1 descriptionwizardDesc_2_lbl你可以為這個課程添加你想讓學習者看見的課程名稱和描述。Step 2 descriptionwizard_splitLearners_splitSum該課程中將要創立{0}個事件,並且將給每個課程安排大約{1}個學習者。Split learners summarywizardDesc_3_lbl你可以通過不在他們名字旁邊的方框打勾,從而不從這個班級選擇學習者和堅督者。Step 3 descriptionwizard_splitLearners_splitSumShort該課程有{0}個事件,每個實例都安排了{1}個學習者Shorter split learners summarywizardDesc_4_lbl通過按“開始”按鈕,你可以直接開始課程。你也可以確定課程的時間,並在特定的日期和時間開始。Step 4 descriptionsys_error_msg_start你無法建立一個課程Common System error message starting linewizard_learner_expp_cb_lbl啟動輸出的資料夾給學習者Label for Enable export portfolio for Learnerwizard_splitLearners_cb_lbl你想將這些學習者分到不同的課程副本中去嗎?wizard_splitLearners_cb_lblsys_error_msg_finish你想要傳送ㄧ份錯誤報告嗎?Common System error message finish paragraphsys_error系統錯誤System Error elert window titleprev_btn< 前ㄧ步Previous step buttonnext_btn下一步 >Next step buttonfinish_btn在監視器中開始Finish button to complete wizardcancel_btn取消Cancel button to exit wizardclose_btn關閉Close button to close windowstart_btn現在開始Start button to start new lessontitle_lbl標題New Lesson titledesc_lbl描述New Lesson descriptionlearner_lbl學習者Heading for list of class learnersstaff_lbl監視Heading for list of class staffschedule_cb_lbl行程Label for schedule checkboxsummery_lbl總結Heading for summery outlinews_Root根目錄Root folder title for workspacews_tree_mywsp我的工作空間The root level of the workspace treewizardTitle_1_lbl步驟1之3:選擇你的編程Step 1 screen titlewizardTitle_2_lbl課程細節Step 2 screen titlewizardTitle_3_lbl步驟2之3:選擇你的學習者與監視Step 3 screen titlewizardTitle_4_lbl步驟3之3:確認課程細節Step 4 screen titlewizardTitle_x_lbl課程:{0}Confirmation screen titleal_alert注意Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOK on alert dialogal_validation_msg1一個有效的編程必須選擇Message when no design is selected on step 1al_validation_msg2標題是必須填的Message when title field is empty on Step 2al_validation_msg3_1沒有課程或班級被選擇Message when no course/class is selected in Step 3al_validation_msg3_2至少要選定一位監督者與學習者Message when either no staff/learner users are selected in Step 3.confirmMsg_1_txt{0}已經開始Conclusion screen description if lesson startedconfirmMsg_2_txt{0}已經排定開始於{1}。Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}已經建立但尚未開始Conclusion screen description if lesson created but not startedal_validation_schstart沒有選定日期。請選擇一個日期與時間,然後按下行程按鈕。Message when no date is selected starting a lesson by schedule.summery_design_lbl編程Label for summery heading of selected design field.summery_title_lbl標題Label for summery heading of defined title.summery_desc_lbl描述Label for summery heading of defined description.summery_course_lbl群組Label for summery heading of selected course field.summery_class_lbl子群組Label for summery heading of selected class field.summery_staff_lbl監視Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl學習者Label for summery heading of number of selected learners in the lesson class.al_send送出OK on system error dialogal_validation_schtime請輸入一個有效的名稱Alert message when user enters an invalid time for schedule start \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/learningLibraryDetails.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/learningLibraryDetails.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/learningLibraryDetails.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1,3559 @@ + + +
+ + + + getAllLearningLibraryDetails + + + 3.0 + + + + + + 2009-8-28T12:1:39+10:0 + + + + Forum, also known Message Board + + + + 1.0 + + + + + + 2.0 + + + 1.0 + + + Forum + + + 1.0 + + + + + + + tool/lafrum11/authoring.do + + + + + 2009-8-28T12:1:39+10:0 + + + + + + + + Online threaded discussion + tool (asynchronous). + + + + 2.0 + + + + Discussion tool useful for + long running collaborations + and situations where + learners are not all on line + at the same time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + + + + + + + + + + + + + + + + + + + + + 1.0 + + + Forum Tool + + + 1.0 + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + lafrum11 + + + + + + Forum + + + + + + + + 2009-8-28T12:1:47+10:0 + + + Displays a Noticeboard + + + 2.0 + + + + + + 4.0 + + + 2.0 + + + Noticeboard + + + 1.0 + + + + + + + tool/lanb11/authoring.do + + + + + 2009-8-28T12:1:47+10:0 + + + + + + + + Tool for displaying HTML + content including external + sources such as images and + other media. + + + + 2.0 + + + + Displays formatted text and + links to external sources on + a read only page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + + org.lamsfoundation.lams.tool.noticeboard.ApplicationResources + + + + 2.0 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + + + + + + + + + + + + + + + + + + + + + + 2.0 + + + + Noticeboard Tool + + + + 2.0 + + + + org.lamsfoundation.lams.tool.noticeboard.ApplicationResources + + + + lanb11 + + + + + + Noticeboard + + + + + + + + 2009-8-28T12:1:51+10:0 + + + + Question and Answer Learning Library + Description + + + + 3.0 + + + + + + 6.0 + + + 3.0 + + + Q &amp; A + + + 1.0 + + + + tool/laqa11/laqa11admin.do + + + + + + + + tool/laqa11/authoringStarter.do + + + + + 2009-8-28T12:1:51+10:0 + + + + + + + + Each learner answers + question(s) and then sees + answers from all learners + collated on the next page. + + + + 2.0 + + + + Each learner answers one or + more questions in short + answer format and then sees + answers from all learners + collated on the next page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + org.lamsfoundation.lams.tool.qa.ApplicationResources + + + + 3.0 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + + + + + + + + + + + + + + + + + + + + + + 3.0 + + + + Question &amp; Answer + Tool + + + + 3.0 + + + + org.lamsfoundation.lams.tool.qa.ApplicationResources + + + + laqa11 + + + + + + Question and Answer + + + + + + + + 2009-8-28T12:1:59+10:0 + + + + Uploading of files by learners, for + review by teachers. + + + + 4.0 + + + + + + 3.0 + + + 4.0 + + + Submit Files + + + 1.0 + + + + + + + tool/lasbmt11/authoring.do + + + + + 2009-8-28T12:1:59+10:0 + + + + + + + + Learners submit files for + assessment by the teacher. + Scores and comments may be + exported as a spreadsheet. + + + + 2.0 + + + + Learners submit files for + assessment by the teacher. + Scores and comments for each + learner are recorded and may + be exported as a + spreadsheet. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + + org.lamsfoundation.lams.tool.sbmt.ApplicationResources + + + + 4.0 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + + + + + + + + + + + + + + + + + + + + + + 4.0 + + + + Submit Files Tool + + + + 4.0 + + + + org.lamsfoundation.lams.tool.sbmt.ApplicationResources + + + + lasbmt11 + + + + + + Submit file + + + + + + + + 2009-8-28T12:2:8+10:0 + + + Chat Tool + + + 5.0 + + + + + + 2.0 + + + 5.0 + + + Chat + + + 1.0 + + + + + + + tool/lachat11/authoring.do + + + + + 2009-8-28T12:2:8+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + 5.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + + + + + + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + lachat11 + + + + + + Chat + + + + + + + + 2009-8-28T12:2:19+10:0 + + + Share resources + + + 6.0 + + + + + + 4.0 + + + 6.0 + + + Share Resources + + + 1.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + 2009-8-28T12:2:19+10:0 + + + + + + + + Sharing resources with + others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + + + + + + + + + + + + + + + + + + + + + 6.0 + + + + Share Resources Tool + + + + 6.0 + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + larsrc11 + + + + + + Share resources + + + + + + + + 2009-8-28T12:2:27+10:0 + + + + Voting Learning Library Description + + + + 7.0 + + + + + + 6.0 + + + 7.0 + + + Voting + + + 1.0 + + + + + + + tool/lavote11/authoringStarter.do + + + + + 2009-8-28T12:2:27+10:0 + + + + + + + + Allows voting format + + + + 2.0 + + + + Voting help text + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lavote11 + + + + + org.lamsfoundation.lams.tool.vote.ApplicationResources + + + + 7.0 + + + + tool/lavote11/images/icon_ranking.swf + + + + + + + + + + + + + + + + + + + + + + + + + 7.0 + + + Voting + + + 7.0 + + + + org.lamsfoundation.lams.tool.vote.ApplicationResources + + + + lavote11 + + + + + + Voting + + + + + + + + 2009-8-28T12:2:37+10:0 + + + Notebook Tool + + + 8.0 + + + + + + 6.0 + + + 8.0 + + + Notebook + + + 1.0 + + + + + + + tool/lantbk11/authoring.do + + + + + 2009-8-28T12:2:37+10:0 + + + + + + + Notebook Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + + org.lamsfoundation.lams.tool.notebook.ApplicationResources + + + + 8.0 + + + + tool/lantbk11/images/icon_notebook.swf + + + + + + + + + + + + + + + + + + + + + + + + + 8.0 + + + Notebook + + + 8.0 + + + + org.lamsfoundation.lams.tool.notebook.ApplicationResources + + + + lantbk11 + + + + + + Notebook + + + + + + + + 2009-8-28T12:2:46+10:0 + + + Survey + + + 9.0 + + + + + + 6.0 + + + 9.0 + + + Survey + + + 1.0 + + + + + + + tool/lasurv11/authoring/start.do + + + + + 2009-8-28T12:2:46+10:0 + + + + + + + + Tool to create Surveys + + + + 2.0 + + + Answer surveys. + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasurv11 + + + + + org.lamsfoundation.lams.tool.survey.ApplicationResources + + + + 9.0 + + + + tool/lasurv11/images/icon_survey.swf + + + + + + + + + + + + + + + + + + + + + + + + + 9.0 + + + Survey Tool + + + 9.0 + + + + org.lamsfoundation.lams.tool.survey.ApplicationResources + + + + lasurv11 + + + + + + Survey + + + + + + + + 2009-8-28T12:3:7+10:0 + + + Share taskList + + + 11.0 + + + + + + 4.0 + + + 11.0 + + + Task List + + + 1.0 + + + + + + + tool/latask10/authoring/start.do + + + + + 2009-8-28T12:3:7+10:0 + + + + + + + Task List. + + + 2.0 + + + + Going through list of tasks. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/latask10 + + + + + org.lamsfoundation.lams.tool.taskList.ApplicationResources + + + + 11.0 + + + + tool/latask10/images/icon_taskList.swf + + + + + + + + + + + + + + + + + + + + + + + + + 11.0 + + + Task List Tool + + + 11.0 + + + + org.lamsfoundation.lams.tool.taskList.ApplicationResources + + + + latask10 + + + + + + Share taskList + + + + + + + + 2009-8-28T12:3:18+10:0 + + + Gmap Tool + + + 12.0 + + + + + + 2.0 + + + 12.0 + + + Gmap + + + 1.0 + + + + tool/lagmap10/lagmap10admin.do + + + + + + + + tool/lagmap10/authoring.do + + + + + 2009-8-28T12:3:18+10:0 + + + + + + + + Google Mapping Tool + + + + 2.0 + + + + Gmap for marking world map + points + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lagmap10 + + + + + org.lamsfoundation.lams.tool.gmap.ApplicationResources + + + + 12.0 + + + + tool/lagmap10/images/icon_gmap.swf + + + + + + + + + + + + + + + + + + + + + + + + + 12.0 + + + Gmap + + + 12.0 + + + + org.lamsfoundation.lams.tool.gmap.ApplicationResources + + + + lagmap10 + + + + + + Gmap + + + + + + + + 2009-8-28T12:3:28+10:0 + + + Spreadsheet Tool + + + 13.0 + + + + + + 4.0 + + + 13.0 + + + Spreadsheet + + + 1.0 + + + + + + + tool/lasprd10/authoring/start.do + + + + + 2009-8-28T12:3:28+10:0 + + + + + + + Spreadsheet. + + + 2.0 + + + + Spreadsheet Tool. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasprd10 + + + + + org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources + + + + 13.0 + + + + tool/lasprd10/images/icon_spreadsheet.swf + + + + + + + + + + + + + + + + + + + + + + + + + 13.0 + + + + Spreadsheet Tool + + + + 13.0 + + + + org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources + + + + lasprd10 + + + + + + Spreadsheet + + + + + + + + 2009-8-28T12:3:37+10:0 + + + + Collecting data with custom structure. + + + + 14.0 + + + + + + 6.0 + + + 14.0 + + + Data Collection + + + 1.0 + + + + + + + tool/ladaco10/authoring/start.do + + + + + 2009-8-28T12:3:37+10:0 + + + + + + + + Collecting data with custom + structure. + + + + 2.0 + + + + Asking questions with + custom, limited answers. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + org.lamsfoundation.lams.tool.daco.ApplicationResources + + + + 14.0 + + + + tool/ladaco10/images/icon_daco.swf + + + + + + + + + + + + + + + + + + + + + + + + + 14.0 + + + + Data Collection Tool + + + + 14.0 + + + + org.lamsfoundation.lams.tool.daco.ApplicationResources + + + + ladaco10 + + + + + + Data Collection + + + + + + + + 2009-8-28T12:3:50+10:0 + + + Wiki Tool + + + 15.0 + + + + + + 2.0 + + + 15.0 + + + Wiki + + + 1.0 + + + + + + + tool/lawiki10/authoring.do + + + + + 2009-8-28T12:3:50+10:0 + + + + + + + Wiki Tool + + + 2.0 + + + + Wiki tool for creating wiki + pages + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lawiki10 + + + + + org.lamsfoundation.lams.tool.wiki.ApplicationResources + + + + 15.0 + + + + tool/lawiki10/images/icon_wiki.swf + + + + + + + + + + + + + + + + + + + + + + + + + 15.0 + + + Wiki + + + 15.0 + + + + org.lamsfoundation.lams.tool.wiki.ApplicationResources + + + + lawiki10 + + + + + + Wiki + + + + + + + + 2009-8-28T12:4:3+10:0 + + + Share imageGallery + + + 16.0 + + + + + + 4.0 + + + 16.0 + + + Image Gallery + + + 1.0 + + + + tool/laimag10/laimag10admin/start.do + + + + + + + + tool/laimag10/authoring/start.do + + + + + 2009-8-28T12:4:3+10:0 + + + + + + + + Gallery to share images with + others. + + + + 2.0 + + + + Uploading your images to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laimag10 + + + + + org.lamsfoundation.lams.tool.imageGallery.ApplicationResources + + + + 16.0 + + + + tool/laimag10/images/icon_imageGallery.swf + + + + + + + + + + + + + + + + + + + + + + + + + 16.0 + + + + Image Gallery Tool + + + + 16.0 + + + + org.lamsfoundation.lams.tool.imageGallery.ApplicationResources + + + + laimag10 + + + + + + Share imageGallery + + + + + + + + 2009-8-28T12:4:13+10:0 + + + Dimdim Tool + + + 17.0 + + + + + + 2.0 + + + 17.0 + + + Dimdim + + + 1.0 + + + + tool/laddim10/admin/view.do + + + + + + + + tool/laddim10/authoring.do + + + + + 2009-8-28T12:4:13+10:0 + + + + + + + Dimdim Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laddim10 + + + + + org.lamsfoundation.lams.tool.dimdim.ApplicationResources + + + + 17.0 + + + + tool/laddim10/images/icon_dimdim.swf + + + + + + + + + + + + + + + + + + + + + + + + + 17.0 + + + Dimdim + + + 17.0 + + + + org.lamsfoundation.lams.tool.dimdim.ApplicationResources + + + + laddim10 + + + + + + Dimdim + + + + + + + + 2009-8-28T12:4:25+10:0 + + + VideoRecorder Tool + + + 18.0 + + + + + + 6.0 + + + 18.0 + + + Video Recorder + + + 1.0 + + + + + + + tool/lavidr10/authoring.do + + + + + 2009-8-28T12:4:25+10:0 + + + + + + + + Video Recorder Tool + + + + 2.0 + + + + Tool that allows audio and + video to be recorded via a + webcam + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lavidr10 + + + + + org.lamsfoundation.lams.tool.videoRecorder.ApplicationResources + + + + 18.0 + + + + tool/lavidr10/images/icon_videoRecorder.swf + + + + + + + + + + + + + + + + + + + + + + + + + 18.0 + + + Video Recorder + + + 18.0 + + + + org.lamsfoundation.lams.tool.videoRecorder.ApplicationResources + + + + lavidr10 + + + + + + VideoRecorder + + + + + + + + 2009-8-28T12:4:35+10:0 + + + Mindmap Tool + + + 19.0 + + + + + + 6.0 + + + 19.0 + + + Mindmap + + + 1.0 + + + + + + + tool/lamind10/authoring.do + + + + + 2009-8-28T12:4:35+10:0 + + + + + + + Mindmap Tool + + + 2.0 + + + + Mindmap for making mindmaps + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + + org.lamsfoundation.lams.tool.mindmap.ApplicationResources + + + + 19.0 + + + + tool/lamind10/images/icon_mindmap.swf + + + + + + + + + + + + + + + + + + + + + + + + + 19.0 + + + Mindmap + + + 19.0 + + + + org.lamsfoundation.lams.tool.mindmap.ApplicationResources + + + + lamind10 + + + + + + Mindmap + + + + + + + + 2009-8-28T12:4:47+10:0 + + + Assessment + + + 20.0 + + + + + + 3.0 + + + 20.0 + + + Assessment + + + 1.0 + + + + + + + tool/laasse10/authoring/start.do + + + + + 2009-8-28T12:4:47+10:0 + + + + + + + + Tool for assessing learners + + + + 2.0 + + + + Create questions to assess + learners. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + org.lamsfoundation.lams.tool.assessment.ApplicationResources + + + + 20.0 + + + + tool/laasse10/images/icon_assessment.swf + + + + + + + + + + + + + + + + + + + + + + + + + 20.0 + + + Assessment Tool + + + 20.0 + + + + org.lamsfoundation.lams.tool.assessment.ApplicationResources + + + + laasse10 + + + + + + Assessment + + + + + + + + 2009-8-28T12:4:58+10:0 + + + Pixlr Tool + + + 21.0 + + + + + + 4.0 + + + 21.0 + + + Pixlr + + + 1.0 + + + + tool/lapixl10/lapixl10admin.do + + + + + + + + tool/lapixl10/authoring.do + + + + + 2009-8-28T12:4:58+10:0 + + + + + + + + Pixlr Image Editing Tool + + + + 2.0 + + + + Edit images in Pixlr image + editor + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lapixl10 + + + + + org.lamsfoundation.lams.tool.pixlr.ApplicationResources + + + + 21.0 + + + + tool/lapixl10/images/icon_pixlr.swf + + + + + + + + + + + + + + + + + + + + + + + + + 21.0 + + + Pixlr + + + 21.0 + + + + org.lamsfoundation.lams.tool.pixlr.ApplicationResources + + + + lapixl10 + + + + + + Pixlr + + + + + + + + 2009-8-28T12:5:4+10:0 + + + + MCQ Learning Library Description + + + + 22.0 + + + + + + 3.0 + + + 22.0 + + + Multiple Choice + + + 1.0 + + + + + + + tool/lamc11/authoringStarter.do + + + + + 2009-8-28T12:5:4+10:0 + + + + + + + + Creates automated assessment + questions. e.g. Multiple + choice and true/false + questions. Can provide + feedback and scores. + + + + 2.0 + + + + Learner answers a series of + automated assessment + questions. e.g. Multiple + choice and true/false + questions. Optional features + include feedback on each + question and scoring. + Questions are weighted for + scoring. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + org.lamsfoundation.lams.tool.mc.ApplicationResources + + + + 22.0 + + + + tool/lamc11/images/icon_mcq.swf + + + + + + + + + + + + + + + + + + + + + + + + + 22.0 + + + + Multiple Choice Tool + + + + 22.0 + + + + org.lamsfoundation.lams.tool.mc.ApplicationResources + + + + lamc11 + + + + + + MCQ + + + + + + + + 2009-8-28T12:5:6+10:0 + + + Shared Resources and Forum + + + 23.0 + + + + + + 5.0 + + + 23.0 + + + + Resources&amp;Forum + + + + 6.0 + + + + + + + 2009-8-28T12:5:6+10:0 + + + + + + + + Combined Share Resources and + Forum + + + + 2.0 + + + + The top window has a Share + Resources area and the + bottom window has a forum + for learners to discuss + items they have view via the + Share Resources area. + + + + + org.lamsfoundation.lams.library.llid23.ApplicationResources + + + + 23.0 + + + + images/icon_urlcontentmessageboard.swf + + + + + + + + + 4.0 + + + 24.0 + + + Share Resources + + + 1.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + 2009-8-28T12:5:6+10:0 + + + + + + + + Sharing resources with + others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + + + 23.0 + + + + + + + + + + + + + + + + + + + + + 6.0 + + + + Share Resources Tool + + + + 6.0 + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + larsrc11 + + + + + 2.0 + + + 25.0 + + + Forum + + + 1.0 + + + + + + + tool/lafrum11/authoring.do + + + + + 2009-8-28T12:5:6+10:0 + + + + + + + + Online threaded discussion + tool (asynchronous). + + + + 2.0 + + + + Discussion tool useful for + long running collaborations + and situations where + learners are not all on line + at the same time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + + tool/lafrum11/images/icon_forum.swf + + + + + + + 23.0 + + + + + + + + + + + + + + + + + + + + + 1.0 + + + Forum Tool + + + 1.0 + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + lafrum11 + + + + + + Resources and Forum + + + + + + + + 2009-8-28T12:5:7+10:0 + + + Chat and Scribe + + + 24.0 + + + + + + 5.0 + + + 26.0 + + + Chat and Scribe + + + 6.0 + + + + + + + 2009-8-28T12:5:7+10:0 + + + + + + + + Combined Chat and Scribe + + + + 2.0 + + + + The top window has a Chat + area and the bottom window + has a Scribe area for + learners to create their + group reports. + + + + + org.lamsfoundation.lams.library.llid24.ApplicationResources + + + + 24.0 + + + + images/icon_groupreporting.swf + + + + + + + + + 2.0 + + + 27.0 + + + Chat + + + 1.0 + + + + + + + tool/lachat11/authoring.do + + + + + 2009-8-28T12:5:7+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + + tool/lachat11/images/icon_chat.swf + + + + + + + 26.0 + + + + + + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + lachat11 + + + + + 2.0 + + + 28.0 + + + Scribe + + + 1.0 + + + + + + + tool/lascrb11/authoring.do + + + + + 2009-8-28T12:5:7+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + + tool/lascrb11/images/icon_scribe.swf + + + + + + + 26.0 + + + + + + + + + + + + + + + + + + + + + 10.0 + + + Scribe + + + 10.0 + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + lascrb11 + + + + + + Chat and Scribe + + + + + + + + 2009-8-28T12:5:8+10:0 + + + Forum and Scribe + + + 25.0 + + + + + + 5.0 + + + 29.0 + + + + Forum &amp; Scribe + + + + 6.0 + + + + + + + 2009-8-28T12:5:9+10:0 + + + + + + + + Combined Forum and Scribe + + + + 2.0 + + + + The top window has a Forum + area and the bottom window + has a Scribe area for + learners to create their + group reports. + + + + + org.lamsfoundation.lams.library.llid25.ApplicationResources + + + + 25.0 + + + + images/icon_forum_and_scribe.swf + + + + + + + + + 2.0 + + + 30.0 + + + Forum + + + 1.0 + + + + + + + tool/lafrum11/authoring.do + + + + + 2009-8-28T12:5:9+10:0 + + + + + + + + Online threaded discussion + tool (asynchronous). + + + + 2.0 + + + + Discussion tool useful for + long running collaborations + and situations where + learners are not all on line + at the same time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + + tool/lafrum11/images/icon_forum.swf + + + + + + + 29.0 + + + + + + + + + + + + + + + + + + + + + 1.0 + + + Forum Tool + + + 1.0 + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + lafrum11 + + + + + 2.0 + + + 31.0 + + + Scribe + + + 1.0 + + + + + + + tool/lascrb11/authoring.do + + + + + 2009-8-28T12:5:9+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + + tool/lascrb11/images/icon_scribe.swf + + + + + + + 29.0 + + + + + + + + + + + + + + + + + + + + + 10.0 + + + Scribe + + + 10.0 + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + lascrb11 + + + + + + Forum and Scribe + + + + + + + + + + Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/openLearningDesign.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/openLearningDesign.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/openLearningDesign.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1,3613 @@ + +
+ + + + getLearningDesignDetails + + + 3.0 + + + + + + + + 3.0 + + + + + learner.total.score + + + + + 32.0 + + + Assessment + + + 1.0 + + + 1.0 + + + + + + + tool/laasse10/authoring/start.do + + + + + + + + tool/laasse10/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + + Tool for assessing learners + + + + 2.0 + + + + Create questions to assess + learners. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + + + + + + 1.0 + + + 20.0 + + + + tool/laasse10/images/icon_assessment.swf + + + + + tool/laasse10/moderate.do + + + + + tool/laasse10/monitoring/summary.do + + + + + + + + + + + + + + + + 20.0 + + + Assessment + + + 20.0 + + + laasse10 + + + 20090612 + + + 41.0 + + + 51.0 + + + + + 2.0 + + + + + + 33.0 + + + Chat + + + 1.0 + + + 2.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + 5.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 209.0 + + + 47.0 + + + + + 2.0 + + + + + + 34.0 + + + Chat + + + 1.0 + + + 4.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + 1.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 23.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 8.0 + + + 45.0 + + + + + 5.0 + + + 36.0 + + + Chat and Scribe + + + 6.0 + + + 3.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Combined Chat and Scribe + + + + 2.0 + + + + The top window has a Chat area + and the bottom window has a + Scribe area for learners to + create their group reports. + + + + + + + + + + 1.0 + + + 24.0 + + + + images/icon_groupreporting.swf + + + + + + + + + + + + + 437.0 + + + 2.0 + + + + + 6.0 + + + + + + 37.0 + + + Data Collection + + + 1.0 + + + 6.0 + + + + + + + tool/ladaco10/authoring/start.do + + + + + + + + tool/ladaco10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Collecting data with custom + structure. + + + + 2.0 + + + + Asking questions with custom, + limited answers. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + + + + + + 1.0 + + + 14.0 + + + + tool/ladaco10/images/icon_daco.swf + + + + + tool/ladaco10/moderate.do + + + + + tool/ladaco10/monitoring/summary.do + + + + + + + + + + + + + + + + 14.0 + + + Data Collection + + + 14.0 + + + ladaco10 + + + 20090326 + + + 636.0 + + + 73.0 + + + + + 2.0 + + + + + + 38.0 + + + Forum + + + 1.0 + + + 7.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 19.0 + + + 205.0 + + + + + 2.0 + + + + + + 39.0 + + + Forum + + + 1.0 + + + 9.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 1.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 25.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 45.0 + + + + + 5.0 + + + 41.0 + + + + Forum &amp; Scribe + + + + 6.0 + + + 8.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Combined Forum and Scribe + + + + 2.0 + + + + The top window has a Forum area + and the bottom window has a + Scribe area for learners to + create their group reports. + + + + + + + + + + 1.0 + + + 25.0 + + + + images/icon_forum_and_scribe.swf + + + + + + + + + + + + + 216.0 + + + 198.0 + + + + + 1.0 + + + 42.0 + + + Optional Activity + + + 7.0 + + + 11.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 2.0 + + + + + + + + + 1.0 + + + + + + + + + + + + 391.0 + + + 196.0 + + + + + 6.0 + + + + + + 43.0 + + + Mindmap + + + 1.0 + + + 12.0 + + + + + + + tool/lamind10/authoring.do + + + + + + + + tool/lamind10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Mindmap Tool + + + 2.0 + + + + Mindmap for making mindmaps + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + + + + + + + 1.0 + + + 19.0 + + + + tool/lamind10/images/icon_mindmap.swf + + + + + tool/lamind10/moderate.do + + + + + tool/lamind10/monitoring.do + + + + 1.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 19.0 + + + Mindmap + + + 19.0 + + + lamind10 + + + 20090202 + + + 8.0 + + + 57.0 + + + + + 3.0 + + + + learner.mark + + + + 45.0 + + + Multiple Choice + + + 1.0 + + + 20.0 + + + + + + + tool/lamc11/authoringStarter.do + + + + + + + + tool/lamc11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Creates automated assessment + questions. e.g. Multiple choice + and true/false questions. Can + provide feedback and scores. + + + + 2.0 + + + + Learner answers a series of + automated assessment questions. + e.g. Multiple choice and + true/false questions. Optional + features include feedback on + each question and scoring. + Questions are weighted for + scoring. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + + + + + + 1.0 + + + 22.0 + + + + tool/lamc11/images/icon_mcq.swf + + + + + tool/lamc11/monitoringStarter.do + + + + + tool/lamc11/monitoringStarter.do + + + + + + + + + + + + + + + + 22.0 + + + MCQ + + + 22.0 + + + lamc11 + + + 20081127 + + + 552.0 + + + 227.0 + + + + + 1.0 + + + 46.0 + + + Branching + + + 12.0 + + + 22.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 40.0 + + + + + + 729.0 + + + 244.0 + + + 2.0 + + + + + + + 20.0 + + + + 1.0 + + + + + + + + + 25.0 + + + 244.0 + + + + + + 20.0 + + + 568.0 + + + 315.0 + + + + + 1.0 + + + 47.0 + + + Grouping + + + 2.0 + + + 25.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 1.0 + + + 24.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + + + + + + + + + + 582.0 + + + 456.0 + + + + + 1.0 + + + 48.0 + + + Sequence 1 + + + 8.0 + + + 29.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 33.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + 1.0 + + + 50.0 + + + 28.0 + + + + + + + + + + + + 4.0 + + + 48.0 + + + + + 1.0 + + + 50.0 + + + Optional Sequences + + + 13.0 + + + 28.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 2.0 + + + + + + + + + 1.0 + + + + + + + + + + + + 204.0 + + + 401.0 + + + + + 1.0 + + + 51.0 + + + Support Activity + + + 15.0 + + + 31.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 1.0 + + + + + + + + + 1.0 + + + 6.0 + + + + + + + + + + + + 30.0 + + + 390.0 + + + + + 4.0 + + + + + + 52.0 + + + Noticeboard + + + 1.0 + + + 33.0 + + + + + + + tool/lanb11/authoring.do + + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Tool for displaying HTML content + including external sources such + as images and other media. + + + + 2.0 + + + + Displays formatted text and + links to external sources on a + read only page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + + + + + + + 1.0 + + + 2.0 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + + tool/lanb11/monitoring.do + + + + 1.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 2.0 + + + NoticeboardX + + + 2.0 + + + lanb11 + + + 20081209 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 53.0 + + + Notebook + + + 1.0 + + + 34.0 + + + + + + + tool/lantbk11/authoring.do + + + + + + + + tool/lantbk11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Notebook Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + + + + + + + 1.0 + + + 8.0 + + + + tool/lantbk11/images/icon_notebook.swf + + + + + tool/lantbk11/moderate.do + + + + + tool/lantbk11/monitoring.do + + + + 1.0 + + + 49.0 + + + 30.0 + + + + + + + + + + + + + + + 8.0 + + + Notebook + + + 8.0 + + + lantbk11 + + + 20081118 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 55.0 + + + Q &amp; A + + + 1.0 + + + 37.0 + + + + tool/laqa11/laqa11admin.do + + + + + + + + tool/laqa11/authoringStarter.do + + + + + + + + tool/laqa11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Each learner answers question(s) + and then sees answers from all + learners collated on the next + page. + + + + 2.0 + + + + Each learner answers one or more + questions in short answer format + and then sees answers from all + learners collated on the next + page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + + + + + + 1.0 + + + 3.0 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + + tool/laqa11/monitoringStarter.do + + + + + tool/laqa11/monitoringStarter.do + + + + + + + + + + + + + + + + 3.0 + + + Question and Answer + + + 3.0 + + + laqa11 + + + 20081126 + + + 406.0 + + + 450.0 + + + + + 1.0 + + + 56.0 + + + Branch 1 + + + 8.0 + + + 40.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 2.0 + + + + + + + + + 1.0 + + + 1.0 + + + 46.0 + + + 22.0 + + + + + + + + + + + + + + 3.0 + + + + + + 58.0 + + + Submit Files + + + 1.0 + + + 43.0 + + + + + + + tool/lasbmt11/authoring.do + + + + + + + + tool/lasbmt11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Learners submit files for + assessment by the teacher. + Scores and comments may be + exported as a spreadsheet. + + + + 2.0 + + + + Learners submit files for + assessment by the teacher. + Scores and comments for each + learner are recorded and may be + exported as a spreadsheet. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + + + + + + + 1.0 + + + 4.0 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + + tool/lasbmt11/moderation.do + + + + + tool/lasbmt11/monitoring.do + + + + 1.0 + + + 57.0 + + + 42.0 + + + + + + + + + + + + + + + 4.0 + + + Submit File + + + 4.0 + + + lasbmt11 + + + 20091028 + + + 305.0 + + + 96.0 + + + + + 4.0 + + + + + + 59.0 + + + Share Resources + + + 1.0 + + + 52.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 1.0 + + + 51.0 + + + 31.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 8.0 + + + 57.0 + + + + + 2.0 + + + + + + 35.0 + + + Scribe + + + 1.0 + + + 5.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 24.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 2.0 + + + + + + 40.0 + + + Scribe + + + 1.0 + + + 10.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 26.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 2.0 + + + + + + 44.0 + + + Forum + + + 1.0 + + + 13.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 2.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 117.0 + + + + + 1.0 + + + 49.0 + + + Sequence 2 + + + 8.0 + + + 30.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 34.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + 2.0 + + + 50.0 + + + 28.0 + + + + + + + + + + + + 4.0 + + + 105.0 + + + + + 4.0 + + + + + + 54.0 + + + Share Resources + + + 1.0 + + + 35.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 2.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 65.0 + + + 5.0 + + + + + 1.0 + + + 57.0 + + + Branch 2 + + + 8.0 + + + 42.0 + + + + + + + 2009-12-17T16:23:32+10:0 + + + + 43.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + 2.0 + + + 46.0 + + + 22.0 + + + + + + + + + + + + + + + + + + 22.0 + + + + + + + 4.0 + + + + 48.0 + + + + + All Correct + + + + + true + + + + + learner.all.correct + + + + 1.0 + + + + OUTPUT_BOOLEAN + + + + + + 4.0 + + + 48.0 + + + All Correct + + + true + + + + learner.all.correct + + + + 1.0 + + + 20.0 + + + + OUTPUT_BOOLEAN + + + + + + 1.0 + + + 50.0 + + + 40.0 + + + + + 22.0 + + + + + + + 5.0 + + + + 49.0 + + + + + Not All Correct + + + + + false + + + + + learner.all.correct + + + + 2.0 + + + + OUTPUT_BOOLEAN + + + + + + 5.0 + + + 49.0 + + + + Not All Correct + + + + false + + + + learner.all.correct + + + + 2.0 + + + 20.0 + + + + OUTPUT_BOOLEAN + + + + + + 2.0 + + + 51.0 + + + 42.0 + + + + + + + + + + 2c94e45c259b0d1401259b0f05ce0004 + + + + 1.0 + + + 2009-12-17T16:23:30+10:0 + + + 1.0 + + + + + + 32.0 + + + 1.0 + + + 32.0 + + + 31.0 + + + + + + 1.0 + + + 1.0 + + + 24.0 + + + + + + 2.0 + + + Group 1 + + + 26.0 + + + 0.0 + + + + + + + + 1.0 + + + Group 2 + + + 27.0 + + + 1.0 + + + + + + + + + 2.0 + + + + + + 2009-12-17T16:23:30+10:0 + + + 1.0 + + + 52.0 + + + + + + xxx + + + + + + + 2009-12-17T16:23:32+10:0 + + + + 47.0 + + + 25.0 + + + 1.0 + + + 55.0 + + + 37.0 + + + 10.0 + + + 38.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 37.0 + + + 6.0 + + + 1.0 + + + 38.0 + + + 7.0 + + + 4.0 + + + 17.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 41.0 + + + 8.0 + + + 1.0 + + + 42.0 + + + 11.0 + + + 6.0 + + + 19.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 45.0 + + + 20.0 + + + 1.0 + + + 46.0 + + + 22.0 + + + 8.0 + + + 23.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 36.0 + + + 3.0 + + + 1.0 + + + 37.0 + + + 6.0 + + + 3.0 + + + 16.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 32.0 + + + 1.0 + + + 1.0 + + + 33.0 + + + 2.0 + + + 1.0 + + + 14.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 38.0 + + + 7.0 + + + 1.0 + + + 41.0 + + + 8.0 + + + 5.0 + + + 18.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 55.0 + + + 37.0 + + + 1.0 + + + 50.0 + + + 28.0 + + + 11.0 + + + 39.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 52.0 + + + 33.0 + + + 1.0 + + + 54.0 + + + 35.0 + + + 9.0 + + + 36.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 42.0 + + + 11.0 + + + 1.0 + + + 45.0 + + + 20.0 + + + 7.0 + + + 21.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 33.0 + + + 2.0 + + + 1.0 + + + 36.0 + + + 3.0 + + + 2.0 + + + 15.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 46.0 + + + 22.0 + + + 1.0 + + + 47.0 + + + 25.0 + + + 12.0 + + + 47.0 + + + + + + 5.0 + + + + + + 2.3.3.200910300000 + + + 5.0 + + + + + + Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/outputDefinitions.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/outputDefinitions.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/outputDefinitions.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1,39 @@ + +
+ + + + getToolOutputDefinitions + + + 3.0 + + + + + + Number of ideas + + + + + + number.of.nodes + + + + + + 0 + + + OUTPUT_LONG + + + + + + + \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/storeLearningDesign.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/storeLearningDesign.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/storeLearningDesign.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1,2833 @@ + +
+ + + + + + + + + + + + true + + + string_null_value + + + string_null_value + + + OUTPUT_BOOLEAN + + + All Correct + + + learner.all.correct + + + 1 + + + 48 + + + + + 22 + + + 40 + + + 50 + + + + + + + false + + + string_null_value + + + string_null_value + + + OUTPUT_BOOLEAN + + + Not All Correct + + + learner.all.correct + + + 2 + + + 49 + + + + + 22 + + + 42 + + + 51 + + + + + + + + + + + + Group 1 + + + 26 + + + + + 1 + + + Group 2 + + + 27 + + + + + + -111111 + + + boolean_null_value + + + boolean_null_value + + + -111111 + + + 2 + + + 1 + + + 24 + + + + + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 2 + + + -111111 + + + 1 + + + -111111 + + + 14 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 3 + + + -111111 + + + 2 + + + -111111 + + + 15 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 6 + + + -111111 + + + 3 + + + -111111 + + + 16 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 7 + + + -111111 + + + 6 + + + -111111 + + + 17 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 8 + + + -111111 + + + 7 + + + -111111 + + + 18 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 11 + + + -111111 + + + 8 + + + -111111 + + + 19 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 20 + + + -111111 + + + 11 + + + -111111 + + + 21 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 22 + + + -111111 + + + 20 + + + -111111 + + + 23 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 35 + + + -111111 + + + 33 + + + -111111 + + + 36 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 37 + + + -111111 + + + 25 + + + -111111 + + + 38 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 28 + + + -111111 + + + 37 + + + -111111 + + + 39 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 25 + + + -111111 + + + 22 + + + -111111 + + + 47 + + + -111111 + + + + + + + + + + + + learner.total.score + + + string_null_value + + + 20 + + + 20 + + + laasse10 + + + Assessment Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + tool/laasse10/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:9:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/laasse10/images/icon_assessment.swf + + + + 41 + + + 51 + + + + Create questions to assess learners. + + + + Tool for assessing learners + + + Assessment + + + 20 + + + 1 + + + 3 + + + 20 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 5 + + + 5 + + + lachat11 + + + Chat + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + tool/lachat11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/lachat11/images/icon_chat.swf + + + + 209 + + + 47 + + + Syncronous Chat tool + + + Chat Tool + + + Chat + + + 5 + + + 2 + + + 2 + + + 5 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 5 + + + 23 + + + lachat11 + + + Chat + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + tool/lachat11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 26 + + + 3 + + + + tool/lachat11/images/icon_chat.swf + + + + 8 + + + 45 + + + Syncronous Chat tool + + + Chat Tool + + + Chat + + + 1 + + + 4 + + + 2 + + + 27 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 10 + + + 24 + + + lascrb11 + + + Scribe + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + tool/lascrb11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 26 + + + 3 + + + + tool/lascrb11/images/icon_scribe.swf + + + + 8 + + + 108 + + + Syncronous Scribe tool + + + Scribe Tool + + + Scribe + + + 2 + + + 5 + + + 2 + + + 28 + + + 1 + + + + + -111111 + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + + images/icon_groupreporting.swf + + + + 437 + + + 2 + + + + The top window has a Chat area and the + bottom window has a Scribe area for + learners to create their group reports. + + + + Combined Chat and Scribe + + + Chat and Scribe + + + 24 + + + 3 + + + 5 + + + 26 + + + 6 + + + + + + + + string_null_value + + + string_null_value + + + 14 + + + 14 + + + ladaco10 + + + Data Collection Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + tool/ladaco10/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:8:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/ladaco10/images/icon_daco.swf + + + + 636 + + + 73 + + + + Asking questions with custom, limited + answers. + + + + + Collecting data with custom structure. + + + + Data Collection + + + 14 + + + 6 + + + 6 + + + 14 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 1 + + + 1 + + + lafrum11 + + + Forum Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + tool/lafrum11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/lafrum11/images/icon_forum.swf + + + + 19 + + + 205 + + + + Discussion tool useful for long running + collaborations and situations where + learners are not all on line at the same + time. + + + + + Online threaded discussion tool + (asynchronous). + + + + Forum + + + 1 + + + 7 + + + 2 + + + 1 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 1 + + + 25 + + + lafrum11 + + + Forum Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + tool/lafrum11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 29 + + + 8 + + + + tool/lafrum11/images/icon_forum.swf + + + + 8 + + + 45 + + + + Discussion tool useful for long running + collaborations and situations where + learners are not all on line at the same + time. + + + + + Online threaded discussion tool + (asynchronous). + + + + Forum + + + 1 + + + 9 + + + 2 + + + 30 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 10 + + + 26 + + + lascrb11 + + + Scribe + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + tool/lascrb11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 29 + + + 8 + + + + tool/lascrb11/images/icon_scribe.swf + + + + 8 + + + 108 + + + Syncronous Scribe tool + + + Scribe Tool + + + Scribe + + + 2 + + + 10 + + + 2 + + + 31 + + + 1 + + + + + -111111 + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + + images/icon_forum_and_scribe.swf + + + + 216 + + + 198 + + + + The top window has a Forum area and the + bottom window has a Scribe area for + learners to create their group reports. + + + + Combined Forum and Scribe + + + Forum &amp; Scribe + + + 25 + + + 8 + + + 5 + + + 29 + + + 6 + + + + + -111111 + + + -111111 + + + -111111 + + + + + + 2 + + + + 2009-12-17T16:15:39+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 391 + + + 196 + + + Optional Activity + + + 11 + + + 1 + + + 7 + + + + + + + + string_null_value + + + string_null_value + + + 19 + + + 19 + + + lamind10 + + + Mindmap + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + tool/lamind10/authoring.do + + + + + + 2 + + + 2009-12-17T17:9:31+11:0 + + + + + + + + + + + + -111111 + + + 11 + + + + tool/lamind10/images/icon_mindmap.swf + + + + 8 + + + 57 + + + Mindmap for making mindmaps + + + Mindmap Tool + + + Mindmap + + + 1 + + + 19 + + + 12 + + + 6 + + + 19 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 1 + + + 1 + + + lafrum11 + + + Forum Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + tool/lafrum11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 11 + + + + tool/lafrum11/images/icon_forum.swf + + + + 8 + + + 117 + + + + Discussion tool useful for long running + collaborations and situations where + learners are not all on line at the same + time. + + + + + Online threaded discussion tool + (asynchronous). + + + + Forum + + + 2 + + + 1 + + + 13 + + + 2 + + + 1 + + + 1 + + + + + + + + learner.mark + + + string_null_value + + + 22 + + + 22 + + + lamc11 + + + Multiple Choice Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + tool/lamc11/authoringStarter.do + + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/lamc11/images/icon_mcq.swf + + + + 552 + + + 227 + + + + Learner answers a series of automated + assessment questions. e.g. Multiple + choice and true/false questions. + Optional features include feedback on + each question and scoring. Questions are + weighted for scoring. + + + + + Creates automated assessment questions. + e.g. Multiple choice and true/false + questions. Can provide feedback and + scores. + + + + Multiple Choice + + + 22 + + + 20 + + + 3 + + + 22 + + + 1 + + + + + 20 + + + 244 + + + 729 + + + 244 + + + 25 + + + 40 + + + + + + 2 + + + + 2009-12-17T16:16:33+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 568 + + + 315 + + + Branching + + + 22 + + + 1 + + + 12 + + + + + 24 + + + + + + 2 + + + + 2009-12-17T16:16:42+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 582 + + + 456 + + + Grouping + + + 25 + + + 1 + + + 2 + + + + + 33 + + + + + + 2 + + + + 2009-12-17T16:16:45+11:0 + + + + + + + + + + + + + -111111 + + + 28 + + + 4 + + + 48 + + + Sequence 1 + + + 1 + + + 29 + + + 1 + + + 8 + + + + + 34 + + + + + + 2 + + + + 2009-12-17T16:16:45+11:0 + + + + + + + + + + + + + -111111 + + + 28 + + + 4 + + + 105 + + + Sequence 2 + + + 2 + + + 30 + + + 1 + + + 8 + + + + + -111111 + + + -111111 + + + -111111 + + + + + + 2 + + + + 2009-12-17T16:16:45+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 204 + + + 401 + + + Optional Sequences + + + 28 + + + 1 + + + 13 + + + + + -111111 + + + 6 + + + + + + 1 + + + + 2009-12-17T16:16:48+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 30 + + + 390 + + + Support Activity + + + 31 + + + 1 + + + 15 + + + + + + + + string_null_value + + + string_null_value + + + 2 + + + 2 + + + lanb11 + + + Noticeboard Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + tool/lanb11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 29 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + 5 + + + 5 + + + + Displays formatted text and links to + external sources on a read only page. + + + + + Tool for displaying HTML content + including external sources such as + images and other media. + + + + Noticeboard + + + 1 + + + 2 + + + 33 + + + 4 + + + 2 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 8 + + + 8 + + + lantbk11 + + + Notebook + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + tool/lantbk11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 30 + + + + tool/lantbk11/images/icon_notebook.swf + + + + 5 + + + 5 + + + + Notebook for notes and reflections + + + + Notebook Tool + + + Notebook + + + 1 + + + 8 + + + 34 + + + 6 + + + 8 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 6 + + + 6 + + + larsrc11 + + + Share Resources Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + tool/larsrc11/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 29 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + 65 + + + 5 + + + + Uploading your resources to share with + others. + + + + + Sharing resources with others. + + + + Share Resources + + + 2 + + + 6 + + + 35 + + + 4 + + + 6 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 3 + + + 3 + + + laqa11 + + + + Question &amp; Answer Tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + tool/laqa11/authoringStarter.do + + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + 406 + + + 450 + + + + Each learner answers one or more + questions in short answer format and + then sees answers from all learners + collated on the next page. + + + + + Each learner answers question(s) and + then sees answers from all learners + collated on the next page. + + + + Q &amp; A + + + 3 + + + 37 + + + 6 + + + 3 + + + 1 + + + + + -111111 + + + + + + 2 + + + + 2009-12-17T16:17:37+11:0 + + + + + + + + + + + + + -111111 + + + 22 + + + Branch 1 + + + 1 + + + 40 + + + 1 + + + 8 + + + + + 43 + + + + + + 2 + + + + 2009-12-17T16:17:45+11:0 + + + + + + + + + + + + + -111111 + + + 22 + + + Branch 2 + + + 2 + + + 42 + + + 1 + + + 8 + + + + + + + + string_null_value + + + string_null_value + + + 4 + + + 4 + + + lasbmt11 + + + Submit Files Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + tool/lasbmt11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 42 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + 305 + + + 96 + + + + Learners submit files for assessment by + the teacher. Scores and comments for + each learner are recorded and may be + exported as a spreadsheet. + + + + + Learners submit files for assessment by + the teacher. Scores and comments may be + exported as a spreadsheet. + + + + Submit Files + + + 1 + + + 4 + + + 43 + + + 3 + + + 4 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 6 + + + 6 + + + larsrc11 + + + Share Resources Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + tool/larsrc11/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 31 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + 8 + + + 57 + + + + Uploading your resources to share with + others. + + + + + Sharing resources with others. + + + + Share Resources + + + 1 + + + 6 + + + 52 + + + 4 + + + 6 + + + 1 + + + + + + 2c94e45c259b0d1401259b0f05ce0004 + + + 2009-12-17T16:19:24+11:0 + + + 5 + + + 52 + + + 0 + + + + + + + + + 5 + + + xxx + + + -111111 + + + 1 + + + + Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/storeLearningDesignReturn.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/storeLearningDesignReturn.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/storeLearningDesignReturn.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1,2245 @@ + +
+ + + + storeLearningDesignDetails + + + 3.0 + + + + + + + + 3.0 + + + + + learner.total.score + + + + + 32.0 + + + Assessment + + + 1.0 + + + 1.0 + + + + + + + tool/laasse10/authoring/start.do + + + + + + + + tool/laasse10/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + + Tool for assessing learners + + + + 2.0 + + + + Create questions to assess + learners. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + + + + + + 1.0 + + + 20.0 + + + + tool/laasse10/images/icon_assessment.swf + + + + + tool/laasse10/moderate.do + + + + + tool/laasse10/monitoring/summary.do + + + + + + + + + + + + + + + + 20.0 + + + Assessment + + + 20.0 + + + laasse10 + + + 20090612 + + + 41.0 + + + 51.0 + + + + + 2.0 + + + + + + 33.0 + + + Chat + + + 1.0 + + + 2.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + 5.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 209.0 + + + 47.0 + + + + + 2.0 + + + + + + 34.0 + + + Chat + + + 1.0 + + + 4.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + 1.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 23.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 8.0 + + + 45.0 + + + + + 2.0 + + + + + + 35.0 + + + Scribe + + + 1.0 + + + 5.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 24.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 6.0 + + + + + + 37.0 + + + Data Collection + + + 1.0 + + + 6.0 + + + + + + + tool/ladaco10/authoring/start.do + + + + + + + + tool/ladaco10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Collecting data with custom + structure. + + + + 2.0 + + + + Asking questions with custom, + limited answers. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + + + + + + 1.0 + + + 14.0 + + + + tool/ladaco10/images/icon_daco.swf + + + + + tool/ladaco10/moderate.do + + + + + tool/ladaco10/monitoring/summary.do + + + + + + + + + + + + + + + + 14.0 + + + Data Collection + + + 14.0 + + + ladaco10 + + + 20090326 + + + 636.0 + + + 73.0 + + + + + 2.0 + + + + + + 38.0 + + + Forum + + + 1.0 + + + 7.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 19.0 + + + 205.0 + + + + + 2.0 + + + + + + 39.0 + + + Forum + + + 1.0 + + + 9.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 1.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 25.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 45.0 + + + + + 6.0 + + + + + + 43.0 + + + Mindmap + + + 1.0 + + + 12.0 + + + + + + + tool/lamind10/authoring.do + + + + + + + + tool/lamind10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Mindmap Tool + + + 2.0 + + + + Mindmap for making mindmaps + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + + + + + + + 1.0 + + + 19.0 + + + + tool/lamind10/images/icon_mindmap.swf + + + + + tool/lamind10/moderate.do + + + + + tool/lamind10/monitoring.do + + + + 1.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 19.0 + + + Mindmap + + + 19.0 + + + lamind10 + + + 20090202 + + + 8.0 + + + 57.0 + + + + + 2.0 + + + + + + 40.0 + + + Scribe + + + 1.0 + + + 10.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 26.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 2.0 + + + + + + 44.0 + + + Forum + + + 1.0 + + + 13.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 2.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 117.0 + + + + + 3.0 + + + + learner.mark + + + + 45.0 + + + Multiple Choice + + + 1.0 + + + 20.0 + + + + + + + tool/lamc11/authoringStarter.do + + + + + + + + tool/lamc11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Creates automated assessment + questions. e.g. Multiple choice + and true/false questions. Can + provide feedback and scores. + + + + 2.0 + + + + Learner answers a series of + automated assessment questions. + e.g. Multiple choice and + true/false questions. Optional + features include feedback on + each question and scoring. + Questions are weighted for + scoring. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + + + + + + 1.0 + + + 22.0 + + + + tool/lamc11/images/icon_mcq.swf + + + + + tool/lamc11/monitoringStarter.do + + + + + tool/lamc11/monitoringStarter.do + + + + + + + + + + + + + + + + 22.0 + + + MCQ + + + 22.0 + + + lamc11 + + + 20081127 + + + 552.0 + + + 227.0 + + + + + 4.0 + + + + + + 52.0 + + + Noticeboard + + + 1.0 + + + 33.0 + + + + + + + tool/lanb11/authoring.do + + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Tool for displaying HTML content + including external sources such + as images and other media. + + + + 2.0 + + + + Displays formatted text and + links to external sources on a + read only page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + + + + + + + 1.0 + + + 2.0 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + + tool/lanb11/monitoring.do + + + + 1.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 2.0 + + + NoticeboardX + + + 2.0 + + + lanb11 + + + 20081209 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 53.0 + + + Notebook + + + 1.0 + + + 34.0 + + + + + + + tool/lantbk11/authoring.do + + + + + + + + tool/lantbk11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Notebook Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + + + + + + + 1.0 + + + 8.0 + + + + tool/lantbk11/images/icon_notebook.swf + + + + + tool/lantbk11/moderate.do + + + + + tool/lantbk11/monitoring.do + + + + 1.0 + + + 49.0 + + + 30.0 + + + + + + + + + + + + + + + 8.0 + + + Notebook + + + 8.0 + + + lantbk11 + + + 20081118 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 55.0 + + + Q &amp; A + + + 1.0 + + + 37.0 + + + + tool/laqa11/laqa11admin.do + + + + + + + + tool/laqa11/authoringStarter.do + + + + + + + + tool/laqa11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Each learner answers question(s) + and then sees answers from all + learners collated on the next + page. + + + + 2.0 + + + + Each learner answers one or more + questions in short answer format + and then sees answers from all + learners collated on the next + page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + + + + + + 1.0 + + + 3.0 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + + tool/laqa11/monitoringStarter.do + + + + + tool/laqa11/monitoringStarter.do + + + + + + + + + + + + + + + + 3.0 + + + Question and Answer + + + 3.0 + + + laqa11 + + + 20081126 + + + 406.0 + + + 450.0 + + + + + 3.0 + + + + + + 58.0 + + + Submit Files + + + 1.0 + + + 43.0 + + + + + + + tool/lasbmt11/authoring.do + + + + + + + + tool/lasbmt11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Learners submit files for + assessment by the teacher. + Scores and comments may be + exported as a spreadsheet. + + + + 2.0 + + + + Learners submit files for + assessment by the teacher. + Scores and comments for each + learner are recorded and may be + exported as a spreadsheet. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + + + + + + + 1.0 + + + 4.0 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + + tool/lasbmt11/moderation.do + + + + + tool/lasbmt11/monitoring.do + + + + 1.0 + + + 57.0 + + + 42.0 + + + + + + + + + + + + + + + 4.0 + + + Submit File + + + 4.0 + + + lasbmt11 + + + 20091028 + + + 305.0 + + + 96.0 + + + + + 4.0 + + + + + + 59.0 + + + Share Resources + + + 1.0 + + + 52.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 1.0 + + + 51.0 + + + 31.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 8.0 + + + 57.0 + + + + + 4.0 + + + + + + 54.0 + + + Share Resources + + + 1.0 + + + 35.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 2.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 65.0 + + + 5.0 + + + + + + 1.0 + + + + + + + + + \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/tool_image.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/tool_image.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/configData.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/configData.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/configData.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1 @@ +
getConfigData3defaultDefaultlimeLimerubyRubyen_AUEnglish (AU)cy_GBWelsh (GB)frFran&#xe7;aisesEspanolmi_NZMaori (NZ)zhChineseitItalianpt_BRPortuguese (BR)deGermannoNorwegiankoKoreansvSwedishplPolishbgBulgarianthThaidefaulten6000001.142 \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/contributorData.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/contributorData.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/contributorData.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,147 @@ +
getContributorList3Thành Bùi + + + Tuan Son + + + Viettien Soft + + + Ha VuAnton Vychegzhanin + + + Andrey BalanJens Bruun KofoedAbdel-Elah Al-AyyoubAl-Faisal El-Dajani + + + Arbaoui AhmedRob Joris + + + Raoul TeeuwenSpyros Papadakis (special thanks)Eleni Rossiou + + + Stelios Skourtis + + + Tatania BekouKittipong Phumpuang + + + Polawat OuilapanDaniel DenevGyula PappPeter Gogh + + + Tamas KeresztesAdam StecykSebastian Komorowski + + + Marcin ChojnowskiJong-Dae Park + + + Jong-Ki LeeAnders BerggrenErik Engh (special thanks!)Edoardo MontefuscoLaura PetrilloRoberta Gaeta (special thanks!)Massimo AngeloniRosella BaldazziIda Taci + + + Silvia Flaim + + + Mario Mattioli + + + Daniela Castrataro (special thanks!) + + + Anna MontefuscoNadia Spang Bovey + + + Benjamin Gay + + + Pascal Gibon + + + Daniel Schneider + + + Laurence VignolletFei YangYi ZhouLi Yan + + + Wei Guo + + + Lihua Guo + + + + + + Long-chuan Chen + + + + + Eric Hsin + + + Alexia Chang + + + Cheng Bo Chuan + + Ralf HilgenstockCarlos MarceloErnie Ghiglione + + + Gregorio Rodríguez Gomez + + + Elena de Miguel GarciaKristian BesleyPaulo GouveiaCharles Niza + + + Marcio Soares + + + Luciana OliveiraRobin Ohia + + + + + Haruhiko Taira + + + + + Minoru Akiyama + + + + + + + Mohammad Fahmi Adam + + + + + Gonca Kızılkaya + + + + + Darius Staigys + + + + + Fiona Malikoff + + + Ernie Ghiglione + + + + Jun-Dir Liew + + James DalzielRobyn PhilipBronwen DalzielAngela VoermanKaren Baskett + + + Leanne Maria Cameron + + + Jeremy PageMichelle O'ReillyFiona MalikoffDapeng NiOzgur DemirtasJun-Dir LiewMitchell SeatonAnthony SukkarPradeep SharmaYoichi TakayamaErnie GhiglioneFei YangDavid CaygillMai Ling TruongAnthony XiaoJacky FangManpreet MinhasChris PerfectDaniel CarlierLuke Foxton + + \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/defaultTheme.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/defaultTheme.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/defaultTheme.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1 @@ +
0x33364810Verdana0x669BF20x669BF20x669BF2insetdefaultbutton0x3336489Verdana0xBFFFBF0xBFFFBF0xBFFFBF0x669BF2label0x33364812VerdanaPIlabel0x33364810VerdanaCALabel0x33364811VerdananoneEndGatelabel0x3336487VerdanaLFWindow0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFinsettreeview0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFElasticdatagrid0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFElasticcombo0x33364811Verdana0xBFFFBF0xBFFFBF0xBFFFBFpicombo0x3336489Verdana0xBFFFBF0xBFFFBF0xBFFFBFLFMenuBar0x33364811Verdana0xBFFFBF0xBFFFBF0xBFFFBFBGPaneloutset0xC2D5FEFlowPanelnone0xC2D5FEWZPaneloutset0xDBE6FDMHPanelnone0xDBE6FDTAPaneloutset0xC2D5FE0x000000scrollpane0x669BF2textarea0x333648Verdana10CanvasPanel0xFCFCFCACTPanelNone0xC2D5FEACTPanel0None0xE1E7E7ACTPanel1None0xC2D5FEACTPanel2None0xFFFDBEACTPanel3None0xDDFCB1ACTPanel4None0xFFEEC8ACTPanel5None0xE9E2F5OptActContainerPanelinset0x25a56fOptActPanelnone0xd8ffefparallelHeadPaneloutset0x4684F7OptHeadPaneloutset0x4684F7ACTPanelNegativeNone0x000000smallLabel0x333648 10 VerdanaTAPanelSelected0x1B6BA7redLabel0xFF0000 12 VerdanaboldTAPanelRollover0xFFFFFFoutsetBGPanelShadow0xAFC8FFCAHighlightBorder0x266DEELTVLearnerText0x555555Verdana11bold0xE7EEFEsolidAboutDialogScpGeneralItem0x66666611VerdanaAboutDialogScpHeaderItem0x66666611VerdanaboldAboutDialogPanel0xFFFFFFnoneAlertDialog1000100010001000IndexBar0x1647BEIndexButtonTahoma12IndexTextFieldTahoma120x333333progressBar0xEAF9FF0x0033660xC4D6FF0x003366branchingDiagram0x0000000x0000000xCC0000BlueTextArea0xC2D5FELightBlueTextArea0x669BF2None \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/preloaderStyle.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/preloaderStyle.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/preloaderStyle.xml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1 @@ + \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ar_JO_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleأدوات الانشطةTitle for Activity Toolkit Panelal_alertتحذيرGeneric title for Alert windowal_cancelإلغاءTo Confirm title for LFErroral_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on the alert dialogapp_chk_langloadبيانات اللغة لم تحمل بعدmessage for unsuccessful language loadingapp_chk_themeloadبيانات الموضوع لم تحمل بعدmessage for unsuccessful theme loadingapp_fail_continueالبرنامج لا يمكنه الاستمرار، الرجاء الاتصال بالدعم الفنيmessage if application cannot continue due to any errorchosen_grp_lblالمنتقىLabel for the grouping drop down in the PropertyInspectorcopy_btnنسخToolbar &gt; Copy Buttoncv_invalid_design_savedتصميمك ليس صحيح ولكنة حفظ، انقر على "مشاكل" للتحقق من الخطاءMessage when an invalid design has been savedcv_invalid_trans_targetلا يمكنك رسم نقلة لهذا العنصرError message for when transition tool is dropped outside of valid target activitycv_show_validationمشاكلThe button on the confirm dialogcv_valid_design_savedمبروك ... تم حفظ تصميمك بنجاح Message when a valid design has been saveddb_datasend_confirmشكرا على ارسال البيانات إلى الخادمMessage when user sucessfully dumps data to the serverdelete_btnحذفLabel for Delete buttongate_btnبوابةToolbar &gt; Gate Buttongroup_btnمجموعةToolbar &gt; Group Buttongrouping_act_titleتجميعDefault title for the grouping activityld_val_activity_columnنشاطThe heading on the activity in the ValidationIssuesDialogld_val_doneانتهىThe button label for the dialogld_val_issue_columnمشاكلThe heading on the issue in the ValidationIssuesDialogld_val_titleقضايا التحققThe title for the dialoglicense_not_selectedلم يتم إختيار رخصة - الرجاء اختيار واحدةShown if no license is selected in the drop down in workspacemnu_editتحريرMenu bar Editmnu_edit_copyنسخقMenu bar Edit &gt; Copymnu_edit_cutقصMenu bar Edit &gt; Cutmnu_edit_pasteلصقMenu bar Edit &gt; Pastemnu_edit_redoإعادةMenu bar Edit &gt; Redomnu_edit_undoإلغاءMenu bar Edit &gt; Undomnu_fileملفMenu bar Filemnu_file_closeإعلاقMenu bar Closemnu_file_newجديدMenu bar Newmnu_file_openفتحMenu bar Openmnu_file_saveحفظMenu bar savemnu_file_saveasحفظ بإسم ...Menu bar Save asmnu_helpتعليماتMenu bar Helpmnu_help_abtعن لامسMenu bar Aboutmnu_toolsأدواتMenu bar Toolsmnu_tools_optارسم اختياريMenu bar Optionalmnu_tools_prefsتفضيلاتMenu bar preferencesmnu_tools_transارسم نقلة Menu bar draw transitionnew_btnجديدToolbar &gt; New Buttonnew_confirm_msgهل انت متأكد من انك تريد مسح التصميم عن الشاشة؟Msg when user clicks new while working on the existing designnone_act_lblلا شيء No gate activity selectedopen_btnفتحToolbar &gt; Open Buttonoptional_btnاختياريToolbar &gt; Optional Buttonpaste_btnلصقToolbar &gt; Paste Buttonperm_act_lblصلاحيةLabel for permission gate activitypi_activity_type_gateنشاط البوابةActivity type for gate in PIpi_activity_type_groupingنشاط التجميعActivity type for grouping in Property Inspectorpi_definelaterعرف لاحقاLabel for Define later for PIpi_end_offsetاغلق البوابةEnd offset labelpi_group_typeنوع التجميعProperty Inspector Grouping type drop downpi_hoursساعاتHours label in Property Inspectorpi_lbl_currentgroupالتجميع الحاليCurrent grouping label for PIpi_lbl_descالوصفDescription Label for PIpi_lbl_groupالتجميعGrouping label for PIpi_lbl_titleالعنوانTitle label for PIpi_max_actنشاطات الحد الاقصىlabel for maximum Activitiespi_min_actنشاطات الحد الادنىlabel for Minimum activitiespi_minsدقائقMins label in teh property inspectorpi_no_groupingلا شيء Combo title for no groupingpi_num_learnersمتعلمو الارقامPI Num learners labelpi_optional_titleنشاط اختياريTitle for oprional activity property inspectorpi_runofflineنفذ بشكل غير مباسرLabel for Run Oflinepi_start_offsetافتح بوابةStart offset labelpi_titleخصائصOn the title bar of the PIprefix_copyofنسخة منPrefix for copy paste command for canvas activitiesprefs_dlg_cancelالغاء6prefs_dlg_lng_lblاللغة7prefs_dlg_okنعم5prefs_dlg_theme_lblالموضوع 8prefs_dlg_titleالتفضيلات4preview_btnاستعراضToolbar &gt; Preview Buttonproperty_inspector_titleخصائصOn the title bar of the PIrandom_grp_lblعشوائيLabel for the grouping drop down in the PropertyInspectorrename_btnإعادة تسميةLabel for Rename Buttonsave_btnحفظToolbar &gt; Save buttonsched_act_lblجدولLabel for schedule gate activitysynch_act_lblزامن Used as a label for the Synch Gate Activity Typetk_titleأدوات النشاطاتLabel for Activities Toolkit Paneltrans_btnنقلهToolbar &gt; Transition Buttontrans_dlg_cancelإلغاءCancel button on transition dialogtrans_dlg_gateتزامنHeader for the transition props dialogtrans_dlg_gatetypecmbنوعGate type combo labeltrans_dlg_okنعمOK Button on transition dialogtrans_dlg_titleنقلهTitle for the transition properties dialogws_Rootالمجلد الرئيسيRoot folder title for workspacews_chk_overwrite_resourceانتبه انت على وشك حذف سلسة!ws_click_folder_fileالرجاء النقر على مجلد للحفظ داخله أو على تصميم لحذفهError msg if no folder or file is selectedws_copy_same_folderالمصدر والمقصد هي نفس المجلداتThe user has tried to drag and drop to the same placews_dlg_cancel_buttonإلغاء2ws_dlg_filenameاسم الملفLabel for File name in workspace windowws_dlg_location_buttonالوقعWorkspace dialogue Location btn labelws_dlg_ok_buttonنعمWsp Dia OK Button labelws_dlg_open_btnفتحWsp Dia Open Button labelws_dlg_properties_buttonخصائصWorkspace dialogue Properties btn labelws_dlg_save_btnحفظWsp Dia Save Button labelws_dlg_titleمساحه عمل 0ws_newfolder_cancelإلغاءCancel on the new folder name diaws_newfolder_insالرجاء إدخال اسم مجلد جديدInstructions on the new name pop upws_newfolder_okنعمOK on the new folder name diaws_no_permissionعفواً ... ليس لديك صلاحيات لحذف هذا المصررMessage when user does not have write permission to complete actionws_rename_insالرجاء ادخال الاسم الجديدMessage of the new name for the userws_tree_mywspمساحه عملي The root level of the treews_tree_orgsمجموعايShown in the top level of the tree in the workspacews_view_license_buttonعرضTo show the license to the useract_lock_chkالرجاء فتح حاوية النشاط الاختياري قبل اسناد هذا النشاط كنشاط اختياري Alert Message if user drags the activity to locked optional activity container sys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج الى اعاده بدء مؤلف لامس لاستمرار. هل تريد حفظ المعلومات التاليه عن الخطا للمساعدة في تحديد المشكله؟ Common System error message finish paragraphsys_errorخطإ في النظامSystem Error elert window titlepi_num_groupsعدد المجموعاتNumber of groups in Property inspectorpi_parallel_titleنشاط موازيTitle for parallel activity property inspectoropt_activity_titleنشاط اختياريTitle for Optional Activity Containerlbl_num_activitiesنشاطاتreplacement for word activitiesal_sendإرسلSend button label on the system error dialogal_cannot_move_activityعفواً ... لا يمكنك نقل هذا النشاطAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkلا يمكنك اضافة نشاط بوابة كنشاط اختياريError message when user drags gate activity over to optional containerprefix_copyof_countنسخة من ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidلا يمكنك حفظ التصميم في هذا المجلد. الرجاء اختيار مجلد فرعي آخرAlert message if root My Workspace folder is selected to save a design in.ws_click_file_openالرجاء النقر على تصميم للفتحAlert message if folder tried to be opened.ws_license_lblرخصةLabel for Licence drop down on workspace properties tab viewws_license_comment_lblمعلومات اضافية عن الرخصةLabel for Licence Comment description below license drop downcv_invalid_optional_activityحذف نقلات من والى {0} قبل تعريفها كنشاط اختياريAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingالنشاط الثاني للنقلة مفقودError message when target activity for transition is missingcv_invalid_trans_target_from_activityالنقلة من {0} موجودة اصلاError message when a transition from the activity already existcv_invalid_trans_target_to_activityالنقلة لـ {0} موجدة اصلاError message when a transition to the activity already existbranch_btnفرعLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnتدفقLabel for Flow button in Toolbarmnu_file_importاستردادMenu bar Importcv_design_export_unsavedلا يمكنك تصدير تمصيم غير محفوظAlert message when trying to export can unsaved design.cv_design_unsavedلقد تغير التصميم. هل ترغب بالاستمرار دون الحفظ؟Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportتصديرMenu bar Exportws_chk_overwrite_existingهذا المجلد يحتوي على ملف بالاسم {0}Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderلا يمكن استخدام هذا المجلدAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitخروجFile Menu Exitws_no_file_openلا يوجد ملفاتAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceلا يمكنك استخدام سلاسل دائريةError message when a transition from one activity to another is creating a circular loopbin_tooltipإلقي نشاط في هذه السلة لإزالته من سلسلة النشاطاتTool tip message for canvas binnew_btn_tooltipمسح التسلسل الحالي واعادة استخدام مساحه العملTool tip message for new button in toolbaropen_btn_tooltipعرض ملف الحوار لفتح سلسلة نشاطTool tip message for open button in toolbarsave_btn_tooltipحفظ سريع لسلسله النشاط الحاليtool tip message for save button in toolbarcopy_btn_tooltipنسخ النشاط المحددtool tip message for copy button in toolbarpaste_btn_tooltipلصق نسخة من النشاط المحددtool tip message for paste button in toolbartrans_btn_tooltipاستخدم هذا القلم لرسم نقلة بين نشاطينtool tip message for transition button in toolbaroptional_btn_tooltipانشاء مجموعه من الانشطه الاختياريه tool tip message for optional button in toolbargate_btn_tooltipانشاء نقطه التوقف tool tip message for gate button in toolbarbranch_btn_tooltipانشاء فرع tool tip message for branch button in toolbarflow_btn_tooltipانشاء ضوابط لتدفق الانشطه tool tip message for flow button in toolbargroup_btn_tooltipانشاء نشاط لتكوين المجموعاتtool tip message for group button in toolbarpreview_btn_tooltipاستعراض سلسلة كما سيراها المتعلمTool tip message for preview button in toolbarcv_activity_dbclick_readonlyلا يمكنك تحرير ادوات تصميم مخصصةللقراءة فقط. الرجاء حفظ نسخه من التصميم والمحاولة مره اخري. Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblللفرائة فقطLabel for top left of canvas shown when a read-only design is open.al_empty_designعفواً ... لا يمكنك حفظ تصميم فارغalert message when user want to save an empty designcv_autosave_err_msgحدث خطا اثناء محاولته الحفظ التلقائي للتصميم. اذا يستمر هذا الخطا الرجاء الاتصال بمدير النظام Alert error message when auto-save fails.cv_autosave_rec_msgانت عن وشك استرداد تصميم ضائع أو غير محفوظ. سيتم مسح التصميم الحالي. استمرار؟ Message informing users that they have recovered data for a design.cv_autosave_rec_titleتحذيرAlert title for auto save recovery message.mnu_file_recoverاسترجع ...Menu bar Recovercv_activity_copy_invalidعفوا ! لا يمكنك نسخ هذا النشاط. Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidعفوا ! لا يمكنك لسق هذا النشاط. Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidنأسف! يجب اختيار النشاط قبل النسخAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidعفوا! يجب إختيار النشاط قبل النقر على فتح/تحرير محتوى النشاط من قائمة الزر الايمن للفارة. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgهل انت متأكد من حذف الملف أو المجلد؟Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyعفواً ... لا يمكنك حفظ التصميم بدون اسم.Error message when user try to save a design with no file namews_entre_file_nameالرجاء إدخال اسم التصميم ومن ثم النقر على زر الحفظ.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedلم يتم العثور على صفحة التعليمات {0} Alert message when a tool activity has no help url defined.cv_untitled_lblبدون اسم - 1Label for Design Title bar on canvasmnu_help_helpتعليمات التأليفlabel for menu bar Help - Authoring Help optionccm_open_activitycontentفتح أو تحرير محتوى النشاطLabel for Custom Context Menuccm_copy_activityنسخ النشاطLabel for Custom Context Menuccm_paste_activityلصق النشاطLabel for Custom Context Menuccm_piمعاين الخصائصLabel for Custom Context Menuccm_author_activityhelpتعليمات مؤلف النشاطLabel for Custom Context Menuws_dlg_descriptionالوصفLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateلا شيءDrop down default for gate typepi_daysايامDays label in property inspector for gate tool \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/bg_BG_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/bg_BG_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/bg_BG_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleНабор инструменти за учебни дейностиTitle for Activity Toolkit Panelal_alertПредупреждениеGeneric title for Alert windowal_cancelОтказванеTo Confirm title for LFErroral_confirmПотвърждаванеTo Confirm title for LFErroral_okДАOK on the alert dialogapp_chk_langloadДанните за езика не бяха заредениmessage for unsuccessful language loadingapp_chk_themeloadДанните за темата не бяха заредениmessage for unsuccessful theme loadingapp_fail_continueПриложението не може да продължи работа. Моля, обърнете се към специалистие по поддръжка на системата.message if application cannot continue due to any errorchosen_grp_lblИзбранLabel for the grouping drop down in the PropertyInspectorcopy_btnКопиранеToolbar &gt; Copy Buttoncv_invalid_design_savedДизайнът ви вече все още не е валиден, но е съхранен, щракнете на "Есета" за да видите какво не е наред.Message when an invalid design has been savedcv_invalid_trans_targetНе е възможно да създадете преход към този обект.Error message for when transition tool is dropped outside of valid target activitycv_show_validationЕсетеThe button on the confirm dialogcv_valid_design_savedСега вашия дизайнвече е валиден и съхраненMessage when a valid design has been saveddb_datasend_confirmБлагодаря за изпращането на данните до сървъраMessage when user sucessfully dumps data to the serverdelete_btnИзтриванеLabel for Delete buttongate_btnГейтToolbar &gt; Gate Buttongroup_btnГрупаToolbar &gt; Group Buttongrouping_act_titleГрупиранеDefault title for the grouping activityld_val_activity_columnДейностThe heading on the activity in the ValidationIssuesDialogld_val_doneГотовоThe button label for the dialogld_val_issue_columnЕсеThe heading on the issue in the ValidationIssuesDialogld_val_titleЕсета по валидациятаThe title for the dialoglicense_not_selectedМоля, изберете лиценз за този дизайнShown if no license is selected in the drop down in workspacemnu_editРедактиранеMenu bar Editmnu_edit_copyКопиранеMenu bar Edit &gt; Copymnu_edit_cutИзрязванеMenu bar Edit &gt; Cutmnu_edit_pasteВмъкванеMenu bar Edit &gt; Pastemnu_edit_redoОтновоMenu bar Edit &gt; Redomnu_edit_undoОтмянаMenu bar Edit &gt; Undomnu_fileФайлMenu bar Filemnu_file_closeЗатварянеMenu bar Closemnu_file_newНовMenu bar Newmnu_file_openОтварянеMenu bar Openmnu_file_revertНазадMenu bar Revertmnu_file_saveСъхраняванеMenu bar savemnu_file_saveasСъхраняване като...Menu bar Save asmnu_helpПомощна информацияMenu bar Helpmnu_help_abtОтносноMenu bar Aboutmnu_toolsИнструментиMenu bar Toolsmnu_tools_optДопълнително изчертаванеMenu bar Optionalmnu_tools_prefsПредпочитанияMenu bar preferencesmnu_tools_transИзчертаване на преходMenu bar draw transitionnew_btnНовToolbar &gt; New Buttonnew_confirm_msgСигурни ли сте, че желаете да изтриете вашият дизайн от екрана?Msg when user clicks new while working on the existing designnone_act_lblБезNo gate activity selectedopen_btnОтварянеToolbar &gt; Open Buttonoptional_btnНезадължителенToolbar &gt; Optional Buttonpaste_btnВмъкване (залепване)Toolbar &gt; Paste Buttonperm_act_lblПозволениеLabel for permission gate activitypi_activity_type_gateГейт дейностActivity type for gate in PIpi_activity_type_groupingДейност групиранеActivity type for grouping in Property Inspectorpi_definelaterДефиниране по-късноLabel for Define later for PIpi_end_offsetЗатваряне на гейтEnd offset labelpi_group_typeТип групиранеProperty Inspector Grouping type drop downpi_hoursЧасовеHours label in Property Inspectorpi_lbl_currentgroupТекущо групиранеCurrent grouping label for PIpi_lbl_descОписаниеDescription Label for PIpi_lbl_groupГрупиранеGrouping label for PIpi_lbl_titleЗаглавиеTitle label for PIpi_max_actМаксимална активностпо дейносиlabel for maximum Activitiespi_min_actМинимална активностпо дейносиlabel for Minimum activitiespi_minsМинутиMins label in teh property inspectorpi_no_groupingБез`Combo title for no groupingpi_num_learnersБрой обучаемиPI Num learners labelpi_optional_titleНезадължителна дейностTitle for oprional activity property inspectorpi_runofflineРабота офлайнLabel for Run Oflinepi_start_offsetОтваряне гейтStart offset labelpi_titleСвойстваOn the title bar of the PIprefix_copyofКопиране наPrefix for copy paste command for canvas activitiesprefs_dlg_cancelОтказване6prefs_dlg_lng_lblЕзик7prefs_dlg_okДА5prefs_dlg_theme_lblТема8prefs_dlg_titleПредпочитания4preview_btnПредварителен прегледToolbar &gt; Preview Buttonproperty_inspector_titleСвойстваOn the title bar of the PIrandom_grp_lblПроизволноLabel for the grouping drop down in the PropertyInspectorrename_btnПреименуванеLabel for Rename Buttonsave_btnСъхраняванеToolbar &gt; Save buttonsched_act_lblГрафикLabel for schedule gate activitysynch_act_lblСинхронизиранеUsed as a label for the Synch Gate Activity Typetk_titleНабор инструменти за учебни дейностиLabel for Activities Toolkit Paneltrans_btnПреходToolbar &gt; Transition Buttontrans_dlg_cancelОтказванеCancel button on transition dialogtrans_dlg_gateСинхронизиранеHeader for the transition props dialogtrans_dlg_gatetypecmbТипGate type combo labeltrans_dlg_okДАOK Button on transition dialogtrans_dlg_titleПреходTitle for the transition properties dialogws_RootИме на Root директорията за работното пространство Root folder title for workspacews_chk_overwrite_resourceВнимавайте относно пренаисването на ресурс!ws_click_folder_fileМоля, щракнете на една от двете алтернативи: "Директория"- за да съхраните в нея, или "Дизайн" за презапишетеError msg if no folder or file is selectedws_copy_same_folderИзточникът и направлениетоThe user has tried to drag and drop to the same placews_dlg_cancel_buttonОтказване2ws_dlg_filenameИме на файлLabel for File name in workspace windowws_dlg_location_buttonМестонахождениеWorkspace dialogue Location btn labelws_dlg_ok_buttonДАWsp Dia OK Button labelws_dlg_open_btnОтварянеWsp Dia Open Button labelws_dlg_properties_buttonСвойстваWorkspace dialogue Properties btn labelws_dlg_save_btnСъхраняванеWsp Dia Save Button labelws_dlg_titleРаботно пространство0ws_newfolder_cancelОтказванеCancel on the new folder name diaws_newfolder_insМоля въведете име на нова директорияInstructions on the new name pop upws_newfolder_okДАOK on the new folder name diaws_no_permissionСъжаляваме, но вие нямате позволение да пишете в рамките на този ресурсMessage when user does not have write permission to complete actionws_rename_insМоля, въведете новото имеMessage of the new name for the userws_tree_mywspМоето работно пространствоThe root level of the treews_tree_orgsОбучаващи организацииShown in the top level of the tree in the workspacews_view_license_buttonПреглед лиценз на потребителTo show the license to the useract_lock_chkПреди определянето на тази учебна дейност като незадължителна, отключете контейнера "Незадължителна Дейност"Alert Message if user drags the activity to locked optional activity container sys_error_msg_startНастъпи следната системна грешка:Common System error message starting linesys_error_msg_finishЗа да продължите е необходимо да "рестартирате" модула "Автор" на LAMS. Желаете ли да съхраните информацията за възникналата грешка? Тази информация би могла да се окаже полезна за нейното отстраняване. Common System error message finish paragraphsys_errorСистемна ГрешкаSystem Error elert window title \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ca_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ca_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ca_ES_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_lbl_titleTítolpi_max_actMàx {0}mnu_tools_optActivitat opcionalcv_trans_readOnlyLa transició no pot ser {0}. El destí es de només lecturacv_invalid_optional_activityCal eliminar l'origen i destí de les transicions de {0} abans de definirla com a activitat opcionalal_activity_paste_invalidHo sentim, no es pot enganxar aquest tipus d'activitatsupport_act_titleActivitat de suportsupport_msg_no_connectionLes activitats de siport no es poden conectar a un altre activitatsupport_msg_invalid_childLes activitats de tipus {0} no es poden afegir com a activitat de suportsupport_msg_cannot_be_childNo es permès dipositar una activitat de suport dins d'una altre acvtivitatis_remove_warning_msgAtenció !! Aquesta lliço està a punt de ser esborrada: Desitja mantenir aquesta lliçó coma {0}?branch_mapping_dlg_condition_linked_msg{0} està vinculat amb una branca existent. Desitja continuar?cv_activityProtected_activity_link_msg{0} està vinculat a {1}branch_mapping_dlg_group_col_lblGruptrans_dlg_nogateCappi_daysDiesal_group_name_invalid_blankCal assignar un nom al grupcv_invalid_trans_diff_branchesNo es poden crear transicions entre activitats que es trobin en branques diferentsto_conditions_dlg_gte_lblMajor que o igual ato_conditions_dlg_lte_lblMenor que o igual apreview_btn_tooltip_disabledCal desar la seqüència abans de pre visualitzar-lato_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_range_lblIntervalto_conditions_dlg_defin_long_typeintervalto_conditions_dlg_remove_item_btn_lblEsborrarchosen_grp_lblEscollir en el seguimentoptional_act_btnActivitatpi_definelaterDefineix en el seguimentto_conditions_dlg_to_lblDes decv_autosave_err_msgS'ha produït un error al intentar guardar automàticament el seu disseny. Si us plau, augmenti les propietats d'emmagatzemament del seu reproductor de Flash. cv_autosave_rec_msgVostè està a punt de recuperar un disseny perdut o que no s'ha desat. El disseny actual es perdrà. Vol continuar?cv_activity_copy_invalidHo sentim! No es pot copiar una activitat que depèn d'un altre.cv_activity_cut_invalidHo sentim! No es pot tallar una activitat que depèn d'un altre.al_activity_copy_invalidHo sentim! cal seleccionar l'activitat abans de copiar-laws_del_confirm_msgEsta segur de que vol esborrar aquest arxiu / carpeta?branch_mapping_dlg_branch_col_lblBrancaws_file_name_emptyHo sentim! No es pot desar un disseny que no té nom.ccm_author_activityhelpAjut sobre activitats pels autorsws_entre_file_nameSi us plau, introdueixi el nom del disseny i faci "clic" en el boto Guardarcv_untitled_lblSense títol - 1mnu_help_helpAjut pels autorsccm_piInspecció de propietats...validation_error_activityWithNoTransitionUna activitat ha de tenir una transició d'entrada o de sortidato_condition_untitled_item_lblSense títol {0}cancel_btn_tooltipTornar al seguiment de la lliçóbranching_act_titleRamificaciógroupnaming_dialog_instructions_lblFaci "clic" en el nom per modificar el seu valor.pi_branch_tool_acts_lblEntrada (Eina)to_conditions_dlg_from_lblDes depi_define_monitor_cb_lblDefinir en el seguimentpi_activity_type_branchingRamificar activitatpi_branch_typeTipus de ramificaciótool_branch_act_lblResultats de l'alumneto_condition_start_valueValor inicialto_condition_end_valueValor finalto_condition_invalid_value_direction{0} no pot ser més gran que {1}.pi_no_seq_actNombre de seqüènciesbranch_mapping_dlg_condition_col_lblCondicióto_conditions_dlg_title_lblCrear condicions de sortidaal_doneFetcondmatch_dlg_cond_lst_lblCondicionspi_defaultBranch_cb_lblPer defecteto_conditions_dlg_add_btn_lbl+ Afegirto_conditions_dlg_clear_all_btn_lblNetejar totbranch_mapping_no_branch_msgNo s'ha seleccionat cap brancabranch_mapping_no_condition_msgNo s'ha seleccionat cap condicióbranch_mapping_dlg_condition_col_value_exactValor exacte de {0}branch_mapping_no_groups_msgNo s'han seleccionat cap grupbranch_mapping_dlg_branches_lst_lblBranquesgroupmatch_dlg_groups_lst_lblGrupsgroupnaming_dlg_title_lblAnomenar grupspi_group_naming_btn_lblAnomenar grupssequence_act_titleSeqüènciachosen_branch_act_lblSelecció del docental_continueContinuarbranch_mapping_dlg_condition_linked_allHi han condiconsbranch_mapping_dlg_condition_linked_singleAquesta condició éspi_minsMinutspi_no_groupingCappi_num_learnersNombre d'estudiantspi_optional_titleActivitat opcionalpi_runofflineActivitatpi_start_offsetObrir portapi_titlePropietatsprefix_copyofCòpia deprefs_dlg_cancelCancel·larprefs_dlg_lng_lblIdiomaprefs_dlg_okD'acordprefs_dlg_theme_lblTemaprefs_dlg_titlePreferènciespreview_btnVista prèvia property_inspector_titlePropietatsrandom_grp_lblA l'atzarsave_btnGuardarsched_act_lblTemporitzatsynch_act_lblSincronitzattk_titleJoc d'activitatstrans_btnTransiciótrans_dlg_cancelCancel·lartrans_dlg_gateSincronitzaciótrans_dlg_gatetypecmbTipustrans_dlg_okD'acordal_alertAlertatrans_dlg_titleTransiciócv_invalid_trans_targetVostè no pot crear una transició cap aquest objectenew_confirm_msgEstà segur de que vol netejar el seu disseny de la pantalla?pi_branch_tool_acts_default--Selecció--pi_equal_group_sizesGrups de la mateixa midacompetence_editor_warning_title_existsLa competència amb el títol {0}, ja existeixsequence_act_title_new{0} {1}rename_btnRe anomenarccm_copy_activityCopiar activitatcv_autosave_rec_titleAlertamnu_file_recoverRecuperar...cv_activity_helpURL_undefinedNo es troba la pàgina d'ajut de {0}ccm_open_activitycontentObrir/Editar l'activitatccm_paste_activityEnganxar l'activitatws_dlg_descriptionDescripciócv_close_return_to_ext_srcTancar i tornar a {0}cv_eof_changes_appliedEls canvis s'han aplicat correctament.mnu_file_apply_changesAplicar canvisvalidation_error_inputTransitionType1Aqueta activitat no té una transició d'entradavalidation_error_outputTransitionType1Aqueta activitat no té una transició de sortidacv_invalid_design_on_apply_changesExisteix una o més transicions perdudes.apply_changes_btnAplicar canviscancel_btnCancel·larcv_activity_readOnlyAquesta activitat és de només lecturacv_element_readOnly_action_delEliminatcv_element_readOnly_action_modModificatcv_eof_finish_invalid_msgPer a poder finalitzar la edició el disseny ha de ser vàlid.cv_eof_finish_modified_msgAtenció: El seu disseny ha estat modificat. Desitja tancar-lo sense desar-lo?mnu_file_finishAcabarabout_popup_title_lblSobre - {0}about_popup_version_lblVersióabout_popup_copyright_lblFundacióabout_popup_trademark_lblÉs una marca registrada de {0} Foundation ({1}).stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txt stream_urlhttp://{0}foundation.org pi_activity_type_sequenceSeqüència d'activitat ({0})act_tool_titleJoc d'activitatsal_cancelCancel·laral_confirmConfirmaral_okAcceptarpi_condmatch_btn_lblCrear condicionsopt_activity_seq_titleSeqüències opcionalspi_actActivitatsto_conditions_dlg_condition_items_name_col_lblNomto_conditions_dlg_condition_items_value_col_lblCondicióto_conditions_dlg_options_item_header_lbl[ Opcions]close_mc_tooltipMinimitzargroupnaming_dialog_col_groupName_lblNom del gruprefresh_btnRefrescarto_conditions_dlg_defin_user_defined_typeDefinit per l'usuaricv_invalid_trans_closed_sequenceNo es pot connectar una nova transició a una seqüència tancadacompetence_editor_dlgEditor de competènciescompetences_lblCompetènciescompetence_editor_add_competence_btnAfegircompetence_editor_warning_title_blankEl títol de la competència no pot estar buitmap_comptence_btnMapa de competènciescompetence_mappings_btnMapa de competènciescompetences_mapped_to_act_lblCompetènciesgate_openObertagate_closedTancadaws_dlg_date_modified_lblDarrera modificació: {0}ws_save_title_reserved_charsEl títol no pot contenir caràcters especials: {0}optional_seq_btnSeqüènciabranch_mapping_dlg_condition_col_value_maxMajor que o igual a {0}pi_min_actMin {0}optional_seq_btn_tooltipCrear un grup de seqüències opcionals.pi_optSequence_remove_msg_titleEsborrar seqüèncieslbl_num_sequences{0} - SeqüènciesactivityDrop_optSequence_error_msgSi us plau, arrossegui l'activitat a sobre d'una de les seqüènciesto_conditions_dlg_lt_lblMenor que o igual abranch_mapping_dlg_condition_col_value_minMenor que o igual a {0}pi_seqSeqüènciesto_conditions_dlg_defin_bool_typeVertader/falsws_dlg_insert_btnInserirbranch_mapping_dlg_branch_item_default{0} (per defecte)pi_group_matching_btn_lblAssignar grups a les branquespi_tool_output_matching_btn_lblAssignar condicions a les branquescv_invalid_branch_target_to_activityJa existeix una branca cap a {0}cv_invalid_branch_target_from_activityJa existeix una branca des de {0}learner_choice_grp_lblElecció de l'estudiantcompetence_def_dlgDefinició de les competènciescv_valid_design_savedEnhorabona! - El seu disseny es correcte i ha estat desatws_click_folder_fileSi us plau, faci "click" sobre una carpeta o sobre un arxiu per a sobreescriure'lact_lock_chkSi us plau, desbloquegi el contenidor d'activitats opcionals abans d'assignar l'activitat.sys_error_msg_finishPer continuar cal reiniciar l'eina d'autor de LAMS. Desitja guardar la informació d'aquest error per a contribuir a resoldre el problema?. cv_trans_target_act_missingLa segona activitat de la transició no existeix.cv_design_unsavedEl disseny de l'activitat ha canviat. Vol continuar sense guardar-la?mnu_file_exportExportarws_chk_overwrite_existingAquesta carpeta ja conté un arxiu amb el nom {0}.ws_click_virtual_folderAquesta carpeta no es pot utilitzar.mnu_file_exitSortirws_no_file_openNo s'ha trobat l'arxiu.cv_invalid_trans_circular_sequenceNo li és permès de realitza una seqüència circular.bin_tooltipArrossegui l'activitat a la paperera per esborrar-la de la seqüència.new_btn_tooltipNeteja l'editor i comença amb una nova seqüènciaopen_btn_tooltipMostra el diàleg d'arxius per obrir una seqüència d'activitatssave_btn_tooltipDesar la seqüència d'activitat actualcopy_btn_tooltipCopiar l'activitat seleccionadapaste_btn_tooltipEnganxar una copia de l'activitat seleccionadatrans_btn_tooltipUtilitzi aquest llapis per definir transicions entre les activitats (o premi la tecla CTRL) optional_btn_tooltipCrear un grup d'activitats opcionals.gate_btn_tooltipCrear un punt d'aturadabranch_btn_tooltipCrear una branca (disponible a la v 2.1 de LAMS)flow_btn_tooltipCrear un flux de control de les activitatsgroup_btn_tooltipCrear un grup d'activitatspreview_btn_tooltipVista previa de la seqüència, tal i com la veuran els alumnescv_activity_dbclick_readonlyAquest disseny es només de lectura i no espot editar. Si us plau, salvi'n una copia i torni-ho a intentar.cv_readonly_lblNOmés de lecturaal_empty_designHo sentim, no es pot uardar un disseny buitws_chk_overwrite_resourceAlerta: està a punt de sobreescriure aquesta seqüència!ws_RootArrelws_copy_same_folderLes carpetes d'origen i destí són les mateixesws_dlg_cancel_buttonCancel·larws_dlg_filenameNom de l'arxiuws_dlg_location_buttonLocalitzacióws_dlg_ok_buttonD'acordws_dlg_open_btnObrirws_dlg_properties_buttonPropietatsws_dlg_save_btnGuardarws_dlg_titleEspai de treballws_newfolder_cancelCancel·larws_newfolder_insSi us plau, introdueixi un nou nom de carpetaws_newfolder_okD'acordws_no_permissionHo sentim, vostè no té permís d'escriptura en aquest recursws_rename_insSi us plau, introdueixi un nom nouws_tree_mywspEl meu espai de treballws_tree_orgsEls meus grupsws_view_license_buttonVeuresys_error_msg_startS'ha produït el següent error del sistema: sys_errorError del sistemapi_num_groupsNombre de grupspi_parallel_titleActivitat paral·lelaopt_activity_titleActivitat opcionallbl_num_activities{0} - Activitatsal_sendEnviaral_cannot_move_activityHo sentim, aquesta activitat no es pot moure.cv_gateoptional_hit_chkVostè no pot afegir una porta d'activitat com a activitat opcional.prefix_copyof_countCopia {0} dews_save_folder_invalidVostè no pot guardar el disseny en aquesta carpeta. Si us plau, escolli un sotsdirectori vàlid.ws_click_file_openSi us plau, faci "click" en un disseny per obrir-lo.ws_license_lblLlicènciaws_license_comment_lblInformació addicional sobre la llicènciacv_invalid_trans_target_from_activityJa existeix una transició des de {0}cv_invalid_trans_target_to_activityJa existeix una transició cap a {0} branch_btnBranca flow_btnFluxmnu_file_importImportarcv_design_export_unsavedVostè no pot exportar un disseny abans de guardar-lo.mnu_file_import_communityImportar de la comunitat de LAMSview_students_before_selectionVeure els estudiants abans de la selecció?arrange_act_btnOrganitzar les activitatsapp_chk_langloadLes dades de l'idioma no s'han carregatcv_invalid_design_savedEl seu disseny encara no és vàlid. Faci click en "Temes potencials" per veure el que és incorrecteapp_chk_themeloadLes dades del tema no s'han carregatapp_fail_continueL'aplicació no pot continuar. Si us plau, contacti amb el suportcopy_btnCopiarcv_show_validationTemesdb_datasend_confirmGràcies per enviar dades al servidordelete_btnEsborrargate_btnPortagroup_btnGrupgrouping_act_titleAgruparld_val_activity_columnActivitatld_val_doneFetld_val_issue_columnTemald_val_titleValidació dels temeslicense_not_selectedActualment no hi ha cap llicència selecccionada - Si us plau, seleccionin una mnu_editEditarmnu_edit_copyCopiarmnu_edit_cutTallarmnu_edit_pasteEnganxar mnu_edit_redoRefermnu_edit_undoDesfermnu_fileArxiumnu_file_closeTancarmnu_file_newNoumnu_file_openObrirmnu_file_saveGuardarmnu_file_saveasGuardar com...mnu_helpAjutmnu_help_abtSobre LAMSmnu_toolsEinesmnu_tools_prefsPreferènciesmnu_tools_transDibuixar transiciónew_btnNounone_act_lblCapopen_btnObriroptional_btnOpcionalpaste_btnEnganxarperm_act_lblPermíspi_activity_type_gatePorta d'activitatpi_activity_type_groupingGrup d'activitatspi_end_offsetTancar portapi_group_typeTipus de gruppi_hoursHorespi_lbl_currentgroupGrup actualpi_lbl_descDescripciópi_lbl_groupAgrupamental_group_name_invalid_existingEls noms de grup no poden estar repetitsal_activity_openContent_invalidAtenció !! Cal seleccional l'activitat abans d'obrir-la o editar-la. Es pot veure el menú fent "clic" amb el botó dret en l'activitatvalidation_error_transitionNoActivityBeforeOrAfterUna transició ha de tenir una activitat abans o després validation_error_inputTransitionType2No hi ha activitats sense la transició d'entradavalidation_error_outputTransitionType2No hi ha activitats sense la transició de sortidaapply_changes_btn_tooltipAplica els canvis i torna al seguiment de la lliçócv_edit_on_fly_lblEdició "en viu" support_act_btnSuportabout_popup_license_lblAquest programa és lliure; vostè el pot re distribuir i/o modificar segons els termes establerts en la versió 2 de la Llicència Publica General (GNU, General Public License) publicada per la Free Software Foundation. act_seq_lock_chkSi us plau, desbloquegi el contenidor abans d'assignar-hi l'activitat com a seqüència opcional.condmatch_dlg_title_lblCondicions d'unió per a les branquesbranch_mapping_no_mapping_msgNo s'han seleccionat ramificacions.branch_mapping_auto_condition_msgTotes les condicions s'assignaran a la primera branca, per defecte. branch_mapping_dlg_match_dgd_lblRamificacionsbranch_mapping_dlg_condition_col_valueRang de {0} a {1}pi_mapping_btn_lblAssignar ramificacionsgroupmatch_dlg_title_lblAssignar grups a ramificacionsgroup_branch_act_lblBasat en grupsto_condition_invalid_value_range{0} no pot estar en el rang d'una condició ja existentredundant_branch_mappings_msgAquest disseny conté assignacions a branques que no s'utilitzen i seran esborrades. Desitja continuar?cv_activityProtected_activity_remove_msgPer esborrar-la, si us plau, deseleccioni la ramificació a {0}cv_activityProtected_child_activity_link_msgAquesta activitat {0} te una sots-activitat associada a {1} pi_optSequence_remove_msgLa seqüència(es) que s'esborraran poden contenir activitats (que també s'esborraran). Vol esborrar les seqüències? cv_invalid_optional_seq_activity_no_branchesEsborrant les ramificacions conectades amb {0} abans d'afegir-les en una seqüència opcional.cv_invalid_optional_seq_activityEsborri les transicions de {0} abans d'assignar-hi una seqüència opcional.to_conditions_dlg_defin_item_header_lbl[ Escollir sortida ]mnu_file_insertdesignInserir...to_conditions_dlg_condition_items_update_defaultConditionsVostè està a punt de modificar les condicions de sortida. Això desfarà els vincles de les branques existents. Vol continuar de tota manera?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNos es poden actualitzar les condicions ja que no n'existeixen de previes. Cal definir les condicions per defecte en l'apartat d'autoria.grouping_invalid_with_common_names_msgNo es pot guardar l'activitat de grup {0} perquè conté més d'un grup amb el mateix nom. Si us plau, revisi-ho i torni-ho a provar.condmatch_dlg_message_lblCal triar la branca per defecte fent "clic" a la opció "per defecte" en l'apartat de propietats de la branca.ta_iconDrop_optseq_error_msgNo hi han seqüències en aquest contenidor.cv_invalid_optional_activity_no_branchesEsborri qualsevol transició de {0} abans d'assignar-hi una seqüència opcional.gate_mapping_auto_condition_msgLa reta de condicions s'assignaran a les portes que tenen l'estat de tancat.cv_design_insert_warningAl insertar una nova seqüència s'actualitzarà, automàticamanent, la que ja existia. Per retornar al la seqüència antiga, cal esborrar les noves seqüències afegides a ma. Si no vol canviar la seqüència anterior, premi "Cancel·lar ". En cas contrari, premi "D'acord".al_cannot_move_to_diff_opt_seqPer moure una activitat a un altre seqüència, a seqüències opcionals, primer arrossegui l'activitat fora de l'apartat de Seqüències opcionals, i torni-la a arrossegar a la seva nova ubicació. competence_editor_warning_competence_mappedLa competència que està esborrant està assignada a una o més activitats. Si s'esborra la competència, també s'esborraran les assignacions. Vol continuar?map_gate_conditions_btnAssignació de condicions a les portesal_activity_view_competence_mappings_invalidSi us plau, verifiqui que ha seleccionat una activitat abans de veure les competències que te assignades. gradebook_output_typeQualificacionssupport_act_btn_tooltipCrear un grup d'activitats de suport opcionals.support_msg_max_children_reachedNo es pot afegir l'activitat: {0} aquí. Les activitats de suport permeten un màxim de {1} sots activitats.grp_chk_clear_branch_mappingsAtenció: Aquesta acció esborrarà l'associació de grups i ramificacions, vol continuar de totes maneres? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/cy_GB_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleCronfa Feddalwedd Gweithgareddau Title for Activity Toolkit Panelal_alertRhybuddGeneric title for Alert windowal_cancelCansloTo Confirm title for LFErroral_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on the alert dialogapp_chk_langloadNid yw'r data iaith wedi'i lwytho message for unsuccessful language loadingapp_chk_themeloadNid yw'r data thema wedi'i lwytho message for unsuccessful theme loadingapp_fail_continueNid yw'r rhaglen yn gallu parhau. Ceisiwch gymorthmessage if application cannot continue due to any errorchosen_grp_lblWedi'i ddewis Label for the grouping drop down in the PropertyInspectorcopy_btnCopïoToolbar &gt; Copy Buttoncv_invalid_design_savedNid yw'ch dyluniad yn ddilys eto, ond mae wedi cael ei gadw, cliciwch ar 'Mater' i weld beth sydd o'i le.Message when an invalid design has been savedcv_invalid_trans_targetNi allwch greu trosiad i'r gwrthrych hwnError message for when transition tool is dropped outside of valid target activitycv_show_validationMaterThe button on the confirm dialogcv_valid_design_savedLlongyfarchiadau! - Mae eich dyluniad yn ddilys ac mae wedi cael ei gadwMessage when a valid design has been saveddb_datasend_confirmDiolch am anfon data i'r gweinyddMessage when user sucessfully dumps data to the serverdelete_btnDileuLabel for Delete buttongate_btnAdwyToolbar &gt; Gate Buttongroup_btnGrŵpToolbar &gt; Group Buttongrouping_act_titleGrŵpDefault title for the grouping activityld_val_activity_columnGweithgareddThe heading on the activity in the ValidationIssuesDialogld_val_doneWedi'i wneudThe button label for the dialogld_val_issue_columnMaterThe heading on the issue in the ValidationIssuesDialogld_val_titleMaterion dilysuThe title for the dialoglicense_not_selectedNi allwch ddewis trwydded - Dewiswch unShown if no license is selected in the drop down in workspacemnu_editGolyguMenu bar Editmnu_edit_copyCopïoMenu bar Edit &gt; Copymnu_edit_cutTorriMenu bar Edit &gt; Cutmnu_edit_pasteGludoMenu bar Edit &gt; Pastemnu_edit_redoAil-wneudMenu bar Edit &gt; Redomnu_edit_undoDadwneudMenu bar Edit &gt; Undomnu_fileFfeilMenu bar Filemnu_file_closeCauMenu bar Closemnu_file_newNewyddMenu bar Newmnu_file_openAgorMenu bar Openmnu_file_saveCadwMenu bar savemnu_file_saveasCadw fel...Menu bar Save asmnu_helpCymorthMenu bar Helpmnu_help_abtAm LAMSMenu bar Aboutmnu_toolsOfferMenu bar Toolsmnu_tools_optBlwch DewisolMenu bar Optionalmnu_tools_prefsDewisiadauMenu bar preferencesmnu_tools_transTynnu LlinellMenu bar draw transitionnew_btnNewyddToolbar &gt; New Buttonnew_confirm_msgYdych chi'n siŵr eich bod chi eisiau clirio eich dyluniad ar y sgrin? Msg when user clicks new while working on the existing designnone_act_lblDimNo gate activity selectedopen_btnAgorToolbar &gt; Open Buttonoptional_btnDewisolToolbar &gt; Optional Buttonpaste_btnGludoToolbar &gt; Paste Buttonperm_act_lblCaniatâdLabel for permission gate activitypi_activity_type_gateGweithgaredd AdwyActivity type for gate in PIpi_activity_type_groupingGweithgaredd GrŵpActivity type for grouping in Property Inspectorpi_definelaterDiffinio'n ddiweddarachLabel for Define later for PIpi_end_offsetCau adwyEnd offset labelpi_group_typeMath o GrŵpProperty Inspector Grouping type drop downpi_hoursAwrHours label in Property Inspectorpi_lbl_currentgroupGrŵp CyfredolCurrent grouping label for PIpi_lbl_descDisgrifiadDescription Label for PIpi_lbl_groupGrŵpGrouping label for PIpi_lbl_titleTeitlTitle label for PIpi_max_actGweithgareddau Mwyaflabel for maximum Activitiespi_min_actGweithgareddau Lleiaflabel for Minimum activitiespi_minsMunudMins label in teh property inspectorpi_no_groupingDimCombo title for no groupingpi_num_learnersNifer y dysgwyrPI Num learners labelpi_optional_titleGweithgaredd DewisolTitle for oprional activity property inspectorpi_runofflineRhedeg All-leinLabel for Run Oflinepi_start_offsetAgor adwyStart offset labelpi_titlePriodweddauOn the title bar of the PIprefix_copyofCopi oPrefix for copy paste command for canvas activitiesprefs_dlg_cancelCanslo6prefs_dlg_lng_lblIaith7prefs_dlg_okIawn5prefs_dlg_theme_lblThema8prefs_dlg_titleDewisiadau4preview_btnRhagolwgToolbar &gt; Preview Buttonproperty_inspector_titlePriodweddauOn the title bar of the PIrandom_grp_lblHapLabel for the grouping drop down in the PropertyInspectorrename_btnAilenwiLabel for Rename Buttonsave_btnCadwToolbar &gt; Save buttonsched_act_lblTrefnlenLabel for schedule gate activitysynch_act_lblSyncroneiddioUsed as a label for the Synch Gate Activity Typetk_titleCronfa Feddalwedd GweithgareddauLabel for Activities Toolkit Paneltrans_btnPontioToolbar &gt; Transition Buttontrans_dlg_cancelCansloCancel button on transition dialogtrans_dlg_gateSyncroneiddioHeader for the transition props dialogtrans_dlg_gatetypecmbMathGate type combo labeltrans_dlg_okIawnOK Button on transition dialogtrans_dlg_titlePontioTitle for the transition properties dialogws_RootGwraiddRoot folder title for workspacews_chk_overwrite_resourceRhybudd: rydych ar fin trosysgrifo adnodd!ws_click_folder_fileCliciwch ar naill ai Ffolder i'w gadw, neu Dylunio i'w drosysgrifoError msg if no folder or file is selectedws_copy_same_folderMae'r ffynhonnell a'r ffolderi cyrchfan yr un fathThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCanslo2ws_dlg_filenameEnw FfeilLabel for File name in workspace windowws_dlg_location_buttonLleoliadWorkspace dialogue Location btn labelws_dlg_ok_buttonIawnWsp Dia OK Button labelws_dlg_open_btnAgorWsp Dia Open Button labelws_dlg_properties_buttonPriodweddauWorkspace dialogue Properties btn labelws_dlg_save_btnCadwWsp Dia Save Button labelws_dlg_titleGweithle0ws_newfolder_cancelCansloCancel on the new folder name diaws_newfolder_insRhowch enw'r ffolder newyddInstructions on the new name pop upws_newfolder_okIawnOK on the new folder name diaws_no_permissionNi chaniateir i chi ysgrifennu i'r adnodd hwnMessage when user does not have write permission to complete actionws_rename_insRhowch yr enw newyddMessage of the new name for the userws_tree_mywspFy NgweithleThe root level of the treews_tree_orgsFy GrŵpShown in the top level of the tree in the workspacews_view_license_buttonGweldTo show the license to the useract_lock_chkDatglowch y blwch Gweithgaredd Dewisol cyn ei ddosbarthu'n weithgaredd dewisolAlert Message if user drags the activity to locked optional activity container sys_error_msg_startMae'r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd rhaid i chi ailgychwyn LAMS Author i barhau. Ydych chi eisiau cadw'r wybodaeth ganlynol am y gwall hwn er mwyn helpu datrys y broblem hon?Common System error message finish paragraphsys_errorGwall System System Error elert window titlepi_num_groupsNifer y grwpiauNumber of groups in Property inspectorpi_parallel_titleGweithgaredd ParalelTitle for parallel activity property inspectoropt_activity_titleGweithgaredd DewisolTitle for Optional Activity Containerlbl_num_activitiesGweithgareddreplacement for word activitiesal_sendAnfonSend button label on the system error dialogal_cannot_move_activityNi allwch symud y gweithgaredd hwnAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNi allwch ychwanegu gweithgaredd adwy fel gweithgaredd dewisol.Error message when user drags gate activity over to optional containerprefix_copyof_countCopi ({0}) o Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNi allwch gadw dyluniad yn y ffolder hwn. Dewiswch is-ffolder dilys.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openCliciwch ar Ddylunio i agorAlert message if folder tried to be opened.ws_license_lblTrwyddedLabel for Licence drop down on workspace properties tab viewws_license_comment_lblGwybodaeth Trwydded YchwanegolLabel for Licence Comment description below license drop downcv_invalid_optional_activitySymud llinell i ac o {0} cyn ei osod fel gweithgaredd dewisol.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingAil gam wrth bontio yn eisiau.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityMae Llinell o {0} eisoes yn bodoliError message when a transition from the activity already existcv_invalid_trans_target_to_activityMae Llinell i {0} eisoes yn bodoliError message when a transition to the activity already existbranch_btnCangenLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnLlifLabel for Flow button in Toolbarmnu_file_importMewnforioMenu bar Importcv_design_export_unsavedNi allwch Allforio dyluniad heb ei gadwAlert message when trying to export can unsaved design.cv_design_unsavedMae'r dyluniad ar y cynfas wedi newid. Parhau heb gadw?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportAllforioMenu bar Exportws_chk_overwrite_existingMae'r ffolder hwn eisoes yn cynnwys ffeil o'r enw {0}Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNi allwch ddefnyddio'r ffolder hwn.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitGadaelFile Menu Exitws_no_file_openDim ffeil wedi'i chanfodAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNi allwch gael dilyniant cylcholError message when a transition from one activity to another is creating a circular loopbin_tooltipRhowch weithgaredd yn y bin hwn i'w ddileu o'r dilyniant gweithgaredd.Tool tip message for canvas binnew_btn_tooltipClirio dilyniant cyfredol ac ailosod lle gwaith yn barod i'w ddefnyddioTool tip message for new button in toolbaropen_btn_tooltipDangos Ffeil Deialog i agor Dilyniant GweithgareddTool tip message for open button in toolbarsave_btn_tooltipCadw Dilyniant Gweithgaredd cyfredol yn gyflymtool tip message for save button in toolbarcopy_btn_tooltipCopïo'r gweithgaredd a ddewiswydtool tip message for copy button in toolbarpaste_btn_tooltipGludo copi o'r gweithgaredd a ddewiswydtool tip message for paste button in toolbartrans_btn_tooltipDefnyddio'r pen hwn i dynnu llinell rhwng gweithgareddau (neu wasgu CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCreu cyfres o weithgareddau dewisoltool tip message for optional button in toolbargate_btn_tooltipCreu man arostool tip message for gate button in toolbarbranch_btn_tooltipCreu cangen (ar gael mewn LAMS f 2.1)tool tip message for branch button in toolbarflow_btn_tooltipCreu gweithgareddau rheoli lliftool tip message for flow button in toolbargroup_btn_tooltipCreu gweithgaredd grŵptool tip message for group button in toolbarpreview_btn_tooltipRhagolwg o'ch Dilyniant fel y bydd dysgwyr yn ei weldTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNi allwch olygu offer dyluniad darllen yn unig. Cadwch gopi o'r dyluniad a cheisiwch eto.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblDarllen Yn UnigLabel for top left of canvas shown when a read-only design is open.al_empty_designNi allwch gadw dyluniad gwagalert message when user want to save an empty designcv_autosave_err_msgMae gwall wedi digwydd wrth geisio awtogadw eich dyluniad. Os yw'r gwall yn parhau cysylltwch â'r Gweinyddwr System.Alert error message when auto-save fails.cv_autosave_rec_msgRydych ar fin adfer y dyluniad coll neu heb ei gadw diwethaf. Bydd eich dyluniad cyfredol yn cael ei glirio. Parhau?Message informing users that they have recovered data for a design.cv_autosave_rec_titleRhybuddAlert title for auto save recovery message.mnu_file_recoverAdfer....Menu bar Recovercv_activity_copy_invalidNi allwch gopïo'r gweithgaredd plentyn hwn.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidNi allwch dorri'r gweithgaredd plentyn hwn.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidRhaid i chi ddewis y gweithgaredd cyn clicio ar gopiAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidRhaid i chi ddewis y gweithgaredd cyn clicio ar yr eitem dewislen Agor/Golygu Cynnwys Gweithgaredd yn y ddewislen di-glicio gweithgareddalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgYdych chi'n siŵr eich bod chi eisiau dileu'r ffeil / ffolder yma?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyNi allwch gadw dyluniad heb unrhyw enw ffeil.Error message when user try to save a design with no file namews_entre_file_nameNodwch enw'r dyluniad, yna cliciwch y botwm Cadw.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedDdim yn gallu canfod tudalen cymorth ar gyfer {0}Alert message when a tool activity has no help url defined.cv_untitled_lblDi-deitl - 1Label for Design Title bar on canvasmnu_help_helpCymorth Awdurolabel for menu bar Help - Authoring Help optionccm_open_activitycontentAgor/Golygu Cynnwys GweithgareddLabel for Custom Context Menuccm_copy_activityCopïo GweithgareddLabel for Custom Context Menuccm_paste_activityGludo GweithgareddLabel for Custom Context Menuccm_piArolygydd Priodwedd...Label for Custom Context Menuccm_author_activityhelpCymorth Awduro Gweithgaredd Label for Custom Context Menuws_dlg_descriptionDisgrifiadLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateDimDrop down default for gate typepi_daysDiwrnodDays label in property inspector for gate toolcv_close_return_to_ext_srcCau a nôl i {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/da_DK_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_eof_finish_modified_msgAdvarsel: Dit design er ændret. Ønsker du at afslutte uden at gemme?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyOvergangen kan ikke være {0}. Målet for overgangen er read-only.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipVend tilbage til monitor session.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishAfslutMenu bar File - Finish (Edit Mode)about_popup_title_lblOm - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} er registreret varemærke for {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDette program er freeware; du må videreformidle og/eller ændre det på de betingelser, som er angivet i GNU General Public License version 2, publiceret af Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.cv_eof_changes_appliedÆndringer er nu gennemført.Changes have been successful applied.mnu_file_apply_changesForetag ændringerApply Changesvalidation_error_transitionNoActivityBeforeOrAfterEn overgang kræver en aktivitet både før og efter overgangenA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEn aktivitet skal have en input eller output overgangAn activity must have an input or output transitionvalidation_error_inputTransitionType1Denne aktivitet har ingen input overgangThis activity has no input transitionvalidation_error_inputTransitionType2Ingen aktiviteter mangler input overgang.No activities are missing their input transition.validation_error_outputTransitionType1Denne aktivitet har ingen output overgangThis activity has no output transitionvalidation_error_outputTransitionType2Ingen aktiviteter mangler output overgang.No activities are missing their output transition.cv_invalid_design_on_apply_changesKan ikke foretage ændringer. En eller flere overgange mangler.Cannot apply changes. There are one or more transitions missing.apply_changes_btnForetag ændringerApply Changesapply_changes_btn_tooltipForetag ændringer i design og vend tilbage til monitor session.tool tip message for save button in toolbarcancel_btnAnnullérToolbar - Cancel Buttoncv_activity_readOnlyAktiviteten kan ikke være {0]. Aktiviteten er read-onlyAlert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblLive EditLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delFjernetAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modÆndretAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDesignet skal være gyldigt for at redigering kan afsluttes.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.pi_daysDageDays label in property inspector for gate tooltrans_dlg_nogateIngenDrop down default for gate typews_chk_overwrite_resourceNB! Du er ved at overskrive denne sekvens!ws_tree_orgsMine grupperShown in the top level of the tree in the workspaceal_activity_copy_invalidBeklager, du er nødt til at vælge aktiviteten før du klikker på knappen "kopiér" eller kopiér aktivitets menuen i højrekliks menuen aktiviteter.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvascv_invalid_design_savedDit design er gyldigt endnu, men er blevet gemt, klik på 'Emner' for at se, hvad der er galt.Message when an invalid design has been savedcv_autosave_rec_msgDu er ved at genskabe et design, du har mistet eller ikke har gemt. Dit aktuelle design vil blive nulstillet. Ønsker du at fortsætte?Message informing users that they have recovered data for a design.ws_dlg_descriptionBeskrivelseLabel for description in Workspace dialog - Properties tabmnu_toolsVærktøjMenu bar Toolsmnu_tools_prefsForetrukne indstillingerMenu bar preferencespreview_btnForhåndsvisningToolbar &gt; Preview Buttonws_RootRodRoot folder title for workspacews_newfolder_cancelAnnullérCancel on the new folder name diaws_view_license_buttonVisTo show the license to the userld_val_doneGjortThe button label for the dialogccm_author_activityhelpForfatter aktivitetshjælpLabel for Custom Context Menuccm_open_activitycontentÅbn/redigér aktivitetsindholdLabel for Custom Context Menuccm_copy_activityKopiér aktivitetLabel for Custom Context Menuccm_paste_activityIndsæt aktivitetLabel for Custom Context Menuccm_piKontrol af egenskaberLabel for Custom Context Menuws_file_name_emptyBeklager, du kan ikke gemme et design uden filnavn.Error message when user try to save a design with no file namecv_untitled_lblUnavngivet - 1Label for Design Title bar on canvasal_empty_designBeklager, du kan ikke gemme et tomt designalert message when user want to save an empty designcv_autosave_err_msgEn fejl er opstået i forbindelse med automatisk gemning af dit design. Hvis denne fejl opstår igen skal du kontakte systemadminstratoren.Alert error message when auto-save fails.cv_autosave_rec_titleAdvarselAlert title for auto save recovery message.mnu_file_recoverGenopret...Menu bar Recoverws_newfolder_okOKOK on the new folder name diaws_no_permissionBeklager, du har ikke rettigheder til at skrive til denne ressourceMessage when user does not have write permission to complete actionws_rename_insSkriv det nye navnMessage of the new name for the userws_tree_mywspMit arbejdsområdeThe root level of the treeact_lock_chkLås den valgfri aktivitet op før du gør den valgfriAlert Message if user drags the activity to locked optional activity container sys_error_msg_startDer er opstået følgende systemfejl:Common System error message starting linesys_error_msg_finishDu er nødt til at genstarte LAMS Forfatter for at fortsætte. Ønsker du at gemme følgende information om fejlen som hjælp til at løse problemet?Common System error message finish paragraphsys_errorSystemfejlSystem Error elert window titleal_sendSendSend button label on the system error dialoglbl_num_activitiesAktiviteterreplacement for word activitiesopt_activity_titleValgfri aktivitetTitle for Optional Activity Containerws_license_lblLicensLabel for Licence drop down on workspace properties tab viewws_license_comment_lblUddybende licensinformationLabel for Licence Comment description below license drop downal_cannot_move_activityBeklager, du kan ikke flytte denne aktivitet.Alert message when user tries to move child activity of any parallel activitymnu_help_helpHjælp til forfattermoduletlabel for menu bar Help - Authoring Help optionws_del_confirm_msgEr du sikker på, at du ønsker at slette denne fil/mappe?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_openKlik venligst på et design for at åbne.Alert message if folder tried to be opened.cv_invalid_optional_activityFjerne forbindelser til og fra {0} før du angiver den som valgfri aktivitet.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDen anden aktivitet i forbindelse mangler.Error message when target activity for transition is missingpi_num_groupsAntal af grupperNumber of groups in Property inspectorcv_activity_copy_invalidBeklager, du har ikke rettigheder til at kopiere denne underaktivitet.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidBeklager, du har ikke rettigheder til at slette denne underaktivitet.Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activityEn forbindelse til {0} eksisterer alleredeError message when a transition to the activity already existcv_design_unsavedDesignet i arbejdsområdet er ændret. Ønsker du at fortsætte uden at gemme?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipRydder aktuelle sekvenser og nulstiller arbejdsområdet, så det er klar til brugTool tip message for new button in toolbaropen_btn_tooltipViser filmenuen for at åbne en aktivitetssekvensTool tip message for open button in toolbarsave_btn_tooltipGemmer aktuel aktivitetssekvenstool tip message for save button in toolbarcopy_btn_tooltipKopiér den valgte aktivitettool tip message for copy button in toolbarpaste_btn_tooltipIndsæt en kopi af den valgte aktivitettool tip message for paste button in toolbartrans_btn_tooltipBrug denne pensel til at tegne forbindelser mellem aktiviteter (eller brug CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipOpret en serie valgfri aktivitetertool tip message for optional button in toolbargate_btn_tooltipOpret et "stoppested"tool tip message for gate button in toolbarbranch_btn_tooltipOpret en forgrening (tilgængelig i LAMS v 2.1)tool tip message for branch button in toolbargroup_btn_tooltipOpret gruppeaktivitettool tip message for group button in toolbarpreview_btn_tooltipVis din sekvens, som brugeren kommer til at se denTool tip message for preview button in toolbarmnu_file_exitExitFile Menu Exital_activity_openContent_invalidBeklager, du er nødt til at vælge en aktivitet før du klikker på knappen "Åbn/Redigér aktivitetsindhold" menuen i højrekliksmenue aktiviteter. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_design_export_unsavedDu kan ikke eksportere et design, der ikke er gemt.Alert message when trying to export can unsaved design.mnu_file_exportEksportérMenu bar Exportws_chk_overwrite_existingDenne mappe indeholder allerede en fil med navnet {0}Alert message when saving a design with the same filename as an existing design.ws_no_file_openIngen fil fundetAlert message if no matching file is found to open in selected folder of Workspace.branch_btnGrenLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFlowLabel for Flow button in Toolbarmnu_file_importImportérMenu bar Importws_click_virtual_folderKan ikke bruge denne mappe.Alert message for trying to use a virtual folder to save/open a file.pi_parallel_titleParallel aktivitetTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceDu kan ikke lave en cirkulær sekvensError message when a transition from one activity to another is creating a circular loopbin_tooltipTræk en aktivitet til denne skraldespand for at fjerne den fra aktivitetssekvensenTool tip message for canvas bincv_gateoptional_hit_chkDu kan ikke tilføje en port aktivitet som valgfri aktivitetError message when user drags gate activity over to optional containerprefix_copyof_countKopi ({0}) afPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidDu kan ikke gemme et design i denne mappe. Vælg venligst en gyldig undermappe.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityEn forbindelse fra {0} eksisterer alleredeError message when a transition from the activity already existws_entre_file_nameVælg et navn til designet og klik dernæst på knappen "Gem"Error message when user try to save a design with no file namecv_activity_helpURL_undefinedIngen hjælp tilgængelig om {0}Alert message when a tool activity has no help url defined.cv_activity_dbclick_readonlyDu kan ikke redigere værktøjer i et read-only design. Gem en kopi af designet og prøv igen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblRead OnlyLabel for top left of canvas shown when a read-only design is open.ld_val_issue_columnEmneThe heading on the issue in the ValidationIssuesDialogld_val_titleEmner til valideringThe title for the dialoglicense_not_selectedDer er ikke valgt nogen licens - vælg venligst énShown if no license is selected in the drop down in workspacemnu_edit_redoGentagMenu bar Edit &gt; Redomnu_edit_undoFortrydMenu bar Edit &gt; Undomnu_fileFilMenu bar Filemnu_file_closeLukMenu bar Closemnu_file_newNyMenu bar Newmnu_file_openÅbnMenu bar Openmnu_file_saveGemMenu bar savemnu_file_saveasGem somMenu bar Save asmnu_helpHjælpMenu bar Helpmnu_help_abtOm LAMSMenu bar Aboutmnu_tools_optTegn valgfriMenu bar Optionalmnu_tools_transTegn forbindelseMenu bar draw transitionnew_btnNyToolbar &gt; New Buttonnew_confirm_msgEr du sikker på, at du vil slette det aktuelle design?Msg when user clicks new while working on the existing designnone_act_lblIngenNo gate activity selectedopen_btnÅbnToolbar &gt; Open Buttonoptional_btnValgfriToolbar &gt; Optional Buttonpaste_btnIndsætToolbar &gt; Paste Buttonperm_act_lblTilladelseLabel for permission gate activitypi_activity_type_gatePort aktivitetActivity type for gate in PIpi_activity_type_groupingGruppeaktivitetActivity type for grouping in Property Inspectorpi_definelaterDefinér senereLabel for Define later for PIpi_end_offsetLuk portEnd offset labelpi_group_typeGruppeinddelingstypeProperty Inspector Grouping type drop downpi_hoursTimerHours label in Property Inspectorpi_lbl_currentgroupAktuel gruppeinddelingCurrent grouping label for PIpi_lbl_descBeskrivelseDescription Label for PIpi_lbl_groupGruppeinddelingGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMaximum aktiviteterlabel for maximum Activitiespi_min_actMinimum aktiviteterlabel for Minimum activitiespi_minsMinutterMins label in teh property inspectorpi_no_groupingIngenCombo title for no groupingpi_num_learnersAntal deltagerePI Num learners labelpi_optional_titleValgfri aktivitetTitle for oprional activity property inspectorpi_runofflineKør offlineLabel for Run Oflinepi_start_offsetÅbn portStart offset labelpi_titleEgenskaberOn the title bar of the PIprefix_copyofKopi afPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAnnullér6prefs_dlg_lng_lblSprog7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titleForetrukne indstillinger4property_inspector_titleEgenskaberOn the title bar of the PIrandom_grp_lblTilfældigLabel for the grouping drop down in the PropertyInspectorrename_btnOmdøbLabel for Rename Buttonsave_btnGemToolbar &gt; Save buttonsched_act_lblSkemaLabel for schedule gate activitysynch_act_lblSynkronisérUsed as a label for the Synch Gate Activity Typetk_titleVærktøjskasse for aktiviteterLabel for Activities Toolkit Paneltrans_btnForbindelseToolbar &gt; Transition Buttontrans_dlg_gateSynkroniseringHeader for the transition props dialogtrans_dlg_gatetypecmbTypeGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleForbindelseTitle for the transition properties dialogws_click_folder_fileKlik venligst enten på en mappe til at gemme i eller et design, som skal overskrivesError msg if no folder or file is selectedws_copy_same_folderKilde- og destinationsmapperne er identiskeThe user has tried to drag and drop to the same placews_dlg_cancel_buttonFortryd2ws_dlg_filenameFilnavnLabel for File name in workspace windowws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÅbnWsp Dia Open Button labelws_dlg_properties_buttonEgenskaberWorkspace dialogue Properties btn labelws_dlg_save_btnGemWsp Dia Save Button labelws_dlg_titleArbejdsområde0ws_newfolder_insSkriv navnet på den nye mappeInstructions on the new name pop uptrans_dlg_cancelAnnullérCancel button on transition dialogflow_btn_tooltipKontrolerer arbejdsgangen i aktiviteternetool tip message for flow button in toolbaral_alertNB!Generic title for Alert windowal_cancelAnnullérTo Confirm title for LFErroral_confirmBekræftTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSprogindstillingerne er ikke indlæstmessage for unsuccessful language loadingapp_chk_themeloadTemaindstillingerne er ikke indlæstmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan ikke fortsætte. Kontakt venligst supportmessage if application cannot continue due to any errorcv_invalid_trans_targetDu kan ikke lave en forbindelse til dette objektError message for when transition tool is dropped outside of valid target activitydb_datasend_confirmTak for at sende data til serverenMessage when user sucessfully dumps data to the servergate_btnPortToolbar &gt; Gate Buttondelete_btnSletLabel for Delete buttoncv_show_validationEmnerThe button on the confirm dialoggroup_btnGrupperToolbar &gt; Group Buttoncv_valid_design_savedTillykke! - Dit design er accepteret og gemt!Message when a valid design has been savedact_tool_titleVærkstøjskasse for aktiviteterTitle for Activity Toolkit Panelchosen_grp_lblValgtLabel for the grouping drop down in the PropertyInspectorcopy_btnKopierToolbar &gt; Copy Buttongrouping_act_titleGruppeinddelingDefault title for the grouping activityld_val_activity_columnAktivitetThe heading on the activity in the ValidationIssuesDialogmnu_editRedigérMenu bar Editmnu_edit_copyKopiérMenu bar Edit &gt; Copymnu_edit_cutKlipMenu bar Edit &gt; Cutmnu_edit_pasteIndsætMenu bar Edit &gt; Pastecv_close_return_to_ext_srcLuk og gå tilbage til {0}Button label used on close and return button in save confirm message popup.branching_act_titleForgreningLabel for Branching Activitypi_activity_type_sequenceSekvens aktivitet (forgrening)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlik på et navn for at ændre dets værdiInstructions for Group Naming dialog.pi_branch_tool_acts_lblInput (Værktøj)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.branch_mapping_no_branch_msgIngen forgrening valgtAlert message when adding a Mapping without a Branch (Sequence) being selected.pi_condmatch_btn_lblSetup af betingelser for outputLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblOpret betingelser for outputDialog title for creating new tool output conditions.al_doneGjortLabel for dialog completion button.condmatch_dlg_cond_lst_lblBetingelserLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblMatch betingelser til forgreningerDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblStandardCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ TilføjLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblNulstil alleLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- FjernLabel for button to remove condition.to_conditions_dlg_from_lblFra:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblTil:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblDefinér værdimængdeHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblGrenColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblBetingelseColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppeColumn heading for showing group name of the mapping.branch_mapping_no_mapping_msgIngen Mapping valgt.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgIngen betingelse valgt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgAlle resterende betingelser vil blive knyttet til standardforgreningAlert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueVærdimængde {0} til {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactEksakt værdi af {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblSetup MappingsLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblDefinér i MonitorCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblKnyt grupper til forgreningerMap Groups to Branchesbranch_mapping_no_groups_msgIngen grupper valgtAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppe-baseretBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblForgreningerLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGrupperLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblNavngivning af grupperTitle label for Group Naming dialog.pi_activity_type_branchingForgreningsaktivitetActivity type for Branching in Property Inspector.pi_branch_typeForgreningstypeProperty Inspector Branching type drop down.pi_group_naming_btn_lblNavngivning af grupperLabel for button that opens Group Naming dialog.sequence_act_titleSekvensDefault title for Sequence Activity.tool_branch_act_lblVærktøj outputBranching type label for Tool output Branching. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/de_DE_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_activity_openContent_invalidSorry. Wählen Sie erst eine Aktivität aus, bevor Sie auf den Öffnen/bearbeiten-Button klicken oder das Kontentmenu über die rechte Maustaste nutzen. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_activity_copy_invalidSorry. Sie sind nicht berechtigt, diese Unteraktivität zu kopieren.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSorry. Sie sind nicht berechtigt, diese Unteraktivität auszuschneiden.Error message when user try to cut child activity from either optional or parallel activity containerccm_author_activityhelpAtivitätenhilfe für AutorenLabel for Custom Context Menuccm_open_activitycontentÖffnen/Bearbeiten des Inhalts einer AktivitätLabel for Custom Context Menuccm_copy_activityAktivität kopierenLabel for Custom Context Menuccm_paste_activityAktivität einfügenLabel for Custom Context Menuccm_piRechte prüfen....Label for Custom Context Menuws_dlg_descriptionBeschreibungLabel for description in Workspace dialog - Properties tabact_tool_titleAktivitätenTitle for Activity Toolkit Panelal_alertWarnungGeneric title for Alert windowal_cancelAbbrechenTo Confirm title for LFErroral_confirmBestätigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDie Sprachdatei wurde nicht geladenmessage for unsuccessful language loadingapp_chk_themeloadDie Themedatei wurde nicht geladenmessage for unsuccessful theme loadingapp_fail_continueDie Anwendung kann nicht fortgesetzt werden. Kontakten Sie bitte den Support.message if application cannot continue due to any errorchosen_grp_lblGewähltLabel for the grouping drop down in the PropertyInspectorcopy_btnKopierenToolbar &gt; Copy Buttoncv_invalid_trans_targetZu diesem Objekt kann keine Verbindung herrgestellt werdenError message for when transition tool is dropped outside of valid target activityal_sendAbsendenSend button label on the system error dialogpi_num_groupsZahl der GruppenNumber of groups in Property inspectorcv_invalid_trans_target_to_activityEine Verbindung zuj {0} besteht bereitsError message when a transition to the activity already existcv_design_unsavedie Gestaltung wurde geändert. Weiter ohne vorheriges Speichern?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipLöscht bestehende Sequenz und stellt neue Arbeitsumgebung zur VerfügungTool tip message for new button in toolbaropen_btn_tooltipZeigt Dateidialog, um eine Sequenz zu öffnenTool tip message for open button in toolbarsave_btn_tooltipSchnellspeicherung der geöffneten Sequenztool tip message for save button in toolbarcopy_btn_tooltipKopieren der ausgewählten Aktivitättool tip message for copy button in toolbarpaste_btn_tooltipEinfügen einer Kopie der ausgewählten Aktivitättool tip message for paste button in toolbartrans_btn_tooltipZiehen Sie mit dem Stift Verbindungen zwischen den Aktivitäten (oder Sttrg-Taste)tool tip message for transition button in toolbaroptional_btn_tooltipErstellen einer Reihe optionaler Aktivitätentool tip message for optional button in toolbargate_btn_tooltipStop-Punkt anlegentool tip message for gate button in toolbarbranch_btn_tooltipZweig anlegen (ab LAMS 2.1)tool tip message for branch button in toolbarcv_show_validationProblemeThe button on the confirm dialogcv_valid_design_savedGratulation. Ihr Design ist geprüft und gespeichert worden.Message when a valid design has been saveddb_datasend_confirmDie Daten wurden an den Server übertragenMessage when user sucessfully dumps data to the serverdelete_btnLöschenLabel for Delete buttongate_btnSperreToolbar &gt; Gate Buttongroup_btnGruppeToolbar &gt; Group Buttongrouping_act_titleGruppen bildenDefault title for the grouping activityld_val_activity_columnAktivitätThe heading on the activity in the ValidationIssuesDialogld_val_doneErledigtThe button label for the dialogld_val_issue_columnProblemeThe heading on the issue in the ValidationIssuesDialogld_val_titleProbleme prüfenThe title for the dialoglicense_not_selectedWählen Sie bitte eine Lizenz für dieses DesignShown if no license is selected in the drop down in workspacemnu_editBearbeitenMenu bar Editmnu_edit_copyKopierenMenu bar Edit &gt; Copymnu_edit_cutAusschneidenMenu bar Edit &gt; Cutmnu_edit_pasteEinfügenMenu bar Edit &gt; Pastemnu_edit_redoWiederholenMenu bar Edit &gt; Redomnu_edit_undoRückgängigMenu bar Edit &gt; Undomnu_fileDateiMenu bar Filemnu_file_closeSchließenMenu bar Closemnu_file_newNeuMenu bar Newmnu_file_openÖffnenMenu bar Openmnu_file_saveSpeichernMenu bar savemnu_file_saveasSpeichern als...Menu bar Save asmnu_helpHilfeMenu bar Helpmnu_toolsWerkzeugeMenu bar Toolsmnu_tools_optOptionen zeichnenMenu bar Optionalmnu_tools_prefsVoreinstellungenMenu bar preferencesmnu_tools_transVerbindungen zeichnenMenu bar draw transitionnew_btnNeuToolbar &gt; New Buttonnew_confirm_msgSind Sie sicher, dass Sie das Design löschen wollen?Msg when user clicks new while working on the existing designnone_act_lblKeineNo gate activity selectedopen_btnÖffnenToolbar &gt; Open Buttonoptional_btnOptionalToolbar &gt; Optional Buttonpaste_btnEinfügenToolbar &gt; Paste Buttonperm_act_lblRechteLabel for permission gate activitypi_activity_type_gateSperr-AktivitätActivity type for gate in PIpi_activity_type_groupingGruppenaktivitätenActivity type for grouping in Property Inspectorpi_definelaterSpäter festlegenLabel for Define later for PIpi_end_offsetSperre aufhebenEnd offset labelpi_group_typeArt der GruppeProperty Inspector Grouping type drop downpi_hoursStundenHours label in Property Inspectorpi_lbl_currentgroupDezeitige GruppeCurrent grouping label for PIpi_lbl_descBeschreibungDescription Label for PIpi_lbl_groupGruppierungGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actAktivitäten (max)label for maximum Activitiespi_min_actAktivitäten (min)label for Minimum activitiespi_minsMinutenMins label in teh property inspectorpi_num_learnersZahl der Teilnehmer/innenPI Num learners labelpi_optional_titleOptionale AktivitätTitle for oprional activity property inspectorpi_runofflineOffline ausführenLabel for Run Oflinepi_start_offsetSperre öffnenStart offset labelpi_titleRechteOn the title bar of the PIprefix_copyofKopie vonPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAbbrechen6prefs_dlg_lng_lblSprache7prefs_dlg_okOK5prefs_dlg_theme_lblTheme8prefs_dlg_titlePräferenzen4preview_btnVorschauToolbar &gt; Preview Buttonproperty_inspector_titleRechteOn the title bar of the PIrandom_grp_lblZufallLabel for the grouping drop down in the PropertyInspectorrename_btnUmbenennenLabel for Rename Buttonsave_btnSpeichernToolbar &gt; Save buttonsched_act_lblTerminLabel for schedule gate activitysynch_act_lblSynchronisierenUsed as a label for the Synch Gate Activity Typetk_titleAktivitätenLabel for Activities Toolkit Paneltrans_btnVerbindungToolbar &gt; Transition Buttontrans_dlg_cancelAbbrechenCancel button on transition dialogtrans_dlg_gateSynchronisationHeader for the transition props dialogtrans_dlg_gatetypecmbTypGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleVerbindungTitle for the transition properties dialogws_RootRootRoot folder title for workspacews_click_folder_fileKlicken Sie auf einen Ordner, um darin abzuspeichern oder ein veorhandenes Design, um dieses zu überschreiben.Error msg if no folder or file is selectedws_copy_same_folderDer Quell- und Zielordner sind identischThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAbbrechen2ws_dlg_filenameDateinameLabel for File name in workspace windowws_dlg_location_buttonAblageortWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÖffnenWsp Dia Open Button labelws_dlg_properties_buttonRechteWorkspace dialogue Properties btn labelws_dlg_save_btnSpeichernWsp Dia Save Button labelws_dlg_titleArbeitsplatz0ws_newfolder_cancelAbbrechenCancel on the new folder name diaws_newfolder_insBitte geben Sie einen neuen Ordnernamen einInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionSie haben nicht die Berechtigung zum Durchführen dieser AktionMessage when user does not have write permission to complete actionws_rename_insGeben Sie bitte den neuen Namen einMessage of the new name for the userws_tree_mywspMein ArbeitsplatzThe root level of the treews_view_license_buttonAnsichtTo show the license to the useract_lock_chkHeben Sie zuerst die Sperre für die optionalen Aktivitäten auf, bevor Sie diese bearbeitenAlert Message if user drags the activity to locked optional activity container sys_error_msg_startFolgender Systemfehler ist aufgetreten:Common System error message starting linesys_errorSystemfehlerSystem Error elert window titlelbl_num_activitiesAktivitätenreplacement for word activitiesopt_activity_titleOptionale AktivitätenTitle for Optional Activity Containerws_license_lblLizenzLabel for Licence drop down on workspace properties tab viewws_license_comment_lblZusätzliche LizenzinformationenLabel for Licence Comment description below license drop downal_cannot_move_activitySorry. Diese Aktivität kann nicht verschoben werden.Alert message when user tries to move child activity of any parallel activityws_click_file_openKlicken sie bitte auf ein Design, um dieses zu öffnen.Alert message if folder tried to be opened.cv_invalid_optional_activityEntfernen der Verbindungen zu und von {0} bevor diese als optional angelegt wird.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDie zweite Aktivität in dieser Verbindung fehlt.Error message when target activity for transition is missingflow_btn_tooltipErstellt Ablaufkontrolletool tip message for flow button in toolbargroup_btn_tooltipGruppenaktivität anlegentool tip message for group button in toolbarpreview_btn_tooltipTeilnehmer/innenvorschau der SequenzTool tip message for preview button in toolbarmnu_file_exitAbbruchFile Menu Exitcv_design_export_unsavedSpeichern Sie bitte, bevor Sie exportieren.Alert message when trying to export can unsaved design.mnu_file_exportExportMenu bar Exportws_chk_overwrite_existingDieser Ordner enthält bereits eine Datei mit der Bezeichnung {0}Alert message when saving a design with the same filename as an existing design.ws_no_file_openKeine Datei gefundenAlert message if no matching file is found to open in selected folder of Workspace.branch_btnZweigLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnAblaufLabel for Flow button in Toolbarmnu_file_importImportMenu bar Importws_click_virtual_folderDieser Ordner kann nicht verwandt werden.Alert message for trying to use a virtual folder to save/open a file.pi_parallel_titleParallele AktivitätTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceSie können keine kreisförmige Sequenz anlegenError message when a transition from one activity to another is creating a circular loopbin_tooltipZiehen Sie eine Aktivität aus der Sequenz in den Abfalleimer, um sie zu entfernenTool tip message for canvas bincv_gateoptional_hit_chkEine Sperraktivität kann keine optionale Aktivität sein.Error message when user drags gate activity over to optional containerprefix_copyof_count{0}. Kopie vonPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidSie können Ihr Design nicht in diesem Ordner speichern. Wählen Sie einen Unterordner aus.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityEine Verbindung von {0} besteht bereits.Error message when a transition from the activity already existcv_activity_dbclick_readonlyDas Design ist schreibgeschützt. Erstellen Sie eine Kopie, um dann Änderungen vorzunehmen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSchreibgeschütztLabel for top left of canvas shown when a read-only design is open.al_empty_designSorry. Sie können ein leeres Design nicht speichern.alert message when user want to save an empty designcv_autosave_err_msgBei der automatischen Speicherung ist ein Fehler aufgetreten. Sollte der Fehler weiter auftreten, benachrichtigen Sie bitte die Systemadministration.Alert error message when auto-save fails.cv_autosave_rec_titleWarnungAlert title for auto save recovery message.mnu_file_recoverRückgängigMenu bar Recoversys_error_msg_finishSie müssen zuerst die LAMS Autorenfunktion erneut starten, bevor Sie fortsetzen können. Wollen Sie die Fehlernachricht speichern, um das Problem zubeheben?Common System error message finish paragraphmnu_help_helpHilfe zur Autorenfunktionlabel for menu bar Help - Authoring Help optionws_del_confirm_msgWollen Sie diese Datei/Ordner wirklich löschen?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_entre_file_nameGeben Sie bitte einen Namen für das Design ein und speichern Sie dann.Error message when user try to save a design with no file namews_file_name_emptySorry! Sie können nicht speichern, ohne einen Namen vergeben zu haben.Error message when user try to save a design with no file namecv_untitled_lblUnbenannt -1Label for Design Title bar on canvascv_activity_helpURL_undefinedDie Hilfeseite für {0} wurde nicht gefunden.Alert message when a tool activity has no help url defined.cv_invalid_design_savedDas gewählte Design ist nicht gültig. Die Einstellung wurde jedoch gespeichert. but it has been saved. Klicken Sie auf 'Probleme', um nähere Informationen zu erhalten.Message when an invalid design has been savedmnu_help_abtÜber LAMSMenu bar Aboutpi_no_groupingKeineCombo title for no groupingws_chk_overwrite_resourceVorsicht. Sie sind gerade dabei, eine Sequenz zu überschreiben.pi_daysTageDays label in property inspector for gate tooltrans_dlg_nogateKeineDrop down default for gate typecv_close_return_to_ext_srcSchließen und zurück zu {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedDie Änderungen wurden erfolgreich hinzugefügt.Changes have been successful applied.mnu_file_apply_changesÄnderungen hinzufügenApply Changesvalidation_error_transitionNoActivityBeforeOrAfterZu einer Verbindung gehören einen Aktivität an beiden Enden.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEine Aktivität benötigt eine Input und Output-VerbindungAn activity must have an input or output transitionvalidation_error_inputTransitionType1Diese Aktivität hat noch keine Input-VerbindungThis activity has no input transitionvalidation_error_inputTransitionType2Alle Aktivitäten verfügen über Input-Verbindungen.No activities are missing their input transition.validation_error_outputTransitionType1Diese Aktivität hat keine Output-VerbindungThis activity has no output transitionvalidation_error_outputTransitionType2Alle Aktivitäten verfügen über Output-Verbindungen.No activities are missing their output transition.cv_invalid_design_on_apply_changesEs können keine weiteren Veränderungen hinzugefügt werden. Alle Verbindungen bestehen.Cannot apply changes. There are one or more transitions missing.apply_changes_btnÄnderungen bestätigenApply Changesapply_changes_btn_tooltipÄnderungen des Designs bestätigen und Lektion beobachten.tool tip message for save button in toolbarcancel_btnAbbrechenToolbar - Cancel Buttoncv_activity_readOnlyAktivität kann nicht {0} sein. Die Aktivität ist zum Bearbeiten gesperrt.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblLivebearbeitungLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delentferntAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modverändertAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDas Design muss korrekt sein, um das Bearbeiten zu beenden.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgHinwies: Das Design wurde verändert. Wolen Sie ohne zu speichern abbrechen?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyVerbindung kann nicht {0} sein. Das Verbindungsziel kann nur gelesen werden. Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipZurück zur Beobachtung der Lektiontool tip message for cancel button in toolbar (edit mode)mnu_file_finishBeendenMenu bar File - Finish (Edit Mode)about_popup_title_lblÜber - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} ist ein Warenzeichen der [0} Foundation ({1}).Label displaying the trademark statement in the About dialog.about_popup_license_lblDieses Programm ist freie Software. Sie kann unter den Bedingungen der GNU General Public License Version 2 weiter verbreitet und verändert werden. Die GNU GPL wird veröffentlicht von der Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleVerzweigungLabel for Branching Activityal_activity_copy_invalidSorry. Wählen Sie erst eine Aktivität aus, bevor Sie auf den Kopieren-Button klickenAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasws_tree_orgsMeine GruppenShown in the top level of the tree in the workspacecv_autosave_rec_msgSie stellen die letzte oder noch nicht gespeicherte Version wieder her. Wenn Sie Fortfahren, wird das jetzige Design gelöscht. Fortsetzen?Message informing users that they have recovered data for a design.pi_activity_type_sequenceSequenzen (Verzweigungen)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlicken Sie den Namen an, um den Wert zu ändern.Instructions for Group Naming dialog.pi_branch_tool_acts_lblEingabe (Werkzeug)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.al_doneFertigLabel for dialog completion button.condmatch_dlg_cond_lst_lblBedingungenLabel for primary list heading on Condition to Branch Matching dialog.pi_condmatch_btn_lblBedingungen festlegenLabel for button to open dialog to create output conditions.condmatch_dlg_title_lblBedingungen Verzweigungen zuordnenDialog title for matching conditions to branches for Tool based Branching.branch_mapping_no_branch_msgKein Zweig ausgewählt.Alert message when adding a Mapping without a Branch (Sequence) being selected.to_conditions_dlg_title_lblAnlegen der Output-BedingungenDialog title for creating new tool output conditions.pi_defaultBranch_cb_lbldefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ HinzufügenLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblAlle löschenLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- EntfernenLabel for button to remove condition.to_conditions_dlg_from_lblVon:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblBis:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblBereich definieren:Heading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblZweigColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblBedingungColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppeColumn heading for showing group name of the mapping.branch_mapping_no_mapping_msgKeine Zuordnung gewählt.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgKeine Bedingung gewählt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgAlle verbleibenden Bedingungen werden dem default Zweig zugewiesen.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblZuordnungenHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueBereich {0} bis {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactExakter Wert von {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblZuordnungen anlegenLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblIm Monitor festlegenCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblGruppen zu Zweigen zuordnenMap Groups to Branchesbranch_mapping_no_groups_msgKeine Gruppen ausgewählt.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppenbasiertBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblVerzweigungenLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGruppenLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblGruppennamenTitle label for Group Naming dialog.pi_activity_type_branchingVerzweigungsaktivitätActivity type for Branching in Property Inspector.pi_branch_typeVerzweigungstypProperty Inspector Branching type drop down.pi_group_naming_btn_lblGruppennamenLabel for button that opens Group Naming dialog.sequence_act_titleSequenzDefault title for Sequence Activity.tool_branch_act_lblOutputBranching type label for Tool output Branching.chosen_branch_act_lblTrainerauswahlBranching type label for Teacher choice Branching.to_condition_start_valueStartwertValue representing the min boundary value of the conditions range.to_condition_end_valueEndwertValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeDie Bedingung {0} passt nicht zu den anderen Bedingungen.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction{0} kann nicht größer sein als {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgWarnung: Sie beabsichtigen die Lektion zu entfernen. Wollen Sie die Lektion als {0} behalten?Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueWeiterContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} mit einer bestehenden Verzweigung verbinden. Wollen Sie fortsetzen?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allHierfür gibt es BedingungenPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleBedingung istPhrase used at start of linked conditions alert message when clearing a single entry. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/el_GR_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3branch_mapping_no_mapping_msgΚαμμία Αντιστοίχηση δεν έχει επιλεγείbranch_mapping_dlg_match_dgd_lblΣυνδέσειςgrp_chk_clear_branch_mappingsΠροειδοποίηση: Αυτό θα σβήσει όλες τις υπάρχουσες ομάδες στην απεικόνιση των κλάδων που συνδέονται με αυτή την ομαδική δραστηριότητα, θέλετε να συνεχίσετε;pi_mapping_btn_lblΚαθορισμός Συνδέσεωνgroupmatch_dlg_title_lblΑντιστοίχιση Ομάδων σε Κλάδουςgate_closedκλεισμένοbranch_mapping_auto_condition_msgΌλες υπόλοιπες Συνθήκες θα συνδεθούν με τον προεπιλεγμένο κλάδο. competence_editor_warning_competence_mappedΗ ικανότητα που προσπαθήτε να σβήσετε αντιστοιχεί σε μία ή περισσότερες δραστηριότητες. Διαγράφοντας αυτή την ικανότητα θα διαγραφούν και οι συνδέσεις της. Είστε σίγουροι ότι θέλετε να συνεχίσετε;map_gate_conditions_btnΣυνθήκες Πύλης Χάρτηal_activity_view_competence_mappings_invalidΠαρακαλώ σιγουρευτείτε ότι έχετε επιλεγμένη μια δραστηριότητα πρίν προσπαθείσετε να δείτε τις συνδέσεις των ικανοτήτων της. gate_mapping_auto_condition_msgΌλες οι υπόλοιπες συνθήκες θα συνδεθούν στις επιλεγμένες κλειστές πύλες. groupnaming_dialog_col_groupName_lblΌνομα Ομάδαςws_dlg_insert_btnΕισαγωγήcompetence_editor_dlgΕπεξεργαστής Ικανοτήτωνgate_openανοικτόcompetence_editor_warning_title_existsΜια ικανότητα με τίτλο {0} υπάρχει ήδηcompetence_editor_warning_title_blankΟ τίτλος της ικανότητας δεν μπορεί να είναι κενόςcompetence_def_dlgΔιάλογος Ορισμού Ικανότηταςcompetence_editor_add_competence_btnΠροσθήκηsequence_act_titleΑκολουθίαto_condition_start_valueαρχική τιμή competence_mappings_btnΣυνδέσεις Ικανοτήτωνredundant_branch_mappings_msgΟ σχεδιασμός περιέχει διακλαδώσεις που δεν έχουν απομακρυνθεί. Θέλετε να συνεχίσετε;sequence_act_title_new{0} {1}to_condition_end_valueτελική τιμή mnu_file_insertdesignΕισαγωγή/(Συν)ένωση ...branch_mapping_dlg_branch_item_defaultΑγγλικά: {0} (προκαθορισμένα)pi_group_matching_btn_lblΣυνδυασμός Ομάδων με Κλάδουςpi_tool_output_matching_btn_lblΣυνδυασμός Συνθηκών με Κλάδουςrefresh_btnΑνανέωσηcv_invalid_trans_closed_sequenceΔεν μπορείτε να κάνετε μία νέα σύνδεση σε μία κλειστή ακολουθίαpi_equal_group_sizesΙσομεγέθης Ομάδεςto_conditions_dlg_condition_items_update_defaultConditionsΠρόκειται να ανανεώσετε τις συνθήκες της επιλεγμένης εξόδου. Αυτο θα διαγράψει όλους τους υπάρχοντες κλάδους. Θέλετε να συνεχίσετε; learner_choice_grp_lblΕπιλογές Εκπαιδευόμενουbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroΔεν μπορεί να ενημερωθεί όσο δεν βρίσκεται κανείς χρήστης που να έχει καθορίσει τις συνθήκες. Μπορεί να πρέπει να τις καθορίσετε στη σελίδα(ς) του εργαλείου συγγραφήςto_conditions_dlg_defin_user_defined_typeορισμένο από το χρήστηal_activity_paste_invalidΣυγνώμη, δεν μπορείτε να επικολλήσετε δραστηριότητες τέτοιου τύπου. al_group_name_invalid_blankΤα ονόματα των ομάδων δεν μπορεί να ειναι κενά. al_group_name_invalid_existingΤα ονόματα των ομάδων πρέπει να είναι μοναδικά. pi_group_naming_btn_lblΟνομασία Ομάδωνtool_branch_act_lblΑποτελέσματα Εκπαιδευομένωνchosen_branch_act_lblΕπιλογή Καθηγητήbranch_mapping_dlg_condition_linked_allΥπάρχουν συνθήκες branch_mapping_dlg_condition_linked_singleΗ συνθήκη είναι to_condition_untitled_item_lblΧωρίς τίτλο {0} branch_mapping_dlg_condition_col_value_maxΜεγαλύτερο ή ίσο από {0} optional_act_btnΔραστηριότηταgrouping_invalid_with_common_names_msgΗ '{0}' έχει περισσότερες από μία ομάδες με το ίδιο όομα και ο σχεδιασμός δεν μπορεί να αποθηκευθεί ως ομαδική δραστηριότητα. Παρακαλώ αναθεωρήστε την ομαδοποίηση και προσπαθήστε ξανά.optional_seq_btnΑκολουθίαpi_optSequence_remove_msg_titleΑπομάκρυνση ακολουθιώνpi_no_seq_actΑριθμός Ακολουθιών cv_invalid_trans_diff_branchesΔεν μπορείτε να δημιουργήσετε μία σύνδεση μεταξύ δραστηριοτήτων διαφορετικών κλάδωνcv_invalid_branch_target_to_activityΟ κλάδος στη {0} υπάρχει ήδη.cv_invalid_branch_target_from_activityΟ κλάδος από τη {0} υπάρχει ήδη.to_condition_invalid_value_range{0} δεν μπορεί να είναι μέσα στη σειρά μιας υπάρχουσας συνθήκηςto_condition_invalid_value_directionΟ {0} δεν μπορεί να είναι μεγαλύτερος από {1}.lbl_num_sequences{0} - Ακολουθιών pi_seqΑκολουθίεςis_remove_warning_msgΠΡΟΕΙΔΟΠΟΙΗΣΗ: Το μάθημα πρόκειται να αφαιρεθεί. Θέλετε αυτό κρατήσετε αυτό το μάθημα ως {0};al_continueΣυνεχείστεbranch_mapping_dlg_condition_linked_msgΟ {0} είναι συνδεμένος με έναν υπάρχοντα κλάδο. Επιθυμείτε να συνεχιστείτε; to_conditions_dlg_defin_long_typeσειράcv_activityProtected_child_activity_link_msgΤο {0} έχει ένα παιδί συνδεδεμένο με το {1} optional_seq_btn_tooltipΔημιουργία ενός συνόλου προαιρετικών ακολουθιώνal_cannot_move_to_diff_opt_seqΓια να μετακινήσετε μια δραστηριότητα σε μία διαφορετική ακολουθία με Προεραιτικές ακολουθίες, πρώτα σύρε την δραστηριότητα έξω από το την περιοχή της Προεραιτικής Ακολουθίας και μετά κάνε κλί και σύρε την στη νέα της θεση μέσα στις Προεραιτικές Ακολουθίες. to_conditions_dlg_defin_bool_typeαλήθεια/ψέμαcv_activityProtected_activity_remove_msgΓια να το απομακρύνετε παρακαλώ να ακυρώσετε την επιλογή αυτής της δραστηριότητας ως {0} .cv_activityProtected_activity_link_msgΑυτό το {0} είναι συνδεδεμένο με το {0} to_conditions_dlg_defin_item_header_lbl[ Επιλογή Εξόδου ]to_conditions_dlg_defin_item_fn_lbl{0} ({1}) pi_optSequence_remove_msgΗ ακολουθία(ες) που πρόκειται να απομακρυνθούν περιέχουν δραστηριότητες που θα διαγραφούν. Θέλετε να διαγράψετε αυτές τις ακολουθίες;to_conditions_dlg_condition_items_name_col_lblΌνομαactivityDrop_optSequence_error_msgΠαρακαλώ αφήστε τη δραστηριότητα μέσα σε μία από τις ακολουθίες. arrange_act_btnΤακτοποιήστε τις Δραστηριότητεςto_conditions_dlg_condition_items_value_col_lblΣυνθήκηto_conditions_dlg_options_item_header_lbl[ Επιλογές ]close_mc_tooltipΕλαχιστοποίησηto_conditions_dlg_gte_lblΜεγαλύτερο ή ίσο απόbranching_act_titleΔιακλάδωσηto_conditions_dlg_lte_lblΜικρότερο ή ίσο απόcv_invalid_optional_seq_activity_no_branchesΑπομακρύνετε όλους τους συνδεδεμένους κλάδους από {0} πριν τον προσθέσετε σε μία προαιρετική ακολουθία.ta_iconDrop_optseq_error_msgΔεν υπάρχουν ενεργοποιημένες ακολουθίες σε αυτόν τον υποδοχέα.cv_eof_finish_invalid_msgΤο σχέδιο πρέπει να είναι έγκυρο για να ολοκληρώσετε την επεξεργασία.gpl_license_urlwww.gnu.org/licenses/gpl.txtact_seq_lock_chkΠαρακαλώ ξεκλειδώστε τον υποδοχέα Προαιρετικών Ακολουθιών πριν αναθέσετε αυτή τη δραστηριότητα σε μία προαιρετική ακολουθία. cv_invalid_optional_seq_activityΑφαιρέστε τις μεταβάσεις "από" και "προς" από το {0} πριν το καθορίσετε ως προαιρετική ακολουθία.stream_urlhttp:// {0} foundation.orgcv_invalid_optional_activity_no_branchesΔιαγράψτε όλες τις διασυνδέσεις από το {0} πριν το καθορίσετε ως προαιρετική δραστηριότητα.opt_activity_seq_titleΠροαιρετικές ακολουθίεςto_conditions_dlg_lt_lblΜικρότερο ή ίσο απόbranch_mapping_dlg_condition_col_value_minΜικρότερο από ή ίσο με {0}pi_actΔραστηριότητεςpi_activity_type_sequenceΔραστηριότητα Ακολουθίας ({0})groupnaming_dialog_instructions_lblΚάντε κλικ σε ένα όνομα για να αλλάξετε την τιμή του.branch_mapping_dlg_group_col_lblΟμάδαcv_activity_readOnlyΗ δραστηριότητα δεν μπορεί να είναι {0}. Η δραστηριότητα είναι μόνο για ανάγνωση.cv_edit_on_fly_lblΖωντανή Επεξεργασίαcv_element_readOnly_action_delδιαγραφήcv_element_readOnly_action_modμεταβλήθηκεpi_minsΛεπτάpi_branch_tool_acts_lblΕισαγωγή (εργαλείο)pi_condmatch_btn_lblΔημιουργία Συνθηκώνpi_branch_tool_acts_default---Επιλογή---pi_no_groupingΚαμίαcv_trans_readOnlyΗ μετάβαση δεν μπορεί να {0}. Ο στόχος της μετάβασης είναι μόνο για ανάγνωση.cancel_btn_tooltipΕπιστροφή στην εποπτεία μαθήματοςmnu_file_finishΤέλοςabout_popup_title_lblΠερί - {0}about_popup_version_lblΈκδοσηabout_popup_copyright_lbl2002-2008 Ίδρυμα {0}. about_popup_trademark_lbl{0} είναι ένα εμπορικό σήμα {του ιδρύματος 0} ({1}).about_popup_license_lblΑυτό το πρόγραμμα είναι ελεύθερο λογισμικό μπορείτε να το διανείμετε ή/και να το τροποποιήσετε υπό τους όροους των αδειών GNU όπως δημοσιεύονται από το Ίδρυμα Ελεύθερου Λογισμικού.stream_reference_lblLAMS to_conditions_dlg_title_lblΔημιουργήστε Συνθήκες Εξόδουal_doneΕγινε condmatch_dlg_cond_lst_lblΣυνθήκεςcondmatch_dlg_title_lblΑντιστοίχηση Συνθηκών σε Κλάδουςpi_defaultBranch_cb_lblπροεπιλογή to_conditions_dlg_add_btn_lbl+ Προσθέστεto_conditions_dlg_clear_all_btn_lblΚαθαρισμός Όλωνto_conditions_dlg_remove_item_btn_lbl- Αφαιρέστε to_conditions_dlg_from_lblΑπό: to_conditions_dlg_to_lblΠρος: to_conditions_dlg_range_lblΕύροςbranch_mapping_dlg_branch_col_lblΚλάδοςbranch_mapping_dlg_condition_col_lblΟροςbranch_mapping_no_branch_msgΚανένας Κλάδος δεν έχει επιλεγείbranch_mapping_no_condition_msgΚαμία Συνθήκη δεν έχει επιλεγείbranch_mapping_dlg_condition_col_valueΣειρά {0} {1}branch_mapping_dlg_condition_col_value_exactΑκριβή τιμή {0} {1}pi_define_monitor_cb_lblΟρίστε στο Περιβάλλον Ελέγχουbranch_mapping_no_groups_msgΚαμμία ομάδα δεν επιλέχθηκεgroup_branch_act_lblΒασισμένη σε Ομάδαbranch_mapping_dlg_branches_lst_lblΚλάδοιgroupmatch_dlg_groups_lst_lblΟμάδεςgroupnaming_dlg_title_lblΟνομασία Ομάδαςpi_activity_type_branchingΔραστηριότητα Διακλάδωσηςpi_branch_typeΕίδος διακλάδωσηςflow_btn_tooltipΔημιουργία διαγράμματος ελέγχου δραστηριοτήτωνgroup_btn_tooltipΔημιουργία Ομαδικής Δραστηριότηταςpreview_btn_tooltipΠροεπισκόπηση της Ακολουθίας σας όπως θα τη βλέπουν οι Εκπαιδευόμενοι.cv_activity_dbclick_readonlyΔεν είναι δυνατή η επεξεργασία εργαλείων ενός μόνο-για ανάγνωση σχεδιασμού. Παρακαλώ αποθηκεύστε ένα αντίγραφο του σχεδιασμού και προσπαθήστε πάλι.cv_readonly_lblΜόνο για Ανάγνωσηal_empty_designΛυπούμαστε, Δε μπορείτε να αποθηκεύσετε ένα άδειο σχέδιοcv_autosave_rec_msgΕίστε έτοιμοι για ανάκτηση των χαμένων ή μη-αποθηκευμένων σχεδιασμών. Ο τρέχον σχεδιασμός θα διαγραφεί. Θέλετε να συνεχίσετε;cv_autosave_rec_titleΠροσοχήmnu_file_recoverΑνάκτηση...cv_activity_copy_invalidΣυγνώμη! Δεν επιτρέπεται η αντιγραφή της δραστηριότητας-παιδί. cv_activity_cut_invalidΣυγνώμη! Δεν επιτρέπεται η αποκοπή αυτής της δραστηριότητας-παιδί. al_activity_copy_invalidΛυπούμαστε! Πρέπει να επιλέξετε τη δραστηριότητα πριν πατήστε αντιγραφήal_activity_openContent_invalidΣυγγνώμη! Απαιτείται να έχετε επιλέξειτη δραστηριότητα πριν να κάντε κλικ στο στοιχείο του μενού Άνοιγμα/Επεξεργασία Περιεχομένου Δραστηριότητας στο μενού με το δεξί κλικ της δραστηριότητας.ws_del_confirm_msgΕίστε σίγουροι ότι θέλετε να διαγράψετε αυτό το αρχείο/φάκελο;ws_file_name_emptyΛυπούμαστε! Δε μπορείτε να αποθηκεύσετε ένα σχέδιο χωρίς όνομαcv_activity_helpURL_undefinedΔεν μπορώ να βρώ βοήθεια για τη σελίδα {0}cv_untitled_lblΑνώνυμη-1mnu_help_helpΒοήθεια Συγγραφήςccm_open_activitycontentΆνοιγμα/Επεξεργασία Περιεχομένου Δραστηριότηταςccm_copy_activityΑντιγραφή Δραστηριότηταςccm_paste_activityΕπικόλληση Δραστηριότηταςccm_piΕπιθεώρηση ιδιότητας ...ccm_author_activityhelpΒοήθεια Συγγραφέα για τη Δραστηριότηταws_dlg_descriptionΠεριγραφήtrans_dlg_nogateΤίποτεpi_daysΗμέρεςcv_close_return_to_ext_srcΚλείσιμο και μετάβαση πίσω στο {0}cv_eof_changes_appliedΟι αλλαγές έχουν γίνει επιτυχώςmnu_file_apply_changesΕφαρμογή Αλλαγώνvalidation_error_transitionNoActivityBeforeOrAfterΜια μετάβαση πρέπει να έχει μια δραστηριότητα πριν από ή μετά από αυτήνvalidation_error_activityWithNoTransitionΜια δραστηριότητα πρέπει να έχει μια μετάβαση εισόδου ή εξόδου validation_error_inputTransitionType1Αυτή η δραστηριότητα δεν έχει καμία μετάβαση εισόδουvalidation_error_inputTransitionType2Καμία από τις δραστηριότητες δεν έχει χάσει την μετάβαση εισόδου.validation_error_outputTransitionType1Αυτή η δραστηριότητα δεν έχει καμία μετάβαση εξόδουvalidation_error_outputTransitionType2Καμμία από τις δραστηριότητες δεν έχει χάσει την μετάβαση εξόδου. cv_invalid_design_on_apply_changesΔεν μπορείτε να εφαρμόσετε τις αλλαγές. Λείπουν μια ή περισσότερες μεταβάσεις.apply_changes_btnΕφαρμογή αλλαγώνapply_changes_btn_tooltipΕφαρμογή αλλαγών στο σχέδιο και επιστροφή στην οθόνη μαθήματος.cancel_btnΆκυροws_tree_mywspΟ Χώρος Εργασίας μουws_tree_orgsΟι Ομάδες μουws_view_license_buttonΠροβολήact_lock_chkΠαρακαλώ, ξεκλειδώστε την Προαιρετική Δραστηριότητα πριν καθορίσετε αυτήν την δραστηριότητα ως προαιρετική.sys_error_msg_startΈχει εμφανιστεί το ακόλουθο λάθος συστήματος: sys_error_msg_finishΑπαιτείται επανεκκίνηση του LAMS "Συγγραφέας" για να συνεχίσετε. Θέλετε να αποθηκεύσετε τις παρακάτω πληροφορίες για το λάθος ώστε να βοηθήσετε στην επίλυση αυτού του προβλήματος;sys_errorΛάθος συστήματοςpi_num_groupsΑριθμός Ομάδωνpi_parallel_titleΠαράλληλη Δραστηριότηταopt_activity_titleΠροαιρετική Δραστηριότηταlbl_num_activities{0}-Δραστηριότητεςal_sendΑποστολήal_cannot_move_activityΛυπούμαστε, δεν μπορείτε να μετακινήσετε αυτή τη δραστηριότητα. cv_gateoptional_hit_chkΔεν μπορείτε να προσθέσετε μία δρασηριότητα πύλης σαν μια προαιρετική δραστηριότητα.prefix_copyof_countΑντιγραφή ({0}) απόws_save_folder_invalidΔεν μπορείτε να αποθηκεύσετε το σχέδιο σε αυτό το φάκελο. Παρακαλώ επιλέξτε έναν έγκυρο υποφάκελο.ws_click_file_openΠαρακαλώ κάντε κλικ στο Σχέδιο για να να ανοίξει.ws_license_lblΆδειαws_license_comment_lblΕπιπρόσθετες Πληροφορίες Άδειαςcv_invalid_optional_activityΑφαίρεση σε και από {0} μεταβάσεις πριν την τοποθέτηση μιας προαιρετικής δραστηριότηταςcv_trans_target_act_missingΗ δεύτερη δραστηριότητα της Μετάβασης λείπει.cv_invalid_trans_target_from_activityΗ Μετάβαση από {0} ήδη υπάρχει.cv_invalid_trans_target_to_activityΗ Μετάβαση σε {0} ήδη υπάρχει.branch_btnΔιακλάδωσηflow_btnΡοή mnu_file_importΕισαγωγήcv_design_export_unsavedΔε μπορεί να γίνει "εξαγωγή" μη αποθηκευμένου Σχεδίουmnu_file_exportΕξαγωγήws_chk_overwrite_existingΑυτός ο φάκελος περιέχει ήδη ένα αρχείο με όνομα {0}. ws_click_virtual_folderΔε μπορεί να χρησιμοποιηθεί ο φάκελος αυτόςmnu_file_exitΈξοδοςws_no_file_openΔεν βρέθηκε αρχείοcv_invalid_trans_circular_sequenceΔεν επιτρέπεται να έχετε κυκλική ακολουθία bin_tooltipΡίξτε μία δραστηριότητα σε αυτό το καλάθι για να την απομακρύνετε από την ακολουθία δραστηριοτήτωνnew_btn_tooltipΔημιουργία Νέας Ακολουθίας Δραστηριοτήτωνopen_btn_tooltipΆνοιγμα αποθηκευμένης Ακολουθίας Δραστηριοτήτωνcopy_btn_tooltipΑντιγραφή της επιλεγμένης δραστηριότηταςpaste_btn_tooltipΕπικόλληση ενός αντιγράφου της επιλεγμένης δραστηριότηταςtrans_btn_tooltipΣχεδίαση μεταβάσεων μεταξύ δραστηριοτήτων (ή με χρήση του πλήκτρου CTRL)optional_btn_tooltipΔημιουργία μιας ομάδας προαιρετικών δραστηριοτήτωνgate_btn_tooltipΔημιουργία ενός σημείου διακοπήςbranch_btn_tooltipΔημιουργία ενός κλάδου (διαθέσιμο στο LAMS v 2.1)none_act_lblΚαμίαopen_btnΆνοιγμαoptional_btnΠροαιρετικήpaste_btnΕπικόλλησηperm_act_lblΆδεια Πρόσβασηςpi_activity_type_gateΔραστηριότητα Πύληςpi_activity_type_groupingΟμαδική Δραστηριότηταpi_definelaterΚαθορίζονται από τον Επόπτηpi_end_offsetΚλείστε την πύληpi_group_typeΤύπος Ομαδοποίησηςpi_hoursΏρεςpi_lbl_currentgroupΤρέχουσα ομαδοποίησηpi_lbl_descΠεριγραφήpi_lbl_groupΟμαδοποίησηpi_lbl_titleΌνομαpi_max_actΜέγιστος {0}pi_min_actΕλάχιστος {0}ws_dlg_ok_buttonΟΚpi_num_learnersΑριθμός Εκπαιδευόμενων pi_optional_titleΠροαιρετική Δραστηριότηταpi_runofflineΔραστ. χωρίς απευθείας σύνδεσηpi_start_offsetΆνοιγμα πύληςprefix_copyofΑντιγραφή τηςprefs_dlg_cancelΆκυροprefs_dlg_lng_lblΓλώσσαprefs_dlg_okΟΚprefs_dlg_theme_lblΘέμαprefs_dlg_titleΠροτιμήσειςpreview_btnΠροεπισκόπησηrandom_grp_lblΤυχαίαrename_btnΜετονομασίαsched_act_lblΧρονοδιάγραμμαsynch_act_lblΣυγχρονίστεtk_titleΕργαλείο Δραστηριοτήτωνtrans_btnΜετάβασηtrans_dlg_cancelΆκυροtrans_dlg_gateΣυγχρονισμόςtrans_dlg_gatetypecmbΤύποςtrans_dlg_okΟΚtrans_dlg_titleΜετάβασηws_RootΡίζαws_dlg_open_btnΆνοιγμαws_chk_overwrite_resourceΠροσοχή: πρόκειται να αντικαταστήσετε αυτή την ακολουθία!ws_copy_same_folderΗ πηγή και ο φάκελος προορισμού έχουν το ίδιο όνομαws_dlg_cancel_buttonΆκυροws_dlg_filenameΌνομα Αρχείουws_dlg_location_buttonΤοποθεσίαmnu_file_saveasΑποθήκευση ως ...mnu_file_saveΑποθήκευσηws_dlg_titleΧώρος Εργασίαςcv_autosave_err_msgΠρόβλημα κατα τη διάρκεια αυτόματης αποθήκευσης του σχεδίου σας. Αν το πρόβλημα επαναλαμβάνεται παρακαλώ επικοινωνήστε με το Διαχειριστή του Συστήματοςws_newfolder_cancelΆκυροal_cancelΆκυροws_newfolder_insΠαρακαλώ εισάγετε ένα νέο όνομα αρχείουws_newfolder_okΟΚal_okΟΚws_dlg_save_btnΑποθήκευσηws_no_permissionΛυπούμαστε, δεν έχετε άδεια να γράψετε σε αυτό τον πόροws_rename_insΠαρακαλώ εισάγετε ένα νέο όνομαal_alertΕιδοποίησηact_tool_titleΕργαλείο Δραστηριοτήτωνws_click_folder_fileΠαρακαλώ πατήστε είτε σε έναν Κατάλογο για αποθήκευση είτε σε μία Σχεδίαση για επικάλυψηsave_btnΑποθήκευσηal_confirmΕπιβεβαίωσηgroup_btnΟμάδαgrouping_act_titleΟμαδοποίησηapp_chk_langloadΤα δεδομένα της γλώσσας δεν έχουν φορτωθείapp_chk_themeloadΤα δεδομένα του θέματος δεν έχουν φορτωθείapp_fail_continueΗ εφαρμογή δεν μπορεί να συνεχίσει. Παρακαλώ επικοινωνείστε με την τεχνική υποστήριξηchosen_grp_lblΕπιλογή στην Εποπτείαcopy_btnΑντιγραφήcv_invalid_design_savedΤο σχέδιό σας δεν είναι ακόμα έγκυρο, αλλά έχει αποθηκευθεί, κάντε κλικ στο "Ζητήματα" για να δείτε το λάθος. ld_val_activity_columnΔραστηριότηταcv_invalid_trans_targetΔεν μπορείτε να δημιουργήσετε μια μετάβαση σε αυτό το αντικείμενοcv_show_validationΖητήματαcv_valid_design_savedΣυγχαρητήρια! - Η σχεδίαση είναι έγκυρη και έχει αποθηκευθείsave_btn_tooltipΑποθήκευση Ακολουθίας Δραστηριοτήτωνdb_datasend_confirmΕυχαριστώ για την αποστολή των δεδομένων στον εξυπηρετητήdelete_btnΔιαγραφήgate_btnΠύληld_val_doneΈγινεview_students_before_selectionΠροβολή εκπαιδευομένων πριν από την επιλογή;ld_val_issue_columnΖήτημαld_val_titleΕπικύρωση ζητήματοςlicense_not_selectedΚαμία άδεια δεν έχει ακόμα επιλεγεί - Παρακαλώ επιλέξετε μίαmnu_editΕπεξεργασίαmnu_edit_copyΑντιγραφήmnu_edit_cutΑποκοπήmnu_edit_pasteΕπικόλλησηmnu_edit_redoΑκύρ. Αναίρεσηςmnu_edit_undoΑναίρεσηcv_design_unsavedΤο Σχέδιο της επιφάνειας έχει αλλάξει. Θέλετε να συνεχίσετε χωρίς αποθήκευση;mnu_fileΑρχείοmnu_file_closeΚλείσιμοmnu_file_newΝέαws_entre_file_nameΠαρακαλώ δώστε το όνομα του σχεδίου και μετά πατήστε Αποθήκευσηmnu_file_openΆνοιγμαcv_eof_finish_modified_msgΠροειδοποίηση: Το σχέδιό σας έχει τροποποιηθεί. Επιθυμείτε να κλείσετε χωρίς αποθήκευση;mnu_helpΒοήθειαmnu_help_abtΠληροφορίες για το LAMSmnu_toolsΕργαλείαmnu_tools_optΠροαιρετικήmnu_tools_prefsΕπιλογέςmnu_tools_transΜετάβαση new_btnΝέαnew_confirm_msgΕίστε σίγουροι ότι θέλετε να διαγράψετε τη σχεδίαση από την οθόνη;competences_lblΙκανότητεςcompetences_mapped_to_act_lblΙκανότητεςws_dlg_properties_buttonΙδιότητεςmap_comptence_btnΣύνδ. με Ικανότητεςpi_titleΕπιθεώρηση Ιδιοτήτωνproperty_inspector_titleΙδιότητες:condmatch_dlg_message_lblΟ πρεπιλεγμένος κλάδος μπορεί να επιλεχθεί με κλικ στο τετραγωνίδιο «Προεπιλεγμένος» στην περιοχή ιδιοτήτων του επιθυμητού κλάδου.ws_dlg_date_modified_lblΤελευταία τροποποίηση: (0)ws_save_title_reserved_charsΟ Τίτλος δεν μπορεί να περιέχει ειδικούς χαρακτήρες: (0)mnu_file_import_communityΕισαγωγή από την Κοινότητα του LAMS ...gradebook_output_typeΈξοδος Βαθμολογίουsupport_act_btnΥποστήριξηsupport_act_btn_tooltip Δημιουργήστε μια σειρά από προαιρετικές δραστηριότητες υποστήριξης.support_act_titleΔραστηριότητα Υποστήριξης.support_msg_no_connectionΟι δραστηριότητες υποστήριξης δεν μπορούν να συνδεθούν με καμία άλλη δραστηριότητα.support_msg_invalid_childΟι δραστηριότητες τύπου {0} δεν μπορούν να προστεθούν ως δραστηριότητες υποστήριξηςsupport_msg_max_children_reachedΔεν είναι δυνατή η προσθήκη δραστηριότητας:{0} εδώ. Η δραστηριότητα υποστήριξης επιτρέπει το μέγιστο {1} δραστηριότητες παιδιά.support_msg_cannot_be_childΔεν μπορείτε να βάζετε μια δραστηριότητα υποστήριξης μέσα σε μια άλλη δραστηριότητα.cv_design_insert_warningΜόλις εισαγάγετε μια άλλη ακολουθία, δεν μπορείτε να ακυρώσετε αυτήν την πράξη - η παλαιά ακολουθία αυτόματα αποθηκεύεται με τη νέα ακολουθία που παρεμβάλλεται. Για να επιστρέψετε στην παλαιά ακολουθία σας, θα πρέπει διαγράψτε όλες τις νέες δραστηριότητες με το χέρι, και έπειτα να την αποθηκεύσετε. Για να αφήσει την τρέχουσα ακολουθία σας χωρίς αλλαγές, κάντε κλικ στο Άκυρο. Διαφορετικά κάντε κλικ στο Εντάξει για να επιλέξετε την ακολουθία που θα εισαγάγετε.preview_btn_tooltip_disabledΓια την προεπισκόπηση της δραστηριότητας θα πρέπει να την έχετε αποθηκεύσει και στη συνέχεια να επιλέξετε "Προεπισκόπηση" \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/en_AU_dictionary.xml 12 Jan 2010 01:19:51 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleParallel Activityopt_activity_titleOptional Activityal_sendSendal_cannot_move_activitySorry you cannot move this activity.cv_activity_copy_invalidSorry! You are not allowed to copy this child activity.cv_activity_cut_invalidSorry! You are not allowed to cut this child activity.act_tool_titleActivities Toolkital_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportcopy_btnCopycv_invalid_trans_targetYou cannot create a transition to this objectcv_show_validationIssuesdb_datasend_confirmThanks for Sending data to serverdelete_btnDeletegate_btnGategroup_btnGroupgrouping_act_titleGroupingld_val_activity_columnActivityld_val_doneDoneld_val_issue_columnIssueld_val_titleValidation issuesmnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_edit_redoRedomnu_edit_undoUndomnu_fileFilemnu_file_closeClosemnu_file_newNewmnu_file_openOpenmnu_file_saveSavemnu_file_saveasSave as...mnu_helpHelpmnu_toolsToolsmnu_tools_optDraw Optionalmnu_tools_transDraw Transitionnew_btnNewnew_confirm_msgAre you sure you want to clear your design on the screen?none_act_lblNoneopen_btnOpenoptional_btnOptionalpaste_btnPasteperm_act_lblPermissionpi_activity_type_gateGate Activitypi_activity_type_groupingGrouping Activitypi_end_offsetClose gatepi_group_typeGrouping typepi_hoursHourspi_lbl_currentgroupCurrent Groupingpi_lbl_descDescriptionpi_lbl_groupGroupingpi_lbl_titleTitlepi_minsMinutespi_optional_titleOptional Activitypi_start_offsetOpen gatepi_titlePropertiesprefix_copyofCopy of prefs_dlg_cancelCancelprefs_dlg_lng_lblLanguageprefs_dlg_okOKprefs_dlg_theme_lblThemepreview_btnPreviewproperty_inspector_titlePropertiesrandom_grp_lblRandomrename_btnRenamesave_btnSavesched_act_lblSchedulesynch_act_lblSynchronisetk_titleActivities Toolkittrans_btnTransitiontrans_dlg_cancelCanceltrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRootws_click_folder_filePlease click on either a Folder to save in, or a Design to overwritews_copy_same_folderThe source and destination folders are the samews_dlg_cancel_buttonCancelws_dlg_filenameFile Namews_dlg_location_buttonLocationws_dlg_ok_buttonOKws_dlg_open_btnOpenws_dlg_properties_buttonPropertiesws_dlg_save_btnSavews_dlg_titleWorkspacews_newfolder_cancelCancelws_newfolder_insPlease enter a the new folder namews_newfolder_okOKws_no_permissionSorry, you do not have permission to write to this resourcews_rename_insPlease enter the new namews_tree_mywspMy Workspacews_view_license_buttonViewsys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errorchosen_grp_lblChoose in Monitoral_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.pi_no_groupingNonews_chk_overwrite_existingThis folder already contains a file named {0}.mnu_file_importImportprefix_copyof_countCopy ({0}) ofws_click_file_openPlease click on a Design to open.cv_gateoptional_hit_chkYou cannot add a gate activity as an optional activity.ws_save_folder_invalidYou cannot save a design in this folder. Please select a valid sub-folder.ws_license_lblLicensews_license_comment_lblAdditional License Informationcv_trans_target_act_missingSecond activity of the Transition is missing.cv_invalid_optional_activityRemove to and from transitions from {0} before setting it as an optional activity.cv_invalid_trans_target_to_activityA Transition to {0} already existcv_invalid_trans_target_from_activityA Transition from {0} already existws_del_confirm_msgAre you sure you want to delete this file / folder?branch_btnBranchflow_btnFlowbin_tooltipDrop an activity on this bin to remove it from the activity sequence.new_btn_tooltipClears current sequence and resets workspace ready for useopen_btn_tooltipShow File Dialogue to open an Activity Sequenceflow_btn_tooltipCreate flow controls activitiesgroup_btn_tooltipCreate a Grouping activitypreview_btn_tooltipPreview your Sequence as learners will see itcopy_btn_tooltipCopy the selected activitypaste_btn_tooltipPaste a copy of the selected activitysave_btn_tooltipQuick save current Activity Sequenceoptional_btn_tooltipCreate a set of optional activities. gate_btn_tooltipCreate a stop pointtrans_btn_tooltipUse this pen to draw transitions between activities (or press CTRL key)pi_daysDaysws_click_virtual_folderCannot use this folder.mnu_file_exitExitcv_design_export_unsavedYou cannot Export an unsaved design.mnu_file_exportExportrefresh_btnRefreshpi_num_groupsNumber of groupscv_design_unsavedThe design on the canvas has changed. Continue without saving?ws_no_file_openNo file found.cv_invalid_trans_circular_sequenceYou are not allowed to have a circular sequencetrans_dlg_nogateNonecv_autosave_rec_msgYou are about to recover the last lost or unsaved design. Your current design will be cleared. Continue?ws_chk_overwrite_resourceWarning: you are about to overwrite this sequence!al_activity_copy_invalidSorry! You are required to select the activity before you click copyapp_chk_langloadThe language data has not been loadedcv_activity_dbclick_readonlyYou are unable to edit tools of a read-only design. Please save a copy of the design and try again.cv_readonly_lblRead Onlylicense_not_selectedNo license currently selected - Please select one al_empty_designSorry, You cannot save an empty designws_dlg_descriptionDescriptioncv_valid_design_savedCongratulations! - Your design is valid and has been savedtool_branch_act_lblLearner's Outputcv_autosave_rec_titleWarningws_tree_orgsMy Groupsmnu_file_recoverRecover...ws_entre_file_namePlease enter the design name, and then click Save button.ws_file_name_emptySorry! You are not allowed to save a design with no file name.ccm_author_activityhelpAuthor Activity Helpccm_open_activitycontentOpen/Edit Activity Contentccm_copy_activityCopy Activityccm_paste_activityPaste Activityccm_piProperty Inspector...mnu_help_helpAuthoring Helpsupport_act_btnSupportsupport_act_btn_tooltipCreate a set of optional support activities.support_act_titleSupport Activitysupport_msg_no_connectionSupport activities cannot be connected to any other activitysupport_msg_invalid_childActivities of type {0} cannot be added as a support activitysupport_msg_max_children_reachedCannot drop activity: {0} here. The support activity permits a maximum of {1} child activities.support_msg_cannot_be_childCannot drop a support activity inside another activity.mnu_help_abtAbout LAMScv_untitled_lblUntitled - 1cv_activity_helpURL_undefinedCannot find help page for {0}cv_close_return_to_ext_srcClose and back to {0}about_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcancel_btn_tooltipReturn to monitor lesson.mnu_file_finishFinishmnu_file_apply_changesApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAn activity must have an input or output transitionvalidation_error_inputTransitionType1This activity has no input transitionvalidation_error_inputTransitionType2No activities are missing their input transition.validation_error_outputTransitionType1This activity has no output transitionvalidation_error_outputTransitionType2No activities are missing their output transition.cv_invalid_design_on_apply_changesCannot apply changes. There are one or more transitions missing.apply_changes_btnApply Changesapply_changes_btn_tooltipApply changes to design and return to monitor lesson.cancel_btnCancelcv_activity_readOnlyActivity cannot be {0}. The Activity is read-only.cv_edit_on_fly_lblLive Editcv_element_readOnly_action_delremovedcv_element_readOnly_action_modmodifiedcv_eof_finish_invalid_msgDesign must be valid in order to finish editing.cv_eof_finish_modified_msgWarning: Your design has been modified. Do you wish to close without saving?cv_trans_readOnlyTransition cannot be {0}. The Transition target is read-only.pi_branch_tool_acts_default--Selection--about_popup_copyright_lbl© 2002-2009 {0} Foundation. branching_act_titleBranchingpi_definelaterDefine in Monitorgroupnaming_dialog_instructions_lblClick on a name to change its value.pi_branch_tool_acts_lblInput (Tool)al_doneDonecondmatch_dlg_cond_lst_lblConditionscondmatch_dlg_title_lblMatch Conditions to Branchespi_defaultBranch_cb_lbldefaultto_conditions_dlg_add_btn_lbl+ Addto_conditions_dlg_clear_all_btn_lblClear Allto_conditions_dlg_remove_item_btn_lbl- Removebranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupbranch_mapping_no_branch_msgNo Branch selected.branch_mapping_no_mapping_msgNo Mapping selected.branch_mapping_no_condition_msgNo Condition selected.branch_mapping_auto_condition_msgAll remaining Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsbranch_mapping_dlg_condition_col_valueRange {0} to {1}branch_mapping_dlg_condition_col_value_exactExact value of {0}pi_mapping_btn_lblSetup Mappingspi_define_monitor_cb_lblDefine in Monitorgroupmatch_dlg_title_lblMap Groups to Branchesmap_comptence_btnMap to competenciescompetences_mapped_to_act_lblCompetenciesbranch_mapping_no_groups_msgNo Groups selected.group_branch_act_lblGroup-basedbranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupsgroupnaming_dlg_title_lblGroup Namingpi_activity_type_branchingBranching Activitypi_branch_typeBranching typepi_group_naming_btn_lblName Groupssequence_act_titleSequenceal_activity_paste_invalidSorry you cannot paste this type of activitychosen_branch_act_lblTeacher Choiceto_condition_start_valuestart valueto_condition_end_valueend valueto_condition_invalid_value_rangeThe {0} cannot be within the range of an existing condition.to_condition_invalid_value_directionThe {0} cannot be greater than the {1}.is_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson as {0}?condmatch_dlg_message_lblThe default branch can be chosen by clicking the "default" checkbox in the Properties area for the desired branch.al_continueContinuebranch_mapping_dlg_condition_linked_msg{0} linked to an existing branch. Do you wish to continue?branch_mapping_dlg_condition_linked_allThere are conditionsbranch_mapping_dlg_condition_linked_singleThis condition isto_condition_untitled_item_lblUntitled {0}redundant_branch_mappings_msgThe design contains unused branch mappings that will be removed. Do you wish to continue?cv_activityProtected_activity_remove_msgTo remove please deselect this activity as the {0}.cv_activityProtected_activity_link_msgThis {0} is linked to a {1}.cv_activityProtected_child_activity_link_msgThis {0} has a child linked to a {1}.optional_act_btnActivityoptional_seq_btnSequenceoptional_seq_btn_tooltipCreate a set of optional sequences.pi_optSequence_remove_msg_titleRemoving sequencespi_optSequence_remove_msgThe sequence(s) to be removed may contain activities that will be deleted. Do you wish to remove these sequences? pi_no_seq_actNo of Sequencespi_activity_type_sequenceSequence Activity ({0})lbl_num_sequences{0} - SequencesactivityDrop_optSequence_error_msgPlease drop the activity onto one of the sequences. cv_invalid_optional_seq_activity_no_branchesRemove any connected branches from {0} before adding it to an optional sequence.ta_iconDrop_optseq_error_msgThere are no sequences enabled on this container.act_seq_lock_chkPlease unlock the Optional Sequences container before assigning this activity to an optional sequence.cv_invalid_optional_seq_activityRemove to and from transitions from {0} before setting it to an optional sequence.cv_invalid_optional_activity_no_branchesRemove any connected branches from {0} before setting it as an optional activity.act_lock_chkPlease unlock the Optional Activity container before assigning this activity as optional.lbl_num_activities{0} - Activitiesto_conditions_dlg_lt_lblLess than or equalsopt_activity_seq_titleOptional Sequencesbranch_mapping_dlg_condition_col_value_minLess than or eq {0}branch_mapping_dlg_condition_col_value_maxGreater than or eq {0}pi_actActivitiespi_seqSequencespi_max_actMax {0}pi_min_actMin {0}pi_runofflineOffline Activitysequence_act_title_new{0} {1}to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblToto_conditions_dlg_range_lblRangeto_conditions_dlg_defin_long_typerangeto_conditions_dlg_defin_bool_typetrue/falseto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNameto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[ Options ]close_mc_tooltipMinimizecv_autosave_err_msgAn error has occurred while trying to auto-save your design. Please increase your Flash Player storage settings.to_conditions_dlg_gte_lblGreater than or equal toto_conditions_dlg_lte_lblLess than or equal togroupnaming_dialog_col_groupName_lblGroup Namews_dlg_insert_btnInsertbranch_mapping_dlg_branch_item_default{0} (default)to_conditions_dlg_title_lblCreate Output Conditionsto_conditions_dlg_defin_item_header_lbl[ Choose Output ] pi_condmatch_btn_lblCreate Conditionspi_group_matching_btn_lblMatch Groups to Branches pi_tool_output_matching_btn_lblMatch Conditions to Branchesto_conditions_dlg_condition_items_update_defaultConditionsYou are about to update your conditions for the selected output definition. This will clear all links to existing branches. Do you wish to continue?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroCannot update as no user defined conditions were found. You may need to set them up in the tool's authoring page(s).to_conditions_dlg_defin_user_defined_typeuser definedgrouping_invalid_with_common_names_msgCannot save the design as the grouping activity '{0}' has more than one group with the same name. Please review the grouping and try again.mnu_file_insertdesignInsert/Merge...preview_btn_tooltip_disabledTo Preview your sequence, you need to save it first, then click Previewcv_invalid_design_savedYour design is not yet valid, but it has been saved, click 'Potential Issues' to see what's wrong.pi_num_learnersNumber of learnerscv_design_insert_warningOnce you insert another sequence, you cannot Cancel this action – your old sequence is automatically saved with the new sequence inserted. To go back to your old sequence, you will need to delete all new sequence activities by hand, and then save. To leave your current sequence unchanged, click Cancel. Otherwise click OK to select a sequence to insert.cv_invalid_trans_diff_branchesCan't create a transition between activities in different branches. cv_invalid_branch_target_to_activityA branch to {0} already exists.cv_invalid_branch_target_from_activityA branch from {0} already exists.cv_invalid_trans_closed_sequenceCannot connect a new transition to a closed sequence.al_cannot_move_to_diff_opt_seqTo move an activity to a different sequence within Optional sequences, first drag the activity out of the Optional Sequence area, and then click and drag it to its new location inside Optional Sequences.al_group_name_invalid_blankGroup names cannot be blank.al_group_name_invalid_existingGroup names must be unique.learner_choice_grp_lblLearner's choicepi_equal_group_sizesEqual group sizescompetence_editor_dlgCompetence Editorcompetence_editor_warning_title_existsA competence with the title {0} already existscompetence_editor_warning_title_blankThe competence title cannot be blankcompetence_editor_warning_competence_mappedThe competence you are attempting to delete is currently mapped to one or more activities. Deleting this competence will remove its mappings. Are you sure you want to proceed?competences_lblCompetenciescompetence_editor_add_competence_btnAddcompetence_def_dlgCompetence Definition Dialogcompetence_mappings_btnCompetence Mappingsmap_gate_conditions_btnMap Gate Conditionsgate_mapping_auto_condition_msgAll remaining conditions will be mapped to the selected gates closed state.gate_openopengate_closedclosedal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.cv_eof_changes_appliedChanges have been successfully applied.mnu_file_import_communityImport from LAMS Community...ws_dlg_date_modified_lblLast modified: {0}ws_save_title_reserved_charsTitle cannot contain special characters: {0}mnu_tools_prefsPreferencesprefs_dlg_titlePreferencesgradebook_output_typeGradebook Outputview_students_before_selectionView learners before selection?arrange_act_btnArrange Activitiesgrp_chk_clear_branch_mappingsWarning: This will clear all existing group to branch mappings linked to this grouping activity, would you like to continue?branch_btn_tooltipCreate branches \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/en_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleParallel Activityopt_activity_titleOptional Activityal_sendSendal_cannot_move_activitySorry you cannot move this activity.cv_activity_copy_invalidSorry! You are not allowed to copy this child activity.cv_activity_cut_invalidSorry! You are not allowed to cut this child activity.act_tool_titleActivities Toolkital_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportcopy_btnCopycv_invalid_trans_targetYou cannot create a transition to this objectcv_show_validationIssuesdb_datasend_confirmThanks for Sending data to serverdelete_btnDeletegate_btnGategroup_btnGroupgrouping_act_titleGroupingld_val_activity_columnActivityld_val_doneDoneld_val_issue_columnIssueld_val_titleValidation issuesmnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_edit_redoRedomnu_edit_undoUndomnu_fileFilemnu_file_closeClosemnu_file_newNewmnu_file_openOpenmnu_file_saveSavemnu_file_saveasSave as...mnu_helpHelpmnu_toolsToolsmnu_tools_optDraw Optionalmnu_tools_transDraw Transitionnew_btnNewnew_confirm_msgAre you sure you want to clear your design on the screen?none_act_lblNoneopen_btnOpenoptional_btnOptionalpaste_btnPasteperm_act_lblPermissionpi_activity_type_gateGate Activitypi_activity_type_groupingGrouping Activitypi_end_offsetClose gatepi_group_typeGrouping typepi_hoursHourspi_lbl_currentgroupCurrent Groupingpi_lbl_descDescriptionpi_lbl_groupGroupingpi_lbl_titleTitlepi_minsMinutespi_optional_titleOptional Activitypi_start_offsetOpen gatepi_titlePropertiesprefix_copyofCopy of prefs_dlg_cancelCancelprefs_dlg_lng_lblLanguageprefs_dlg_okOKprefs_dlg_theme_lblThemepreview_btnPreviewproperty_inspector_titlePropertiesrandom_grp_lblRandomrename_btnRenamesave_btnSavesched_act_lblSchedulesynch_act_lblSynchronisetk_titleActivities Toolkittrans_btnTransitiontrans_dlg_cancelCanceltrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRootws_click_folder_filePlease click on either a Folder to save in, or a Design to overwritews_copy_same_folderThe source and destination folders are the samews_dlg_cancel_buttonCancelws_dlg_filenameFile Namews_dlg_location_buttonLocationws_dlg_ok_buttonOKws_dlg_open_btnOpenws_dlg_properties_buttonPropertiesws_dlg_save_btnSavews_dlg_titleWorkspacews_newfolder_cancelCancelws_newfolder_insPlease enter a the new folder namews_newfolder_okOKws_no_permissionSorry, you do not have permission to write to this resourcews_rename_insPlease enter the new namews_tree_mywspMy Workspacews_view_license_buttonViewsys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errorchosen_grp_lblChoose in Monitoral_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.pi_no_groupingNonews_chk_overwrite_existingThis folder already contains a file named {0}.mnu_file_importImportprefix_copyof_countCopy ({0}) ofws_click_file_openPlease click on a Design to open.cv_gateoptional_hit_chkYou cannot add a gate activity as an optional activity.ws_save_folder_invalidYou cannot save a design in this folder. Please select a valid sub-folder.ws_license_lblLicensews_license_comment_lblAdditional License Informationcv_trans_target_act_missingSecond activity of the Transition is missing.cv_invalid_optional_activityRemove to and from transitions from {0} before setting it as an optional activity.cv_invalid_trans_target_to_activityA Transition to {0} already existcv_invalid_trans_target_from_activityA Transition from {0} already existws_del_confirm_msgAre you sure you want to delete this file / folder?branch_btnBranchflow_btnFlowbin_tooltipDrop an activity on this bin to remove it from the activity sequence.new_btn_tooltipClears current sequence and resets workspace ready for useopen_btn_tooltipShow File Dialogue to open an Activity Sequenceflow_btn_tooltipCreate flow controls activitiesgroup_btn_tooltipCreate a Grouping activitypreview_btn_tooltipPreview your Sequence as learners will see itcopy_btn_tooltipCopy the selected activitypaste_btn_tooltipPaste a copy of the selected activitysave_btn_tooltipQuick save current Activity Sequenceoptional_btn_tooltipCreate a set of optional activities. gate_btn_tooltipCreate a stop pointtrans_btn_tooltipUse this pen to draw transitions between activities (or press CTRL key)pi_daysDaysws_click_virtual_folderCannot use this folder.mnu_file_exitExitcv_design_export_unsavedYou cannot Export an unsaved design.mnu_file_exportExportrefresh_btnRefreshpi_num_groupsNumber of groupscv_design_unsavedThe design on the canvas has changed. Continue without saving?ws_no_file_openNo file found.cv_invalid_trans_circular_sequenceYou are not allowed to have a circular sequencetrans_dlg_nogateNonecv_autosave_rec_msgYou are about to recover the last lost or unsaved design. Your current design will be cleared. Continue?ws_chk_overwrite_resourceWarning: you are about to overwrite this sequence!al_activity_copy_invalidSorry! You are required to select the activity before you click copyapp_chk_langloadThe language data has not been loadedcv_activity_dbclick_readonlyYou are unable to edit tools of a read-only design. Please save a copy of the design and try again.cv_readonly_lblRead Onlylicense_not_selectedNo license currently selected - Please select one al_empty_designSorry, You cannot save an empty designws_dlg_descriptionDescriptioncv_valid_design_savedCongratulations! - Your design is valid and has been savedtool_branch_act_lblLearner's Outputcv_autosave_rec_titleWarningws_tree_orgsMy Groupsmnu_file_recoverRecover...ws_entre_file_namePlease enter the design name, and then click Save button.ws_file_name_emptySorry! You are not allowed to save a design with no file name.ccm_author_activityhelpAuthor Activity Helpccm_open_activitycontentOpen/Edit Activity Contentccm_copy_activityCopy Activityccm_paste_activityPaste Activityccm_piProperty Inspector...mnu_help_helpAuthoring Helpsupport_act_btnSupportsupport_act_btn_tooltipCreate a set of optional support activities.support_act_titleSupport Activitysupport_msg_no_connectionSupport activities cannot be connected to any other activitysupport_msg_invalid_childActivities of type {0} cannot be added as a support activitysupport_msg_max_children_reachedCannot drop activity: {0} here. The support activity permits a maximum of {1} child activities.support_msg_cannot_be_childCannot drop a support activity inside another activity.mnu_help_abtAbout LAMScv_untitled_lblUntitled - 1cv_activity_helpURL_undefinedCannot find help page for {0}cv_close_return_to_ext_srcClose and back to {0}about_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcancel_btn_tooltipReturn to monitor lesson.mnu_file_finishFinishmnu_file_apply_changesApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAn activity must have an input or output transitionvalidation_error_inputTransitionType1This activity has no input transitionvalidation_error_inputTransitionType2No activities are missing their input transition.validation_error_outputTransitionType1This activity has no output transitionvalidation_error_outputTransitionType2No activities are missing their output transition.cv_invalid_design_on_apply_changesCannot apply changes. There are one or more transitions missing.apply_changes_btnApply Changesapply_changes_btn_tooltipApply changes to design and return to monitor lesson.cancel_btnCancelcv_activity_readOnlyActivity cannot be {0}. The Activity is read-only.cv_edit_on_fly_lblLive Editcv_element_readOnly_action_delremovedcv_element_readOnly_action_modmodifiedcv_eof_finish_invalid_msgDesign must be valid in order to finish editing.cv_eof_finish_modified_msgWarning: Your design has been modified. Do you wish to close without saving?cv_trans_readOnlyTransition cannot be {0}. The Transition target is read-only.pi_branch_tool_acts_default--Selection--about_popup_copyright_lbl© 2002-2009 {0} Foundation. branching_act_titleBranchingpi_definelaterDefine in Monitorgroupnaming_dialog_instructions_lblClick on a name to change its value.pi_branch_tool_acts_lblInput (Tool)al_doneDonecondmatch_dlg_cond_lst_lblConditionscondmatch_dlg_title_lblMatch Conditions to Branchespi_defaultBranch_cb_lbldefaultto_conditions_dlg_add_btn_lbl+ Addto_conditions_dlg_clear_all_btn_lblClear Allto_conditions_dlg_remove_item_btn_lbl- Removebranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupbranch_mapping_no_branch_msgNo Branch selected.branch_mapping_no_mapping_msgNo Mapping selected.branch_mapping_no_condition_msgNo Condition selected.branch_mapping_auto_condition_msgAll remaining Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsbranch_mapping_dlg_condition_col_valueRange {0} to {1}branch_mapping_dlg_condition_col_value_exactExact value of {0}pi_mapping_btn_lblSetup Mappingspi_define_monitor_cb_lblDefine in Monitorgroupmatch_dlg_title_lblMap Groups to Branchesmap_comptence_btnMap to competenciescompetences_mapped_to_act_lblCompetenciesbranch_mapping_no_groups_msgNo Groups selected.group_branch_act_lblGroup-basedbranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupsgroupnaming_dlg_title_lblGroup Namingpi_activity_type_branchingBranching Activitypi_branch_typeBranching typepi_group_naming_btn_lblName Groupssequence_act_titleSequenceal_activity_paste_invalidSorry you cannot paste this type of activitychosen_branch_act_lblTeacher Choiceto_condition_start_valuestart valueto_condition_end_valueend valueto_condition_invalid_value_rangeThe {0} cannot be within the range of an existing condition.to_condition_invalid_value_directionThe {0} cannot be greater than the {1}.is_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson as {0}?condmatch_dlg_message_lblThe default branch can be chosen by clicking the "default" checkbox in the Properties area for the desired branch.al_continueContinuebranch_mapping_dlg_condition_linked_msg{0} linked to an existing branch. Do you wish to continue?branch_mapping_dlg_condition_linked_allThere are conditionsbranch_mapping_dlg_condition_linked_singleThis condition isto_condition_untitled_item_lblUntitled {0}redundant_branch_mappings_msgThe design contains unused branch mappings that will be removed. Do you wish to continue?cv_activityProtected_activity_remove_msgTo remove please deselect this activity as the {0}.cv_activityProtected_activity_link_msgThis {0} is linked to a {1}.cv_activityProtected_child_activity_link_msgThis {0} has a child linked to a {1}.optional_act_btnActivityoptional_seq_btnSequenceoptional_seq_btn_tooltipCreate a set of optional sequences.pi_optSequence_remove_msg_titleRemoving sequencespi_optSequence_remove_msgThe sequence(s) to be removed may contain activities that will be deleted. Do you wish to remove these sequences? pi_no_seq_actNo of Sequencespi_activity_type_sequenceSequence Activity ({0})lbl_num_sequences{0} - SequencesactivityDrop_optSequence_error_msgPlease drop the activity onto one of the sequences. cv_invalid_optional_seq_activity_no_branchesRemove any connected branches from {0} before adding it to an optional sequence.ta_iconDrop_optseq_error_msgThere are no sequences enabled on this container.act_seq_lock_chkPlease unlock the Optional Sequences container before assigning this activity to an optional sequence.cv_invalid_optional_seq_activityRemove to and from transitions from {0} before setting it to an optional sequence.cv_invalid_optional_activity_no_branchesRemove any connected branches from {0} before setting it as an optional activity.act_lock_chkPlease unlock the Optional Activity container before assigning this activity as optional.lbl_num_activities{0} - Activitiesto_conditions_dlg_lt_lblLess than or equalsopt_activity_seq_titleOptional Sequencesbranch_mapping_dlg_condition_col_value_minLess than or eq {0}branch_mapping_dlg_condition_col_value_maxGreater than or eq {0}pi_actActivitiespi_seqSequencespi_max_actMax {0}pi_min_actMin {0}pi_runofflineOffline Activitysequence_act_title_new{0} {1}to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblToto_conditions_dlg_range_lblRangeto_conditions_dlg_defin_long_typerangeto_conditions_dlg_defin_bool_typetrue/falseto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNameto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[ Options ]close_mc_tooltipMinimizecv_autosave_err_msgAn error has occurred while trying to auto-save your design. Please increase your Flash Player storage settings.to_conditions_dlg_gte_lblGreater than or equal toto_conditions_dlg_lte_lblLess than or equal togroupnaming_dialog_col_groupName_lblGroup Namews_dlg_insert_btnInsertbranch_mapping_dlg_branch_item_default{0} (default)to_conditions_dlg_title_lblCreate Output Conditionsto_conditions_dlg_defin_item_header_lbl[ Choose Output ] pi_condmatch_btn_lblCreate Conditionspi_group_matching_btn_lblMatch Groups to Branches pi_tool_output_matching_btn_lblMatch Conditions to Branchesto_conditions_dlg_condition_items_update_defaultConditionsYou are about to update your conditions for the selected output definition. This will clear all links to existing branches. Do you wish to continue?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroCannot update as no user defined conditions were found. You may need to set them up in the tool's authoring page(s).to_conditions_dlg_defin_user_defined_typeuser definedgrouping_invalid_with_common_names_msgCannot save the design as the grouping activity '{0}' has more than one group with the same name. Please review the grouping and try again.mnu_file_insertdesignInsert/Merge...preview_btn_tooltip_disabledTo Preview your sequence, you need to save it first, then click Previewcv_invalid_design_savedYour design is not yet valid, but it has been saved, click 'Potential Issues' to see what's wrong.pi_num_learnersNumber of learnerscv_design_insert_warningOnce you insert another sequence, you cannot Cancel this action – your old sequence is automatically saved with the new sequence inserted. To go back to your old sequence, you will need to delete all new sequence activities by hand, and then save. To leave your current sequence unchanged, click Cancel. Otherwise click OK to select a sequence to insert.cv_invalid_trans_diff_branchesCan't create a transition between activities in different branches. cv_invalid_branch_target_to_activityA branch to {0} already exists.cv_invalid_branch_target_from_activityA branch from {0} already exists.cv_invalid_trans_closed_sequenceCannot connect a new transition to a closed sequence.al_cannot_move_to_diff_opt_seqTo move an activity to a different sequence within Optional sequences, first drag the activity out of the Optional Sequence area, and then click and drag it to its new location inside Optional Sequences.al_group_name_invalid_blankGroup names cannot be blank.al_group_name_invalid_existingGroup names must be unique.learner_choice_grp_lblLearner's choicepi_equal_group_sizesEqual group sizescompetence_editor_dlgCompetence Editorcompetence_editor_warning_title_existsA competence with the title {0} already existscompetence_editor_warning_title_blankThe competence title cannot be blankcompetence_editor_warning_competence_mappedThe competence you are attempting to delete is currently mapped to one or more activities. Deleting this competence will remove its mappings. Are you sure you want to proceed?competences_lblCompetenciescompetence_editor_add_competence_btnAddcompetence_def_dlgCompetence Definition Dialogcompetence_mappings_btnCompetence Mappingsmap_gate_conditions_btnMap Gate Conditionsgate_mapping_auto_condition_msgAll remaining conditions will be mapped to the selected gates closed state.gate_openopengate_closedclosedal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.cv_eof_changes_appliedChanges have been successfully applied.mnu_file_import_communityImport from LAMS Community...ws_dlg_date_modified_lblLast modified: {0}ws_save_title_reserved_charsTitle cannot contain special characters: {0}mnu_tools_prefsPreferencesprefs_dlg_titlePreferencesgradebook_output_typeGradebook Outputview_students_before_selectionView learners before selection?arrange_act_btnArrange Activitiesgrp_chk_clear_branch_mappingsWarning: This will clear all existing group to branch mappings linked to this grouping activity, would you like to continue?branch_btn_tooltipCreate branches \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/es_ES_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleActividad Paralelaopt_activity_titleActividad Opcionalbranch_mapping_dlg_condition_col_value_maxMayor o igual que {0}al_sendEnviaral_cannot_move_activityNo se puede mover esta actividadal_activity_openContent_invalidAtención: debe seleccionar la actividad previamente para poder editar su contenido. cv_activity_copy_invalidAtención: No se pueden copiar actividades que esten dentro de otra actividad (opcional o paralela)cv_activity_cut_invalidAtención: No se puede pegar actividades que sean parte de otra actividad (opcional o paralela)ws_save_folder_invalidNo se puede guardar esta secuencia en esta carpetar. Por favor seleccione un subdirectorio válido. prefix_copyof_countCopia ({0}) de cv_gateoptional_hit_chkNo se puede agregar una actividad puerta a una actividad opcional.ws_license_lblLicenciaws_license_comment_lblInformación adicionalcv_invalid_optional_activityNo se puede insertar actividades con transiciónes dentro de una actividad opcionalcv_invalid_trans_target_from_activityLa transición de {0} ya existe.cv_invalid_trans_target_to_activityLa transición hacia {0} ya existews_entre_file_nameEntre un nombre para el diseño y luego presione el botón de Guardar.cv_autosave_rec_msgEstá a punto de recuperar un diseño perdido o que no ha sido guardado. El diseño actual será borrado. ¿Desea continuar?condmatch_dlg_title_lblCondiciones de unión para las ramascv_trans_target_act_missingLa transición debe terminar en otra actividadws_del_confirm_msg¿Esta seguro que desea borrar este archivo o folder?branch_btnRamificaciónflow_btnFlujonew_btn_tooltipLimpiar la pantalla y comenzar un nuevo diseñoopen_btn_tooltipAbrir un diseño save_btn_tooltipGuardar diseñocopy_btn_tooltipCopiar la actividad seleccionadapaste_btn_tooltipPegar la actividad copiadatrans_btn_tooltipDibujar transiciones entre actividades (alternativamente use tecla CTRL)optional_btn_tooltipCrear una actividad opcionalgate_btn_tooltipCrear un punto de Stopflow_btn_tooltipActividades de control de flujogroup_btn_tooltipCrear Actividad de Grupospreview_btn_tooltipVista preliminar de diseño como lo verán los estudiantesbin_tooltipArrastre actividades que desea desechar a esta papelerapi_daysDiasact_tool_titleLibrería de Actividadesal_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okAceptarapp_chk_themeloadLa plantilla de diseño no ha podido ser cargadaapp_fail_continueLa aplicación ha dado un error y no puede continuar. Por favor contacte con soporte técnicocopy_btnCopiarcv_invalid_trans_targetNo se puede crear una transición a esta actividadcv_show_validationProblemasdb_datasend_confirmGracias por mandar información al servidordelete_btnBorrargate_btnPuertagroup_btnGrupogrouping_act_titleGruposld_val_activity_columnActividadld_val_doneTerminadold_val_issue_columnProblemald_val_titleProblemas de Validaciónmnu_editEditarmnu_edit_copyCopiarmnu_edit_cutCortarmnu_edit_pastePegarmnu_edit_redoRe-hacermnu_edit_undoDeshacermnu_fileArchivomnu_file_closeCerrarmnu_file_newNuevomnu_file_openAbrirmnu_file_saveGuardarmnu_file_saveasGuardar como...mnu_helpAyudamnu_toolsHerramientasmnu_tools_optActividades Opcionalesmnu_tools_prefsPreferenciasmnu_tools_transTransicionesnew_btnNuevonew_confirm_msg¿Esta seguro que desea eliminar el diseño en pantalla?none_act_lblNingunoopen_btnAbriroptional_btnOpcionalpaste_btnPegarperm_act_lblPermisopi_activity_type_gateActividad de Puertapi_activity_type_groupingActividad en Grupospi_end_offsetCerrar Puertapi_group_typeTipo de Grupopi_hoursHoraspi_lbl_currentgroupGrupos actualespi_lbl_descDescripciónpi_lbl_groupGrupospi_lbl_titleTítulopi_max_actMáximo número de actividadespi_min_actMínimo número de actividadespi_minsMinutospi_num_learnersNúmero de Estudiantespi_optional_titleActividades Opcionalespi_start_offsetAbrir Puertapi_titlePropiedadesprefix_copyofCopia deprefs_dlg_cancelCancelarprefs_dlg_lng_lblLenguajeprefs_dlg_okAceptarprefs_dlg_theme_lblTemaprefs_dlg_titlePreferenciaspreview_btnVista previaproperty_inspector_titlePropiedadesrandom_grp_lblAleatoriorename_btnRenombrarsave_btnGuardarsched_act_lblPor tiemposynch_act_lblSincronizadotk_titleLibrería de Actividadestrans_btnTransicióntrans_dlg_cancelCancelartrans_dlg_gateSincronizacióntrans_dlg_gatetypecmbTipotrans_dlg_okAceptartrans_dlg_titleTransiciónws_RootRaízws_click_folder_filePor favor pulse sobre un directorio o sobre un archivo para sobreescribirws_copy_same_folderLa carpeta de origen y destino es la mismaws_dlg_cancel_buttonCancelarws_dlg_filenameNombre de Archivows_dlg_location_buttonLugarws_dlg_ok_buttonAceptarws_dlg_open_btnAbrirws_dlg_properties_buttonPropiedadesws_dlg_save_btnGuardarws_dlg_titleEspacio de Trabajows_newfolder_cancelCancelarws_newfolder_insNuevo nombre de carpetaws_newfolder_okAceptarws_no_permissionNo tiene permiso para escribir en esta carpetaws_rename_insNuevo nombrews_tree_mywspMi Espacio de Trabajows_view_license_buttonMás Informaciónsys_error_msg_startHa occurido un error de sistema: sys_error_msg_finishNecesita reiniciar LAMS Autor. ¿Desea guardar la información del fallo para ayudar a los desarrolladores a solucionar el problema?sys_errorError de sistemamnu_file_exitSalirpi_num_groupsNúmero de Gruposcv_design_unsavedSu diseño ha cambiado. ¿Desea continuar sin salvar los cambios?cv_design_export_unsavedNo se puede exportar un diseño que no ha sido salvado. mnu_file_exportExportarmnu_file_importImportarws_no_file_openNo se encontró archivows_chk_overwrite_existingEsta carpeta ya contiene un archivo llamado {0}.ws_click_virtual_folderNo se puede utilizar esta carpetaact_lock_chkPor favor, desbloque la Actividad Opcional antes de asignar esta actividadact_seq_lock_chkDesbloqué el contenedor de Secuencia Opcional antes de asignar o añadir ws_chk_overwrite_resourceAtención: esta por sobreescribir un archivotrans_dlg_nogateNingunacv_invalid_design_savedEl diseño se ha guardado aunque aún no es valido. Para más información presione el botón "Problemas"app_chk_langloadEl diccionario de lenguaje no ha podido ser cargadosupport_msg_max_children_reachedNo puede poner actividad {0} aqui. Las actividades de soporte permiten un mínimo de {1} actividadessupport_act_btnSoportesupport_act_btn_tooltipCrear actividades de soporte opcionalessupport_act_titleActividad de Soportesupport_msg_no_connectionLas actividades de soporte no pueden formar parte de la secuenciasupport_msg_invalid_childLas actividades de tipo {0} no se pueden incluir como actividades de soportesupport_msg_cannot_be_childNo se puede poner una actividad soporte dentro de otra actividad.pi_no_groupingNingunocv_valid_design_savedSu diseño es válido y ha sido guardadocv_activity_dbclick_readonlyNo se puede editar este diseño ya que ha sido marcado como solo lectura. Si desea efectuar cambios, presione el botón de Guardar para crear una copia.cv_readonly_lblSolo Lecturaal_empty_designNo se puede guardar diseños sin actividad alguna.ws_dlg_descriptionDescripcióncv_autosave_rec_titleAtención!ws_tree_orgsMis Gruposmnu_file_recoverRecuperar...ws_file_name_emptyAtención: No se puede guardar un diseño sin nombre.ccm_copy_activityCopiar Actividadccm_paste_activityPegar Actividadccm_piPropiedades...ccm_author_activityhelpAyuda para esta actividadccm_open_activitycontentAbrir/Editar el Contenido de Actividadmnu_help_abtAcerca de LAMSmnu_help_helpAyuda para Diseñocv_untitled_lblSin títulocv_activity_helpURL_undefinedNo se ha podido encontrar la página de ayuda para {0}cv_close_return_to_ext_srcCerrar y volver a {0}cv_eof_changes_appliedLos cambios han sido guardados.mnu_file_apply_changesAñadir Cambiosvalidation_error_transitionNoActivityBeforeOrAfterLa transición debe tener una actividad antes y después de la mismavalidation_error_activityWithNoTransitionUna actividad debe tener una transición de entrada y otra de salida.validation_error_inputTransitionType1Esta actividad no tiene transición de entradavalidation_error_inputTransitionType2Todas las actividades tienen transiciones de entrada.validation_error_outputTransitionType2Todas las actividades tienen transiciones de salida.cv_invalid_design_on_apply_changesNo se pueden añadir los cambios. Falta por lo menos una transición.apply_changes_btnAñadir Cambioscancel_btnCancelarcv_activity_readOnlyLa actividad no se puede {0}. Esta actividad es de solo lectura.cv_edit_on_fly_lblEdición en Vivocv_element_readOnly_action_delborrarcv_element_readOnly_action_modmodificarcv_eof_finish_invalid_msgSu diseño debe ser válido para poder aplicar modificaciones.cv_eof_finish_modified_msgAtención: Su diseño ha sido modificado. ¿Desea descartar los cambios?cv_trans_readOnlyLa transición no se puede {0}. Esta transición es de solo lectura.mnu_file_finishTerminarabout_popup_title_lblAcerca de {0}about_popup_version_lblVersiónabout_popup_trademark_lbl{0} is a marca registrada de {0} Foundation ( {1} ).about_popup_license_lblEste programa es de software libre. Usted puede distribuirlo y/o modificarlo bajo los terminos de la GNU General Public License versión 2 como está publicada por la Free Software Foudantion. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcompetence_def_dlgDefinición de Competenciaspi_branch_tool_acts_default--Seleccionar--cv_invalid_trans_diff_branchesNo se puede crear transiciones entre actividades en distintas ramaslicense_not_selectedSeleccione una licencia para su diseñocv_invalid_branch_target_to_activityYa existe una rama hacia {0}cv_invalid_branch_target_from_activityYa existe una rama desde {0}cv_invalid_trans_closed_sequenceNo se puede conectar una nueva transición para una secuencia cerrada.al_group_name_invalid_blankNo se pueden dejar nombres de grupos en blanco.cv_invalid_optional_activity_no_branchesRemover toda las transiciones de {0} antes de agregar a la Secuencia Opcional.al_cannot_move_to_diff_opt_seqPara mover una actividad a otra secuencia dentro de Secuencias Opcionales, primero extraiga la actividad afuera de la Secuencia Opcional y luego vuelva a poner la misma en la nueva posición.al_group_name_invalid_existingCada grupo debe tener un nombre único.branching_act_titleRamificaciónal_doneListocondmatch_dlg_cond_lst_lblCondicionesto_conditions_dlg_add_btn_lbl+ Añadirto_conditions_dlg_remove_item_btn_lbl- Removerbranch_mapping_dlg_condition_col_lblCondiciónbranch_mapping_dlg_group_col_lblGrupobranch_mapping_no_condition_msgNo se ha seleccionado una condiciónbranch_mapping_dlg_condition_col_valueRango {0} hasta {1} branch_mapping_no_groups_msgNo se han seleccionado gruposgroupmatch_dlg_groups_lst_lblGruposgroupnaming_dlg_title_lblNombrar Grupospi_group_naming_btn_lblNombrar Grupossequence_act_titleSecuenciacv_activityProtected_activity_remove_msgPara remover esta actividad, borre esta actividad {0}.cv_activityProtected_activity_link_msgLa actividad {0} está asociada a {1}.cv_activityProtected_child_activity_link_msgEsta actividad {0} tiene una subactividad asociada a {1}.group_branch_act_lblBasado en grupopi_mapping_btn_lblAsignar ramificaciones a...al_activity_copy_invalidAtención: Debe seleccionar la actividad antes de usar el botón de copiar o pegar.groupnaming_dialog_instructions_lblTeclea sobre un nombre para modificar su valorpi_branch_tool_acts_lblEntrada (Herramienta)branch_mapping_no_branch_msgNo se ha seleccionado ramificaciónpi_defaultBranch_cb_lblpor defectoto_conditions_dlg_clear_all_btn_lblLimpiar todochosen_branch_act_lblElección del profesor/ato_condition_end_valuevalor finalto_condition_start_valuevalor de iniciois_remove_warning_msgPELIGRO: La lección va a ser anulada. ¿Quiere que esta lección aparezca como {0}?to_condition_invalid_value_directionEl {0} no puede ser mayor que {1}.to_condition_invalid_value_rangeEl {0} no puede estar dentro del rango de una condición existente.branch_mapping_dlg_branch_col_lblRamabranch_mapping_dlg_branches_lst_lblRamasbranch_mapping_dlg_condition_col_value_exactValor exacto de {0}pi_branch_typeTipo de ramificaciónpi_activity_type_branchingActividad de ramificaciónal_continueContinuarbranch_mapping_dlg_condition_linked_msg{0} conectado con una rama existente. ¿Desea continuar?branch_mapping_dlg_condition_linked_allHay condicionesbranch_mapping_dlg_condition_linked_singleLa condición esto_condition_untitled_item_lblSin nombre {0}branch_mapping_dlg_match_dgd_lblAsignar raminifacionesgroupmatch_dlg_title_lblAsignar grupos a ramificacionescompetence_editor_warning_title_existsUna competencia con el título {0} ya existeoptional_act_btnActividadoptional_seq_btn_tooltipCrear un conjunto de secuencias opcionales.competence_editor_warning_title_blankEl título de la competencia no puede ser dejado en blancocompetence_editor_warning_competence_mappedLa competencia que ha intentado borrar esta conectado a una actividad. Al borrar el objetivo se borrará tambien la conección a la actividad. ¿Esta seguro que quiere borrarla?competence_editor_dlgEditor de Competenciasclose_mc_tooltipMInimizarcompetence_mappings_btnConección de Competencias y Actividadesal_activity_view_competence_mappings_invalidAsegúrese que tiene una actividad seleccionada para poder ver sus competenciaslbl_num_activities{0} - Actividadespi_optSequence_remove_msg_titleRemoviendo secuenciasbranch_mapping_auto_condition_msgTodas las condiciones serán asignadas a la primera rama por defectopi_no_seq_actNúmero de secuenciaslbl_num_sequences{0} - SecuenciasactivityDrop_optSequence_error_msgDeposite actividades dentro de cada secuenciacv_invalid_optional_seq_activity_no_branchesRemover cualquier conexión entre ramas desde {0} antes de agregarla a una secuencia opcional.ta_iconDrop_optseq_error_msgNo hay secuencias habilitadas en este contenedor.opt_activity_seq_titleSecuencias opcionalesto_conditions_dlg_lt_lblMenor o igual quebranch_mapping_dlg_condition_col_value_minMenor o igual que {0}pi_actActividadespi_seqSecuenciascv_invalid_optional_seq_activityRemover todas las transiciones de {0} antes de agregar a la Secuecia Opcional.about_popup_copyright_lbl© 2002-2009 Fundación {0}.to_conditions_dlg_defin_long_typerangoto_conditions_dlg_defin_bool_typeVerdadero/Falsoto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNombreto_conditions_dlg_condition_items_value_col_lblCondiciónto_conditions_dlg_options_item_header_lbl[ Opciones ]branch_mapping_no_mapping_msgNo se ha asignado a rama sequence_act_title_new{0} {1}redundant_branch_mappings_msgEste diseño tiene asignaciones a ramas que no han sido usados y serán elimados. ¿Desea Continuar?cv_autosave_err_msgHa ocurrido un error en el auto-guardado de su diseño. Por favor agrege más memoria de almacenaje en su Flash Player.to_conditions_dlg_range_lblEntre un rangoto_conditions_dlg_gte_lblMayor o igual...to_conditions_dlg_lte_lblMenor o igual...optional_seq_btnSecuenciaspi_activity_type_sequenceSecuencia ({0})groupnaming_dialog_col_groupName_lblGrupospi_define_monitor_cb_lblDefinir en Seguimientoapply_changes_btn_tooltipAñadir cambios a su diseño y volver a Seguimientocancel_btn_tooltipVolver a Seguimientopi_definelaterDefinir en Seguimientows_click_file_openPor favor, seleccione la secuencia que usted desea abrir. cv_invalid_trans_circular_sequenceSecuencias circulares no estan permitidas. pi_optSequence_remove_msgLas secuencias a ser removidas pueden contener actividades que serán borradas. ¿Desea remover estas secuencias?to_conditions_dlg_from_lblDesdeto_conditions_dlg_to_lblHastamnu_file_insertdesignInsertar...ws_dlg_insert_btnInsertarchosen_grp_lblSelección en seguimientobranch_mapping_dlg_branch_item_default{0} (por defecto)pi_runofflineActividad Offlineto_conditions_dlg_title_lblCreación de Condiciones to_conditions_dlg_defin_item_header_lbl[ Elija Resultado a usar ]tool_branch_act_lblResultados de actividades previaspi_condmatch_btn_lblEspecificar Condicionespi_group_matching_btn_lblAsignar Grupos a Ramaspi_tool_output_matching_btn_lblAsignar Condiciones a Ramasrefresh_btnActualizarto_conditions_dlg_condition_items_update_defaultConditionsUsted esta apunto de actualizar la lista de condiciones. Realizar esta operación quitará las asignaciones entre las condiciones y las ramas. ¿Esta seguro que desea continuar?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNo se puede actualizar ya que no hay condiciones de usuarios definidas. Usted puede definir estas condiciones en cada actividad.to_conditions_dlg_defin_user_defined_typedefinida por el usuariogrouping_invalid_with_common_names_msgNo se ha podido guardar su diseño dado que la actividad de grupo '{0}' tiene dos o más grupos con el mismo nombre. Por favor, revise el nombre de los grupos de esta actividad y una vez cambiados intente guardar su diseño nuevamente.preview_btn_tooltip_disabledPara activar la vista previa, guarde primero su diseñoal_activity_paste_invalidNo se puede copiar este tipo de actividadcondmatch_dlg_message_lblLa rama "por defecto" se puede seleccionar usando la opción en el Inspector de propiedades.cv_design_insert_warningAl insertar una secuencia en su actual, se actualizara su diseño. Si desea deshacer los cambios, solo tiene que eliminar las actividades añadidas ¿Desea continuar?learner_choice_grp_lblA elección del estudiantepi_equal_group_sizesGrupos del mismo tamañomap_comptence_btnConectar objetivoscompetences_lblObjectivoscompetence_editor_add_competence_btnAgregarcompetences_mapped_to_act_lblObjetivosmap_gate_conditions_btnAsignar condiciones a puertasgate_mapping_auto_condition_msgTodas las demás condiciones seran asignadas a las puertas en estado cerrado.gate_openabrirgate_closedcerradomnu_file_import_communityImportar secuencias de Comunidad LAMS...ws_dlg_date_modified_lblÚltimo cambio: {0} ws_save_title_reserved_charsEl nombre de la secuencia no puede contener estos caracteres: {0}view_students_before_selectionPermitir ver los estudiantes en cada grupo antes de elegir grupoarrange_act_btnAcomodar actividadesvalidation_error_outputTransitionType1Esta actividad no tiene transición de salidagradebook_output_typeNota para Calificacionesgrp_chk_clear_branch_mappingsAtención: Esta acción limpiara la asociación de grupos y ramificaciones, ¿Está seguro que desea continuar?branch_btn_tooltipCrear ramificaciones \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/fr_FR_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_design_insert_warningVous ne pourrez pas annuler l'insertion d'une autre séquence. L'ancienne séquence sera automatiquement sauvegardée et elle contiendra la nouvelle séquence. Pour revenir à votre ancienne séquence, vous devrez supprimer manuellement toutes les nouvelles séquences et ensuite sauver. Pour ne pas modifier la séquence actuelle, cliquez sur "annuler". Sinon cliquez sur OK pour sélectionner une séquence à insérer.pi_optSequence_remove_msgLa/les séquence(s) à supprimer peut contenir des activités qui seront effacées. Voulez-vous vraiment supprimer ces séquences?delete_btnSupprimerld_val_activity_columnActivitéws_del_confirm_msgVoulez-vous vraiment supprimer ce fichier / dossier?competence_editor_warning_competence_mappedLa compétence que vous tentez de supprimer est liée à une ou plusieurs activités. Le supprimer provoquera la perte de ces liens. Etes-vous sûr de vouloir continuer?cv_trans_target_act_missingLa 2ème activité de la transition manque.paste_btn_tooltipColler une copie de l'activité sélectionnéepi_parallel_titleActivité parallèleal_cannot_move_activityCette activité de ne peut pas être déplacée.al_activity_openContent_invalidVous devez sélectionner l'activité avant de pouvoir l'ouvrir ou la modifier.grp_chk_clear_branch_mappingsCela effacera tous les mappages groupes vers branches liées à cette activité de groupement, souhaitez-vous continuer?cv_gateoptional_hit_chkImpossible d'ajouter une activité de liaison comme activité optionnelle.bin_tooltipDéposer une activité dans cette poubelle pour la retirer de la séquence.cv_invalid_optional_activityEnlever les transitions de et vers {0} avant de la paramétrer comme activité optionnelleal_cannot_move_to_diff_opt_seqPour déplacer une activité vers une autre séquence optionnelle, tirez l'activité hors de la zone optionnelle. Ensuite cliquer et tirer vers sa nouvelle position dans les séquences optionnelles.pi_optional_titleActivité optionnelleccm_author_activityhelpAide Activité d'auteurgroup_btn_tooltipCréer une activité de regroupementcopy_btn_tooltipCopier l'activité sélectionnéeal_activity_copy_invalidVous devez sélectionner l'activité avant de cliquer sur le bouton Copieropt_activity_titleActivité optionnelleccm_copy_activityCopier l'activitéccm_open_activitycontentOuvrir/modifier le contenu de l'activitéccm_paste_activityColler l'activitésupport_msg_no_connectionDes activités de soutien ne peuvent être connectées à aucune autre activitésupport_msg_invalid_childDes activités de type {0} ne peuvent pas être ajoutées comme une activité de soutiensupport_msg_cannot_be_childImpossible d'insérer une activité de soutien dans une autre activité.validation_error_transitionNoActivityBeforeOrAfterLa transition doit être précédée ou précéder une activité.validation_error_activityWithNoTransitionUne activité doit être liée à une transition entrante ou sortante.validation_error_inputTransitionType1Cette activité n'a pas de transition entrantevalidation_error_outputTransitionType1Cette activité n'a pas de transition sortantepi_activity_type_gateActivité porte logiquecv_activity_readOnlyCette activité ne peut être {0}. La cible est en lecture seule.pi_activity_type_branchingActivité pour schéma en arbreal_activity_paste_invalidDésolé, vous ne pouvez pas coller ce type d'activitécv_activityProtected_activity_remove_msgPour effacer cette activité, déselectionnez la en tant que {0}optional_act_btnActivitépi_activity_type_sequenceSéquence d'activité ({0}) activityDrop_optSequence_error_msgVeuillez placer cette activité dans l'une des séquences.act_seq_lock_chkVeuillez dévérouiller le container des séquences optionelles avant d'assigner cette activité à une séquence optionelle.cv_invalid_optional_activity_no_branchesEffacez toutes les branches connectées de {0} avant de la configurer comme une séquence optionelle.act_lock_chkVeuillez dévérouiller le conteneur d'activités optionnelles avant de désigner cette activité comme optionnellepi_activity_type_groupingActivité de regroupementsupport_msg_max_children_reachedImpossible d'insérer l'activité: (0) ici. L'activité de soutien permet à un maximum de {1} activités enfants.view_students_before_selectionAfficher les apprenants avant la sélection?preview_btn_tooltip_disabledPour prévisulaiser votre séquence, veuillez l'enregistrer, ensuite cliquer sur Prévisualisationgrouping_invalid_with_common_names_msgLa séquence (design) ne peut pas être enregistrée. L'activité de regroupement '{0}' possède plus qu'un groupe ayant le même nom. Veuillez revoir le regroupement et essayez de nouveauws_view_license_buttonAfficherpreview_btn_tooltipPrévisualiser votre séquence comme les apprenants la verrontal_activity_view_competence_mappings_invalidVeuillez sélectionner une activité avant de demander à voir les compétences qui lui sont associéespreview_btnPrévisualisationapp_fail_continueL'application ne peut pas continuer. Veuillez contacter le supportsupport_act_btnSupportsupport_act_btn_tooltipCréer un ensemble d'activités de soutien en option.support_act_titleActivité de soutienpi_runofflineActivité hors-lignecompetence_editor_dlgEditeur de compétencesmnu_editModifiercv_eof_finish_invalid_msgLe design doit être valide pour terminer l'édition.cv_edit_on_fly_lblModifier en directws_file_name_emptyIl n'est pas permis d'enregistrer une séquence sans nom de fichier.cv_activity_copy_invalidCopier cette activité enfant n'est pas possible.cv_activity_cut_invalidCouper cette activité enfant n'est pas possible.cv_invalid_trans_circular_sequenceIl n'est pas possible de faire une séquence circulairebranch_mapping_dlg_match_dgd_lblMise en correspondance (mappage)pi_mapping_btn_lblRéglages des mises en correspondance (mappage)redundant_branch_mappings_msgCe design contient des embranchements inutilisés qui seront effacés. Voulez-vous continuer?act_tool_titleBoîte à outilsal_alertAlerteal_cancelAnnuleral_confirmConfirmeral_okOKapp_chk_langloadLes données du choix de langue n'ont pas été chargéesapp_chk_themeloadLes données du choix de thème n'ont pas été chargéeschosen_grp_lblChoisir dans l'outil de suivicopy_btnCopiercv_invalid_trans_targetVous ne pouvez pas créer une transition vers cet objetcv_show_validationProblèmesdb_datasend_confirmMerci d'avoir transmis les données au serveurgate_btnPortegroup_btnGroupegrouping_act_titleRegroupementld_val_doneTerminéld_val_issue_columnProblèmeld_val_titleProblèmes de validationlicense_not_selectedVeuillez sélectionner une licence pour cette séquencemnu_edit_copyCopiermnu_edit_cutCoupermnu_edit_pasteCollermnu_edit_redoRépétermnu_edit_undoAnnulermnu_file_closeFermermnu_file_newNouveaumnu_file_openOuvrirmnu_helpAidemnu_help_abtA propos de LAMSmnu_toolsOutilsmnu_tools_optDessiner une optionmnu_tools_prefsPréférencesmnu_tools_transDessiner une transitionnew_btnNouveaunew_confirm_msgVoulez-vous vraiment effacer la séquence présente à l'écran?none_act_lblAucuneopen_btnOuvriroptional_btnOptionnelpaste_btnCollerperm_act_lblPermissionpi_definelaterDéfinir dans l'outil de suivipi_end_offsetFermer porte logiquepi_group_typeType de regroupementpi_hoursHeurespi_lbl_currentgroupRegroupement actuelpi_lbl_descDescriptionpi_lbl_groupRegroupementpi_lbl_titleTitrepi_max_actMax {0}pi_min_actMin {0}pi_minsMinutespi_no_groupingAucunpi_start_offsetOuvrir porte logiquepi_titlePropriétésprefix_copyofCopie deprefs_dlg_cancelAbandonnerprefs_dlg_lng_lblLangueprefs_dlg_okOKprefs_dlg_theme_lblThèmeprefs_dlg_titlePréférencesproperty_inspector_titlePropriétésrandom_grp_lblAléatoirerename_btnRenommersched_act_lblCalendriersynch_act_lblSynchronisertk_titleBoîte à outilstrans_btnTransitiontrans_dlg_cancelAbandonnertrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRacinews_chk_overwrite_resourceAttention, vous allez écraser une séquence existantews_copy_same_folderLe Dossier source est le même que celui de destinationws_dlg_cancel_buttonAbandonnerws_dlg_location_buttonEmplacementws_dlg_ok_buttonOKws_dlg_open_btnOuvrirws_dlg_properties_buttonPropriétésws_dlg_titleEspace de travailws_newfolder_cancelAbandonnerws_newfolder_insVeuillez entrer un nouveau nom de fichierws_newfolder_okOKws_no_permissionDésolé, vous n'êtes pas autorisé à faire cette opérationws_rename_insVeuillez entrer le nouveau nomws_tree_mywspMon espace de travailws_tree_orgsMes groupessys_error_msg_startL'erreur système suivante s'est produite:sys_errorErreur systèmelbl_num_activities{0} - Activitésal_sendEnvoyerprefix_copyof_countCopie {0} dews_click_file_openVeuillez cliquer sur une Séquence pour ouvrir.ws_license_lblLicencews_license_comment_lblLicence - informations complémentairescv_invalid_trans_target_from_activityIl existe déjà une transition depuis {0}cv_invalid_trans_target_to_activityIl existe déjà une transtion vers {0}branch_btnBrancheflow_btnFluxmnu_file_importImportermnu_file_exportExporterws_click_virtual_folderCe dossier ne peut pas être utilisé.mnu_file_exitSortirnew_btn_tooltipEfface la séquence courante et réinitialise l'espace de travailtrans_btn_tooltipUtiliser le crayon pour tracer des transitions entre les activités (ou pressez la touche CTRL)optional_btn_tooltipCréer un groupe d'activités optionnellesgate_btn_tooltipCréer un point d'arrêtbranch_btn_tooltipCréer une branche (disponible dans LAMS v 2.1)flow_btn_tooltipCréer les contrôles de flux d'activitéscv_readonly_lblLecture seulecv_autosave_rec_titleAttentionmnu_file_recoverRécupérer...al_group_name_invalid_blankUn nom de groupe ne peut pas rester videcv_activity_helpURL_undefinedLa page d'aide pour {0} n'a pas été trouvéecv_untitled_lblSans titre - 1al_group_name_invalid_existingUn nom de groupe doit être uniquelearner_choice_grp_lblChoix de l'étudiantpi_equal_group_sizesGroupes de taille égaleccm_piInspecteur de propriétéscompetences_lblCompétencesws_dlg_descriptionDescriptiontrans_dlg_nogateAucunpi_daysJourscv_close_return_to_ext_srcFermez et revenez à {0}cv_eof_changes_appliedchangements appliqués avec succèsmnu_file_apply_changesAppliquer les changementscompetence_editor_add_competence_btnAjoutercompetence_def_dlgDialogue de définition de compétencecompetence_editor_warning_title_existsUne compétence avec l'intitulé {0} existe déjàvalidation_error_inputTransitionType2Aucune activité ne requièrent encore une transition entrante.competence_editor_warning_title_blankL'intitulé d'une compétence ne peut être videvalidation_error_outputTransitionType2Aucune activité ne requièrent encore une transition sortante.cv_invalid_design_on_apply_changesLes changements ne peuvent être appliqués. Il manque une ou plusieurs transitions.apply_changes_btnAppliquer les changementsapply_changes_btn_tooltipAppliquer les changements de design et retourner à la supervision de la leçon.cancel_btnAnnulermap_comptence_btnAssocier avec des compétencescompetences_mapped_to_act_lblCompétencesmap_gate_conditions_btnAssocier des conditions de la portegate_mapping_auto_condition_msgToutes les conditions restantes seront associées avec l'état fermé (des portes choisies)cv_element_readOnly_action_deleffacécv_element_readOnly_action_modmodifiégate_openOuvert cv_trans_readOnlyLa transition ne peut être {0}. La cible est en lecture seule.cancel_btn_tooltipRetourner à la supervision de la leçon.mnu_file_finishTerminerabout_popup_title_lblSujet:about_popup_version_lblVersionabout_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ).about_popup_license_lblCe programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier, selon les termes de la version 2 de la licence générale publique GNU tel qu'elle est publiée par la "Free Software Foundation".stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_titleSchéma en arbregate_closedFermégroupnaming_dialog_instructions_lblCliquez sur un groupe pour le renommer.pi_branch_tool_acts_lblBouton (outils)pi_condmatch_btn_lblCréez des conditionsto_conditions_dlg_title_lblCréer des conditions sortantesal_doneTerminécondmatch_dlg_cond_lst_lblconditionscondmatch_dlg_title_lblLier des conditions aux branchespi_defaultBranch_cb_lblPar défautto_conditions_dlg_add_btn_lblAjouterto_conditions_dlg_clear_all_btn_lblEffacer toutto_conditions_dlg_remove_item_btn_lblEnlevezto_conditions_dlg_from_lblDepuisto_conditions_dlg_to_lblJusqu'àto_conditions_dlg_range_lblPlage:branch_mapping_dlg_branch_col_lblBranchebranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupebranch_mapping_no_branch_msgAucune branche sélectionnée.branch_mapping_no_mapping_msgPas de mise en correspondance sélectionnée.branch_mapping_no_condition_msgAucune condition n'est sélectionnéebranch_mapping_auto_condition_msgToutes les conditions restantes seront associées à la branche par défaut.ws_dlg_date_modified_lblDernière modification: {0}branch_mapping_dlg_condition_col_valuePlage de {0} à {1}branch_mapping_dlg_condition_col_value_exactValeur exact de {0}ws_save_title_reserved_charsLe titre ne peut pas contenir des caractères spéciaux: {0}pi_define_monitor_cb_lblDéfinir dans la supervisiongroupmatch_dlg_title_lblLier des groupes aux branchesbranch_mapping_no_groups_msgAucun groupe n'est sélectionné.group_branch_act_lblOrganisé par groupebranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupesgroupnaming_dlg_title_lblNommer les groupesmnu_file_import_communityImporter à partir de la communauté LAMSpi_branch_typeSchéma en arbrepi_group_naming_btn_lblNom des groupessequence_act_titleSéquencetool_branch_act_lblSortie apprenantsto_condition_start_valuevaleur de débutto_condition_end_valuevaleur de finto_condition_invalid_value_range{0} ne peut être située sur la plage d'une condition existante.to_condition_invalid_value_direction{0} ne peut être plus grand que {1}.is_remove_warning_msgAttention: cette leçon est sur le point d'être effacée. Voulez-vous la conserver sous {0}? al_continueContinuerbranch_mapping_dlg_condition_linked_msg{0} est relié(e) à une branche existante. Voulez-vous pousuivre?branch_mapping_dlg_condition_linked_allIl y a des conditionsbranch_mapping_dlg_condition_linked_singleCette condition estto_condition_untitled_item_lblSans titre{0}gradebook_output_typeSortie carnet de notescv_activityProtected_activity_link_msgCe(tte) {0} est liée à un(e) {1}cv_activityProtected_child_activity_link_msgCe(tte) {0} a une activité fille qui est liée à {1}branch_mapping_dlg_condition_col_value_maxplus grand ou égal à {0}arrange_act_btnArranger des activitésoptional_seq_btnSéquenceoptional_seq_btn_tooltipCréer une série de séquences optionelles.pi_optSequence_remove_msg_titleEffacer des séquencespi_no_seq_actNe fait pas partie de la séquence.lbl_num_sequences{0} - séquencescv_invalid_optional_seq_activity_no_branchesEffacez toutes les branches connectées de {0} avant de l'ajouter à une séquence optionelle.ta_iconDrop_optseq_error_msgIl n'y a pas de séquences en fonction dans ce container.competence_mappings_btnAssociation de compétencescv_invalid_optional_seq_activityEnlevez les transitions entrantes et sortantes de {0} avant de la relier à une séquence optionnelleopt_activity_seq_titleSéquences optionnellesto_conditions_dlg_lt_lblPlus petit ou égalbranch_mapping_dlg_condition_col_value_minPlus petit ou égal à {0}pi_actActivitéspi_seqSéquencesto_conditions_dlg_defin_long_typePlageto_conditions_dlg_defin_bool_typeVrai/fauxto_conditions_dlg_defin_item_header_lbl[Selectionnez sortie]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNomto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[options]sequence_act_title_new{0} {1}close_mc_tooltipRéduireto_conditions_dlg_gte_lblPlus grand ou égal àto_conditions_dlg_lte_lblPLus petit ou égal àgroupnaming_dialog_col_groupName_lblNom du groupemnu_file_insertdesignInsérer/fusionnerws_dlg_insert_btnInsérerbranch_mapping_dlg_branch_item_default{0} défautpi_group_matching_btn_lblAssocier groupes aux branchespi_tool_output_matching_btn_lblAssocier conditions aux branchesrefresh_btnRafraîchirto_conditions_dlg_condition_items_update_defaultConditionsVous êtes en train de mettre à jour les conditions pour les définitions de sortie selectionnées. Voulez-vous continuer ?to_conditions_dlg_defin_user_defined_typedéfini par l'utilisateurcondmatch_dlg_message_lblChoisir la branche par défaut en cochant "défaut" dans les propriétés pour la branche en questionpi_branch_tool_acts_default--Sélection---cv_invalid_trans_diff_branchesUne transition entre des activités appartenant à des branches différentes ne peut pas être créecv_invalid_branch_target_to_activityUne branche vers {0} existe déjàcv_invalid_branch_target_from_activityUne branche depuis {0} existe déjàcv_invalid_trans_closed_sequenceVous ne pouvez pas créer une transition vers une séquence ferméechosen_branch_act_lblChoix de l'enseignantcv_eof_finish_modified_msgAttention: le design a été modifié. Voulez-vous quitter sans enregistrer ?cv_design_unsavedLa séquence sur le canevas a changé. Continuer sans enregistrer ?pi_num_groupsNombre de groupespi_num_learnersNombre d'étudiant-e-smnu_file_saveEnregistrersys_error_msg_finishIl se peut que vous deviez redémarrer LAMS Auteur pour pouvoir continuer. Voulez-vous enregistrer les informations concernant cette erreur pour aider à résoudre le problème?ws_save_folder_invalidImpossible d'enregistrer une séquence dans ce dossier. Veuillez choisir un sous-dossier valide.mnu_file_saveasEnregistrer comme...save_btn_tooltipEnregistrement rapide de la séquence d'activités courantecv_design_export_unsavedEnregistrez votre séquence avant de l'exportercv_autosave_rec_msgVous êtes sur le point de récupérer une séquence perdue ou non enregistrée. La séquence courante va être vidée. Continuer?cv_activity_dbclick_readonlyImpossible de modifier les outils d'une séquence en lecture seule. Veuillez enregistrer une copie de la séquence et réessayer.al_empty_designImpossible d'enregistrer une séquence videsave_btnEnregistrerws_click_folder_fileVeuillez cliquer soit sur un Dossier pour enregistrer ou sur le titre d'une séquence pour la remplacerws_dlg_save_btnEnregistrercv_valid_design_savedFélicitations. Votre séquence est valide. Elle a été enregistréews_entre_file_nameVeuillez entrer le nom de la séquence et cliquez sur le bouton "Enregistrer".cv_autosave_err_msgUne erreur est survenue lors de la sauvegarde automatique de la séquence. Veuillez augmenter la dotation mémoire de votre lecteur Flashcv_invalid_design_savedVotre séquence n'est pas encore validée mais elle a été enregistrée. Cliquez sur 'Problèmes potentiels' pour voir ce qui ne va pas.mnu_fileFichierws_no_file_openAucun fichier trouvé.ws_chk_overwrite_existingCe dossier contient déjà un fichier nommé {0}.open_btn_tooltipMontre la boîte de dialogue Fichier pour ouvrir une séquence d'activitésws_dlg_filenameNom du fichiermnu_help_helpAide pour la créationbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroMise à jour impossible car il manque les conditions définies par l'utilisateur. Il faudrait les définir dans la/les page(s) de création. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/hu_HU_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3close_mc_tooltipKis méretTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblNagyobb vagy egyenlőGreater than or equal toto_conditions_dlg_lte_lblKisebb vagy egyenlőLess than or equal togroupnaming_dialog_col_groupName_lblCsoportnévColumn label for editable datagrid in Group Naming dialog.trans_dlg_okOKOK Button on transition dialogmnu_file_insertdesignBeszúrás...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnBeszúrásButton label on Workspace in INSERT mode.branch_mapping_dlg_branch_item_default {0} (alapértelmezett)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.ws_RootRootRoot folder title for workspacews_newfolder_okOKOK on the new folder name diapi_equal_group_sizesEgyenlő csoportméretekCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equaltrans_dlg_gatetypecmbTípusGate type combo labelcompetence_editor_dlgHatáskör-szerkesztőDialog for adding/editing/removing competencespi_group_matching_btn_lblA csoportok illesztése az elágazásokhozButton in author that allows you to allocate groups to branches for group based branchingtrans_dlg_gateSzinkronizálásHeader for the transition props dialogpi_tool_output_matching_btn_lblA feltételek illesztése az elágazásokhozButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnFrissítésButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditionsÉpp frissíteni készül a kiválasztott kimeneti definíció feltételeit. Ez a művelet összes létező elágazásra mutató hivatkozást törli. Biztosan folytatja?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNem lehet frissíteni, mivel nincsenek a felhasználó által definiált feltételek. Ezeket be kellene állítania a szerzői eszközök oldalán/oldalain.Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_typea felhasználó által definiáltType description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msgA terv nem menthető, mivel a '{0}' csoporttevékenység többször tartalmazza ugyanazt a csoportnevet. Kérem, nézze át a csoportosítást, majd próbálja újra!Alert message displayed when the Grouping validation fails during saving a design.al_activity_paste_invalidElnézést, ilyen típusú tevékenységet nem szúrhat be.Alert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledA jelenet előnézetéhez először mentenie kell azt. Csak ezután kattintson az Előnézet gombra.Tool tip message for preview button in toolbar when button is disabled.pi_branch_tool_acts_default-- Kijelölés --Default item label for Input Tool dropdown list.cv_invalid_branch_target_to_activityAz elágazás ide: {0} már létezik.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityAz elágazás innen: {0} már létezik.Error message displayed after drawing a branch from an activity that has an existing connected branch.al_group_name_invalid_blankA csoportnév nem lehet üres.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingEgyedi csoportnevet kell megadni.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupcompetences_lblHatáskörökLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnHozzáadAdd competence buttoncompetence_def_dlgHatáskörök meghatározásának párbeszédeTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsA {0} nevű hatáskör már létezikWarning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankA hatáskör címe nem lehet üresWarning message when you try to define a competence with a blank competence titlecompetence_editor_warning_competence_mappedA törölni kívánt hatáskör jelenleg egy vagy több tevékenységhez csatlakozik. A hatáskör törlése eltávolítja a csatolást is. Bistosan folytatja?Warning message when you attempt to delete a competence that is mapped to one or more activities.map_comptence_btnHatáskörhöz csatolásLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnA hatáskör csatolásaiTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblHatáskörökLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btnA kapu feltételeinek csatolásaButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgAz összes fennmaradó feltételt a kiválasztott kapu lezárt állapotához csatoljuk.Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openmegnyitOpen state for gate activity, allows learners to pass through itgate_closedlezárvaClosed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalidMielőtt megpróbálná megjeleníteni a hatáskör csatolásait, ellenőrizze, hogy választott-e tevékenységet!Warning that appears when no activity is selected when the user tries to view competence mappingsws_dlg_date_modified_lblUtoljára módosítva: {0} Show the last modified datetime of the selected design in the workspacews_save_title_reserved_charsA cím nem tartalmazhatja ezeket a speciális karaktereket {0}.Error alert when trying to save with a title containing illegal characters.mnu_file_import_communityImportálás a LAMS közösségtől...File menu item for importing a learning design from the LAMS communitygradebook_output_typeAz osztályzóív kimneteLabel in the Property Inspector relating to which tool output type (if any) will be sent to gradebook for evaluation for the selected tool activityview_students_before_selectionMegnézi a tanulókat, mielőtt választana?Label in the Property Inspector for option to allow students to see who's in each group before they pick which group that want to be in for learner chosen grouping.arrange_act_btnA tevékenységek rendezéseMenu item button to neatly arrange the activities on the Canvascondmatch_dlg_message_lblAz alapértelmezett elágazást úgy állíthatja be, hogy a kiválasztott elágazás Tulajdonságok részénél bejelöli az "alapértelmezett" jelölőnégyzetet.Label for a message in the Condition to Branch matching dialog.cv_invalid_trans_diff_branchesNem hozhat létre átmenetet különböző elágazások tevékenységei között.Error message displayed after drawing a transition between activities of two different branches.learner_choice_grp_lblA tanuló választásaA type of grouping where the learner picks which group they'd like to be incv_invalid_trans_closed_sequenceLezárt jelenethez nem kapcsolhat új átmenetet.Error message displayed after drawing a transition from an activity in a closed sequence.cv_design_insert_warningAmint beszúr egy másik jelenetet, már nem tudja visszavonni ezt a műveletet – a régi jelenet automatikusan a beszúrt új jelenettel kerül mentésre. Amennyiben vissza akar térni a régi jelenetéhez, sajátkezűleg törölnie kell az új jelenetek összes tevékenységét, majd menteni. A jelenlegi jelenet változatlanul hagyásához, kattintson a Mégse gombra! Az OK-ra kattintva kiválaszthatja a beszúrni kívánt jelenetet.Warning message when merge/insertal_cannot_move_to_diff_opt_seqHa a választható jeleneteken belül egy másik jelenetbe szeretne áthelyezni egy tevékenységet, először húzza azt a Választható Jelenetek területén kívülre, majd kattintson rá, és húzza vissza a Választható Jelenetek területén belül lévő új helyére!Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitybranch_mapping_no_mapping_msgNem választott leképezést.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNem választott feltételt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgMinden fennmaradó feltételt az alapértelmezett elágazásra képez le.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblLeképezésekHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_value{0} - {1} tartományValue for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactA(z) {0} pontos értékeValue for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblA leképezések beállításaLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblFigyelő meghatározásaCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblCsoportok leképezése elágazásokraMap Groups to Branchesbranch_mapping_no_groups_msgNem választott csoportokat.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblCsoporthoz kötöttBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblElágazásokLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblCsoportokLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblA csoport elnevezéseTitle label for Group Naming dialog.pi_activity_type_branchingTevékenység az elágazásnálActivity type for Branching in Property Inspector.pi_branch_typeElágazás-típusProperty Inspector Branching type drop down.pi_group_naming_btn_lblCsoportnevekLabel for button that opens Group Naming dialog.sequence_act_titleJelenetDefault title for Sequence Activity.tool_branch_act_lblElágazás eszközkimenet alapjánBranching type label for Tool output Branching.chosen_branch_act_lblA Tanár választásaBranching type label for Teacher choice Branching.to_condition_start_valuekezdő értékValue representing the min boundary value of the conditions range.to_condition_end_valuevégső értékValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeA {0} kívül esik egy már létező feltétel tartományán.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_directionA(z) {0} nem lehet nagyobb, mit a(z) {1}. Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgFigyelem: A lecke eltávolítását választotta. Meg szeretné tartani ezt a leckét {0}-ként?Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueTovábbContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msgA(z) {0} már egy létező elágazáshoz kapcsolódik. Folytatja? Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allMég vannak feltételekPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleEz a feltételPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblNév nélküli {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgA terv használaton kívüli elágazás-leképezéseket tartalmaz, melyek szintén törlődnek. Folytatja?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgAz eltávolításhoz kérem szüntessem meg ennek a tevékenységnek a kiválasztását itt: {0}.Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msgEz: {0} kapcsolódik ehhez: {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msgEz {0} alárendelt kapcsolatban áll ezzel: {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxNagyobb vagy egyenlő, mint {0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btnTevékenységToolbar button for Optional Activity.optional_seq_btnJelenetToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipVálasztható tevékenységek készletének létrehozása.Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleJelenetek eltávolításaRemoving sequencespi_optSequence_remove_msgA törölni kívánt jelenet(ek) tevékenységeket tartalmazhatnak, melyek szintén törlődnek. Biztosan eltávolítja ezeket a jeleneteket?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actA jelenet számaLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - JelenetLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgKérem, helyezze a tevékenységet valamelyik jelenetbe!Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesTávolítsa el az összes kapcsolt feltételt {0}-ból, mielőtt hozzáadná egy választható jelenethez!Alert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msgEbben a tárolóban nincs engedélyezett jelenet.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.act_seq_lock_chkKérem oldja fel a Választható Jelenet tárolóját, mielőtt ezt a tevékenységet hozzárendelné egy választható jelenethez!Alert Message if user drags the activity to locked optional sequences container.cv_invalid_optional_seq_activitytávolítsa el a bemenő és kimenő kapcsolatokat ebből: {0}, mielőtt választható tevékenységhez rendelné hozzá!Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesEbből: {0} távolítson el minden kapcsolt elágazást, mielőtt választható tevékenységnek állítaná be!Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleVálasztható JelenetekTitle for Optional Sequences Container.to_conditions_dlg_lt_lblKisebb vagy egyenlőLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minKisebb vagy egyenlő mint {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actTevékenységekMin and max label postfix when an Optional Activity is selected.pi_seqJelenetekMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typetartományType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typeigaz/hamisType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[Meghatározások]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNévColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblFeltételColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[Választások]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new {0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.ws_file_name_emptySajnálom, nem mentheti a tervet, amíg nem ad meg fájlnevet.Error message when user try to save a design with no file namews_entre_file_nameKérem, írja be a terv nevét, és katintson a Mentés gombra!Error message when user try to save a design with no file namecv_activity_helpURL_undefinedNem található súgó ehhez: {0}.Alert message when a tool activity has no help url defined.cv_untitled_lblNévtelen - 1Label for Design Title bar on canvasmnu_help_helpSzerzői súgólabel for menu bar Help - Authoring Help optiontrans_dlg_titleÁtmenetTitle for the transition properties dialogccm_open_activitycontentTevékenység Megnyitása/SzerkesztéseLabel for Custom Context Menuws_newfolder_cancelMégseCancel on the new folder name diaccm_copy_activityTevékenység másolásaLabel for Custom Context Menuccm_paste_activityTevékenység beillesztéseLabel for Custom Context Menuccm_piTulajdonságok felügyelése...Label for Custom Context Menuccm_author_activityhelpA Szerzői Tevékenység súgójaLabel for Custom Context Menuws_dlg_descriptionLeírásLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateMégseDrop down default for gate typepi_daysNapDays label in property inspector for gate toolcv_close_return_to_ext_srcBezárás és visszatérés ehhez: {0}.Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedA változások alkalmazása sikerült.Changes have been successful applied.mnu_file_apply_changesAlkalmazApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA kapcsolat előtt vagy mögött egy tevékenységnek kell lennie.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEgy tevékenységnek kimenő vagy bemenő kapcsolattal kell rendelkeznieAn activity must have an input or output transitionvalidation_error_inputTransitionType1Ennek a tevékenységnek nincs bemenő kapcsolat.This activity has no input transitionvalidation_error_inputTransitionType2Egyik tevékenységnek sem hiányoznak a bemenő kapcsolatai.No activities are missing their input transition.validation_error_outputTransitionType1Ennek a tevékenységnek nincs kimenő kapcsolata.This activity has no output transitionvalidation_error_outputTransitionType2Egyik tevékenységnek sem hiányoznak a kimenő kapcsolatai.No activities are missing their output transition.cv_invalid_design_on_apply_changesA változtatások nem alkalmazhatók. Egy vagy több kapcsolat hiányzik.Cannot apply changes. There are one or more transitions missing.apply_changes_btnAlkalmazApply Changesapply_changes_btn_tooltipAlkalmazza a terv változtatásait, és visszatér a lecke figyeléséhez.tool tip message for save button in toolbarcancel_btnMégseToolbar - Cancel Buttoncv_activity_readOnlyA tevékenységet nem lehet {0}. A tevékenység írásvédett.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblAzonnali SzerkesztésLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_deltörölveAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modmódosítvaAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgA tervnek érvényesnek kell lennie, ha be akarja fejezni a szerkesztést.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgFigyelem: A terv megváltozott. Be akarja zárni anélkül hogy mentené?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyA kapcsolatot nem lehet {0}. A kapcsolat cél-objektuma írásvédett.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipVisszatérés a lecke figyeléséhez.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishBefejezésMenu bar File - Finish (Edit Mode)about_popup_title_lblErről - {0}Title for the About Pop-up window.about_popup_version_lblVerzióLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2009 {0} Alapítvány.Label displaying copyright statement in About dialog.about_popup_trademark_lblA {0} a {0} Foundation védjegye( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblEz a program szabad szoftver. Továbbadhatja, és/vagy módosíthatja a Free Software Foundation által kiadott Általános Nyilvános Licensz 2-es változata alapján.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleElágazásLabel for Branching Activitypi_activity_type_sequence({0}) Jelenet TevékenységActivity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKattintson a névre, ha meg akarja változtatni!Instructions for Group Naming dialog.pi_branch_tool_acts_lblBevitel (Eszköz)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_condmatch_btn_lblA Feltételes Kimutatások beállításaLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblAz eszközkimenet feltételeinek megadásaDialog title for creating new tool output conditions.al_doneKészLabel for dialog completion button.condmatch_dlg_cond_lst_lblFeltételekLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblA feltételek illesztése az elágazásokhozDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblalapértelmezettCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ HozzáadLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblMindet törliLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- EltávolítLabel for button to remove condition.to_conditions_dlg_from_lblEttőlLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblEddigLabel for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblTartományHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblElágazásColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblFeltételColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblCsoportColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNem választott elágazást.Alert message when adding a Mapping without a Branch (Sequence) being selected.sys_error_msg_startA következő rendszerhiba történt: Common System error message starting linesys_error_msg_finishA folytatáshoz újra kellene indítania a LAMS Szerző-t. El szeretné menteni a hibáról szóló alábbi információt, hogy segítse a probléma megoldásában?Common System error message finish paragraphsys_errorRendszerhibaSystem Error elert window titlepi_num_groupsCsoportok számaNumber of groups in Property inspectorpi_parallel_titlePárhuzamos tevékenységTitle for parallel activity property inspectoropt_activity_titleVálasztható tevékenységTitle for Optional Activity Containerlbl_num_activitiesTevékenységekreplacement for word activitiesal_sendKüldésSend button label on the system error dialogal_cannot_move_activitySajnálom, ezt a tevékenységet nem lehet áthelyezni.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNem adhat hozzá kapu tevékenységet választható tevékenységként.Error message when user drags gate activity over to optional containerprefix_copyof_count({0}) másolatPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNem mentheti a tervet ebbe a mappába. Kérem, válasszon érvényes al-mappát!Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openKérem, a megnyitáshoz kattintson egy tervre!Alert message if folder tried to be opened.ws_license_lblLicencLabel for Licence drop down on workspace properties tab viewws_license_comment_lblTovábbi licenszinformációkLabel for Licence Comment description below license drop downcv_invalid_optional_activityTávolítson el minden be- és kivezető átmenetet ebből: {0}, mielőtt választható tevékenységnek állítaná be!Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingAz átmenethez hiányzik a másik tevékenység.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityEgy átmenet a(z) {0} felől már létezikError message when a transition from the activity already existcv_invalid_trans_target_to_activityEgy átmenet a(z) {0} felé már létezikError message when a transition to the activity already existbranch_btnElágazásLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFolyamatLabel for Flow button in Toolbarmnu_file_importImportálásMenu bar Importcv_design_export_unsavedA tervet nem lehet expottálni. Kérem, előbb mentse!Alert message when trying to export can unsaved design.cv_design_unsavedA vászon tervét megváltoztatta. Folytatja anélkül hogy mentené?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExportálásMenu bar Exportws_chk_overwrite_existingEz a mappa már tartalmaz egy {0} nevű fájlt. Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNem használhatja ezt a mappát.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitKilépésFile Menu Exitws_no_file_openAz állományt nem találhatóAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNem hozhat létre körkörös kapcsolatot a jelenetek között.Error message when a transition from one activity to another is creating a circular loopbin_tooltipDobja ebbe a szemétkosárba azt a tevékenységet, melyet törölni akar a jelenetből!Tool tip message for canvas binnew_btn_tooltipTörli az aktuális jelenetet, és újból használatra késszé teszi a munkaterületetTool tip message for new button in toolbaropen_btn_tooltipMegjeleníti a Fájl párbeszédet a Tevékenység Jelenet megnyitásához.Tool tip message for open button in toolbarsave_btn_tooltipAz aktuális Tevékenység Jelenet gyorsmentése.tool tip message for save button in toolbarcopy_btn_tooltipA kiválasztott tevékenység másolásatool tip message for copy button in toolbarpaste_btn_tooltipA kiválasztott tevékenység beillesztésetool tip message for paste button in toolbartrans_btn_tooltipHasználja ezt a tollat a tevékenységek közti átmenetek megrajzolásához (vagy tartsa lenyomva a CTRL billentyűt)!tool tip message for transition button in toolbaroptional_btn_tooltipVálasztható tevékenységek létrehozásatool tip message for optional button in toolbargate_btn_tooltipMegállási pont létrehozásatool tip message for gate button in toolbarbranch_btn_tooltipElágazás létrehozása (majd csak a LAMS 2.1-es verziójában)tool tip message for branch button in toolbarflow_btn_tooltipFolyamatellenőrző tevékenység létrehozásatool tip message for flow button in toolbargroup_btn_tooltipTevékenységcsoport kialakításatool tip message for group button in toolbarpreview_btn_tooltipTanulói nézetTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNem szerkesztheti az írásvédett terv eszközeit. Kérem, mentse a terv egy másolatát, majd próbálja újra!Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblCsak olvashatóLabel for top left of canvas shown when a read-only design is open.al_empty_designSajnálom, üres tervet nem lehet menteni.alert message when user want to save an empty designws_newfolder_insKérem adja meg az új mappa nevétInstructions on the new name pop upcv_autosave_err_msgHiba történt a terv automatikus mentése közben. Kérem, növelje meg a Flash Player tárhelyét!Alert error message when auto-save fails.cv_autosave_rec_msgAz utolsó elveszett vagy nem mentett terv visszaállításával próbálkozik. A jelenlegi terv így törllődik. Folytatja?Message informing users that they have recovered data for a design.cv_autosave_rec_titleFigyelmeztetésAlert title for auto save recovery message.mnu_file_recoverHelyreállításMenu bar Recovercv_activity_copy_invalidSajnálom, nem megengedett az altevékenység másolása.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSajnálom, nem megengedett az altevékenység kivágása.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidSajnálom! Választania kell egy tevékenységet, mielőtt a másolásra kattintana.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidSajnálom, de ki kell választania egy tevékenységet mielőtt a tevékenység gyorsmenüjében rákattint a Megnyitás/Szerkesztés menüpontra!alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgBiztosan törölni kívánja ezt az állományt / könyvtárat?Confirmation message when user tries to delete a file or folder in workspace dialog boxmnu_helpSúgóMenu bar Helpmnu_help_abtNévjegyMenu bar Aboutmnu_toolsEszközökMenu bar Toolsmnu_tools_optVálasztható RajzeszközMenu bar Optionalmnu_tools_prefsBeállításokMenu bar preferencesmnu_tools_transÁtmenetMenu bar draw transitionnew_btnÚjToolbar &gt; New Buttonnew_confirm_msgBiztos benne, hogy törölni akarja a képernyőn lévő tervét?Msg when user clicks new while working on the existing designnone_act_lblMégseNo gate activity selectedopen_btnMegnyitásToolbar &gt; Open Buttonoptional_btnOpcionálisToolbar &gt; Optional Buttonpaste_btnBeillesztésToolbar &gt; Paste Buttonperm_act_lblEngedélyLabel for permission gate activitypi_activity_type_gateTevékenység a kapunálActivity type for gate in PIpi_activity_type_groupingTevékenység csoportosításaActivity type for grouping in Property Inspectorpi_definelaterKésőbb definiálniLabel for Define later for PIpi_end_offsetA kapu lezárásaEnd offset labelpi_group_typeCsoportosítás típusaProperty Inspector Grouping type drop downpi_hoursÓraHours label in Property Inspectorpi_lbl_currentgroupAktuális csoportosításCurrent grouping label for PIpi_lbl_descLeírásDescription Label for PIpi_lbl_groupCsoportosításGrouping label for PIpi_lbl_titleCímTitle label for PIpi_max_actMax {0} Label for maximum Activities or Sequencespi_min_actMin {0} Label for minimum Activities or Sequencespi_minsPercMins label in teh property inspectorpi_no_groupingNincsCombo title for no groupingpi_num_learnersTanulók számaPI Num learners labelpi_optional_titleOpcionális tevékenységTitle for oprional activity property inspectorpi_runofflineOffline futtatásLabel for Run Oflinepi_start_offsetA kapu megnyitásaStart offset labelpi_titleTulajdonságokOn the title bar of the PIprefix_copyofMásolás...Prefix for copy paste command for canvas activitiesprefs_dlg_cancelMégse6prefs_dlg_lng_lblNyelv7prefs_dlg_okOK5prefs_dlg_theme_lblTéma8prefs_dlg_titleBeállítások4preview_btnElőnézetToolbar &gt; Preview Buttonproperty_inspector_titleTulajdonságokOn the title bar of the PIrandom_grp_lblVéletlenszerűLabel for the grouping drop down in the PropertyInspectorrename_btnÁtnevezésLabel for Rename Buttonsave_btnMentésToolbar &gt; Save buttonsched_act_lblÜtemezésLabel for schedule gate activitysynch_act_lblEgyeztetésUsed as a label for the Synch Gate Activity Typetk_titleTevékenységekLabel for Activities Toolkit Paneltrans_btnÁtmenetToolbar &gt; Transition Buttontrans_dlg_cancelMégseCancel button on transition dialogws_chk_overwrite_resourceVigyázzon: a jelenet felülírását választotta!ws_click_folder_fileKérem, egy mappára kattintson, vagy ha felül akar írni egy tervet, akkor arra!Error msg if no folder or file is selectedws_copy_same_folderA forrás- és a célkönyvtár azonosThe user has tried to drag and drop to the same placews_dlg_cancel_buttonMégse2ws_dlg_filenameFájlnévLabel for File name in workspace windowws_dlg_location_buttonHelyWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnMegnyitásWsp Dia Open Button labelws_dlg_properties_buttonTulajdonságokWorkspace dialogue Properties btn labelws_dlg_save_btnMentésWsp Dia Save Button labelws_dlg_titleMunkaterület0ws_no_permissionSajnálom, ezt a forrást nem oszthatja meg írásraMessage when user does not have write permission to complete actionws_rename_insKérem, adja meg az új nevetMessage of the new name for the userws_tree_mywspMunkaterületemThe root level of the treews_tree_orgsCsoportjaimShown in the top level of the tree in the workspacews_view_license_buttonNézetTo show the license to the useract_lock_chkKérem oldja fel a Választható Tevékenység tárolóját, mielőtt ezt a tevékenységet választhatónak állítaná be!Alert Message if user drags the activity to locked optional activity container act_tool_titleTevékenységekTitle for Activity Toolkit Panelal_alertÉrtesítésGeneric title for Alert windowal_cancelMégseTo Confirm title for LFErroral_confirmMegerősítésTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadA nyelvi adatok nem töltődtek be.message for unsuccessful language loadingapp_chk_themeloadNem sikerült betölteni a téma adataitmessage for unsuccessful theme loadingapp_fail_continueAz alkalmazás leáll. A hibával kapcsolatban kérjen tanácsot!message if application cannot continue due to any errorchosen_grp_lblKiválasztottLabel for the grouping drop down in the PropertyInspectorcopy_btnMásolásToolbar &gt; Copy Buttoncv_invalid_design_savedA terve még nem érvényes, de azért elmentettük. Kattintson az 'Példányok'-ra, hogy megtudja a hiba okát!Message when an invalid design has been savedcv_invalid_trans_targetNem hozhat létre átmenetet ehhez az objektumhoz.Error message for when transition tool is dropped outside of valid target activitycv_show_validationPéldányokThe button on the confirm dialogcv_valid_design_savedGratulálok! Az ön terve érvényes és mentésre került.Message when a valid design has been saveddb_datasend_confirmKöszönjük, hogy elküldte az adatokat a szerverre.Message when user sucessfully dumps data to the serverdelete_btnTörlésLabel for Delete buttongate_btnKapuToolbar &gt; Gate Buttongroup_btnCsoportToolbar &gt; Group Buttongrouping_act_titleCsoportosításDefault title for the grouping activityld_val_activity_columnTevékenységThe heading on the activity in the ValidationIssuesDialogld_val_doneRendbenThe button label for the dialogld_val_issue_columnPéldányThe heading on the issue in the ValidationIssuesDialogld_val_titleA példányok érvényesítéseThe title for the dialoglicense_not_selectedMég nem választott engedélyt - Kérjük, válasszon egyet!Shown if no license is selected in the drop down in workspacemnu_editSzerkesztésMenu bar Editmnu_edit_copyMásolásMenu bar Edit &gt; Copymnu_edit_cutKivágásMenu bar Edit &gt; Cutmnu_edit_pasteBeillesztésMenu bar Edit &gt; Pastemnu_edit_redoMégisMenu bar Edit &gt; Redomnu_edit_undoVisszavonásMenu bar Edit &gt; Undomnu_fileFájlMenu bar Filemnu_file_closeBezárásMenu bar Closemnu_file_newÚjMenu bar Newmnu_file_openMegnyitásMenu bar Openmnu_file_saveMentésMenu bar savemnu_file_saveasMentés máskéntMenu bar Save as \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/it_IT_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3opt_activity_seq_titleSequenze opzionaliTitle for Optional Sequences Container.optional_seq_btn_tooltipCrea un set di sequenze opzionaliTooltip for Sequences within Optionaly Activity button.to_conditions_dlg_defin_long_typeVariazioneType description for a long-value based ouput definition.cv_invalid_optional_seq_activity_no_branchesRimuovi tutte le sezioni dipendenti da {0} prima di aggiungerlo ad una sequenza opzionale.Alert message when user try to drop an activity with connected branches into optional sequences container.pi_no_seq_actNumero di sequenzeLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.cv_invalid_optional_seq_activityRimuovi i collegamenti da e verso {0} prima di impostarlo in una sequenza opzionale.Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_activity_helpURL_undefinedImpossibile trovare la pagina di aiuto per {0}Alert message when a tool activity has no help url defined.ta_iconDrop_optseq_error_msgNon ci sono sequenze abilitate in questo contenitore.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.pi_optSequence_remove_msgLa/e sequenza/e che sta(nno) per essere rimossa/e potrebbe(ro) contenere alcune attività che verranno cancellate. Procedere?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.activityDrop_optSequence_error_msgTrascina l'attività su una delle sequenzeAlert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.to_conditions_dlg_defin_bool_typeVero/FalsoType description for a lboolean-value based ouput definition.to_conditions_dlg_lt_lblMinore o uguale Less than option for long type conditions.pi_actAttivitàMin and max label postfix when an Optional Activity is selected.pi_seqSequenzaMin and max label postfix when an Optional Sequences activity is selected.pi_defaultBranch_cb_lblDefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNomeColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblCondizioneColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[Opzioni]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipRiduciTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblMaggiore o uguale a Greater than or equal toto_conditions_dlg_lte_lblMinore o uguale aLess than or equal togroupnaming_dialog_col_groupName_lblNome del gruppoColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignInserisci/Unisci...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnInserisciButton label on Workspace in INSERT mode.lbl_num_sequences{0} - SequenzeLabel to describe the amount of sequences in the container.pi_group_matching_btn_lblAbbina i Gruppi ai RamiButton in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lblAbbina le Condizioni ai RamiButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnAggiornaButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_defin_user_defined_typeDefinito dall'utenteType description for a user-defined (boolean set) based ouput definition.al_activity_paste_invalidImpossibile incollare questo tipo di attività!Alert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledPer visualizzare in anteprima la sequenza creata, salvare prima e poi cliccare su Anteprima.Tool tip message for preview button in toolbar when button is disabled.condmatch_dlg_message_lblIl branch predefinito si può selezionare scegliendo la relativa opzione nell'area Proprietà del branch desiderato.Label for a message in the Condition to Branch matching dialog.mnu_help_helpAiuto per l'Authoringlabel for menu bar Help - Authoring Help optionbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroImpossibile aggiornare: nessuna condizione definita dall'utente. Per procedere, impostare le condizioni nella pagina di authoring degli strumenti.Alert message when the updating the conditions with a selected output definition that has no default conditions.al_group_name_invalid_blankI nomi dei gruppi non possono essere lasciati in bianco.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupgpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.pi_branch_tool_acts_lblInput (Tool)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleRamificazioneLabel for Branching Activityabout_popup_license_lblQuesto programma è free software; puoi redistribuirlo e/o modificarlo a termini della GNU General Public License version 2 come pubblicato dalla Free Software Foundation. {0} Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.groupnaming_dialog_instructions_lblClicca su un nome per cambiarne il valoreInstructions for Group Naming dialog.pi_condmatch_btn_lblCrea condizioniLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblCrea condizioni di outputDialog title for creating new tool output conditions.al_doneFattoLabel for dialog completion button.condmatch_dlg_cond_lst_lblCondizioniLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblAbbina le Condizioni ai RamiDialog title for matching conditions to branches for Tool based Branching.to_conditions_dlg_add_btn_lblAggiungiLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblPulisci tuttoLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblRimuoviLabel for button to remove condition.to_conditions_dlg_from_lblDaLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblALabel for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblConfigura la gammaHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblRamoColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblCondizioneColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppoColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNessun Ramo selezionatoAlert message when adding a Mapping without a Branch (Sequence) being selected.branch_mapping_no_mapping_msgNessun Mapping selezionatoAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNessuna condizione selezionataAlert message when adding a Mapping without a Condition being selected.cv_autosave_err_msgSi è verificato un errore durante il tentativo di salvataggio automatico del tuo progetto. Aumentare la capacità di memoria Flash Player nelle impostazioni.Alert error message when auto-save fails.branch_mapping_auto_condition_msgTutte le restanti condizioni saranno applicate al Ramo di default.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueVariazione da {0} a {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactEsatto valore di {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblConfigura MappingLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblDefinisci in MonitorCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblDistribuisci i gruppi tra i ramiMap Groups to Branchesbranch_mapping_no_groups_msgNessun gruppo selezionatoAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppo baseBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblRamiLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGruppiLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblDenomina i GruppiTitle label for Group Naming dialog.pi_activity_type_branchingAttività di ramificazioneActivity type for Branching in Property Inspector.pi_branch_typeTipo di ramificazioneProperty Inspector Branching type drop down.pi_group_naming_btn_lblNome GruppoLabel for button that opens Group Naming dialog.sequence_act_titleSequenzaDefault title for Sequence Activity.tool_branch_act_lblOutput StudentiBranching type label for Tool output Branching.chosen_branch_act_lblScelta del docenteBranching type label for Teacher choice Branching.to_condition_start_valueValore inizialeValue representing the min boundary value of the conditions range.to_condition_end_valueValore finaleValue representing the max boundary value of the conditions value.al_continueContinuaContinue button on Alert dialogbranch_mapping_dlg_condition_linked_allSono presenti delle condizioniPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleQuesta condizione èPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblSenza titoloThe default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgIl progetto contiene branch mappings inutilizzate. Continuare?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.optional_act_btnAttivitàToolbar button for Optional Activity.optional_seq_btnSequenzaToolbar button for Sequences within Optional Activity.pi_optSequence_remove_msg_titleRimozione sequenze in corsoRemoving sequencesbranch_btn_tooltipCrea una ramificazione (disponibile in LAMS 2.1)tool tip message for branch button in toolbarcancel_btn_tooltipTorna a monitorare la lezione.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishFinitoMenu bar File - Finish (Edit Mode)flow_btn_tooltipCrea un controllo sullo svolgimento delle attivitàtool tip message for flow button in toolbargroup_btn_tooltipCrea un'attività di raggruppamentotool tip message for group button in toolbarabout_popup_title_lblSu - {0}Title for the About Pop-up window.al_alertAvvisoGeneric title for Alert windowpreview_btn_tooltipVedi in anteprima la sequenza come la vedranno gli studentiTool tip message for preview button in toolbarlbl_num_activities{0} - Attivitàreplacement for word activitiescv_activity_dbclick_readonlyNon puoi modificare un progetto di sola lettura. Salva una copia del progetto e prova di nuovo.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSola letturaLabel for top left of canvas shown when a read-only design is open.pi_max_actMax {0}Label for maximum Activities or Sequencespi_min_actMin {0}Label for minimum Activities or Sequencesal_empty_designSpiacente, non puoi salvare un progetto vuotoalert message when user want to save an empty designcv_autosave_rec_msgStai per recuperare l'ultimo progetto perso o non salvato. Il tuo progetto corrente sarà cancellato. Continuare?Message informing users that they have recovered data for a design.cv_autosave_rec_titleAttenzioneAlert title for auto save recovery message.mnu_file_recoverRecupero...Menu bar Recovercv_activity_copy_invalidNon ti è permesso copiare quest'attività.Error message when user try to copy child activity from either optional or parallel activity containercv_activityProtected_activity_link_msgQuesto {0} è collegato a {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_linked_msg{0} è collegato a un ramo esistente. Continuare?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.al_activity_copy_invalidAttenzione! è necessario selezionare l'attività prima di cliccare 'copia'.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasbranch_mapping_dlg_condition_col_value_maxMaggiore o uguale a {0}Value for Condition field in mapping datagrid when Greater than option is selected.al_activity_openContent_invalidAttenzione! è necessario selezionare l'attività prima di cliccare sulla voce Apri/Modifica Contenuto Attività nel menù Attivitàalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasabout_popup_version_lblVersioneLabel displaying the version no on the About dialog.cv_activityProtected_child_activity_link_msgQuesto {0} ha un figlio collegato a {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.ws_del_confirm_msgSei sicuro di voler cancellare questo file/cartella?Confirmation message when user tries to delete a file or folder in workspace dialog boxvalidation_error_outputTransitionType1Quest'attività non ha un collegamento in uscita.This activity has no output transitionws_file_name_emptySpiacente! Non puoi salvare un progetto senza alcun nome.Error message when user try to save a design with no file nameto_condition_invalid_value_directionIl {0} non può essere maggiore di {1}Alert message when the start value is greater than end value of the submitted condition.ws_view_license_buttonVediTo show the license to the usercv_activity_cut_invalidNon ti è consentito tagliare quest'attività.Error message when user try to cut child activity from either optional or parallel activity containerws_entre_file_nameInserisci il nome del progetto, quindi clicca sul pulsante Salva.Error message when user try to save a design with no file namecv_design_insert_warningUna volta inserita un'altra sequenza, quest'azione non potrà essere cancellata (la vecchia sequenza sarà salvata con la nuova inserita). Per tornare alla vechia sequenza, è necessario cancellare manualmente tutte le nuove attività inserite, quindi salvare. Per lasciare inalterata la sequenza corrente, clicca su Annulla. Altrimenti clicca su OK per selezionare la sequenza da inserire.Warning message when merge/insertcv_untitled_lblSenza titolo - 1Label for Design Title bar on canvasal_group_name_invalid_existingI nomi dei gruppi devono essere univoci.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupccm_open_activitycontentApri/Modifica il contenuto delle attivitàLabel for Custom Context Menuccm_copy_activityCopia attivitàLabel for Custom Context Menuccm_paste_activityIncolla attivitàLabel for Custom Context Menuccm_piVisualizza ProprietàLabel for Custom Context Menuccm_author_activityhelpAiuto per Attività AutoreLabel for Custom Context Menuws_dlg_descriptionDescrizioneLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateNessunoDrop down default for gate typepi_daysGiorniDays label in property inspector for gate toolcv_close_return_to_ext_srcChiudi e torna a {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedLe modifiche sono state apportate con successo.Changes have been successful applied.mnu_file_apply_changesApplica modificheApply Changesvalidation_error_transitionNoActivityBeforeOrAfterDeve esserci un'attività prima o dopo un collegamento.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionUn'attività deve avere un cellegamento in ingresso o in uscita.An activity must have an input or output transitionvalidation_error_inputTransitionType1Quest'attività non ha collegamenti in ingresso.This activity has no input transitionvalidation_error_inputTransitionType2Nessuna attività è senza collegamento in ingresso.No activities are missing their input transition.pi_num_groupsNumero di gruppiNumber of groups in Property inspectorvalidation_error_outputTransitionType2Nessuna attività è senza collegamento in uscita.No activities are missing their output transition.cv_invalid_design_on_apply_changesNon puoi apportare modifiche. Ci sono uno o più collegamenti mancanti.Cannot apply changes. There are one or more transitions missing.apply_changes_btnApporta modifiche.Apply Changesapply_changes_btn_tooltipApporta modiche al progetto e torna a monitorare la lezione.tool tip message for save button in toolbarcancel_btnAnnullaToolbar - Cancel Buttoncv_activity_readOnlyL'attività non può essere {0}. L'attività è in sola lettura.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblModifica in modalità liveLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delrimuoviAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modmodificatoAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgIl progetto deve essere valido per terminare le modifiche.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgAttenzione: il tuo progetto è stato modificato. Vuoi chiudere senza salvare?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyNon può esserci {0} collegamento. L'attività target è in sola lettura .Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).pi_parallel_titleAttività parallelaTitle for parallel activity property inspectorabout_popup_trademark_lbl{0} è un marchio di {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.ws_chk_overwrite_resourceAttenzione! Stai per sovrascrivere questa sequenza!ws_click_folder_fileCliccare su una Cartella per salvare o su un Progetto per sovrascrivereError msg if no folder or file is selectedws_copy_same_folderLa cartella di origine e quella di destinazione coincidonoThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCancella2ws_dlg_filenameNome FileLabel for File name in workspace windowws_dlg_location_buttonPosizioneWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnApriWsp Dia Open Button labelws_dlg_properties_buttonProprietàWorkspace dialogue Properties btn labelws_dlg_save_btnSalvaWsp Dia Save Button labelws_dlg_titleArea di lavoro0ws_newfolder_cancelCancellaCancel on the new folder name diaws_newfolder_insRinominare la cartellaInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionAttenzione, non hai il permesso di scrivere in questa risorsaMessage when user does not have write permission to complete actionws_rename_insDigitare il nuovo nomeMessage of the new name for the userws_tree_mywspLa mia area di lavoroThe root level of the treews_tree_orgsI miei GruppiShown in the top level of the tree in the workspaceact_lock_chkSblocca il contenitore delle attività opzionali prima di assegnarvi questa attività come opzionaleAlert Message if user drags the activity to locked optional activity container sys_error_msg_startSi è verificato il seguente errore di sistema:Common System error message starting linesys_error_msg_finishRiavviare LAMS Author per continuare. Vuoi salvare le seguenti informazioni sull'errore per contribuire a risolvere questo problema?Common System error message finish paragraphsys_errorErrore di SistemaSystem Error elert window titlepi_activity_type_sequenceAttività della Sequenza ({0})Activity type for Sequence (Branch) in Property Inspector.opt_activity_titleAttività opzionaleTitle for Optional Activity Containeris_remove_warning_msgATTENZIONE: la lezione sta per essere rimossa. Vuoi conservare questa lezione come {0}?Message for the alert dialog which appears following confirmation dialog for removing a lesson.cv_activityProtected_activity_remove_msgPer eliminare, deseleziona quest'attività come {0}.Instruction how to delete an Activity linked to a Branching Activity.al_sendInviaSend button label on the system error dialogal_cannot_move_activityImpossibile spostare questa attività.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkImpossibile aggiungere un'attività con Barriera come attività opzionaleError message when user drags gate activity over to optional containerprefix_copyof_countCopia ({0}) diPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidImpossibile salvare un progetto in questa cartella. Scegliere una sottocartella valida.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openFai clic su un Progetto per aprirlo.Alert message if folder tried to be opened.ws_license_lblLicenzaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformazioni aggiuntive sulla licenzaLabel for Licence Comment description below license drop downcv_invalid_optional_activityRimuovi i collegamenti provenienti da e diretti a {0} prima di impostarla come attività opzionale.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingManca la seconda attività del collegamento.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityEsiste già un collegamento da {0}Error message when a transition from the activity already existcv_invalid_trans_target_to_activityEsiste già un collegamento verso {0}Error message when a transition to the activity already existbranch_btnRamificazioneLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnSvolgimento attivitàLabel for Flow button in Toolbarmnu_file_importImportaMenu bar Importcv_design_export_unsavedNon puoi esportare un progetto non salvato.Alert message when trying to export can unsaved design.cv_design_unsavedIl progetto è stato modificato. Continuare senza salvare?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportEsportaMenu bar Exportws_chk_overwrite_existingQuesta cartella contiene già un file chiamato {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNon puoi usare questa cartella.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitEsciFile Menu Exitws_no_file_openNessun file trovato.Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNon puoi creare una sequenza circolareError message when a transition from one activity to another is creating a circular loopbin_tooltipSposta un'attività su questo cestino per rimuoverla dalla sequenza.Tool tip message for canvas binnew_btn_tooltipCancella la sequenza corrente e ripristina lo spazio di lavoro pronto per l'usoTool tip message for new button in toolbaropen_btn_tooltipMostra la finestra di dialogo File per aprire una sequenza di attivitàTool tip message for open button in toolbarsave_btn_tooltipSalva rapidamente la sequenza correntetool tip message for save button in toolbarcopy_btn_tooltipCopia la sequenza selezionatatool tip message for copy button in toolbarpaste_btn_tooltipIncolla una copia della sequenza selezionatatool tip message for paste button in toolbartrans_btn_tooltipUsa questa matita per disegnare collegamenti fra le attività (o premi il tasto CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCrea un blocco di attività opzionali.tool tip message for optional button in toolbargate_btn_tooltipBlocca un passaggiotool tip message for gate button in toolbargrouping_act_titleRaggruppamentoDefault title for the grouping activityld_val_activity_columnAttivitàThe heading on the activity in the ValidationIssuesDialogld_val_doneFattoThe button label for the dialogld_val_issue_columnProblemaThe heading on the issue in the ValidationIssuesDialogld_val_titleProblemi di validazioneThe title for the dialoglicense_not_selectedSelezionare una licenza per questo progettoShown if no license is selected in the drop down in workspacemnu_editModificaMenu bar Editmnu_edit_copyCopiaMenu bar Edit &gt; Copymnu_edit_cutTagliaMenu bar Edit &gt; Cutmnu_edit_pasteIncollaMenu bar Edit &gt; Pastemnu_edit_redoRipetiMenu bar Edit &gt; Redomnu_edit_undoAnnulla Menu bar Edit &gt; Undomnu_fileFileMenu bar Filemnu_file_closeChiudiMenu bar Closemnu_file_newNuovoMenu bar Newmnu_file_openApriMenu bar Openmnu_file_saveSalvaMenu bar savemnu_file_saveasSalva con nomeMenu bar Save asmnu_helpAiutoMenu bar Helpmnu_help_abtNotizie su LAMSMenu bar Aboutmnu_toolsStrumentiMenu bar Toolsmnu_tools_optCrea Attività opzionaliMenu bar Optionalmnu_tools_prefsPreferenzeMenu bar preferencesmnu_tools_transDisegna CollegamentoMenu bar draw transitionnew_btnNuovoToolbar &gt; New Buttonnew_confirm_msgSei sicuro di voler cancellare il tuo progetto sullo schermo?Msg when user clicks new while working on the existing designnone_act_lblNessuna AttivitàNo gate activity selectedopen_btnApriToolbar &gt; Open Buttonoptional_btnAttività opzionaliToolbar &gt; Optional Buttonpaste_btnIncollaToolbar &gt; Paste Buttonperm_act_lblPermessoLabel for permission gate activitypi_activity_type_gateAttività con BarrieraActivity type for gate in PIpi_activity_type_groupingAttività di GruppoActivity type for grouping in Property Inspectorpi_definelaterDefinisci in MonitorLabel for Define later for PIpi_end_offsetBarriera chiusaEnd offset labelpi_group_typeTipo di raggruppamentoProperty Inspector Grouping type drop downpi_hoursOreHours label in Property Inspectorpi_minsMinutiMins label in teh property inspectorpi_lbl_currentgroupRaggruppamento correnteCurrent grouping label for PIpi_lbl_descDescrizioneDescription Label for PIpi_lbl_groupRaggruppamentoGrouping label for PIpi_lbl_titleTitoloTitle label for PIpi_no_groupingNessunoCombo title for no groupingpi_num_learnersNumero di studentiPI Num learners labelpi_optional_titleAttività opzionaleTitle for oprional activity property inspectorpi_runofflineAttività OfflineLabel for Run Oflinepi_start_offsetBarriera apertaStart offset labelpi_titleProprietàOn the title bar of the PIprefix_copyofCopia diPrefix for copy paste command for canvas activitiesprefs_dlg_cancelCancella6prefs_dlg_lng_lblLingua7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titlePreferenze4preview_btnAnteprimaToolbar &gt; Preview Buttonproperty_inspector_titleProprietàOn the title bar of the PIrandom_grp_lblCasualeLabel for the grouping drop down in the PropertyInspectorrename_btnRinominaLabel for Rename Buttonsave_btnSalvaToolbar &gt; Save buttonsched_act_lblOrarioLabel for schedule gate activitysynch_act_lblSincronizzaUsed as a label for the Synch Gate Activity Typetk_titleStrumenti per le AttivitàLabel for Activities Toolkit Paneltrans_btnCollegamentoToolbar &gt; Transition Buttontrans_dlg_cancelCancellaCancel button on transition dialogtrans_dlg_gateSincronizzaHeader for the transition props dialogtrans_dlg_gatetypecmbTipoGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleCollegamentoTitle for the transition properties dialogws_RootCartella principaleRoot folder title for workspaceact_tool_titleStrumenti per le AttivitàTitle for Activity Toolkit Panelal_cancelAnnullaTo Confirm title for LFErroral_confirmConfermaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadInformazioni sul linguaggio non caricatemessage for unsuccessful language loadingapp_chk_themeloadInformazioni sul tema non caricatemessage for unsuccessful theme loadingapp_fail_continueL'applicazione non può continuare. Contattare il supporto tecnico.message if application cannot continue due to any errorchosen_grp_lblScegliere in MonitorLabel for the grouping drop down in the PropertyInspectorcopy_btnCopiaToolbar &gt; Copy Buttoncv_invalid_design_savedIl tuo progetto non è ancora valido ma è stato salvato. Clicca su 'problemi possibili' per vedere che cosa non va.Message when an invalid design has been savedcv_invalid_trans_targetImpossibile creare un collegamento verso questo oggetto.Error message for when transition tool is dropped outside of valid target activitycv_show_validationProblemiThe button on the confirm dialogcv_valid_design_savedCongratulazioni! - Il tuo progetto è valido ed è stato salvato.Message when a valid design has been saveddb_datasend_confirmGrazie per aver inviato i dati al serverMessage when user sucessfully dumps data to the serverdelete_btnCancellaLabel for Delete buttongate_btnBarrieraToolbar &gt; Gate Buttongroup_btnGruppoToolbar &gt; Group Buttonabout_popup_copyright_lbl© 2002-2009 {0} Foundation.Label displaying copyright statement in About dialog.pi_branch_tool_acts_defaultSelezioneDefault item label for Input Tool dropdown list.cv_invalid_trans_diff_branchesNon puoi creare un collegamento tra attività in branch differentiError message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activityUn branch verso {0} già esiste.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityUn branch da {0} già esiste.Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceNon puoi connettere un nuovo collegamento a una sequenza chiusa.Error message displayed after drawing a transition from an activity in a closed sequence.al_cannot_move_to_diff_opt_seqPer spostare un'attività verso una diversa sequenza all'interno di Sequenze opzionali, prima trascina l'attività fuori dall'area della Sequenza opzionale, quindi clicca e trascinala verso la nuova posizione all'interno delle Sequenze opzionali.Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitybranch_mapping_dlg_branch_item_default{0} (default)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.learner_choice_grp_lblScelta dello studenteA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesDimensioni gruppo egualiCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgEditor obiettiviDialog for adding/editing/removing competencescompetences_lblObiettiviLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnAggiungiAdd competence buttoncompetence_def_dlgDefinizione obiettiviTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsUn obiettivo con il titolo {0} già esisteWarning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankIl titolo dell'obiettivo non può essere lasciato in biancoWarning message when you try to define a competence with a blank competence titlemap_comptence_btnPiano degli obiettiviLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnProgrammazione obiettiviTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblObiettiviLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumental_activity_view_competence_mappings_invalidAssicurati di aver selezionato un'attività prima di tentare di vederne la mappa degli obiettivi.Warning that appears when no activity is selected when the user tries to view competence mappingscv_invalid_optional_activity_no_branchesRimuovi tutte le sezioni dipendenti da {0} prima di impostarlo come attività opzionale.Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.map_gate_conditions_btnMappa delle condizioniButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgTutte le restanti condizioni devono essere rilevate per lo stato di barriera chiusa selezonato.Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openapertoOpen state for gate activity, allows learners to pass through itgate_closedchiusoClosed state for gate activity, does not allow learners to pass through itcompetence_editor_warning_competence_mappedL'obiettivo che stai tentando di eliminare è programmato attualmente per una o più attività. Eliminando quest'obiettivo, si rimuoverà ogni relativa programmazione. Sei sicuro di voler procedere? Warning message when you attempt to delete a competence that is mapped to one or more activities.branch_mapping_dlg_condition_col_value_minMinore o uguale a {0}Value for Condition field in mapping datagrid when Less than option is selected.act_seq_lock_chkSblocca il contenitore di sequenze opzionali prima di assegnare quest'attività ad una sequenza opzionale.Alert Message if user drags the activity to locked optional sequences container.to_conditions_dlg_defin_item_header_lbl[Scegli l'Output]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_update_defaultConditionsStai per aggiornare le tue condizioni per la definizione dell'output selezionato. Ciò rimuoverà tutti i collegamenti ai rami esistenti. Vuoi continuare?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.grouping_invalid_with_common_names_msgImpossibile salvare il progetto in quanto l'attività di gruppo '{0}' ha più di un gruppo con lo stesso nome. Ricontrollare il raggruppamento e riprovare.Alert message displayed when the Grouping validation fails during saving a design.to_condition_invalid_value_rangeLa {0} non rientra nella gamma delle condizioni esistentiAlert message when a submitted condition interferes with another previously submitted condition. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ja_JP_dictionary.xml 12 Jan 2010 01:19:51 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSstream_urlhttp://{0}foundation.orgmnu_file_insertdesign挿入/マージ...gpl_license_urlwww.gnu.org/licenses/gpl.txtmnu_tools_transコネクタでつなぐws_del_confirm_msgこのファイル/フォルダを削除してもいいですか?cv_eof_changes_applied変更は適用されました。about_popup_trademark_lbl{0} は {0} Foundation ( {1} ) の商標です。about_popup_copyright_lbl© 2002-2009 {0} Foundation.trans_btnコネクタtrans_dlg_titleコネクタmnu_file_import_communityLAMS コミュニティからのインポートpi_define_monitor_cb_lblあとでモニタで定義するgate_mapping_auto_condition_msg全残りの閉じられた状態の選択済ゲートを割り当てられます。sys_error_msg_finish作業を続けるためには LAMS 教材作成を再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?prefs_dlg_title詳細設定pi_definelaterあとでモニタで定義するmnu_help_abtLAMS についてcompetence_mappings_btn権限の割り当てmnu_tools_prefs詳細設定chosen_grp_lblあとでモニタで選択するcancel_btn_tooltipレッスンモニタに戻る。apply_changes_btn_tooltipデザインの変更を適用して、レッスンモニタに戻ります。al_activity_view_competence_mappings_invalid権限の割り当てを表示する前にアクティビティを選択してください。competence_editor_warning_competence_mapped削除中の権限には、現在 1 つ以上のアクティビティが配置されています。この権限を削除することは、その割り当ても削除されることになります。続けますか?grp_chk_clear_branch_mappings警告: すべての既存グループを、このグルーピング・アクティビティにリンクされた分岐の割り当てに変更しようとしていますが、続けますか?redundant_branch_mappings_msgデザインは、削除される未使用の分岐を含みます。続行しますか?map_comptence_btn権限の割り当てgroupmatch_dlg_title_lblグループを分岐に割り当てるpi_mapping_btn_lbl割り当て設定branch_mapping_dlg_match_dgd_lbl割り当てbranch_mapping_auto_condition_msgまだ割り当てられていない条件は、デフォルトの分岐にマップされます。branch_mapping_no_mapping_msg割り当てが選択されていません。map_gate_conditions_btnゲート条件の割り当てcv_invalid_design_savedデザインを保存しましたが、まだ有効な形式ではありません。潜在的問題点 ボタンをクリックして問題を確認してください。ld_val_issue_column問題点ld_val_title検証時の問題点to_conditions_dlg_defin_bool_type真/偽cv_show_validation問題点chosen_branch_act_lbl先生の選択learner_choice_grp_lbl学習者の選択cv_trans_target_act_missingコネクタの片側のアクティビティが無くなっています。ws_newfolder_okOKpi_seqシーケンスto_conditions_dlg_defin_long_type範囲to_conditions_dlg_defin_item_header_lbl[ 出力を選択 ]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_value_col_lbl条件to_conditions_dlg_options_item_header_lbl[ オプション ]sequence_act_title_new{0} {1}close_mc_tooltip最小化to_conditions_dlg_gte_lblこれ以上:to_conditions_dlg_lte_lblこれ以下:ws_dlg_insert_btn挿入branch_mapping_dlg_branch_item_default{0} (規定値)pi_group_matching_btn_lblグループを分岐に割り当てるpi_tool_output_matching_btn_lbl分岐の一致条件refresh_btn更新to_conditions_dlg_condition_items_update_defaultConditions選択されたアウトプットの、すべての条件を更新しようとしています。この際、すでに存在する分岐へのすべてのリンクが消去されます。続行しますか?to_conditions_dlg_defin_user_defined_type設定済みto_conditions_dlg_range_lbl範囲branch_mapping_dlg_branch_col_lbl分岐branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblグループbranch_mapping_no_branch_msg分岐が選択されていません。branch_mapping_no_condition_msg条件が選択されていません。branch_mapping_dlg_condition_col_value{0} から {1}branch_mapping_dlg_condition_col_value_exact{0}branch_mapping_no_groups_msgグループが選択されていません。group_branch_act_lblグループを元とするbranch_mapping_dlg_branches_lst_lbl分岐groupmatch_dlg_groups_lst_lblグループgroupnaming_dlg_title_lblグループ名pi_activity_type_branching分岐アクティビティpi_branch_type分岐のタイプsequence_act_titleシーケンスtool_branch_act_lbl学習者のアウトプットto_condition_start_value開始値to_condition_end_value終了値to_condition_invalid_value_range{0} は前掲の範囲から外れています。to_condition_invalid_value_direction{0} は {1} を超えて設定することはできません。is_remove_warning_msg警告: 学習履歴を削除しようとしています。このレッスンを {0} のままにしておきますか?al_continue続行branch_mapping_dlg_condition_linked_msg{0} は既存の分岐と接続しています。続行しますか?branch_mapping_dlg_condition_linked_all条件があります。branch_mapping_dlg_condition_linked_singleこの条件はto_condition_untitled_item_lbl無題 {0}cv_activityProtected_activity_link_msgこの {0} は {1} とリンクしています。branch_mapping_dlg_condition_col_value_max{0} 以上optional_act_btnアクティビティoptional_seq_btnシーケンスoptional_seq_btn_tooltip選択枠シーケンスを配置します。pi_optSequence_remove_msg_titleシーケンスの削除pi_optSequence_remove_msg削除するシーケンスにアクティビティが含まれる場合、同時に削除されます。シーケンスを削除しますか?pi_no_seq_actシーケンス番号lbl_num_sequences{0} - シーケンスactivityDrop_optSequence_error_msgアクティビティはシーケンスの上にドロップしてください。cv_invalid_optional_seq_activity_no_branchesそれを選択枠シーケンスに追加する前に、{0} に接続している分岐を削除してください。ta_iconDrop_optseq_error_msgこのコンテナには有効なシーケンスがありません。cv_invalid_optional_activity_no_branchesそれを選択枠アクティビティに追加する前に、{0} に接続している分岐を削除してください。opt_activity_seq_title選択枠シーケンスto_conditions_dlg_lt_lbl以下branch_mapping_dlg_condition_col_value_min{0} 以下pi_actアクティビティcv_activity_helpURL_undefined{0}のヘルプは見つかりませんでしたcv_untitled_lbl無題 - 1mnu_help_helpヘルプccm_open_activitycontentアクティビティの編集ccm_copy_activityコピーccm_paste_activityペーストccm_piプロパティ・インスペクタccm_author_activityhelpヘルプws_dlg_description説明trans_dlg_nogate未設定pi_dayscv_close_return_to_ext_src閉じて {0} に戻るmnu_file_apply_changes適用apply_changes_btn適用cancel_btnキャンセルcv_activity_readOnlyアクティビティは {0} になれません。読み込み専用です。cv_edit_on_fly_lblライブ編集cv_element_readOnly_action_del削除されましたcv_element_readOnly_action_mod変更されましたcv_eof_finish_modified_msg警告: デザインは変更されています。保存せずに閉じますか?mnu_file_finish終了about_popup_title_lbl{0} についてal_cancelキャンセルbranching_act_title分岐pi_activity_type_sequenceシーケンス・アクティビティ ({0})pi_branch_tool_acts_lblインプット (ツール)pi_condmatch_btn_lbl条件を作成to_conditions_dlg_title_lblアウトプット条件を作成al_done完了condmatch_dlg_cond_lst_lbl条件condmatch_dlg_title_lbl分岐の一致条件pi_defaultBranch_cb_lblデフォルトto_conditions_dlg_add_btn_lbl+ 追加to_conditions_dlg_clear_all_btn_lbl全消去to_conditions_dlg_remove_item_btn_lbl- 削除to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblTocv_gateoptional_hit_chk選択枠アクティビティにゲート・アクティビティを追加することはできません。prefix_copyof_count{0} をコピーws_save_folder_invalidこのフォルダーにデザインを保存することはできません。有効なサブフォルダを選択してください。ws_click_file_openデザインをクリックして開いてください。ws_license_lblライセンスws_license_comment_lbl追加ライセンス情報branch_btn分岐flow_btnフローmnu_file_importインポートcv_design_export_unsaved未保存のデザインはエクスポートすることができません。cv_design_unsavedキャンバス上のデザインは変更されています。保存せずに続行しますか?mnu_file_exportエクスポートws_click_virtual_folderこのフォルダを利用することはできません。mnu_file_exit終了ws_no_file_openファイルが見つかりません。cv_invalid_trans_circular_sequence繰り返すシーケンスを作ることはできませんbin_tooltipアクティビティ・シーケンスから削除するために、ごみ箱にアクティビティをドロップしてください。new_btn_tooltip現在のシーケンスをクリアして、ワークスペースを準備しますopen_btn_tooltipアクティビティ・シーケンスを開くファイルダイアログを表示しますsave_btn_tooltip現在のアクティビティ・シーケンスを保存しますcopy_btn_tooltip選択したアクティビティをコピーしますpaste_btn_tooltipアクティビティをペーストしますoptional_btn_tooltip選択枠アクティビティを配置します。gate_btn_tooltip終了点を配置しますflow_btn_tooltipフローコントロール・アクティビティを配置しますgroup_btn_tooltipグループ・アクティビティを配置しますcv_activity_dbclick_readonly読み込み専用デザインのツールを編集することはできません。デザインの複製を保存してから再度操作してください。cv_readonly_lbl読み込み専用al_empty_design空のデザインを保存することはできませんcv_autosave_err_msgデザインを自動保存する際にエラーが発生しました。Flash Player の記憶領域設定を増やしてください。cv_autosave_rec_msg最後に失われたか、未保存のデザインを回復しようとしています。現在のデザインはクリアされます。続けますか?cv_autosave_rec_title警告mnu_file_recover再読込...cv_activity_copy_invalidこのアクティビティはコピーすることができません。al_activity_copy_invalid コピーする前にアクティビティを選択する必要がありますpi_lbl_currentgroup現在のグループpi_lbl_desc説明pi_lbl_groupグループpi_lbl_titleタイトルpi_max_act最大値 {0}pi_min_act最小値 {0}branch_btn_tooltip分岐を配置しますact_seq_lock_chkこのアクティビティを選択枠シーケンスに配置する前に、選択枠のロックを解除してください。pi_minspi_no_grouping未設定pi_num_learners学習者数pi_optional_title選択枠アクティビティpi_runofflineオフラインアクティビティpi_start_offsetタイマーpi_titleプロパティprefix_copyofコピー元: prefs_dlg_cancelキャンセルprefs_dlg_lng_lbl言語prefs_dlg_okOKprefs_dlg_theme_lblテーマproperty_inspector_titleプロパティrandom_grp_lbl自動で割り当てるsave_btn保存sched_act_lblタイマーで設定synch_act_lbl全員を待つtk_titleアクティビティ・ツールキットcv_invalid_optional_activity選択枠アクティビティに設定する前に、{0} に接続するコネクタを削除してください。trans_dlg_cancelキャンセルtrans_dlg_gate同期trans_dlg_gatetypecmbタイプtrans_dlg_okOKws_Rootルートws_chk_overwrite_resource警告: このシーケンスを上書きしようとしています!ws_click_folder_fileフォルダをクリックして保存するか、デザインをクリックして上書き保存してくださいws_copy_same_folder同じ場所にはドロップできませんws_dlg_cancel_buttonキャンセルws_dlg_location_button場所ws_dlg_ok_buttonOKws_dlg_open_btn開くws_dlg_properties_buttonプロパティws_dlg_save_btn保存ws_dlg_titleワークスペースws_newfolder_cancelキャンセルws_no_permissionこの資料を書き込む権限がありませんws_tree_mywspワークスペースws_tree_orgsグループact_lock_chkこのアクティビティを選択枠アクティビティに配置する前に、選択枠のロックを解除してください。sys_error_msg_startシステムエラーが発生しました: al_confirm確認al_okOKapp_chk_langload言語データはロードされませんでしたsys_errorシステムエラーpi_num_groupsグループ数opt_activity_title選択枠アクティビティlbl_num_activities{0} - アクティビティal_send送信al_cannot_move_activityこのアクティビティを動かすことはできません。act_tool_titleアクティビティ・ツールキットapp_chk_themeloadテーマはロードされませんでしたapp_fail_continueアプリケーションは作業を続行できません。サポートに連絡してくださいcopy_btnコピーcv_valid_design_savedおつかれさまでした!正しい形式のデザインが保存されましたdb_datasend_confirmデータをサーバに送信しましたdelete_btn削除gate_btnゲートgroup_btnグループgrouping_act_titleグループld_val_activity_columnアクティビティld_val_done完了license_not_selected著作権表示が選択されていません - 少なくとも一つ選択してくださいmnu_edit編集mnu_edit_copyコピーmnu_edit_cut切り取りmnu_edit_paste貼り付けmnu_edit_redoやり直すmnu_edit_undo元に戻すmnu_fileファイルmnu_file_close閉じるmnu_file_new新規作成mnu_file_open開くmnu_file_save保存mnu_file_saveas名前を付けて保存mnu_helpヘルプmnu_toolsツールmnu_tools_opt選択枠を配置new_btn新規作成new_confirm_msg画面上のデザインを消去してもよろしいですか?none_act_lbl未設定open_btn開くoptional_btn選択枠paste_btn貼り付けperm_act_lbl手動で開くpi_activity_type_gateゲート・アクティビティpi_activity_type_groupingグループ・アクティビティpi_end_offset終了ゲートpi_group_typeグループ・タイプpi_hoursal_activity_paste_invalidこのアクティビティを貼り付けすることはできません。condmatch_dlg_message_lbl目的の分岐のプロパティの"デフォルト"チェックボックスをクリックすると、デフォルトの分岐が選択されます。cv_design_insert_warningいったん別のシーケンスを挿入すると、取り消すことはできません - 元のシーケンスは、挿入された新しいシーケンスと共に、自動的に保存されます。元のシーケンスに戻すには、新しいシーケンスのアクティビティを手動で削除して、保存しなければならなくなります。現在のシーケンスを変更せずにおくには、キャンセルをクリックしてください。そうでない場合は、OKをクリックして、挿入するシーケンスを選択してください。cv_invalid_trans_targetこのオブジェクトへのコネクタを作成することはできませんal_cannot_move_to_diff_opt_seqアクティビティを選択枠シーケンス内の別のシーケンスに移動するには、まずそのアクティビティを選択枠シーケンスの外にドラッグしてから、選択枠シーケンス内の新たな位置にドラッグしてください。cv_activityProtected_activity_remove_msg削除するには {0} からこのアクティビティを外してください。trans_btn_tooltipコネクタをつなぎます (もしくは CTRL キーを押しながらドラッグ)al_activity_openContent_invalidアクティビティのコンテキストメニューで 開く/編集 をクリックする前に、アクティビティを選択する必要があります。cv_activity_cut_invalid このアクティビティは切り取りすることができません。cv_activityProtected_child_activity_link_msgこの {0} のアクティビティは、{1} とリンクしています。validation_error_outputTransitionType2遷移先コネクタを失ったアクティビティはありません。cv_invalid_design_on_apply_changes変更を適用することができません。いくつかのコネクタが失われています。cv_trans_readOnlyコネクタは {0} になれません。コネクタのターゲットは読み込み専用です。cv_invalid_optional_seq_activity選択枠シーケンスに設定する前に、{0} に接続するコネクタを削除してください。pi_equal_group_sizes同じグループサイズにするcompetence_editor_dlg権限の編集cv_invalid_trans_diff_branches異なる分岐に配置されているアクティビティをコネクタで接続することはできません。cv_invalid_trans_closed_sequence完結しているシーケンスに新しいコネクタを作成することはできません。validation_error_transitionNoActivityBeforeOrAfterコネクタは、前か後にアクティビティをつなげる必要がありますvalidation_error_inputTransitionType1このアクティビティにはコネクタの遷移元の端がありませんvalidation_error_inputTransitionType2遷移元コネクタを失ったアクティビティはありません。validation_error_outputTransitionType1このアクティビティにはコネクタの遷移先の端がありませんws_save_title_reserved_charsタイトルに特殊文字を含めることはできません: {0}competence_editor_warning_title_blank権限のタイトルは空欄にできませんcompetences_lbl権限competence_editor_add_competence_btn追加competence_def_dlg権限定義付けダイアログcompetences_mapped_to_act_lbl権限gate_open開くgate_closed閉じるws_dlg_date_modified_lbl最終変更日: {0}view_students_before_selection選択前に学習者一覧を見ますか?arrange_act_btnアレンジ・アクティビティsupport_act_btnサポートsupport_act_btn_tooltip選択枠サポート・アクティビティを配置します。gradebook_output_type成績表のアウトプットsupport_act_titleサポート・アクティビティsupport_msg_no_connectionサポート・アクティビティは他のアクティビティと接続できませんsupport_msg_invalid_childアクティビティのタイプ {0} はサポート・アクティビティとして追加できませんsupport_msg_max_children_reached以下にアクティビティをドロップできません: {0}. サポート・アクティビティは 最大 {1} の子アクティビティが使えます。support_msg_cannot_be_child他のアクティビティにサポート・アクティビティをドロップできません。cv_eof_finish_invalid_msgデザインは、編集を終了する際に正しい順序になっている必要があります。pi_branch_tool_acts_default-- 未選択 --ws_file_name_emptyファイル名をつけないと保存することができません。groupnaming_dialog_instructions_lblクリックして名前を変更してください。groupnaming_dialog_col_groupName_lblグループ名to_conditions_dlg_condition_items_name_col_lblタイトルgrouping_invalid_with_common_names_msgグループ・アクティビティ '{0}' に同じ名前のグループが1つ以上存在するため、デザインを保存することができません。グループを見直してから再度操作してください。al_group_name_invalid_blankグループ名は空欄にできません。al_group_name_invalid_existing同じグループ名は付けられません。ws_rename_ins新規名を入力してくださいpi_group_naming_btn_lblグループ名ws_newfolder_insフォルダ名を入力してくださいws_dlg_filenameファイル名ws_entre_file_nameデザインの名前を入力してから、保存 ボタンをクリックしてください。cv_invalid_trans_target_to_activity{0} へつながっているコネクタがすでに存在しますcv_invalid_trans_target_from_activity{0} とつながっているコネクタがすでに存在しますws_chk_overwrite_existingこのフォルダにはすでに {0} という名前のファイルが存在します。cv_invalid_branch_target_to_activity{0} への分岐はすでに作成済です。cv_invalid_branch_target_from_activity{0} からの分岐はすでに作成済です。competence_editor_warning_title_existsタイトル {0} の権限は有効になっていますal_alert通知branch_mapping_dlg_condtion_items_update_defaultConditions_zeroユーザーに定義された条件が見つからなかったので、アップデートできません。ツールの編集ページで設定する必要があるかもしれません。validation_error_activityWithNoTransitionアクティビティは、遷移元か遷移先となるコネクタが必要ですpreview_btn_tooltip_disabledシーケンスをプレビューするには、シーケンスを保存してからプレビューをクリックしてください。ws_view_license_button表示preview_btn_tooltip学習者視点でシーケンスをプレビューしますpreview_btnプレビューrename_btn名前の変更pi_parallel_title並行アクティビティabout_popup_version_lblバージョンabout_popup_license_lbl<p>このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された GNU 一般公衆利用許諾契約書 バージョン 2 の定める条件の下で再頒布または改変することができます。<br><br>{0}</p> \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ko_KR_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3close_mc_tooltip최소화to_conditions_dlg_gte_lbl같거나 큼to_conditions_dlg_lte_lbl같거나 작음groupnaming_dialog_col_groupName_lbl모둠이름mnu_file_insertdesign삽입/병합ws_dlg_insert_btn삽입branch_mapping_dlg_branch_item_default{0}(기본)pi_group_matching_btn_lbl모둠을 가지로 연계cv_invalid_branch_target_to_activity{0}으로의 갈래가 이미 있습니다.cv_invalid_branch_target_from_activity{0}로부터의 갈래가 이미 있습니다.cv_invalid_trans_closed_sequence닫힌 순차학습으로 새로운 이동을 연결할 수 없습니다.al_group_name_invalid_blank모둠 이름은 공백이어서는 안됩니다.al_group_name_invalid_existing모둠 이름은 유일해야 합니다.refresh_btn새로고침pi_tool_output_matching_btn_lbl조건별 갈래 연결to_conditions_dlg_defin_user_defined_type사용자 정의al_activity_paste_invalid죄송합니다. 이 종류의 활동은 붙여넣기 할 수 없습니다.pi_branch_tool_acts_default---선택---cv_invalid_trans_diff_branches다른 갈래에 있는 활동간 이동을 만들 수 없습니다.to_conditions_dlg_condition_items_update_defaultConditions선택된 출력 정의에 대한 조건을 갱신하려고 합니다.al_cannot_move_to_diff_opt_seq선택적 순차학습내에서 다른 순차학습으로 활동을 옮기기 위해서는 선택적 순차학습 영역내에서 학습을 바깥으로 드래그한다음 다시 클릭하고 순차학습내의 새로운 위치로 끌어다 놓으십시요. preview_btn_tooltip_disabled순차학습을 미리보기 위해서는 저장한 다음 미리보기를 클릭하세요.condmatch_dlg_message_lbl기본 갈래는 원하는 갈래의 속성영역에서 "기본"체크 박스를 선택하여 선택할 수 있습니다.branch_mapping_dlg_condtion_items_update_defaultConditions_zero사용자 정의 조건이 없어서 새로고침할 수 없습니다. 도구의 작성페이지에서 사용자 정의 조건들을 설정할 수 있습니다.grouping_invalid_with_common_names_msg모둠 활동 '{0}'에 같은 이름의 모둠이 한개 이상 있어서 학습설계를 저장할 수 없습니다. 모둠구성을 확인하고 다시 시도하십시요.cv_design_insert_warning한번 다른 순차학습을 삽입하면 취소할 수 없습니다. 이전 순차학습은 새 순차학습이 삽입된 상태로 자동으로 저장될 것 입니다. 이전의 순차학습으로 돌아가기 위해서는 수동으로 모든 새로운 순차학습을 삭제하고 저장해야 합니다. 현재 순차학습을 변경하지 않으려면 취소를 클릭하시고 순차학습을 삽입하기 위해서는 확인을 클릭하세요.branch_mapping_no_condition_msg조건이 선택되지 않았습니다.branch_mapping_auto_condition_msg남은 조건들은 기본 갈래에 할당될 것입니다.branch_mapping_dlg_match_dgd_lbl할당branch_mapping_dlg_condition_col_value{0}에서 {1} 까지 범위branch_mapping_dlg_condition_col_value_exact{0}의 정확한 값pi_mapping_btn_lbl할당 설정pi_define_monitor_cb_lbl관찰에서 정의groupmatch_dlg_title_lbl모둠을 갈래에 할당branch_mapping_no_groups_msg모둠이 선택되지 않았습니다.branch_mapping_dlg_branches_lst_lbl갈래group_branch_act_lbl모둠 기반groupmatch_dlg_groups_lst_lbl모둠들groupnaming_dlg_title_lbl모둠 이름 짓기pi_activity_type_branching갈래 활동pi_branch_type갈래 형식pi_group_naming_btn_lbl모둠이름짓기sequence_act_title순차학습tool_branch_act_lbl도구 출력chosen_branch_act_lbl교수자 선택to_condition_start_value최소값to_condition_end_value최대값pi_optSequence_remove_msg_title순차학습 제거to_condition_invalid_value_range{0}은 기존 조건 범위에 포함되지 않습니다.to_conditions_dlg_defin_bool_type참/거짓to_condition_invalid_value_direction{0}은 {1}보다 클 수 없습니다.optional_seq_btn_tooltip선택 순차학습활동 집합 만들기is_remove_warning_msg학습이 제거될 것입니다. 이 학습을 {0}로 보존하기를 원하십니까?al_continue계속branch_mapping_dlg_condition_linked_msg{0}이 기존 갈래와 연결되었습니다. 계속하시겠습니까?branch_mapping_dlg_condition_linked_all다음 조건들이 있습니다.branch_mapping_dlg_condition_linked_single이 조건은 다음과 같습니다.to_condition_untitled_item_lbl제목없음 {0}redundant_branch_mappings_msg이 설계는 사용되지 않아서 제거될 갈래 할당을 포함하고 있습니다. 계속하시겠습니까?cv_activityProtected_activity_remove_msg제거하기 위해서는 이 활동을 {0}로 선택하지 마십시요.cv_activityProtected_activity_link_msg{0}이 {1}과 연결되어 있습니다.cv_activityProtected_child_activity_link_msg{0}이 {1}와 연결된 하위활동을 가지고 있습니다.branch_mapping_dlg_condition_col_value_max{0}과 크거나 같음optional_act_btn활동optional_seq_btn순차학습pi_optSequence_remove_msg제거될 순차학습은 삭제될 활동을 포함할 수도 있습니다. 이 순차학습들을 제거하시겠습니까?pi_no_seq_act순차학습의 수lbl_num_sequences{0} - 순차학습activityDrop_optSequence_error_msg순차학습의 하나로 이 활동을 할당하세요.cv_invalid_optional_seq_activity_no_branches선택 순차학습에 추가하기전에 {0}으로 부터 연결된 갈래를 제거하세요.ta_iconDrop_optseq_error_msg이 컨테이너에 활성화된 순차학습이 없습니다.act_seq_lock_chk선택순차학습에 이 활동을 배정하기 전에 선택순차학습 컨테이너의 잠금을 해제하십시요.cv_invalid_optional_seq_activity선택 순차학습으로 설정하기 전에 연결된 이동을 제거하세요.cv_invalid_optional_activity_no_branches선택 순차학습으로 설정하기 전에 {0}로 부터 연결된 갈래를 제거하세요.opt_activity_seq_title선택적 순차학습to_conditions_dlg_lt_lbl적거나 같음branch_mapping_dlg_condition_col_value_min{0} 과 같거나 적음pi_act활동pi_seq순차학습to_conditions_dlg_defin_long_type범위to_conditions_dlg_defin_item_header_lbl[정의들]to_conditions_dlg_defin_item_fn_lbl{0} ({1}) to_conditions_dlg_condition_items_name_col_lbl조건명to_conditions_dlg_condition_items_value_col_lbl조건to_conditions_dlg_options_item_header_lbl[선택]sequence_act_title_new{0} {1}cv_untitled_lbl제목없음-1mnu_help_help작성하기 도움말ccm_open_activitycontent활동 내용 열기/편집ccm_copy_activity활동 복사ccm_paste_activity활동 붙이기ccm_pi속성 찾기ccm_author_activityhelp저작 활동 도움말ws_dlg_description설명trans_dlg_nogate없음pi_days날짜들cv_close_return_to_ext_src닫고 {0} 로 돌아가기cv_eof_changes_applied변경이 성공적으로 적용되었습니다mnu_file_apply_changes변경 적용validation_error_transitionNoActivityBeforeOrAfter이동 전 혹은 후에 활동이 있어야 합니다 validation_error_activityWithNoTransition활동은 전단계 혹은 다음단계 이동이 있어야 합니다.validation_error_inputTransitionType1이 활동은 전단계 이동이 없습니다.validation_error_inputTransitionType2어떤 활동도 전단계 이동이 누락된 것이 없습니다validation_error_outputTransitionType1이 활동은 다음단계 이동이 없습니다.validation_error_outputTransitionType2어떤 활동도 다음 단계 이동이 누락된 것이 없습니다cv_invalid_design_on_apply_changes변경을 적용할 수 없습니다. 하나 혹은 그 이상의 이동이 누락되었습니다.apply_changes_btn변경 적용apply_changes_btn_tooltip학습설계에 변경을 적용하고 학습관찰로 돌아갑니다.cancel_btn취소cv_activity_readOnly활동이 {0} 이 될 수 없습니다. 활동은 읽을 수만 있습니다.cv_edit_on_fly_lbl라이브 편집cv_element_readOnly_action_del제거됨cv_element_readOnly_action_mod수정됨cv_eof_finish_invalid_msg편집을 마치기 위해서는 학습설계가 유효해야 합니다.cv_eof_finish_modified_msg주의:학습설계가 수정되었습니다. 저장하지 않고 닫기를 원하십니까?cv_trans_readOnly이동이 {0}이 될 수 없습니다. 이동하고자 하는 목표는 읽기 전용입니다.cancel_btn_tooltip학습관찰로 돌아가기mnu_file_finish종료about_popup_title_lbl{0} 정보about_popup_version_lbl버전about_popup_trademark_lbl {0}은 {0}재단의 등록상표입니다 ( {1} ). about_popup_license_lbl이 프로그램은 프리소프트웨어 입니다; Free Software Foundationd 에 의해 발간된 GNU General Public Licence version2의 조건에 한해서 재배포하거나 수정할 수 있습니다.stream_reference_lbl람스gpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.org branching_act_title분기pi_activity_type_sequence순차학습 활동 ({0})groupnaming_dialog_instructions_lbl이 값을 변경하기위해서는 이름을 클릭하세요.pi_branch_tool_acts_lbl입력(도구)pi_condmatch_btn_lbl조건 설정to_conditions_dlg_title_lbl도구 출력 조건 만들기al_done완료condmatch_dlg_cond_lst_lbl조건들condmatch_dlg_title_lbl조건들을 갈래와 연결하기pi_defaultBranch_cb_lbl기본to_conditions_dlg_add_btn_lbl+ 추가to_conditions_dlg_clear_all_btn_lbl모두 지움to_conditions_dlg_remove_item_btn_lbl- 제거to_conditions_dlg_from_lbl시작to_conditions_dlg_to_lblto_conditions_dlg_range_lbl범위branch_mapping_dlg_branch_col_lbl갈래branch_mapping_dlg_condition_col_lbl조건branch_mapping_dlg_group_col_lbl모둠branch_mapping_no_branch_msg갈래가 선택되지 않았습니다.branch_mapping_no_mapping_msg연결이 선택되지 않았습니다.al_send보내기al_cannot_move_activity죄송합니다. 이 활동을 이동할 수 없습니다.cv_gateoptional_hit_chk선택활동으로 게이트 활동을 추가할 수 없습니다.prefix_copyof_count사본({0})ws_save_folder_invalid이 폴더에 학습설계를 저장할 수 없습니다. 올바른 하위폴더를 선택하십시요.ws_click_file_open열고자 하는 설계를 클릭하십시요.ws_license_lbl라이선스ws_license_comment_lbl추가 라이선스 정보cv_invalid_optional_activity선택활동으로 설정하기 전에 {0}으로나 로부터의 이동을 제거하시오.cv_trans_target_act_missing이동의 두번째 활동이 빠져 있습니다.cv_invalid_trans_target_from_activity{0} 로부터의 이동이 이미 존재합니다.cv_invalid_trans_target_to_activity{0} 로의 이동이 이미 존재합니다.branch_btn갈래flow_btn흐름mnu_file_import가져오기cv_design_export_unsaved저장되지 않은 설계를 내보내기 할 수 없습니다.cv_design_unsaved캔버스 상의 학습설계가 변경되었습니다. 저장하지 않고 계속하시겠습니까?mnu_file_export내보내기ws_chk_overwrite_existing이 폴더에는 파일이름이 {0} 인 파일이 이미 존재합니다.act_tool_title활동 도구al_alert주의al_cancel취소al_confirm확인al_ok확인app_chk_langload언어자료가 불러들여지지 못함app_chk_themeload테마자료가 불러들여지지 못함app_fail_continue계속할수없습니다. 지원부서에 연락하십시요chosen_grp_lbl선택됨copy_btn복사cv_invalid_design_saved설계가 유효하지 않으나 저장되었음. 무엇이 문제인지 '이슈들'을 클릭하세요cv_invalid_trans_target이 객체로 이동을 만들 수 없습니다cv_show_validation이슈들cv_valid_design_saved축하합니다. 학습설계가 유효하며 저장되었습니다db_datasend_confirm서버에 자료를 보내주어 감사합니다delete_btn삭제gate_btn게이트group_btn그룹grouping_act_title그룹만들기ld_val_activity_column활동ld_val_done완료ld_val_issue_column이슈ld_val_title유효성 이슈들license_not_selected아무 라이선스가 선택되지 않았습니다. 라이선스를 선택하십시요mnu_edit편집mnu_edit_copy복사mnu_edit_cut잘라내기mnu_edit_paste붙이기mnu_edit_redo반복실행mnu_edit_undo실행취소mnu_file파일mnu_file_close닫기mnu_file_new새로만들기mnu_file_open열기mnu_file_save저장mnu_file_saveas다음과 같이 저장mnu_help도움말mnu_help_abt람스에 대해mnu_tools도구들mnu_tools_opt선택활동 그리기mnu_tools_prefs선택 설정mnu_tools_trans이동선 긋기new_btn새로 만들기new_confirm_msg당신의 설계를 지우기를 원하십니까?none_act_lbl없음open_btn열기optional_btn선택활동paste_btn붙이기perm_act_lbl허가pi_activity_type_gate게이트 활동pi_activity_type_grouping그룹만들기 활동pi_definelater관찰에서 정의pi_end_offset게이트 설정pi_group_type그룹 형태pi_hours시간pi_lbl_currentgroup현재 그룹pi_lbl_desc설명pi_lbl_group그룹만들기pi_lbl_title제목pi_max_act최대 {0}pi_min_act최소 {0}pi_minspi_no_grouping없음pi_num_learners학습자 수pi_optional_title선택적 활동pi_runoffline오프라인 활동pi_start_offset게이트 열기pi_title속성prefix_copyof사본prefs_dlg_cancel취소prefs_dlg_lng_lbl언어prefs_dlg_ok확인prefs_dlg_theme_lbl테마prefs_dlg_title선택적설정preview_btn미리보기property_inspector_title속성random_grp_lbl임의rename_btn다른 이름으로save_btn저장하기sched_act_lbl일정synch_act_lbl동기화tk_title활동 도구모음trans_btn이동trans_dlg_cancel취소trans_dlg_gate동기화trans_dlg_gatetypecmb형식trans_dlg_ok확인trans_dlg_title이동ws_Root최상위 폴더ws_chk_overwrite_resource주의: 이 시퀀스를 덮어쓸려고 합니다.ws_click_folder_file저장할 폴더를 클릭하거나 덮어쓸 설계를 클릭하세요ws_copy_same_folder소스와 목표 폴더가 같습니다.ws_dlg_cancel_button취소ws_dlg_filename파일명ws_dlg_location_button위치ws_dlg_ok_button확인ws_dlg_open_btn열기ws_dlg_properties_button속성ws_dlg_save_btn저장ws_dlg_title작업공간ws_newfolder_cancel취소ws_newfolder_ins새로운 폴더이름을 입력하시요.ws_newfolder_ok확인ws_no_permission죄송합니다. 당신은 이 자원에 쓸 수 있는 권한이 없습니다ws_rename_ins새로운 이름을 입력하세요ws_tree_mywsp내 작업공간ws_tree_orgs내 그룹ws_view_license_button보기act_lock_chk활동을 선택활동으로 하기 위해서는 선택활동 컨테이너의 잠금을 해제하십시요sys_error_msg_start다음과 같은 시스템 오류가 발생하였습니다sys_error_msg_finish계속하기위해서는 람스를 다시 시작해야 합니다. 이문제를 해결하기 위해서 다음 정보를 저장하기를 원합니까?sys_error시스템 오류pi_num_groups그룹 수pi_parallel_title병행 활동opt_activity_title선택활동lbl_num_activities{0}-활동들ws_click_virtual_folder이 폴더를 사용할 수 없습니다.mnu_file_exit나감ws_no_file_open발견된 파일이 없습니다.cv_invalid_trans_circular_sequence당신은 순환 순차학습을 만들 권한이 없습니다.bin_tooltip활동 순차학습에서 활동을 제거하기 위해서 이 휴지통에 활동을 넣으세요.new_btn_tooltip현재 순차학습을 지우고 작업공간을 사용할 수 있도록 초기화open_btn_tooltip활동 순차학습을 열기위해 파일 대화상자 열기save_btn_tooltip현재 활동 순차학습의 빠른 저장copy_btn_tooltip선택된 활동 복사paste_btn_tooltip선택된 활동 사본을 붙여넣기trans_btn_tooltip활동간 이동을 그리기 위해서 이 펜을 사용하거나 컨트롤키를 누르세요.optional_btn_tooltip선택활동모음 생성하기gate_btn_tooltip멈출 위치 생성branch_btn_tooltip분기 활동 생성(램스 2.1버전에서 가능)flow_btn_tooltip학습 흐름제어 활동 생성group_btn_tooltip그룹 활동 생성preview_btn_tooltip학습자가 볼 순차학습 미리보기cv_activity_dbclick_readonly일기전용의 학습설계를 편집할 수 없습니다. 설계 사본을 저장하고 다시 시도하십시요. cv_readonly_lbl읽기 전용al_empty_design죄송합니다. 비어있는 학습설계를 저장할 수 없습니다.cv_autosave_err_msg당신의 학습설계를 자동으로 저장하는과정에서 오류가 발생하였습니다. 플래시 플레이어 설정값을 조정하십시오.cv_autosave_rec_msg마지막에 손실되거나 저장되지 않은 학습설계를 복구할려고 합니다. 현재 학습설계는 지워질 것입니다. 계속하겠습니까?cv_autosave_rec_title경고mnu_file_recover복원하기cv_activity_copy_invalid죄송합니다. 당신은 하위활동을 복사할 권한이 없습니다.cv_activity_cut_invalid죄송합니다. 당신은 하위 활동을 잘라내기 할 권한이 없습니다.al_activity_copy_invalid죄송합니다. 복사를 클릭하기 전에 활동을 선택해야 합니다.al_activity_openContent_invalid죄송합니다. 오른쪽 클릭메뉴에서 활동 컨텐츠 열기/편집 메뉴를 클릭하기 전에 활동을 선택해야 합니다.ws_del_confirm_msg이 파일/폴더를 삭제하는 것이 확실합니까?ws_file_name_empty죄송합니다. 파일이름 없이 학습설계를 저장할 수 없습니다.ws_entre_file_name학습설계 이름을 입력하고 저장버튼을 클릭해 주십시요.cv_activity_helpURL_undefined{0} 에대한 도움말 페이지를 찾을 수 없습니다.about_popup_copyright_lbl© 2002-2009 {0} 재단learner_choice_grp_lbl학습자의 선택 pi_equal_group_sizes동일한 모둠 크기competence_editor_dlg역량편집기competences_lbl역량competence_editor_add_competence_btn추가competence_def_dlg역량 정의 대화창competence_editor_warning_title_exists제목이 {0}인 역량이 이미 존재합니다.competence_editor_warning_title_blank역량 제목은 비워둘 수 없습니다.competence_editor_warning_competence_mapped삭제하고자하는 역량은 한개이상의 활동과 연계되어 있습니다. 이 역량을 삭제하면 연계도 삭제됩니다. 계속하시겠습니까?map_comptence_btn역량과 연계competence_mappings_btn역량 연계competences_mapped_to_act_lbl역량들map_gate_conditions_btn관문 조건과 연계gate_mapping_auto_condition_msg모든 나머지 조건들은 선택된 관문들의 닫힌 상태와 연계될 것입니다.gate_open열림gate_closed닫힘al_activity_view_competence_mappings_invalid역량연계를 보기전에 활동을 선택하였는지 확인하십시요.ws_dlg_date_modified_lbl마지막 수정됨:{0}ws_save_title_reserved_chars제목에는 특수 문자를 포함할 수 없습니다:{0}mnu_file_import_community램스 사용자모임에서 가져오기gradebook_output_type성적 산출물view_students_before_selection선택하기전에 학습자들 보기arrange_act_btn활동 배치support_act_btn보조support_act_btn_tooltip선택적 보조 활동집합 만들기support_act_title보조 활동support_msg_no_connection지원활동은 다른 활동과 연결될 수 없습니다.support_msg_invalid_child{0} 타입의 활동들은 지원활동으로 추가될 수 없습니다.support_msg_max_children_reached여기에 {0} 활동을 놓을 수 없습니다. 지원활동은 최대 {1}개의 하위 활동만을 허용합니다.support_msg_cannot_be_child다른 활동안에 지원 활동을 놓을 수 없습니다.grp_chk_clear_branch_mappings이 모둠구성 활동과 연관된 모든 모둠별 분기 연계가 삭제될 것입니다. 계속하시겠습니까? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/lt_LT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/lt_LT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/lt_LT_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3mnu_file_finishPabaigacv_invalid_branch_target_from_activityŠaka iš {0} jau yra.about_popup_title_lblApie - {0}cv_invalid_trans_closed_sequenceNegalima prijungti naujo perėjimo prie užvertos sekos.al_cannot_move_to_diff_opt_seqNorėdami perkelti veiklą į skirtingą seką pasirinktinėse sekose, pirmiausia nuvilkite veiklą iš pasirinktinių sekų srities, tada spustelėkite ir nuvilkite į naują vietą pasirinktinų sekų viduje.al_group_name_invalid_blankGrupės negali būti be pavadinimo.al_group_name_invalid_existingGrupių vardai turi nesikartoti.learner_choice_grp_lblMokinio pasirinkimaspi_equal_group_sizesVienodi grupių dydžiaicompetence_editor_dlgKompetencijos rengyklėcompetences_lblKompetencijoscompetence_editor_add_competence_btnPridėticompetence_def_dlgKompetencijos apibrėžimo dialogascompetence_editor_warning_title_existsJau yra kompetencija su antrašte {0}competence_editor_warning_title_blankKompetencija turi turėti antraštęcompetence_editor_warning_competence_mappedKompetencija, kurią ketinate šalinti, šiuo metu yra atvaizduota vienoje ar keliose veiklose. Šios kompetencijos pašalinimas panaikins visus jos atvaizdavimus. Ar tikrai norite tęsti?map_comptence_btnAtvaizduoti kompetencijosecompetence_mappings_btnKompetencijų atvaizdavimaicompetences_mapped_to_act_lblKompetencijosmap_gate_conditions_btnAtvaizduoti loginių elementų sąlygasgate_mapping_auto_condition_msgVisos likusios sąlygos bus atvaizduotos pasirinktų loginių elementų užvertoje būklėje.gate_openatvertigate_closedužvertial_activity_view_competence_mappings_invalidĮsitikinkite, kad prieš bandydami peržiūrėti kompetencijos atvaizdavimus pasirinkote atitinkamą veiklą.ws_dlg_date_modified_lblModifikuota: {0}ws_save_title_reserved_charsAntraštėje negali būti specialių simbolių: {0}mnu_file_import_communityImportuoti iš LAMS bendruomenės ...gradebook_output_typePažymių knygelės išvestisview_students_before_selectionPeržiūrėti mokinius prieš pasirenkant?arrange_act_btnSutvarkyti veiklassupport_act_btnPriežiūrasupport_act_btn_tooltipSukurkite pasirinktinų priežiūros veiklų rinkinį.support_act_titlePriežiūros veiklasupport_msg_no_connectionPriežiūros veiklos negali būti sujungtos su kitomis veiklomissupport_msg_invalid_child{0} tipo veiklos negali būti pridėtos kaip priežiūros veiklossupport_msg_max_children_reachedNegalima numesti veiklos: {0}. Priežiūros veikla gali turėti daugiausiai {1} dukterinių veiklų.support_msg_cannot_be_childNegalima numesti priežiūros veiklos į kitos veiklos vidų.grp_chk_clear_branch_mappingsPerspėjimas: tai panaikins visus esamos grupės atvaizdavimus, susietus su šia grupine veikla, šakose. Norite tęsti?al_continueTęstibranch_mapping_dlg_condition_linked_msg{0} susietas su esama šaka. Norite tęsti?branch_mapping_dlg_condition_linked_allYra sąlygųbranch_mapping_dlg_condition_linked_singleŠi sąlyga yrato_condition_untitled_item_lblBe pavadinimo {0}redundant_branch_mappings_msgProjekte yra nepanaudotų šakų atvaizdavimų, kurie bus pašalinti. Norite tęsti?cv_activityProtected_activity_remove_msgPašalinimui prašome panaikinti šios veiklos pažymėjimą kaip {0}.cv_activityProtected_activity_link_msgŠis {0} susietas su {1}.cv_activityProtected_child_activity_link_msgŠis {0} turi dukterinį elementą, susietą su {1}.branch_mapping_dlg_condition_col_value_maxLygus arba didesnis už {0}optional_act_btnVeiklaoptional_seq_btnSekaoptional_seq_btn_tooltipKurti pasirinktinių sekų rinkinį.pi_optSequence_remove_msg_titleSekų šalinimaspi_optSequence_remove_msgŠi šalinama seka (sekos) gali būti su veiklomis, kurios bus pašalintos. Norite panaikinti šias sekas?pi_no_seq_actJokia sekalbl_num_sequences- sekosactivityDrop_optSequence_error_msgPrašome numesti veiklą ant vienos iš sekų.cv_invalid_optional_seq_activity_no_branchesPašalinkite iš {0} bet kokias sujungtas šakas prieš pridėdami prie pasirinktinės sekos.ta_iconDrop_optseq_error_msgKonteineryje nėra jokių veikiančių sekų.act_seq_lock_chkPrašome atrakinti pasirinktinų sekų konteinerį prieš priskiriant šią veiklą pasirinktinei sekai.cv_invalid_optional_seq_activityPašalinkite perėjimus į ir iš {0} prieš nustatydami kaip pasirinktinę seką.cv_invalid_optional_activity_no_branchesPašalinkinte nuo {0} bet kokias prijungtas šakas prieš nustatydami kaip pasirinktinę veiklą.opt_activity_seq_titlePasirinktinės sekosto_conditions_dlg_lt_lblMažiau už arba lygubranch_mapping_dlg_condition_col_value_minMažiau už arba lygu {0}pi_actVeiklospi_seqSekosto_conditions_dlg_defin_long_typesritisto_conditions_dlg_defin_bool_typetaip/neto_conditions_dlg_defin_item_header_lbl[ pasirinkti išvestį]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblPavadinimasto_conditions_dlg_condition_items_value_col_lblSąlygato_conditions_dlg_options_item_header_lbl[ Sąlygos]sequence_act_title_new{0} {1}close_mc_tooltipSumažintito_conditions_dlg_gte_lblDaugiau už arba lyguto_conditions_dlg_lte_lblMažiau už arba lygugroupnaming_dialog_col_groupName_lblGrupės pavadinimasmnu_file_insertdesignĮterpti/Sulieti ...ws_dlg_insert_btnĮterptibranch_mapping_dlg_branch_item_default{0} {numatytasis}pi_group_matching_btn_lblPritaikyti grupes šakomspi_tool_output_matching_btn_lblPritaikyti sąlygas šakomsrefresh_btnAtnaujintito_conditions_dlg_condition_items_update_defaultConditionsKetinate atnaujinti pasirinkto išvesties apibrėžimo sąlygas. Tuo pašalinsite visas sąsajas su esamomis šakomis. Norite tęsti?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNegalima atnaujinti, nes nerasta jokių naudotojo apibrėžtų sąlygų. Gali prireikti nustatyti jas priemonės kūrimo puslapyje.to_conditions_dlg_defin_user_defined_typenustatyta naudotojogrouping_invalid_with_common_names_msgNegalima įrašyti projekto, nes grupinė veikla '{0}' turi daugiau nei vieną grupę su tuo pačiu pavadinimu. Prašome peržiūrėti grupavimą ir pabandyti dar kartą.al_activity_paste_invalidDeja, Jūs negalite įklijuoti šio veiklos tipopreview_btn_tooltip_disabledPrieš peržiūrint seką, turite ją pirmiau įrašyti, o tada spustelėti „Peržiūrėti“condmatch_dlg_message_lblNumatytoji šaka gali būti pasirinkta pažymint norimos šakos „numatyta“ žymimąjį langelį Savybių srityje.cv_design_insert_warningĮterpus kitą seką, negalite nutraukti šio veiksmo, nes senoji seka automatiškai įrašoma su įterpta naująja seka. Grįžimui prie senosios sekos turite pašalinti visas naująsias sekos veiklas rankiniu būdu, o tada įrašyti. Norint palikti esamas sekas nepakeistas, spustelėkite „Nutraukti“. Kitu atveju spustelėkite „Gerai“ ir pažymėsite įterptiną seką.pi_branch_tool_acts_default--Pasirinkimas--cv_invalid_trans_diff_branchesNegalima sukurti perėjimo tarp veiklų skirtingose šakose.cv_invalid_branch_target_to_activityŠaka į {0} jau yra.cv_invalid_design_on_apply_changesNegalite pritaikyti pakeitimų. Trūksta vieno ar kelių perėjimų.apply_changes_btnPritaikyti pakeitimusapply_changes_btn_tooltipPritaikyti pakeitimus projekte ir grįžti į pamokos stebėjimą.cancel_btnNutraukticv_activity_readOnlyVeikla negali būti {0}. Veikla yra skirta tik skaitymui.cv_edit_on_fly_lblTiesioginis redagavimascv_element_readOnly_action_delpašalintascv_element_readOnly_action_modpakeistascv_eof_finish_invalid_msgProjektas turi būti galiojantis, kad galėtumėte baigti redaguoti.cv_eof_finish_modified_msgĮspėjimas: Jūsų projektas buvo pakeistas. Norite užverti neįrašę?cv_trans_readOnlyPerėjimas negali būti {0}. Perėjimo tikslas yra skirtas tiktai skaitymui.cancel_btn_tooltipGrįžti į pamokos stebėjimą.about_popup_version_lblVersijaabout_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} yra prekės ženklas {0} Foundation ( {1} ).about_popup_license_lblŠi programa yra nemokama; Jūs galite ją platinti ir/arba modifikuoti pagal GNU General Public License 2 versiją kaip publikuota Free Software Foundation. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.org branching_act_titleŠakojimasispi_activity_type_sequenceSekos veikla ({0})groupnaming_dialog_instructions_lblSpustelėkite vardą, kad pakeistumėte jo reikšmę.pi_branch_tool_acts_lblĮvestis (Priemonė)pi_condmatch_btn_lblKurti sąlygasto_conditions_dlg_title_lblKurti išvesties sąlygasal_doneAtliktacondmatch_dlg_cond_lst_lblSąlygoscondmatch_dlg_title_lblSuvienodinti šakų sąlygaspi_defaultBranch_cb_lblnumatytasisto_conditions_dlg_add_btn_lbl+ Pridėtito_conditions_dlg_clear_all_btn_lblIšvalyti viskąto_conditions_dlg_remove_item_btn_lbl- Pašalintito_conditions_dlg_from_lblto_conditions_dlg_to_lblĮto_conditions_dlg_range_lblDiapazonasbranch_mapping_dlg_branch_col_lblŠakabranch_mapping_dlg_condition_col_lblSąlygabranch_mapping_dlg_group_col_lblGrupėbranch_mapping_no_branch_msgNepasirinkta jokia šaka.branch_mapping_no_mapping_msgNepasirinktas joks atvaizdavimas.branch_mapping_no_condition_msgNepasirinkta jokia sąlyga.branch_mapping_auto_condition_msgVisos likusios sąlygos bus atvaizduotos numatytojoje šakoje.branch_mapping_dlg_match_dgd_lblAtvaizdavimaibranch_mapping_dlg_condition_col_valueSritis nuo {0} iki {1}branch_mapping_dlg_condition_col_value_exactTiksli {0} reikšmėpi_mapping_btn_lblNustatyti atvaizdavimuspi_define_monitor_cb_lblApibrėžti ekranegroupmatch_dlg_title_lblAtvaizduoti grupes šakosebranch_mapping_no_groups_msgNepasirinktos jokios grupės.group_branch_act_lblGrupinisbranch_mapping_dlg_branches_lst_lblŠakosgroupmatch_dlg_groups_lst_lblGrupėsgroupnaming_dlg_title_lblGrupinis pervadinimaspi_activity_type_branchingŠakojimosi veiklapi_branch_typeŠakojimosi tipaspi_group_naming_btn_lblPavadinti grupessequence_act_titleSekatool_branch_act_lblMokinio atsiliepimaschosen_branch_act_lblMokytojo pasirinkimasto_condition_start_valuepradinė reikšmėto_condition_end_valuegalutinė reikšmėto_condition_invalid_value_range{0} negali būti galiojančios sąlygos ribose.to_condition_invalid_value_direction{0} negali būti didesnis už {1}.is_remove_warning_msgPerspėjimas: ketinate ištrinti pamoką. Ar norite ją išsaugoti kaip {0}?cv_invalid_trans_target_to_activityPerėjimas į {0} jau egzistuojabranch_btnŠakaflow_btnSrautasmnu_file_importImportuoticv_design_export_unsavedJūs negalite eksportuoti neįrašyto projekto.cv_design_unsavedProjektas buvo pakeistas. Tęsti neįrašius?mnu_file_exportEksportuotiws_chk_overwrite_existingŠis aplankas jau turi savyje failą, pavadintą {0}ws_click_virtual_folderNegalite panaudoti šio aplanko.mnu_file_exitIšeitiws_no_file_openFailas nerastas.cv_invalid_trans_circular_sequenceJums uždara seka neleidžiamabin_tooltipNumeskite veiklą į šiukšlių dėžę, kad pašalintumėte iš veiklos sekos.new_btn_tooltipIšvalo dabartinę seką ir vėl darbinę zoną parengia naudojimuiopen_btn_tooltipRodyti failo dialogą veiklos sekos atvėrimuisave_btn_tooltipDabartinės veiklos sekos spartus įrašymascopy_btn_tooltipPasirinktos veiklos kopijavimaspaste_btn_tooltipĮdėti pasirinktos veiklos kopijątrans_btn_tooltipPanaudokite šį rašiklį, kad nupieštumėte perėjimą tarp veiksmų (arba spauskite klavišą CTRL)optional_btn_tooltipSukurkite laisvai pasirenkamų veiklų rinkinį.gate_btn_tooltipSukurkite sustojimo punktąbranch_btn_tooltipSukurkite šakasflow_btn_tooltipSrauto kontrolės veiklų kūrimasgroup_btn_tooltipSukurkite besigrupuojančią veikląpreview_btn_tooltipPažiūrėkite, kaip Jūsų seką matys mokiniaicv_activity_dbclick_readonlyJūs negalite redaguoti projekto, jeigu jis skirtas tik skaitymui. Prašome įrašyti projekto kopiją ir pabandyti dar kartą.cv_readonly_lblTiktai skaitymuial_empty_designDeja, Jūs negalite įrašyti tuščio projektocv_autosave_err_msgĮvyko klaida bandant automatiškai įrašyti Jūsų projektą. Prašome padidinti Flash Player laikmenos nustatymus.cv_autosave_rec_msgJūs pasirinkote atnaujinti paskutinį prarastą ar neįrašytą projektą. Jūsų dabartinis projektas bus išvalytas. Tęsti?cv_autosave_rec_titleĮspėjimasmnu_file_recoverAtkurti...cv_activity_copy_invalidDeja, Jums neleidžiama kopijuoti šios dukterinės veiklos.cv_activity_cut_invalidDeja, Jums neleidžiama iškirpti šios dukterinės veiklos.al_activity_copy_invalidDeja, Jūs privalote pasirinkti veiklą prieš spustelint „kopijuoti“al_activity_openContent_invalidDeja, prieš spustelėdami meniu juostoje Atverti/Taisyti veiklos turinį, turite pasirinkti veiklą.ws_del_confirm_msgAr Jūs įsitikinęs, kad norite pašalinti šį failą ar aplanką?ws_file_name_emptyDeja, Jums neleidžia išsaugoti projekto be failo vardo.ccm_open_activitycontentAtsiverti/Redaguoti veiklos turinįws_entre_file_namePrašome įvesti projekto pavadinimą ir tada spustelėti mygtuką „Įrašyti“.cv_activity_helpURL_undefinedNegali surasti pagalbos puslapio, skirto {0}cv_untitled_lblBe pavadinimo - 1mnu_help_helpKūrimo pagalbaccm_copy_activityKopijuoti veikląpi_max_actMaks. {0}ccm_paste_activityĮdėti veikląact_tool_titleVeiklų priemonių rinkinysal_alertĮspėjimasal_cancelNutrauktial_confirmPatvirtintial_okGeraiapp_chk_langloadNeįkelti kalbos duomenysapp_chk_themeloadNeįkelti temos duomenysapp_fail_continuePrograma negali būti toliau vykdoma. Prašom susisiekti su priežiūros tarnybachosen_grp_lblPasirinkite ekranecopy_btnKopijuoticv_invalid_design_savedJūsų projektas dar nepatvirtintas, bet įrašytas; spragtelėkite "Galimos problemos", kad pamatytumėte tai, kas neteisinga.cv_invalid_trans_targetJūs negalite sukurti perėjimo į šį objektącv_show_validationSvarstytinos problemoscv_valid_design_savedSveikinimai! - Jūsų projektas patvirtintas ir įrašytasdb_datasend_confirmDėkojame už duomenų siuntimą į serverįdelete_btnŠalintigate_btnLoginis elementasgroup_btnGrupėgrouping_act_titleGrupavimasld_val_activity_columnVeiklald_val_doneAtliktald_val_issue_columnSvarstytina problemald_val_titlePatvirtinimo problemoslicense_not_selectedŠiuo metu nepasirinkta jokia licencija - prašome pasirinkti vienąmnu_editTaisytimnu_edit_copyKopijuotimnu_edit_cutIškirptimnu_edit_pasteĮdėtimnu_edit_redoGrąžintimnu_edit_undoAtšauktimnu_fileFailasmnu_file_closeUžvertimnu_file_newNaujasmnu_file_openAtvertimnu_file_saveĮrašytimnu_file_saveasĮrašyti kaip...mnu_helpPagalbamnu_help_abtApie LAMSmnu_toolsPriemonėsmnu_tools_optPridėti papildomas parinktismnu_tools_prefsParinktysmnu_tools_transPridėti perėjimąnew_btnNaujasnew_confirm_msgAr Jūs esate įsitikinęs, kad norite išvalyti savo projektą, esantį ekrane?none_act_lblJoksopen_btnAtvertioptional_btnPasirinktinispaste_btnĮklijuotiperm_act_lblTeisėspi_activity_type_gateLoginio elemento veiklapi_activity_type_groupingGrupinė veiklapi_definelaterApibrėžkite ekranepi_end_offsetUžverti loginį elementapi_group_typeGrupavimo tipaspi_hoursValandosccm_piSavybių inspektorius...ccm_author_activityhelpAutoriaus veiklos pagalbaws_dlg_descriptionApibūdinimastrans_dlg_nogateTusčiapi_daysDienoscv_close_return_to_ext_srcUždaryti ir grįžti į {0}cv_eof_changes_appliedPakeitimai sėkmingai pritaikytipi_lbl_currentgroupEsamas grupavimasmnu_file_apply_changesPritaikyti pakeitimuspi_lbl_descAprašaspi_lbl_groupGrupavimaspi_lbl_titleAntraštėpi_min_actMin. {0}validation_error_transitionNoActivityBeforeOrAfterPerėjimas turi turėti veiklą prieš arba po perėjimopi_minsMinutėspi_no_groupingJokspi_num_learnersMokinių skaičiuspi_optional_titlePasirinktinė veiklapi_runofflineAutonominė veiklapi_start_offsetAtverti loginį elementąpi_titleSavybėsprefix_copyofKopija nuoprefs_dlg_cancelNutrauktiprefs_dlg_lng_lblKalbaprefs_dlg_okGeraiprefs_dlg_theme_lblTemaprefs_dlg_titleParinktyspreview_btnPeržiūraproperty_inspector_titleSavybėsrandom_grp_lblAtsitiktinisrename_btnPervadintisave_btnĮrašytisched_act_lblTvarkaraštissynch_act_lblSinchronizuotitk_titleVeiklų priemonių rinkinystrans_btnPerėjimastrans_dlg_cancelNutrauktitrans_dlg_gateSinchronizacijatrans_dlg_gatetypecmbTipastrans_dlg_okGeraitrans_dlg_titlePerėjimasws_RootŠakninis aplankasws_chk_overwrite_resourceĮspėjimas: Jūs ketinate perrašyti šią seką!ws_click_folder_filePrašome pasirinkti aplanką įrašymui arba projektą jo perrašymuiws_copy_same_folderIšeities ir paskirties aplankai yra tie patysws_dlg_cancel_buttonNutrauktiws_dlg_filenameFailo pavadinimasws_dlg_location_buttonVietaws_dlg_ok_buttonGeraiws_dlg_open_btnAtvertiws_dlg_properties_buttonSavybėsws_dlg_save_btnĮrašytiws_dlg_titleDarbinė zonaws_newfolder_cancelNutrauktiws_newfolder_insPrašom įrašyti naują aplanko pavadinimąws_newfolder_okGeraiws_no_permissionDeja, jūs neturite leidimo rašyti į šiuos ištekliusws_rename_insPrašom įrašyti naują vardąws_tree_mywspMano darbinė zonaws_tree_orgsMano grupėsws_view_license_buttonPeržiūrėtiact_lock_chkPrieš priskiriant šią užduotį prie laisvai pasirenkamų, prašome atrakinti laisvai pasirenkamos veiklos konteinerį. sys_error_msg_startSistemos klaida:sys_error_msg_finishNorint tęsti, gali prireikti iš naujo paleisti LAMS Author. Ar norite įrašyti informaciją apie šią klaidą, kad vėliau galėtumėte ją ištaisyti? sys_errorSistemos klaidapi_num_groupsGrupių skaičiuspi_parallel_titleLygiagreti veiklaopt_activity_titlePasirinktinė veiklalbl_num_activities{0} - Veiklosal_sendSiųstial_cannot_move_activityDeja, Jūs negalite perkelti šios veiklos.cv_gateoptional_hit_chkJūs negalite pridėti loginio elemento veiklos kaip pasirinktinės.prefix_copyof_countKopija ({0})ws_save_folder_invalidJūs negalite išsaugoti projekto šiame aplanke. Prašom pasirinkti galiojantį poaplankį.ws_click_file_openPrašom paspausti „Projektas“ norėdami jį atverti.ws_license_lblLicencijaws_license_comment_lblPapildoma licencijos informacijacv_invalid_optional_activityPrieš nustatydami šią veiklą kaip pasirinktinę, turite pašalinti visus perėjimus iš {0} į ją ir iš jos į {0}.cv_trans_target_act_missingTrūksta antros perėjimo veiklos.cv_invalid_trans_target_from_activityPerėjimas nuo {0} jau egzistuojavalidation_error_activityWithNoTransitionVeikla turi turėti įvestą ar išvestą perėjimąvalidation_error_inputTransitionType1Ši veikla neturi jokio perėjimovalidation_error_inputTransitionType2Visose veiklose yra įvesties perėjimai.validation_error_outputTransitionType1Ši veikla neturi jokio išvesties perėjimovalidation_error_outputTransitionType2Visuose veiksmuose yra išvesties perėjimai. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/mi_NZ_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3trans_dlg_titleTauwhiromnu_tools_transTā Tauwhirooptional_seq_btn_tooltipHāngaia he huinga raupapa kōwhiri.trans_btnTauwhiroabout_popup_version_lblTe Āhuaabout_popup_license_lbl<p> He kore utu tēnei papatono; ka taea te tohatoha me te whakahōu i raro i ngā tikanga o te GNU ahua2 pērā i ngā putanga o te Free Software Foundation. <br><br>{0}</p>ws_newfolder_okĀEtrans_dlg_okĀEws_dlg_ok_buttonĀEws_dlg_location_buttonWāhiws_RootWhaiaronga Iomatuaws_license_comment_lblTāpiri Parongo Raihanaal_cancelWhakakoreprefs_dlg_cancelWhakakoretrans_dlg_cancelWhakakorews_dlg_cancel_buttonWhakakorews_newfolder_cancelWhakakorecancel_btnWhakakorenew_btnHōumnu_file_newHōupreview_btnĀrokitesave_btnTiakicv_design_insert_warningKa kōkuhu raupapa ako anō, kāore e taea te whakakore i tēnei mahi - ka tiaki aunoa tō raupapa ako tawhito ki te raupapa ako hōu. Kia taea te hoki whakamuri ki tōu raupapa ako tawhito, whakakorea katoatia ā ringa ngā ngohe o te raupapa ako hōu, katahi ka tiaki. Kia waihō tūturutia tō raupapa ako pāwhiria Whakakore. Pāwhirihia te whakaae rānei kia tīpako raupapa ako hei kōkuhu.sys_error_msg_startKua puta tēnei hapa pūnaha:opt_activity_titleNgohe Kōwhiringa ws_license_lblRaihanamnu_help_helpĀwhina ccm_author_activityhelpĀwhina Kaituhi pi_num_groupsTapeke rōpū ccm_copy_activityTāruatia te Ngoheccm_paste_activityTāpia te Ngohemnu_file_exitPutangamnu_file_exportKawe Atumnu_file_importKawe Maiws_dlg_descriptionWhakamāramatrans_dlg_nogateKorecv_readonly_lblPānui Anakecv_autosave_rec_titleWhakatūpatoto_conditions_dlg_condition_items_value_col_lbltikangaws_dlg_save_btnTiakicv_invalid_optional_seq_activity_no_branchesTangohia ngā pekanga katoa i honoa {0} i mua i tāpiri ki te raupapa ako kōwhiri.cv_invalid_design_on_apply_changesKāore e taea te hōatu rerekētanga. Kei te ngaro ētehi tauwhiro.apply_changes_btnHōatu Rerekētangaopt_activity_seq_titleRaupapa Ako Kōwhiriapply_changes_btn_tooltipHōatu rerekētanga ki te hoahoatanga me hoki ki te aroturuki. al_okĀEprefs_dlg_okĀEbranch_mapping_no_condition_msgKāore he Tikanga i kōwhirihiamnu_edit_undoWhakakoreatk_titleHe Puna Whakamahitrans_dlg_gateTukutahitangatrans_dlg_gatetypecmbMomows_copy_same_folderHe wāhi ōrite te kōpaki pūtake me te kōpaki ūngaws_dlg_filenameIngoaws_dlg_open_btnHuakinaws_dlg_properties_buttonĀhuatangaws_dlg_titlePapamahiws_newfolder_insWhakaingoatia te kōpaki hōuws_rename_insWhakaurua koa te ingoa hōuws_tree_mywspTāku Papamahiws_tree_orgsNgā Whakahaerews_view_license_buttonTirosys_error_msg_finishTērā pea me tīmata anō koe i te Pūnaha Akoranga ā Hiko. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?app_chk_langloadKāhore anō kia utaina ngā raraunga reoapp_chk_themeloadKāhore anō kia utaina ngā raraunga kaupapaapp_fail_continueKāhore te Taupānga e taea te haere tonu. Whakapā atu ki te Kaiwhakahaerecopy_btnTāruatiacv_invalid_design_savedKua tiakina ngā mahi, ēngari kāhore anō tō wāhanga ako kia whai mana. Pāwhiria ngā ‘Take’ kia kite atu i ngā raru.cv_invalid_trans_targetKāhore e taea te tauwhiro ki tēnei akorangacv_show_validationTakecv_valid_design_savedNgā mihi ki a koe! Kua tiakina, kua whai mana to wāhanga akodb_datasend_confirmNgā mihi mō te tuku raraunga ki te tūmau delete_btnWhakakoregate_btnTomokangagroup_btnWhakarōpūgrouping_act_titleWhakarōpūld_val_activity_columnNgoheld_val_doneKua oti paild_val_issue_columnTakeld_val_titleNgā take whai manalicense_not_selectedKōwhiritia tētehi raihana mō tēnei wāhanga akomnu_editWhakatikatikamnu_edit_copyTāruatiamnu_edit_cutWhakakoreamnu_edit_pasteTāpiamnu_edit_redoMahia anō mnu_fileKōnaemnu_file_closeKatiamnu_file_openHuakinamnu_file_saveTiakimnu_file_saveasTiaki hei ..mnu_helpĀwhinamnu_help_abtWhakamārama a LAMSmnu_toolsNgā Taputapumnu_tools_optTā Whiringamnu_tools_prefsManakohanganone_act_lblKoreopen_btnHuakinaoptional_btnWhiringapaste_btnTāpiaperm_act_lblWhakaaetangapi_activity_type_gateNgohe Tomokangapi_activity_type_groupingNgohe Whakarōpūpi_hoursHāorapi_lbl_currentgroupWhakarōpū o naianeipi_lbl_titleIngoapi_lbl_groupWhakarōpūpi_max_actNgohe mutunga rawapi_min_actNgohe iti rawa pi_minsMinitipi_no_groupingKorepi_num_learnersĀkonga taupi_optional_titleNgohe Whiriwhiripi_titleĀhuatangaprefix_copyofHe tāruatanga oprefs_dlg_lng_lblReoprefs_dlg_theme_lblKaupapaprefs_dlg_titleManakohangaproperty_inspector_titleĀhuatangarandom_grp_lblMatapōkererename_btnWhakaingoatia anōsched_act_lblWhakaritengasynch_act_lblTukutahisys_errorHapa Pūnaha al_sendTukunalbl_num_activitiesNgoheact_tool_titleHe Puna Whakamahial_alertKia Matohial_confirmWhakatūturutiaws_dlg_date_modified_lblkētanga mutunga: {0}chosen_grp_lblKōwhiritia ki Aroturukito_conditions_dlg_defin_long_typeāhuatanga whanuito_conditions_dlg_defin_bool_typetika/hēto_conditions_dlg_defin_item_header_lbl[ Kōwhiri Huaputa ]to_conditions_dlg_condition_items_name_col_lblIngoato_conditions_dlg_options_item_header_lbl[ Kōwhiringa ]close_mc_tooltipWhakamōkitosupport_msg_no_connectionKāore e taea te tūhono ngohe ki ērā atu o ngā ngohe.support_msg_invalid_childKāore e taea te tāpiri ngohe āwhina {0} ki ēnei momo ngohesupport_msg_max_children_reachedKāore e taea te waihō: {0} ki kōnei. Ko te {1} te mōrahi e whakaae te ngohe āwhina mō ngā ngohe tamaiti.support_msg_cannot_be_childKāore e taea te waihō tētehi ngohe āwhina i roto i tētehi atu ngohe.to_conditions_dlg_gte_lblNui rawa ōrite rāneigradebook_output_typeHuanga Pukaaromatawaiview_students_before_selectionTirohia ngā ākonga i mua i te kōwhiringa?arrange_act_btnRaupapa Ngohesupport_act_btnĀwhinasupport_act_btn_tooltipHangaia he huinga o ngā ngohe āwhina.support_act_titleNgohe Āwhinapi_daysNgā Rāws_del_confirm_msgMe āta whai koe te whakakore tēnei kōnae/ kōpae?ws_no_file_openKāore i rapu kōnaepi_parallel_titleNgohe Whakararaprefix_copyof_countTāruarua o ({0})cv_untitled_lblIngoa Kore- 1mnu_file_recoverWhakaora...new_confirm_msgMe āta whai koe te whakakore i tō hoahoa i te mata?ws_chk_overwrite_resourceKia mataara: ka tata koe te tuhirua i tēnei whakaraupapa ako!ws_click_folder_filePāwhiria tētehi Kōpaki hei tiaki, tētehi Hoahoa rānei hei tuhiruaal_cannot_move_activityAroha, kāore e taea te nuku tēnei ngohe.ws_click_file_openPāwhirihia tētehi hoahoa ki te tuwhera.cv_invalid_optional_activityTangohia ngā tauwhiro mai i {0} i mua i te tautuhi hei ngohe kōwhiri.cv_trans_target_act_missingKei te ngaro te ngohe tuarua o te Tauwhirocv_activity_copy_invalidAroha, kāore e taea te tāruarua tēnei ngohe tamaiti.cv_activity_cut_invalidAroha, kāore e taea te tapahi tēnei ngohe tamaiti.cv_invalid_trans_target_to_activityKei te tīari kē tētahi tauwhiro ki {0}cv_design_unsavedKua whakarerekētia te hoahoa i te atamira. Haere tonu me te kore tiaki?new_btn_tooltipWhakakorea tēnei akoranga me te tautuhi anō i te papamahi. open_btn_tooltipWhakaaturia ngā Kōrero ā-Kōnae ki te tuwhera Raupapa Ako.save_btn_tooltipTiaki teretia tēnei Raupapa Akocopy_btn_tooltipTāruatia te ngohe i kōwhirihiapaste_btn_tooltipTāpia atu te ngohe i kōwhirihiaoptional_btn_tooltipHanga huinga ngohe kōwhiri.gate_btn_tooltipHanga wāhi taubranch_btn_tooltipHanga pekanga (ka taea ki LAMS v2.1)flow_btn_tooltipHanga ngohe mana ripogroup_btn_tooltipHanga ngohe Whakarōpūpreview_btn_tooltipTiro wawetia tō Raupapa Ako mā te āhua e kitea ai e ngā ākongaal_activity_copy_invalidAroha! Tīpakohia te ngohe i mua i te pāwhiri tārua.ccm_piĀhuatanga Tautuhingaws_chk_overwrite_existingHe kōnae kē kei tēnei kōpaki e kīia nei ko {0}branch_btnPekangaflow_btnRipows_click_virtual_folderKāore e taea te whakamahi tēnei kōpakicv_invalid_trans_circular_sequenceKāore e whakaaetia kia huri haere te raupapa.bin_tooltipWhakatakahia he ngohe ki tēnei ipu ki te tangohia mai i te raupapa ako.cv_gateoptional_hit_chkKāore e taea te tāpiri ngohe tomokanga hei tūnga ngohe kōwhiri.ws_save_folder_invalidKāore e taea te tiaki ki tēnei kōpaki. Kōwhiria tetehi kōpaki roto whaimana.cv_invalid_trans_target_from_activityKei te tīari kē he Tauwhiro mai i {0} ws_entre_file_nameTuhia te ingoa hoahoa, ka pāwhiri ai i te pātene Tiaki.cv_activity_helpURL_undefinedKāore e taea te rapu wharangi āwhina mō {0}cv_activity_dbclick_readonlyKāore e taea te whakatika taputapu o te hoahoa pānui-anake. Tiakina he tāruatanga o te hoahoa, ka whakamātau anō ai.ws_file_name_emptyAroha! Kāore e taea te tiaki hoahoa kāore anō kia tapaina.al_empty_designAroha! Kāore e taea te tiaki he hoahoa wātea.cv_autosave_err_msgKua puta he hapa i te wa tiaki-aunoa. Ka haere tonutia te hapa, whakapā atu ki te Kaiwhakahaere Pūnaha.cv_close_return_to_ext_srcKatia hoki anō ki {0}condmatch_dlg_title_lblWhakaōrite Tikanga ki ngā Pekangabranch_mapping_dlg_condition_col_lblTikangacv_eof_changes_appliedKua hōatu tika ngā whakarerekētanga.mnu_file_apply_changesHōatu Rerekētangavalidation_error_transitionNoActivityBeforeOrAfterMe noho tētehi ngohe ki mua ki muri rānei i te tauwhiro.validation_error_activityWithNoTransitionMe noho tētehi tauwhiro tāuru tāputa rānei ki te ngohe.validation_error_inputTransitionType1Kāhore te ngohe tētehi tauwhiro tāuru.validation_error_inputTransitionType2Kāore ngā ngohe i te ngaro i ngā tauwhiro tāuru.validation_error_outputTransitionType1Kāhore i tēnei ngohe tētehi tauwhiro tāputa.validation_error_outputTransitionType2Kāore ngā ngohe i te ngaro i ngā tauwhiro tāuru.cv_activity_readOnlyKāore e taea tēnei ngohe {0}.He pānui anakē tēnei Ngohecv_edit_on_fly_lblWhakatikaina Ngohecv_element_readOnly_action_delKua tangohiacv_element_readOnly_action_modWhakahōutangacv_eof_finish_invalid_msgMe whai mana te hoahoatanga kia whakaoti te whakatikatika.cv_eof_finish_modified_msgWhakatūpato: Kua whakarerekētia te hoahoa. Ka puta me te kore tiaki?cv_trans_readOnlyKāore e taea te tauwhiro {0}. He pānui anakē te tauwhiro.cancel_btn_tooltipHoki ki te aroturuki.mnu_file_finishKua Otiabout_popup_title_lblWhakamārama - {0}about_popup_trademark_lblHe moko o {0} Rōpū ( {0} ).stream_reference_lblPūnaha Akoranga ā Hikogpl_license_urlwww.gnu.org/rēhita/gpl.txtstream_urlhttp://{0}rōpū.orgbranching_act_titlePekangato_conditions_dlg_lte_lblIti rawa ōrite rāneipi_end_offsetKatiapi_start_offsetHuakinapi_definelaterTautuhia ā Muri Atupi_group_typeĀhuatanga ā rōpūpi_lbl_descĀhuatangaal_doneKua Mututo_conditions_dlg_add_btn_lbl+ Tāpirito_conditions_dlg_from_lblNā:to_conditions_dlg_to_lblKi:branch_mapping_dlg_branch_col_lblPekangabranch_mapping_dlg_group_col_lblRōpūpi_define_monitor_cb_lblTāutuhia ki Aroturukibranch_mapping_no_groups_msgKāore he Rōpū i kōwhirihia branch_mapping_dlg_branches_lst_lblPekangagroupmatch_dlg_groups_lst_lblRōpūgroupnaming_dlg_title_lblIngoa Rōpūpi_activity_type_branchingNgohe Pekangapi_branch_typeMomo Pekangapi_group_naming_btn_lblIngoa Rōpūsequence_act_titleRaupapatangato_conditions_dlg_remove_item_btn_lbl- Tangohiabranch_mapping_dlg_condition_linked_singleKo te tikanga koto_condition_untitled_item_lblIngoa Kore {0}redundant_branch_mappings_msgHe mahere pekanga wātea tō te hoahoa kei te tangohia. Ka haere tonu?cv_activityProtected_activity_remove_msgKi te tangohia whakawāteatia tēnei ngohe i te {0} cv_activityProtected_activity_link_msgKua hono tēnei {0} ki {1}cv_activityProtected_child_activity_link_msgHe honoa tamaiti tēnei {0} ki {1}pi_activity_type_sequenceNgohe Whakaraupapa (Pekanga)groupnaming_dialog_instructions_lblPāwhiria te ingoa ki te whakarerekē i te uarapi_branch_tool_acts_lblTāuru (Utauta)branch_mapping_no_branch_msgKāore te Pekanga i kōwhirihia.pi_defaultBranch_cb_lbltaunoato_conditions_dlg_clear_all_btn_lblWhakakore Katoato_conditions_dlg_range_lblWhakarite Inenga Whānui:chosen_branch_act_lblKōwhiringa Kaiakobranch_mapping_no_mapping_msgKāore he Whakamahere i kōwhirihiabranch_mapping_auto_condition_msgKa whakamaheretia ngā toenga Tikanga katoa ki te Pekanga taunoa.branch_mapping_dlg_match_dgd_lblMaheretangabranch_mapping_dlg_condition_col_valueInenga Whānui {0} ki {1}branch_mapping_dlg_condition_col_value_exactUara pū o {0}pi_mapping_btn_lblWhakarite Maheretangagroupmatch_dlg_title_lblWhakamahere Rōpū ki ngā Pekangagroup_branch_act_lblWhai Rōpūto_condition_start_valueuara timatangato_condition_end_valueuara mutungato_condition_invalid_value_rangeKāore e taea te {0} te noho ki waenga i tēnei tikanga.to_condition_invalid_value_directionKāore e taea e {0} te noho nui rawa i te {1}.is_remove_warning_msgKIA MATAARA: Kei te tango i tēnei akoranga. Ka hia koe te pūpuri i te akoranga hei akoranga {0}?al_continueHaere tonubranch_mapping_dlg_condition_linked_msgKua herenga {0} ki tētehi pekanga kē. Ka haere tonu?branch_mapping_dlg_condition_linked_allHe tikanga ōnato_conditions_dlg_title_lblWhakarite Tikanga Huaputapi_condmatch_btn_lblWhakarite Tikangatrans_btn_tooltipWhakamahia tēnei pene ki te tā tauwhiro ngohe (pēhia CTRL rānei)pi_tool_output_matching_btn_lblHono Tikanga ki Pekangacv_invalid_optional_seq_activityTangohia ngā takatau katoa {0} i mua i te whakarite hei raupapa ako kōwhiri.to_conditions_dlg_condition_items_update_defaultConditionsKei te whakahōutia e koe ngā tikanga mō ngā tāutunga huaputa. Ka whakawātea tēnei i ngā hononga ki ngā pekanga e tū nei. Ka haere tonutia?branch_mapping_dlg_condition_col_value_maxNui rawa i te {0}optional_act_btnNgoheoptional_seq_btnRaupapacv_invalid_optional_activity_no_branchesTangohia ngā pekanga i honoa {0} i mua i te whakarite ngohe kōwhiri.al_cannot_move_to_diff_opt_seqKi te nuku ngohe ki tētehi raupapa ako kē i roto i ngā Raupapa Kōwhiringa, kumea te ngohe ki waho i te wāhi Raupapa Kōwhiringa, pāwhirihia kumea hoki ki tōna wāhi hōu i roto i te Raupapa Kōwhiringa. to_conditions_dlg_lt_lblIti rawa ōrite rāneibranch_mapping_dlg_condition_col_value_minIti rawa ōrite rānei {0}pi_actNgohepi_seqRaupapa Akobranch_mapping_dlg_condtion_items_update_defaultConditions_zeroKāore e taea te whakahōutia nā te kore o ngā tikanga tāutu kaimahi. Whakaritea ēnei i te wharangi kaituhi o te taputapu.condmatch_dlg_cond_lst_lblTikangapi_optSequence_remove_msg_titleKei te Tango raupapa akopi_optSequence_remove_msgKei te tangohia te/ngā raupapa ako tērā pea he ngohe o roto. Ne, ka tangohia ēnei raupapa ako?pi_no_seq_actTau Raupapa Akolbl_num_sequences{0} - Raupapa AkoactivityDrop_optSequence_error_msgWaihōtia te ngohe ki tētehi o ngā raupapa ako.pi_runofflineWhakahaere Tuimotuto_conditions_dlg_defin_item_fn_lbl{0} ({1})sequence_act_title_new{0} {1}about_popup_copyright_lbl© 2002-2009 {0} Rōpū.groupnaming_dialog_col_groupName_lblIngoa Rōpūmnu_file_insertdesignKōkuhu/Hanumi...ws_dlg_insert_btnKōkuhubranch_mapping_dlg_branch_item_default{0} (taunoa)pi_group_matching_btn_lblHono Rōpū ki Pekangarefresh_btnTāmatahiato_conditions_dlg_defin_user_defined_typetāutu kaimahial_activity_paste_invalidKāore e taea te whakapiri tēnei āhuatanga ngohegrouping_invalid_with_common_names_msgKāore e taea te tiaki tēnei hoahoatanga ngohe '{0}' nā te tapaina rōpū ōrite. Arotakengia ngā rōpū anō mahi anō.preview_btn_tooltip_disabledKia taea te arokite raupapa, tiakina i te tuatahi, katahi ka pāwhiria te Arokite condmatch_dlg_message_lblKa taea te tīpako pekanga taunoa i te pāwhiria i te takina "taunoa" i ngā wāhi Āhuatanga o te pekanga.tool_branch_act_lblHuaputa Ākongaws_no_permissionAroha mai, kāhore i a koe te whai mana ki te tuhi ki tēnei rauemicv_invalid_trans_diff_branchesKāhore e taea te hanga tauwhiro ki waenga ngohe i ngā pekanga rerekē.pi_branch_tool_acts_default--Kōwhirihia--cv_invalid_branch_target_to_activityKua whakarite pekanga kē ki {0}.cv_invalid_branch_target_from_activityKua whakarite pekanga mai kē nō {0}.cv_invalid_trans_closed_sequenceKāhore e taea te tāpiri tauwhiro hōu ki te ngohe i mutu atu.al_group_name_invalid_blankKāore e taea ngā ingoa rōpū te noho piako.al_group_name_invalid_existingMe noho ahurei ngā ingoa rōpū.competence_editor_add_competence_btnTāpirigate_openhuakigate_closedkua katiata_iconDrop_optseq_error_msgKāore i ētahi paepae raupapa ako e whakaāheitiaact_seq_lock_chkHuakina koa ngā Raupapa Ako Kōwhiri i mua i te honoa ngohe ki te raupapa ako kōwhiri.act_lock_chkHuakina koa te paepae Ngohe Kōwhiringa i mua i te tautapa i te ngohe nei hei kōwhiringa.cv_design_export_unsavedKāore e taea te Tuku hoahoa kāore anō kia tiakina.cv_autosave_rec_msgKa tata koe te whakaora anō i tērā hoahoa ngaro, hoahoa kāore i tiakina rānei. Mā te whakaora ka whakawāteatia tō hoahoa o nāianei. Haere tonu?ccm_open_activitycontentTūwhera/Whakatika Ihirangi Ngoheal_activity_openContent_invalidAroha! Tīpakohia te ngohe i mua i te pāwhiri ki te tūemi tahua Tuwhera/Whakatika Ihirangi Ngohe ki te tahua ngohe pāwhiri matau.learner_choice_grp_lblKōwhiringa Ākongapi_equal_group_sizesRōpū Tokomaha Ōritecompetence_editor_dlgKaiwhakatika Matataucompetences_lblMatataucompetence_def_dlgKōrero Tāutu Matataucompetence_editor_warning_title_existsKua whakamahia kētia he matatau me te taitara {0} competence_editor_warning_title_blankKāore e taea te taitara matatau te noho piako.competence_editor_warning_competence_mappedKua whakamahere kētia te matatau e whakamātau ana koe ki te muku ki tētahi, ētahi ngohe rānei. Ko te muku i tēnei matatau ka muku i ana whakamaherenga katoa. Me haere tonu?map_comptence_btnWhakamaheretia ki te Matataucompetence_mappings_btnMaheretanga Matataucompetences_mapped_to_act_lblMatataumap_gate_conditions_btnTikanga Tomokanga Maheregate_mapping_auto_condition_msgKa whakamaheretia ngā tikanga e toe ana ki te tomokanga kati i kōwhirihia.al_activity_view_competence_mappings_invalidMe āta kōwhiri koe i tētehi ngohe i mua i te tiro ki ōna whakamaheretanga matatau.ws_save_title_reserved_charsKāore e taea te taitara te whai pūāhua motuhake: {0}mnu_file_import_communityKawe mai i te Hapori a LAMS \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ms_MY_dictionary.xml 12 Jan 2010 01:19:51 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3mnu_file_exitKeluarFile Menu Exitws_no_file_openTiada fail dijumpaiAlert message if no matching file is found to open in selected folder of Workspace.gate_btn_tooltipCipta poin berhentitool tip message for gate button in toolbarcv_readonly_lblLihat SahajaLabel for top left of canvas shown when a read-only design is open.cv_autosave_rec_titleAmaranAlert title for auto save recovery message.trans_dlg_nogateTiadaDrop down default for gate typepi_daysHariDays label in property inspector for gate toolstream_reference_lblLAMSReference label for the application stream.cancel_btnBatalToolbar - Cancel Buttonmnu_file_finishTamatMenu bar File - Finish (Edit Mode)about_popup_title_lblMengenai - {0}Title for the About Pop-up window.about_popup_version_lblVersiLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} adalah hak cipta {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.al_doneSelesaiLabel for dialog completion button.condmatch_dlg_cond_lst_lblKondisiLabel for primary list heading on Condition to Branch Matching dialog.to_conditions_dlg_add_btn_lbl+ TambahLabel for button to add a condition.branch_mapping_dlg_condition_col_lblKondisiColumn heading for showing condition description of the mapping.cv_design_export_unsavedAnda tidak boleh Eksport design yang tidak disimpanAlert message when trying to export can unsaved design.al_activity_openContent_invalidMaaf! Anda perlu memilih aktiviti sebelum klik menu Buka/Sunting Isi Aktiviti di menu klik kanan aktivitialert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasal_okOKOK on the alert dialogws_dlg_open_btnBukaWsp Dia Open Button labelapp_chk_langloadData bahasa tidak berjaya diloadmessage for unsuccessful language loadingal_cancelBatalTo Confirm title for LFErrorapp_chk_themeloadData tema tidak berjaya diloadmessage for unsuccessful theme loadingcopy_btnSalinToolbar &gt; Copy Buttoncv_show_validationIsuThe button on the confirm dialogdb_datasend_confirmTerima kasih kerana menghantar data ke serverMessage when user sucessfully dumps data to the serverdelete_btnPadamLabel for Delete buttongate_btnGateToolbar &gt; Gate Buttongroup_btnKumpulanToolbar &gt; Group Buttonld_val_activity_columnAktivitiThe heading on the activity in the ValidationIssuesDialogld_val_doneSelesaiThe button label for the dialogld_val_issue_columnIsuThe heading on the issue in the ValidationIssuesDialogmnu_editEditMenu bar Editmnu_edit_copySalinMenu bar Edit &gt; Copymnu_edit_pasteTampalMenu bar Edit &gt; Pastemnu_fileFailMenu bar Filemnu_file_closeTutupMenu bar Closemnu_file_newBaruMenu bar Newmnu_file_openBukaMenu bar Openmnu_file_saveSimpanMenu bar savemnu_file_saveasSimpan sebagai...Menu bar Save asmnu_helpTolongMenu bar Helpmnu_help_abtMengenai LAMSMenu bar Aboutmnu_toolsAlatanMenu bar Toolsnew_btnBaruToolbar &gt; New Buttonnone_act_lblTiadaNo gate activity selectedopen_btnBukaToolbar &gt; Open Buttonpaste_btnTampalToolbar &gt; Paste Buttonpi_end_offsetTutup gateEnd offset labelpi_hoursJamHours label in Property Inspectorpi_lbl_descDiskripsiDescription Label for PIpi_lbl_titleTajukTitle label for PIpi_minsMinitMins label in teh property inspectorpi_no_groupingTiadaCombo title for no groupingprefs_dlg_cancelBatal6prefs_dlg_lng_lblBahasa7prefs_dlg_okOK5prefs_dlg_theme_lblTema8random_grp_lblRawakLabel for the grouping drop down in the PropertyInspectorsave_btnSimpanToolbar &gt; Save buttontrans_dlg_cancelBatalCancel button on transition dialogtrans_dlg_gatetypecmbJenisGate type combo labeltrans_dlg_okOKOK Button on transition dialogws_RootRootRoot folder title for workspacews_dlg_cancel_buttonBatal2ws_dlg_filenameNama FailLabel for File name in workspace windowws_dlg_location_buttonLokasiWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelal_alertAwasGeneric title for Alert windowal_confirmTerimaTo Confirm title for LFErrorchosen_grp_lblPilihanLabel for the grouping drop down in the PropertyInspectorlicense_not_selectedTiada lesen dipilih - Sila pilihShown if no license is selected in the drop down in workspacemnu_edit_cutPotongMenu bar Edit &gt; Cutoptional_btnPilihanToolbar &gt; Optional Buttonperm_act_lblIzinLabel for permission gate activitypi_activity_type_gateAktiviti GetActivity type for gate in PIsys_error_msg_finishAnda mungkin perlu memulakan semula Pengarang LAMS untuk sambung. Adakah anda mahu menyimpan informasi mengenai ralat ini untuk membantu mengatasi masalah ini?Common System error message finish paragraphcv_invalid_optional_activityBuang ke dan dari peralihan dari {0} sebelum seting ia sebagai aktiviti tambahan.Alert message when user try to drop an activity with to or from transition into optional containeral_activity_copy_invalidMaaf! Anda perlu memilih aktiviti sebelum klik salin.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvaspi_max_actAktiviti TerbanyakLabel for maximum Activities or Sequencespi_min_actAktiviti TerkecilLabel for minimum Activities or Sequencespreview_btnPreviuToolbar &gt; Preview Buttonsynch_act_lblPenyelarasanUsed as a label for the Synch Gate Activity Typetrans_dlg_gateMenyelaraskanHeader for the transition props dialogtrans_dlg_titlePeralihanTitle for the transition properties dialogws_chk_overwrite_resourceAmaran: anda sedang menulis semula turutanws_click_folder_fileSila klik sama ada di Folder untuk simpan, atau Design untuk menulis semulaError msg if no folder or file is selectedws_dlg_titleRuang kerja0ws_view_license_buttonViewTo show the license to the usercopy_btn_tooltipSalin aktiviti yang dipilihtool tip message for copy button in toolbarpaste_btn_tooltipTampal salinan aktiviti yang dipilihtool tip message for paste button in toolbarccm_open_activitycontentBuka/Edit Isi AktivitiLabel for Custom Context Menuccm_copy_activitySalik AktivitiLabel for Custom Context Menuccm_paste_activityTampal AktivitiLabel for Custom Context Menucv_untitled_lblTiada tajuk - 1Label for Design Title bar on canvasal_empty_designMaaf, Anda tidak boleh simpan design kosongalert message when user want to save an empty designcv_close_return_to_ext_srcTutup dan kembali ke {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedPerubahan telah berjayaChanges have been successful applied.cv_element_readOnly_action_deldibuangAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_moddiubahAction label for read only alert message for a Canvas Transition.pi_branch_tool_acts_lblInput (Alatan)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_defaultBranch_cb_lbldefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_clear_all_btn_lblBersihkan semuaLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- BuangLabel for button to remove condition.to_conditions_dlg_from_lblDaripada:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblKepada:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblSet JulatHeading label for section in the dialog to set numeric condition range.branch_mapping_no_mapping_msgTiada Mapping dipilihAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgTiada Kondisi dipilihAlert message when adding a Mapping without a Condition being selected.branch_mapping_dlg_match_dgd_lblMappingHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueJulat {0} hingga {1}Value for Condition field in mapping datagrid.ccm_piInspektor Property...Label for Custom Context Menuws_dlg_save_btnSimpanWsp Dia Save Button labelws_newfolder_cancelBatalCancel on the new folder name diaws_newfolder_insSila masukkan nama folder baruInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_rename_insSila masukkan nama baruMessage of the new name for the userws_tree_mywspRuangkerja SayaThe root level of the treesys_errorSistem RalatSystem Error elert window titlelbl_num_activitiesAktivitireplacement for word activitiesal_sendKirimSend button label on the system error dialogws_license_lblLesenLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformasi Lesen TambahanLabel for Licence Comment description below license drop downmnu_file_importImportMenu bar Importmnu_file_exportExportMenu bar Exportws_click_virtual_folderTidak boleh menggunakan folder iniAlert message for trying to use a virtual folder to save/open a file.prefix_copyof_countSalinan ({0}) untukPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_entre_file_nameSila masukkan nama design, dan klik butang Simpan.Error message when user try to save a design with no file namews_dlg_descriptionDiskripsiLabel for description in Workspace dialog - Properties tabcv_activity_dbclick_readonlyAnda tidah boleh mengubah alatan untuk design bacaan sahaja. Sila simpan salinan design dan cuba lagi.Alert message when double-clicking an Activity in an open read-only designws_file_name_emptyMaaf! Anda tidak dibenarkan menyimpan design tanpa nama fail.Error message when user try to save a design with no file namevalidation_error_inputTransitionType1Aktiviti ini tidak mempunyai input peralihanThis activity has no input transitionsequence_act_titleTurutanDefault title for Sequence Activity.mnu_edit_redoUlangcaraMenu bar Edit &gt; Redomnu_edit_undoNyahcaraMenu bar Edit &gt; Undomnu_tools_optLukis TambahanMenu bar Optionalpi_num_learnersNombor pelajarPI Num learners labelpi_optional_titleAktiviti TambahanTitle for oprional activity property inspectorpi_start_offsetBuka getStart offset labelrename_btnMenamakanLabel for Rename Buttonsched_act_lblJadualLabel for schedule gate activitytk_titleKit AktivitiLabel for Activities Toolkit Paneltrans_btnPeralihanToolbar &gt; Transition Buttonopt_activity_titleAktiviti TambahanTitle for Optional Activity Containeral_cannot_move_activityMaaf anda tidak boleh mengubah aktivitiAlert message when user tries to move child activity of any parallel activitymnu_help_helpTolong Karanganlabel for menu bar Help - Authoring Help optionccm_author_activityhelpTolong Karang AktivitiLabel for Custom Context Menuws_del_confirm_msgAdakah anda pasti untuk membuang fail/folder ini?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_openSila klik pada Design untuk buka.Alert message if folder tried to be opened.cv_trans_target_act_missingAktiviti kedua Peralihan hilang.Error message when target activity for transition is missingcv_activity_copy_invalidMaaf! Anda tidak dibenarkan menyalin anak aktiviti.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidMaaf! Anda tidak dibenarkan memotong anak aktiviti.Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activityPeralihan ke {0} sudah adaError message when a transition to the activity already existcv_design_unsavedDesign di kanvas telah berubah. Sambung tanpa menyimpannya?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipBersihkan turutan sekarang dan reset ruangkerja sedia digunakanTool tip message for new button in toolbaropen_btn_tooltipPapar Dialog Fail untuk buka Turutan AktivitiTool tip message for open button in toolbarsave_btn_tooltipSimpanan cepat Turutan Aktiviti sekarangtool tip message for save button in toolbartrans_btn_tooltipGuna pen untuk lukis turutan diantara aktiviti (atau tekan butang CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCipta set aktiviti tambahan.tool tip message for optional button in toolbarbranch_btn_tooltipCipta cabang (sedia di LAMS v2.1)tool tip message for branch button in toolbarflow_btn_tooltipCipta kontrol aliran aktivititool tip message for flow button in toolbarvalidation_error_inputTransitionType2Tiada aktiviti hilang input peralihanNo activities are missing their input transition.preview_btn_tooltipPratonton Turutan anda sebagai yang akan dilihat pelajar Tool tip message for preview button in toolbarws_chk_overwrite_existingFolder ini sudah mempunyai fail bernama {0}Alert message when saving a design with the same filename as an existing design.branch_btnCabangLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnAliranLabel for Flow button in Toolbarpi_parallel_titleAktiviti SelariTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceAnda tidak dibenarkan untuk mempunyai turutan berulangError message when a transition from one activity to another is creating a circular loopbin_tooltipJatuhkan aktiviti di tong untuk membuangnya dari turutan aktiviti.Tool tip message for canvas bincv_gateoptional_hit_chkAnda tidak boleh menampah get aktiviti sebagai aktiviti tambahan.Error message when user drags gate activity over to optional containerws_save_folder_invalidAnda tidak boleh menyimpan design di dalam folder ini. Sila pilih sub-folder yang sah.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityPeralihan dari {0} sudah sedia adaError message when a transition from the activity already existcv_activity_helpURL_undefinedTidak berjaya mencari halaman untu {0}Alert message when a tool activity has no help url defined.validation_error_outputTransitionType1Aktiviti ini tidak mempunyai output peralihanThis activity has no output transitionprefs_dlg_titleKeutamaan4act_tool_titleKit alatan AktivitiTitle for Activity Toolkit Panelapp_fail_continueAplikasi tidak dapat disambung. Sila hubungi message if application cannot continue due to any errorvalidation_error_outputTransitionType2Tiada aktiviti hilang output peralihanNo activities are missing their output transition.pi_activity_type_groupingPengumpulan AktivitiActivity type for grouping in Property Inspectorprefix_copyofSalinan untukPrefix for copy paste command for canvas activitiesmnu_file_apply_changesTerap PerubahanApply Changesapply_changes_btnTerap PerubahanApply Changescv_activity_readOnlyAktiviti tidak boleh jadi {0}. Aktiviti hanya untuk dibaca sahaja.Alert message when a user performs an illegal action on a read-only transition.branching_act_titleCabanganLabel for Branching Activitypi_activity_type_sequenceTurutan Aktiviti (Cabang)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlik pada nama untuk mengubah nilai.Instructions for Group Naming dialog.branch_mapping_no_branch_msgTiada Cabang dipilih.Alert message when adding a Mapping without a Branch (Sequence) being selected.condmatch_dlg_title_lblKondisi Sesuai ke CabangDialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_branch_col_lblCabangColumn heading for showing sequence name of the mapping.branch_mapping_auto_condition_msgSemua Kondisi yang tinggal akan di mapkan ke Cabang asas.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_condition_col_value_exactNilai tepat untuk {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblSetup PemetaanLabel for button to open tool output to branch(s) dialog.cv_invalid_design_on_apply_changesTidak boleh menerap perubahan. Terdapat satu atau lebih peralihan yang hilang.Cannot apply changes. There are one or more transitions missing.branch_mapping_dlg_branches_lst_lblCabanganLabel for Branches list box on Branch Matching Dialogs.apply_changes_btn_tooltipTerap perubahan ke design dan kembali ke monitor belajar.tool tip message for save button in toolbarpi_activity_type_branchingMencabangkan AktivitiActivity type for Branching in Property Inspector.pi_branch_typeJenis cabanganProperty Inspector Branching type drop down.tool_branch_act_lblOutput AlatanBranching type label for Tool output Branching.group_btn_tooltipCipta aktiviti berkumpulantool tip message for group button in toolbarbranch_mapping_dlg_group_col_lblKumpulanColumn heading for showing group name of the mapping.cv_eof_finish_invalid_msgDesign mesti sah untuk menyelesaikan suntingan.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.groupmatch_dlg_groups_lst_lblKumpulanLabel for Groups list box on Group/Branch Matching Dialog.pi_lbl_groupPerkumpulanGrouping label for PIws_tree_orgsKumpulan SayaShown in the top level of the tree in the workspacebranch_mapping_no_groups_msgTiada Kumpulan dipilihAlert message when adding a Mapping without a Group being selected.pi_num_groupsNombor kumpulanNumber of groups in Property inspectorpi_group_naming_btn_lblNama KumpulanLabel for button that opens Group Naming dialog.grouping_act_titlePengumpulanDefault title for the grouping activitygroupmatch_dlg_title_lblMap Kumpulan kepada CabangMap Groups to Branchesgroupnaming_dlg_title_lblPenamaan KumpulanTitle label for Group Naming dialog.pi_group_typeJenis PengumpulanProperty Inspector Grouping type drop downgroup_branch_act_lblAsas kumpulanBranching type label for Group-based Branching.pi_lbl_currentgroupPengumpulan SekarangCurrent grouping label for PIcv_invalid_design_savedDesign anda belum lagi sah, tetapi telah disimpan, klik 'Isu' untuk melihat ralat.Message when an invalid design has been savedcv_invalid_trans_targetAnda tidak boleh mencipta peralihan kepada objek iniError message for when transition tool is dropped outside of valid target activitycv_valid_design_savedTahniah! - Design anda sah dan telah disimpanMessage when a valid design has been savedld_val_titleIssue pengesahanThe title for the dialogmnu_tools_prefsKeutamaanMenu bar preferencesmnu_tools_transLukis PeralihanMenu bar draw transitionnew_confirm_msgAdakah anda pasti untuk memadam design anda pada skrin?Msg when user clicks new while working on the existing designpi_definelaterDefine di MonitorLabel for Define later for PIpi_titlePropertiOn the title bar of the PIproperty_inspector_titlePropertiOn the title bar of the PIws_copy_same_folderSumber dan destinasi folder adalah samaThe user has tried to drag and drop to the same placews_dlg_properties_buttonPropertiWorkspace dialogue Properties btn labelws_no_permissionMaaf, anda tidak mempunyai keizinan untuk menulis pada sumber iniMessage when user does not have write permission to complete actionact_lock_chkSila buka kunci Aktiviti Tambahan sebelum menukar aktiviti sebagai pilihanAlert Message if user drags the activity to locked optional activity container sys_error_msg_startSistem ralat telah muncul:Common System error message starting linepi_runofflineRun OfflineLabel for Run Oflinecv_autosave_err_msgRalat telah muncul semasa proses simpanan automatik design anda. Jika ralat ini berterusan sila hubungi Admin SistemAlert error message when auto-save fails.cv_eof_finish_modified_msgAmaran: Design anda telah di ubah. Adakah anda mahu menutup tanpa menyimpannya?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyPeralihan tidak boleh {0}. Target Peralihan hanya boleh dibaca.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipKembali ke monitor belajar.tool tip message for cancel button in toolbar (edit mode)to_conditions_dlg_title_lblCipta Kondisi Alat OutputDialog title for creating new tool output conditions.pi_define_monitor_cb_lblDefine di MonitorCheckbox label for option to define group to branch mappings in Monitor.cv_autosave_rec_msgAnda akan memulihkan design terakhir yang hilang atau tidak disimpan. Design sekarang anda akan dibersihkan. Teruskan?Message informing users that they have recovered data for a design.mnu_file_recoverPulih...Menu bar Recovervalidation_error_transitionNoActivityBeforeOrAfterPeralihan mesti mempunyai aktiviti sebelum atau selepas peralihanA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAktiviti mesti mempunyai input atau output peralihanAn activity must have an input or output transitioncv_edit_on_fly_lblSuntingan LiveLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.about_popup_license_lblProgram ini adalah perisian percuma; anda boleh mengagihkan ia dan/atau mengubah ia dibawah terma GNU General Public Lisense versi 2 seperti yang diumumkan oleh Free Software Foundation.Label displaying the license statement in the About dialog.pi_condmatch_btn_lblSetup Penyataan Kondisi Label for button to open dialog to create output conditions.branch_mapping_dlg_condition_linked_singleKondisi ini ialahPhrase used at start of linked conditions alert message when clearing a single entry.chosen_branch_act_lblPilihan PengajarBranching type label for Teacher choice Branching.to_condition_start_valuenilai mulaValue representing the min boundary value of the conditions range.to_condition_end_valuenilai tamatValue representing the max boundary value of the conditions value.to_condition_invalid_value_range{0} tidak boleh berada diantara jarak kondisi sekarang.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction{0} tidak boleh melebihi {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgAMARAN: Pengajaran akan dibuang. Adakah anda mahu menyimpan pegajaran sebagai {0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueSambungContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} bersambung dengan cabang sedia ada. Anda mahu teruskan?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allTerdapat kondisiPhrase used at start of linked conditions alert message when clearing all.to_condition_untitled_item_lblUntitled {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgDesign mempunyai cabang pemetaan tidak digunakan yang akan dibuang. Adakah anda mahu teruskan?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgUntuk buang sila tidak memilih pilihan aktiviti sebagai {0}.Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg{0} bersambung dengan {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg{0} mempunyai anak bersambung dengan {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxLebih dari {0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btnAktivitiToolbar button for Optional Activity.optional_seq_btnTurutanToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipCipta set pilihan turutanTooltip for Sequences within Optionaly Activity button.about_popup_copyright_lbl© 2002-2008 {0} Foundation.Label displaying copyright statement in About dialog.pi_optSequence_remove_msg Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_optSequence_remove_msg_title Removing sequencesact_seq_lock_chkSila buka bekas Turutan Tidak Wajib sebelum menetapkan aktiviti ke turutan tidak wajib.Alert Message if user drags the activity to locked optional sequences container.pi_no_seq_actNombor TurutanLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - TurutanLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgSila letakkan aktiviti ke salah satu turutan.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesBuang dahan bersambung dari {0} sebelum menambah kedalam turutan tidak wajib.Alert message when user try to drop an activity with connected branches into optional sequences container.cv_invalid_optional_activity_no_branchesTiada turutan dibenarkan lagi pada bekas ini.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.cv_invalid_optional_seq_activityBuang ke atau dari peralihan dari {0} sebelum seting ia ke turutan tidak wajibAlert message when user try to drop an activity with to or from transition into optional sequences container.ta_iconDrop_optseq_error_msgBuang dahan bersambung dari {0} sebelum seting ia sebagai aktiviti tidak wajibAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleTurutan Tidak WajibTitle for Optional Sequences Container.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_lt_lblKurang dari atau samaLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minKurang dari atau sama {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actAktivitiMin and max label postfix when an Optional Activity is selected.pi_seqTurutanMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typejulatType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typebetul/salahType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ DefinisiHeader label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNamaColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblKondisiColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Pilihan ]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipMinimizeTooltip message for close button on Branching canvas. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/nl_BE_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3to_conditions_dlg_remove_item_btn_lbl- VerwijderenLabel for button to remove condition.pi_defaultBranch_cb_lblstandaardCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_from_lblVan:Label for start value in condition range for long or numeric output values.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_defin_long_typereeksType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typewaar:onwaarType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ Definitions ] Header label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNaamColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblVoorwaardeColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Options ] Header label value (first index) for tool long (range) options drop-down.close_mc_tooltipMinimaliserenTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblGroter dan of gelijk aanGreater than or equal toto_conditions_dlg_lte_lblKleiner dan of gelijk aanLess than or equal togroupnaming_dialog_col_groupName_lblGroep NaamColumn label for editable datagrid in Group Naming dialog.ws_chk_overwrite_resourcePas op : U staat op het punt om een sequentie te overschrijven !ws_tree_orgsMijn groepenShown in the top level of the tree in the workspaceal_activity_copy_invalidSorry, je moet de activiteit eerst selecteren voor je op de kopiëerknop kliktAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvascv_autosave_rec_msgU staat op het punt om het verloren gegaan of niet bewaard ontwerp terug te halen. Uw huidige ontwerp zal worden gewist. Doorgaan ?Message informing users that they have recovered data for a design.cv_invalid_design_savedUw ontwerp is nog niet geldig, maar het is bewaard, klik op ' Knelpunten ' om te zien wat er verkeerd isMessage when an invalid design has been savedmnu_help_abtMeer over LAMSMenu bar Aboutpi_no_groupingGeenCombo title for no groupingact_lock_chkOntsluit de container van optionele activiteiten voor U deze activiteit als optioneel kan aanduidenAlert Message if user drags the activity to locked optional activity container condmatch_dlg_cond_lst_lblConditiesLabel for primary list heading on Condition to Branch Matching dialog.groupmatch_dlg_title_lblGroepen op vertakkingen koppelenMap Groups to Branchesto_condition_invalid_value_rangeDe {0} mag niet in het bereik van een bestaande conditie liggen.Alert message when a submitted condition interferes with another previously submitted condition.ws_no_file_openGeen bestand gevondenAlert message if no matching file is found to open in selected folder of Workspace.pi_hoursUrenHours label in Property Inspectorpi_minsMinutenMins label in teh property inspectorsave_btn_tooltipSnel bewaren van de huidige sequentietool tip message for save button in toolbarcv_invalid_trans_target_from_activityDe overgang van {0} bestaal alError message when a transition from the activity already existtrans_btn_tooltipGebruik deze pen om overgangen tussen activiteiten te tekenen (of druk op de CTRL-toets)tool tip message for transition button in toolbaropen_btn_tooltipToon de bestands-dialoog om een activiteitensequentie te openenTool tip message for open button in toolbarcv_invalid_trans_target_to_activityDe overgang naar {0} bestaat al.Error message when a transition to the activity already existal_cannot_move_activitySorry, U kan deze activiteit niet verplaatsenAlert message when user tries to move child activity of any parallel activityws_dlg_save_btnBewaarWsp Dia Save Button labelws_dlg_ok_buttonOKWsp Dia OK Button labelcv_trans_readOnlyOvergang kan niet {0} zijn. De overgang is van het type alleen-lezen.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).tk_titleActiviteitenLabel for Activities Toolkit Panelws_dlg_cancel_buttonAnnuleren2ws_dlg_filenameBestandsnaamLabel for File name in workspace windowws_save_folder_invalidU kan geen ontwerp opslaan in deze map. Kies een geldige sub-map.Alert message if root My Workspace folder is selected to save a design in.prefix_copyof_countKopie ({0}) vanPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.cv_invalid_trans_circular_sequenceU kan geen cirkelvormige sequentie makenError message when a transition from one activity to another is creating a circular loopmnu_file_exportExporterenMenu bar Exportmnu_file_exitAfsluitenFile Menu Exitpreview_btn_tooltipZo zullen uw leerlingen uw sequentie zienTool tip message for preview button in toolbarpi_num_groupsAantal groepenNumber of groups in Property inspectorcopy_btn_tooltipKopiëer de geselecteerde activiteittool tip message for copy button in toolbargate_btn_tooltipMaak een stop-punttool tip message for gate button in toolbaroptional_btn_tooltipMaak een set optionele activiteitentool tip message for optional button in toolbarflow_btn_tooltipMaak stroom-controle activiteitentool tip message for flow button in toolbarpaste_btn_tooltipPlak een kopie van de geselecteerde activiteittool tip message for paste button in toolbaral_sendZendenSend button label on the system error dialogcv_design_unsavedHet ontwerp in de werkruimte is gewijzigd. Doorgaan zonder dit te bewaren ?Alert message when opening/importing when current design on canvas is unsaved or modified.cv_trans_target_act_missingDe tweede activiteit van de overgang ontbreekt.Error message when target activity for transition is missingcv_invalid_optional_activityVerwijder de overgangen van en naar {0} voor je deze activiteit optioneel maaktAlert message when user try to drop an activity with to or from transition into optional containerws_click_file_openKlik op een Ontwerp om te openenAlert message if folder tried to be opened.pi_group_typeGroeperingstypeProperty Inspector Grouping type drop downsys_errorSysteemfoutSystem Error elert window titlews_copy_same_folderDe bron- en bestemmingsmap zijn dezelfdeThe user has tried to drag and drop to the same placews_rename_insGeef de nieuwe naam op a.u.bMessage of the new name for the userws_dlg_properties_buttonEigenschappenWorkspace dialogue Properties btn labelsys_error_msg_startVolgende systeemfout heeft zich voorgedaan :Common System error message starting linesys_error_msg_finishHet kan nodig zijn dat U LAMS Author moet herstarten om verder te kunnen. Wil U volgende informatie aangaande deze fout opslaan om het probleem te helpen oplossen ?Common System error message finish paragraphws_click_folder_fileKlik op een map om in te bewaren, of op een Ontwerp om te overschrijvenError msg if no folder or file is selectedws_dlg_open_btnOpenWsp Dia Open Button labelws_no_permissionSorry, U mag niet naar deze bron schrijvenMessage when user does not have write permission to complete actionws_newfolder_okOKOK on the new folder name diaws_newfolder_cancelAnnuleerCancel on the new folder name diaopt_activity_titleOptionele activiteitTitle for Optional Activity Containerws_view_license_buttonToonTo show the license to the userws_license_lblLicentieLabel for Licence drop down on workspace properties tab viewws_license_comment_lblBijkomende informatie over de licentieLabel for Licence Comment description below license drop downld_val_issue_columnKnelpuntThe heading on the issue in the ValidationIssuesDialoggrouping_act_titleGroeperingDefault title for the grouping activitypi_lbl_currentgroupHuidige groeperingCurrent grouping label for PIws_dlg_location_buttonPlaatsWorkspace dialogue Location btn labelgroup_btn_tooltipMaak een groeperingsactiviteittool tip message for group button in toolbaral_cancelAnnulerenTo Confirm title for LFErroral_confirmBevestigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDe taalgegevens zijn nog niet geladenmessage for unsuccessful language loadingapp_chk_themeloadDe themagegevens zijn nog niet geladenmessage for unsuccessful theme loadingapp_fail_continueDeze toepassing kan niet verder worden uitgevoerd. Neem contact op met de helpdeskmessage if application cannot continue due to any errorchosen_grp_lblGekozenLabel for the grouping drop down in the PropertyInspectorcopy_btnKopiërenToolbar &gt; Copy Buttoncv_invalid_trans_targetU kunt aan dit object geen overgang makenError message for when transition tool is dropped outside of valid target activitycv_show_validationKnelpuntenThe button on the confirm dialogcv_valid_design_savedGelukwensen! - Uw ontwerp is geldig en is bewaardMessage when a valid design has been saveddb_datasend_confirmDank U voor het zenden van gegevens naar de serverMessage when user sucessfully dumps data to the serverdelete_btnVerwijderenLabel for Delete buttongate_btnDoorgangToolbar &gt; Gate Buttongroup_btnGroepToolbar &gt; Group Buttonld_val_activity_columnActiviteitThe heading on the activity in the ValidationIssuesDialogld_val_doneBeëindigdThe button label for the dialoglicense_not_selectedMomenteel is geen licentie geselcteerd - Kies er één a.u.b.Shown if no license is selected in the drop down in workspacemnu_editBewerkenMenu bar Editmnu_edit_copyKopiërenMenu bar Edit &gt; Copymnu_edit_cutKnippenMenu bar Edit &gt; Cutmnu_edit_pastePlakkenMenu bar Edit &gt; Pastemnu_edit_redoOpnieuwMenu bar Edit &gt; Redomnu_edit_undoOngedaan makenMenu bar Edit &gt; Undomnu_fileBestandMenu bar Filemnu_file_closeSluitenMenu bar Closemnu_file_newNieuwMenu bar Newmnu_file_openOpenMenu bar Openmnu_file_saveBewaarMenu bar savemnu_file_saveasBewaar alsMenu bar Save asmnu_helpHelpMenu bar Helpmnu_tools_optTeken OptioneelMenu bar Optionalmnu_tools_prefsVoorkeurenMenu bar preferencesmnu_tools_transTeken OvergangenMenu bar draw transitionnew_btnNieuwToolbar &gt; New Buttonnew_confirm_msgBent U zeker dat U uw ontwerp op het scherm wil wissen?Msg when user clicks new while working on the existing designnone_act_lblGeenNo gate activity selectedopen_btnOpenToolbar &gt; Open Buttonoptional_btnOptioneelToolbar &gt; Optional Buttonpaste_btnPlakkenToolbar &gt; Paste Buttonperm_act_lblToelatingLabel for permission gate activitypi_activity_type_gateDoorgangsactiviteitActivity type for gate in PIpi_activity_type_groupingGroepsactiviteitActivity type for grouping in Property Inspectorpi_definelaterBepaal laterLabel for Define later for PIpi_end_offsetDoorgang sluitenEnd offset labelpi_lbl_descBeschrijvingDescription Label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMax. ActiviteitenLabel for maximum Activities or Sequencespi_min_actMin. ActiviteitenLabel for minimum Activities or Sequencespi_num_learnersAantal deelnemersPI Num learners labelpi_optional_titleOptionele activiteitTitle for oprional activity property inspectorpi_runofflineOffline uitvoerenLabel for Run Oflinepi_start_offsetDoorgang openenStart offset labelpi_titleEigenschappenOn the title bar of the PIprefix_copyofKopie vanPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAfbreken6prefs_dlg_lng_lblTaal7prefs_dlg_okOK5prefs_dlg_theme_lblThema8prefs_dlg_titleVoorkeuren4preview_btnVoorbeeldToolbar &gt; Preview Buttonproperty_inspector_titleEigenschappenOn the title bar of the PIrandom_grp_lblWillekeurigLabel for the grouping drop down in the PropertyInspectorrename_btnHernoemenLabel for Rename Buttonsave_btnBewaarToolbar &gt; Save buttonsched_act_lblTijdschemaLabel for schedule gate activitysynch_act_lblSynchroniserenUsed as a label for the Synch Gate Activity Typetrans_btnOvergangToolbar &gt; Transition Buttontrans_dlg_gateSynchronisatieHeader for the transition props dialogtrans_dlg_gatetypecmbTypeGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleOvergangTitle for the transition properties dialogws_RootBasisRoot folder title for workspacetrans_dlg_cancelAnnulerenCancel button on transition dialogal_empty_designSorry, U kan geen leeg ontwerp bewarenalert message when user want to save an empty designcv_readonly_lblAlleen lezenLabel for top left of canvas shown when a read-only design is open.cv_activity_dbclick_readonlyU kan geen gereedschap in een alleen-lezen ontwerp bewerken. Sla een kopie van het ontwerp op en probeer opnieuwAlert message when double-clicking an Activity in an open read-only designcv_gateoptional_hit_chkU kan geen doorgangsactiviteit niet optioneel makenError message when user drags gate activity over to optional containerbin_tooltipSleep een activiteit op deze prullenbak om ze uit de sequentie te verwijderen.Tool tip message for canvas binpi_parallel_titleParallelle activiteitTitle for parallel activity property inspectorws_click_virtual_folderU kan deze map niet gebruikenAlert message for trying to use a virtual folder to save/open a file.mnu_file_importImporterenMenu bar Importflow_btnStroomLabel for Flow button in Toolbarws_chk_overwrite_existingDeze map bevat al een bestand genaamd {0}Alert message when saving a design with the same filename as an existing design.cv_design_export_unsavedU kan geen ontwerp exporteren dat niet opgeslagen werd.Alert message when trying to export can unsaved design.branch_btnVertakkingLabel for disabled Branch button shown as submenu for flow button in Toolbarnew_btn_tooltipVerwijdert de huidige sequentie en zet de werkruimte terug klaarTool tip message for new button in toolbarbranch_btn_tooltipMaak een vertakking (beschikbaar in LAMS v 2.1)tool tip message for branch button in toolbarws_dlg_titleWerkruimte0ws_tree_mywspMijn werkruimteThe root level of the treelbl_num_activitiesActiviteitenreplacement for word activitiesws_newfolder_insGeef een naam voor de nieuwe mapInstructions on the new name pop upld_val_titleValidatie knelpuntenThe title for the dialogpi_lbl_groupGroeperingGrouping label for PIcv_autosave_rec_titleWaarschuwingAlert title for auto save recovery message.cv_invalid_design_on_apply_changesKan wijzigingen niet opslaan. Er ontbreken 1 of meer overgangen.Cannot apply changes. There are one or more transitions missing.validation_error_outputTransitionType2Er zijn geen activiteiten die hun uitvoer-overgang missen.No activities are missing their output transition.validation_error_outputTransitionType1Deze activiteit heeft geen uitvoer-overgang.This activity has no output transitionact_tool_titleActiviteitenTitle for Activity Toolkit Panelmnu_toolsGereedschapMenu bar Toolscv_autosave_err_msgEr heeft zich een fout voorgedaan tijdens een poging om uw ontwerp automatisch te bewaren. Als deze fout zich blijft voordoen, neem dan contact op met uw systeembeheerderAlert error message when auto-save fails.al_alertAandachtGeneric title for Alert windowvalidation_error_inputTransitionType1Deze activiteit heeft geen invoer overgangThis activity has no input transitionvalidation_error_activityWithNoTransitionEen activiteit moet een invoer- of uitvoer-overgang hebbenAn activity must have an input or output transitionmnu_file_recoverHerstellen...Menu bar Recovervalidation_error_inputTransitionType2Er zijn geen activiteiten die hun invoer-overgang missen.No activities are missing their input transition.validation_error_transitionNoActivityBeforeOrAfterEen overgang moet een activiteit voor of na de overgang hebbenA Transition must have an activity before or after the transitionws_del_confirm_msgBen je zeker dat je dit bestand of deze map wil verwijderen ?Confirmation message when user tries to delete a file or folder in workspace dialog boxcv_activity_copy_invalidSorry, je kan deze dochter-activiteit niet kopiërenError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSorry, je kan deze dochter-activiteit niet knippen.Error message when user try to cut child activity from either optional or parallel activity containerpi_daysDagenDays label in property inspector for gate toolbranching_act_titleZijtak(ken)Label for Branching Activitystream_urlhttp://{0}foundation.orgURL address for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_reference_lblLAMS Reference label for the application stream.about_popup_license_lblDit programma valt onder de Vrije Software; u mag het verspreiden en/of aanpassen onder de voorwarden van de GNU General Public License version 2 zoals die is gepubliceerd door de Free Software Foundation.Label displaying the license statement in the About dialog.about_popup_trademark_lbl{0} is een handelsmerk van {0} stichting ( {1} )Label displaying the trademark statement in the About dialog.about_popup_version_lblVersieLabel displaying the version no on the About dialog.about_popup_title_lblOver - {0}Title for the About Pop-up window.mnu_file_finishEindeMenu bar File - Finish (Edit Mode)cancel_btn_tooltipTerug naar de les bekijkentool tip message for cancel button in toolbar (edit mode)cv_eof_finish_modified_msgWaarschuwing: Uw ontwerp is gewijzigd. Wilt u afsluiten zonder op te slaan?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_eof_finish_invalid_msgBeeindigen niet mogelijk: het ontwerp voldoet nog niet aan de minimumeisen.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_element_readOnly_action_modgewijzigdAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_delverwijderdAction label for read only alert message for a Canvas Transition.cv_edit_on_fly_lblLive aanpassenLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_activity_readOnlyActiviteit kan niet {0} zijn. De Activiteit is van het type alleen-lezen.Alert message when a user performs an illegal action on a read-only transition.cancel_btnAnnulerenToolbar - Cancel Buttonapply_changes_btn_tooltipSla de aanpassingen op en keer terug naar 'les bekijken'.tool tip message for save button in toolbarapply_changes_btnWijzigingen toepassenApply Changesmnu_file_apply_changesWijzigingen toepassenApply Changescv_eof_changes_appliedWijzigingen zijn succesvol toegepast.Changes have been successful applied.cv_close_return_to_ext_srcAfsluiten en terug naar {0}Button label used on close and return button in save confirm message popup.cv_untitled_lblZonder titel - 1Label for Design Title bar on canvasws_file_name_emptySorry! Het is toegestaan een ontwerp op te slaan zonder bestandsnaam.Error message when user try to save a design with no file nametrans_dlg_nogateGeenDrop down default for gate typews_dlg_descriptionOmschrijvingLabel for description in Workspace dialog - Properties tabcv_activity_helpURL_undefinedKan geen help pagina vinden voor {0}Alert message when a tool activity has no help url defined.ws_entre_file_nameGeef het ontwerp een naam, en klik daarna op de knop Opslaan.Error message when user try to save a design with no file nameccm_piEigenschappen Inspecteur...Label for Custom Context Menumnu_help_helpAuteurs helplabel for menu bar Help - Authoring Help optionccm_author_activityhelpAuteurs Activiteit HelpLabel for Custom Context Menuccm_open_activitycontentOpen/Wijzig Activiteit InhoudLabel for Custom Context Menual_activity_openContent_invalidSorry! U moet een activiteit kiezen voordat u op het Open/Wijzigen Activiteit Inhoud menu item in het activiteit-rechts-klik-menu klikt.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasccm_copy_activityKopieer ActiviteitLabel for Custom Context Menuccm_paste_activityPlak ActiviteitLabel for Custom Context Menuto_condition_invalid_value_directionDe {0} kan niet groter zijn dan de {1}.Alert message when the start value is greater than end value of the submitted condition.to_conditions_dlg_range_lblStel bereik in:Heading label for section in the dialog to set numeric condition range.groupnaming_dialog_instructions_lblKlik op een naam om de waarde te wijzigen.Instructions for Group Naming dialog.branch_mapping_dlg_condition_col_lblConditieColumn heading for showing condition description of the mapping.pi_activity_type_branchingVertakkings activiteitActivity type for Branching in Property Inspector.about_popup_copyright_lbl© 2002-2008 {0} stichting.Label displaying copyright statement in About dialog.is_remove_warning_msgLet op: de les staat op het punt te worden verwijderd. Wilt u de les bewaren als {0}?Message for the alert dialog which appears following confirmation dialog for removing a lesson.branch_mapping_dlg_branch_col_lblVertakkingColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_linked_singleDeze conditie is Phrase used at start of linked conditions alert message when clearing a single entry.pi_seqSequentiesMin and max label postfix when an Optional Sequences activity is selected.pi_actActiviteitenMin and max label postfix when an Optional Activity is selected.branch_mapping_dlg_condition_col_value_minMinder of gelijk aan {0}Value for Condition field in mapping datagrid when Less than option is selected.to_conditions_dlg_lt_lblMinder dan of gelijk aanLess than option for long type conditions.opt_activity_seq_titleOptionele sequentiesTitle for Optional Sequences Container.ta_iconDrop_optseq_error_msgVerwijder alle koppelingen van {0} voor het als een optionele activiteit in te stellenAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.cv_invalid_optional_seq_activityVerwijder alle transities van {0} voor het als optionele sequentie in te stellen.Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesEr zijn geen sequenties actief voor deze container.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.pi_no_seq_actAantal sequentiesLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - SequentiesLabel to describe the amount of sequences in the container.optional_act_btnActiviteitToolbar button for Optional Activity.branch_mapping_dlg_condition_linked_allEr zijn conditiesPhrase used at start of linked conditions alert message when clearing all.optional_seq_btnSequentieToolbar button for Sequences within Optional Activity.al_continueDoorgaanContinue button on Alert dialogcv_invalid_optional_seq_activity_no_branchesVerwijder alle koppelingen alvorens {0} toe te voegen als optionele sequentie.Alert message when user try to drop an activity with connected branches into optional sequences container.activityDrop_optSequence_error_msgLaat de activiteit op één van de sequenties vallen.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.pi_optSequence_remove_msgDe te verwijderen sequentie(s) bevat(ten) mogelijk nog activiteiten; die zullen worden verwijderd. Doorgaan?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_optSequence_remove_msg_titleSequenties verwijderenRemoving sequencesoptional_seq_btn_tooltipEen set optionele sequenties maken.Tooltip for Sequences within Optionaly Activity button.branch_mapping_dlg_condition_col_value_maxGroter dan of gelijk aan {0}Value for Condition field in mapping datagrid when Greater than option is selected.cv_activityProtected_child_activity_link_msgDeze {0} heeft een gekoppeld kind aan een {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.cv_activityProtected_activity_link_msgDeze {0} is gekoppeld aan een {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_activity_remove_msgDe-selecteer de activiteit als de {0} om te verwijderen.Instruction how to delete an Activity linked to a Branching Activity.group_branch_act_lblGroep-gebaseerdBranching type label for Group-based Branching.to_condition_end_valueeind waardeValue representing the max boundary value of the conditions value.to_condition_start_valuestart waardeValue representing the min boundary value of the conditions range.sequence_act_titleSequentieDefault title for Sequence Activity.to_condition_untitled_item_lblOnbenoemde {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.pi_group_naming_btn_lblGroepnamenLabel for button that opens Group Naming dialog.branch_mapping_dlg_condition_col_valueBereik {0} tot {1}Value for Condition field in mapping datagrid.branch_mapping_no_branch_msgGeen tak geselecteerd.Alert message when adding a Mapping without a Branch (Sequence) being selected.groupmatch_dlg_groups_lst_lblGroepenLabel for Groups list box on Group/Branch Matching Dialog.to_conditions_dlg_clear_all_btn_lblAlles wissenLabel for button to clear all conditions.al_doneKlaarLabel for dialog completion button.branch_mapping_dlg_group_col_lblGroepColumn heading for showing group name of the mapping.groupnaming_dlg_title_lblGroepnamenTitle label for Group Naming dialog.branch_mapping_no_groups_msgGeen groepen geselecteerd.Alert message when adding a Mapping without a Group being selected.to_conditions_dlg_add_btn_lbl+ ToevoegenLabel for button to add a condition.branch_mapping_dlg_condition_col_value_exactExtra waarde van {0}Value for Condition field in mapping datagrid when range set is only single value.branch_mapping_dlg_condition_linked_msg{0} is gekoppeld aan een bestaande tak. Willt u doorgaan?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.pi_branch_typeVertakkings-typeProperty Inspector Branching type drop down.branch_mapping_dlg_branches_lst_lblVertakkingenLabel for Branches list box on Branch Matching Dialogs.branch_mapping_no_condition_msgGeen condities geselecteerd.Alert message when adding a Mapping without a Condition being selected.to_conditions_dlg_to_lblAan:Label for end value in condition range for long or numeric output values.act_seq_lock_chkDe optionele sequentie container is nog gesloten: open die voordat u de activiteit toekent.Alert Message if user drags the activity to locked optional sequences container.redundant_branch_mappings_msgHet ontwerp bevat ongebruikte vertakking-mappings die verwijderd zullen worden. Doorgaan?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.branch_mapping_dlg_match_dgd_lblMappingsHeading label for Mapping datagrid.pi_define_monitor_cb_lblIn monitor definierenCheckbox label for option to define group to branch mappings in Monitor.branch_mapping_no_mapping_msgGeen mappings geselecteerd.Alert message when removing a Mapping without a Mapping being selected.to_conditions_dlg_title_lblNieuwe uitvoer-condities makenDialog title for creating new tool output conditions.pi_condmatch_btn_lblConditionele stellingen opstellenLabel for button to open dialog to create output conditions.tool_branch_act_lblGereedschap uitvoerBranching type label for Tool output Branching.pi_mapping_btn_lblMappings opzettenLabel for button to open tool output to branch(s) dialog.branch_mapping_auto_condition_msgAlle overblijvende condities zullen op de standaard vertakking worden gekoppeld.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.chosen_branch_act_lblDocent keuzeBranching type label for Teacher choice Branching.condmatch_dlg_title_lblCondities met vertakkingen koppelenDialog title for matching conditions to branches for Tool based Branching.pi_branch_tool_acts_lblInvoer (gereedschap)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_activity_type_sequenceActiviteit sorteren ({0})Activity type for Sequence (Branch) in Property Inspector.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/no_NO_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3validation_error_activityWithNoTransitionEn aktivitet må ha en inn- eller en utgangs-forbindelse.cv_trans_readOnlyForbindelsen kan ikke være {0}. Forbindelsens mål har kun lese rettighet.pi_tool_output_matching_btn_lblKnytt betingelser til forskjellige grenercv_design_insert_warningNår du har lagt til en ny sekvens så kan du ikke avbryte denne aksjonen - din gamle sekvens blir lagret automatisk med den nye sekvensen. or å gå tilbake til den gamle sekvensen så må du fjerne alle nye sekvenser manuelt og så lagre. For å lagre den aktive sekvensen uendret, klikk på Avbryt. Hvis ikke, klikk på OK for å velge en ny sekvens som skal legges til.act_seq_lock_chkVennligst lås opp beholderen for alternative sekvenser før du tilordner denne aktiviteten til en alternativ sekvensvalidation_error_inputTransitionType2Ingen av aktivitetene mangler inngangs-forbindelser.cv_invalid_trans_target_from_activityEn forbindelse fra {0] eksisterer allerede.cv_eof_changes_appliedEndringene er implementert korrekt.sys_error_msg_finishDu må starte om LAMS Forfatter for å fortsette. Vil du lagre informasjon om denne feilen slik at den kan bli utbedret?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroKan ikke foreta oppdatering fordi det finnes ingen bruker definisjon. Du må definere dette på verktøyets forfatter side(r).al_activity_copy_invalidBeklager ! Du må velge hvilken aktivtet du skal kopiere før du klikker på kopier.al_activity_openContent_invalidBeklager ! Du må velge en aktivitet før du klikker på Åpne/Rediger ikonet.map_comptence_btnKartlegging av kompetansebranch_mapping_dlg_match_dgd_lblBetingelserpi_mapping_btn_lblDefiner betingelserbranch_mapping_no_mapping_msgIngen betingelser er valgtto_conditions_dlg_defin_item_header_lbl[Velg utgangsdata]tool_branch_act_lblStudentenes oppnådde resultatcompetences_lblKompetansesequence_act_titleSekvensto_conditions_dlg_condition_items_update_defaultConditionsDu er i ferd med å oppdatere reglene for oppnådde resultat. Dette vil fjerne alle lenker til de grener som er definert. Vil du fortsette ?pi_branch_tool_acts_lblAktivitet (verktøy)groupnaming_dialog_col_groupName_lblGruppe navnmnu_file_insertdesignSett inn/slå sammen...ws_dlg_insert_btnSett innbranch_mapping_dlg_branch_item_default{0} (standard)pi_group_matching_btn_lblKnytt grupper til forskjellige grenerrefresh_btnFrisk opp skjermbildetto_conditions_dlg_defin_user_defined_typebruker definertgrouping_invalid_with_common_names_msgKan ikke lagre designet fordi gruppe aktiviteteten '{0}' har flere grupper med samme navn. Vennligst kontroller og forsøk igjen.al_activity_paste_invalidBeklager, du kan ikke lime inn denne type aktivitetpreview_btn_tooltip_disabledFor å forhåndsvise din sekvens så må du først lagre den og deretter klikke på Forhåndsvis.condmatch_dlg_message_lblStandard gren blir valgt ved å klikke på standard i området for egenskapercompetences_mapped_to_act_lblKompetansebranch_mapping_dlg_condition_col_valueOmråde {0} til {1}branch_mapping_dlg_condition_col_value_exactEksakt verdi av {0}condmatch_dlg_title_lblKnytt betingelser til grenenepi_define_monitor_cb_lblDefineres i kontrollmodusgroupmatch_dlg_title_lblPlanlegg grupper mot forgreningerbranch_mapping_no_groups_msgIngen gruppe er valgt.group_branch_act_lblGruppebasertbranch_mapping_dlg_branches_lst_lblGrenergroupmatch_dlg_groups_lst_lblGruppergroupnaming_dlg_title_lblNavngiving av grupperpi_activity_type_branchingForgreningsaktivitetpi_branch_typeType forgreningpi_group_naming_btn_lblNavngi grupperchosen_branch_act_lblLærerens valgto_condition_start_valueStart verdito_condition_end_valueSlutt verdito_condition_invalid_value_rangeVerdien {0} kan ikke være innenfor området til et definert områdeto_condition_invalid_value_direction{0} kan ikke være større enn {1}is_remove_warning_msgMERK ! Leksjonen er i ferd med å bli slettet. Ønsker du at å lagre denne som {0}al_continueFortsettbranch_mapping_dlg_condition_linked_msg{0} er knyttet til en gren. Ønsker du å fortsette ?branch_mapping_dlg_condition_linked_allDet er satt betingelserbranch_mapping_dlg_condition_linked_singleDenne betingelsen erto_condition_untitled_item_lblUten tittel {0}redundant_branch_mappings_msgDette designet har grener som ikke er benyttet og denne vil bli fjernet. Ønsker du å fortsette ?cv_activityProtected_activity_remove_msgFor å fjerne denne aktiviteten, vennligst velg ut denne aktiviteten som {0}support_act_btnBrukerstøttesupport_act_titleAktivitet for brukerstøttesupport_msg_no_connectionAktiviteter for brukerstøtte kan ikke knyttes til andre aktivitetersupport_msg_invalid_childAktivitet av typen {0} kan ikke legges til fordi dette er brukerstøtte aktivitetsupport_msg_max_children_reachedKan ikke sette inn aktiviteten: {0} her. Aktiviteten brukerstøtte tillater maksimalt {0} tilliggende aktiviteter.support_msg_cannot_be_childKan ikke sette inn en brukerstøtte aktivitet i en annen aktivitet.support_act_btn_tooltipLage et sett av alternativ brukerstøtte.optional_act_btnAktivitetcv_activityProtected_activity_link_msgDenne {0} er forbundet med en {1}cv_activityProtected_child_activity_link_msgDenne {0} har en "child" forbundet med en {1}branch_mapping_dlg_condition_col_value_maxStørre enn eller lik {0}optional_seq_btnSekvensoptional_seq_btn_tooltipLage et antall alternative sekvenserpi_optSequence_remove_msg_titleFjerner sekvenserpi_optSequence_remove_msgSekvensen(e) som skal fjernes kan inneholde aktiviteter som vil bli slettet. Ønsker du å fjerne disse sekvensene ?pi_no_seq_actAntall sekvenserlbl_num_sequences{0} - sekvenseractivityDrop_optSequence_error_msgVennligst legg inn aktiviteten i en av sekvensenecv_invalid_optional_seq_activity_no_branchesFjern grenforbindelser fra {0} før du forbinder den til en alternativ sekvensopt_activity_seq_titleAlternative sekvenserto_conditions_dlg_lt_lblMindre enn eller likto_conditions_dlg_defin_long_typeområdeta_iconDrop_optseq_error_msgDet er ingen sekvenser i denne beholderencv_invalid_optional_seq_activityFjern til og fra forbindelser {0} før du forbinder den til en alternativ sekvenscv_invalid_optional_activity_no_branchesFjern grenforbindelser fra {0} før du forbinder den til en alternativ aktivitetbranch_mapping_dlg_condition_col_value_minMindre enn eller lik {0}pi_actAktiviteterpi_seqSekvenserto_conditions_dlg_defin_bool_typeriktig/galtto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNavnto_conditions_dlg_condition_items_value_col_lblBetingelseto_conditions_dlg_options_item_header_lbl[Alternativer]sequence_act_title_new{0} {1}close_mc_tooltipMinimerto_conditions_dlg_gte_lblStørre enn eller likto_conditions_dlg_lte_lblMindre enn eller likmnu_help_helpHjelp ccm_open_activitycontentÅpne/rediger aktivitetsinnholdccm_copy_activityKopier aktivitetccm_paste_activityLim inn aktivitetccm_piKontroll av eiendomsrett.....ccm_author_activityhelpHjelp for forfatterws_dlg_descriptionBekrivelsetrans_dlg_nogateIngenpi_daysDagercv_close_return_to_ext_srcLukk og gå til {0}mnu_file_apply_changesBruk endringenevalidation_error_transitionNoActivityBeforeOrAfterEn forbindelse må ha en aktivitet før og etter seg.validation_error_inputTransitionType1Denne aktiviteten har ingen forbindelse til inngangenvalidation_error_outputTransitionType1Denne aktiviteten har ingen forbindelse fra utgangenvalidation_error_outputTransitionType2Ingen aktiviteter mangler utgangs-forbindelser.cv_invalid_design_on_apply_changesKan ikke gjennomføre endringene. Det mangler en eller flere forbindelser.apply_changes_btnBruk endringeneapply_changes_btn_tooltipGjennomfør endringene og gå tilbake til kontroll modus.cancel_btnAvbrytcv_edit_on_fly_lblAktuell endringcv_element_readOnly_action_delfjernetcv_element_readOnly_action_modendretcv_activity_readOnlyAktiviteten kan ikke være {0}. Aktiviteten har kun leserettigheter.cv_eof_finish_invalid_msgDesignet må være gyldig for å kunne gjennomføre endringene.cv_eof_finish_modified_msgMERK ! Designet er endret. Ønsker du å avslutte uten å lagre ?cancel_btn_tooltipGå tilbake til kontroll modus.mnu_file_finishAvsluttabout_popup_title_lblOm - {0}about_popup_version_lblVersjonabout_popup_trademark_lbl{0} er varemerket til {0} stiftelsen ({1})to_conditions_dlg_add_btn_lbl+ legg tilabout_popup_license_lblDenne programvaren er en fri programmvare, du kan distribuere den videre og/eller endre denne så lenge betingelsene i GNU General Public License versjon 2, utgitt av Free Software Foundation, følges.stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_titleForgreningpi_activity_type_sequenceSekvens aktivitet ({0})groupnaming_dialog_instructions_lblKlikk på et navn for å endre dettepi_condmatch_btn_lblDefiner forutsettningeneto_conditions_dlg_title_lblDefiner utgangsparametreal_doneUtførtcondmatch_dlg_cond_lst_lblForutsettningerpi_defaultBranch_cb_lblstandardto_conditions_dlg_clear_all_btn_lblFjern altto_conditions_dlg_remove_item_btn_lblFjernto_conditions_dlg_to_lblTil:to_conditions_dlg_range_lblOmråde:branch_mapping_dlg_branch_col_lblGrenbranch_mapping_dlg_condition_col_lblForutsettningbranch_mapping_dlg_group_col_lblGruppepi_num_groupsAntall grupperbranch_mapping_no_branch_msgDet er ikke valgt en gren.branch_mapping_no_condition_msgIngen forutsettninger er valgt.branch_mapping_auto_condition_msgDe gjenstående utgangsparametre vil bli tillagt standard forgreningencv_autosave_rec_titleAdvarselpi_parallel_titleParallell aktivitetopt_activity_titleAlternativ aktivitetlbl_num_activities{0} - aktiviteteral_sendSendal_cannot_move_activityBeklager du kan ikke flytte denne aktiviteten.cv_gateoptional_hit_chkDu kan ikke legge inn en port som en alternativ aktivitet.prefix_copyof_countKopi {0} avws_save_folder_invalidDu kan ikke lagre en design i denne mappen. Vennligst velg en gyldig undermappe.ws_click_file_openVennligst klikk på et design for å åpne denne.ws_license_lblLisensws_license_comment_lblTilleggsinformasjon for lisenscv_invalid_optional_activityFjerner til og fra forbindelser fra {0} før den defineres som en tilleggs aktivitet.cv_trans_target_act_missingDen andre aktiviteten i forbindelsen mangler.cv_invalid_trans_target_to_activityEn forbindelse til {0} eksisterer allerede.branch_btnGrenflow_btnAktivitets tilgangmnu_file_importImportercv_design_export_unsavedDu kan ikke eksportere en design som ikke er lagret.cv_design_unsavedDesignet i vinduet er endret. Fortsette uten å lagre ?mnu_file_exportEksporterws_chk_overwrite_existingDenne mappen inneholder allerede en fil med navn {0}ws_click_virtual_folderDu kan ikke benytte denne mappen.mnu_file_exitGå utws_no_file_openFilen ikke funnetcv_invalid_trans_circular_sequenceDu har ikke anledning til å lage en sirkulær sekvensbin_tooltipFlytt aktiviteten til papirkurven for å fjerne den fra sekvensen.mnu_file_recoverGjenopprett...new_btn_tooltipFjerner aktiv sekvens og klargjør arbeidsområdet for ny bruk.open_btn_tooltipVis fil dialog for å åpne en aktivitets sekvenscv_untitled_lblUbestemt -1save_btn_tooltipHurtiglagre den aktive sekvensen.copy_btn_tooltipKopier den valgte aktivitetpaste_btn_tooltipLim inn en kopi av den valgte aktivitettrans_btn_tooltipBenytt denne blyanten for å tegne forbindelseslinjer mellom aktiviteter (eller trykk CTRL tast)optional_btn_tooltipLag et sett av alternative aktivitetergate_btn_tooltipLag et stopp punktbranch_btn_tooltipLag en gren flow_btn_tooltipStyre tilgang til aktivitetenegroup_btn_tooltipLag en gruppe aktivitetpreview_btn_tooltipForhåndsvis din sekvens slik studentene vil se den.cv_activity_dbclick_readonlyDu kan ikke endre en design med kun lesetilgang. Lag en kopi av designet og prøv igjen.cv_readonly_lblKun lesetilgangal_empty_designBeklager, du kan ikke lagre en design uten innholdcv_autosave_err_msgDet har oppstått en feil når automatisk lagring av ditt design foretas. Vennlist øk lagringsområdet for Flash spilleren.cv_autosave_rec_msgDu er i ferd med å gjenopprette den siste eller en design som ikke er lagret. Den nåværende design vil bli fjernet. Fortsette ?cv_activity_copy_invalidBeklager ! Du har ikke tillatelse til å kopiere denne tilleggs-aktiviteten.ws_del_confirm_msgVil du virkelig fjerne denne filen/mappen ?cv_activity_cut_invalidBeklager ! Du har ikke tillatelse til å fjerne denne tilleggs-aktiviteten.ws_file_name_emptyBeklager ! Du kan ikke lagre et design uten å ha gitt det et navn.ws_entre_file_nameSkriv design navnet og klikk på Lagre knappen.cv_activity_helpURL_undefinedFinner ikke hjelpesiden for {0}none_act_lblIngen valgtopen_btnÅpnepaste_btnLim innoptional_btnAlternativperm_act_lblTilgangpi_group_typeGrupperingstypepi_activity_type_gatePort til aktivitetpi_activity_type_groupingGrupperingsaktivitetpi_definelaterDefiner i kontrollmoduspi_end_offsetLukk portenpi_hoursTimerpi_lbl_currentgroupAktiv grupperingpi_lbl_descBeskrivelsepi_lbl_groupGrupperingpi_lbl_titleTittelpi_max_actMaks. {0}pi_min_actMin. {0}pi_minsMinutterpi_no_groupingIngenpi_num_learnersAntall studenterpi_optional_titleAlternativ aktivitetpi_runofflineOff-line aktivitetprefs_dlg_lng_lblSpråkprefs_dlg_okOKprefs_dlg_theme_lblTemapi_start_offsetÅpne portenpi_titleEgenskaperprefix_copyofKopi avprefs_dlg_cancelAvbrytprefs_dlg_titleInnstillingerpreview_btnForhåndsvisningproperty_inspector_titleEgenskaperrandom_grp_lblTilfeldigrename_btnNytt navnsave_btnLagresched_act_lblPlanleggesynch_act_lblSynkroniseretk_titleAktivitetsverktøytrans_btnForbindelsetrans_dlg_cancelAvbryttrans_dlg_gateSynkroniseringtrans_dlg_gatetypecmbTypetrans_dlg_okOKto_conditions_dlg_from_lblFra:trans_dlg_titleForbindelsews_RootRotws_chk_overwrite_resourcePass på! Du er i ferd med å overskrive denne sekvensen !ws_click_folder_fileKlikk på en mappe for å lagre i, eller en design for å overskrivews_dlg_cancel_buttonAvbrytws_copy_same_folderKilde- og målmappe er den samme ws_dlg_filenameFilnavnws_dlg_location_buttonPlasseringws_dlg_ok_buttonOKws_dlg_open_btnÅpnews_dlg_properties_buttonEgenskaperws_dlg_save_btnLagrews_dlg_titleArbeidsområdews_newfolder_cancelAvbrytws_newfolder_insVennligst skriv det nye mappe navnetws_newfolder_okOKld_val_issue_columnEmnews_no_permissionBeklager, du har ikke rett til å skrive til denne ressursenws_rename_insSkriv inn nytt navnws_tree_mywspMitt arbeidsområdews_tree_orgsMine grupperws_view_license_buttonVisact_lock_chkLås opp beholderen for alternative aktiviteter før du angir denne aktiviteten som valgfrisys_error_msg_startFølgende system feil har oppstått:sys_errorSystemfeilact_tool_titleAktivitetsverktøyal_alertVarselal_cancelAvbrytal_confirmBekreftal_okOKapp_chk_langloadSpråkdata har ikke blitt lastetapp_chk_themeloadTemadata har ikke blitt lastetapp_fail_continueApplikasjonen må avsluttes. Kontakt støttepersonellchosen_grp_lblValgtcopy_btnKopierld_val_titleGyldighetskontrollcv_invalid_design_savedDin design er ikke gyldig ennå, men den er lagret, klikk 'Resultat' for å se på feilen.cv_invalid_trans_targetDu kan ikke opprette en forbindelse til dette objektetcv_show_validationResultatercv_valid_design_savedGratulerer! - Din sekvens er gyldig og er blitt lagretdb_datasend_confirmTakk for at du sender data til serverdelete_btnSlettgate_btnPortgroup_btnGruppegrouping_act_titleGrupperingld_val_activity_columnAktivitetld_val_doneUtførtlicense_not_selectedDet er ikke valgt lisens type. Vennligst velg.mnu_editRedigermnu_edit_copyKopiermnu_edit_cutKlippmnu_edit_pasteLimmnu_edit_redoGjør ommnu_edit_undoAngremnu_fileFilmnu_file_closeLukkmnu_file_newNymnu_file_openÅpnemnu_file_saveLagremnu_file_saveasLagre som...mnu_helpHjelpmnu_help_abtOmmnu_toolsVerktøymnu_tools_optTegn alternativmnu_tools_prefsForetrukne innstillingermnu_tools_transTegn forbindelsenew_btnNynew_confirm_msgØnsker du virkelig å fjerne designen fra skjemen?pi_branch_tool_acts_default--Valg--cv_invalid_trans_diff_branchesKan ikke lage tilkoblinger mellom aktiviteter i forskjellige grener.cv_invalid_branch_target_to_activityEn gren til {0} eksisterer allerede.cv_invalid_branch_target_from_activityEn gren fra {0} eksisterer allerede.cv_invalid_trans_closed_sequenceKan ikke lage en ny tilkobling til en lukket sekvens.al_cannot_move_to_diff_opt_seqFor å flytte en aktivitet til en annen sekvens med funksjonen Alternativ Sekvens, må du først flytte aktiviteten ut av Alternativ Sekvens og deretter klikke på den og dra den inn til den nye sekvensen.al_group_name_invalid_blankGruppe navn kan ikke være tomme.al_group_name_invalid_existinggruppe navn må være unike.about_popup_copyright_lbl© 2002-2009 {0} Stiftelselearner_choice_grp_lblStudentens valgpi_equal_group_sizesGruppene skal være like storecompetence_editor_dlgKompetanse editorcompetence_editor_warning_title_existsEn kompetanse med denne tittelen {0} finnes alleredecompetence_editor_warning_title_blankTittelen til kompetanse kan ikke være tomcompetence_editor_warning_competence_mappedden kompetansen som du ønsker å fjerne er knyttet til en eller flere aktiviteter. Sletter du denne kompetansen så vil tilknyttningene til aktiviteter bli brudt. Ønsker du å fortsette ?competence_editor_add_competence_btnLegg tilcompetence_def_dlgDefinisjon av kompetansecompetence_mappings_btnKartlegging av kompetansemap_gate_conditions_btnVurder portenes tilstandgate_mapping_auto_condition_msgAlle gjenstående betingelser vil bli vurdert mot de valgte porters status .gate_openåpengate_closedlukketal_activity_view_competence_mappings_invalidVennligst kontroller at du har valgt en aktivitet før du forsøker å se på kompetanse sammenligningene.mnu_file_import_communityImport fra LAMS brukerforening....ws_dlg_date_modified_lblSist modifisert:{0}ws_save_title_reserved_charsTittel kan ikke inneholde spesielle karakterer: {0}gradebook_output_typeUtgangsdata for karakterbokview_students_before_selectionVurdere studenter før utvelgelse ?arrange_act_btnOrganisere aktivitetergrp_chk_clear_branch_mappingsMERK: Dette vil slette alle gruppe til grener forbindelser for denne gruppeaktivitet, vil du fortsette ? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/pl_PL_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3delete_btnUsuńLabel for Delete buttonmnu_filePlikMenu bar Filegate_btnBramaToolbar &gt; Gate Buttongroup_btnGrupujToolbar &gt; Group Buttonld_val_doneZakończThe button label for the dialogld_val_issue_columnProblemThe heading on the issue in the ValidationIssuesDialoggrouping_act_titleGrupowanieDefault title for the grouping activityld_val_activity_columnAktywnośćThe heading on the activity in the ValidationIssuesDialogmnu_editEdycjaMenu bar Editld_val_titleProblemy zgodnościThe title for the dialogmnu_edit_copyKopiujMenu bar Edit &gt; Copymnu_edit_cutWytnijMenu bar Edit &gt; Cutmnu_edit_pasteWklejMenu bar Edit &gt; Pastemnu_edit_redoPonówMenu bar Edit &gt; Redomnu_edit_undoCofnijMenu bar Edit &gt; Undomnu_file_closeZamknijMenu bar Closemnu_file_newNowyMenu bar Newmnu_file_openOtwórzMenu bar Opendb_datasend_confirmDane zostały pomyślnie przesłane na serwerMessage when user sucessfully dumps data to the servermnu_file_saveZapiszMenu bar savelicense_not_selectedWybierz licencję dla tego projektuShown if no license is selected in the drop down in workspacemnu_file_saveasZapisz jako...Menu bar Save asmnu_help_abtO...Menu bar Aboutmnu_helpPomocMenu bar Helpnew_btnNowyToolbar &gt; New Buttonmnu_toolsNarzędziaMenu bar Toolsmnu_tools_optRysuj opcjonalneMenu bar Optionalmnu_tools_prefsPreferencjeMenu bar preferencesmnu_tools_transRysuj przejścieMenu bar draw transitionnone_act_lblBrakNo gate activity selectedopen_btnOtwórzToolbar &gt; Open Buttonpaste_btnWklejToolbar &gt; Paste Buttonnew_confirm_msgCzy na pewno chcesz usunąc wszystko w projekcie ?Msg when user clicks new while working on the existing designpi_lbl_descOpisDescription Label for PIoptional_btnOpcjonalneToolbar &gt; Optional Buttonpi_activity_type_gateBramaActivity type for gate in PIperm_act_lblOtwierana przez nauczycielaLabel for permission gate activitypi_activity_type_groupingRodzaj grupowaniaActivity type for grouping in Property Inspectorpi_definelaterZdefiniuj w MonitorzeLabel for Define later for PIprefs_dlg_okOK5pi_hoursGodzinyHours label in Property Inspectoral_okOKOK on the alert dialogpi_end_offsetZamknij bramęEnd offset labelpi_group_typeRodzaj grupowaniaProperty Inspector Grouping type drop downpi_lbl_currentgroupBieżące grupowanieCurrent grouping label for PIpi_lbl_groupGrupowanieGrouping label for PIpi_lbl_titleTytułTitle label for PIpi_max_actMaksimum AktywnościLabel for maximum Activities or Sequencespi_minsMinutyMins label in teh property inspectorpi_no_groupingŻadenCombo title for no groupingpi_min_actMinimum AktywnościLabel for minimum Activities or Sequencespi_num_learnersIlość studentówPI Num learners labelprefix_copyofKopia...Prefix for copy paste command for canvas activitiesprefs_dlg_cancelAnuluj6pi_optional_titleNarzędzie opcjonalneTitle for oprional activity property inspectorprefs_dlg_lng_lblJęzyk7prefs_dlg_theme_lblTemat8prefs_dlg_titlePreferencje4pi_runofflineUruchom aktywność w trybie off-lineLabel for Run Oflinepi_start_offsetOtwórz bramęStart offset labelpi_titleWłaściwościOn the title bar of the PIpreview_btnPodglądToolbar &gt; Preview Buttonproperty_inspector_titleWłaściwościOn the title bar of the PIrandom_grp_lblLosowyLabel for the grouping drop down in the PropertyInspectorcompetence_editor_warning_title_blankUprawnienie nie może być pusteWarning message when you try to define a competence with a blank competence titlecompetence_editor_warning_competence_mappedUsuwane uprawnienie jest już przypisane do aktywności. Czy kontynuować ?Warning message when you attempt to delete a competence that is mapped to one or more activities.map_comptence_btnMapowanie uprawnieńLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnMapowanie uprawnieńTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblUprawnieniaLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btnMapowanie warunków bramButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgWszystkie pozostałe warunki będą zamapowane do wybranych bramWarning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openOtwarteOpen state for gate activity, allows learners to pass through itgate_closedZamknięteClosed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalidUpewnij się że wybrałeś aktywność przed podglądem mapowania uprawnieńWarning that appears when no activity is selected when the user tries to view competence mappingsoptional_act_btnAktywnośćToolbar button for Optional Activity.optional_seq_btnSekwencjaToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipTworzy sekwencje opcjonalneTooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleUsuwanie sekwencjiRemoving sequencespi_optSequence_remove_msgUsuwana sekwencja może zawierać aktywności, które zostaną usunięte. Czy na pewno chcesz ją usunąc?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actBrak sekwencjiLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - SekwencjiLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgPrzenieś aktywność do właściwej sekwencjiAlert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesUsuń wszystkie połączone rozgałęzienia z {0} zanim wybierzesz aktywność opcjonalnąAlert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msgW tym obiekcie nie ma aktywnych sekwencjiError message when a Template Activity icon is dropped onto a empty Optional Sequences container.act_seq_lock_chkOdblokuj przed przypisaniem aktywności do sekwencjiAlert Message if user drags the activity to locked optional sequences container.cv_invalid_optional_seq_activityUsuń wszystkie połączenia z {0} zanim wybierzesz aktywność opcjonalną. Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesUsuń wszystkie połączone rozgałęzienia z {0} zanim wybierzesz aktywność opcjonalnąAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleSekwencja opcjonalnaTitle for Optional Sequences Container.to_conditions_dlg_lt_lblMniej lub równeLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minMniej lub równe {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actAktywnościMin and max label postfix when an Optional Activity is selected.pi_seqSekwencjeMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typezakresType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typeprawda/fałszType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ Definicje ]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNazwaColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblWarunekColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Opcje ]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipMinimalizujTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblWiększy niż lub równyGreater than or equal toto_conditions_dlg_lte_lblMniejszy niż lub równyLess than or equal togroupnaming_dialog_col_groupName_lblNazwa grupyColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignWstaw...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnWstawButton label on Workspace in INSERT mode.branch_mapping_dlg_branch_item_default{0} (default)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.pi_group_matching_btn_lblPrzypisz grupy do gałęziButton in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lblPrzypisz warunki do gałęziButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnOdświeżButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditionsZa chwilę ualtualnisz warunki, co wykasuje połączenia z istniejącymi gałęziami. Czy chcesz kontynuować ?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNie można uaktualnić. Brak zdefiniowanych warunków.Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_typeużytkownik zdefiniowanyType description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msgNie można zapisać projektu. Aktywność grupowa {0} ma dwie grupy o takiej samej nazwieAlert message displayed when the Grouping validation fails during saving a design.al_activity_paste_invalidNie można wkleić tej aktywnościAlert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledAby podglądnać sekwencję, musisz ją naipierw zapisaćTool tip message for preview button in toolbar when button is disabled.condmatch_dlg_message_lblDomyslna gałąź może być wybrana poprze zaznaczenie odpowiedniej opcji we właściwościachLabel for a message in the Condition to Branch matching dialog.cv_design_insert_warningNie można cofnąć akcji po dodaniu nowej sekwencji. Stara sekwencja jest automatycznie zapisaną z nowododaną aktywnością.Warning message when merge/insertpi_branch_tool_acts_default--wybór--Default item label for Input Tool dropdown list.cv_invalid_trans_diff_branchesNie można utworzyć połączenia między aktywnościami w różnych gałęziachError message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activityGałąź od {0} juz istniejeError message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityGałąź z {0} juz istniejeError message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceNie można ustanowić nowego połączenia do zamknietej sekwencjiError message displayed after drawing a transition from an activity in a closed sequence.al_cannot_move_to_diff_opt_seqAby przesunać aktywność w Sekwencji Opcjonalnej, najpierw wyjmij aktywność na zewnątrz a nastepnie przeciągnij ją do nowej lokalizacji w Sekwencji OpcjonalnejWarning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activityal_group_name_invalid_blankNazwy grup nie mogą być pusteWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingNazwy grup muszą być unikatoweWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different grouplearner_choice_grp_lblWybór studentaA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesTaki sam rozmiar grupCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgEdytor uprawnieńDialog for adding/editing/removing competencescompetences_lblUprawnieniaLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnDodajAdd competence buttoncompetence_def_dlgDefinicja uprawnieńTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsUprawnienie o nazwie {0} już istniejeWarning message when you try to add a competence with a competence title that already existsmnu_file_finishZakończMenu bar File - Finish (Edit Mode)about_popup_title_lblO - {0}Title for the About Pop-up window.about_popup_version_lblWersjaLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0) jest znakiem firmowym {0} Fundacji ( {1} )Label displaying the trademark statement in the About dialog.about_popup_license_lblTen program jest darmowy, może być dystrybuowany i/lub modyfikowany na zasadach licencji GNU General Public License wersja 2 - Free Software FoundationLabel displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.org URL address for the application stream.branching_act_titleRozgałęzianieLabel for Branching Activitypi_activity_type_sequenceSekwencja aktywności ({0})Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblAby zmienić kliknij na nazwieInstructions for Group Naming dialog.pi_branch_tool_acts_lblNarzędzioweLabel for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_condmatch_btn_lblWarunekLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblUtwórz WarunekDialog title for creating new tool output conditions.al_doneZakończLabel for dialog completion button.condmatch_dlg_cond_lst_lblWarunkiLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblUstaw warunki dla rozgałęzieńDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblDomyślnyCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lblDodajLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblWyczyść wszystkieLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblUsuńLabel for button to remove condition.to_conditions_dlg_from_lblOd:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblDo:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblZakresHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblRozgałęzienieColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblWarunekColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGrupaColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNie wybrano rozgałęzieniaAlert message when adding a Mapping without a Branch (Sequence) being selected.branch_mapping_no_mapping_msgNie wybrano żadnego mapowaniaAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNie wybrano żadnego warunkuAlert message when adding a Mapping without a Condition being selected.about_popup_copyright_lbl@ 2002-2009 {0} FundacjaLabel displaying copyright statement in About dialog.branch_mapping_auto_condition_msgWszystkie pozostałe warunki zostaną dodane do rozgałęzieniaAlert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMapowanieHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueZakres od {0} do {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactWartość {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblMapowanieLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblZdefiniuj w MoniotrzeCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblPrzypisz grupy do rozgałęzieńMap Groups to Branchesbranch_mapping_no_groups_msgNie wybrano żadnej grupyAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGrupoweBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblRozgałęzieniaLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGrupyLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblNazwa grupyTitle label for Group Naming dialog.pi_activity_type_branchingRozgałęzienieActivity type for Branching in Property Inspector.pi_branch_typeTyp rozgałęzieniaProperty Inspector Branching type drop down.pi_group_naming_btn_lblNazwa grupyLabel for button that opens Group Naming dialog.sequence_act_titleSekwencjaDefault title for Sequence Activity.tool_branch_act_lblNarzędzioweBranching type label for Tool output Branching.chosen_branch_act_lblWybór nauczycielaBranching type label for Teacher choice Branching.to_condition_start_valueWartość minValue representing the min boundary value of the conditions range.to_condition_end_valueWartość maxValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeWarunek {0} pozostaje w konflikcie z innym warunkiemAlert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_directionWartość min {0} nie może być większa niż wartość max {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgUwaga! Lekcja zostanie usunięta. Czy chcesz zachować lekcję jako {0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueDalejContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} połączono z gałęzią. Czy chcesz kontynuować ?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allWystępujące warunkiPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleWarunekPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblBez nazwy {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgProjekt zawiera nieużywane gałęzie, które zostaną usunięte. Czy chcesz kontynuować ?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgAby usunąć ustaw aktywność na {0}Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg{0} jest połączone z {1}Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg{0} posiada podrzędny element połączony z {1}Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxWiększe niż lub równe {0}Value for Condition field in mapping datagrid when Greater than option is selected.new_btn_tooltipTworzy nowy projekt. Uwaga! Bieżący projekt zostanie usunięty!Tool tip message for new button in toolbartrans_dlg_gatetypecmbTypGate type combo labelopen_btn_tooltipOtwiera nowy projektTool tip message for open button in toolbarsave_btn_tooltipZapisuje bieżący projekttool tip message for save button in toolbarcopy_btn_tooltipKopiuje zaznaczoną aktywnośćtool tip message for copy button in toolbarpaste_btn_tooltipWkleja kopię zaznaczonej aktywnościtool tip message for paste button in toolbartrans_btn_tooltipTworzy przejście pomiędzy aktywnościamitool tip message for transition button in toolbaroptional_btn_tooltipTworzy zestaw opcjonalnych aktywności.tool tip message for optional button in toolbargate_btn_tooltipTworzy punkt zatrzymaniatool tip message for gate button in toolbarbranch_btn_tooltipTworzy branch (dostępne w wersji 2.1)tool tip message for branch button in toolbarflow_btn_tooltipTworzy bramę, czyli kontrolę przejścia między aktywnościamitool tip message for flow button in toolbargroup_btn_tooltipUmożliwia Tworzenie grup i przypisanie do nich studentówtool tip message for group button in toolbarpreview_btn_tooltipPodgląd lekcjiTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNie można edytować projektu tylko-do-odczytu. Zapisz kopię projektu i spróbuj ponownieAlert message when double-clicking an Activity in an open read-only designcv_readonly_lbltylko-do-odczytuLabel for top left of canvas shown when a read-only design is open.al_empty_designNie można zapisać pustego projektualert message when user want to save an empty designcv_autosave_err_msgPodczas autozapisywania projektu wystąpił błąd. W przypadku powtórzenia błędu skontaktuj się z AdministratoremAlert error message when auto-save fails.cv_autosave_rec_msgZa chwilę odzyskasz utracony i niezapisany projekt. Twój obecny projekt zostanie wyczyszczony. Kontynuować ?Message informing users that they have recovered data for a design.cv_autosave_rec_titleOstrzeżenieAlert title for auto save recovery message.mnu_file_recoverOdzyskiwanie...Menu bar Recovercv_activity_copy_invalidNie można skopiować tej aktywnościError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidNie można wyciąć tej aktywnościError message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidZaznacz aktywnośćAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidZaznacz aktywność zanim wybierzesz Otwórz/Edytuj Zawartośc Aktywności po kliknięciu prawym przyciskiem myszyalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgCzy na pewno chcesz usunąć ten plik/folderConfirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyBrak nazwy projektu. Zapis nieudanyError message when user try to save a design with no file namews_entre_file_nameWpisz nazwę projektu i wciśnij ZapiszError message when user try to save a design with no file namecv_activity_helpURL_undefinedNie można odnależć strony pomocyAlert message when a tool activity has no help url defined.cv_untitled_lblBez nazwy - 1Label for Design Title bar on canvasmnu_help_helpPomoclabel for menu bar Help - Authoring Help optionccm_open_activitycontentOtwórz/Edytuj AktywnośćLabel for Custom Context Menuccm_copy_activityKopiuj aktywnośćLabel for Custom Context Menuccm_paste_activityWklej aktywnośćLabel for Custom Context Menuccm_piWłaściwości...Label for Custom Context Menuccm_author_activityhelpPomoc dla autorówLabel for Custom Context Menuws_dlg_descriptionOpisLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateBrakDrop down default for gate typepi_daysDniDays label in property inspector for gate toolcv_close_return_to_ext_srcZamknij i powróć do {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedZmiany zostały zapisaneChanges have been successful applied.mnu_file_apply_changesZastosuj zmianyApply Changesvalidation_error_transitionNoActivityBeforeOrAfterPrzed lub po przejściu musi wystąpić aktywnośćA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAktywność musi posiadać odpowiednie przejście (wejścia lub wyjścia)An activity must have an input or output transitionvalidation_error_inputTransitionType1Ta aktywność nie posiada wejściaThis activity has no input transitionvalidation_error_inputTransitionType2Wszystkie aktywności posiadają wejściaNo activities are missing their input transition.validation_error_outputTransitionType1Ta aktywność nie posiada wyjściaThis activity has no output transitionvalidation_error_outputTransitionType2Wszystkie aktywności posiadają wyjściaNo activities are missing their output transition.cv_invalid_design_on_apply_changesBrak jednego lub więcej przejścia. Zmiany nie mogą zostać zapisaneCannot apply changes. There are one or more transitions missing.apply_changes_btnZastosuj zmianyApply Changesapply_changes_btn_tooltipZastosuj zmiany i wróć do Monitoratool tip message for save button in toolbarcancel_btnAnulujToolbar - Cancel Buttoncv_activity_readOnlyAktywność nie może {0}. Aktywność jest tylko do odczytuAlert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblEdycja na żywoLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delUsuniętoAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modZmodyfikowanoAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgAby zakończyć edycję projekt musi być poprawnyAlert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgProjekt został zmieniony. Czy chcesz zamknąć bez zapisywania zmian ?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyPrzejście nie może być {0}. Przejście jest tylko do odczytuAlert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipPowrót do Monitoratool tip message for cancel button in toolbar (edit mode)rename_btnZmień nazwęLabel for Rename Buttonsave_btnZapiszToolbar &gt; Save buttonsched_act_lblOtwierana czasowoLabel for schedule gate activitytrans_dlg_okOKOK Button on transition dialogsynch_act_lblOtwierana synchronicznieUsed as a label for the Synch Gate Activity Typeapp_chk_langloadJęzyk nie został załadowanymessage for unsuccessful language loadingapp_chk_themeloadTemat nie został załadowanymessage for unsuccessful theme loadingtk_titlePanel narzędziLabel for Activities Toolkit Paneltrans_btnPrzejścieToolbar &gt; Transition Buttontrans_dlg_cancelAnulujCancel button on transition dialogtrans_dlg_gateWybierz typ synchronizacjiHeader for the transition props dialogtrans_dlg_titlePrzejścieTitle for the transition properties dialogws_RootRootRoot folder title for workspacews_chk_overwrite_resourceUwaga! Za chwilę zastąpisz istniejący zasób!ws_click_folder_fileWybierz folder aby zapisać lub aby zastąpić projektError msg if no folder or file is selectedws_copy_same_folderŹródło i folder przeznaczenia są takie sameThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAnuluj2ws_dlg_filenameNazwa pilkuLabel for File name in workspace windowws_dlg_location_buttonŚcieżkaWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnOtwórzWsp Dia Open Button labelws_dlg_properties_buttonWłaściwościWorkspace dialogue Properties btn labelws_dlg_save_btnZapiszWsp Dia Save Button labelws_dlg_titleProjekty0ws_newfolder_cancelAnulujCancel on the new folder name diaws_newfolder_okOKOK on the new folder name diaws_newfolder_insPodaj nazwę folderaInstructions on the new name pop upws_no_permissionNie masz uprawnień do zapisu tego źródłaMessage when user does not have write permission to complete actional_alertUwagaGeneric title for Alert windowal_cancelAnulujTo Confirm title for LFErroral_confirmPokażTo Confirm title for LFErrorws_rename_insPodaj nową nazwęMessage of the new name for the userws_tree_mywspMoje projektyThe root level of the treews_tree_orgsOrganizacjeShown in the top level of the tree in the workspacews_view_license_buttonWidokTo show the license to the useract_lock_chkOdblokuj przed przypisaniem aktywności (kłódka)Alert Message if user drags the activity to locked optional activity container sys_error_msg_startWystąpił następujący błąd systemuCommon System error message starting linesys_error_msg_finishAby kontynuować uruchom ponownie moduł autora. Czy chcesz zapisać informacje o błędzie aby naprawić problem ?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titlepi_num_groupsLiczba grupNumber of groups in Property inspectorpi_parallel_titleRównoległa AktywnośćTitle for parallel activity property inspectoropt_activity_titleOpcjonalne AktywnościTitle for Optional Activity Containerlbl_num_activitiesAktywnościreplacement for word activitiesal_sendWyślijSend button label on the system error dialogal_cannot_move_activityPrzykro mi, nie możesz przenieść tej aktywności.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNie możesz dodać bramy jako aktywności opcjonalnej.Error message when user drags gate activity over to optional containerprefix_copyof_countKopia ({0}) Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNie możesz zapisać projektu w tym folderze. Prosze wybierz prawidłowy folder.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openProszę kliknąć na Projekt aby go otworzyćAlert message if folder tried to be opened.ws_license_lblLicencjaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblDodatkowe informacje o licencjiLabel for Licence Comment description below license drop downcv_invalid_optional_activityUsuń wszystkie przejścia {0} zanim wybierzesz aktywność opcjonalnąAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingBrak drugiej aktywności przejścia Error message when target activity for transition is missingcv_invalid_trans_target_from_activityPrzejście z {0} już istniejeError message when a transition from the activity already existcv_invalid_trans_target_to_activityPrzesunięcie do {0} już istniejeError message when a transition to the activity already existbranch_btnBranchLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnBramaLabel for Flow button in Toolbarmnu_file_importImportMenu bar Importmnu_file_exportEksportMenu bar Exportcv_design_export_unsavedNie możesz eksportować nie zapisanego projektu.Alert message when trying to export can unsaved design.cv_design_unsavedProjekt został zmieniony. Kontynuować bez zapisywania ?Alert message when opening/importing when current design on canvas is unsaved or modified.ws_chk_overwrite_existingTen folder już posiada plik o nazwie {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNie możesz użyć tego folderuAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitWyjdźFile Menu Exitcopy_btnKopiujToolbar &gt; Copy Buttonws_no_file_openNie znaleziono plikuAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNie posiadasz praw do kołowej sekwencjiError message when a transition from one activity to another is creating a circular loopbin_tooltipPrzesuń aktywność na kosz aby usunąć ją z projektuTool tip message for canvas binapp_fail_continueProgram nie może kontynuować pracy. Proszę skontaktować się z pomocą technicznąmessage if application cannot continue due to any errorchosen_grp_lblWybranyLabel for the grouping drop down in the PropertyInspectorcv_show_validationProblemyThe button on the confirm dialogcv_invalid_design_savedProjekt nie jest poprawny, ale został zapisany, wciśnij 'Pokaż' aby dowiedzieć się więcejMessage when an invalid design has been savedcv_invalid_trans_targetNie można utworzyć przejścia do tego obiektuError message for when transition tool is dropped outside of valid target activitycv_valid_design_savedGratulacje! - Twój projekt został pomyślnie zapisanyMessage when a valid design has been savedact_tool_titlePanel narzędziTitle for Activity Toolkit Panel \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/pt_BR_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleCaixa de ferramentas para atividadesTitle for Activity Toolkit Panelal_alertAlertaGeneric title for Alert windowal_cancelCancelarTo Confirm title for LFErroral_confirmConfirmarTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadO idioma não pôde ser carregadomessage for unsuccessful language loadingapp_chk_themeloadO tema não pôde ser carregadomessage for unsuccessful theme loadingapp_fail_continueA aplicação não pode continuar. Por favor, entre em contato com o suportemessage if application cannot continue due to any errorchosen_grp_lblEscolhidoLabel for the grouping drop down in the PropertyInspectorcopy_btnCopiarToolbar &gt; Copy Buttoncv_invalid_design_savedo Seu design não é valido, mas ele foi salvo, clique em 'edição' para ver o que está errado.Message when an invalid design has been savedcv_invalid_trans_targetVocê não pode criar uma transição para este objetoError message for when transition tool is dropped outside of valid target activitycv_show_validationEdiçõesThe button on the confirm dialogcv_valid_design_savedParabéns! - Seu design foi salvoMessage when a valid design has been saveddb_datasend_confirmObrigado por enviar dados para o servidorMessage when user sucessfully dumps data to the serverdelete_btnApagarLabel for Delete buttongate_btnAberturaToolbar &gt; Gate Buttongroup_btnGrupoToolbar &gt; Group Buttongrouping_act_titleAtividade em grupoDefault title for the grouping activityld_val_activity_columnAtividadeThe heading on the activity in the ValidationIssuesDialogld_val_doneConcluídoThe button label for the dialogld_val_issue_columnEdiçãoThe heading on the issue in the ValidationIssuesDialogld_val_titleValidação de ediçõesThe title for the dialoglicense_not_selectedPor favor, selecione uma licença para esse designShown if no license is selected in the drop down in workspacemnu_editEditarMenu bar Editmnu_edit_copyCopiarMenu bar Edit &gt; Copymnu_edit_cutCortarMenu bar Edit &gt; Cutmnu_edit_pasteColarMenu bar Edit &gt; Pastemnu_edit_redoRefazerMenu bar Edit &gt; Redomnu_edit_undoDesfazerMenu bar Edit &gt; Undomnu_fileArquivoMenu bar Filemnu_file_closeFecharMenu bar Closemnu_file_newNovoMenu bar Newmnu_file_openAbrirMenu bar Openmnu_file_saveSalvarMenu bar savemnu_file_saveasSalvar comoMenu bar Save asmnu_helpAjudaMenu bar Helpmnu_help_abtSobreMenu bar Aboutmnu_toolsFerramentasMenu bar Toolsmnu_tools_optDesenhar caminho opcionalMenu bar Optionalmnu_tools_prefsPreferênciasMenu bar preferencesmnu_tools_transDesenhar a transiçãoMenu bar draw transitionnew_btnNovoToolbar &gt; New Buttonnew_confirm_msgVocê tem certeza que deseja apagar o design atual?Msg when user clicks new while working on the existing designnone_act_lblNenhumaNo gate activity selectedopen_btnAbrirToolbar &gt; Open Buttonoptional_btnOpcionalToolbar &gt; Optional Buttonpaste_btnColarToolbar &gt; Paste Buttonperm_act_lblPermissãoLabel for permission gate activitypi_activity_type_gateAtividade de aberturaActivity type for gate in PIpi_activity_type_groupingAtividade em grupoActivity type for grouping in Property Inspectorpi_definelaterDefinir depoisLabel for Define later for PIpi_end_offsetFinalizar aberturaEnd offset labelpi_group_typeTipe de grupoProperty Inspector Grouping type drop downpi_hoursHorasHours label in Property Inspectorpi_lbl_currentgroupGrupo atualCurrent grouping label for PIpi_lbl_descDescriçãoDescription Label for PIpi_lbl_groupAtividade em grupoGrouping label for PIpi_lbl_titleTítuloTitle label for PIpi_max_actAtividades máximaslabel for maximum Activitiespi_min_actAtividades mínimaslabel for Minimum activitiespi_minsMinutosMins label in teh property inspectorpi_no_groupingNenhumCombo title for no groupingpi_num_learnersNúmero de alunosPI Num learners labelpi_optional_titleAtividade opcionalTitle for oprional activity property inspectorpi_runofflineExecutar offlineLabel for Run Oflinepi_start_offsetIniciar aberturaStart offset labelpi_titlePropriedadesOn the title bar of the PIprefix_copyofCopiar dePrefix for copy paste command for canvas activitiesprefs_dlg_cancelCancelar6prefs_dlg_lng_lblIdioma7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titlePreferências4preview_btnVisualizarToolbar &gt; Preview Buttonproperty_inspector_titlePropriedadesOn the title bar of the PIrandom_grp_lblAleatórioLabel for the grouping drop down in the PropertyInspectorrename_btnRenomearLabel for Rename Buttonsave_btnSalvarToolbar &gt; Save buttonsched_act_lblRelaçãoLabel for schedule gate activitysynch_act_lblSincronizarUsed as a label for the Synch Gate Activity Typetk_titleCaixa de ferramentas de atividadesLabel for Activities Toolkit Paneltrans_btnTransiçãoToolbar &gt; Transition Buttontrans_dlg_cancelCancelarCancel button on transition dialogtrans_dlg_gateSincronizaçãoHeader for the transition props dialogtrans_dlg_gatetypecmbTipoGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleTransiçãoTitle for the transition properties dialogws_RootRaizRoot folder title for workspacews_chk_overwrite_resourceAtenção, você está para sobrescrever um recurso!ws_click_folder_filePor favor, selecione uma pasta para salvá-lo dentro, ou um design para sobrescrevê-loError msg if no folder or file is selectedws_copy_same_folderAs pastas de origem e destino são as mesmasThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCancelar2ws_dlg_filenameNome do arquivoLabel for File name in workspace windowws_dlg_location_buttonLocalWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnAbrirWsp Dia Open Button labelws_dlg_properties_buttonPropriedadesWorkspace dialogue Properties btn labelws_dlg_save_btnSalvarWsp Dia Save Button labelws_dlg_titleÁrea de trabalho0ws_newfolder_cancelCancelarCancel on the new folder name diaws_newfolder_insPor favor, digite um nome para a nova pastaInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionDesculpe, você não tem permissão para atualizar esse arquivoMessage when user does not have write permission to complete actionws_rename_insPor favor, digite um novo nomeMessage of the new name for the userws_tree_mywspMinha área de trabalhoThe root level of the treews_tree_orgsOrganizaçõesShown in the top level of the tree in the workspacews_view_license_buttonVisualizarTo show the license to the useract_lock_chkPor favor, destrave a caixa atividade opcional antes de propor essa atividade como opcionalAlert Message if user drags the activity to locked optional activity container sys_error_msg_startOcorreu o seguinte erro de sistema:Common System error message starting linesys_error_msg_finishVocê precisa reiniciar o LAMS Author para coninuar. Você gostaria de salvar as informações sobre esse erro para ajudar a corrigí-lo?Common System error message finish paragraphsys_errorErro de sistemaSystem Error elert window titlepi_num_groupsNúmero de gruposNumber of groups in Property inspectorpi_parallel_titleAtividade ParalelaTitle for parallel activity property inspectoropt_activity_titleAtividade OpcionalTitle for Optional Activity Containerlbl_num_activitiesAtividadesreplacement for word activitiesal_sendEnviarSend button label on the system error dialogal_cannot_move_activityDesculpe, você não pode mover essa atividade.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkVocê não pode adicionar uma atividade ponte como uma atividade opcional.Error message when user drags gate activity over to optional containerprefix_copyof_countCópia ({0}) dePrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidVocê não pode salvar um design nesta pasta. Favor selecionar uma sub-pasta válida.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openPor favor, clique sobre um Design para abrir.Alert message if folder tried to be opened.ws_license_lblLicençaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformação Adicional sobre a LicençaLabel for Licence Comment description below license drop downcv_invalid_optional_activityRemover para/de transições de {0}, antes de registrá-la como uma atividade opcional.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingA segunda atividade da Transição está faltando.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityUma Transição de {0} já existeError message when a transition from the activity already existcv_invalid_trans_target_to_activityUma Transição para {0} já existeError message when a transition to the activity already existbranch_btnSeçãoLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFluxoLabel for Flow button in Toolbarmnu_file_importImportarMenu bar Importcv_design_export_unsavedVocê não pode exportar um desing antes de salvá-lo.Alert message when trying to export can unsaved design.cv_design_unsavedO design na tela mudou. Continuar sem salvar?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExportarMenu bar Exportws_chk_overwrite_existingEsta pasta já contém um arquivo chamado {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderEsta pasta não pode ser usada.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitSairFile Menu Exitws_no_file_openArquivo não encontrado.Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceVocê não está autorizado a ter uma sequência circularError message when a transition from one activity to another is creating a circular loopbin_tooltipArraste uma atividade sobre este compartimento para removê-la da seqüência da atividade.Tool tip message for canvas binnew_btn_tooltipLimpar a seqüência atual e deixar o espaço de trabalho pronto para o usoTool tip message for new button in toolbaropen_btn_tooltipMostra a caixa de diálogo de arquivo para abrir uma Seqüência de AtividadeTool tip message for open button in toolbarsave_btn_tooltipSalvar rapidamente a Seqüência da Atividade atualtool tip message for save button in toolbarcopy_btn_tooltipCopiar a atividade selecionadatool tip message for copy button in toolbarpaste_btn_tooltipColar uma cópia da atividade selecionadatool tip message for paste button in toolbartrans_btn_tooltipUse a caneta para desenhar transições entre atividades (ou pressione a tecla CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCriar um conjunto de atividades opcionais.tool tip message for optional button in toolbargate_btn_tooltipCriar um ponto de paradatool tip message for gate button in toolbarbranch_btn_tooltipCriar uma seção (disponível no LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltipCriar um fluxo de controle de atividadestool tip message for flow button in toolbargroup_btn_tooltipCriar um Agrupamento de atividadetool tip message for group button in toolbarpreview_btn_tooltipPré-visualizar sua seqüência como aluno.Tool tip message for preview button in toolbarcv_activity_dbclick_readonlyVocê não está habilitado a editar ferramentas de um design somente leitura. Favor salvar uma cópia do design e tentar novamente.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSomente LeituraLabel for top left of canvas shown when a read-only design is open.al_empty_designDesculpe, você não pode salvar um design vazioalert message when user want to save an empty designcv_autosave_err_msgUm erro ocorreu durante o salvamento automático do seu design. Se o erro persistir, favor contactar o Administrador do Sistema.Alert error message when auto-save fails.cv_autosave_rec_msgVocê está para recuperar um design perdido ou não salvo. Seu design atual será limpo. Continuar?Message informing users that they have recovered data for a design.cv_autosave_rec_titleAlertaAlert title for auto save recovery message.mnu_file_recoverRecuperar...Menu bar Recovercv_activity_copy_invalidDesculpe! Você não está autorizado a copiar esta atividade.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidDesculpe! Você não está autorizado a recortar esta atividade.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidDesculpe! Você deve selecionar a atividade antes de clicar em copiarAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidDesculpe! Você deve selecionar a atividade antes de clicar no item do menu Abrir/Editar Conteúdo de Atividade.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgVocê tem certeza que deseja deletar este arquivo / pasta?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyDesculpe! Não é permitido salvar um design em atribuir um nome ao arquivo.Error message when user try to save a design with no file namews_entre_file_namePor favor, entre com o nome do design, e depois clique no botão salvar.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedNão é possível encontrar a página de ajuda para {0}Alert message when a tool activity has no help url defined.cv_untitled_lblSem título - 1Label for Design Title bar on canvasmnu_help_helpAjuda Autoraçãolabel for menu bar Help - Authoring Help optionccm_open_activitycontentAbrir/Editar conteúdo de atividadeLabel for Custom Context Menuccm_copy_activityCopiar atividadeLabel for Custom Context Menuccm_paste_activityColar atividadeLabel for Custom Context Menuccm_piInspetor de propriedade...Label for Custom Context Menuccm_author_activityhelpAjuda em Autorar AtividadeLabel for Custom Context Menuws_dlg_descriptionDescriçãoLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateNenhumDrop down default for gate typepi_daysDiasDays label in property inspector for gate toolcv_close_return_to_ext_srcFeche e retorne para {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/ru_RU_dictionary.xml 12 Jan 2010 01:19:51 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_optional_titleОпциональное заданиеopt_activity_titleОпциональное заданиеtk_titleИнструментарий для заданийccm_open_activitycontentОткрыть/Редактировать содержание заданияpi_num_learnersКоличество учениковws_click_virtual_folderНевозможно использовать эту директорию.group_btn_tooltipСоздать групповое заданиеpi_daysДнейcv_invalid_optional_activityПеред тем как делать это задание опциональным, удалите все переходы на него и с него.trans_btn_tooltipИспользуйте эту ручку для создания перехода между заданиями (или удерживайте клавишу CTRL)ccm_copy_activityКопировать заданиеccm_paste_activityВставить заданиеccm_piИнспектор свойств...pi_parallel_titleПараллельное заданиеws_dlg_descriptionОписаниеcv_untitled_lblБез названия - 1mnu_file_recoverВосстановление...cv_invalid_trans_target_from_activityПереход от {0} уже существуетcv_activity_helpURL_undefinedСтраница помощи для {0} не найдена ws_chk_overwrite_existingЭтот каталог уже содержит файл с именем {0}optional_btn_tooltipСоздать ряд опциональных заданий.mnu_file_apply_changesПрименить измененияapply_changes_btnПрименить измененияcancel_btnОтменитьcv_element_readOnly_action_delудаленоcv_element_readOnly_action_modизмененоmnu_file_finishЗавершитьabout_popup_title_lblО - {0}pi_start_offsetОткрыть затворpi_lbl_groupГруппировкаws_tree_orgsМои группыabout_popup_version_lblВерсияnone_act_lblНи одногоgate_btnЗатворpi_end_offsetЗакрыть затворsave_btn_tooltipБыстрое сохранение текущей последовательности заданийcopy_btn_tooltipКопировать выделенное заданиеnew_btn_tooltipОчистить текущую последовательность и восстановить рабочее пространство для дальнейшего использованияcv_trans_target_act_missingОтсутствует второе задание для перехода.ccm_author_activityhelpПомощь по Редактору заданийpaste_btn_tooltipВставить копию выделенного заданияact_tool_titleИнструментарий Заданийld_val_activity_columnЗаданиеpi_activity_type_gateЗадание затвораpi_activity_type_groupingГрупповое заданиеcv_design_export_unsavedВы не можете экспортировать не сохраненный проект.cv_activity_copy_invalidИзвините! У Вас нет прав скопировать это дочернее задание.pi_lbl_currentgroupТекущая группировкаws_chk_overwrite_resourceВнимание, Вы собираетесь перезаписать ресурс!open_btn_tooltipПоказать диалог выбора файлов для открытия последовательности заданийcv_activity_cut_invalidИзвините! У Вас нет прав вырезать это дочернее задание.al_cannot_move_activityИзвините, Вы не можете переместить это задание.pi_group_typeГруппировка типаws_click_folder_fileПожалуйста, выберите Каталог для сохранения или Проект для его перезаписиws_no_permissionЖаль, Вы не имеете прав на запись в этот ресурсtrans_dlg_titleПереходsys_error_msg_finishВы, возможно, должны перезапустить LAMS Author , чтобы продолжить. Вы хотите сохранить следующую информацию об этой ошибке, чтобы помочь установить причину этой проблемы?ws_del_confirm_msgВы уверены, что хотите удалить этот файл/папку?mnu_file_exitВыходapp_chk_langloadЯзыковые данные не были загруженыapp_fail_continueВыполнение программы не может быть продолжено. Пожалуйста свяжитесь с группой поддержкиchosen_grp_lblВыбратьcv_invalid_trans_targetВы не можете создать переход к этому объектуmnu_edit_cutВырезатьmnu_file_newНовыйnew_btnНовыйnew_confirm_msgВы уверены, что хотите заменить текущий проект пустым новым?pi_runofflineВыполнить автономноal_activity_copy_invalidИзвините! Вы должны выбрать задание, перед тем как его копироватьmnu_tools_transДобавить переходprefix_copyofКопироватьlicense_not_selectedВы не выбрали лицензии. Сделайте это, пожалуйста.mnu_tools_optСоздать контейнер опциональных заданийprefs_dlg_cancelОтменитьprefs_dlg_lng_lblЯзыкprefs_dlg_theme_lblТемаpreview_btnПредварительный просмотрproperty_inspector_titleСвойстваrandom_grp_lblСлучайноrename_btnПереименоватьsave_btnСохранитьsched_act_lblРасписаниеsynch_act_lblСинхронизироватьtrans_dlg_cancelОтменитьtrans_dlg_gateСинхронизацияtrans_dlg_gatetypecmbТипws_RootКорневой каталогact_lock_chkПеред тем как делать это задание опциональным, разблокируйте, пожалуйста, контейнер опциональных заданий.ws_copy_same_folderКаталоги Источника и Получателя совпадаютws_dlg_cancel_buttonОтменитьws_dlg_filenameИмя файлаws_dlg_location_buttonРасположениеws_dlg_open_btnОткрытьws_dlg_properties_buttonСвойстваws_dlg_save_btnСохранитьws_dlg_titleРабочая средаws_newfolder_cancelОтменитьws_newfolder_insПожалуйста введите новое имя папкиws_rename_insПожалуйста введите новое имяws_tree_mywspМоя рабочая средаws_view_license_buttonПосмотретьsys_error_msg_startПроизошла следующая ошибка системы:sys_errorСистемная ошибкаal_sendОтправитьws_license_comment_lblДополнительные сведения о лицензииmnu_help_helpСоздание помощиws_click_file_openПожалуйста нажмите на Проект, чтобы его открыть.pi_num_groupsЧисло группcv_invalid_trans_target_to_activityПереход к {0} уже существуетcv_design_unsavedПроект изменен. Продолжить без сохранения?gate_btn_tooltipСоздать точку остановкиmnu_file_exportЭкспортws_no_file_openФайлы не найдены.mnu_file_importИмпортcv_readonly_lblТолько чтениеcv_autosave_rec_titleПредупреждениеpi_lbl_titleЗаглавиеpi_minsМинутыal_alertПредупреждениеal_cancelОтменитьal_confirmПодтвердитьapp_chk_themeloadДанные темы не были загруженыcopy_btnКопироватьcv_show_validationРазрешение проблемcv_valid_design_savedПоздравления! - Ваш проект прошёл верификацию и был сохраненdb_datasend_confirmСпасибо за Отправку данных на серверdelete_btnУдалитьgroup_btnГруппаgrouping_act_titleГруппироватьld_val_doneЗакончитьld_val_issue_columnПроблемаld_val_titleКонтроль ошибокmnu_editПравкаmnu_edit_copyКопироватьmnu_edit_pasteВставитьmnu_edit_redoВернутьmnu_edit_undoОтменитьmnu_fileФайлmnu_file_closeЗакрытьal_okОКmnu_file_openОткрытьmnu_file_saveСохранитьmnu_file_saveasСохранить как...mnu_helpПомощьmnu_help_abtО LAMSmnu_toolsСервисopen_btnОткрытьoptional_btnОпцииpaste_btnВставитьperm_act_lblПраваpi_hoursЧасыpi_lbl_descОписаниеpi_no_groupingНетpi_titleСвойстваsequence_act_titleПоследовательностьpi_condmatch_btn_lblЗадать условияcondmatch_dlg_cond_lst_lblУсловияpi_defaultBranch_cb_lblпо умолчаниюto_conditions_dlg_add_btn_lbl+ Добавитьto_conditions_dlg_clear_all_btn_lblОчистить всеto_conditions_dlg_remove_item_btn_lbl - Удалитьto_conditions_dlg_from_lblотto_conditions_dlg_to_lblдоto_conditions_dlg_range_lblПромежутокbranch_mapping_dlg_condition_col_lblУсловиеbranch_mapping_dlg_group_col_lblГруппаbranch_mapping_dlg_condition_col_valueВ промежутке от {0} до {1}ws_license_lblЛицензияws_file_name_emptyИзвините! Вы не можете сохранить проект с неопределенным названием файла.al_empty_designИзвините, Вы не можете сохранить пустой проектtrans_btnПереходgroupmatch_dlg_groups_lst_lblГруппыto_condition_start_valueначальное значениеto_condition_end_valueконечно значениеal_continueПродолжитьpreview_btn_tooltipПредварительный просмотр вашей последовательности, так как это будет показано для учениковal_activity_openContent_invalidПрежде чем нажать на пункт меню Открыть/Редактировать содержание задания, Вы должны выбрать какое-нибудь задание.cv_invalid_trans_circular_sequenceНельзя создавать замкнутые последовательностиbranch_mapping_dlg_condition_linked_singleЭто условиеoptional_act_btnЗаданиеoptional_seq_btnПоследовательностьlbl_num_sequences{0} - Последовательностейpi_actЗаданияpi_seqПоследовательностиpi_max_actМаксимум {0}pi_min_actМинимум {0}ws_dlg_ok_buttonОКtrans_dlg_okОКws_newfolder_okОКprefs_dlg_okОКbranching_act_titleРазветвлениеpi_activity_type_sequenceПоследовательностьcondmatch_dlg_title_lblОпределить соотвествие ветвей условиямchosen_branch_act_lblВыбор преподавателяpi_define_monitor_cb_lblОпределить позжеgroupmatch_dlg_title_lblОпределить соотвествие групп ветвямbranch_btnРазветвлениеbranch_mapping_no_branch_msgНе была выбрана ветвь.branch_mapping_dlg_branch_col_lblВетвьbranch_mapping_auto_condition_msgВсе оставшиеся Условия будут относиться к дефолтовой Ветви.branch_mapping_dlg_branches_lst_lblВетвиsequence_act_title_new{0} {1}to_conditions_dlg_condition_items_value_col_lblУсловиеclose_mc_tooltipСвернутьws_dlg_insert_btnВставитьbranch_mapping_dlg_branch_item_default{0} (по умолчанию)refresh_btnОбновитьpi_tool_output_matching_btn_lblОпределить соотвествия условий ветвямto_conditions_dlg_defin_user_defined_typeзадано пользователемcv_autosave_rec_msgВы выбрали восстановление предыдущего или несохраненного проекта. Ваш текущий проект будет удален. Желаете продолжить?cv_close_return_to_ext_srcЗакрыть и вернуться к {0}cancel_btn_tooltipВернуться в мониторингstream_reference_lblLAMSto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_lt_lblМеньше либо равноbranch_mapping_dlg_condition_col_value_minМеньше либо равно {0}to_conditions_dlg_defin_long_typeдиапазонto_conditions_dlg_defin_bool_typeправда/ложьto_conditions_dlg_options_item_header_lbl[ Условия ]to_conditions_dlg_gte_lblБольше либо равноto_conditions_dlg_lte_lblМеньше либо равноbranch_mapping_dlg_condition_col_value_maxБольше либо равно {0}lbl_num_activities{0} - Заданияcv_gateoptional_hit_chkВы не можете сделать Затвор опциональным заданиемtrans_dlg_nogateНе заданal_doneЗакончитьbranch_mapping_no_condition_msgНе было выбрано Условие.branch_mapping_dlg_condition_col_value_exactЗначение {0}branch_mapping_no_groups_msgНе была выбрана Группа.to_condition_invalid_value_direction {0} не может быть больше, чем {1}.is_remove_warning_msgВНИМАНИЕ: Урок будет удален. Вы хотите сохранить его как {0}? branch_mapping_dlg_condition_linked_allУсловияcv_activityProtected_activity_remove_msgЧтобы удалить это задание, снимите с него отметку {0}.cv_activityProtected_activity_link_msg{0} соединен с {1}.cv_activityProtected_child_activity_link_msgУ {0} существует потомок, соединенный с {1}.optional_seq_btn_tooltipСоздать ряд опциональных последовательностей.flow_btnДвижениеact_seq_lock_chkПеред тем как привязывать это задание к опциональной последовательности, разблокируйте, пожалуйста, контейнер опциональных заданий.branch_mapping_no_mapping_msgНи одного Соотвествия выбрано не было.pi_group_matching_btn_lblОпределить соотвествия групп ветвямal_activity_paste_invalidИзвините, но Вы не можете вставить задание данного типаpreview_btn_tooltip_disabledЧтобы войти в режим Предварительного просмотра Вашего проекта, Вам сначала необходимо сохранить его, а затем нажать кнопку Предварительный просмотрprefix_copyof_countКопия ({0}) ws_entre_file_nameВведите, пожалуйста, имя проекта, а затем нажмите на кнопку Сохранить.validation_error_transitionNoActivityBeforeOrAfterПереход должен иметь задание до или после себяvalidation_error_activityWithNoTransitionЗадание должно иметь входящий или исходящий переходvalidation_error_inputTransitionType1На это задание нет переходаvalidation_error_inputTransitionType2У всех заданий есть входящие переходыvalidation_error_outputTransitionType1Нет перехода из этого заданияvalidation_error_outputTransitionType2У всех заданий есть исходящие переходыcv_invalid_design_on_apply_changesНевозможно применить изменения. Отсутствует один или более переходовapply_changes_btn_tooltipПрименить изменения в проекте и вернуться в мониторингcv_activity_readOnlyЗадание не может быть {0}. Задание только для чтения.cv_eof_finish_invalid_msgЧтобы завершить редактирование, проект не должен содержать ошибокcv_eof_finish_modified_msgВаш проект был изменен. Завершить его без сохранения?cv_trans_readOnlyПереход не может быть {0}. Объект, на который осуществляется переход, только для чтения.about_popup_trademark_lbl{0} - торговая марка {0} Foundation ( {1} ).stream_urlhttp://{0}foundation.orgto_condition_untitled_item_lblБезымянный {0}pi_optSequence_remove_msg_titleУдаленные последовательностиpi_no_seq_actНомер последовательностиws_save_folder_invalidВы не можете сохранить проект в этой директории. Выберите, пожалуйста, подходящую поддиректорию.cv_activity_dbclick_readonlyВы не можете редактировать инструменты, если проект только для чтения. Сохраните, пожалуйста, копию проекта и попробуйте снова.activityDrop_optSequence_error_msgПоместите, пожалуйста, задание в одну из последовательностей.opt_activity_seq_titleКонтейнер опциональных заданийto_conditions_dlg_condition_items_name_col_lblИмяgroupnaming_dialog_col_groupName_lblИмя группыmnu_file_insertdesignВставить/Слить...redundant_branch_mappings_msgПроект содержит неиспользованные соответствия, которые будут удалены. Продолжить?pi_optSequence_remove_msgУдаляемые последовательности могут содержать задания. Эти задания также будут удалены. Все равно удалить?flow_btn_tooltipСоздать задания, управляющие движениемcv_autosave_err_msgПроизошла ошибка при попытке австосохранить Ваш проект. Увеличьте, пожалуйста, размер памяти в настройках вашего Flash Player.cv_edit_on_fly_lblРедактирование "на лету"about_popup_license_lblЭто программа является free software; Вы можете распространять и/или изменять ее при условиях соответствия GNU General Public License version 2 опубликованной Free Software Foundation. {0}gpl_license_urlwww.gnu.org/licenses/gpl.txtgroupnaming_dialog_instructions_lblЧтобы поменять имя, щекните на нем.pi_branch_tool_acts_lblИнструментgroup_branch_act_lblНа основе группgroupnaming_dlg_title_lblНазвания группpi_group_naming_btn_lblНазвания группto_condition_invalid_value_range{0} не может пересекаться с диапазоном другого Условия.ta_iconDrop_optseq_error_msgВ контейнере опциональных заданий нет последовательностей.cv_invalid_optional_seq_activityПеред тем как привязывать {0} к опциональной последовательности, удалите все переходы, связанные с ним.cv_invalid_optional_activity_no_branchesПеред тем как делать {0} опциональным заданием, удалите все разветвления, связанные с ним.pi_mapping_btn_lblЗадать соответствияto_conditions_dlg_title_lblСоздать результирующие Условияto_conditions_dlg_defin_item_header_lbl[Выберите тип результатов]tool_branch_act_lblРезультаты ученикаgrouping_invalid_with_common_names_msgВы не можете сохранить проект, так как групповое задание '{0}' содержит группы с одинаковыми именами. Переименуйте их, пожалуйста, и попробуйте снова.branch_mapping_dlg_match_dgd_lblСоотвествияbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroНевозможно сохранить, так как не заданы Условия. Вам, возможно, потребcv_design_insert_warningКак только вы сольете новую последовательность со старой, у вас не будет возможности отменить это действие - так как ваша новообразованная последовательность будет тутже автоматически сохранена. Чтобы вернуться назад, вам придется удалить все новые задания вручную и затем сохранить. Нажмите кнопку Отменить - чтобы оставить вашу последовательность неизмененной. ОК - чтобы продожить слияние.pi_branch_typeРазветвляющийсяpi_activity_type_branchingРазветвляющиеся заданияcv_invalid_optional_seq_activity_no_branchesПеред тем, как добавлять {0} к опциональной последовательности, удалите все ветви, в которых оно участвует.branch_mapping_dlg_condition_linked_msg{0} соединен с уже существующей ветвью. Продолжить?condmatch_dlg_message_lblЧтобы задать ветвь "по умолчанию", щелкните на флажке "по умолчанию" в свойствах соотвествующей ветви.to_conditions_dlg_condition_items_update_defaultConditionsУсловия для выбранных результирующих определений будут сохранены. Но при этом все ссылки на существующие ветви будут удалены. Продолжить?learner_choice_grp_lblПо выбору ученикаabout_popup_copyright_lbl© 2002-2009 {0} Foundation.bin_tooltipЧтобы удалить задание из последовательности, перетащите его в корзину.cv_eof_changes_appliedИзменения успешно сохранены.competence_editor_add_competence_btnДобавитьws_dlg_date_modified_lblИзменено: {0}ws_save_title_reserved_charsЗаголовок не может содержать символы: {0}mnu_file_import_communityИмпорт из LAMS Community...view_students_before_selectionПросмотреть учеников перед выбором?arrange_act_btnВыстроить заданияsupport_act_btnВспомогательныеsupport_act_btn_tooltipСоздать набор опциональных вспомогательных заданий.support_act_titleВспомогательное заданиеsupport_msg_no_connectionВспомогательные задания не могут быть соеденены с другими заданиямиsupport_msg_invalid_childЗадания типа {0} не могут быть добавлены как вспомогательные заданияsupport_msg_max_children_reachedНе возможно перетащить задание: {0}. Вспомогательное задание позволяет максимум {1} дочерних заданий.support_msg_cannot_be_childНевозможно перетащить вспомогательное задание внутрь другого задания.pi_branch_tool_acts_default--Выбрать--cv_invalid_trans_diff_branchesНевезможно создать переход между заданиями в разных разветвлениях.cv_invalid_branch_target_to_activityРазветвление к {0} уже существует.cv_invalid_branch_target_from_activityРазветвление от {0} уже существует.cv_invalid_trans_closed_sequenceНевозможно создать новый переход к закрытой последовательности.al_group_name_invalid_blankНазвания групп не могут быть пустыми.al_group_name_invalid_existingНазвания групп должны быть уникальными.pi_equal_group_sizesРавные размеры группcompetence_editor_dlgРедактор соответствийcompetences_lblСоответствияcompetence_def_dlgДиалог определения соответствийcompetence_editor_warning_title_existsСоответствие с заголовком {0} уже существует.competence_editor_warning_title_blankЗаголовок соответствия не может быть пустым.map_comptence_btnОпределить соответствияcompetence_mappings_btnОпределения соответствийcompetences_mapped_to_act_lblСоответствияmap_gate_conditions_btnОпределить условия затвораgate_mapping_auto_condition_msgВсе оставшиеся условия будут определены к выбраным затворам с закрытым состоянием.gate_openОткрытgate_closedЗакрытgradebook_output_typeВыходные данные Журналаmnu_tools_prefsНастройкиbranch_btn_tooltipСоздать разветвленияcv_invalid_design_savedВаш проект не прошел верификацию, но он был сохранен, щелкните 'Разрешение проблем', чтобы увидеть причины этого.pi_definelaterОпределить в мониторингеprefs_dlg_titleНастройкиal_cannot_move_to_diff_opt_seqЧтобы переместить задание в другую последовательность в опциональных последовательностях, сначала перетащите задание вне поля опциональной последовательности и затем перетащите его на новое положение внутри опциональной последовательности.competence_editor_warning_competence_mappedСоответствие, которое вы пытаетесь удалить сопоставлено к одному или более заданиям. Удаление соответствия приведет к удалению сопоставления. Вы хотите продолжить?al_activity_view_competence_mappings_invalidВыберите задание, чтобы просмотреть определения соответствий.grp_chk_clear_branch_mappingsПредупреждение: Это действие очистит все существующие определения групп к ветвлениям в данном задании. Вы хотите продолжить? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/sv_SE_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleVerktyg - aktiviteterTitle for Activity Toolkit Panelal_alertOBS!Generic title for Alert windowal_cancelAvbrytTo Confirm title for LFErroral_confirmBekräftaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSpråkdata har inte laddats inmessage for unsuccessful language loadingapp_chk_themeloadData om teman har inte laddats inmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan inte fortsätta. Var snäll och kontakta supportmessage if application cannot continue due to any errorchosen_grp_lblValdLabel for the grouping drop down in the PropertyInspectorcopy_btnKopieraToolbar &gt; Copy Buttoncv_invalid_design_savedDin design är ännu inte giltig men den har sparats. Klicka på 'Kvarvarande problem' för att se vilket felet är. Message when an invalid design has been savedcv_invalid_trans_targetDet går inte skapa en övergång till det här objektetError message for when transition tool is dropped outside of valid target activitycv_show_validationMer detaljerThe button on the confirm dialogcv_valid_design_savedGratulerar! - Din design är giltig och den har sparats.Message when a valid design has been saveddb_datasend_confirmDina data har framgångsrikt sänts till servern.Message when user sucessfully dumps data to the serverdelete_btnTa bortLabel for Delete buttongate_btnGrindToolbar &gt; Gate Buttongroup_btnGruppToolbar &gt; Group Buttongrouping_act_titleBilda grupperDefault title for the grouping activityld_val_activity_columnAktivitetThe heading on the activity in the ValidationIssuesDialogld_val_doneKlarThe button label for the dialogld_val_issue_columnDetaljThe heading on the issue in the ValidationIssuesDialogld_val_titleDetaljer angående valideringThe title for the dialoglicense_not_selectedVar snäll och välj en licens för den här designenShown if no license is selected in the drop down in workspacemnu_editRedigeraMenu bar Editmnu_edit_copyKopieraMenu bar Edit &gt; Copymnu_edit_cutKlipp utMenu bar Edit &gt; Cutmnu_edit_pasteKlistra inMenu bar Edit &gt; Pastemnu_edit_redoGör omMenu bar Edit &gt; Redomnu_edit_undoÅngraMenu bar Edit &gt; Undomnu_fileFilMenu bar Filemnu_file_closeStängMenu bar Closemnu_file_newNyMenu bar Newmnu_file_openÖppnaMenu bar Openmnu_file_saveSparaMenu bar savemnu_file_saveasSpara somMenu bar Save asmnu_helpHjälpMenu bar Helpmnu_help_abtOmMenu bar Aboutmnu_toolsVerktygMenu bar Toolsmnu_tools_optRita valfriMenu bar Optionalmnu_tools_prefsInställningarMenu bar preferencesmnu_tools_transRita övergångMenu bar draw transitionnew_btnNyToolbar &gt; New Buttonnew_confirm_msgÄr du säker på att du vill rensa bort din design från skärmen?Msg when user clicks new while working on the existing designnone_act_lblIngenNo gate activity selectedopen_btnÖppnaToolbar &gt; Open Buttonoptional_btnValfriToolbar &gt; Optional Buttonpaste_btnKlistra inToolbar &gt; Paste Buttonperm_act_lblTillståndLabel for permission gate activitypi_activity_type_gateGrind aktivitetActivity type for gate in PIpi_activity_type_groupingAktivitet för att bilda grupperActivity type for grouping in Property Inspectorpi_definelaterDefiniera senareLabel for Define later for PIpi_end_offsetStäng grindEnd offset labelpi_group_typeTyp av gruppbildningProperty Inspector Grouping type drop downpi_hoursTimmarHours label in Property Inspectorpi_lbl_currentgroupAktuell gruppbildningCurrent grouping label for PIpi_lbl_descBeskrivningDescription Label for PIpi_lbl_groupBildande av grupperGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMax aktiviteterlabel for maximum Activitiespi_min_actMin aktiviteterlabel for Minimum activitiespi_minsMinuterMins label in teh property inspectorpi_no_groupingIngenCombo title for no groupingpi_num_learnersAntal lärandePI Num learners labelpi_optional_titleValfri aktivitetTitle for oprional activity property inspectorpi_runofflineArbeta offlineLabel for Run Oflinepi_start_offsetÖppna grindenStart offset labelpi_titleEgenskaperOn the title bar of the PIprefix_copyofKopiera avPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAvbryt6prefs_dlg_lng_lblSpråk7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titleInställningar4preview_btnFörhandsgranskaToolbar &gt; Preview Buttonproperty_inspector_titleEgenskaperOn the title bar of the PIrandom_grp_lblSlumpmässigLabel for the grouping drop down in the PropertyInspectorrename_btnByt namnLabel for Rename Buttonsave_btnSparaToolbar &gt; Save buttonsched_act_lblSchemaLabel for schedule gate activitysynch_act_lblSynkroniseraUsed as a label for the Synch Gate Activity Typetk_titleVerktyg för aktiviteterLabel for Activities Toolkit Paneltrans_btnÖvergångToolbar &gt; Transition Buttontrans_dlg_cancelAvbrytCancel button on transition dialogtrans_dlg_gateSynkroniseringHeader for the transition props dialogtrans_dlg_gatetypecmbTypGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleÖvergångTitle for the transition properties dialogws_RootrotRoot folder title for workspacews_chk_overwrite_resourceOBS! Du håller på att skriva över en resurs!ws_click_folder_fileVar snäll och klicka antingen på en katalog som du vill spara i eller på en Design som du vill skriva över.Error msg if no folder or file is selectedws_copy_same_folderKäll- och målkatalogen är desammaThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAvbryt2ws_dlg_filenameNamn på filLabel for File name in workspace windowws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÖppnaWsp Dia Open Button labelws_dlg_properties_buttonEgenskaperWorkspace dialogue Properties btn labelws_dlg_save_btnSparaWsp Dia Save Button labelws_dlg_titleArbetsyta0ws_newfolder_cancelAvbrytCancel on the new folder name diaws_newfolder_insVar snäll och skriv in det nya namnet på katalogen.Instructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionDu har tyvärr inte tillstånd att skriva till den här resursen.Message when user does not have write permission to complete actionws_rename_insVar snäll och skriv in det nya namnetMessage of the new name for the userws_tree_mywspMin arbetsytaThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacews_view_license_buttonVisaTo show the license to the useract_lock_chkVar snäll och lås upp den här behållaren för valfria aktiviteter innan du anger den här aktiviteten som valfri.Alert Message if user drags the activity to locked optional activity container sys_error_msg_startEtt systemfel enligt följande har inträffat:Common System error message starting linesys_error_msg_finishDu kanske måste starta om LAMS Författare för att kunna fortsätta. Vill du spara den följande informationen om detta fel för att kunna använda den för att åtgärda felet?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titlepi_num_groupsAntal grupperNumber of groups in Property inspectorpi_parallel_titleParallell aktivitetTitle for parallel activity property inspectoropt_activity_titleAlternativ aktivitetTitle for Optional Activity Containerlbl_num_activitiesAktiviteterreplacement for word activitiesal_sendSkickaSend button label on the system error dialogal_cannot_move_activityDu kan tyvärr inte flytta den här aktiviteten.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkDu kan tyvärr inte lägga till en aktivitet av typ grind som en alternativ aktivitet. Error message when user drags gate activity over to optional containerprefix_copyof_countKopia ({0}) avPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidDu kan tyvärr inte spara en design i den här katalogen. Var snäll och välj en underkatalog.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openVar snäll och klicka på Design för att öppna.Alert message if folder tried to be opened.ws_license_lblLicensLabel for Licence drop down on workspace properties tab viewws_license_comment_lblKompletterande information om licenserLabel for Licence Comment description below license drop downcv_invalid_optional_activityFlytta övergångar till och från från {0} innan du anger detta som en alternativ aktivitet.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDen andra aktiviteten i övergången saknas.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityDet finns redan en övergång från {0}Error message when a transition from the activity already existcv_invalid_trans_target_to_activityDet finns redan en övergång till {0}Error message when a transition to the activity already existbranch_btnFörgreningLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFlödeLabel for Flow button in Toolbarmnu_file_importImporteraMenu bar Importcv_design_export_unsavedDet går inte att Exportera en design som du inte har sparat först. Alert message when trying to export can unsaved design.cv_design_unsavedDesignen på arbetsytan har ändrats. Vill du fortsätta utan att spara?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExporteraMenu bar Exportws_chk_overwrite_existingDen här katalogen innehåller redan en fil som heter {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderDet går inte att använda den här katalogen. Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitAvslutaFile Menu Exitws_no_file_openDet gick inte att hitta någon fil. Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceDet går tyvärr inte att ha en cirkulär sekvens.Error message when a transition from one activity to another is creating a circular loopbin_tooltipSläpp en aktivitet i den här korgen för att ta bort den från sekvensen av aktiviteter. Tool tip message for canvas binnew_btn_tooltipDetta tömmer den aktuella sekvensen och återställer arbetsytan så att du kan börja om från början.Tool tip message for new button in toolbaropen_btn_tooltipVisa dialogrutan för filer och öppna en sekvens för aktiviteter.Tool tip message for open button in toolbarsave_btn_tooltipSnabbspara den aktuella sekvensen för aktiviteter. tool tip message for save button in toolbarcopy_btn_tooltipKopiera den markerade aktiviteten. tool tip message for copy button in toolbarpaste_btn_tooltipKlistra in en kopia av den markerade aktiviteten. tool tip message for paste button in toolbartrans_btn_tooltipAnvänd den här pennan för att dra övergångar mellan aktiviteter (eller tryck på tangenten CTRL).tool tip message for transition button in toolbaroptional_btn_tooltipSkapa en uppsättning aktiviteter. tool tip message for optional button in toolbargate_btn_tooltipSkapa en slutpunkt.tool tip message for gate button in toolbarbranch_btn_tooltipSkapa en förgrening (tillgänglig i LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltipSkapa flödeskontrollerade aktivitetertool tip message for flow button in toolbargroup_btn_tooltipSkapa en aktivitet för att skapa grupper. tool tip message for group button in toolbarpreview_btn_tooltipFörhandsgranska din sekvens så att de lärande ser den. Tool tip message for preview button in toolbarcv_activity_dbclick_readonlyDet går inte att redigera verktyg som har designats som 'endast läsbart'. Var snäll och spara designen och försök igen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblEndast läsbartLabel for top left of canvas shown when a read-only design is open.al_empty_designDet går tyvärr inte att spara en tom design. alert message when user want to save an empty designcv_autosave_err_msgEtt fel har uppstått i samband med att det gjordes ett försök att automat-spara din design. Var snäll och kontakta systemadministratören. Alert error message when auto-save fails.cv_autosave_rec_msgDu håller på att återställa en förlorad eller inte sparad design. Den design som du håller på med kommer att tömmas. Vill du fortsätta?Message informing users that they have recovered data for a design.cv_autosave_rec_titleVarningAlert title for auto save recovery message.mnu_file_recoverÅterställ...Menu bar Recovercv_activity_copy_invalidDet går tyvärr inte att kopiera den här ärvda 'barn'-aktiviteten.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidDet går tyvärr inte att klippa ut den här ärvda 'barn'-aktiviteten.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidDu måste tyvärr markera aktiviteten innan du klickar på knappen 'Kopiera' eller kopierar enheten i den meny för aktiviteter som du högerklickar fram.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidDu måste tyvärr markera aktiviteten innan du klickar på knappen 'Kopiera' eller klickar på enheten Öppna/Redigera Innehåll i aktivitet i den meny för aktiviteter som du högerklickar fram.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgÄr du säker på att du vill ta bort den här filen/katalogen?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyDu får tyvärr inte skapa någon design utan filnamn.Error message when user try to save a design with no file namews_entre_file_nameVar snåll och skriv in namnet på designen och klicka sedan på knappen 'Spara'Error message when user try to save a design with no file namecv_activity_helpURL_undefinedDet går inte att hitta hjälpsidan för {0}Alert message when a tool activity has no help url defined.cv_untitled_lblUtan titlel -1Label for Design Title bar on canvasmnu_help_helpHjälp med pedagogisk designlabel for menu bar Help - Authoring Help optionccm_open_activitycontentÖppna/Redigera innehåll för aktivitetLabel for Custom Context Menuccm_copy_activityKopiera aktivitetLabel for Custom Context Menuccm_paste_activityKlistar in aktivitetLabel for Custom Context Menuccm_piInspektera egenskaper...Label for Custom Context Menuccm_author_activityhelpHjälp för aktiviteten pedagogisk designLabel for Custom Context Menuws_dlg_descriptionBeskrivningLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateIngenDrop down default for gate typepi_daysDagarDays label in property inspector for gate toolcv_close_return_to_ext_srcStäng och tillbaka till {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/th_TH_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/th_TH_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/th_TH_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleชุดกิจกรรมTitle for Activity Toolkit Panelal_alertแจ้งเตือนGeneric title for Alert windowal_cancelยกเลิกTo Confirm title for LFErroral_confirmยืนยันTo Confirm title for LFErroral_okตกลงOK on the alert dialogapp_chk_langloadยังไม่มีการโหลดภาษาmessage for unsuccessful language loadingapp_chk_themeloadยังไม่มีการโหลดรูปแบบทีมmessage for unsuccessful theme loadingapp_fail_continueยังไม่เปิดใช้งานระบบกรุณาติดต่อผู้ดูแลระบบmessage if application cannot continue due to any errorchosen_grp_lblเลือกLabel for the grouping drop down in the PropertyInspectorcopy_btnคัดลอกToolbar &gt; Copy Buttoncv_invalid_design_savedการออกแบบกิจกรรมยังไม่สมบูรณ์ กรุณาตรวจสอบอีกครั้งMessage when an invalid design has been savedcv_invalid_trans_targetเส้นทางกิจกรรมไม่ถูกต้องError message for when transition tool is dropped outside of valid target activitycv_show_validationIssuesThe button on the confirm dialogcv_valid_design_savedขอแสดงความยินดี! ได้บันทึกกิจกรรมนี้แล้วMessage when a valid design has been saveddb_datasend_confirmขอบคุณที่ส่งข้อมูลไปที่เซิร์ฟเวอร์Message when user sucessfully dumps data to the serverdelete_btnลบLabel for Delete buttongate_btnGate Toolbar &gt; Gate Buttongroup_btnกลุ่มToolbar &gt; Group Buttongrouping_act_titleจัดกลุ่มDefault title for the grouping activityld_val_activity_columnกิจกรรมThe heading on the activity in the ValidationIssuesDialogld_val_doneทำThe button label for the dialogld_val_issue_columnIssue The heading on the issue in the ValidationIssuesDialogld_val_titleValidation issues The title for the dialoglicense_not_selectedโปรดเลือกสิทธิ์ในการออกแบบShown if no license is selected in the drop down in workspacemnu_editแก้ไขMenu bar Editmnu_edit_copyคัดลอกMenu bar Edit &gt; Copymnu_edit_cutตัดMenu bar Edit &gt; Cutmnu_edit_pasteแปะMenu bar Edit &gt; Pastemnu_edit_redoทำซ้ำMenu bar Edit &gt; Redomnu_edit_undoยกเลิกทำMenu bar Edit &gt; Undomnu_fileไฟล์Menu bar Filemnu_file_closeปิดMenu bar Closemnu_file_newสร้างMenu bar Newmnu_file_openเปิดMenu bar Openmnu_file_revertย้อนหลังMenu bar Revertmnu_file_saveบันทึกMenu bar savemnu_file_saveasบันทึกเป็นMenu bar Save asmnu_helpช่วยเหลือMenu bar Helpmnu_help_abtเกี่ยวกับMenu bar Aboutmnu_toolsเครื่องมือMenu bar Toolsmnu_tools_optทางเลือกMenu bar Optionalmnu_tools_prefsอ้างอิงMenu bar preferencesmnu_tools_transสร้างเส้นวิถีทางMenu bar draw transitionnew_btnสร้าง Toolbar &gt; New Buttonnew_confirm_msgต้องการยกเลิกการออกแบบนี้Msg when user clicks new while working on the existing designnone_act_lblไม่ได้เลือกNo gate activity selectedopen_btnเปิดToolbar &gt; Open Buttonoptional_btnทางเลือกToolbar &gt; Optional Buttonpaste_btnแปะToolbar &gt; Paste Buttonperm_act_lblPermissionLabel for permission gate activitypi_activity_type_gateส่งกิจกรรมActivity type for gate in PIpi_activity_type_groupingกลุ่มกิจกรรมActivity type for grouping in Property Inspectorpi_definelaterเลือกทีหลัง Label for Define later for PIpi_end_offsetClose gate End offset labelpi_group_typeประเภทกลุ่มProperty Inspector Grouping type drop downpi_hoursชม.Hours label in Property Inspectorpi_lbl_currentgroupกลุ่มนี้Current grouping label for PIpi_lbl_descอธิบายDescription Label for PIpi_lbl_groupกลุ่มGrouping label for PIpi_lbl_titleTitle Title label for PIpi_max_actกิจกรรมมากสุดlabel for maximum Activitiespi_min_actกิจกรรมน้อยสุดlabel for Minimum activitiespi_minsนาทีMins label in teh property inspectorpi_no_groupingไม่มีCombo title for no groupingpi_num_learnersผู้เรียนPI Num learners labelpi_optional_titleเลือกกิจกรรมTitle for oprional activity property inspectorpi_runofflineแสดง OfflineLabel for Run Oflinepi_start_offsetเปิดStart offset labelpi_titleคุณสมบัติOn the title bar of the PIprefix_copyofบันทึกPrefix for copy paste command for canvas activitiesprefs_dlg_cancelยกเลิก6prefs_dlg_lng_lblภาษา7prefs_dlg_okตกลง5prefs_dlg_theme_lblหน้ากาก8prefs_dlg_titlePreferences 4preview_btnแสดงตัวอย่างToolbar &gt; Preview Buttonproperty_inspector_titlePropertiesOn the title bar of the PIrandom_grp_lblสุ่มเลือกLabel for the grouping drop down in the PropertyInspectorrename_btnเปลี่ยนชื่อLabel for Rename Buttonsave_btnบันทึกToolbar &gt; Save buttonsched_act_lblScheduleLabel for schedule gate activitysynch_act_lblประสานกันUsed as a label for the Synch Gate Activity Typetk_titleชุดกิจกรรมLabel for Activities Toolkit Paneltrans_btnแปลToolbar &gt; Transition Buttontrans_dlg_cancelยกเลิกCancel button on transition dialogtrans_dlg_gateการประสานHeader for the transition props dialogtrans_dlg_gatetypecmbชนิดGate type combo labeltrans_dlg_okตกลงOK Button on transition dialogtrans_dlg_titleTransition Title for the transition properties dialogws_RootรากRoot folder title for workspacews_chk_overwrite_resourceต้องการเขียนทับws_click_folder_fileโปรดเลือกโฟล์เดอร์ที่ต้องการบันทึกจัดเก็บError msg if no folder or file is selectedws_copy_same_folderกิจกรรมเหมือนกัน โปรดเลือกใหม่The user has tried to drag and drop to the same placews_dlg_cancel_buttonยกเลิก2ws_dlg_filenameชื่อไฟล์Label for File name in workspace windowws_dlg_location_buttonที่อยู่Workspace dialogue Location btn labelws_dlg_ok_buttonตกลงWsp Dia OK Button labelws_dlg_open_btnเปิดWsp Dia Open Button labelws_dlg_properties_buttonคุณสมบัติWorkspace dialogue Properties btn labelws_dlg_save_btnบันทึก Wsp Dia Save Button labelws_dlg_titleพื้นที่งาน0ws_newfolder_cancelยกเลิกCancel on the new folder name diaws_newfolder_insใส่ชื่อใหม่Instructions on the new name pop upws_newfolder_okตกลงOK on the new folder name diaws_no_permissionคุณไม่ได้รับอนุญาตให้เขียนได้Message when user does not have write permission to complete actionws_rename_insใส่ชื่อใหม่อีกครั้งMessage of the new name for the userws_tree_mywspพื้นที่งานของฉันThe root level of the treews_tree_orgsโครงงานShown in the top level of the tree in the workspacews_view_license_buttonแสดงTo show the license to the useract_lock_chkกรุณาปลดล็อกกิจกรรม ก่อนที่จะสร้างกิจกรรมAlert Message if user drags the activity to locked optional activity container sys_error_msg_startติดตามดูการทำงานระบบCommon System error message starting linesys_error_msg_finishจำเป็นต้อง re-start LAMS Author ใหม่ ต้องการบันทึกหรือไม่Common System error message finish paragraphsys_errorระบบไม่ทำงานSystem Error elert window title \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/tr_TR_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3new_btnYeniToolbar &gt; New Buttonnone_act_lblHiçbiriNo gate activity selectedpaste_btn_tooltipSeçilen etkinliğin kopyasını yapıştırtool tip message for paste button in toolbaral_confirmOnaylaTo Confirm title for LFErrorapp_chk_langloadDil verisi henüz yüklenmedimessage for unsuccessful language loadingcopy_btnKopyalaToolbar &gt; Copy Buttonld_val_activity_columnEtkinlikThe heading on the activity in the ValidationIssuesDialogmnu_editDüzenMenu bar Editmnu_edit_copyKopyalaMenu bar Edit &gt; Copymnu_edit_cutKesMenu bar Edit &gt; Cutmnu_edit_pasteYapıştırMenu bar Edit &gt; Pastemnu_edit_undoGeri AlMenu bar Edit &gt; Undomnu_fileDosyaMenu bar Filemnu_file_closeKapatMenu bar Closemnu_file_newYeniMenu bar Newmnu_file_openMenu bar Openmnu_helpYardımMenu bar Helpmnu_help_abtLAMS HakkındaMenu bar Aboutmnu_toolsAraçlarMenu bar Toolsmnu_tools_prefsSeçeneklerMenu bar preferencesopen_btnToolbar &gt; Open Buttonoptional_btnSeçmeliToolbar &gt; Optional Buttonccm_open_activitycontentEtkinlik içeriğini aç/düzenleLabel for Custom Context Menucv_close_return_to_ext_srcKapat ve {0}' a dönButton label used on close and return button in save confirm message popup.cv_readonly_lblSalt okunurLabel for top left of canvas shown when a read-only design is open.stream_reference_lblLAMS (Öğrenme Etkinliği Yönetim Sistemi)Reference label for the application stream.optional_act_btnEtkinlikToolbar button for Optional Activity.pi_actEtkinliklerMin and max label postfix when an Optional Activity is selected.to_conditions_dlg_gte_lblBüyük veya eşitGreater than or equal toto_conditions_dlg_lte_lblKüçük veya eşitLess than or equal tows_dlg_insert_btnEkleButton label on Workspace in INSERT mode.al_group_name_invalid_blankGrup isimleri boş bırakılamazWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingBu grup ismi kullanılıyor, farklı bir isim giriniz.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupws_save_folder_invalidBu klasöre bir tasarım kaydedemezsiniz. Lütfen geçerli bir alt-klasör seçin.Alert message if root My Workspace folder is selected to save a design in.mnu_file_saveasFarklı KaydetMenu bar Save assave_btnKaydetToolbar &gt; Save buttonws_click_folder_fileLütfen kaydetmek için bir klasöre, üzerine yazmak için Tasarıma tıklayınız.Error msg if no folder or file is selectedws_dlg_save_btnKaydetWsp Dia Save Button labelcv_design_insert_warningBir kez bir sıralama eklerseniz iptal edemezsiniz-eski sıralamanız otomatik olarak yeni sıralamayla kaydedilir. Eski sıralamanıza dönmek için yeni eklediklerinizi elle silmeli ve tekrar kaydetmelisiniz. Sıralamanızı mevcut haliyle bırakmak için İptal tuşuna basınız.Aksi takdirde eklemek istediğiniz sıralamayı seçmek için Tamam'a tıklayınız Warning message when merge/insertcv_eof_changes_appliedDeğişiklikler başarıyla uygulandıChanges have been successful applied.validation_error_transitionNoActivityBeforeOrAfterBir geçiş öncesinde veya sonrasında mutlaka bir etkinlik barındırmalıdırA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionBir etkinliğin giriş veya çıkış geçişi olmalıdırAn activity must have an input or output transitionvalidation_error_inputTransitionType1Bu etkinliğin giriş geçişi yokturThis activity has no input transitionvalidation_error_outputTransitionType1Bu etkinliğin çıkış geçişi yokturThis activity has no output transitioncv_invalid_design_on_apply_changesDeğişiklikler uygulanamıyor. Bir veya fazla geçiş eksik.Cannot apply changes. There are one or more transitions missing.apply_changes_btn_tooltipDeğişiklikleri uygula ve dersi tool tip message for save button in toolbarbranch_mapping_dlg_branches_lst_lblDallanmalarLabel for Branches list box on Branch Matching Dialogs.groupnaming_dlg_title_lblGrup adlandırmaTitle label for Group Naming dialog.pi_activity_type_branchingDallanma etkinliğiActivity type for Branching in Property Inspector.pi_group_naming_btn_lblGrupları adlandırLabel for button that opens Group Naming dialog.sequence_act_titleAkış sırasıDefault title for Sequence Activity.pi_group_matching_btn_lblGrupları dallanmalarla eşleştirButton in author that allows you to allocate groups to branches for group based branchingmnu_file_saveKaydetMenu bar savecv_invalid_design_savedTasarımınız henüz geçerli değil, ancak kaydedildi, problemi görmek için "Olası sorunlar" a tıklayınızMessage when an invalid design has been savedsave_btn_tooltipEtkinlik akışını hızlı kaydettool tip message for save button in toolbardelete_btnSilLabel for Delete buttonws_del_confirm_msgBu dosya/klasörü silmek istediğinizden emin misiniz?Confirmation message when user tries to delete a file or folder in workspace dialog boxcompetence_editor_warning_competence_mappedSilmeye çalıştığınız yetki bir yada daha fazla etkinlikte kullanılmaktadır.Silerek bu kullanımlarıda kaldırmış olacaksınız. Silmek istediğinizden emin misiniz?Warning message when you attempt to delete a competence that is mapped to one or more activities.preview_btn_tooltip_disabledAkış diagramını görüntülemek için önce çalışmanızı kaydedin daha sonra önizlemeye tıklayınTool tip message for preview button in toolbar when button is disabled.cv_design_export_unsavedKaydedilmemiş bir tasarımı dışa aktaramazsınızAlert message when trying to export can unsaved design.al_empty_designÜzgünüm, boş bir tasarımı kaydedemezsiniz.alert message when user want to save an empty designcv_valid_design_savedTebrikler! - Tasarımınız oluşturuldu ve kaydedildiMessage when a valid design has been savedcv_activity_dbclick_readonlySalt okunur bir tasarımı düzenleyemezsiniz. Lütfen tasarımın bir kopyasını kaydedip yeniden deneyiniz.Alert message when double-clicking an Activity in an open read-only designws_file_name_emptyÜzgünüm! Bir tasarımı dosya ismi olmadan kaydedemezsiniz.Error message when user try to save a design with no file namecondmatch_dlg_cond_lst_lblKoşullarLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblKoşulları dallanmalarla eşleştirDialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_condition_col_lblKoşulColumn heading for showing condition description of the mapping.cv_autosave_rec_msgKaydedilmemiş veya kaybedilmiş son tasarımınızı kurtarmak üzeresiniz. Geçerli tasarımınız silinecek. Devam etmek istiyor musunuz?Message informing users that they have recovered data for a design.branch_mapping_no_condition_msgHerhangi bir koşul seçilmediAlert message when adding a Mapping without a Condition being selected.branch_mapping_dlg_condition_linked_allKoşullar varPhrase used at start of linked conditions alert message when clearing all.branch_mapping_auto_condition_msgGeriye kalan tüm durumlar varsayılan dallanma olarak haritalanacak.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.to_condition_invalid_value_range{0} varolan bir koşulun aralığında olamazAlert message when a submitted condition interferes with another previously submitted condition.branch_mapping_dlg_condition_linked_singleKoşulPhrase used at start of linked conditions alert message when clearing a single entry.to_conditions_dlg_condition_items_value_col_lblKoşulColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_title_lblÇıktı koşulları oluşturDialog title for creating new tool output conditions.pi_condmatch_btn_lblKoşul oluşturLabel for button to open dialog to create output conditions.pi_tool_output_matching_btn_lblKoşulları dallanmalarla eşleştirButton in author that allows you to match conditions to branches for tool-output based branchinggrouping_invalid_with_common_names_msg{0} grupllama etkinliğinin birden fazla aynı ismi olması nedeniyle tasarımı kaydedemiyor. Gruplamay gözden geçirip tekrar deneyiniz.Alert message displayed when the Grouping validation fails during saving a design.map_gate_conditions_btnKapı koşulları oluştur.Button to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msg-Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stateto_conditions_dlg_condition_items_update_defaultConditionsSeçilen çıktı tanımları için durumlarınız güncellenmek üzere. Bu varolan tüm dallanmaları temizleyecektir. Devam etmek istiyor musunuz?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.ws_entre_file_nameLütfen tasarım ismini giriniz ve Kaydet butonuna tıklayınızError message when user try to save a design with no file namecv_autosave_err_msgTasarımınız otomatik kaydedilmeye çalışılırken bir hata oluştu. Lütfen Flash Player depolama ayarlarınızı yükseltiniz.Alert error message when auto-save fails.ws_newfolder_insYeni bir dosya ismi girinizInstructions on the new name pop upws_no_permissionÜzgünüm, bu kaynağa yazmak için izniniz yokMessage when user does not have write permission to complete actionws_rename_insLütfen yeni ismi girinizMessage of the new name for the userlicense_not_selectedHenüz bir lisans seçilmedi- Lütfen bir tane seçinizShown if no license is selected in the drop down in workspaceperm_act_lblİzinLabel for permission gate activityws_tree_mywspÇalışma alanımThe root level of the treews_tree_orgsGruplarımShown in the top level of the tree in the workspacesys_error_msg_startAşağıdaki hata meydana geldi:Common System error message starting linews_click_file_openAçmak için lütfen bir tasarımın üzerine tıklayınızAlert message if folder tried to be opened.copy_btn_tooltipSeçilen etkinliği kopyalatool tip message for copy button in toolbargrouping_act_titleGrup OluşturDefault title for the grouping activitybranch_mapping_dlg_condition_col_value{0} ile {1} aralığıValue for Condition field in mapping datagrid.pi_lbl_currentgroupGeçerli GruplamaCurrent grouping label for PIal_activity_view_competence_mappings_invalidYetki haritalarını görüntülemeye çalışmadan önce bir etkinlik seçtiğinizi emin olun.Warning that appears when no activity is selected when the user tries to view competence mappingspreview_btnÖnizlemeToolbar &gt; Preview Buttonpreview_btn_tooltipÖğrenenlerin göreceği biçimde akışı önizleTool tip message for preview button in toolbarws_view_license_buttonGörünümTo show the license to the userprefs_dlg_cancelİptal6trans_dlg_cancelİptalCancel button on transition dialogws_dlg_cancel_buttonİptal2ws_newfolder_cancelİptalCancel on the new folder name diaal_cancelİptalTo Confirm title for LFErrorcancel_btnİptalToolbar - Cancel Buttonsynch_act_lblSenkronize etUsed as a label for the Synch Gate Activity Typebranch_mapping_dlg_branch_col_lblDallanmaColumn heading for showing sequence name of the mapping.trans_dlg_gateSenkronize etmeHeader for the transition props dialogws_dlg_location_buttonKonumWorkspace dialogue Location btn labeloptional_seq_btnAkışToolbar button for Sequences within Optional Activity.cv_invalid_trans_target_to_activity{0} 'dan daha önce bir geçiş atanmışError message when a transition to the activity already existcv_design_unsavedTasarım değiştirildi. Kaydetmeden devam etmek istiyor musunuz?Alert message when opening/importing when current design on canvas is unsaved or modified.optional_btn_tooltipBir dizi seçmeli etkinlik oluşturur.tool tip message for optional button in toolbarbranch_btn_tooltipDallanma oluşturtool tip message for branch button in toolbargroup_btn_tooltipGrup etkinliği oluştur.tool tip message for group button in toolbaral_activity_copy_invalidÜzgünüm! Kopyalama yapmadan önce etkinliği seçmelisinizAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasccm_piÖzelliklerLabel for Custom Context Menubranch_btnDallanmaLabel for disabled Branch button shown as submenu for flow button in Toolbarcv_invalid_trans_target_from_activity{0} 'dan daha önce bir geçiş atanmışError message when a transition from the activity already existto_conditions_dlg_defin_bool_typeDoğru/YanlışType description for a lboolean-value based ouput definition.mnu_file_exportDışa aktarMenu bar Exportws_dlg_titleÇalışma Alanı0group_btnGrupToolbar &gt; Group Buttonpi_lbl_groupGruplamaGrouping label for PItrans_btnGeçişToolbar &gt; Transition Buttontrans_dlg_titleGeçişTitle for the transition properties dialogopt_activity_titleSeçmeli EtkinlikTitle for Optional Activity Containerws_license_comment_lblEk Lisans BilgisiLabel for Licence Comment description below license drop downal_cannot_move_activityÜzgünüm bu etkinliği taşıyamazsınızAlert message when user tries to move child activity of any parallel activityws_click_virtual_folderBu dizini kullanamazsınızAlert message for trying to use a virtual folder to save/open a file.prefix_copyof_countKopyası ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.cv_activity_helpURL_undefined{0} için yardım dosyasını bulamıyorAlert message when a tool activity has no help url defined.act_tool_titleEtkinlik Araç KutusuTitle for Activity Toolkit Panelapp_chk_themeloadTema verisi yüklenmedimessage for unsuccessful theme loadingapp_fail_continueUygulama tamamlanamadı. Lütfen destek için iletişime geçiniz.message if application cannot continue due to any errorcv_invalid_trans_targetBu nesne için geçiş yaratamazsınız.Error message for when transition tool is dropped outside of valid target activitydb_datasend_confirmSunucuya gönderdiğiniz veri için teşekkürlerMessage when user sucessfully dumps data to the servermnu_edit_redoİleri alMenu bar Edit &gt; Redonew_confirm_msgEkrandaki tasarımınızı silmek istediğinizden emin misiniz?Msg when user clicks new while working on the existing designpaste_btnYapıştırToolbar &gt; Paste Buttonpi_activity_type_groupingGrup EtkinliğiActivity type for grouping in Property Inspectorpi_hoursSaatlerHours label in Property Inspectorpi_lbl_titleBaşlıkTitle label for PIpi_minsDakikalarMins label in teh property inspectorpi_no_groupingHiçbiriCombo title for no groupingpi_num_learnersÖğrenen sayısıPI Num learners labelpi_optional_titleSeçmeli EtkinlikTitle for oprional activity property inspectorpi_titleÖzelliklerOn the title bar of the PIprefix_copyofKopyasıPrefix for copy paste command for canvas activitiesprefs_dlg_lng_lblDil7prefs_dlg_theme_lblTema8prefs_dlg_titleTercihler4property_inspector_titleÖzelliklerOn the title bar of the PIrandom_grp_lblRastgeleLabel for the grouping drop down in the PropertyInspectorrename_btnYeniden AdlandırLabel for Rename Buttontk_titleEtkinlik Araç KutusuLabel for Activities Toolkit Panelws_RootAna dizinRoot folder title for workspacews_chk_overwrite_resourceUyarı: Bu sıralamanın üzerine yazmak üzeresiniz!ws_copy_same_folderKaynak ve hedef dizinler aynıThe user has tried to drag and drop to the same placews_dlg_filenameDosya adıLabel for File name in workspace windowws_dlg_open_btnWsp Dia Open Button labelws_dlg_properties_buttonÖzelliklerWorkspace dialogue Properties btn labelsys_errorSistem hatasıSystem Error elert window titleal_sendGönderSend button label on the system error dialogpi_daysGünlerDays label in property inspector for gate toolws_license_lblLisansLabel for Licence drop down on workspace properties tab viewpi_num_groupsGrup sayısıNumber of groups in Property inspectorgate_btn_tooltipBitiş noktası yaratınıztool tip message for gate button in toolbarflow_btn_tooltipAkış kontrol etkinliği yaratınıztool tip message for flow button in toolbarccm_copy_activityEtkinliği KopyalaLabel for Custom Context Menuccm_paste_activityEtkinliği YapıştırLabel for Custom Context Menumnu_file_exitÇıkışFile Menu Exitws_no_file_openDosya bulunamadıAlert message if no matching file is found to open in selected folder of Workspace.flow_btnAkışLabel for Flow button in Toolbartrans_dlg_nogateHiçbiriDrop down default for gate typecv_untitled_lblBaşlıksız - 1Label for Design Title bar on canvascv_autosave_rec_titleUyarıAlert title for auto save recovery message.mnu_file_apply_changesDeğişiklikler UygulaApply Changesapply_changes_btnDeğişiklikler UygulaApply Changescv_activity_readOnlyBu etkinlik sadece okunabilirAlert message when a user performs an illegal action on a read-only transition.cv_element_readOnly_action_delKaldırıldıAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modDeğiştirildiAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDüzenlemeyi bitirmeniz için tasarımın geçerli olması gerekmektedir.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgUyarı: Tasarımınız değiştirildi. Kaydetmeden kapatmak istiyor musunuz?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.mnu_file_finishBitirMenu bar File - Finish (Edit Mode)about_popup_title_lblHAkkındaTitle for the About Pop-up window.pi_activity_type_sequenceSıralı EtkinlikActivity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblDeğerini değiştirmek istediğiniz ismin üzerine tıklayınız.Instructions for Group Naming dialog.to_conditions_dlg_add_btn_lbl+ EkleLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblHepsini TemizleLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblKaldırLabel for button to remove condition.to_conditions_dlg_from_lblBuradanLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblBurayaLabel for end value in condition range for long or numeric output values.branch_mapping_dlg_group_col_lblGrupColumn heading for showing group name of the mapping.to_conditions_dlg_defin_user_defined_typeKullanıcı tanımlıType description for a user-defined (boolean set) based ouput definition.al_alertDikkat!Generic title for Alert windowpi_defaultBranch_cb_lblVarsayılanCheckBox label for selecting the Branch as default for the BranchingActivity.chosen_branch_act_lblÖğretmen seçimiBranching type label for Teacher choice Branching.groupmatch_dlg_groups_lst_lblGruplarLabel for Groups list box on Group/Branch Matching Dialog.tool_branch_act_lblÖğrenen çıktısıBranching type label for Tool output Branching.to_condition_start_valueBaşlangıç değeriValue representing the min boundary value of the conditions range.to_condition_end_valueBitiş değeriValue representing the max boundary value of the conditions value.to_condition_invalid_value_direction{0} {1} den büyük olamazAlert message when the start value is greater than end value of the submitted condition.al_continueDevamContinue button on Alert dialogto_condition_untitled_item_lblBaşlıksız {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.branch_mapping_dlg_condition_col_value_maxBüyük veya eşit {0}Value for Condition field in mapping datagrid when Greater than option is selected.to_conditions_dlg_lt_lblKüçük veya eşitLess than option for long type conditions.pi_max_actEn fazla {0}Label for maximum Activities or Sequencespi_min_actEn az {0}Label for minimum Activities or Sequencesto_conditions_dlg_condition_items_name_col_lblİsimColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Seçenekler ]Header label value (first index) for tool long (range) options drop-down.groupnaming_dialog_col_groupName_lblGrup AdıColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignEkle/BirleştirMenu item label for Inserting a Learning Design.refresh_btnYenileButton label for Refresh button on the Tool Output Conditions dialog.pi_branch_tool_acts_default--Seçin--Default item label for Input Tool dropdown list.mnu_tools_optSeçmeli çizMenu bar Optionallbl_num_activities{0} - Etkinliklerreplacement for word activitiessched_act_lblZaman çizelgesiLabel for schedule gate activityopen_btn_tooltipEtkinlik akışını açmak için dosya diyalogunu gösterTool tip message for open button in toolbarmnu_file_importİçe aktarMenu bar Importabout_popup_version_lblSürümLabel displaying the version no on the About dialog.gpl_license_url http://www.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleDallanmaLabel for Branching Activitybranch_mapping_no_branch_msgDallanma seçilmediAlert message when adding a Mapping without a Branch (Sequence) being selected.act_lock_chkLütfen bu etkinliği seçmeli olarak tanımlamadan önce Seçmeli Etkinlik kutusunun kilidini açınız. Alert Message if user drags the activity to locked optional activity container cv_trans_target_act_missingGeçişin ikinci etkinliği eksik.Error message when target activity for transition is missingcv_activity_copy_invalidÜzgünüm! Bu alt etkinliği kopyalama izniniz yokError message when user try to copy child activity from either optional or parallel activity containermnu_tools_transGeçiş çizMenu bar draw transitionws_chk_overwrite_existingBu klasörde {0} isimli dosya daha önceden kaydedilmiş.Alert message when saving a design with the same filename as an existing design.pi_parallel_titleParalel EtkinlikTitle for parallel activity property inspectormnu_file_recoverKurtar...Menu bar Recovercv_activity_cut_invalidÜzgünüm! Bu alt etkinliği kesmeye izniniz yok.Error message when user try to cut child activity from either optional or parallel activity containernew_btn_tooltipGeçerli sıralamayı temizlerve çalışma alanını kullanım için hazırlar.Tool tip message for new button in toolbartrans_btn_tooltipBu kalemi etkinlikler arasında geçiş oluşturmak için kullanınız. (veya CTRL tuşuna basınız.)tool tip message for transition button in toolbaral_activity_openContent_invalidÜzgünüm! Etkinlik sağ menüsündeki Etkinlik içeriği Aç/Düzenle maddesine tıklamadan önce etkinliği seçmek zorundasınız.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasabout_popup_copyright_lbl© 2002-2008 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_license_lblBu program üzretsiz bir yazılımdır; dağıtabilir ve/veya Free Softvare Foundation tarafından yayınlanan GNU General Public Licence version 2 şartları altında değiştirebilirsiniz.Label displaying the license statement in the About dialog.branch_mapping_no_groups_msgHiçbir grup seçilmedi.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblGrup-tabanlıBranching type label for Group-based Branching.branch_mapping_dlg_condition_linked_msg{0} varolan bir dallanmaya bağlı. Devam etmek istiyor musunuz?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_branch_item_default{0} (varsayılan)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.cv_invalid_branch_target_to_activityDaha önce {0}'a bir dallanma oluşturulmuş.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityDaha önce {0}'dan bir dallanma oluşturulmuş.Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceKapalı bir sıralamaya yeni bir geçiş bağlayamazsınız.Error message displayed after drawing a transition from an activity in a closed sequence.is_remove_warning_msgUYARI: Bu ders kaldırılmak üzere. Bu dersi {0} olarak saklamak ister misiniz?Message for the alert dialog which appears following confirmation dialog for removing a lesson.cv_activityProtected_activity_remove_msgKaldırmak için lütfen bu etkinliğin {0} seçimini kaldırınız.Instruction how to delete an Activity linked to a Branching Activity.redundant_branch_mappings_msgBu tasarım kullanılmayan dallanma haritaları içeriyor ve kaldırılacak. Devam etmek istiyor musunuz?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_invalid_trans_diff_branchesFarklı dallanmaların içindeki etkinlikler arasında geçiş oluşturamazsınız.Error message displayed after drawing a transition between activities of two different branches.gate_btnKapıToolbar &gt; Gate Buttonpi_start_offsetKapıyı açStart offset labelcv_activityProtected_activity_link_msg{0} {1}'e bağlanmıştır.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_invalid_optional_seq_activity_no_branchesEtkinliği seçmeli sıralamaya eklemeden önce {0}'a bağlı dallanmaları kaldırınız.Alert message when user try to drop an activity with connected branches into optional sequences container.cv_invalid_optional_seq_activity{0}'ı seçmeli sıralama olarak ayarlamadan önce ona bağlı tüm geçişleri kaldırmalısınız.Alert message when user try to drop an activity with to or from transition into optional sequences container.to_conditions_dlg_defin_item_fn_lbl {0} ({1})Function label value for tool output definition drop-down.branch_mapping_dlg_condition_col_value_min{0}'dan küçük veya eşitValue for Condition field in mapping datagrid when Less than option is selected.to_conditions_dlg_defin_item_header_lbl[ Çıktı seç]Header label value (first index) for tool output definition drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipSimge durumuna küçültTooltip message for close button on Branching canvas.pi_branch_tool_acts_lblGirdi (Araç)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.cv_activityProtected_child_activity_link_msg{0}'ın {1}'e bağlı bir alt etkinliği var.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.pi_end_offsetKapıyı kapatEnd offset labelcv_invalid_optional_activity_no_branches{0}' sseçmeli etkinlik olarak ayarlamadan önce üzerinde bağlı olan dallanmaları klaldırmalısınız.Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.cancel_btn_tooltipDersi izlemeye döntool tip message for cancel button in toolbar (edit mode)to_conditions_dlg_range_lblAralıkHeading label for section in the dialog to set numeric condition range.branch_mapping_no_mapping_msgHerhangi bir harita seçilmediAlert message when removing a Mapping without a Mapping being selected.branch_mapping_dlg_match_dgd_lblHaritalamaHeading label for Mapping datagrid.to_conditions_dlg_defin_long_typearalıkType description for a long-value based ouput definition.cv_gateoptional_hit_chkKapı etkinliğini seçmeli etkinlik olarak ekleyemezsiniz.Error message when user drags gate activity over to optional containerpi_mapping_btn_lblHaritalamaLabel for button to open tool output to branch(s) dialog.cv_invalid_optional_activity{0}'ı seçmeli etkinlik olarak atamadan önce bağlı olan geçişleri kaldırınız.Alert message when user try to drop an activity with to or from transition into optional containerbin_tooltipEtkinlik akışından kaldırmak istediğiniz etkinliği bu kutuya bırakınız.Tool tip message for canvas bincv_show_validationSorunlarThe button on the confirm dialogld_val_issue_columnSorunThe heading on the issue in the ValidationIssuesDialogbranch_mapping_dlg_condition_col_value_exact{0}'ın tam değeriValue for Condition field in mapping datagrid when range set is only single value.pi_definelaterİzlemede tanımlaLabel for Define later for PIpi_seqAkışlarMin and max label postfix when an Optional Sequences activity is selected.cv_trans_readOnlyGeçiş {0} olamaz. Geçiş hedefi salt okunur.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).condmatch_dlg_message_lblİstenen dallanma için varsayılan dallanma Özellikler alanındaki "varsayılan" onay kutusuna tıklanarak seçilebilir. Label for a message in the Condition to Branch matching dialog.pi_activity_type_gateAkışa bir kapı koyarak belirli koşullar oluşana kadar bekletme etkinliğiActivity type for gate in PIld_val_titleGeçerlemeThe title for the dialogvalidation_error_inputTransitionType2Girdi geçişinde eksik etkinlik yok.No activities are missing their input transition.validation_error_outputTransitionType2Çıktı geçişinde eksik etkinlik yok.No activities are missing their output transition.cv_invalid_trans_circular_sequenceDairesel bir akış oluşturmaya izniniz yok.Error message when a transition from one activity to another is creating a circular loopchosen_grp_lblİzlemede seçLabel for the grouping drop down in the PropertyInspectorpi_define_monitor_cb_lblİzlemede tanımlaCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblDallanmaların harita gruplarıMap Groups to Branchescv_edit_on_fly_lblÇalışırken düzenleLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.learner_choice_grp_lblÖğrencinin tercihine bırakA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesGrup büyüklükleri eşit olsun.Checkbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgYetki düzenlemeDialog for adding/editing/removing competencescompetence_editor_warning_title_exists{0} başlıklı yetki zaten var.Warning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankYetki başlığı boş bırakılamaz.Warning message when you try to define a competence with a blank competence titlecompetence_editor_add_competence_btnEkleAdd competence buttoncompetence_def_dlgYetki tanımlamaTitle for Dialog that allows you to define new or edit existing competencescompetences_mapped_to_act_lblYetkilerLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_comptence_btnYetkileri haritalaLabel for button that invokes the Competence Mappings dialogcompetences_lblYetkilerLabel in Competence Editor dialog to show all the competences in the learning designcompetence_mappings_btnYetki haritalarıTitle for the dialog that allows you to map competences to an activitygate_openAçıkOpen state for gate activity, allows learners to pass through itgate_closedKapalıClosed state for gate activity, does not allow learners to pass through itpi_lbl_descAçıklamaDescription Label for PIws_dlg_descriptionAçıklamaLabel for description in Workspace dialog - Properties tabal_okTamamOK on the alert dialogprefs_dlg_okTAMAM5ws_newfolder_okTAMAMOK on the new folder name diaws_dlg_ok_buttonTAMAMWsp Dia OK Button labeltrans_dlg_okTAMAMOK Button on transition dialogpi_runofflineÇevrimdışı EtkinlikLabel for Run Oflinepi_group_typeGruplama türüProperty Inspector Grouping type drop downal_activity_paste_invalidÜzgünüm bu tür bir etkinliği kopyalayamazsınızAlert message when user is attempting to paste a unsupported activity type.pi_branch_typeDallanma türüProperty Inspector Branching type drop down.trans_dlg_gatetypecmbTürGate type combo labelld_val_doneTamamThe button label for the dialogal_doneSonlandırLabel for dialog completion button.al_cannot_move_to_diff_opt_seqBir etkinliği seçmeli etkinlikler içinde farklı bir akışa taşımak için önce etkinliği seçmeli etkinlik alanı dışına sürüklemeniz ve daha sonra seçmeli etkinlik alanında istediğiniz yere sürüklemeniz gerekmektedir.Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activityoptional_seq_btn_tooltipBir dizi seçmeli etkinlik oluşturur.Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleAkış şırasını kaldırRemoving sequencespi_optSequence_remove_msgKaldırılacak akış/lar etkinlikler içeriyor olabilir. Bu akışları kaldırmak istiyor musunuz?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actAkışların numarasıLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - AkışLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgLütfen etkinliği akışlardan birinin üzerine bırakınız.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.ta_iconDrop_optseq_error_msgBu kutuda kullanılabilir akışlar bulunmamaktadırError message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleSeçmeli AkışTitle for Optional Sequences Container.act_seq_lock_chkLütfen bu etkinliği seçmeli etkinliğe atamadan önce Seçmeli Etkinlik kutusunun kilidini açınız.Alert Message if user drags the activity to locked optional sequences container.mnu_help_helpTasarım Yardımlabel for menu bar Help - Authoring Help optionsys_error_msg_finishDevam etmek için LAMS Tasarımı yeniden başlatmalısınız. Problem belirlenmesine yardımcı olacak hata bilgisini kaydetmek istiyor musunuz?Common System error message finish paragraphccm_author_activityhelpYazarlık Etkinliği Yardım Label for Custom Context Menubranch_mapping_dlg_condtion_items_update_defaultConditions_zeroKullanıcı tanımlı bir koşul bulunamadığında güncellenemiyor. Araçlar'ın tasarım sayfalarında yapılandırmanız gerekmektedir.Alert message when the updating the conditions with a selected output definition that has no default conditions.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ws_dlg_date_modified_lblSon düzenlenme: {0}Show the last modified datetime of the selected design in the workspacews_save_title_reserved_charsBaşlık özel karakterler içeremez: {0}Error alert when trying to save with a title containing illegal characters.mnu_file_import_communityLAMS topluluğundan içe aktarFile menu item for importing a learning design from the LAMS community \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/vi_VN_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleBộ công cụ hoạt độngTitle for Activity Toolkit Panelal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏTo Confirm title for LFErroral_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on the alert dialogapp_chk_langloadDữ liệu ngôn ngữ không được nạp vàomessage for unsuccessful language loadingapp_chk_themeloadDữ liệu đề tài vẫn chưa được tảimessage for unsuccessful theme loadingapp_fail_continueỨng dụng không thể tiếp tục. Hãy liên hệ hỗ trợmessage if application cannot continue due to any errorchosen_grp_lblChọn lựaLabel for the grouping drop down in the PropertyInspectorcopy_btnSao chépToolbar &gt; Copy Buttoncv_invalid_design_savedThiết kế của bạn chưa hiệu lực, nhưng đã được lưu lại, bấm'Các vấn đề' để xem sai sótMessage when an invalid design has been savedcv_invalid_trans_targetBạn không thể thiết lập chuyển tiếp với đối tượng nàyError message for when transition tool is dropped outside of valid target activitycv_show_validationCác vấn đềThe button on the confirm dialogcv_valid_design_savedChúc mừng! - Thiết kế của bạn đã có hiệu lực và đã được lưuMessage when a valid design has been saveddb_datasend_confirmCám ơn đã gửi dữ liệu tới serverMessage when user sucessfully dumps data to the serverdelete_btnXóaLabel for Delete buttongate_btnCổngToolbar &gt; Gate Buttongroup_btnNhómToolbar &gt; Group Buttongrouping_act_titleGom nhómDefault title for the grouping activityld_val_activity_columnHoạt độngThe heading on the activity in the ValidationIssuesDialogld_val_doneHoàn thànhThe button label for the dialogld_val_issue_columnVấn đềThe heading on the issue in the ValidationIssuesDialogld_val_titleCác vấn đề về hiệu lựcThe title for the dialoglicense_not_selectedSự lựa chọn không được phép - Hãy lựa chọn khácShown if no license is selected in the drop down in workspacemnu_editHiệu chỉnhMenu bar Editmnu_edit_copySao chépMenu bar Edit &gt; Copymnu_edit_cutCắtMenu bar Edit &gt; Cutmnu_edit_pasteDánMenu bar Edit &gt; Pastemnu_edit_redoLàm lạiMenu bar Edit &gt; Redomnu_edit_undoHủy thao tác vừa làmMenu bar Edit &gt; Undomnu_fileFileMenu bar Filemnu_file_closeĐóngMenu bar Closemnu_file_newMớiMenu bar Newmnu_file_openMởMenu bar Openmnu_file_saveLưuMenu bar savemnu_file_saveasLưu như...Menu bar Save asmnu_helpTrợ giúpMenu bar Helpmnu_help_abtLiên quan về LAMSMenu bar Aboutmnu_toolsCông cụMenu bar Toolsmnu_tools_optTùy chọn vẽMenu bar Optionalmnu_tools_prefsTính năngMenu bar preferencesmnu_tools_transSự chuyển tiếp vẽMenu bar draw transitionnew_btnMớiToolbar &gt; New Buttonnew_confirm_msgBạn có chắc muốn xóa các thiết kế của mình trên màn hìnhMsg when user clicks new while working on the existing designnone_act_lblKhông lựa chọnNo gate activity selectedopen_btnMở Toolbar &gt; Open Buttonoptional_btnTùy ChọnToolbar &gt; Optional Buttonpaste_btnDánToolbar &gt; Paste Buttonperm_act_lblChấp nhậnLabel for permission gate activitypi_activity_type_gateHoạt động của CổngActivity type for gate in PIpi_activity_type_groupingGom nhóm hoạt độngActivity type for grouping in Property Inspectorpi_definelaterĐịnh nghĩa sauLabel for Define later for PIpi_end_offsetĐóng CổngEnd offset labelpi_group_typeLoại nhómProperty Inspector Grouping type drop downpi_hoursGiờHours label in Property Inspectorpi_lbl_currentgroupNhóm hiện thờiCurrent grouping label for PIpi_lbl_descMô tảDescription Label for PIpi_lbl_groupGom nhómGrouping label for PIpi_lbl_titleTiêu ĐềTitle label for PIpi_max_actSố hoạt động tối đalabel for maximum Activitiespi_min_actSố hoạt động tối thiểulabel for Minimum activitiespi_minsPhútMins label in teh property inspectorpi_no_groupingĐể trốngCombo title for no groupingpi_num_learnersSố học viênPI Num learners labelpi_optional_titleHoạt động tùy chọnTitle for oprional activity property inspectorpi_runofflineChạy ngoại tuyếnLabel for Run Oflinepi_start_offsetMở cổngStart offset labelpi_titleĐặc tínhOn the title bar of the PIprefix_copyofBản saoPrefix for copy paste command for canvas activitiesprefs_dlg_cancelHủy bỏ6prefs_dlg_lng_lblNgôn Ngữ7prefs_dlg_okĐồng ý5prefs_dlg_theme_lblĐề tài8prefs_dlg_titleTùy thích4preview_btnXem trướcToolbar &gt; Preview Buttonproperty_inspector_titleĐặc tínhOn the title bar of the PIrandom_grp_lblNgẫu nhiênLabel for the grouping drop down in the PropertyInspectorrename_btnĐổi tênLabel for Rename Buttonsave_btnLưuToolbar &gt; Save buttonsched_act_lblLịch trình hoạt động của cổngLabel for schedule gate activitysynch_act_lblĐồng bộ hóaUsed as a label for the Synch Gate Activity Typetk_titleBộ công cụ hoạt độngLabel for Activities Toolkit Paneltrans_btnSự chuyển tiếpToolbar &gt; Transition Buttontrans_dlg_cancelHủy bỏCancel button on transition dialogtrans_dlg_gateSự đồng bộ hóaHeader for the transition props dialogtrans_dlg_gatetypecmbLoạiGate type combo labeltrans_dlg_okChấp nhậnOK Button on transition dialogtrans_dlg_titleSự chuyển tiếpTitle for the transition properties dialogws_RootThư mục gốcRoot folder title for workspacews_chk_overwrite_resourceCảnh báo : bạn đang ghi đè lên chuỗi này !ws_click_folder_fileHãy bấm vào một thư mục để lưu lại, hoặc ghi đè lên thiết kế khácError msg if no folder or file is selectedws_copy_same_folderThư mục nguồn và thư mục đích là mộtThe user has tried to drag and drop to the same placews_dlg_cancel_buttonHủy bỏ2ws_dlg_filenameTên FileLabel for File name in workspace windowws_dlg_location_buttonKhu vựcWorkspace dialogue Location btn labelws_dlg_ok_buttonĐồng ýWsp Dia OK Button labelws_dlg_open_btnMởWsp Dia Open Button labelws_dlg_properties_buttonĐặc tínhWorkspace dialogue Properties btn labelws_dlg_save_btnLưuWsp Dia Save Button labelws_dlg_titleKhông gian làm việc0ws_newfolder_cancelHủy bỏCancel on the new folder name diaws_newfolder_insHãy đặt tên một thư mục mớiInstructions on the new name pop upws_newfolder_okĐồng ýOK on the new folder name diaws_no_permissionXin lỗi, bạn không được phép ghi lên tài nguyên nàyMessage when user does not have write permission to complete actionws_rename_insHãy nhập tên mớiMessage of the new name for the userws_tree_mywspKhông gian làm việc của tôiThe root level of the treews_tree_orgsNhóm của tôiShown in the top level of the tree in the workspacews_view_license_buttonXemTo show the license to the useract_lock_chkHãy mở khóa chứa đựng hoạt động tùy chọn trước khi gán cho hoạt động các tùy chọnAlert Message if user drags the activity to locked optional activity container sys_error_msg_startLỗi hệ thống này đã được tìm thấyCommon System error message starting linesys_error_msg_finishBạn cần phải khởi động lại tính năng Soạn bài của LAMS để tiếp tục. Bạn có muốn lưu các thông tin về lỗi này để giúp sửa lỗi ?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titlepi_num_groupsSố lượng nhómNumber of groups in Property inspectorpi_parallel_titleHoạt động đồng thờiTitle for parallel activity property inspectoropt_activity_titleHoạt động tùy chọnTitle for Optional Activity Containerlbl_num_activitiesHoạt Độngreplacement for word activitiesal_sendGửiSend button label on the system error dialogal_cannot_move_activityXin lỗi, ban không thể thay đổi hoạt động nàyAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkBạn không thể thêm cổng hoạt động như là một hoạt động tùy chọnError message when user drags gate activity over to optional containerprefix_copyof_countBản sao ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidBạn không thể lưu thiết kế trong thư mục này. Hãy chọn một thư mục con có hiệu lựcAlert message if root My Workspace folder is selected to save a design in.ws_click_file_openHãy bấm vào một thiết kế để mở ra.Alert message if folder tried to be opened.ws_license_lblBản quyềnLabel for Licence drop down on workspace properties tab viewws_license_comment_lblThông tin bản quyền thêm vàoLabel for Licence Comment description below license drop downcv_invalid_optional_activityĐổi chỗ và rời sự chuyển tiếp từ {0} trước khi thiết lập nó thành hoạt động tùy chọnAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingHoạt động thứ hai của sự chuyển tiếp đang thất lạcError message when target activity for transition is missingcv_invalid_trans_target_from_activitySự chuyển tiếp từ {0} đã tồn tạiError message when a transition from the activity already existcv_invalid_trans_target_to_activitySự chuyển tiếp đến {0} đã tồn tạiError message when a transition to the activity already existbranch_btnNhánhLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnLuồngLabel for Flow button in Toolbarmnu_file_importNhập vàoMenu bar Importcv_design_export_unsavedBạn không thể xuất ra một thiết kế chưa được lưuAlert message when trying to export can unsaved design.cv_design_unsavedThiết kế trên nền đã thay đổi.Bạn có muốn tiếp tục mà không cần lưu?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportXuất raMenu bar Exportws_chk_overwrite_existingThư mục này đã chứa tên tệp tin {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderKhông thể sử dụng thư mục nàyAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitThoátFile Menu Exitws_no_file_openKhông tìm thấy Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceBạn không được phép có vòng lặpError message when a transition from one activity to another is creating a circular loopbin_tooltipThả vào thùng rác một hoạt động để gỡ bỏ nó khỏi vòng hoạt độngTool tip message for canvas binnew_btn_tooltipXóa bỏ kết quả hiện tại và lập lại không gian làm việc sẵn sàng cho sử dụngTool tip message for new button in toolbaropen_btn_tooltipHiển thị tệp Tool tip message for open button in toolbarsave_btn_tooltipLưu nhanh kết quả hoạt động hiện tạitool tip message for save button in toolbarcopy_btn_tooltipSao chép hoạt động được chọntool tip message for copy button in toolbarpaste_btn_tooltipDán bản sao của hoạt động được lựa chọntool tip message for paste button in toolbartrans_btn_tooltipSử dụng bút để thể hiện liên kết giữa các hoạt động (hoặc bấm phím CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipKhởi tạo một bộ các hoạt động tùy chọntool tip message for optional button in toolbargate_btn_tooltipTạo điểm dừngtool tip message for gate button in toolbarbranch_btn_tooltipTạo nhánh (chỉ có thể ở LAMS phiên bản 2.1)tool tip message for branch button in toolbarflow_btn_tooltipTạo luồng điều khiển các hoạt độngtool tip message for flow button in toolbargroup_btn_tooltipTạo hoạt động nhómtool tip message for group button in toolbarpreview_btn_tooltipXem trước bài học như học viên sẽ được xemTool tip message for preview button in toolbarcv_activity_dbclick_readonlyBạn không thể sửa các công cụ của thiết kế chỉ đươc đọc.Hãy lưu bản sao của thiết kế và thử lại sauAlert message when double-clicking an Activity in an open read-only designcv_readonly_lblChỉ đọcLabel for top left of canvas shown when a read-only design is open.al_empty_designXin lỗi, Bạn không thể lưu một thiết kế rỗngalert message when user want to save an empty designcv_autosave_err_msgMột lỗi đã được phát hiện khi tự động lưu thiết kế của bạn.Nếu lỗi này vẫn còn xin hãy liên hệ với quản trị hệ thốngAlert error message when auto-save fails.cv_autosave_rec_msgBạn sắp khôi phục lại mất mát gần đây hoặc thiết kế chưa lưu.Message informing users that they have recovered data for a design.cv_autosave_rec_titleCảnh báoAlert title for auto save recovery message.mnu_file_recoverKhôi phục lại ...Menu bar Recovercv_activity_copy_invalidXin lỗi.! Bạn không được phép sao chép kết quả hoạt động nàyError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidXin lỗi.! Bạn không được cắt bỏ kết quả hoạt động nàyError message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidXin lỗi! Bạn phải chọn hoạt động trước khi sao chépAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidXin lỗi! Bạn phải chọn hoạt động trước khi Mở/Sửa danh mục nội dung hoạt động khi bấm chuoalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgBạn có chắc là muốn xóa tệp tin/ thư mục này không?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyXin lỗi! Bạn không thể lưu thiết kế mà không đặt tênError message when user try to save a design with no file namews_entre_file_nameHãy nhập tên thiết kế,và sau đó bấm nút lưuError message when user try to save a design with no file namecv_activity_helpURL_undefinedKhông thể tìm thấy trang trợ giúp cho {0}Alert message when a tool activity has no help url defined.cv_untitled_lblKhông tiêu đề - 1Label for Design Title bar on canvasmnu_help_helpGiúp soạn giảlabel for menu bar Help - Authoring Help optionccm_open_activitycontentMở/Sửa nội dung hoạt độngLabel for Custom Context Menuccm_copy_activitySao chép hoạt độngLabel for Custom Context Menuccm_paste_activityDán hoạt độngLabel for Custom Context Menuccm_piTính năng kiểm tra...Label for Custom Context Menuccm_author_activityhelpGiúp soạn bàiLabel for Custom Context Menuws_dlg_descriptionMô tảLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateKhôngDrop down default for gate typepi_daysNgàyDays label in property inspector for gate toolcv_close_return_to_ext_srcĐóng và quay trở lại {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/zh_CN_dictionary.xml 12 Jan 2010 01:19:49 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_autosave_rec_msg你将要恢复上一个丢失的或没保存的设计。你的当前设计会被清除。继续吗?chosen_grp_lbl在监视器中选择to_conditions_dlg_range_lbl范围sched_act_lbl计划cv_autosave_rec_title警告synch_act_lbl同步mnu_file_recover恢复tk_title活动工具箱act_tool_title活动工具箱al_alert提示al_cancel取消al_confirm确认al_ok确定cv_invalid_design_saved虽然已被保存,但设计不再有效,请点击“潜在问题”查看是什么错了?app_chk_themeload主题还没有被加载app_fail_continue程序无法继续。请联系技术支持人员license_not_selected当前没有选择许可证-请选一个。copy_btn复制pi_min_act最小{0}cv_invalid_trans_target您不能创建到该对象的链接cv_show_validation问题pi_runoffline离线活动db_datasend_confirm感谢您发送数据到服务器delete_btn删除gate_btngroup_btngrouping_act_title分组ld_val_activity_column活动ld_val_done完成ld_val_issue_column问题ld_val_title验证问题ws_chk_overwrite_resource警告:您正试图改写这个序列!mnu_edit编辑mnu_edit_copy复制mnu_edit_cut剪切mnu_edit_paste粘贴mnu_edit_redo重做mnu_edit_undo回退mnu_file文件mnu_file_close关闭mnu_file_new新建mnu_file_open打开mnu_file_save保存ws_tree_orgs我的组mnu_help帮助to_conditions_dlg_defin_item_header_lbl[选择输出] mnu_tools工具mnu_tools_opt创建可选活动mnu_tools_prefs偏好mnu_tools_trans创建链接new_btn新建new_confirm_msg您确定要清除屏幕上的设计吗?none_act_lblopen_btn打开optional_btn可选活动paste_btn粘贴perm_act_lbl权限pi_activity_type_gate门活动pi_activity_type_grouping分组活动to_conditions_dlg_from_lbl起始值pi_end_offset关闭门pi_group_type分组类型pi_hours小时pi_lbl_currentgroup当前分组pi_lbl_desc描述pi_lbl_group分组pi_lbl_title标题to_conditions_dlg_to_lbl结束值al_group_name_invalid_existing组名必须唯一pi_mins分钟cv_autosave_err_msg试图自动保存你的设计时发生了一个错误。请增加Flash Player存储设置。app_chk_langload语言数据没有加载pi_optional_title可选活动cv_valid_design_saved祝贺! -设计有效并且已被保存。pi_start_offset打开门pi_title属性prefix_copyof副本prefs_dlg_cancel取消prefs_dlg_lng_lbl语言prefs_dlg_ok确定prefs_dlg_theme_lbl主题prefs_dlg_title偏好preview_btn预览property_inspector_title属性random_grp_lbl随机rename_btn重命名save_btn保存trans_btn链接trans_dlg_cancel取消trans_dlg_gate同步trans_dlg_gatetypecmb类型trans_dlg_ok确定trans_dlg_title链接ws_Rootws_click_folder_file请选择文件夹保存,或者一个设计去覆盖它ws_copy_same_folder源和目标文件夹相同ws_dlg_cancel_button取消ws_dlg_filename文件名ws_dlg_location_button位置ws_dlg_ok_button确定ws_dlg_open_btn打开ws_dlg_properties_button属性ws_dlg_save_btn保存ws_dlg_title工作空间ws_newfolder_cancel取消ws_newfolder_ins请输入新文件夹名ws_newfolder_ok确定ws_no_permission对不起,您没有权限写入该资源ws_rename_ins请输入新名称ws_tree_mywsp我的工作空间mnu_help_abt关于LAMSws_view_license_button视图pi_definelater在监视器中定义sys_error_msg_start系统错误如下:sys_error_msg_finish您可能需要重新启动LAMS设计面板。您想保存下面的信息来帮助解决问题吗?sys_error系统错误al_send发送al_activity_copy_invalid对不起!在点击复制按钮前,你必需选中这个活动。opt_activity_title可选活动ws_license_lbl许可证ws_license_comment_lbl附加的许可证信息al_cannot_move_activity对不起,您不能移动该活动prefix_copyof_count({0})的复制ws_save_folder_invalid您不能把设计保存在该文件夹,请选择子文件夹ws_click_file_open请点击要打开的设计cv_invalid_optional_activity在设置它为可选活动前,移除它前后的连接cv_trans_target_act_missing该连接缺少后置活动pi_num_groups组数cv_gateoptional_hit_chk您可以把门活动设为一个可选活动cv_invalid_trans_target_from_activity从{0}开始的连接已经存在cv_invalid_trans_target_to_activity到达{0}的连接已经存在cv_design_unsaved画布上的设计已经改变。不保存而继续吗?mnu_file_exit退出cv_design_export_unsaved您必须先保存再导出mnu_file_export导出ws_chk_overwrite_existing该文件夹已经包含一个名为{0}的文件ws_no_file_open找不到文件branch_btn分支flow_btnmnu_file_import导入ws_click_virtual_folder无法使用该文件夹pi_parallel_title并行活动cv_invalid_trans_circular_sequence设计中不允许存在环路cv_activity_cut_invalid对不起!你不允许剪切这个子活动。mnu_file_saveas另存为...to_conditions_dlg_title_lbl创建输出条件ws_del_confirm_msg你确信你想删除这个文件/文件夹吗?cv_activity_copy_invalid对不起!你不允许复制这个子活动。al_activity_openContent_invalid对不起!在你点击活动右键菜单中的打开/编辑活动内容选项之前,你必需选中这个活动。close_mc_tooltip最小new_btn_tooltip清除当前序列,重置工作空间以供使用copy_btn_tooltip复制选定的活动paste_btn_tooltip粘贴选定的活动trans_btn_tooltip用这个钢笔图标来创建活动之间的链接(或按CTRL键)optional_btn_tooltip创建一组可选择的活动branch_btn_tooltip创建一个分支(在LAMS v 2.1版本中可用)group_btn_tooltip创建一个分组活动bin_tooltip将一个活动拖到这个垃圾箱,从而将它从活动序列中移除cv_activity_dbclick_readonly你不能编辑只读设计的工具。请保存设计的复本后再试。cv_readonly_lbl只读open_btn_tooltip显示文件对话框,打开一个活动序列save_btn_tooltip快速保存当前活动序列gate_btn_tooltip创建一个停止点flow_btn_tooltip创建流式控制活动preview_btn_tooltip预览你的序列,就象学习者将看到的样子al_empty_design对不起,你不能保存一个空的设计。ws_entre_file_name请输入该设计的名称,然后点击“保存”按钮。cv_activity_helpURL_undefined不能找到关于{0}的帮助页面cv_untitled_lbl无标题-1ws_file_name_empty对不起!你不能保存一个没有文件名的设计。pi_days日期mnu_help_help创建者帮助ccm_author_activityhelp创建活动帮助ccm_open_activitycontent打开/编辑活动内容ccm_copy_activity复制活动ccm_paste_activity粘贴活动ccm_pi属性检查者...ws_dlg_description描述trans_dlg_nogatecv_close_return_to_ext_src关闭并回到 {0}cv_eof_changes_applied更改成功.mnu_file_apply_changes应用所做的更改validation_error_transitionNoActivityBeforeOrAfter连接之前或之后必须要有一个活动validation_error_activityWithNoTransition一个活动必须要有一个输入或输出连接validation_error_inputTransitionType1该活动没有输入连接validation_error_inputTransitionType2没有活动正在丢失他们的输入连接.validation_error_outputTransitionType1该活动没有输出连接validation_error_outputTransitionType2没有活动正在丢失他们的输出连接。cv_invalid_design_on_apply_changes不能应用更改. 一个或多个连接丢失。apply_changes_btn应用更改apply_changes_btn_tooltip将更改应用到设计并回到监视课程。cancel_btn取消cv_activity_readOnly活动不能为{0}. 该活动是只读的。cv_edit_on_fly_lbl灵活编辑cv_element_readOnly_action_del移去cv_element_readOnly_action_mod修改cv_eof_finish_invalid_msg为了完成编辑,设计必须是有效的。cv_eof_finish_modified_msg警告:您的设计已经修改了,是否不保存而直接关闭?cv_trans_readOnly连接不能为{0}. 连接目标是只读的。cancel_btn_tooltip回到监视课程。mnu_file_finish完成about_popup_title_lbl关于 - {0}about_popup_version_lbl版本branch_mapping_dlg_condition_col_value_max大于或等于{0}about_popup_license_lbl该软件是一个自由软件; 您可以重新发布并/或修改它,前提是您必须遵守自由软件组织发布的准则。stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_title分支tool_branch_act_lbl学习者的输出groupnaming_dialog_instructions_lbl点击一个名称来改变其值。pi_branch_tool_acts_lbl输入branch_mapping_no_branch_msg没有被选择的分支。al_done完成condmatch_dlg_cond_lst_lbl条件condmatch_dlg_title_lbl分支的匹配条件pi_defaultBranch_cb_lbl默认to_conditions_dlg_add_btn_lbl+增加to_conditions_dlg_clear_all_btn_lbl全部清除to_conditions_dlg_remove_item_btn_lbl—移去branch_mapping_dlg_branch_col_lbl分支branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblbranch_mapping_no_mapping_msg没有选择图。branch_mapping_no_condition_msg没有选择条件。branch_mapping_auto_condition_msg所有现存的条件将会出现在默认的分支上。branch_mapping_dlg_match_dgd_lblbranch_mapping_dlg_condition_col_value范围{0}到{1}branch_mapping_dlg_condition_col_value_exact{0}的精确值pi_mapping_btn_lbl安装图pi_define_monitor_cb_lbl在监视器中定义groupmatch_dlg_title_lbl分支的图组branch_mapping_no_groups_msg没有选择组。group_branch_act_lbl基于组branch_mapping_dlg_branches_lst_lbl分支groupmatch_dlg_groups_lst_lblgroupnaming_dlg_title_lbl组命名pi_activity_type_branching分支活动pi_branch_type分支类型pi_group_naming_btn_lbl名称组sequence_act_title序列chosen_branch_act_lbl教师选择to_condition_start_value开始值to_condition_end_value结束值to_condition_invalid_value_range{0}不在目前条件下的范围中。to_condition_invalid_value_direction{0}不能大于{1}。is_remove_warning_msg警告:该课程将要被移去。您想把该课程保留为{0}吗?al_continue继续branch_mapping_dlg_condition_linked_msg{0}链接到一个已经存在的分支上,您要继续吗?branch_mapping_dlg_condition_linked_all有条件的branch_mapping_dlg_condition_linked_single此条件是opt_activity_seq_title可选序列act_seq_lock_chk在将该活动加入到可选序列之前,请将该可选序列解锁。to_condition_untitled_item_lbl无标题{0}redundant_branch_mappings_msg该设计包含将要被移去的未知的分支图,您想要继续吗?cv_activityProtected_activity_remove_msg要移去请不要将活动选择为{0}。pi_optSequence_remove_msg移去序列有可能会删除一些活动。您确信要移去这些序列吗?pi_no_seq_act无序列lbl_num_sequences{0}-序列activityDrop_optSequence_error_msg请将此活动移到某个序列中。cv_invalid_optional_seq_activity_no_branches在将{0}添加到一个可选序列之前,请移去与{0}相连的任何分支。ta_iconDrop_optseq_error_msg此容器中没有活动的序列。cv_invalid_optional_seq_activity在将{0}放到一个可选序列之前,请移去所有和{0}相连的链接。cv_invalid_optional_activity_no_branches在将{0}放到一个可选序列之前,请移去所有和{0}相连的分支。cv_activityProtected_activity_link_msg{0}链接到{1}上。cv_activityProtected_child_activity_link_msg{0}有一个链接到{1}的子链。optional_act_btn活动optional_seq_btn序列optional_seq_btn_tooltip创建一组可选序列。pi_optSequence_remove_msg_title正在移去序列。to_conditions_dlg_lt_lbl小于或等于branch_mapping_dlg_condition_col_value_min小于或等于{0}pi_act活动pi_seq序列about_popup_copyright_lbl© 2002-2008 {0} 基金。to_conditions_dlg_defin_item_fn_lbl{0} ({1})sequence_act_title_new{0} {1}to_conditions_dlg_defin_long_type范围to_conditions_dlg_defin_bool_type正确/错误to_conditions_dlg_condition_items_name_col_lbl名称to_conditions_dlg_condition_items_value_col_lbl条件to_conditions_dlg_options_item_header_lbl【选项】to_conditions_dlg_gte_lbl大于或等于to_conditions_dlg_lte_lbl小于或等于groupnaming_dialog_col_groupName_lbl组名称mnu_file_insertdesign插入/合并ws_dlg_insert_btn插入branch_mapping_dlg_branch_item_default{0}(默认)pi_group_matching_btn_lbl把组匹配到分支refresh_btn刷新pi_tool_output_matching_btn_lbl把条件匹配到分支al_activity_paste_invalid对不起,您不能粘贴这种类型的活动。to_conditions_dlg_condition_items_update_defaultConditions您将要更新您选定的输出定义的条件,这将要清除所有现存分支的链接,是否继续?branch_mapping_dlg_condtion_items_update_defaultConditions_zero因为没有发现用户定义条件,无法更新。可能需要在工具编写页面给予定义。to_conditions_dlg_defin_user_defined_type用户定义pi_branch_tool_acts_default--选项-- grouping_invalid_with_common_names_msg不能保存设计,因为组活动'{0}'有多于一组带有相同名字,请检查组后再试。preview_btn_tooltip_disabled要“预览”序列,需要先保存,然后点击“预览”condmatch_dlg_message_lbl通过点击期望分支属性区“默认”复选框,默认分支能被选中。cv_invalid_trans_diff_branches在不同分支上的活动之间不能创建过渡。cv_invalid_branch_target_to_activity到{0}的分支已经存在。cv_invalid_branch_target_from_activity从{0}发出的分支已经存在。cv_invalid_trans_closed_sequence不能连接一个新的过渡到封闭序列上。al_group_name_invalid_blank组名不能为空。al_cannot_move_to_diff_opt_seq在可选序列中移动的一个活动到不同序列,首先把活动拖出可选序列区,然后点击并拖动该活动到可选序列的新位置。cv_design_insert_warning一旦插入另一个序列后就无法取消这个行为——老序列在新序列插入式自动保存了。要回到老序列,需要先手工删除全部新序列活动,然后保存。要保留当前序列不变,点击“取消”。否则,点击“确定”选择一个序列插入。pi_max_act最大{0}pi_no_grouping无分组act_lock_chk在设定这个活动为可选之前,请先解除这个可选活动容器的锁定。lbl_num_activities{0} -活动pi_activity_type_sequence序列活动({0}) pi_condmatch_btn_lbl创建条件about_popup_trademark_lbl{0}是{0}基金( {1} )的注册商标。pi_num_learners学习者编号learner_choice_grp_lbl学习者的选择pi_equal_group_sizes组大小相同competence_editor_dlg权限编辑competences_lbl权限competence_editor_add_competence_btn添加权限competence_def_dlg权限定义对话框competence_editor_warning_title_exists该名称的权限已经存在competence_editor_warning_title_blank权限名称不能为空competence_editor_warning_competence_mapped你试图删除的权限目前正被映射到一个或多个活动。删除这个权限将会移除它的映射。你确定要继续吗?map_comptence_btn权限映射competence_mappings_btn权限——活动competences_mapped_to_act_lbl映射到一个活动的所有权限map_gate_conditions_btn条件——闸门状态(开/关)gate_mapping_auto_condition_msg剩下的所有条件将被映射到选定的关闭状态的闸门gate_open开门gate_closed关门al_activity_view_competence_mappings_invalid请确定您在查看权限映射之前已经选定了一个活动ws_dlg_date_modified_lbl最后修改时间ws_save_title_reserved_chars标题中不能含有特殊字符mnu_file_import_community从LAMS社区输入support_act_btn支持arrange_act_btn安排活动support_act_title支持活动view_students_before_selection在选择之前浏览学习者support_act_btn_tooltip创建可选择的支持活动的集合gradebook_output_type成绩册输出support_msg_no_connection支持的此活动与其它活动没有联系support_msg_invalid_child次活动类型{0}不能被添加为所支持的活动support_msg_max_children_reached不能从{0}删除活动。此支持的活动允许最大数量的{1}子活动support_msg_cannot_be_child不能删除一个支持的活动,如果此活动已经包含在另外一个活动中grp_chk_clear_branch_mappings警告:此操作将会清除已经存在的、与此组活动有关在分支地图的所有组,确定要继续吗? \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/authoring/zh_TW_dictionary.xml 12 Jan 2010 01:19:50 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_invalid_optional_seq_activity_no_branches在將{0}添加到一個可選編程之前,請移除與{0}相連的任何分支Alert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msg此內容中沒有活動的編程Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_copyright_lbl2002-2009{0}基金會Label displaying copyright statement in About dialog.cv_invalid_optional_seq_activity將{0}放到一個選澤編程之前,請移去所有和{0}相連的鏈結。Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branches將{0}放到一個選澤編程之前,請移去所有和{0}相連的分支。Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_title選擇編程Title for Optional Sequences Container.to_conditions_dlg_lt_lbl小於或等於Less than option for long type conditions.branch_mapping_dlg_condition_col_value_min小於或等於{0}Value for Condition field in mapping datagrid when Less than option is selected.pi_act活動Min and max label postfix when an Optional Activity is selected.pi_seq編程Min and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_type範圍Type description for a long-value based ouput definition.to_conditions_dlg_defin_bool_type真/假Type description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[選擇輸出]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lbl名稱Column header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lbl狀態Column header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[選項]Header label value (first index) for tool long (range) options drop-down.about_popup_trademark_lbl{0}是{0}基金會的註冊商標({1})Label displaying the trademark statement in the About dialog.sequence_act_title_new{0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.ws_dlg_insert_btn插入Button label on Workspace in INSERT mode.close_mc_tooltip最小化Tooltip message for close button on Branching canvas.to_conditions_dlg_gte_lbl大於或等於Greater than or equal toto_conditions_dlg_lte_lbl小於或等於Less than or equal togroupnaming_dialog_col_groupName_lbl群組名稱Column label for editable datagrid in Group Naming dialog.mnu_file_insertdesign插入/合併Menu item label for Inserting a Learning Design.branch_mapping_dlg_branch_item_default{0}(預設)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.ld_val_activity_column活動The heading on the activity in the ValidationIssuesDialogpi_group_matching_btn_lbl分配群組到分支Button in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lbl分配狀態到分支Button in author that allows you to match conditions to branches for tool-output based branchingrefresh_btn重新整理Button label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditions您將要更新您選定的輸出定義的條件,這將要清除所有現存分支的鏈結,是否繼續?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zero因為沒有發現使用者定義條件,無法更新。可能需要在工具編寫頁面給予定義。Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_type使用者定義Type description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msg不能保存設計,因為組活動'{0}'有多於一組帶有相同名字,請檢查組後再試。Alert message displayed when the Grouping validation fails during saving a design.trans_dlg_title鏈接Title for the transition properties dialogact_tool_title活動工具箱Title for Activity Toolkit Panelal_alert提示Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm確認To Confirm title for LFErroral_ok確定OK on the alert dialogapp_chk_langload語言資料尚未載入message for unsuccessful language loadingapp_chk_themeload主題資料尚未載入message for unsuccessful theme loadingapp_fail_continue應用程式無法繼續,請聯繫支援窗口message if application cannot continue due to any errorcopy_btn複製Toolbar &gt; Copy Buttoncv_invalid_trans_target您不能建立轉移於這個物件Error message for when transition tool is dropped outside of valid target activitycv_show_validation議題The button on the confirm dialogdb_datasend_confirm謝謝傳送資料至伺服器Message when user sucessfully dumps data to the serverdelete_btn刪除Label for Delete buttongate_btnToolbar &gt; Gate Buttongroup_btn小組Toolbar &gt; Group Buttongrouping_act_title分組Default title for the grouping activityld_val_done完成The button label for the dialogld_val_issue_column議題The heading on the issue in the ValidationIssuesDialoglicense_not_selected目前沒有選定任何授權 - 請選擇一項Shown if no license is selected in the drop down in workspacemnu_edit編輯Menu bar Editmnu_edit_copy複製Menu bar Edit &gt; Copymnu_edit_paste貼上Menu bar Edit &gt; Pastemnu_edit_redo取消(復原)Menu bar Edit &gt; Redomnu_edit_undo復原Menu bar Edit &gt; Undomnu_file檔案Menu bar Filemnu_file_close關閉Menu bar Closemnu_file_new新增Menu bar Newmnu_file_open開啟Menu bar Openmnu_file_save儲存Menu bar savemnu_file_saveas另存新檔Menu bar Save asmnu_help求助Menu bar Helpmnu_help_abt關於LAMSMenu bar Aboutmnu_tools工具Menu bar Toolsmnu_tools_opt建立選項Menu bar Optionalmnu_tools_trans建立鏈接Menu bar draw transitionnew_btn新增Toolbar &gt; New Buttonnew_confirm_msg您確定要清除螢幕上的設計?Msg when user clicks new while working on the existing designnone_act_lblNo gate activity selectedopen_btn開啟Toolbar &gt; Open Buttonoptional_btn選項Toolbar &gt; Optional Buttonpaste_btn貼上Toolbar &gt; Paste Buttonperm_act_lbl許可Label for permission gate activitypi_activity_type_gate門活動Activity type for gate in PIpi_activity_type_grouping分組活動Activity type for grouping in Property Inspectorpi_end_offset關閉門End offset labelpi_group_type分組類型Property Inspector Grouping type drop downpi_hours小時Hours label in Property Inspectorpi_lbl_currentgroup目前分組Current grouping label for PIpi_lbl_desc描述Description Label for PIpi_lbl_group分組Grouping label for PIpi_lbl_title標題Title label for PIld_val_title確認議題The title for the dialogmnu_edit_cut剪下Menu bar Edit &gt; Cutcv_valid_design_saved恭喜!您的設計是有效的,而且已經儲存好了。Message when a valid design has been savedsave_btn_tooltip快速儲存目前的活動序列tool tip message for save button in toolbarcopy_btn_tooltip複製已選定的活動tool tip message for copy button in toolbarpaste_btn_tooltip貼上已複製的選定活動tool tip message for paste button in toolbartrans_btn_tooltip利用這枝筆在活動之間劃過渡符號(或按CTRL鍵)tool tip message for transition button in toolbaroptional_btn_tooltip建立一組選擇性活動tool tip message for optional button in toolbargate_btn_tooltip建立一個停止點tool tip message for gate button in toolbarbranch_btn_tooltip建立一個分支(限於LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltip建立流程控制活動tool tip message for flow button in toolbargroup_btn_tooltip建立一個分組活動tool tip message for group button in toolbarpreview_btn_tooltip以學習者身份預覽活動序列時將看到它Tool tip message for preview button in toolbaral_activity_copy_invalid抱歉!您必須先點選活動名稱,再按〈複製〉鈕Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasccm_open_activitycontent開啟/編輯活動內容Label for Custom Context Menuccm_copy_activity複製活動Label for Custom Context Menuccm_paste_activity貼上活動Label for Custom Context Menuccm_pi屬性檢閱Label for Custom Context Menumnu_file_exit結束File Menu Exital_activity_openContent_invalid抱歉!您必須先選擇活動,才能按開啟/編輯活動內容功能alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_design_export_unsaved您不能匯出為儲存的設計Alert message when trying to export can unsaved design.mnu_file_export匯出Menu bar Exportcv_close_return_to_ext_src關閉並回到 {0}Button label used on close and return button in save confirm message popup.pi_mins分鐘Mins label in teh property inspectorpi_no_groupingCombo title for no groupingpi_optional_title選擇性活動Title for oprional activity property inspectorpi_start_offset開啟門Start offset labelpi_title屬性On the title bar of the PIprefix_copyof副本Prefix for copy paste command for canvas activitiesprefs_dlg_cancel取消6prefs_dlg_lng_lbl語言7prefs_dlg_ok確定5prefs_dlg_theme_lbl主題8preview_btn預覽Toolbar &gt; Preview Buttonproperty_inspector_title屬性On the title bar of the PIrandom_grp_lbl隨機Label for the grouping drop down in the PropertyInspectorrename_btn重新命名Label for Rename Buttonsave_btn儲存Toolbar &gt; Save buttonsched_act_lbl時程Label for schedule gate activitysynch_act_lbl同步化Used as a label for the Synch Gate Activity Typetk_title活動工具箱Label for Activities Toolkit Paneltrans_btn鏈接Toolbar &gt; Transition Buttontrans_dlg_cancel取消Cancel button on transition dialogtrans_dlg_gate同步Header for the transition props dialogtrans_dlg_gatetypecmb類型Gate type combo labeltrans_dlg_ok確定OK Button on transition dialogws_Root根目錄Root folder title for workspacews_chk_overwrite_resource警告:您正要覆寫此系列ws_click_folder_file請點選一個要儲存的檔案夾,或欲覆寫的設計Error msg if no folder or file is selectedws_copy_same_folder來源與目的檔案夾相同The user has tried to drag and drop to the same placews_dlg_cancel_button取消2ws_dlg_filename檔案名稱Label for File name in workspace windowws_dlg_location_button位置Workspace dialogue Location btn labelws_dlg_ok_button確定Wsp Dia OK Button labelws_dlg_open_btn開啟Wsp Dia Open Button labelws_dlg_properties_button屬性Workspace dialogue Properties btn labelws_dlg_save_btn儲存Wsp Dia Save Button labelws_dlg_title工作空間0ws_newfolder_cancel取消Cancel on the new folder name diaws_newfolder_ins請輸入新的檔案夾名稱Instructions on the new name pop upws_newfolder_ok確定OK on the new folder name diaws_no_permission抱歉!您沒有寫入許可Message when user does not have write permission to complete actionws_rename_ins請輸入新的名稱Message of the new name for the userws_tree_mywsp我的工作空間The root level of the treews_tree_orgs我的小組Shown in the top level of the tree in the workspacews_view_license_button檢視To show the license to the usersys_error_msg_start發生以下系統錯誤Common System error message starting linesys_error_msg_finish您可能需要重新啟動LAMS Author 繼續編寫工作。您是否要儲存以下關於錯誤的訊息以幫助解決這個問題Common System error message finish paragraphsys_error系統錯誤System Error elert window titleal_send送出Send button label on the system error dialogpi_daysDays label in property inspector for gate toolopt_activity_title選擇性活動Title for Optional Activity Containerws_license_lbl授權Label for Licence drop down on workspace properties tab viewws_license_comment_lbl額外的授權資訊Label for Licence Comment description below license drop downal_cannot_move_activity抱歉!您不能移動這個活動Alert message when user tries to move child activity of any parallel activitymnu_help_help編寫說明label for menu bar Help - Authoring Help optionccm_author_activityhelp編寫活動說明Label for Custom Context Menuws_del_confirm_msg您真的要刪除這個檔案/檔案夾?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_open請點選欲開啟的活動Alert message if folder tried to be opened.cv_invalid_optional_activity設定為選擇性活動之前,要先移除{0} 的過渡Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missing過渡的第二個活動不見了Error message when target activity for transition is missingpi_num_groups小組數目Number of groups in Property inspectorcv_activity_copy_invalid抱歉,您不能複製這個子活動Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalid抱歉!您不能剪去這個子活動Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activity過渡到{0} 已經存在Error message when a transition to the activity already existcv_design_unsaved畫布上的設計已經改變。不儲存而繼續嗎? Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltip清除目前序列,重設工作空間備用Tool tip message for new button in toolbaropen_btn_tooltip顯示檔案對話框以開啟活動序列Tool tip message for open button in toolbarws_chk_overwrite_existing這個檔案夾已經包含一個稱為{0}的檔案Alert message when saving a design with the same filename as an existing design.ws_no_file_open找不到檔案Alert message if no matching file is found to open in selected folder of Workspace.branch_btn分支Label for disabled Branch button shown as submenu for flow button in Toolbarflow_btn流程Label for Flow button in Toolbarmnu_file_import匯入Menu bar Importws_click_virtual_folder不能使用這個檔案夾Alert message for trying to use a virtual folder to save/open a file.pi_parallel_title平行活動Title for parallel activity property inspectorcv_invalid_trans_circular_sequence不允許有迴圈存在 Error message when a transition from one activity to another is creating a circular loopbin_tooltip將一個活動拖到這個垃圾箱,從而將它從活動序列中移除 Tool tip message for canvas bincv_gateoptional_hit_chk您不能加入一個門活動當作選擇性活動Error message when user drags gate activity over to optional containerprefix_copyof_count({0}) 的副本Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalid您不能儲存設計於這個檔案夾,請選擇一個合法的次檔案夾Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activity從{0}的過渡已經存在Error message when a transition from the activity already existws_entre_file_name請輸入設計名稱,然後按〈儲存〉鈕Error message when user try to save a design with no file namecv_activity_helpURL_undefined找不到{0}的求助網頁Alert message when a tool activity has no help url defined.ws_dlg_description描述Label for description in Workspace dialog - Properties tabtrans_dlg_nogateDrop down default for gate typecv_activity_dbclick_readonly您不能編輯唯讀設計的工具,請儲存一份設計副本再嘗試看看!Alert message when double-clicking an Activity in an open read-only designcv_readonly_lbl唯讀Label for top left of canvas shown when a read-only design is open.ws_file_name_empty抱歉!您不能儲存設計如果沒有檔案名稱Error message when user try to save a design with no file namecv_untitled_lbl無標題-1Label for Design Title bar on canvasal_empty_design抱歉!您不能儲存空的設計alert message when user want to save an empty designcv_autosave_rec_msg您只能恢復最後失掉或未儲存設計,您目前的設計將被清除,要繼續?Message informing users that they have recovered data for a design.cv_autosave_rec_title警告Alert title for auto save recovery message.mnu_file_recover恢復Menu bar Recoveral_activity_paste_invalid你無法貼上這類的活動Alert message when user is attempting to paste a unsupported activity type.to_conditions_dlg_from_lblLabel for start value in condition range for long or numeric output values.about_popup_license_lbl這個軟體是自由軟體;在自由軟體基金會GNU一般公共授權版本2的規範下,你可以分送或修改。Label displaying the license statement in the About dialog.preview_btn_tooltip_disabled要預覽序列,需要先保存,然後按下預覽Tool tip message for preview button in toolbar when button is disabled.stream_reference_lbl學習活動管理系統Reference label for the application stream.gpl_license_url www.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_title分支Label for Branching Activityto_conditions_dlg_to_lblLabel for end value in condition range for long or numeric output values.cv_activityProtected_activity_remove_msg要移除請取消選取這個活動如{0}Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg這個{0}連結到一個{1}Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg這個{0}有個子項連結到{1}Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_max大於或等於{0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btn活動Toolbar button for Optional Activity.optional_seq_btn編程Toolbar button for Sequences within Optional Activity.mnu_file_apply_changes使用改變參數Apply Changesoptional_seq_btn_tooltip建立一套選擇性編程Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_title移除編程Removing sequencespi_optSequence_remove_msg移除的編程包含活動將被刪除。你要移除編程嗎?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_act編成的號碼Label on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0}-編程Label to describe the amount of sequences in the container.activityDrop_optSequence_error_msg請將此活動移至其中ㄧ個編程Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.condmatch_dlg_message_lbl通過點擊分支屬性區“預設"選取方塊,預設分支可被選中Label for a message in the Condition to Branch matching dialog.cv_design_insert_warning一旦插入另一個編程後就無法取消——舊編程在新編程插入時自動保存了。要回到舊編程,需要先手動刪除全部新編程活動,然後保存。要保留當前編程不變,按下“取消”。否則,點擊“確定”選擇一個編程插入。Warning message when merge/insertpi_defaultBranch_cb_lbl預設CheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ 增加Label for button to add a condition.to_conditions_dlg_clear_all_btn_lbl清除全部Label for button to clear all conditions.act_seq_lock_chk在指定活動給選擇編程前請先解除操作編程內容Alert Message if user drags the activity to locked optional sequences container.branch_mapping_dlg_condition_linked_single這個狀況是Phrase used at start of linked conditions alert message when clearing a single entry.cv_eof_changes_applied更改已成功設定Changes have been successful applied.validation_error_transitionNoActivityBeforeOrAfter轉場之間必須要有一個活動事件A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransition一個活動事件必須要有一個輸入或輸出的轉場An activity must have an input or output transitionvalidation_error_inputTransitionType1這個活動事件沒有輸入轉場This activity has no input transitionvalidation_error_inputTransitionType2沒有任何活動事件遺漏輸入轉場No activities are missing their input transition.validation_error_outputTransitionType1這個活動事件沒有輸入轉場This activity has no output transitionvalidation_error_outputTransitionType2沒有任何活動事件遺漏輸出轉場No activities are missing their output transition.cv_invalid_design_on_apply_changes無法更改。一個或多個轉場遺漏Cannot apply changes. There are one or more transitions missing.apply_changes_btn套用更改Apply Changesapply_changes_btn_tooltip套用設計更改並回到監督課程tool tip message for save button in toolbarcancel_btn取消Toolbar - Cancel Buttoncv_activity_readOnly活動事件不可為{0}。這個活動事件為唯讀。 Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lbl即時編輯Label for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_del移除Action label for read only alert message for a Canvas Transition.cv_element_readOnly_action_mod修改Action label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msg設計必須有效以便完成編輯Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msg警告:你的設計已經被更改,你要放棄儲存並關閉嗎?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnly轉場不能為{0}。轉場目標為唯讀。Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltip回到監督課程tool tip message for cancel button in toolbar (edit mode)mnu_file_finish完成Menu bar File - Finish (Edit Mode)about_popup_title_lbl關於-{0}Title for the About Pop-up window.pi_activity_type_sequence編程活動({0})Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lbl按其中ㄧ個名字去更改它的值Instructions for Group Naming dialog.pi_branch_tool_acts_lbl輸入(工具)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.branch_mapping_no_branch_msg未選取分支Alert message when adding a Mapping without a Branch (Sequence) being selected.al_done完成Label for dialog completion button.to_conditions_dlg_remove_item_btn_lbl移除Label for button to remove condition.to_conditions_dlg_range_lbl範圍Heading label for section in the dialog to set numeric condition range.pi_condmatch_btn_lbl建立狀態Label for button to open dialog to create output conditions.to_conditions_dlg_title_lbl建立輸出狀態Dialog title for creating new tool output conditions.condmatch_dlg_cond_lst_lbl狀態Label for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lbl配對狀態到分支Dialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl狀態Column heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lbl群組Column heading for showing group name of the mapping.branch_mapping_no_mapping_msg沒有選擇映圖Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msg沒有選擇狀態Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msg所有剩下的狀態將會映圖到預設的分支Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lbl映圖Heading label for Mapping datagrid.branch_mapping_dlg_condition_col_value範圍{0}到{1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exact{0}的正確值Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lbl設定映圖Label for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lbl定義在監督畫面Checkbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lbl對應群組到分支Map Groups to Branchesbranch_mapping_no_groups_msg沒有選擇群組Alert message when adding a Mapping without a Group being selected.group_branch_act_lbl群組基礎Branching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lbl分支Label for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lbl群組Label for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lbl群組命名Title label for Group Naming dialog.pi_activity_type_branching分支活動Activity type for Branching in Property Inspector.pi_branch_type分支類別Property Inspector Branching type drop down.pi_group_naming_btn_lbl命名群組Label for button that opens Group Naming dialog.sequence_act_title編序Default title for Sequence Activity.tool_branch_act_lbl學習者輸出Branching type label for Tool output Branching.chosen_branch_act_lbl教師選擇Branching type label for Teacher choice Branching.to_condition_start_value起始值Value representing the min boundary value of the conditions range.to_condition_end_value結束值Value representing the max boundary value of the conditions value.to_condition_invalid_value_range這項{0}不可在已存在狀況的範圍內Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction這個{0}不可大於{1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msg警告:這個課程將移除。你是否要保留課程為{0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continue繼續Continue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0}連結到既有的分支。你要繼續嗎?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_all有些狀態Phrase used at start of linked conditions alert message when clearing all.pi_branch_tool_acts_default--選項-- Default item label for Input Tool dropdown list.cv_invalid_trans_diff_branches無法在不同分支活動間建立轉場Error message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activity分支到{0}已經存在Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activity分支從{0}已經存在Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequence無法連接到新的轉場道已經關閉的編程Error message displayed after drawing a transition from an activity in a closed sequence.al_group_name_invalid_blank群組名稱不可為空白Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existing群組名稱必須為不同Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different grouplearner_choice_grp_lbl學習者的選擇A type of grouping where the learner picks which group they'd like to be incompetence_editor_dlg能力編輯Dialog for adding/editing/removing competencescompetences_lbl能力Label in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btn加入Add competence buttoncompetence_def_dlg能力定義對話框Title for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_exists含有標題的能力{0}已經存在Warning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blank此能力標題不可為空白Warning message when you try to define a competence with a blank competence titlemap_comptence_btn映圖到能力Label for button that invokes the Competence Mappings dialogcompetence_mappings_btn能力映圖Title for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lbl能力Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btn映圖入口情形Button to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msg所有其他的狀態將會映圖到選取的入口關閉狀況Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_open開啟Open state for gate activity, allows learners to pass through itgate_closed關閉Closed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalid再檢視完整映圖前請確認你已經選取一項活動Warning that appears when no activity is selected when the user tries to view competence mappingsws_dlg_date_modified_lbl最後更正:{0}Show the last modified datetime of the selected design in the workspacews_save_title_reserved_chars標題不可包含特殊字元Error alert when trying to save with a title containing illegal characters.pi_equal_group_sizes群組大小相同Checkbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalal_cannot_move_to_diff_opt_seq在可選編程中移動的一個活動到不同編程,首先把活動拖出可選編程區,然後按下並拖動該活動到可選編程的新位置。Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitycompetence_editor_warning_competence_mapped你試圖刪除的許可權目前正被映射到一個或多個活動。刪除這個許可權將會移除它的映射。你確定要繼續嗎?Warning message when you attempt to delete a competence that is mapped to one or more activities.act_lock_chk請先打開選擇性活動容器,才能將活動設為選擇性活動Alert Message if user drags the activity to locked optional activity container cv_invalid_design_saved您的設計尚未有效,但已經儲存,請按'議題'鈕查明錯誤處Message when an invalid design has been savedmnu_tools_prefs偏好Menu bar preferenceschosen_grp_lbl選擇被監視中Label for the grouping drop down in the PropertyInspectorlbl_num_activities{0}-活動replacement for word activitiespi_definelater之後再定義Label for Define later for PIpi_min_act最小活動或編程{0}Label for minimum Activities or Sequencesprefs_dlg_title偏好4pi_max_act最大活動數{0}Label for maximum Activities or Sequencesto_condition_untitled_item_lbl未命名The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msg將會移除設計中未使用的分支映圖。你要繼續嗎?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.pi_num_learners學習者數目PI Num learners labelpi_runoffline離線活動Label for Run Oflinecv_autosave_err_msg自動儲存設計時發生錯誤,如果錯誤一直發生,請增加你的Flash播放器的儲存設定。Alert error message when auto-save fails. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ar_JO_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sp_save_lblاحفظLabel for Save buttonsp_view_tooltipاعرض جميع مدخلات دفتر الملاحظاتtool tip message for view all buttonsp_save_tooltipاحفظ مدخلات دفتر ملاحظاتكtool tip message for save buttonsp_title_lblالعنوانLabel for title field of scratchpad (notebook)sp_panel_lblدفتر الملاحظاتLabel for panel title of scratchpad (notebook)hd_resume_lblتابعLabel for Resume buttonhd_exit_lblخروجLabel for Exit buttonln_export_btnتصديرLabel for Export buttonsys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج الى اعاده بدء نافذه المتصفح للمواصله. هل ترغب بلحفض المعلومات التاليه عن الخطا لمساعدتنا في تحديد المشكله؟ Common System error message finish paragraphsys_errorخطأ في النظامSystem Error alert window titleal_alertتحذيرGeneric title for Alert windowal_cancelالغاءCancel on alert dialogal_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on alert dialogal_validation_act_unreachedلم تصل لهذا النشاط لتفتحهAlert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipاقفز لنشاطك التاليtool tip message for resume buttonhd_exit_tooltipاغلق بيئة المتعلم و نافذة المتصفحtool tip message for exit buttonln_export_tooltipصدر اضافاتك إلى لتصميمtool tip message for export buttoncompleted_act_tooltipانقر مرتين لمراجعة النشاط الكاملtool tip message for completed activity iconcurrent_act_tooltipانقر مرتين للمشاركة في النشاط الحالي tool tip message for current activity iconal_doubleclick_todoactivityعفوا،لم تصل الى هذا النشاط بعدalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblاعرض الكل Label for View All button \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/cy_GB_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblAil-ddechrauLabel for Resume buttonhd_exit_lblGadaelLabel for Exit buttonln_export_btnAllforioLabel for Export buttonsys_error_msg_startMae’r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd angen i chi ail-ddechrau ffenestr y porwr i barhau. Ydych chi eisiau cadw’r wybodaeth ganlynol am y gwall hwn i ddatrys y broblem hon?Common System error message finish paragraphsys_errorGwall SystemSystem Error alert window titleal_alertRhybuddGeneric title for Alert windowal_cancelCansloCancel on alert dialogal_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on alert dialogal_validation_act_unreachedNi allwch agor y Gweithgaredd oherwydd nad ydych wedi ei gyrraedd eto.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipNeidio i’ch gweithgaredd cyfredoltool tip message for resume buttonhd_exit_tooltipGadael Amgylchedd y Dysgwr a chau ffenestr y porwrtool tip message for exit buttonln_export_tooltipAllforio’ch cyfraniadau i’r wers hontool tip message for export buttoncompleted_act_tooltipClicio dwywaith i adolygu’r gweithgaredd gorffenedig hwntool tip message for completed activity iconcurrent_act_tooltipClicio dwywaith i gymryd rhan yn y gweithgaredd cyfredoltool tip message for current activity iconal_doubleclick_todoactivityNid ydych wedi cyrraedd y gweithgaredd hwn etoalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblGweld PopethLabel for View All buttonsp_save_lblCadwLabel for Save buttonsp_view_tooltipGweld pob cofnod nodfwrddtool tip message for view all buttonsp_save_tooltipCadw’ch cofnod nodfwrddtool tip message for save buttonsp_title_lblTeitlLabel for title field of scratchpad (notebook)sp_panel_lblNodfwrddLabel for panel title of scratchpad (notebook)al_timeoutRhybudd! Ni ellir cymhwyso data cynnydd nes bod y llwytho wedi gorffen. Cliciwch Iawn i barhau i lwytho.Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/da_DK_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblFortsætLabel for Resume buttonhd_exit_lblExitLabel for Exit buttonln_export_btnEksportérLabel for Export buttonsys_error_msg_startFølgende systemfejl er opstået:Common System error message starting linesys_error_msg_finishDu skal genstarte browseren for at fortsætte. Ønsker du at gemme følgende information om fejlen med henblik på at løse problemet?Common System error message finish paragraphsys_errorSystem fejlSystem Error alert window titleal_alertNB!Generic title for Alert windowal_cancelAnnullérCancel on alert dialogal_confirmBekræftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedDu kan ikke åbne aktiviteten, da du ikke er nået til den endnu.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipGå til din igangværende aktivitettool tip message for resume buttonhd_exit_tooltipForlad brugerområdet og luk browservinduettool tip message for exit buttonln_export_tooltipEksportér dit bidrag til denne lektiontool tip message for export buttoncompleted_act_tooltipDobbeltklik for at se den gennemførte aktivitettool tip message for completed activity iconcurrent_act_tooltipDobbelklik for at deltage i den igangværende aktivitettool tip message for current activity iconal_doubleclick_todoactivityBeklager, du er ikke nået til denne aktivitet endnualert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVis alleLabel for View All buttonsp_save_lblGemLabel for Save buttonsp_view_tooltipVis alle notertool tip message for view all buttonsp_save_tooltipGem din notetool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotesbogLabel for panel title of scratchpad (notebook)al_timeoutAdvarsel! Yderligere data kan ikke tilføjes før indlæsning er færdig. Klik på "OK" for at fortsætte indlæsningAlert message for timeout error when loading learning design.al_sendSendSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/de_DE_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblWeiterLabel for Resume buttonhd_exit_lblBeendenLabel for Exit buttonln_export_btnExportLabel for Export buttonsys_error_msg_startEs ist ein Systemfehler aufgetreten:Common System error message starting linesys_error_msg_finishStarten Sie den Browser neu, um fortzusetzen. Wollen Sie eine Information über den aufgetretenen Fehler speichern, damit das Problem behoben werden kann?Common System error message finish paragraphsys_errorSystemfehlerSystem Error alert window titleal_alertWarnung, HinweisGeneric title for Alert windowal_cancelAbbrechenCancel on alert dialogal_confirmBestätigenTo Confirm title for LFErroral_okOKOK on alert dialoghd_resume_tooltipDirekt zur derzeitigen Aktivitättool tip message for resume buttonhd_exit_tooltipLernumgebung verlassen und Browserfenster schließentool tip message for exit buttonln_export_tooltipExport Ihrer Beiträge in dieser Lektiontool tip message for export buttoncompleted_act_tooltipDoppelklick für Rückblick auf diese abgeschlossene Aktivitättool tip message for completed activity iconcurrent_act_tooltipDoppelklick zur Teilnahme an der derzeitigen Aktivitättool tip message for current activity iconal_doubleclick_todoactivitySorry, Sie haben diese Aktivität noch nicht erreicht.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblAlle ansehenLabel for View All buttonsp_save_lblSpeichernLabel for Save buttonsp_view_tooltipAlle Notizbucheinträge ansehentool tip message for view all buttonsp_save_tooltipNotizbucheintrag speicherntool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotizbuchLabel for panel title of scratchpad (notebook)al_timeoutHinweis: Die Fortschrittsdaten können nicht angezeigt werden, bevor die Daten verarbeitet wurden. Klicken Sie auf OK um fortzustezen.Alert message for timeout error when loading learning design.al_validation_act_unreachedDiese Aktivität können Sie erst später nutzen.Alert message when clicking on an unreached activity in the progess bar.al_sendSendenSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/el_GR_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_act_reached_maxΟ μέγιστος αριθμός προαιρετικών δραστηριοτήτων έχει ήδη επιτευχθεί.pres_dataproviderloading_lblΦόρτωση παρουσίας ...al_timeoutΠροειδοποίηση!Η πρόοδος των δεδομένων δεν μπορεί να εφαρμοστεί μέχρις ότου να τελειώσει η φόρτωση. Κάντε κλικ στο ΟΚ για να συνεχιστεί η φόρτωσηsp_save_lblΑποθήκευσηhd_resume_lblΕπανάληψηhd_exit_lblΈξοδοςln_export_btnΕξαγωγήal_cancelΑκύρωσηal_confirmΕπιβεβαίωσηal_okΟΚsp_panel_lblΣημειωματάριοal_doubleclick_todoactivityΛυπούμαστε, δεν έχετε τελείωσατε τη δραστηριότητα ακόμηcurrent_act_tooltipΔιπλό κλικ για να συμμετάσχετε στην τρέχουσα δραστηριότηταcompleted_act_tooltipΔιπλο κλικ για την ανασκόπηση αυτης της συμπληρωμένης δραστηριότηταςln_export_tooltipΕξαγωγή της συνεισφοράς σας στο μάθημα αυτόsys_error_msg_startένα ακόλουθο λάθος συστήματος έχει συμβείsys_error_msg_finishΜπορεί να χρειαστείτε επαννεκίνηση του παραθύρου του φυλλομετρητή γαι να συνεχίσετε. Θέλετε να αποθηκεύσετε τις ακόλουθες πληροφορίες για το λάθος αυτό έτσι ώστε α βοηθηθείτε στην επίλυση του προβλήματος;sys_errorΛάθος συστήματοςal_validation_act_unreachedΔεν μπορείτε να ανοίξετε τη Δραστηριότητα αφού δεν έχετε φθάσει ακόμηal_sendΑποστολήsynchronise_gate_tooltipΑυτή η Πόρτα θα ανοίξει μόνο όταν όλοι εκπαιδευόμενοι φθάσουν σε αυτό το σημείο. hd_exit_tooltipΈξοδος από το Περιβάλλον του Εκπαιδευόμενου και κλείσιμο του παραθύρου του φυλλομετρητή ιστού.pres_colnamelearners_lblΕκπαιδευόμενοιsp_view_lblΠροβολή όλωνhd_resume_tooltipΜετάβαση στην τρέχουσα δραστηριότητά σαςschedule_gate_tooltipΑυτή η Πόρτα θα ανοίξει σε {0}.not_attempted_act_tooltipΧρειάζεται να συμπληρώσετε τις δραστηριότητες πριν από αυτή τη δραστηριότητα για να έχετε πρόσβαση σε αυτή. al_alertΕιδοποίησηpermission_gate_tooltipΔεν μπορείτε να περάσετε αυτή την Πόρτα μέχρι να σας αφήσει ο καθηγητής σας. pres_panel_lblΠαρουσίαsp_title_lblΤίτλοςsupport_acts_titleΔραστηριότητες Υποστήριξηςsupport_act_tooltipΚάντε διπλό κλικ για να συμμετάσχετε σε αυτή τη δραστηριότητα υποστήριξηςsp_view_tooltipΠροβολή όλων των καταχωρήσεων του σημειωματαρίουsp_save_tooltipΑποθήκευση της καταχώρησης του σημειωματαρίου σας. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/en_AU_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumehd_exit_lblExitln_export_btnExportal_validation_act_unreachedYou can't open the Activity as you haven't reached it yet.sys_error_msg_startA following system error has occurred:sys_errorSystem Erroral_alertAlertal_cancelCancelal_confirmConfirmal_okOKsys_error_msg_finishYou may need to re-start this browser window to continue. Do you want to save the following information about this error to help fix this problem?hd_resume_tooltipJump to your current activityhd_exit_tooltipExit the Learner Environment and close the browser windowln_export_tooltipExport your contributions to this lessoncompleted_act_tooltipDouble click to review this completed activitycurrent_act_tooltipDouble click to participate in the current activityal_doubleclick_todoactivitySorry, you have not reached this activity yetsp_save_tooltipSave your notebook entrysp_title_lblTitlesp_view_lblView Allsp_save_lblSavesp_view_tooltipView all notebook entriessp_panel_lblNotebooksupport_acts_titleSupport Activitiessupport_act_tooltipDouble click to participate in this support activityal_timeoutWarning! Progress data cannot be applied until loading has finished. Click OK to continue loadingal_sendSendpermission_gate_tooltipYou can't move past this Gate until the teacher releases it.schedule_gate_tooltipThis Gate will be opened on {0}.synchronise_gate_tooltipThis Gate will only be released once all learners reach this point.not_attempted_act_tooltipYou need to complete the activities before this activity to access it.al_act_reached_maxThe maximum number optional activities has already been reached.pres_panel_lblPresencepres_colnamelearners_lblLearnerspres_dataproviderloading_lblLoading presence... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/en_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumehd_exit_lblExitln_export_btnExportal_validation_act_unreachedYou can't open the Activity as you haven't reached it yet.sys_error_msg_startA following system error has occurred:sys_errorSystem Erroral_alertAlertal_cancelCancelal_confirmConfirmal_okOKsys_error_msg_finishYou may need to re-start this browser window to continue. Do you want to save the following information about this error to help fix this problem?hd_resume_tooltipJump to your current activityhd_exit_tooltipExit the Learner Environment and close the browser windowln_export_tooltipExport your contributions to this lessoncompleted_act_tooltipDouble click to review this completed activitycurrent_act_tooltipDouble click to participate in the current activityal_doubleclick_todoactivitySorry, you have not reached this activity yetsp_save_tooltipSave your notebook entrysp_title_lblTitlesp_view_lblView Allsp_save_lblSavesp_view_tooltipView all notebook entriessp_panel_lblNotebooksupport_acts_titleSupport Activitiessupport_act_tooltipDouble click to participate in this support activityal_timeoutWarning! Progress data cannot be applied until loading has finished. Click OK to continue loadingal_sendSendpermission_gate_tooltipYou can't move past this Gate until the teacher releases it.schedule_gate_tooltipThis Gate will be opened on {0}.synchronise_gate_tooltipThis Gate will only be released once all learners reach this point.not_attempted_act_tooltipYou need to complete the activities before this activity to access it.al_act_reached_maxThe maximum number optional activities has already been reached.pres_panel_lblPresencepres_colnamelearners_lblLearnerspres_dataproviderloading_lblLoading presence... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/es_ES_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeout¡Atención!: El procesamiento no puede realizarse hasta que la ejecución no haya finalizado. Pulse OK para continuar con la ejecución.al_validation_act_unreachedNo puede acceder a esta actividad ya que todavía no ha llegado a la misma.sys_error_msg_finishNecesita reiniciar esta ventana para continuar. ¿Desea salvar la siguiente información sobre este error para ayudar a resolver este problema?hd_resume_lblContinuarhd_exit_lblSalirln_export_btnExportarsys_error_msg_startEl siguiente error de sistema ha ocurrido:sys_errorError de Sistemaal_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okOKhd_resume_tooltipVolver a la actividad actualcompleted_act_tooltipDoble click para revisitar actividad current_act_tooltipDoble click para participar en actividadhd_exit_tooltipSalir de la lección y cerrar ventanasupport_acts_titleActividades de Soportesupport_act_tooltipPresione dos veces para entrar en esta actividadal_doubleclick_todoactivityTodavía no ha llegado a esta actividadsp_save_lblGuardarsp_view_tooltipVer todas las notassp_save_tooltipGuardar tu notasp_title_lblTítulosp_view_lblVer Todossp_panel_lblAnotacionesal_sendEnviarln_export_tooltipExportar Portfolio de esta lecciónpres_panel_lblAlumnos onlinepermission_gate_tooltipNo puede avanzar hasta que el profesor asi lo disponga.schedule_gate_tooltipEsta puerta se abrirá el {0}.not_attempted_act_tooltipDebe completar las actividades anteriores a esta actividad para poder acceder esta.al_act_reached_maxYa se ha alcanzado el número máximo de actividades opcionales.pres_colnamelearners_lblAlumnospres_dataproviderloading_lblCargando alumnos online...synchronise_gate_tooltipEsta puerta se abrirá cuando todos los estudiantes hayan llegado hasta este punto. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/fr_FR_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pres_panel_lblPrésencepres_colnamelearners_lblApprenantspres_dataproviderloading_lblChargement de présence ...not_attempted_act_tooltipVous devez compléter toutes les activités antérieures avant de pouvoir accéder à cette activitésupport_act_tooltipDouble clic pour participer dans cette activité de soutienhd_resume_tooltipRetour à l'activité en coursal_validation_act_unreachedVous ne pouvez pas ouvrir cette activité car vous n'y êtes pas encore arrivé.al_doubleclick_todoactivityVous n'avez pas encore atteint cette activité...current_act_tooltipDouble-cliquez pour participer à l'activité en courssupport_acts_titleActivités de soutiencompleted_act_tooltipDouble-cliquez pour revoir cette activité terminéesp_view_lblAfficher toutsp_view_tooltipAfficher toutes les entrées du calepinhd_resume_lblRevenirhd_exit_lblSortirln_export_btnExportersys_error_msg_startL'erreur système s'est produite:sys_errorErreur systèmeal_alertAlerteal_cancelAbandonal_confirmConfirmeral_okOKhd_exit_tooltipQuitter l'environnement Apprenant et fermer la fenêtre du navigateurln_export_tooltipExporter vos contributions à cette leçonsp_title_lblTitreal_timeoutAttention! Les données de progression ne peuvent pas être appliquées avant la fin du chargement. Cliquez Ok pour continuer le chargemental_sendEnvoyerschedule_gate_tooltipCette porte va s'ouvir le {0}synchronise_gate_tooltipCette porte va s'ouvrir seulement lorsque tous les apprenants arrivent ici.sp_panel_lblCalepinsp_save_tooltipEnregistrer votre note du calepinpermission_gate_tooltipVous ne pouvez pas rentrer avant que l'enseignant vous autorise.al_act_reached_maxLe nombre maximal d'activités optionnelles à été atteintsys_error_msg_finishIl se peut que vous deviez ré-ouvrir ce navigateur pour continuer. Voulez-vous sauvegarder les informations suivantes concernant cette erreur pour aider à la résoudre?sp_save_lblEnregistrer \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/hu_HU_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblFolytatásLabel for Resume buttonhd_exit_lblKilépésLabel for Exit buttonln_export_btnExportálásLabel for Export buttonsys_error_msg_startA következő hiba történt: Common System error message starting linesys_errorRendszerhibaSystem Error alert window titleal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseCancel on alert dialogal_confirmJóváhagyásTo Confirm title for LFErroral_okOKOK on alert dialoghd_resume_tooltipUgrás az aktuális tevékenységretool tip message for resume buttonhd_exit_tooltipKilépés a tanulási környezetből és a böngésző bezárásatool tip message for exit buttoncurrent_act_tooltipKattintson duplán a tevékenységben való részvételheztool tip message for current activity iconsp_save_lblMentésLabel for Save buttonsp_view_tooltipAz összes jegyzetfüzet bejegyzés megjelenítésetool tip message for view all buttonsp_save_tooltipJegyzettömb bejegyzés mentésetool tip message for save buttonsp_title_lblCímLabel for title field of scratchpad (notebook)sp_panel_lblJegyzetfüzetLabel for panel title of scratchpad (notebook)al_doubleclick_todoactivitySajnálom, még nem érkezett el ehhez a tevékenységhez.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblMindent mutatLabel for View All buttonal_timeoutFigyelem! Nem használhatja az épp toltődő adatokat, amíg teljesen be nem töltődtek. Kattintson az OK gombra a betöltés folytatásához!Alert message for timeout error when loading learning design.al_sendKüldésSend button label on the system error dialogsys_error_msg_finishA folytatáshoz újra kellene indítania ezt a böngésző-ablakot. El szeretné menteni az alábbi tájékoztatást erről a hibáról a probléma megoldásának érdekében?Common System error message finish paragraphal_validation_act_unreachedNem nyithatja meg a tevékenységet, mivel még nem érkezett el ideAlert message when clicking on an unreached activity in the progess bar.ln_export_tooltipExportálja a hozzájárulásait ehhez a leckéheztool tip message for export buttoncompleted_act_tooltipDupla kattintással újra megnézheti ezt a befejezett tevékenységettool tip message for completed activity icon \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/it_IT_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutAttenzione! Devi attendere che finisca il caricamento. Clicca su OK per continuare.Alert message for timeout error when loading learning design.sys_error_msg_finishPotete avere bisogno di riavviare il browser per continuare. Desiderate conservare le seguenti informazioni su questo errore per contribuire a riparare questo problema?Common System error message finish paragraphsp_save_lblSalvaLabel for Save buttonal_okOKOK on alert dialoghd_resume_tooltipPassate alla vostra attività correntetool tip message for resume buttonhd_exit_tooltipUscire dalla Gestione Studenti e chiudere la finestra di browsertool tip message for exit buttonhd_resume_lblRiassuntoLabel for Resume buttonhd_exit_lblEsciLabel for Exit buttonln_export_btnEsportaLabel for Export buttonsp_title_lblTitoloLabel for title field of scratchpad (notebook)sys_errorErrore di SistemaSystem Error alert window titleal_alertAttenzioneGeneric title for Alert windowal_cancelCancellaCancel on alert dialogal_confirmConfermaTo Confirm title for LFErroral_validation_act_unreachedNon potete aprire l'attività poichè non la avete raggiunta ancora.Alert message when clicking on an unreached activity in the progess bar.sp_view_lblControlla tuttoLabel for View All buttonal_doubleclick_todoactivitySpiacente, non sei arrivato ancora a questa attivitàalert message when user double click on the todo activity in the sequence in learner progresscurrent_act_tooltipDoppio click per partecipare all'attività correntetool tip message for current activity iconln_export_tooltipEsporta il tuo contributo a questa Lezionetool tip message for export buttoncompleted_act_tooltipDoppio click per rivedere questa attività completamentetool tip message for completed activity iconsys_error_msg_startE' accaduto il seguente errore di sistema:Common System error message starting lineal_sendInviaSend button label on the system error dialogsynchronise_gate_tooltipQuesta barriera sarà aperta soltanto quando tutti gli studenti avranno raggiunto questo punto.Tooltip for synchronise gate in learner progress barsp_save_tooltipSalva i tuoi appuntitool tip message for save buttonsp_view_tooltipVisualizza tutte le voci del Blocco Notetool tip message for view all buttonsp_panel_lblBlocco NoteLabel for panel title of scratchpad (notebook)permission_gate_tooltipNon puoi passare oltre questa barriera fino a quando il docente non l'abbia aperta. Tooltip for permission gate in learner progress barschedule_gate_tooltipQuesta barriera sarà aperta su {0}.Tooltip for schedule gate in learner progress barnot_attempted_act_tooltipDevi completare le attività prima di questa per potervi accedere.Tooltip for not yet attempted activities in the learner progress baral_act_reached_maxIl numero massimo di attività opzionali è già stato raggiunto.al_act_reached_maxpres_panel_lblPresenzaPresence panel labelpres_colnamelearners_lblStudentiPresence datagrid learners columnpres_dataproviderloading_lblCaricamento presenza...Presence datagrid learning loading alert \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ja_JP_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startシステムエラーが発生しました:sys_errorシステムエラーal_cancelキャンセルal_confirm確認al_okOKal_validation_act_unreachedまだそのアクティビティに到達していないため、開けません。hd_resume_tooltip現在のアクティビティにジャンプします。hd_exit_tooltip学習者用システムを終了し、Web ブラウザのウィンドウを閉じますln_export_tooltipこのレッスンの進捗をエクスポートしますcompleted_act_tooltipダブルクリックで、この完了したアクティビティをチェックしますcurrent_act_tooltipダブルクリックで、現在のアクティビティに参加しますal_doubleclick_todoactivityまだこのアクティビティに到達していませんsp_view_lblすべて表示sp_save_lbl保存sp_title_lblタイトルal_timeout警告!読み込みが終了するまで進捗データを適用することはできません。OK をクリックすると読み込みを続行しますal_send送信hd_resume_lbl再開hd_exit_lbl終了ln_export_btnエクスポートpres_panel_lbl出席pres_dataproviderloading_lbl出席の読み込み中...support_acts_titleサポート・アクティビティsupport_act_tooltipダブルクリックで、現在のサポート・アクティビティに参加しますsp_save_tooltipあなたのノートブックの項目を保存しますsp_view_tooltipノートブックの項目をすべて表示しますsp_panel_lblノートブックsys_error_msg_finish続行するためにはこの Web ブラウザを再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?schedule_gate_tooltipこのゲートは {0} に開きます。synchronise_gate_tooltipすべての学習者がここに到達するとゲートが開きます。not_attempted_act_tooltipこのアクティビティにアクセスするには、その前にあるアクティビティを完了する必要があります。pres_colnamelearners_lbl学習者al_act_reached_max最大選択枠アクティビティ数に達しました。al_alert通知permission_gate_tooltip先生がゲートを開くまで、ゲートを通過することはできません。 \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ko_KR_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeout경고! 로딩이 완료되기까지 프로그레스 데이터가 적용될 수 없습니다. 로딩을 계속하기 위해서는 확인을 클릭하십시요.Alert message for timeout error when loading learning design.hd_resume_lbl다시 계속하기Label for Resume buttonln_export_btn내보내기Label for Export buttonsys_error_msg_start다음 시스템 오류가 발생하였습니다:Common System error message starting linesys_error_msg_finish계속하기 위해서는 브라우저 창을 다시 시작하는 것이 필요할 수도 있습니다. 이 문제를 고치기 위해서 이 오류에 대한 다음 정보를 저장하기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error alert window titleal_alert경고Generic title for Alert windowal_cancel취소Cancel on alert dialogal_confirm확인To Confirm title for LFErroral_validation_act_unreached당신은 다다르지 못한 활동을 열 수 없습니다.Alert message when clicking on an unreached activity in the progess bar.hd_exit_tooltip학습자 환경에서 나와 브라우저 창을 닫음tool tip message for exit buttonhd_resume_tooltip현재 활동으로 점프tool tip message for resume buttonln_export_tooltip당신의 기여를 이 강의로 내보내기tool tip message for export buttoncompleted_act_tooltip완료한 활동을 검토하기 위해 더블 클릭하세요.tool tip message for completed activity iconcurrent_act_tooltip현재 활동에 참여하기 위해 더블클릭하세요.tool tip message for current activity iconal_doubleclick_todoactivity죄송합니다. 아직 당신은 이 활동에 도달하지 못하였습니다.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lbl모두 보기Label for View All buttonsp_save_lbl저장Label for Save buttonsp_title_lbl제목Label for title field of scratchpad (notebook)hd_exit_lbl나가기Label for Exit buttonsp_panel_lbl노트북Label for panel title of scratchpad (notebook)sp_view_tooltip모든 노트북 항목 보기tool tip message for view all buttonsp_save_tooltip당신의 노트북 항목을 저장하시요.tool tip message for save buttonal_ok확인OK on alert dialogal_send보내기Send button label on the system error dialogpermission_gate_tooltip교수자가 해제하기전에는 이 관문을 통과해서 지나갈 수 없습니다.Tooltip for permission gate in learner progress barschedule_gate_tooltip이 관문은 {0}에 열릴 것입니다.Tooltip for schedule gate in learner progress barsynchronise_gate_tooltip이 관문은 모든 학습자가 이 지점에 도달해야 해제됩니다.Tooltip for synchronise gate in learner progress barnot_attempted_act_tooltip이 활동을 하기 위해서는 이전 활동들을 완료해야 합니다.Tooltip for not yet attempted activities in the learner progress bar \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/mi_NZ_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀEal_confirmWhakatūturutiasp_view_tooltipTirohia ngā tāurunga pukatuhi katoasp_panel_lblPukatuhial_cancelWhakakorehd_resume_lblHaere Anōln_export_btnKawea Atusys_error_msg_startI puta mai tēnei hapa pūnaha:sys_error_msg_finishTērā pea me tīmata anō e koe tēnei matapihi pūtirotiro kia hāere tonu ai ō mahi. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?sys_errorHapa Pūnahaal_alertKia Matohial_validation_act_unreachedKāore e taea e koe te Ngohe te huaki, nō te mea kāhore anō koe kia tae atu.hd_resume_tooltipHūpeke atu ki tō ngohe o nāianeihd_exit_tooltipWaiho te Wāhi Akoranga, ka kati ai i te matapihi pūtirotiroln_export_tooltipTukuna atu koe ō tākoha ki tēnei akorangacompleted_act_tooltipKia rua ngā pāwhiringa hei arotake i tēnei ngohe oti current_act_tooltipKia rua ngā pāwhiringa hei whai wāhi ki te ngohe o nāianeial_doubleclick_todoactivityAroha mai, kāhore anō koe kia tae atu ki tēnei ngohesp_view_lblTirohia te Katoasp_save_lblTiakisp_title_lblTaitarasp_save_tooltipTiaki tōu tāurunga pukatuhial_timeoutKia Tūpato! Kaore e taea te tāpiri raraunga kaneke kia mutu rā anō te uta. Pāwhiria ĀE ki te haere tonu. hd_exit_lblPutangasupport_acts_titleNgohe Āwhinasupport_act_tooltipPāwhiria kia uru ki tēnei ngohe āwhinaal_sendTukunanot_attempted_act_tooltipWhakaotia ngā ngohe o mua ki te uru mai ki tēnei ngohe.permission_gate_tooltipKāhore e taea te haere ki tua o tēnei tomokanga tae ki te wā i whakawātea te kaiako.schedule_gate_tooltipKa tūwheratia te tomokanga hei te {0}.synchronise_gate_tooltipKa tūwheratia te Tomokanga hei te taenga mai o ngā ākonga katoa.pres_colnamelearners_lblĀkongaal_act_reached_maxKua tae kē ki te mōrahi o ngā ngohe kōwhiringa.pres_panel_lblKo wai i tuihono maipres_dataproviderloading_lblKa utaina tuihonotia mai ... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ms_MY_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblSambungLabel for Resume buttonhd_exit_lblKeluarLabel for Exit buttonln_export_btnEksportLabel for Export buttonsys_error_msg_startRalat sistem ini telah berlaku:Common System error message starting linesys_error_msg_finishAnda mungkin perlu memulakan semula tetingkap pelayar untuk sambung. Adakah anda mahu menyimpan ralat ini untuk membantu menyelesaikan masalah ini?Common System error message finish paragraphsys_errorRalat SistemSystem Error alert window titleal_alertAletGeneric title for Alert windowal_cancelBatalCancel on alert dialogal_confirmSahTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedAnda tidak boleh membuka Aktiviti kerana anda tidak sampai aktiviti ini lagi.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipLompat ke aktiviti sekarangtool tip message for resume buttonhd_exit_tooltipKeluar Persekitaran Pelajaran dan tutup tetingkap pelayartool tip message for exit buttonln_export_tooltipEksport kontribusi anda ke pelajaran initool tip message for export buttoncompleted_act_tooltipKlik dua kali untuk reviu aktiviti yang telah lengkap initool tip message for completed activity iconcurrent_act_tooltipKlik dua kali untuk menyertai aktiviti sekarangtool tip message for current activity iconal_doubleclick_todoactivityMaaf, anda tidak mencapai aktiviti ini lagialert message when user double click on the todo activity in the sequence in learner progresssp_view_lblPapar SemuaLabel for View All buttonsp_save_lblSimpanLabel for Save buttonsp_view_tooltipPapar semua entri buku notatool tip message for view all buttonsp_save_tooltipSimpan entri buku nota andatool tip message for save buttonsp_title_lblTajukLabel for title field of scratchpad (notebook)sp_panel_lblBuku notaLabel for panel title of scratchpad (notebook)al_timeoutAmaran! Perkembangan data tidak boleh digunakan sehingga ia tamat dipindahkan. Klik OK untuk sambung pindahanAlert message for timeout error when loading learning design.al_sendHantarSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/nl_BE_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblHervattenLabel for Resume buttonhd_exit_lblEindeLabel for Exit buttonln_export_btnExporterenLabel for Export buttonsys_error_msg_startVolgende fout heeft zich voorgedaan:Common System error message starting linesys_error_msg_finishMogelijk dien je je browservenster te herstarten om verder te gaan. Wil je volgende informatie over deze fout opslaan om het probleem te helpen oplossen ?Common System error message finish paragraphsys_errorSysteemfoutSystem Error alert window titleal_alertWaarschuwingGeneric title for Alert windowal_cancelAnnulerenCancel on alert dialogal_confirmBevestigenTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedJe kan deze activiteit nog niet openen; je hebt ze nog niet bereikt in het verloop van de les.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipGa naar de volgende activiteittool tip message for resume buttonhd_exit_tooltipVerlaat de leeromgeving en sluit het venster.tool tip message for exit buttonln_export_tooltipExporteer uw bijdragen aan deze lestool tip message for export buttoncompleted_act_tooltipDubbelklik om deze voltooide activiteit te overzien.tool tip message for completed activity iconcurrent_act_tooltipDubbelklik om deel te nemen aan deze activiteittool tip message for current activity iconal_doubleclick_todoactivitySorry, je hebt deze activiteit nog niet bereikt.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblAlles bekijkenLabel for View All buttonsp_save_lblBewaarLabel for Save buttonsp_view_tooltipBekijk alle notities.tool tip message for view all buttonsp_save_tooltipBewaar je notitietool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotietiesLabel for panel title of scratchpad (notebook)al_sendVerzendenSend button label on the system error dialogal_timeoutWaarschuwing! Voortgang kan niet worden berekend totdat het laden gereed is. Klik op OK om door te gaan met ladenAlert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/no_NO_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3not_attempted_act_tooltipDu må ferdigstille de foregående aktivitetene før du kan begynne med denne aktiviteten.sys_error_msg_finishDu må starte nettleseren på nytt for å kunne fortsette. Ønsker du å lagre info. om denne feilen for å hjelpe oss å rette problemet ?sp_panel_lblNotatbokhd_resume_tooltipGå til din aktive aktivitethd_exit_tooltipGå ut av studentmiljøet og steng av nettleserenln_export_tooltipEksporter ditt bidrag til denne leksjonencurrent_act_tooltipDobbeltklikk for å delta i den aktive aktivitetenal_doubleclick_todoactivityBeklager, du har ikke kommet fram til denne aktiviteten endasp_view_lblVis allesp_save_lblLagresp_view_tooltipVis alle notatersp_save_tooltipLagre dine notatersp_title_lblTittelhd_resume_lblFortsettehd_exit_lblGå utln_export_btnEksportersys_error_msg_startFølgende system feil har oppstått:sys_errorSystem feilal_cancelAngreal_confirmBekreftal_okOKal_validation_act_unreachedDu kan ikke åpne en aktivitet du ikke har kommet fram til enda.support_acts_titleBrukerstøtte aktivitetsupport_act_tooltipDobbeltklikk for å delta i denne brukerstøtte aktivitetenal_sendSendal_timeoutAdvarsel ! Data for fremdrift kan ikke benyttes før nedlasting er ferdig. Klikk på OK for å fortsette nedlastingen.al_alertVarselcompleted_act_tooltipDobbeltklikk for å vurdere den ferdigstillte aktivitetenpermission_gate_tooltipDu kan ikke fortsette forbi denne porten før foreleseren åpner denne.schedule_gate_tooltipDenne porten vil åpnes {0}.synchronise_gate_tooltipDenne porten vil bli åpnet med en gang alle studenter når denne.al_act_reached_maxMaksimalt antall tilleggsaktiviteter er nådd.pres_panel_lblAudienspres_colnamelearners_lblStudenterpres_dataproviderloading_lblLast inn audiense..... \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/pl_PL_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutOstrzeżenie! Ładowanie danych musi zostać zakończone. Kliknij OKAlert message for timeout error when loading learning design.hd_exit_lblWyjścieLabel for Exit buttonln_export_btnEksportLabel for Export buttonsys_error_msg_startWystąpił następujący błąd systemu:Common System error message starting linesys_error_msg_finishAby kontynuować należy ponownie uruchomić przeglądarkę. Czy chcesz zapisać informacje o błędzie aby naprawić ten problem?Common System error message finish paragraphsys_errorBłąd SystemuSystem Error alert window titleal_alertUwagaGeneric title for Alert windowal_cancelAnulujCancel on alert dialogal_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedNie możesz otworzyć Aktywności jeśli do niej nie dotarłeśAlert message when clicking on an unreached activity in the progess bar.hd_exit_tooltipOpuść moduł Studenta i zamknij okno przeglądarkitool tip message for exit buttonln_export_tooltipEksportuj twoje uwagi do tej lekcjitool tip message for export buttoncompleted_act_tooltipKliknij dwa razy aby podejrzeć zakończoną aktywnośćtool tip message for completed activity iconcurrent_act_tooltipKliknij dwa razy aby uczestniczyć w obecnej aktywnościtool tip message for current activity iconal_doubleclick_todoactivityNie dotarłeś jeszcze do tej aktywności alert message when user double click on the todo activity in the sequence in learner progresssp_save_lblZapiszLabel for Save buttonsp_view_tooltipPokaż wszystkie wpisy do notatnikatool tip message for view all buttonsp_save_tooltipZapisz swój wpis do notatnikatool tip message for save buttonsp_title_lblTytułLabel for title field of scratchpad (notebook)sp_panel_lblNotatnikLabel for panel title of scratchpad (notebook)hd_resume_lblDalejLabel for Resume buttonhd_resume_tooltipPrzejdź do właściwej aktywnościtool tip message for resume buttonsp_view_lblWszystkieLabel for View All buttonal_sendWysłanoSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/pt_BR_dictionary.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumirLabel for Resume buttonhd_exit_lblSairLabel for Exit buttonln_export_btnExportarLabel for Export buttonsys_error_msg_startUm erro de sistema de segmento ocorreu:Common System error message starting linesys_error_msg_finishVocê talvez necessite reiniciar esta janela do navegador para continuar. Você deseja salvar a informação vinda deste erro para ajudar a solucionar este problema?Common System error message finish paragraphsys_errorErro do SistemaSystem Error alert window titleal_alertAlertaGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedVocê não pode abrir a Atividade que você ainda não alcançouAlert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipPular para a atividade atualtool tip message for resume buttonhd_exit_tooltipSair do ambiente Aluno e fechar a janela do navegadortool tip message for exit buttonln_export_tooltipExportar suas contribuições para esta liçãotool tip message for export buttoncompleted_act_tooltipClicar duas vezes para rever a atividade finalizadatool tip message for completed activity iconcurrent_act_tooltipClicar duas vezes para participar da atividade atualtool tip message for current activity iconal_doubleclick_todoactivityDesculpe, você não alcançou está atividade aindaalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVisualizar todasLabel for View All buttonsp_save_lblSalvarLabel for Save buttonsp_view_tooltipVisualizar todas as entradas no caderno de notastool tip message for view all buttonsp_save_tooltipSalvar sua entrada no caderno de notastool tip message for save buttonsp_title_lblTítuloLabel for title field of scratchpad (notebook)sp_panel_lblCaderno de NotasLabel for panel title of scratchpad (notebook)al_timeoutcuidado! O progresso dos dados não pode ser aplicado enquanto não terminar de carregar. Clique em OK para continuar carregando.Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/ru_RU_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3current_act_tooltipСделайте двойной щелчок, чтобы принять участие в текущем заданииln_export_tooltipЭкспорт Ваших вкладов в этот урокhd_resume_tooltipПерейти к Вашему текущему заданию.completed_act_tooltipСделайте двойной щелчок, чтобы просмотреть это завершённое заданиеal_doubleclick_todoactivityИзвините, Вы ещё не достигли этого заданияhd_exit_lblВыйтиsys_error_msg_finishВы, возможно, должны перезагрузить это окно браузера, чтобы продолжить. Хотите ли Вы сохранить следующую информацию об этой ошибке, чтобы помочь установить причину этой проблемы?al_validation_act_unreachedВы не можете открыть задание, поскольку Вы еще его не достигли.hd_resume_lblВозобновитьln_export_btnЭкспортsys_error_msg_startПроизошла следующая ошибка системыsys_errorСистемная ошибкаal_alertИзвещениеal_cancelОтменитьal_confirmПодтвердитьhd_exit_tooltipВыйдите из среды обучения и закройте окно браузераsp_view_lblПросмотреть всёsp_save_lblСохранитьsp_view_tooltipПросмотреть все записи в тетрадиsp_save_tooltipСвохранить Ваши записи в тетрадиsp_title_lblЗаголовокsp_panel_lblТетрадьal_okОКal_sendОтправитьal_timeoutВнимание! Невозможно производить изменения до того, как закончится загрузка. Нажмите ОК, чтобы ее продолжитьpermission_gate_tooltipВы не можете пройти дальше этого затвора до тех пор пока преподаватель откроет его.schedule_gate_tooltipЭтот затвор будет открыт {0}synchronise_gate_tooltipЗатвор будет открыт, когда все ученики достигнут этого этапа.not_attempted_act_tooltipВам нужно выполнить другие задания прежде чем перейти к этому.al_act_reached_maxМаксимальное количество вспомогательных заданий уже было достигнуто.pres_panel_lblПрисутствиеpres_colnamelearners_lblУченикиpres_dataproviderloading_lblЗагружается присутствие...support_acts_titleВспомогательные заданияsupport_act_tooltipЩелкните два раза, чтобы участвовать в этом вспомогательном задании \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/sv_SE_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResuméLabel for Resume buttonhd_exit_lblAvslutaLabel for Exit buttonln_export_btnExporteraLabel for Export buttonsys_error_msg_startDet följande systemfelet har inträffat:Common System error message starting linesys_error_msg_finishDu kanske måste starta om detta webbläsarfönster. Vill du spara följande information om detta fel i syfte att hjälpa till att lösa problemet?Common System error message finish paragraphsys_errorSystemfelSystem Error alert window titleal_alertVarningGeneric title for Alert windowal_cancelAvbrytCancel on alert dialogal_confirmBekräftaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedDu kan öppna aktiviteten eftersom du inte har nått den ännu.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipHoppa till din aktuella aktivitettool tip message for resume buttonhd_exit_tooltipLämna den lärandes miljö och stäng webbläsarfönstret. tool tip message for exit buttonln_export_tooltipExportera dina bidrag till den här lektionentool tip message for export buttoncompleted_act_tooltipDubbelklicka för att granska den här fullföljda aktivitetentool tip message for completed activity iconcurrent_act_tooltipDubbelklicka för att delta i den aktuella aktivitetentool tip message for current activity iconal_doubleclick_todoactivityDu har tyvärr inte nått den här aktiviteten ännualert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVisa allaLabel for View All buttonsp_save_lblSparaLabel for Save buttonsp_view_tooltipVisa alla inlägg i Anteckningartool tip message for view all buttonsp_save_tooltipSpara ditt inlägg i Anteckningar tool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblAnteckningarLabel for panel title of scratchpad (notebook)al_timeoutVarning! Det går inte att använda data under behandling förrän laddningen är avslutad. Klicka på OK för att fortsätta laddningen. Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/tr_TR_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_exit_tooltipÖğrenme ortamından çıkar ve tarayıcı pencersini kapatır.tool tip message for exit buttonschedule_gate_tooltipKapı {0}'da açılacak.Tooltip for schedule gate in learner progress barln_export_tooltipBu derse yaptığınız katkıyı dışa aktarır.tool tip message for export buttonln_export_btnDışa AktarLabel for Export buttoncurrent_act_tooltipŞuan yaptığınız etkinliğiğe katılmak için çift tıklayınız.tool tip message for current activity iconsynchronise_gate_tooltipBu kapı tüm öğrenciler bu noktaya ulaştığında açılacaktır.Tooltip for synchronise gate in learner progress baral_validation_act_unreachedHenüz gelmediğiniz bir etkinliği açamazsınız.Alert message when clicking on an unreached activity in the progess bar.al_doubleclick_todoactivityÜzgünüm, henüz bu etkinliğe gelmediniz.alert message when user double click on the todo activity in the sequence in learner progresshd_resume_tooltipŞuan yapmakta olduğunuz etkinliğe devam eder.tool tip message for resume buttonhd_exit_lblÇıkışLabel for Exit buttonsys_error_msg_startAşağıdaki sistem hatası oluştu.Common System error message starting linesys_errorSistem HatasıSystem Error alert window titleal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorsp_title_lblBaşlıkLabel for title field of scratchpad (notebook)al_sendGönderSend button label on the system error dialoghd_resume_lblDevam EtLabel for Resume buttonnot_attempted_act_tooltipBu etkinleğe erişmeden önce diğer etkinlikleri tamamlamalısınız.Tooltip for not yet attempted activities in the learner progress barpermission_gate_tooltipÖğretmen izin verene kadar bu kapıdan geçemezsiniz.Tooltip for permission gate in learner progress barsp_panel_lblNot DefteriLabel for panel title of scratchpad (notebook)al_act_reached_maxMaksimum seçmeli etkinlik sayısına erişildi.al_act_reached_maxpres_colnamelearners_lblÖğrencilerPresence datagrid learners columnpres_panel_lblGörünümPresence panel labelpres_dataproviderloading_lblGörünüm yükleniyorPresence datagrid learning loading alertal_timeoutUyarı! Yükleme bitmeden süreç verisi uygulanamaz. Yüklemeye devam etmek için Tamam'a tıklayınız.Alert message for timeout error when loading learning design.al_okTamamOK on alert dialogal_cancelİptalCancel on alert dialogcompleted_act_tooltipTamamlanmış etkinliği incelemek için çift tıklayınız.tool tip message for completed activity iconsp_view_lblTümünü gösterLabel for View All buttonsp_view_tooltipTüm not defteri girişlerini görüntüler.tool tip message for view all buttonsys_error_msg_finishDevam etmek için tarayıcıyı kapatıp tekrar açmalısınız. Bu problemin giderilmesine yardımcı olmak için hata bilgisini kaydetmek istiyor musunuz?Common System error message finish paragraphsp_save_tooltipNot defteritool tip message for save buttonsp_save_lblKaydetLabel for Save button \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/vi_VN_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutCảnh báo ! Dữ liệu tiến trình chỉ được chấp nhật khi kết thúc quá trình đăng tải. Kích nút Đồng ý để tiếp tục đăng tải.Alert message for timeout error when loading learning design.hd_exit_lblThoát Label for Exit buttonln_export_btnĐưa raLabel for Export buttonsys_error_msg_startĐã phát hiện thấy lỗi hệ thốngCommon System error message starting linesys_error_msg_finishBạn cần phải khởi động lại cửa trình duyệt để tiếp tục. Bạn có muốn lưu những thông tin về lỗi này để giúp sửa lỗi không?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error alert window titleal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏCancel on alert dialogal_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on alert dialogal_validation_act_unreachedBạn không thể mở hoạt động vì bạn vẫn chưa chỉ vào Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipTới hoạt động hiện thời của bạntool tip message for resume buttonhd_exit_tooltipThoát khỏi môi trường của học viên và đóng cửa sổ trình duyệttool tip message for exit buttonln_export_tooltipĐưa ra các đóng góp của bạn về bài học nàytool tip message for export buttoncompleted_act_tooltipNháy kép để xem lại hoạt động đã được hoàn tấttool tip message for completed activity iconcurrent_act_tooltipNháy kép để tham gia hoạt động hiện thờitool tip message for current activity iconal_doubleclick_todoactivityXin lỗi, bạn vẫn chưa chỉ tới hoạt độngalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblXem tất cảLabel for View All buttonsp_save_lblLưuLabel for Save buttonsp_view_tooltipXem tất cả các ghi chép sổ taytool tip message for view all buttonsp_save_tooltipLưu ghi chép sổ tay của bạntool tip message for save buttonsp_title_lblTiêu đềLabel for title field of scratchpad (notebook)sp_panel_lblSổ tayLabel for panel title of scratchpad (notebook)hd_resume_lblHồi phụcLabel for Resume buttonal_sendGửiSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/zh_CN_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sp_view_tooltip观看所有的笔记条目tool tip message for view all buttonsp_save_tooltip保存你的笔记条目tool tip message for save buttonsp_title_lbl标题Label for title field of scratchpad (notebook)sp_panel_lbl笔记本Label for panel title of scratchpad (notebook)sp_view_lbl观看所有的Label for View All buttonsp_save_lbl保存Label for Save buttonhd_resume_lbl重新开始Label for Resume buttonhd_exit_lbl退出Label for Exit buttonln_export_btn导出Label for Export buttonsys_error_msg_start发生了一个系统错误Common System error message starting linesys_error_msg_finish你需要重新启动这个浏览器窗口来继续。你想保存关于这个错误的下列信息来帮助解决这个问题吗?Common System error message finish paragraphsys_error系统错误System Error alert window titleal_alert警惕Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm确认To Confirm title for LFErroral_okOK on alert dialogal_validation_act_unreached你不能打开这个活动,因为你还没有到达它。Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltip跳转到你的当前活动tool tip message for resume buttonhd_exit_tooltip退出学习者环境,关闭浏览器窗口tool tip message for exit buttonln_export_tooltip导出对这个课程的你的贡献tool tip message for export buttoncompleted_act_tooltip双击,回顾这个已完成的活动tool tip message for completed activity iconcurrent_act_tooltip双击,参加到当前活动tool tip message for current activity iconal_doubleclick_todoactivity对不起,你还没有到达这个活动alert message when user double click on the todo activity in the sequence in learner progressal_timeout警告!只有加载完成时数据才能被应用,点击确定以继续加载Alert message for timeout error when loading learning design.al_send发送Send button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/learner/zh_TW_dictionary.xml 12 Jan 2010 01:20:12 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_start系統發生錯誤Common System error message starting linesys_error_msg_finish您需要重新啟動這個瀏覽器視窗才能繼續。您想要保存這個錯誤的資訊,來幫助解決問題嗎?Common System error message finish paragraphsp_view_tooltip檢視所有筆記條目tool tip message for view all buttonsp_save_tooltip儲存您的筆記條目tool tip message for save buttonhd_exit_lbl離開Label for Exit buttonln_export_btn匯出Label for Export buttonhd_resume_lbl重新開始Label for Resume buttonsys_error系統錯誤System Error alert window titleal_alert警告Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOK on alert dialogal_doubleclick_todoactivity對不起,您尚未到達這個活動alert message when user double click on the todo activity in the sequence in learner progresssp_view_lbl觀看全部Label for View All buttonsp_save_lbl儲存Label for Save buttonsp_title_lbl標題Label for title field of scratchpad (notebook)sp_panel_lbl筆記本Label for panel title of scratchpad (notebook)al_send送出Send button label on the system error dialogschedule_gate_tooltip這個閘門將開啟於{0}. Tooltip for schedule gate in learner progress barsynchronise_gate_tooltip這個閘門將被釋放一旦所有學習者到達這個點Tooltip for synchronise gate in learner progress barpres_panel_lbl呈現Presence panel labelpres_colnamelearners_lbl學習者Presence datagrid learners columnpres_dataproviderloading_lbl下載呈現...Presence datagrid learning loading alertal_validation_act_unreached你無法開啟此活動因你還未達到Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltip跳到你目前的活動tool tip message for resume buttonhd_exit_tooltip離開學習者環境並關閉瀏覽視窗tool tip message for exit buttonln_export_tooltip輸出你的貢獻到此課程tool tip message for export buttoncompleted_act_tooltip按兩下去看完成的活動tool tip message for completed activity iconcurrent_act_tooltip按兩下去參加目前的活動tool tip message for current activity iconal_timeout警告!進行中的資料無法套用直到下再完成前,請按好去繼續下載Alert message for timeout error when loading learning design.permission_gate_tooltip直到敎師釋放前,你無法移動此閘門Tooltip for permission gate in learner progress barnot_attempted_act_tooltip你必須在此活動前完成所有活動,才可進行Tooltip for not yet attempted activities in the learner progress baral_act_reached_max選擇性活動的最大數已經達到al_act_reached_max \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ar_JO_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertتحذيرGeneric title for Alert windowal_cancelإلغاءTo Confirm title for LFErroral_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on the alert dialogapp_chk_langloadبيانات اللغة قد حملتmessage for unsuccessful language loadingapp_chk_themeloadبيانات المحمول لم تحمل بعدmessage for unsuccessful theme loadingapp_fail_continueالبرنامج لا يمكنه الاستمرار الرجاء الاتصال بالدعم الفنيmessage if application cannot continue due to any errordb_datasend_confirmشكرا على ارسال البيانات الى الخادمMessage when user sucessfully dumps data to the servermnu_editتعديلMenu bar Editmnu_edit_copyنسخMenu bar Edit &gt; Copymnu_edit_cutقصMenu bar Edit &gt; Cutmnu_edit_pasteلصقMenu bar Edit &gt; Pastemnu_fileملفMenu bar Filemnu_file_refreshانعاشMenu bar Refreshmnu_file_editclassتعديل الصفMenu bar Edit Classmnu_file_startتشغيلMenu bar Startmnu_helpمساعدةMenu bar Helpmnu_help_abtعنMenu bar Aboutperm_act_lblاذنLabel for permission gate activitysched_act_lblجدولLabel for schedule gate activitysynch_act_lblزامن Used as a label for the Synch Gate Activity Typews_Rootمجلد رئيسيRoot folder title for workspacews_dlg_cancel_buttonالغاء2ws_dlg_location_buttonموقعWorkspace dialogue Location btn labelws_tree_mywspمساحة عمليThe root level of the treews_tree_orgsمؤسساتShown in the top level of the tree in the workspacesys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج لاعادة تشغيل النظام للاستمرار،هل تريد حفظ المعلومات التالية حول هذا الخطأ لحل المشكلة؟Common System error message finish paragraphsys_errorخطأ نظامSystem Error elert window titlemnu_file_scheduleجدولMenu bar Schedulemnu_file_exitخروجMenu bar Exitmnu_view_learnersتلاميذMenu bar Learnersmnu_goانطلقMenu bar Gomnu_go_lessonدرسMenu bar Go to Lesson Tabmnu_go_scheduleجدولMenu bar Go to Schedule Tabmnu_go_learnersتلاميذMenu bar Go to Learners Tabmnu_go_todoما يجب القيام به Menu bar Todomnu_help_helpمساعدةMenu bar Help itemrefresh_btnانعاشRefresh buttonhelp_btnمساعدةHelp buttonmtab_lessonدرسMonitor Lesson details tabmtab_seqسلسلةMonitor Sequence tabmtab_learnersتلاميذMonitor Learners tabmtab_todoما يجب القيام به Monitor Todo tabls_status_lblالوضع الحاليStatus label - Lesson detailsls_learners_lblتلاميذLearner label - Lesson detailsls_class_lblصفClass label - Lesson detailsls_manage_class_lblصفClass managing label - Lesson detailsls_manage_status_lblالوضع الحاليStatus managing label - Lesson detailsls_manage_start_lblابدأStart managing label - Lesson detailsls_manage_learners_btnعرض الطلابView learners button - Lesson details (manage section)ls_manage_editclass_btnتعديل الصفEdit class button - Lesson details (manage section)ls_manage_apply_btnيطبقStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnجدولSchedule start button - Lesson details (manage section)ls_manage_start_btnشغل الآنStart immediately button - Lesson details (manage section)ls_manage_date_lblتاريخDate field title - Lesson details (manage section)ls_duration_lblانقضت المدةElapsed duration of lesson - Lesson detailsls_manage_status_cmbاختر الوضع الحاليStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateتشغيلLesson status option - Activatels_status_cmb_disableيضعفLesson status option - Disable (suspend)ls_status_cmb_enableنشطLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveارشيفLesson status option - Archivels_status_active_lblنشطCurrent status description if active (enabled)ls_status_disabled_lblمعلقCurrent status description if suspended (disabled)ls_status_archived_lblحفظ بالرشيفCurrent status description if archviedls_status_started_lblبدأCurrent status description if started (enabled)ls_win_editclass_titleتعديل الصفEdit class window titlels_win_learners_titleعرض الطلابView learners window titlemnu_viewعرضMenu bar Viewls_win_editclass_save_btnحفظSave button on Edit Class popupls_win_editclass_cancel_btnالغاءCancel button on Edit Class popupls_win_learners_close_btnاغلاقClose button on View Learners popupls_win_editclass_organisation_lblمنظمةHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblموظفينHeading for Staff list on Edit Class popupls_win_editclass_learners_lblتلاميذHeading for Learners list on the Edit Class popupls_win_learners_heading_lblتلاميذ في الصفHeading on View Learners window panel.td_desc_headingضوابط متقدمةTodo tab description headingtd_desc_textلا يجب استخدام شريط ما يجب القيام به لاتمام السلسة. انظر التعليمات لمزيد من المعلومات. <br><br>هذه الميزه اصبحت الآن متوفرة بالكامل. Todo tab descriptionopt_activity_titleنشاط اختياريTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesنشاطات الاطفالNumber of child activities for Complex activity shown on canvas.ls_of_textمنi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtتنظيم الدرسHeading for Management section of Lesson Tabls_tasks_txtوظائف مطلوبةHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnانطلقGo button on contribute entry itemlearner_exportPortfolio_btnتصدير المعلومات الشخصيةLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivityهل انت متأكد من انك تريد إجبار الطالب '{0}' في النشاط '{1}' ؟Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityلقد قمت بإستثناء الطالب '{0}' من النشاط الحالي أو النشاط المستكمل '{1}' Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishهل انت متأكد من انك تريد إجبار الطالب '{0}' لانهاء الدرس؟Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetالرجاء اسقاط الطالب'{0}' في نشاط أو في نهاية الدرس. Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateالطلاب المنتهيينTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_status_scheduled_lblمجدولLesson status option - Scheduled (Not Started)goContribute_btn_tooltipاكمل المهمه الآنtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipمساعدةtool tip message for help button in toolbarrefresh_btn_tooltipاعد تحميل احدث البيانات عن تقدم الطلابtool tip message for the refresh buttonls_manage_editclass_btn_tooltipعدل قائمة الطلاب و المعلمين المكلفين اهذا الدرسtool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipاعرض جميع الطلاب المكلفين لهذا الدرسtool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipغير حالة هذا النشاط بناءً على خيار القائمةtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipصدر المعلومات الشخصية للحصة و احفظها في الكمبيوتر لغايات مستقبليةtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipصدر المعلومات الشخصية للطالب و احفظها في الكمبيوتر لغايات مستقبليةtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipابدأ الدرس الآنtool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipجدول الحصة لتبدأ في وقت لاحقtool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipانقر نقرا مزدوجا لاستعراض مساهمات الطلاب في النشاط الحاليtool tip message for current activity iconcompleted_act_tooltip انقر نقرا مزدوجا لاستعراض مساهمات الطلاب في النشاط المستكملtool tip message for completed activity iconal_doubleclick_todoactivityعفوا ،الطالب: {0} لم يصل للنشاط: {1} بعدalert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartلم يتم إختيار تاريخ. الرجاء إختيار تاريخ ووقت.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblالوقت (ساعات : دقائق)Time fields title - Lesson details (manage section)al_validation_schtimeالرجاء إدخال تاريخ صحيح.Alert message when user enters an invalid time for schedule startccm_monitor_activityفتح مراقب نشاطLabel for Custom Context Monitor Activityccm_monitor_activityhelpتعليمات مراقبة النشاطLabel for Custom Context Monitor Activity Helpfinish_learner_tooltipلاجبار طالب على انهاء الدرس، اسحب ايقونة الطالب فوق هذا الشريط وافلتRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnيومياتLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipاستعرض كل اليوميات tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/cy_GB_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertRhybuddGeneric title for Alert windowal_cancelCansloTo Confirm title for LFErroral_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on the alert dialogapp_chk_langloadNid yw'r data iaith wedi cael eu llwythomessage for unsuccessful language loadingapp_chk_themeloadNid yw'r data thema wedi cael eu llwythomessage for unsuccessful theme loadingapp_fail_continueNi all y rhaglen barhau. Cysylltwch â'r tîm cymorthmessage if application cannot continue due to any errordb_datasend_confirmDiolch am anfon data i'r gweinyddMessage when user sucessfully dumps data to the servermnu_editGolyguMenu bar Editmnu_edit_copyCopïoMenu bar Edit &gt; Copymnu_edit_cutTorriMenu bar Edit &gt; Cutmnu_edit_pasteGludoMenu bar Edit &gt; Pastemnu_fileFfeilMenu bar Filemnu_file_refreshAdnewydduMenu bar Refreshmnu_file_editclassGolygu DosbarthMenu bar Edit Classmnu_file_startDechrauMenu bar Startmnu_helpCymorthMenu bar Helpmnu_help_abtAmMenu bar Aboutperm_act_lblCaniatâdLabel for permission gate activitysched_act_lblTrefnlenLabel for schedule gate activitysynch_act_lblSyncroneiddioUsed as a label for the Synch Gate Activity Typews_RootGwreiddynRoot folder title for workspacews_dlg_cancel_buttonCanslo2ws_dlg_location_buttonLleoliadWorkspace dialogue Location btn labelws_tree_mywspFy Lle GwaithThe root level of the treews_tree_orgsSefydliadauShown in the top level of the tree in the workspacesys_error_msg_startMae'r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd rhaid i chi ailddechrau LAMS Author er mwyn parhau. Ydych chi eisiau cadw'r wybodaeth ganlynol am y gwall hwn i helpu datrys y broblem hon?Common System error message finish paragraphsys_errorGwall SystemSystem Error elert window titlemnu_file_scheduleTrefnlenMenu bar Schedulemnu_file_exitGadaelMenu bar Exitmnu_view_learnersDysgwyr...Menu bar Learnersmnu_goEwchMenu bar Gomnu_go_lessonGwersMenu bar Go to Lesson Tabmnu_go_scheduleTrefnlenMenu bar Go to Schedule Tabmnu_go_learnersDysgwyrMenu bar Go to Learners Tabmnu_go_todoI'w wneudMenu bar Todomnu_help_helpCymorth MonitroMenu bar Help itemrefresh_btnAdnewydduRefresh buttonhelp_btnCymorthHelp buttonmtab_lessonGwersMonitor Lesson details tabmtab_seqDilyniantMonitor Sequence tabmtab_learnersDysgwyrMonitor Learners tabmtab_todoI'w wneudMonitor Todo tabls_status_lblStatws:Status label - Lesson detailsls_learners_lblDysgwyr:Learner label - Lesson detailsls_class_lblDosbarth:Class label - Lesson detailsls_manage_class_lblDosbarth:Class managing label - Lesson detailsls_manage_status_lblNewid Statws:Status managing label - Lesson detailsls_manage_start_lblDechrau:Start managing label - Lesson detailsls_manage_learners_btnGweld y DysgwyrView learners button - Lesson details (manage section)ls_manage_editclass_btnGolygu DosbarthEdit class button - Lesson details (manage section)ls_manage_apply_btnGweithreduStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnTrefnlenSchedule start button - Lesson details (manage section)ls_manage_start_btnDechrau NawrStart immediately button - Lesson details (manage section)ls_manage_date_lblDyddiadDate field title - Lesson details (manage section)ls_duration_lblAmser a aeth heibio:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbDewis statws:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateGweithreduLesson status option - Activatels_status_cmb_disableAnalluogiLesson status option - Disable (suspend)ls_status_cmb_enableGweithredolLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchifoLesson status option - Archivels_status_active_lblWedi'i greu ond heb ei gychwynCurrent status description if active (enabled)ls_status_disabled_lblWedi'i atalCurrent status description if suspended (disabled)ls_status_archived_lblWedi'i archifoCurrent status description if archviedls_status_started_lblWedi cychwynCurrent status description if started (enabled)ls_win_editclass_titleGolygu DosbarthEdit class window titlels_win_learners_titleGweld y DysgwyrView learners window titlemnu_viewGweldMenu bar Viewls_win_editclass_save_btnCadwSave button on Edit Class popupls_win_editclass_cancel_btnCansloCancel button on Edit Class popupls_win_learners_close_btnCauClose button on View Learners popupls_win_editclass_organisation_lblSefydliadHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStaffHeading for Staff list on Edit Class popupls_win_editclass_learners_lblDysgwyrHeading for Learners list on the Edit Class popupls_win_learners_heading_lblDysgwyr yn y dosbarth:Heading on View Learners window panel.td_desc_headingUwch Reolyddion:Todo tab description headingtd_desc_textNid oes angen defnyddio'r Tab I'w Wneud hwn er mwyn cwblhau'r dilyniant. Gweler y dudalen cymorth am fwy o wybodaeth. .&lt;br&gt;&lt;br&gt; Mae'r nodwedd hon yn weithredol nawr.Todo tab descriptionopt_activity_titleGweithgaredd DewisolTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesgweithgareddau plantNumber of child activities for Complex activity shown on canvas.ls_of_textoi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtRheoli GwersHeading for Management section of Lesson Tabls_tasks_txtTasgau GofynnolHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnEwchGo button on contribute entry itemlearner_exportPortfolio_btnAllforio PortffolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblWedi'i drefnuLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityYdych chi'n siŵr eich bod chi eisiau gorfodi dysgwr '{0}' i gwblhau i Weithgaredd '{1}'? Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityRydych wedi gollwng dysgwr '{0}' ar naill ai ei weithgaredd cyfredol neu ei weithgaredd wedi'i gwblhau'{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishYdych chi'n siŵr eich bod chi eisiau gorfodi dysgwr '{0}' i gwblhau i ddiwedd y wers? Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetGollyngwch ddysgwr '{0}' ar weithgaredd neu ddiwedd y wers.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateDysgwyr sydd wedi Gorffen:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipCwblhewch y dasg hon nawrtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipCymorthtool tip message for help button in toolbarrefresh_btn_tooltipAil-lwythwch y data cynnydd diweddaraf ar gyfer y dysgwyrtool tip message for the refresh buttonls_manage_editclass_btn_tooltipGolygwch restr y dysgwyr a'r staff a neilltuwyd ar gyfer y wers hontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipYn dangos yr holl ddysgwyr sydd wedi'u neilltuo ar gyfer y wers hontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipNewidiwch statws y wers hon yn seiliedig ar y dewisiadau ar y gwymplentool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipAllforiwch y portffolio dosbarth a'i gadw ar eich cyfrifiadur i'w gyfeirio ato yn y dyfodoltool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipAllforiwch y portffolio dysgwr hwn a'i gadw ar eich cyfrifiadur i'w gyfeirio ato yn y dyfodoltool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipDechreuwch y wers ar unwaithtool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipTrefnwch i'r wers ddechrau yn y dyfodoltool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipCliciwch ddwywaith i weld cyfraniad sydd ar y gweill ar gyfer gweithgaredd cyfredol y dysgwrtool tip message for current activity iconcompleted_act_tooltipCliciwch ddwywaith i weld y cyfraniad ar gyfer gweithgaredd y dysgwr sydd wedi'i gwblhautool tip message for completed activity iconal_doubleclick_todoactivityNid yw dysgwr: {0} wedi cyrraedd gweithgaredd: {1}, eto.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartDim dyddiad wedi'i ddewis. Dewiswch ddyddiad ac amser.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblAmser (Oriau : Munudau)Time fields title - Lesson details (manage section)al_validation_schtimeRhowch amser dilys.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipEr mwyn gorfodi dysgwr i gwblhau'r wers, llusgwch eicon y dysgwr i'r bar hwn a rhyddhau’r eiconRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityAgor Gweithgaredd MonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpCymorth Gweithgaredd MonitorLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnCofnod DyddlyfrLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipGweld pob Cofnod Dyddlyfr wedi'i gadw gan y Dysgwyrtool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblDysgwr URL:Learner URL:ls_manage_learnerExpp_lblGalluogi allforio portffolio ar gyfer y dysgwrLabel for Enable export portfolio for Learnerls_confirm_expp_enabledAllforio Portffolio wedi'i alluogi ar gyfer y dysgwyrConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledAllforio Portffolio wedi'i analluogi ar gyfer y dysgwyrConfirmation message on disabling export portfolio for learnersls_remove_confirm_msgRydych chi wedi dewis Dileu'r wers hon. Nid oes modd adfer gwersi sydd wedi'u dileu. Parhau?remove confirm msgls_status_cmb_removeDileuLesson status option - Removels_status_removed_lblWedi’i ddileuCurrent status description if deleted (removed) lesson.al_yesIeYes on the alert dialogal_noNa'No' on the alert dialogls_remove_warning_msgRHYBUDD: Mae’r wers ar fin gael ei dileu. Ydych chi eisiau cadw’r wers hon fel archif?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} dysgwyrGroup name for the class's learners group.staff_group_name{0} staffGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/da_DK_dictionary.xml 12 Jan 2010 01:20:14 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_manage_learnerExpp_lblSlå "Eksportér portfolio for bruger" tilLabel for Enable export portfolio for Learnerls_confirm_expp_enabled"Eksportér portfolio" er nu slået til for brugereConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabled"Eksportér portfolio" er nu slået fra for brugereConfirmation message on disabling export portfolio for learnerscontinue_btnFortsætContinue button labelcheck_avail_btnCheck tilgængelighedCheck Availability button labells_continue_lblHej {1}! Du er ikke færdig med at redigere [0}.Continue message labells_sequence_live_edit_btnLive EditLive Edit buttonls_sequence_live_edit_btn_tooltipRedigér det aktuelle design for denne session.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblUndersøger...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblIkke tilgængelig, prøv igen.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblBeklager, {0} redigeres i øjeblikket af {1}.Warning message on Monitor locked screen.ls_learnerURL_lblBruger URLLearner URL:learner_viewJournals_btn Journal indlægLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipSe alle journalindlæg fra brugeretool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_status_active_lblOprettet men endnu ikke startetCurrent status description if active (enabled)mnu_help_helpHjælp til MonitoreringMenu bar Help itemls_manage_status_lblÆndr statusStatus managing label - Lesson detailsls_manage_start_btnStart nuStart immediately button - Lesson details (manage section)about_popup_version_lblVersionLabel displaying the version no on the About dialog.al_confirm_live_editDu er ved at åbne Live Edit. Ønsker du at fortsætte?Confirm warning (dialog) message displayed when opening Live Edit.al_sendSendSend button label on the system error dialogabout_popup_title_lblOm - {0}Title for the About Pop-up window.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} er registreret varmærke for {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDette program er freeware; du må videreformidle og/eller ændre det på de betingelser, som er angivet i GNU General Public License version 2, publiceret af Free Software Foundation.Label displaying the license statement in the About dialog.learners_group_name{0} brugereGroup name for the class's learners group.ls_remove_confirm_msgDu har valgt at fjerne denne lektion. Fjernede lektioner kan ikke hentes frem igen. Vil du fortsætte?remove confirm msgls_status_cmb_removeFjernLesson status option - Removels_status_removed_lblFjernetCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNej'No' on the alert dialogls_remove_warning_msgLektionen er ved at blive fjernet. Ønsker du at beholde den i arkivet?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} stabGroup name for the class's staff group.al_cancelAnnullérTo Confirm title for LFErrorls_manage_schedule_btnTidsplanSchedule start button - Lesson details (manage section)ls_win_editclass_cancel_btnAnnullérCancel button on Edit Class popupsched_act_lblTidsplanLabel for schedule gate activityws_RootRodRoot folder title for workspacemnu_file_scheduleTidsplanMenu bar Schedulemnu_go_scheduleTidsplanMenu bar Go to Schedule Tabws_dlg_cancel_buttonAnnullér2ccm_monitor_activityÅbn aktivitetsmonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpHjælp til monitoraktivitetLabel for Custom Context Monitor Activity Helptd_desc_textBrug af denne "At gøre" funktion er ikke nødvendig for at gennemføre sekvensen. Se hjælpesiden for mere information. <br><br>Denne funktion er nu i funktion.Todo tab descriptionopt_activity_titleValgfri aktivitetTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesUnderaktivitetNumber of child activities for Complex activity shown on canvas.ls_of_textafi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtHåndtér lektionHeading for Management section of Lesson Tabls_tasks_txtObligatoriske opgaverHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGå tilGo button on contribute entry itemlearner_exportPortfolio_btnEksportér portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_validation_schstartIngen dato blev valgt. Vælg dato og tidspunkt.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityEr du sikker på at du vil tvinge brugeren '{0}' til Aktivitet '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityDu har placeret brugeren '{0}' enten på hans/hendes aktuelle eller afsluttede Aktivitet '{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishEr du sikker på, at du vil tvinge brugeren {0} til slutningen af lektionen?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetPlacér venligst brugeren {0} på en aktivitet eller afslutningen af en lektion.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateFærdige brugereTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblTid (Timer : Minutter)Time fields title - Lesson details (manage section)ls_status_scheduled_lblFastsat tilLesson status option - Scheduled (Not Started)goContribute_btn_tooltipFærdiggør denne opgave nutool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHjælptool tip message for help button in toolbarrefresh_btn_tooltipGenindlæs de seneste progressionsdata for brugernetool tip message for the refresh buttonls_manage_editclass_btn_tooltipRedigér listen med brugere og instruktører, som er indskrevet til denne lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipVis alle brugere, som er indskrevet til denne lektiontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipSkift status for denne lektion baseret på drop down menuentool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksportér klasseportfolioen og gem den på din computere til senere brugtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksportér denne brugerportfolio og gem den på din computer til senere brugtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipStart lektionen nutool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipFastsæt lektionen til at starte på et senere tidspunkttool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDobbelklik for at se igangværende bidrag til brugernes aktuelle aktivitetertool tip message for current activity iconcompleted_act_tooltipDobbeltklik for at se bidrag til brugernes afsluttede aktivitetertool tip message for completed activity iconal_validation_schtimeAngiv et gyldigt tidspunktAlert message when user enters an invalid time for schedule startfinish_learner_tooltipFor at tvinge en bruger til at afslutte lektionen, træk brugerens ikon over til denne bjælke og slip detRollover message when user moves their mouse over the end gate bar in monitor tab viewal_doubleclick_todoactivityBeklager, bruger: {0} er ikke nået til denne aktivitet: {1} endnu.alert message when user double click on the todo activity in the sequence under learner tabal_alertNB!Generic title for Alert windowal_confirmBekræftTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSprogindstillingerne er ikke indlæstmessage for unsuccessful language loadingapp_chk_themeloadTemaindstillingerne er ikke indlæstmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan ikke fortsætte. Konkakt supportmessage if application cannot continue due to any errordb_datasend_confirmTak for at sende oplysninger til serverenMessage when user sucessfully dumps data to the servermnu_editRedigérMenu bar Editmnu_edit_copyKopiérMenu bar Edit &gt; Copymnu_edit_cutKlipMenu bar Edit &gt; Cutmnu_edit_pasteSæt indMenu bar Edit &gt; Pastemnu_fileFilMenu bar Filemnu_file_refreshGenindlæsMenu bar Refreshmnu_file_editclassRedigér klasseMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHjælpMenu bar Helpmnu_help_abtOmMenu bar Aboutperm_act_lblRettighederLabel for permission gate activitysynch_act_lblSynkronisérUsed as a label for the Synch Gate Activity Typews_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_tree_mywspMit arbejdsområdeThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacesys_error_msg_startFølgende fejl er opstået:Common System error message starting linesys_error_msg_finishDu er nødt til at genstarte LAMS Forfatter for at fortsætte. Ønsker du at gemme følgende information om fejlen med henblik på at afhjælpe problemet?Common System error message finish paragraphsys_errorSystem fejlSystem Error elert window titlemnu_file_exitExitMenu bar Exitmnu_view_learnersBrugereMenu bar Learnersmnu_goGå tilMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_learnersBrugereMenu bar Go to Learners Tabmnu_go_todoAt gøreMenu bar Todorefresh_btnGenindlæsRefresh buttonhelp_btnHjælpHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSekvensMonitor Sequence tabmtab_learnersBrugereMonitor Learners tabmtab_todoAt gøreMonitor Todo tabls_status_lblStatusStatus label - Lesson detailsls_learners_lblBrugereLearner label - Lesson detailsls_class_lblKlasseClass label - Lesson detailsls_manage_class_lblKlasseClass managing label - Lesson detailsls_manage_start_lblStartStart managing label - Lesson detailsls_manage_learners_btnVis brugereView learners button - Lesson details (manage section)ls_manage_editclass_btnRedigér klasseEdit class button - Lesson details (manage section)ls_manage_apply_btnAnvendStatus Apply button - Lesson details (manage section)ls_manage_date_lblDatoDate field title - Lesson details (manage section)ls_duration_lblTid gåetElapsed duration of lesson - Lesson detailsls_manage_status_cmbVælg statusStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktivérLesson status option - Activatels_status_cmb_disableDeaktivérLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkivLesson status option - Archivels_status_disabled_lblSuspenderetCurrent status description if suspended (disabled)ls_status_archived_lblArkiveretCurrent status description if archviedls_status_started_lblStartetCurrent status description if started (enabled)ls_win_editclass_titleRedigér klasseEdit class window titlels_win_learners_titleVis brugereView learners window titlemnu_viewVisMenu bar Viewls_win_editclass_save_btnGemSave button on Edit Class popupls_win_learners_close_btnLukClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblInstruktørerHeading for Staff list on Edit Class popupls_win_editclass_learners_lblBrugereHeading for Learners list on the Edit Class popupls_win_learners_heading_lblBrugere i klassenHeading on View Learners window panel.td_desc_headingAvancerede indstillingerTodo tab description headingls_continue_action_lblKlik på {0] for at fortsætte.Action label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/de_DE_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_status_disabled_lblVerschobenCurrent status description if suspended (disabled)ls_status_archived_lblArchiviertCurrent status description if archviedls_status_started_lblBegonnenCurrent status description if started (enabled)ls_win_editclass_titleKlasse bearbeitenEdit class window titlels_win_learners_titleTeilnehmer/innen anzeigenView learners window titlemnu_viewAnzeigenMenu bar Viewls_win_editclass_save_btnSpeichernSave button on Edit Class popupls_win_editclass_cancel_btnAbbrechenCancel button on Edit Class popupls_win_learners_close_btnBeendenClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblTrainer/innenHeading for Staff list on Edit Class popupls_win_editclass_learners_lblTeilnehmer/innenHeading for Learners list on the Edit Class popupls_win_learners_heading_lblTeilnehmer/innen in Klasse:Heading on View Learners window panel.td_desc_headingErweiterte Kontrollen:Todo tab description headingtd_desc_textDie Bearbeitung des Todo-Tab ist nicht notwendig, um die Sequenz abzuschließen. Weitere Informationenn auf der Hilfeseite. <br><br> Diese Funktion steht jetzt vollständig zur Verfügung. Todo tab descriptionopt_activity_titleOptionale AktivitätTitle for Optional Activity on canvas (monitoring)ls_of_textvoni.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLektion verwaltenHeading for Management section of Lesson Tabls_tasks_txtErforderliche AufgabenHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnStartGo button on contribute entry itemlearner_exportPortfolio_btnPortfolio exportierenLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_validation_schstartEs wurde noch kein datum eingetragen. Wählen Sie Datum und Zeit aus.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityWollen Sie Teilnehmer/in {0} wirklich dazu zwingen Aktivität '{1}' abzuschließen?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivitySie haben Teilnehmer/in {0} von der aktuellen oder der abgeschlossenen Aktivität '{1}' abgewählt. Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishSind Sie sicher, dass Sie Teilnehmer/in {0} zwingen wollen die Lektion bis zum Ende abzuschließen?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetBitte wählen Sie Teilnehmer/in {0} für eine Aktivität oder bis zum Ende der Lektion ab.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateFertige Teilnehmer/innen:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblZeit (Stunden:Minuten)Time fields title - Lesson details (manage section)ls_status_scheduled_lblGeplantLesson status option - Scheduled (Not Started)goContribute_btn_tooltipBeendenSie diese Aufgabe jetzttool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHilfetool tip message for help button in toolbarrefresh_btn_tooltipAktualisieren Sie die Lernfortschrittsdaten jetzt.tool tip message for the refresh buttonls_manage_editclass_btn_tooltipBearbeiten Sie die Liste der Teilnehmer/inenn und Trainer/innen für diese Lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipAlle Teilnehmer/innen dieser Lektion anzeigentool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipÄndern Sie den Status der Lektion (Dropdown-Auswahl)tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExport des Portfolios der Klasse auf Ihren Computer für spätere Auswertungen.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExport des Portfolios der Teilnehmer/innen auf Ihren Computer für spätere Auswertungen.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipLektion direkt startentool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipGeplante Lektion für späteren Beginntool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDoppelklick für Rückblick auf Teilnehmerbeiträge in derzeitiger Aktivitättool tip message for current activity iconcompleted_act_tooltipDoppelklick für Rückblick auf Teilnehmerbeiträge in abgeschlossenen Aktivitätentool tip message for completed activity iconal_validation_schtimeGeben Sie eine gültige Zeit ein.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipUm den/die Teilnehmer/in an das Ende der Lektion zu verschieben, ziehen Sie sein/ihr Icon an die entsprechende Stelle.Rollover message when user moves their mouse over the end gate bar in monitor tab viewal_doubleclick_todoactivitySorry, Teilnehmer/in {0} hat die Aktivität {1} noch nicht erreicht.alert message when user double click on the todo activity in the sequence under learner tabal_alertWarnungGeneric title for Alert windowal_cancelAbbrechenTo Confirm title for LFErroral_confirmBestätigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDie Sprachdateien wurden nicht geladenmessage for unsuccessful language loadingapp_chk_themeloadDie Themedateien wurden nicht geladenmessage for unsuccessful theme loadingapp_fail_continueDie Anwendung kann nicht fortgesetzt werden. Bitte kontakten Sie den Support.message if application cannot continue due to any errordb_datasend_confirmVielen Dank für die Übermittlung Ihrer Daten.Message when user sucessfully dumps data to the servermnu_editBearbeitenMenu bar Editmnu_edit_copyKopierenMenu bar Edit &gt; Copymnu_edit_cutAusschneidenMenu bar Edit &gt; Cutmnu_edit_pasteEinfügenMenu bar Edit &gt; Pastemnu_fileDateiMenu bar Filemnu_file_refreshAktualisierenMenu bar Refreshmnu_file_editclassKlasse bearbeitenMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHilfeMenu bar Helpmnu_help_abtÜberMenu bar Aboutperm_act_lblRechteLabel for permission gate activitysched_act_lblAblaufLabel for schedule gate activitysynch_act_lblSynchronisierenUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAbbrechen2ws_dlg_location_buttonOrtWorkspace dialogue Location btn labelws_tree_mywspMein ArtbeitsplatzThe root level of the treews_tree_orgsOrganisationenShown in the top level of the tree in the workspacesys_error_msg_startDieser Systemfehler ist auftgetreten:Common System error message starting linesys_error_msg_finishSie müssen den LAMS Monitor nun noch einmal starten. Wollen Sie Informationen über den aufgetretenen Fehler speichern, um sie weiter zu geben?Common System error message finish paragraphsys_errorSystemfehlerSystem Error elert window titlemnu_file_scheduleAblaufMenu bar Schedulemnu_file_exitAusgangMenu bar Exitmnu_view_learnersTeilnehmer/innen...Menu bar Learnersmnu_goGoMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_scheduleAblaufMenu bar Go to Schedule Tabmnu_go_learnersTeilnehmer/innenMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todorefresh_btnAktualisierenRefresh buttonhelp_btnHilfeHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSequenzMonitor Sequence tabmtab_learnersTeilnehmer/innenMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblTeilnehmer/innen:Learner label - Lesson detailsls_class_lblKlasse:Class label - Lesson detailsls_manage_class_lblKlasse:Class managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnTeilnehmer anzeigenView learners button - Lesson details (manage section)ls_manage_editclass_btnKlase bearbeitenEdit class button - Lesson details (manage section)ls_manage_apply_btnAusführenStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnAblaufSchedule start button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblAbgelaufene Zeit:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbAusgewählter Status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktivierenLesson status option - Activatels_status_cmb_disableDeaktivierenLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchivLesson status option - Archivels_manage_status_lblBearbeitungsstatus:Status managing label - Lesson detailslbl_num_activitiesTeilaktivitätenNumber of child activities for Complex activity shown on canvas.ls_manage_learnerExpp_lblPortfolioexport für Teilnehmer/innen aktivierenLabel for Enable export portfolio for Learnerls_confirm_expp_enabledPortfolioexport für Teilnehmer/innen ist jetzt aktivConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledPortfolioexport für Teilnehmer/innen ist jetzt gesperrtConfirmation message on disabling export portfolio for learnersccm_monitor_activityAktivitätenbeobachtung öffnenLabel for Custom Context Monitor Activityccm_monitor_activityhelpHilfe zur AktivitätenbeobachtungLabel for Custom Context Monitor Activity Helpls_learnerURL_lblTeilnehmer/innen URLLearner URL:learner_viewJournals_btnJournaleinträgeLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipAlle von Teilnehmer/innen gespeicherte Jouraleinträge ansehentool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.learners_group_name{0} Teilnehmer/innenGroup name for the class's learners group.ls_remove_confirm_msgSie haben das Löschen der Lektion gewählt. Gelöschte Lektionen könenn nicht wieder hergestellt werden. Wollen Sie fortfahren?remove confirm msgls_status_cmb_removeLöschenLesson status option - Removels_status_removed_lblGelöschtCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNein'No' on the alert dialogls_remove_warning_msgHinweis: Diese Lektion soll gelöscht werden. Soll sie statt dessen archiviert werden?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} Trainer/innenGroup name for the class's staff group.check_avail_btnVerfügbakeit prüfenCheck Availability button labelcontinue_btnWeiterContinue button labells_continue_lblHallo {1}, Sie haben die Bearbeitung von {0} abgeschlossen.Continue message labells_sequence_live_edit_btnLaufende Lektion bearbeitenLive Edit buttonls_sequence_live_edit_btn_tooltipDas Design der aktuellen Lektion bearbeitenTool tip message for Live Edit buttonmsg_bubble_check_action_lblPrüfung...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNicht verfügbar. Noch einmal probieren.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSorry, {0} wird zur Zeit von {1} bearbeitet.Warning message on Monitor locked screen.al_confirm_live_editSie versuchen gerade eine laufende Lektion zu bearbeiten. Wollen siefortsetzenConfirm warning (dialog) message displayed when opening Live Edit.al_sendSendenSend button label on the system error dialogabout_popup_title_lblÜber - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} ist ein geschütztes Markenzeichen der {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDieses Program mit freie Software. Unter den Bedingungen der GNU General Public License Version 2 (veröffentlicht durch die Free Software Foundation) kann es weiter verbreitet und/oder bearbeitet werden.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.mnu_help_helpHilfe zur BeobachtungMenu bar Help itemls_manage_start_btnJetzt beginnenStart immediately button - Lesson details (manage section)ls_status_active_lblAngelegt, aber noch nicht begonnenCurrent status description if active (enabled)ls_continue_action_lblKlick {0}, zum fortsetzenAction label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/el_GR_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgfinish_learner_tooltipΓια την Υποχρεωτική Προώθηση ενός εκπαιδευόμενου στο τέλος του μαθήματος, σύρετε το εικονίδιο του πάνω από τη μπάρα αυτή κι αφήστε το.mnu_view_learnersΕκπαιδευομένων ... view_act_mapped_competencesΠροβολή Συνδεδεμένων Ικανοτήτωνabout_popup_title_lblΠερί - {0}about_popup_version_lblΈκδοση staff_group_name{0} επόπτες al_confirm_forcecomplete_to_end_of_branching_seqΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο {0} στο τέλος του κλάδου αυτής της ακολουθίας;al_confirm_forcecomplete_toactivityΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο '{0}' στη Δραστηριότητα '{1}'; al_confirm_forcecomplete_tofinishΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο'{0}' στο τέλος του μαθήματος; al_activity_view_competence_mappings_invalidΠαρακαλώ σιγουρευτείτε ότι είναι επιλεγμένη μία δραστηριότητα πρίν προσπαθείτε να δείτε τις συνδέσεις ικανοτήτωνbranch_mapping_dlg_conditions_dgd_lblΣυνδέσειςlearner_exportPortfolio_btn_tooltipΕξαγωγή του φακέλου εργασιών του εκπαιδευόμενου και αποθήκευση στον ΗΥ σας για μελλοντική αναφορά. class_exportPortfolio_btn_tooltipΕξαγωγή του φακέλου εργασιών της τάξης και αποθήκευση στον ΗΥ σας για μελλοντική αναφορά.ls_win_editclass_save_btnΑποθήκευσηls_win_editclass_staff_lblΕπόπτεςclose_mc_tooltipΕλαχιστοποίησηlbl_num_sequences{0} - Ακολουθίεςmv_search_not_found_msg{0} δεν είχαν βρεθεί.mv_search_current_page_lblΣελίδα {0} από {1}al_cancelΑκύρωσηal_confirmΕπιβεβαίωσηal_okΟΚmnu_edit_copyΑντιγραφήmnu_edit_cutΑποκοπήmnu_edit_pasteΕπικόλλησηmnu_fileΑρχείοmnu_file_refreshΑνανέωσηmnu_helpΒοήθειαmnu_help_abtΣχετικά perm_act_lblΆδειαws_RootΡίζαws_dlg_cancel_buttonΑκύρωσηws_dlg_location_buttonΤοποθεσίαmv_search_go_btn_lblΠήγαινεmnu_file_exitΈξοδοςmnu_go_todoΓια να κάνετεrefresh_btnΑνανέωσηhelp_btnΒοήθειαmtab_seqΑκολουθίαmtab_todoΓια να κάνετεls_status_lblΚατάστασηls_class_lblΤάξηls_manage_class_lblΤάξηls_status_started_lblΈχουν αρχίσειls_win_editclass_cancel_btnΑκύρωσηopt_activity_titleΠροαιρετική δραστηριότηταlbl_num_activitiesπαιδικές δραστηριότητεςls_of_textαπόcv_activity_helpURL_undefinedΔεν μπορώ να βρω τη σελίδα βοήθεια για {0}ls_status_cmb_disableΑπενεργοποίησηls_manage_start_lblΈναρξηws_tree_orgsΟργανισμοίls_status_cmb_enableΕνεργοποίησεls_confirm_expp_enabledΗ Εξαγωγή του φακέλου εργασιών είναι ενεργοποιημένη τώρα για τους εκπαιδευόμενουςls_status_cmb_activateΕνεργοποίησεls_remove_confirm_msgΕχετε επιλέξει να Διαγράψετε το μάθημα. Διαγραμμένα μαθήματα δε μπορούν να ανακληθούν. Θέλετε να συνεχίσετε;ls_status_removed_lblΔιαγραμμένοls_remove_warning_msgΠΡΟΣΟΧΗ: Το μάθημα πρόκειται να διαγραφεί. Θέλετε να κρατήσετε αυτό το μάθημα σαν αρχειοθετημένο;ws_tree_mywspΟ χώρος εργασίας μουls_status_active_lblΔημιουργήθηκε αλλά δεν εκκινήθηκεabout_popup_copyright_lbl© 2002-2008 Ίδρυμα {0}.al_validation_schtimeΠαρακαλώ εισάγετε μια έγκυρη ώρα.ls_status_scheduled_lblΠρογραμματισμένοsynch_act_lblΣυγχρονισμόςsys_error_msg_startΈνα επόμενο λάθος συστήματος συνέβηls_seq_status_synch_gateΠύλη συγχρονισμούls_seq_status_choose_groupingΕπέλεξε ομάδαls_seq_status_system_gateΠύλη Συστήματοςls_seq_status_not_setΔεν έχει ακόμα οριστείls_seq_status_sched_gateΗμερολόγιο Πύληςbranch_mapping_dlg_group_col_lblΟμάδαccm_monitor_view_group_mappingsΠροβολή Ομάδων Κλάδωνsched_act_lblΠρογραμματισμόςal_validation_schstartΔεν επιλέχθηκε ημερομηνία. Παρακαλώ επιλέξτε μια μέρα και ώραmsg_bubble_failed_action_lblΜη διαθέσιμο, Προσπαθήστε πάλι.goContribute_btn_tooltipΣυμπληρώστε αυτο το στόχο τώρα.ls_locked_msg_lblΣυγνώμη, {0} επεξεργάζεται αυτήν την περίοδο από τον/την {1}.app_chk_langloadΤα δεδομένα ης Γλώσσας δεν έχουν φορτωθείls_confirm_expp_disabledΗ Εξαγωγή του Φακέλου Εργασιών είναι απενεργοποιημένη τώρα για τους εκπαιδευόμενους ls_sequence_live_edit_btn_tooltipΕπεξεργαστείτε το τρέχον σχέδιο για αυτό το μάθημα.sys_error_msg_finishΜπορεί να χρειάζεται να επανεκκινήσετε LAMS Συγγραφέα για να ξεκινήσετε. Θέλετε να αποθηκεύσετε τις επόμενες πληροφορίες σχετικά μ αυτό το λάθοςtd_desc_textΗ χρήση αυτής της ετικέττας Να Κάνετε δεν απαιτείται να ολοκληρώσετε την ακολουθία. Δείτε τη σελίδα βοήθειας για περισσότερες πληροφορίες. Αυτό το χαρακτηριστικό γνώρισμα είναι τώρα πλήρως λειτουργικό.ls_win_editclass_organisation_lblΟργανισμόςls_win_learners_close_btnΚλείσιμοls_status_archived_lblΑρχειοθετημέναls_duration_lblΠαρερχόμενη Διάρκειαls_manage_date_lblΗμερομηνίαls_manage_schedule_btnΠρογραμματισμόςmtab_lessonΜάθημαmnu_go_scheduleΠρογραμματισμόςmnu_go_lessonΜάθημαmnu_file_scheduleΠρογραμματισμόςsys_errorΛάθος Συστήματοςdb_datasend_confirmΕυχαριστούμε για την αποστολή δεδομένων στον εξυπηρετητή.app_fail_continueΗ αίτημα δεν μπορεί να συνεχιστεί. Παρακαλώ επικοινωνήστε με την υποστήριξηapp_chk_themeloadΤα δεδομένα του θέματος δεν έχουν φορτωθείmv_search_invalid_input_msgΟ αριθμός σελίδων πρέπει να είναι μεταξύ 1 και {0}mv_search_error_msgΠαρακλώ εισαγάγετε ένα ερώτημα ή τον αριθμό σελίδας μεταξύ 1 και {0}mv_search_default_txtΕισαγάγετε την ερώτηση που ζητάτε ή τον αριθμό σελίδαςls_manage_apply_btn_tooltipΑλλαγή της κατάστασης του μαθήματος με βάση την επιλογή.al_error_forcecomplete_to_different_seq{0} δεν μπορεί να μετακινηθεί σε μία δραστηριότητα που βρίσκεται σε διαφορετικό κλάδο ή ακολουθία.competence_desc_lblΠεριγραφήls_learnerURL_lblURL Εκπαιδευόμενου: view_competences_dlgΠροβολή Ικανοτήτωνls_manage_time_lblΧρόνος (Ώρες:Λεπτά)help_btn_tooltipΒοήθειαorder_learners_by_completion_lblΤαξινόμηση ως προς ολοκλήρωσηls_confirm_presence_disabledΤώρα οι Εκπαιδευόμενοι δεν μπορούν να βλέπουν ποιοι είναι είναι σε απευθείας Σύνδεση (on line)ls_status_cmb_removeΔιαγραφήal_yesΝαιal_noΟχιls_win_learners_heading_lblΕκπαιδευόμενοι στην τάξη:ls_learners_lblΕκπαιδευόμενοι: ls_manage_presenceEnabled_lblΕπιτρέπεται οι Εκπαιδευόμενοι να βλέπουν ποιοι είναι σε απευθείας Σύνδεση (on line)ls_seq_status_moderationΔιαχειριστής Εποπτώνcontinue_btnΣυνεχιστείτε mnu_help_helpΒοήθεια Εποπτείαςal_sendΑποστολήccm_monitor_activityΆνοιγμα Εποπτείας Δραστηριότηταςccm_monitor_activityhelpΒοήθεια Δραστηριότητα Εποπτείαςmtab_learnersΕκπαιδευόμενοι mnu_editΕπεξεργασίαls_confirm_presence_enabledΤώρα οι Εκπαιδευόμενοι μπορούν να βλέπουν ποιοι είναι είναι σε απευθείας Σύνδεση (on line)mnu_file_editclassΕπεξεργασία Τάξηςtd_goContribute_btnGols_manage_status_lblΑλλαγή Κατάστ.ls_continue_lblΓεια {1}, δεν έχετε τελειώσει την επεξεργασία του {0}.mnu_go_learnersΕκπαιδευόμενοι ls_win_editclass_titleΕπεξεργασία Τάξηςls_sequence_live_edit_btnΖωντανή Επεξ.ls_manage_editclass_btnΕπεξεργασία Τάξηςal_activity_openContent_invalidΣυγνώμη! Απαιτείται η επιλογή μιας δραστηριότητας πριν επιλέξετε Άνοιγμα/Επεξεργασία από το μενού του δεξιού πλήκτρου.ls_continue_action_lblΚάντε κλικ στο {0} για να συνεχίσει. ls_manage_learnerExpp_lblΕνεργοποίηση Εξαγωγής Φακέλου Εργασιών για τους Εκπαιδευόμενουςls_manage_start_btnΈναρξη Τώραview_competences_in_ld_lblΙκανότητες στο σχεδιασμό μάθησης: {0}ls_manage_start_btn_tooltipΈναρξη μαθήματος τώρα.learners_group_name{0} εκπαιδευόμενοι ls_win_learners_titleΠροβολή Εκπαιδευόμενων ls_seq_status_define_laterΟρίστε Αργότεραls_seq_status_contributionΣυνεισφοράal_confirm_live_editΕίστε έτοιμοι να κάνετε "ζωντανή" επεξεργασία μιας δραστηριότητας ενώ εκπονείται. Θέλετε να συνεχιστείτε;ls_seq_status_perm_gateΆδεια Πύλης ls_win_editclass_learners_lblΕκπαιδευόμενοιlearner_viewJournals_btnΠεριοδικό Κατ.mnu_go_sequenceΑκολουθίαccm_monitor_view_condition_mappingsΠροβολή Συνθηκών Κλάδωνmv_search_index_view_btn_lblΠροβολή Ευρετηρίουbranch_mapping_dlg_branch_col_lblΚλάδοςbranch_mapping_dlg_condition_col_lblΣυνθήκηmnu_viewΠροβολή ls_manage_learners_btnΕκπαιδευόμενοιrefresh_btn_tooltipΞανακατεβάστε τα τελευταία δεδομένα προόδου για τους εκπαιδευόμενους current_act_tooltipΔιπλό κλικ για την ανασκόπηση της προόδου συμβολής του εκπαιδευόμενου στη συμπλήρωση της δραστηριότητας. learner_viewJournals_btn_tooltipΠροβολή όλων των Άρθρων του Περιοδικού με τις Εγγραφές Ημερολογίου τους που δημοσιεύθηκαν από τους Εκπαιδευόμενους.mnu_goΜετάβασηcompleted_act_tooltipΔιπλό κλικ για την ανασκόπηση της συμβολής του εκπαιδευόμενου στην συμπλήρωση της δραστηριότητας.ls_manage_learners_btn_tooltipΔείχνει όλους τους εκπαιδευόμενους που έχουν οριστεί στο μάθημα αυτό.al_doubleclick_todoactivityΛυπούμαστε, εκπαιδευόμενος: {0} δεν έχει προσεγγίσει ακόμη τη δραστηριότητα: {1}.about_popup_trademark_lbl{0} είναι ένα εμπορικό σήμα {του ιδρύματος 0} ({1}).al_error_forcecomplete_invalidactivityΤοποθετήσατε τον εκπαιδευόμενο '{0}' στην τρέχουσα ή στην πλήρη δραστηριότητα '{1}' al_error_forcecomplete_notargetΠαρακαλώ τοπηθετήστε τον εκπαιδευόμενο '{0}' σε μια δραστηριότητα ή τέλος μαθήματος.title_sequencetab_endGateΧρήστες που τελείωσαν.ls_manage_schedule_btn_tooltipΠρογραμματισμός μαθήματος για έναρξη σε μελλοντικό χρόνο.learner_exportPortfolio_btnΕξαγ. Φακ. Εργασιώνmnu_file_startΈναρξηcheck_avail_btnΈλεγχος Διαθεσιμότηταςmsg_bubble_check_action_lblΈλεγχος . . .ls_status_disabled_lblΥπό Αναστολήls_status_cmb_archiveΑρχειοθέτησηls_manage_apply_btnΕφαρμογήls_manage_txtΔιαχείριση Μαθήματοςls_tasks_txtΑπαιτούμενες Εργασίεςal_alertΕιδοποίησηls_seq_status_teacher_branchingΚλάδος επιλεγόμενος από τον Καθηγητήςcompetences_mapped_to_act_lblΣυνδεδεμένες Ικανότητες στο {0}mapped_competences_lblΣυνδεδεμένες Ικανότητεςmsg_no_learners_in_lessonΈνας ή περισσότεροι εκπαιδευόμενοι πρέπει να είναι επιλεγμένοιcompetence_title_lblΤίτλοςlabel.grouping.general.instructions.branchingΔεν μπορείτε να προσθέσετε ή να αφαιρέσετε ομάδες σε αυτή την ομαδοποίηση αφού χρησιμοποιείται για διακλάδωση διότι η προσθήκη και η αφαίρεση των ομάδων θα είχαν επιπτώσεις στην οργάνωση της διακλάδωσης. Μπορείτε μόνο να προσθέσετε/απομακρύνετε τους χρήστες στις υπάρχουσες ομάδες.cv_design_unsaved_live_editΟι αλλαγές που δεν έχουν αποθηκευθεί θα σωθούν αυτόματα. Θέλετε να συνεχίσετε την εισαγωγή/(συν)ένωση;ls_manage_status_cmbΕπιλ. Κατάστασηview_time_chart_btn_tooltipΔείτε ένα διάγραμμα με την πρόοδο τους ως προς το χρόνο των επιλεγμένων εκπαιδευομένων για κάθε δραστηριότηταls_manage_editclass_btn_tooltipΕπεξεργασία λίστας Εκπαιδευόμενων και Εποπτών που έχουν οριστεί για αυτό το μάθημα.about_popup_license_lblΑυτό το πρόγραμμα είναι ελεύθερο λογισμικό μπορείτε να το διανείμετε ή/και να το τροποποιήσετε υπό τους όρους της άδειας GNU όπως δημοσιεύονται από το Ίδρυμα Ελεύθερο Λογισμικού.td_desc_headingΠροχωρημένοι έλεγχοιls_win_learners_heading_class_lblΤάξηls_win_learners_heading_activity_lblΔραστηριότηταlearner_plus_tooltip (0) εκπαιδευόμενοι. Κάντε διπλό κλικ για να δείτε την πλήρη λίστα. view_time_graph_btnΠροβολή Γραφήματος Χρόνουview_time_graph_btn_tooltipΔείτε ένα διάγραμμα των εκπαιδευμένων και της προόδοτ τους στο χρόνο για κάθε δραστηριότηταview_time_chart_btnΠροβολή Διαγράματος Χρόνουsupport_act_titleΔραστηριότητα Υποστήριξηςal_error_forcecomplete_support_actΔεν μπορείτε να υποχρεώσετε ένα εκπαιδευόμενο να ολοκληρώσει μια δραστηριότητα υποστήριξηςls_confirm_presence_im_enabledΤα Άμεσσα Μηνύματα είναι ενεργάls_confirm_presence_im_disabledΤα Άμεσσα Μηνύματα είναι ανενεργάls_manage_presenceImEnabled_lblΕνεργοποίηση Άμεσων Μηνυμάτων \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/en_AU_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} cannot be dropped on an activity that is in a different branch or sequence.mnu_go_sequenceSequenceal_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportdb_datasend_confirmThanks for Sending data to servermnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_fileFilemnu_file_refreshRefreshmnu_file_editclassEdit Classmnu_file_startStartmnu_helpHelpmnu_help_abtAboutperm_act_lblPermissionsched_act_lblSchedulesynch_act_lblSynchronisews_RootRootws_dlg_cancel_buttonCancelws_dlg_location_buttonLocationws_tree_mywspMy Workspacews_tree_orgsOrganisationssys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errormnu_file_scheduleSchedulemnu_file_exitExitmnu_view_learnersLearners...mnu_goGomnu_go_lessonLessonmnu_go_scheduleSchedulemnu_go_learnersLearnersmnu_go_todoTodorefresh_btnRefreshhelp_btnHelpmtab_lessonLessonmtab_seqSequencemtab_learnersLearnersmtab_todoTodols_status_lblStatus:ls_learners_lblLearners:ls_class_lblClass:ls_manage_class_lblClass:ls_manage_start_lblStart:ls_manage_learners_btnView Learnersls_manage_editclass_btnEdit Classls_manage_apply_btnApplyls_manage_schedule_btnSchedulels_manage_date_lblDatels_duration_lblElapsed Duration:ls_manage_status_cmbSelect status:ls_status_cmb_activateActivatels_status_cmb_disableDisablels_status_cmb_enableActivels_status_cmb_archiveArchivels_status_archived_lblArchivedls_status_started_lblStartedls_win_editclass_titleEdit Classls_win_learners_titleView Learnersmnu_viewViewls_win_editclass_save_btnSavels_win_editclass_cancel_btnCancells_win_learners_close_btnClosels_win_editclass_organisation_lblOrganisationls_win_editclass_learners_lblLearnerstd_desc_headingAdvanced Controls:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.&lt;br&gt;&lt;br&gt;This feature is now fully functional.opt_activity_titleOptional Activityls_of_textofls_manage_txtManage Lessonls_tasks_txtRequired Taskstd_goContribute_btnGols_status_disabled_lblDisabledlearner_exportPortfolio_btnExport Portfoliols_status_scheduled_lblScheduledal_error_forcecomplete_invalidactivityYou have dropped the learner '{0}' on either its current or on its completed activity '{1}'al_error_forcecomplete_notargetPlease drop the learner '{0}' on an activity or end of lesson.title_sequencetab_endGateFinished Learners:al_confirm_forcecomplete_toactivityAre you sure you want to force complete learner '{0}' to Activity '{1}'?al_confirm_forcecomplete_tofinishAre you sure you want to force complete learner '{0}' to the end of lesson?ls_manage_learnerExpp_lblEnable export portfolio for learnerls_confirm_expp_enabledExport Portfolio is now enabled for learnersls_confirm_expp_disabledExport Portfolio is now disabled for learnersrefresh_btn_tooltipReload the latest progress data for the learners ls_manage_schedule_btn_tooltipSchedule lesson to start in a future timecurrent_act_tooltipDouble click to review in-progress contribution for learner's current activitycompleted_act_tooltipDouble click to review the contribution for learner's completed activityls_learnerURL_lblLearner URL:ls_manage_status_lblChange Status:al_validation_schstartNo date was selected. Please select a date and time.ls_manage_time_lblTime (Hours : Minutes)ls_manage_learners_btn_tooltipShows all the learners assigned to this lessonls_manage_apply_btn_tooltipChange the status of this lesson based on the drop down selectionls_manage_start_btn_tooltipStart the lesson immediatelygoContribute_btn_tooltipComplete this task nowhelp_btn_tooltipHelpls_manage_start_btnStart Nowls_status_active_lblCreated but not startedal_doubleclick_todoactivitySorry, learner: {0} has not reached the activity: {1}, yet.ls_confirm_presence_enabledNow learners can see who is onlinels_confirm_presence_disabledNow learners cannot see who is onlinelearner_viewJournals_btnJournal Entrieslearner_viewJournals_btn_tooltipView all Journal Entries saved by Learnerslabel.grouping.general.instructions.branchingYou cannot add or remove groups for this grouping as it is used for Branching and adding and removing groups would affect the group to branch setup. You can only add/remove users to the existing groups.mv_search_default_txtEnter search query or page numberbranch_mapping_dlg_conditions_dgd_lblMappingsal_validation_schtimePlease enter a valid time.ccm_monitor_activityOpen Activity Monitorccm_monitor_activityhelpMonitor Activity Helpmnu_help_helpMonitoring Helpsupport_act_titleSupport Activityal_error_forcecomplete_support_actCannot force complete a learner to a support activityfinish_learner_tooltipTo force complete a learner to the end of lesson, drag the learner icon over to this bar and release the iconabout_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} learnersls_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson?ls_remove_confirm_msgYou have selected to Remove this lesson. Removed lessons cannot be retrieved again. Continue?ls_status_cmb_removeRemovels_status_removed_lblRemovedal_yesYesal_noNoal_confirm_live_editYou are about to open Live Edit. Do you wish to continue?al_sendSendcheck_avail_btnCheck Availabilitycontinue_btnContinuels_continue_lblHi {1}, you haven't finished editing <b>{0}</b>.ls_sequence_live_edit_btnLive Editls_sequence_live_edit_btn_tooltipEdit the current design for this lesson.msg_bubble_check_action_lblChecking ...msg_bubble_failed_action_lblUnavailable, Try Again.ls_locked_msg_lblSorry, <b>{0}</b> is currently being edited by {1}.ls_continue_action_lblClick {0} to proceed.mv_search_error_msgPlease enter a search query or page number between 1 and {0}about_popup_copyright_lbl© 2002-2009 {0} Foundation. mv_search_invalid_input_msgThe page number must be between 1 and {0}lbl_num_sequences{0} - Sequencesal_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.lbl_num_activities{0} - Activitiesls_win_learners_heading_activity_lblActivityls_win_editclass_staff_lblMonitorsls_manage_editclass_btn_tooltipEdit the list of learners and monitors assigned to this lessonstaff_group_name{0} monitorsmv_search_not_found_msg{0} was not found.mv_search_current_page_lblPage {0} of {1}mv_search_go_btn_lblGomv_search_index_view_btn_lblIndex Viewclose_mc_tooltipMinimizels_seq_status_moderationModerationls_seq_status_define_laterDefine Laterls_seq_status_perm_gatePermission Gatels_seq_status_synch_gateSynchronise Gatels_seq_status_choose_groupingChoose Groupingls_seq_status_contributionContributionls_seq_status_system_gateSystem Gatels_seq_status_teacher_branchingTeacher Chosen Branchingls_seq_status_not_setNot yet setls_seq_status_sched_gateSchedule Gateapp_chk_langloadThe language data has not been loadedbranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionccm_monitor_view_group_mappingsView Groups to Branchesccm_monitor_view_condition_mappingsView Conditions to Branchesbranch_mapping_dlg_group_col_lblGroupcv_activity_helpURL_undefinedCannot find help page for {0}cv_design_unsaved_live_editUnsaved changes will be automatically saved. Do you wish to continue with insert/merge? ls_win_learners_heading_class_lblClassmapped_competences_lblMapped Competenciescompetences_mapped_to_act_lblCompetencies mapped to {0}competence_title_lblTitlecompetence_desc_lblDescriptionview_competences_dlgView Competenciesview_competences_in_ld_lblCompetencies in learning design: {0}view_act_mapped_competencesView Mapped Competenciesls_manage_presenceEnabled_lblAllow Learners to see who is onlineal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.order_learners_by_completion_lblOrder by completional_confirm_forcecomplete_to_end_of_branching_seqAre you sure you want to force complete learner {0} to the end of this branching sequence?learner_plus_tooltip{0} learners. Double-click to see the full list.ls_win_learners_heading_lblLearners in {0}: {1}class_exportPortfolio_btn_tooltipExport the class portfolio and save it on you computer for future referencelearner_exportPortfolio_btn_tooltipExport this learner portfolio and save it on you computer for future referenceview_time_graph_btnView Time Graphview_time_graph_btn_tooltipView a graph of student progress against time for each activityview_time_chart_btnView Time Chartview_time_chart_btn_tooltipView a chart of the selected student's progress against time for each activitymsg_no_learners_in_lessonOne or more learners must be selectedls_manage_presenceImEnabled_lblEnable Instant Messaging ls_confirm_presence_im_enabledInstant Messaging is now enabledls_confirm_presence_im_disabledInstant Messaging is now disabled \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/en_dictionary.xml 12 Jan 2010 01:20:14 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} cannot be dropped on an activity that is in a different branch or sequence.mnu_go_sequenceSequenceal_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportdb_datasend_confirmThanks for Sending data to servermnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_fileFilemnu_file_refreshRefreshmnu_file_editclassEdit Classmnu_file_startStartmnu_helpHelpmnu_help_abtAboutperm_act_lblPermissionsched_act_lblSchedulesynch_act_lblSynchronisews_RootRootws_dlg_cancel_buttonCancelws_dlg_location_buttonLocationws_tree_mywspMy Workspacews_tree_orgsOrganisationssys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errormnu_file_scheduleSchedulemnu_file_exitExitmnu_view_learnersLearners...mnu_goGomnu_go_lessonLessonmnu_go_scheduleSchedulemnu_go_learnersLearnersmnu_go_todoTodorefresh_btnRefreshhelp_btnHelpmtab_lessonLessonmtab_seqSequencemtab_learnersLearnersmtab_todoTodols_status_lblStatus:ls_learners_lblLearners:ls_class_lblClass:ls_manage_class_lblClass:ls_manage_start_lblStart:ls_manage_learners_btnView Learnersls_manage_editclass_btnEdit Classls_manage_apply_btnApplyls_manage_schedule_btnSchedulels_manage_date_lblDatels_duration_lblElapsed Duration:ls_manage_status_cmbSelect status:ls_status_cmb_activateActivatels_status_cmb_disableDisablels_status_cmb_enableActivels_status_cmb_archiveArchivels_status_archived_lblArchivedls_status_started_lblStartedls_win_editclass_titleEdit Classls_win_learners_titleView Learnersmnu_viewViewls_win_editclass_save_btnSavels_win_editclass_cancel_btnCancells_win_learners_close_btnClosels_win_editclass_organisation_lblOrganisationls_win_editclass_learners_lblLearnerstd_desc_headingAdvanced Controls:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.&lt;br&gt;&lt;br&gt;This feature is now fully functional.opt_activity_titleOptional Activityls_of_textofls_manage_txtManage Lessonls_tasks_txtRequired Taskstd_goContribute_btnGols_status_disabled_lblDisabledlearner_exportPortfolio_btnExport Portfoliols_status_scheduled_lblScheduledal_error_forcecomplete_invalidactivityYou have dropped the learner '{0}' on either its current or on its completed activity '{1}'al_error_forcecomplete_notargetPlease drop the learner '{0}' on an activity or end of lesson.title_sequencetab_endGateFinished Learners:al_confirm_forcecomplete_toactivityAre you sure you want to force complete learner '{0}' to Activity '{1}'?al_confirm_forcecomplete_tofinishAre you sure you want to force complete learner '{0}' to the end of lesson?ls_manage_learnerExpp_lblEnable export portfolio for learnerls_confirm_expp_enabledExport Portfolio is now enabled for learnersls_confirm_expp_disabledExport Portfolio is now disabled for learnersrefresh_btn_tooltipReload the latest progress data for the learners ls_manage_schedule_btn_tooltipSchedule lesson to start in a future timecurrent_act_tooltipDouble click to review in-progress contribution for learner's current activitycompleted_act_tooltipDouble click to review the contribution for learner's completed activityls_learnerURL_lblLearner URL:ls_manage_status_lblChange Status:al_validation_schstartNo date was selected. Please select a date and time.ls_manage_time_lblTime (Hours : Minutes)ls_manage_learners_btn_tooltipShows all the learners assigned to this lessonls_manage_apply_btn_tooltipChange the status of this lesson based on the drop down selectionls_manage_start_btn_tooltipStart the lesson immediatelygoContribute_btn_tooltipComplete this task nowhelp_btn_tooltipHelpls_manage_start_btnStart Nowls_status_active_lblCreated but not startedal_doubleclick_todoactivitySorry, learner: {0} has not reached the activity: {1}, yet.ls_confirm_presence_enabledNow learners can see who is onlinels_confirm_presence_disabledNow learners cannot see who is onlinelearner_viewJournals_btnJournal Entrieslearner_viewJournals_btn_tooltipView all Journal Entries saved by Learnerslabel.grouping.general.instructions.branchingYou cannot add or remove groups for this grouping as it is used for Branching and adding and removing groups would affect the group to branch setup. You can only add/remove users to the existing groups.mv_search_default_txtEnter search query or page numberbranch_mapping_dlg_conditions_dgd_lblMappingsal_validation_schtimePlease enter a valid time.ccm_monitor_activityOpen Activity Monitorccm_monitor_activityhelpMonitor Activity Helpmnu_help_helpMonitoring Helpsupport_act_titleSupport Activityal_error_forcecomplete_support_actCannot force complete a learner to a support activityfinish_learner_tooltipTo force complete a learner to the end of lesson, drag the learner icon over to this bar and release the iconabout_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} learnersls_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson?ls_remove_confirm_msgYou have selected to Remove this lesson. Removed lessons cannot be retrieved again. Continue?ls_status_cmb_removeRemovels_status_removed_lblRemovedal_yesYesal_noNoal_confirm_live_editYou are about to open Live Edit. Do you wish to continue?al_sendSendcheck_avail_btnCheck Availabilitycontinue_btnContinuels_continue_lblHi {1}, you haven't finished editing <b>{0}</b>.ls_sequence_live_edit_btnLive Editls_sequence_live_edit_btn_tooltipEdit the current design for this lesson.msg_bubble_check_action_lblChecking ...msg_bubble_failed_action_lblUnavailable, Try Again.ls_locked_msg_lblSorry, <b>{0}</b> is currently being edited by {1}.ls_continue_action_lblClick {0} to proceed.mv_search_error_msgPlease enter a search query or page number between 1 and {0}about_popup_copyright_lbl© 2002-2009 {0} Foundation. mv_search_invalid_input_msgThe page number must be between 1 and {0}lbl_num_sequences{0} - Sequencesal_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.lbl_num_activities{0} - Activitiesls_win_learners_heading_activity_lblActivityls_win_editclass_staff_lblMonitorsls_manage_editclass_btn_tooltipEdit the list of learners and monitors assigned to this lessonstaff_group_name{0} monitorsmv_search_not_found_msg{0} was not found.mv_search_current_page_lblPage {0} of {1}mv_search_go_btn_lblGomv_search_index_view_btn_lblIndex Viewclose_mc_tooltipMinimizels_seq_status_moderationModerationls_seq_status_define_laterDefine Laterls_seq_status_perm_gatePermission Gatels_seq_status_synch_gateSynchronise Gatels_seq_status_choose_groupingChoose Groupingls_seq_status_contributionContributionls_seq_status_system_gateSystem Gatels_seq_status_teacher_branchingTeacher Chosen Branchingls_seq_status_not_setNot yet setls_seq_status_sched_gateSchedule Gateapp_chk_langloadThe language data has not been loadedbranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionccm_monitor_view_group_mappingsView Groups to Branchesccm_monitor_view_condition_mappingsView Conditions to Branchesbranch_mapping_dlg_group_col_lblGroupcv_activity_helpURL_undefinedCannot find help page for {0}cv_design_unsaved_live_editUnsaved changes will be automatically saved. Do you wish to continue with insert/merge? ls_win_learners_heading_class_lblClassmapped_competences_lblMapped Competenciescompetences_mapped_to_act_lblCompetencies mapped to {0}competence_title_lblTitlecompetence_desc_lblDescriptionview_competences_dlgView Competenciesview_competences_in_ld_lblCompetencies in learning design: {0}view_act_mapped_competencesView Mapped Competenciesls_manage_presenceEnabled_lblAllow Learners to see who is onlineal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.order_learners_by_completion_lblOrder by completional_confirm_forcecomplete_to_end_of_branching_seqAre you sure you want to force complete learner {0} to the end of this branching sequence?learner_plus_tooltip{0} learners. Double-click to see the full list.ls_win_learners_heading_lblLearners in {0}: {1}class_exportPortfolio_btn_tooltipExport the class portfolio and save it on you computer for future referencelearner_exportPortfolio_btn_tooltipExport this learner portfolio and save it on you computer for future referenceview_time_graph_btnView Time Graphview_time_graph_btn_tooltipView a graph of student progress against time for each activityview_time_chart_btnView Time Chartview_time_chart_btn_tooltipView a chart of the selected student's progress against time for each activitymsg_no_learners_in_lessonOne or more learners must be selectedls_manage_presenceImEnabled_lblEnable Instant Messaging ls_confirm_presence_im_enabledInstant Messaging is now enabledls_confirm_presence_im_disabledInstant Messaging is now disabled \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/es_ES_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_manage_status_lblCambiar Status:ls_manage_start_btnComenzar Ahorals_status_active_lblCreado pero no iniciadols_confirm_presence_enabledEstudiantes pueden ver quien esta onlineclose_mc_tooltipMinimizaral_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okOKapp_chk_themeloadLa información de plantilla no ha sido cargadaapp_fail_continueLa aplicación no puede continuar. Contacte al administrador de sistema.db_datasend_confirmLa información de fallo ha sido enviada al servidor. Gracias.mnu_editEditarmnu_edit_copyCopiarmnu_edit_cutCortarmnu_edit_pastePegarmnu_fileArchivomnu_file_refreshRefrescarmnu_file_editclassEditar Clasemnu_file_startComenzarmnu_helpAyudamnu_help_abtAcerca deperm_act_lblPermisosched_act_lblTiempows_RootRaízws_dlg_cancel_buttonCancelarws_dlg_location_buttonLocalizaciónws_tree_mywspMi Espacio de Trabajows_tree_orgsOrganizacionessys_error_msg_startHa ocurrido un error de sistema.sys_error_msg_finishTiene que recomenzar sys_errorError de sistemamnu_file_scheduleTiempomnu_file_exitSalirmnu_view_learnersEstudiantes...mnu_goIrmnu_go_lessonLecciónmnu_go_scheduleTiempomnu_go_learnersEstudiantesmnu_go_todoPara hacerrefresh_btnRefrescarhelp_btnAyudamtab_lessonLecciónmtab_learnersEstudiantesmtab_todoPara hacerls_status_lblStatusls_learners_lblEstudiantesls_class_lblClasels_manage_class_lblClasels_manage_start_lblComenzarls_manage_learners_btnVer Estudiantesls_manage_editclass_btnEditar Clasels_manage_apply_btnAplicar cambiosls_manage_schedule_btnTiempols_manage_date_lblFechals_duration_lblDuración:ls_manage_status_cmbSeleccione statusls_status_cmb_activateActivarls_status_cmb_disableDeshabilitarls_status_cmb_enableActivols_status_cmb_archiveArchivarls_status_disabled_lblSuspendidols_status_archived_lblArchivadols_status_started_lblComenzadols_win_editclass_titleEditar Clasels_win_learners_titleVer Estudiantesmnu_viewVerls_win_editclass_save_btnGuardarls_win_editclass_cancel_btnCancelarls_win_learners_close_btnCerrarls_win_editclass_organisation_lblOrganizaciónls_win_editclass_staff_lblTutoresls_win_editclass_learners_lblEstudiantesls_win_learners_heading_lblEstudiantes en Clasetd_desc_headingControles avanzadosopt_activity_titleActividades Opcionaleslbl_num_activitiesSubactividadesls_of_textdels_manage_txtAdministrar lecciónls_tasks_txtTareas Requeridastd_goContribute_btnIrmnu_go_sequenceSecuenciaal_confirm_forcecomplete_toactivity¿Está seguro que desea mover al estudiante '{0}' a la Actividad '{1}'?synch_act_lblSincronizarccm_monitor_activityAbrir Seguimiento para Actividadlearner_exportPortfolio_btnExportar Portfolioal_error_forcecomplete_invalidactivitySe ha tratado de mover el estudiante '{0}' a la misma actividad o a otra actividad que ya ha sido completada '{1}'.al_confirm_forcecomplete_tofinish¿Esta seguro de mover el estudiante '{0}' hasta el final de la lección?al_error_forcecomplete_notargetTiene que mover al estudiante '{0}' a una actividad o a el final de la lección.title_sequencetab_endGateEstudiantes que han terminado la lección:ls_status_scheduled_lblProgramadaal_confirm_forcecomplete_to_end_of_branching_seq¿Esta seguro que desea adelantar al estudiante {0} hasta el final de esta rama?al_error_forcecomplete_to_different_seq{0} no puede ser movido a una actividad que no pertenece a la secuencia a la que está asignado.lbl_num_sequences{0} - Secuenciasls_manage_learnerExpp_lblActivar Portfolio Export para estudiantesls_confirm_expp_enabledPortfolio Export esta activo para estudiantesls_confirm_expp_disabledPortfolio Export esta desactivado para estudianteshelp_btn_tooltipAyudarefresh_btn_tooltipActualizar la información de estudiantesls_manage_apply_btn_tooltipCambiar el estado de esta leccióncompleted_act_tooltipDoble click para ver la contribución de este estudiante a esta actividadls_learnerURL_lblAcceso directo URL:support_act_titleActividades de Soporteal_validation_schstartNo se ha seleccionado fecha. Por favor seleccione fechar y hora para continuar.ls_manage_time_lblHora (Horas : Minutos)goContribute_btn_tooltipCompletar esta tarea ahorals_manage_editclass_btn_tooltipEditar la lista de estudiantes para esta lecciónls_manage_learners_btn_tooltipLista de estudiantes registrados en esta lecciónclass_exportPortfolio_btn_tooltipExportar el portfolio de toda la claselearner_exportPortfolio_btn_tooltipExportar el portfolio para este estudiantels_manage_start_btn_tooltipComenzar esta lección inmediatamentels_manage_schedule_btn_tooltipAgendar el comienzo de esta leccióncurrent_act_tooltipDoble click para ver el progreso de este estudiante en esta actividadal_error_forcecomplete_support_actNo se puede poner un estudiante en una actividad de soporteal_doubleclick_todoactivity{0} no ha alcanzado actividad {1} todavíalearner_viewJournals_btnAnotacioneslearner_viewJournals_btn_tooltipVer todas las anotaciones de los estudiantesal_yesSimv_search_default_txtBuscar o páginaal_noNoal_validation_schtimeLa hora entrada no es válida.finish_learner_tooltipPara mover a un estudiante hasta el final de la lección, seleccione al estudiante y arrastre hasta esta barra. check_avail_btnVerificar disponibilidadcontinue_btnContinuarls_continue_lblHola {1}, usted no ha terminado de editar esta lección {0}.ls_sequence_live_edit_btnEdición en Vivols_sequence_live_edit_btn_tooltipEditar esta leccionmsg_bubble_check_action_lblValidando ...msg_bubble_failed_action_lblNo esta disponible, Pruebe nuevamentels_locked_msg_lblAtención: {0} esta siendo editada por {1}. al_confirm_live_editUsted esta apunto de Editar esta lección. ¿Desea continuar?al_sendEnviarabout_popup_title_lblAcerca de {0}about_popup_version_lblVersiónabout_popup_trademark_lbl{0} es marca registrada de {0} Foundation ( {1} ). about_popup_license_lblEste programa es de software libre. Usted puede distribuirlo y/o modificarlo bajo los terminos de la GNU General Public License versión 2 como está publicada por la Free Software Foudantion. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} estudiantesstaff_group_name{0} tutoresls_remove_confirm_msgHa seleccionado un diseño para borrar. Note que no puede recuperar diseños despues de esta acción. ¿Desea continuar?ls_status_cmb_removeBorrarls_status_removed_lblBorradols_remove_warning_msgAtención: Esta lección esta por ser borrada. ¿Desea mantener la lección?ls_continue_action_lblPresione {0} para continuartd_desc_textEl uso de esta pestaña no es requerido para completar esta lección. Vea la página de informacion para más detalles. mtab_seqSecuenciaal_activity_view_competence_mappings_invalidAsegúrese que tiene una actividad seleccionada para poder ver sus competenciasal_activity_openContent_invalidAtención: Usted debe seleccionar una actividad antes de elegir la opción de Abrir o Editar Contenido.mv_search_error_msgIngrese un vocablo a buscar o el número de página entre 1 y {0}mv_search_invalid_input_msgEl número de página debe ser entre 1 y {0}mv_search_not_found_msgNo se encontro {0}mv_search_current_page_lblPágina {0} de {1}mv_search_go_btn_lblIrmv_search_index_view_btn_lblVolver al índiceabout_popup_copyright_lbl© 2002-2009 Fundación {0}. ccm_monitor_activityhelpAyuda para Seguimiento de Actividadmnu_help_helpAyuda de Seguimientols_seq_status_moderationModeraciónls_seq_status_define_laterDefinir en Seguimientols_seq_status_perm_gatePuerta de permisols_seq_status_synch_gatePuerta de Sincronizaciónls_seq_status_choose_groupingAsignar gruposls_seq_status_contributionContribucciónls_seq_status_system_gatePuerta de sistemals_seq_status_teacher_branchingAsignación de estudiantes a ramasls_seq_status_not_setNo ha sido asignado todavíals_seq_status_sched_gatePuerta por tiempoapp_chk_langloadLa información de lenguaje no ha sido cargadabranch_mapping_dlg_conditions_dgd_lblRamas y Condicionesbranch_mapping_dlg_branch_col_lblRamabranch_mapping_dlg_condition_col_lblCondiciónccm_monitor_view_group_mappingsMostrar Grupos y Ramasccm_monitor_view_condition_mappingsMostrar Condiciones y Ramasbranch_mapping_dlg_group_col_lblGruposcv_activity_helpURL_undefinedNo se puede encontrar la página de {0}cv_design_unsaved_live_editLos cambios relizados hasta ahora deben ser guardados. ¿Desea continuar con Insertar?label.grouping.general.instructions.branchingNo se puede remover o añadir grupos porque están siendo usados para una o más actividades de ramificación. Se puede solo añadir o remover usuarios a grupos pre-existentes.mapped_competences_lblConección de Objectivos y Actividadescompetences_mapped_to_act_lblObjetivos conectados a {0} competence_title_lblTítulocompetence_desc_lblDescripción view_competences_dlgVer Objetivosview_competences_in_ld_lblObjetivos en diseño: {0} view_act_mapped_competencesVer conección de objetivos y actividadesls_manage_presenceEnabled_lblPermitir ver que estudiantes estan online order_learners_by_completion_lblOrderar por completiciónls_confirm_presence_disabledEstudiantes no pueden ver quien esta onlinels_win_learners_heading_class_lblClasels_win_learners_heading_activity_lblActividadlearner_plus_tooltip{0} alumnos. Pulse dos veces para ver la lista completa.view_time_graph_btnVer gráfico de tiemposview_time_graph_btn_tooltipVer gráfico del tiempo que le ha tomado a cada estudiante realizar cada actividad.view_time_chart_btnVer gráfico de tortaview_time_chart_btn_tooltipVer gráfico que muestra el tiempo de un usuario en particular para cada actividad.msg_no_learners_in_lessonAl menos un estudiante debe ser seleccionadols_manage_presenceImEnabled_lblActivar mensajes instantaneosls_confirm_presence_im_enabledSe han activado mensajes instantaneosls_confirm_presence_im_disabledSe han desactivado mensajes instantaneos \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/fr_FR_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3support_act_titleActivité de soutienal_error_forcecomplete_to_different_seq{0} ne peut pas être ajouté à une activité qui se situe dans une branche ou une séquence différente. al_error_forcecomplete_invalidactivityVous avez sorti l'apprenant '{0}' de son activité courante ou de son activité terminée '{1}'al_error_forcecomplete_notargetVeuillez sortir l'apprenant '{0}' sur une activité ou à la fin de la leçon.al_confirm_forcecomplete_toactivityVoulez-vous vraiment terminer de force l'activité '{1}' pour l'apprenant '{0}'?al_activity_openContent_invalidDésolé! Vous essayez de sélectionner l'activité avant d'avoir cliqué sur ouvrir/modifier un contenu d'activité dans le menu (clic droit pour l'ouvrir).ccm_monitor_activityOuvrir l'outil de suivi pour les activitésccm_monitor_activityhelpAide pour l'outil de suivils_win_learners_heading_activity_lblActivitéal_doubleclick_todoactivityDésolé, l'étudiant: {0} n'a pas encore atteint l'activité: {1}.al_error_forcecomplete_support_actImpossible de forcer qu'un apprenant finisse une activité de soutienapp_fail_continueL'application ne peut pas continuer. Veuillez contacter votre contact locallearner_viewJournals_btn_tooltipAfficher toutes les entrées du calepin enregistrés par les apprenantsccm_monitor_view_group_mappingsAfficher groupes vers branchescurrent_act_tooltipDouble-cliquer pour voir l'avancement de la contribution de l'apprenant dans l'activité en coursal_activity_view_competence_mappings_invalidVeuillez vous assurer que vous avez sélectionné une activité avant d'essayer d'afficher le mappage des compétences.mnu_viewAfficherls_win_learners_titleAfficher les apprenantsls_manage_learners_btnAfficher les apprenantscompleted_act_tooltipDouble-cliqueer pour afficher la contribution de l'apprenant pour l'activité terminéeview_time_graph_btnAfficher graphique chronologiquemv_search_index_view_btn_lblRetourner à l'indexccm_monitor_view_condition_mappingsAfficher conditions vers branchesview_time_chart_btn_tooltipAfficher un graphique chronologique de progression pour l'apprenant choisi pour chaque activité.view_time_graph_btn_tooltipAfficher un graphique chronologique de progression de l'apprenant pour chaque activité.view_act_mapped_competencesAfficherr les compétences mises en correspondanceview_competences_dlgAfficher les compétencesview_time_chart_btnAfficher graphique chronologiqueal_sendEnvoyermsg_no_learners_in_lessonUn ou plusieurs apprenants doivent être sélectionnésls_manage_presenceImEnabled_lblActiver la messagerie instantanée ls_confirm_presence_im_enabledLa messagerie instantanée est maintenant activéels_confirm_presence_im_disabledLa messagerie instantanée est maintenant desactivéeabout_popup_title_lblAu sujet:al_confirm_live_editVous êtes sur le point d'ouvrir l'édition en direct. Voulez-vous continuer?about_popup_version_lblVersionabout_popup_copyright_lbl2002-2009 {0} Foundation.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ).about_popup_license_lblCe programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier, selon les termes de la version 2 de la licence générale publique GNU tel qu'elle est publiée par la "Free Software Foundation".stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgls_continue_action_lblCliquez sur {0} pour effectuer.lbl_num_sequences{0} - séquencesmv_search_not_found_msg{0} n'a pas été trouvé.mv_search_current_page_lblPage {0} sur {1}mv_search_go_btn_lblAller àclose_mc_tooltipRéduireal_confirm_forcecomplete_to_end_of_branching_seqEtes-vous sûr de vouloir forcer l'apprenant {0} de compléter jusqu'à la fin de cette séquence?ls_seq_status_moderationModérationls_seq_status_define_laterDéfinir plus tardls_seq_status_perm_gatePermission Portels_seq_status_synch_gateSynchroniser portels_seq_status_choose_groupingChoisir regroupementls_seq_status_contributionContributionls_seq_status_system_gatePorte systèmels_seq_status_not_setPas encore définils_seq_status_sched_gatePorte horairebranch_mapping_dlg_conditions_dgd_lblMise en correspondance (mappage)branch_mapping_dlg_branch_col_lblBranchebranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupemnu_go_sequenceSéquencecv_activity_helpURL_undefinedLa page d'aide pour {0} est introuvablelabel.grouping.general.instructions.branchingVous ne pouvez pas ajouter ou enlever des groupes de ce regroupement puisque ce dernier est utilisé pour des branchements. Vous pouvez seulement ajouter/enlever des utilisateurs pour des groupes qui existentview_competences_in_ld_lblCompétences pour le design d'apprentissage: {0}mapped_competences_lblCompétences mises en correspondancecompetences_mapped_to_act_lblCompétences mises en correspondance avec {0}competence_title_lblTitrecompetence_desc_lblDescriptionorder_learners_by_completion_lblOrdre d'achèvementls_manage_presenceEnabled_lblPermettre aux apprenants de voir qui est en lignels_confirm_presence_enabledLes apprenants peuvent voir qui est en lignels_confirm_presence_disabledLes apprenants ne peuvent pas voir qui est en lignels_win_learners_heading_class_lblClasselearner_plus_tooltip{0} apprenants. Double-cliquez pour voir la liste complètetd_desc_headingContrôles avancéstd_desc_textL'utilisation de cet onglet "A faire" n'est pas indispensable pour finir la sequence. Voir la page d'aide pour plus d'informations. <br><br> Cette fonctionnalité est maintenant disponible.lbl_num_activities{0} - activités ls_of_textdels_manage_txtGérer la leçonls_tasks_txtTâches obligatoirestd_goContribute_btnAllerlearner_exportPortfolio_btnExporter le Portfoliols_status_scheduled_lblPlanifiéal_confirm_forcecomplete_tofinishVoulez-vous vraiment terminer de force la leçon pour l'apprenant '{0}'?title_sequencetab_endGateApprenants ayant terminé:goContribute_btn_tooltipTerminer cette tâche maintenanthelp_btn_tooltipAiderefresh_btn_tooltipRecharger les dernières données sur la progression des apprenantsls_manage_editclass_btn_tooltipModifier la liste des apprenants et enseignants assignés à cette leçonls_manage_learners_btn_tooltipMontrer tous les apprenants assignés à cette leçonls_manage_apply_btn_tooltipChanger l'état de cette leçon selon le menu déroulantls_manage_start_btn_tooltipCommencer la leçon immédiatementls_manage_schedule_btn_tooltipPlanifier le moment du début de la leçon al_validation_schstartAucune date n'a été sélectionnée. Veuillez choisir une date et une heure.ls_manage_time_lblTemps (Heures : Minutes)al_validation_schtimeVeuillez entrer une heure valide.mtab_learnersApprenantsfinish_learner_tooltipPour forcer un apprenant à terminer la leçon, glissez l'icône de l'apprenant par dessus cette barre et relâchez-làlearner_viewJournals_btnEntrées du calepinls_learnerURL_lblURL de l'apprenant:ls_manage_learnerExpp_lblAutorise l'exportation de portfolio pour l'apprenantls_confirm_expp_enabledL'exportation de portfolio est maintenant autorisée pour les étudiantsls_confirm_expp_disabledL'exporation de portfolio est maintenant désactivée pour les étudiantsls_remove_confirm_msgVous avez choisi de supprimer cette leçon, les leçons supprimées le sont définitivement, souhaitez vous continuer?ls_status_cmb_removeSupprimerls_status_removed_lblsuppriméeal_yesOuial_noNonls_remove_warning_msgATTENTION : Cette leçon va être supprimée, souhaitez vous la conserver?learners_group_name{0} apprenant(s)staff_group_name{0} moniteurscheck_avail_btnVérifier la disponibilitécontinue_btnContinuerls_continue_lblBonjour {1}, vous n'avez pas fini d'éditer {0}.ls_sequence_live_edit_btnEdition en directls_sequence_live_edit_btn_tooltipEditer le design actuel de cette leçon.msg_bubble_check_action_lblVérification...msg_bubble_failed_action_lblIndisponible, essayer encore.ls_locked_msg_lblDésolé, {0} est en cours d'édition par {1}.opt_activity_titleActivité en optionapp_chk_langloadLes données de langue n'ont pas été chargéesapp_chk_themeloadLes données du thème n'ont pas été chargéesdb_datasend_confirmMerci pour votre envoi de données au serveurmnu_editModifiermnu_edit_copyCopiermnu_edit_cutCoupermnu_edit_pasteCollermnu_file_refreshRafraîchirmnu_file_editclassModifier la classemnu_file_startCommencermnu_helpAidemnu_help_abtA propos deperm_act_lblPermissionsched_act_lblHorairesynch_act_lblSynchroniserws_RootRacinews_dlg_cancel_buttonAbandonnerws_dlg_location_buttonLieuws_tree_mywspMon Espace de travailws_tree_orgsInstitutionssys_error_msg_startL'erreur système suivante s'est produite:sys_errorErreur systèmemnu_file_scheduleHorairemnu_file_exitSortirmnu_view_learnersApprenants...mnu_goAllermnu_go_lessonLeçonmnu_go_scheduleHorairemnu_go_learnersApprenantsmnu_go_todoA fairerefresh_btnRafraîchirhelp_btnAidemtab_lessonLeçonmtab_seqSéquencemtab_todoA fairels_status_lblEtat:ls_learners_lblApprenants:ls_class_lblClasse:ls_manage_class_lblClasse:ls_manage_status_lblEtat du changement:ls_manage_start_lblDébut:ls_manage_editclass_btnModifier la classels_manage_apply_btnAppliquerls_manage_schedule_btnHorairels_manage_start_btnCommencer maintenantls_manage_date_lblDatels_duration_lblDurée écoulée:ls_manage_status_cmbChoisir l'état:ls_status_cmb_activateActiverls_status_cmb_disableDésactiverls_status_cmb_enableActifls_status_cmb_archiveArchivels_status_active_lblCréée mais inactivels_status_disabled_lblSuspenduls_status_archived_lblArchivéls_status_started_lblCommencéls_win_editclass_titleModifier la classels_win_editclass_cancel_btnAbandonnerls_win_learners_close_btnFermerls_win_editclass_organisation_lblInstitutionls_win_editclass_staff_lblMoniteursls_win_editclass_learners_lblApprenantsls_win_learners_heading_lblApprenants dans {0}:{1}al_alertAlerteal_cancelAbandonneral_confirmConfirmeral_okOKls_seq_status_teacher_branchingBranchement choisi par l'enseignantmnu_help_helpAide pour la supervisionmv_search_default_txtEntrer la requête de recherche ou le numéro de pagemv_search_invalid_input_msgLe numéro de page doit être compris entre 1 et {0}mv_search_error_msgEntrer la requête de recherche ou un numéro de page compris entre 1 et {0}mnu_fileFichiercv_design_unsaved_live_editLes changement pas enregistrés vont être enregistrés automatiquement. Voulez-vous continuer avec insertion/fusionsys_error_msg_finishVous devez peut-être redémarrer LAMS Auteur pour continuer. Voulez-vous sauvegarder l'information suivante à propose de cette erreur pour aide à régler le problème?ls_win_editclass_save_btnEnregistrerclass_exportPortfolio_btn_tooltipExporter le portfolio de la classe sur votre ordinateur pour usage ultérieurlearner_exportPortfolio_btn_tooltipExporter le portfolio de cet apprenant et le sauvegarder sur votre ordinateur pour usage ultérieur \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/hu_HU_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_confirm_forcecomplete_tofinishBiztos benne, hogy kényszeríti a '{0}' tanulót a lecke befejezésére?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_status_archived_lblArchíváltCurrent status description if archviedls_status_started_lblElindítottCurrent status description if started (enabled)ls_win_editclass_titleOsztály szerkesztéseEdit class window titlels_win_learners_titleTanulókView learners window titlemnu_viewNézetMenu bar Viewls_win_editclass_save_btnMentésSave button on Edit Class popupls_win_editclass_cancel_btnMégseCancel button on Edit Class popupls_win_learners_close_btnBezárásClose button on View Learners popupls_win_editclass_organisation_lblSzervezésHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblSzemélyekHeading for Staff list on Edit Class popupls_win_editclass_learners_lblTanulókHeading for Learners list on the Edit Class popupls_win_learners_heading_lblAz osztály tanulóiHeading on View Learners window panel.td_desc_headingSpeciális szabályokTodo tab description headinglbl_num_activitiesalárendelt tevékenységekNumber of child activities for Complex activity shown on canvas.ls_of_text:i.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLecke menedzseléseHeading for Management section of Lesson Tablearner_exportPortfolio_btnPortfólió exportálásaLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_sendKüldésSend button label on the system error dialogccm_monitor_activityTevékenység Monitor megnyitásaLabel for Custom Context Monitor Activityal_validation_schstartNem választott dátumot. Kérem, válasszon egy dátumot és időt!Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblIdő (óra : perc)Time fields title - Lesson details (manage section)ls_status_scheduled_lblÜtemezettLesson status option - Scheduled (Not Started)help_btn_tooltipSúgótool tip message for help button in toolbarls_manage_editclass_btn_tooltipA leckéhez kapcsolódó tanulók és munkatársak listájának szerkesztésetool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMegmutatja a leckéhez kapcsolódó összes tanulóttool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_start_btn_tooltipAzonnal elindítja a leckéttool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonal_validation_schtimeKérem, adja meg a helyes időt!Alert message when user enters an invalid time for schedule startlearner_viewJournals_btnNapló bejegyzésekLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learners_group_name{0} tanulóGroup name for the class's learners group.ls_status_cmb_removeTörlésLesson status option - Removels_status_removed_lblTörölveCurrent status description if deleted (removed) lesson.al_yesIgenYes on the alert dialogal_noNem'No' on the alert dialogcontinue_btnTovábbContinue button labelmsg_bubble_check_action_lblEllenőrzés ...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblPróbálja újra!Label displayed when check failed i.e. lesson is still locked.about_popup_version_lblVerzióLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} a {0} Alapítvány védjegye ( {1} )Label displaying the trademark statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.org URL address for the application stream.al_error_forcecomplete_to_different_seqNem küldheti a {0} tanulót olyan tevékenységhez, amely másik elágazásban vagy folyamatban van.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequenceal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseTo Confirm title for LFErroral_confirmMegerősítésTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadA nyelvi adatok nem töltődtek be.message for unsuccessful language loadingmnu_editSzerkesztésMenu bar Editmnu_edit_copyMásolásMenu bar Edit &gt; Copymnu_edit_cutKivágásMenu bar Edit &gt; Cutmnu_edit_pasteBeillesztésMenu bar Edit &gt; Pastemnu_fileFájlMenu bar Filemnu_file_refreshFrissítésMenu bar Refreshmnu_file_editclassOsztály szerkesztéseMenu bar Edit Classmnu_file_startKezdésMenu bar Startmnu_helpSúgóMenu bar Helpmnu_help_abtNévjegyMenu bar Aboutsched_act_lblÜtemtervLabel for schedule gate activitysynch_act_lblSzinkronizálásUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonMégse2ws_dlg_location_buttonElérési útWorkspace dialogue Location btn labelws_tree_mywspAz én munkaterületemThe root level of the treews_tree_orgsSzervezésShown in the top level of the tree in the workspacels_manage_learners_btnTanulók megjelenítéseView learners button - Lesson details (manage section)sys_error_msg_startA következő rendszerhiba történt:Common System error message starting linesys_errorRendszerhibaSystem Error elert window titlemnu_file_scheduleÜtemezésMenu bar Schedulemnu_file_exitKilépésMenu bar Exitmnu_view_learnersTanulókMenu bar Learnersmnu_go_lessonLeckeMenu bar Go to Lesson Tabmnu_go_scheduleÜtemezésMenu bar Go to Schedule Tabmnu_go_learnersTanulókMenu bar Go to Learners Tabmnu_help_helpSúgóMenu bar Help itemrefresh_btnFrissítésRefresh buttonhelp_btnSúgóHelp buttonmtab_lessonLeckeMonitor Lesson details tabmtab_learnersTanulókMonitor Learners tabls_status_lblÁllapot:Status label - Lesson detailsls_learners_lblTanulók:Learner label - Lesson detailsls_class_lblOsztály:Class label - Lesson detailsls_manage_class_lblOsztály:Class managing label - Lesson detailsls_manage_status_lblÁllapot változása:Status managing label - Lesson detailsls_manage_start_lblKezdés:Start managing label - Lesson detailsls_manage_editclass_btnOsztály szerkesztéseEdit class button - Lesson details (manage section)ls_manage_apply_btnAlkalmazStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblPortfolió exportálásának engedélyezése tanulók számáraLabel for Enable export portfolio for Learnerls_confirm_expp_enabledA portfolió exportálása engedélyezett ranulók számára.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledA portfolió exportálása nem engedélyezett ranulók számára.Confirmation message on disabling export portfolio for learnersls_manage_schedule_btnÜtemezésSchedule start button - Lesson details (manage section)ls_manage_start_btnKezdés mostStart immediately button - Lesson details (manage section)ls_manage_date_lblDátumDate field title - Lesson details (manage section)ls_duration_lblEltelt idő:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbÁllapotválasztás:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktíválásLesson status option - Activatels_status_cmb_disableLetiltvaLesson status option - Disable (suspend)ls_status_cmb_enableAktívLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiveLesson status option - Archivels_status_active_lblAktívCurrent status description if active (enabled)ls_status_disabled_lblFelfüggesztettCurrent status description if suspended (disabled)sys_error_msg_finishA folytatáshoz újra kellene indítania a LAMS Szerzőt. Szeretné menteni az alábbi információt erről a hibáról a probléma kijavításának érdekében?Common System error message finish paragraphtitle_sequencetab_endGateAz elkészült tanulókTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipAzonnal befejezi a feladatottool tip message for go button in required tasks list in lesson tabrefresh_btn_tooltipÚjratölti a legfrissebb adatokat a tanuló előmenetelérőltool tip message for the refresh buttonmv_search_default_txtAdjon meg keresőfeltételt vagy oldalszámot!The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_not_found_msgA {0} nem találhatóThis message appears when the search does not find any learners whose names contain the search parameter.ls_tasks_txtKötelező feladatokHeading for Required Tasks (todo section of Lesson tab)ccm_monitor_activityhelpA Figyelő tevékenység súgójaLabel for Custom Context Monitor Activity Helpal_confirm_forcecomplete_toactivityBiztos benne, hogy kényszeríti a '{0}' tanulót a '{1}' tevékenység befejezésére?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedls_manage_schedule_btn_tooltipEgy későbbi időpontban történő indításra ütemezi a leckéttool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timeabout_popup_copyright_lbl© 2002-2008 {0} Alapítvány.Label displaying copyright statement in About dialog.ls_seq_status_sched_gateÜtemező kapuA type of Gate Activity where progress depends on time (start time and/or end time)app_chk_themeloadA téma adatai nem töltőftek bemessage for unsuccessful theme loadingapp_fail_continueAz alkalmazást nem folytatható. Kérem, keresse fel a technikai segítséget!message if application cannot continue due to any errorperm_act_lblTiltásLabel for permission gate activitymnu_goIndításMenu bar Gomnu_go_todoElvégzendőMenu bar Todomtab_seqJelenetMonitor Sequence tabmtab_todoElvégzendőMonitor Todo tabopt_activity_titleVálasztható tevékenységTitle for Optional Activity on canvas (monitoring)td_goContribute_btnIndításGo button on contribute entry itemls_learnerURL_lblA tanuló URL-je:Learner URL:mv_search_current_page_lblOldal: {0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblIndításIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.ls_seq_status_perm_gateTiltó kapuA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_system_gateRendszer-kapuA System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_not_setMég nincs beállítvaThe value of the sequence's status is not setdb_datasend_confirmKöszönöm, hogy feltöltötte az adatokat a szerverre.Message when user sucessfully dumps data to the serverls_remove_confirm_msgA lecke eltávolítását választotta. Az eltávolított leckéket nem hozhatja többé vissza. Folytatja?remove confirm msgls_remove_warning_msgFigyelem: Eltávolítani készül ezt a leckét. Meg szeretné tartani inkább?Message for the alert dialog which appears following confirmation dialog for removing a lesson.check_avail_btnA tevékenység ellenőrzéseCheck Availability button labells_continue_lblSzia {1}! Nem fejezte be a {0} szerkesztését.Continue message labells_locked_msg_lblSajnálom, ezt: {0} éppen {1} szerkeszti.Warning message on Monitor locked screen.about_popup_title_lblTájékoztató - {0}Title for the About Pop-up window.about_popup_license_lblEz a program szabad szoftver. Továbbadhatja, és/vagy módosíthatja a Free Software Foundation (Szabad Szoftver Alapítvány) 2-es verziójú GNU General Public Licence (Általános Nyilvános Licensz) feltételei mellett.Label displaying the license statement in the About dialog.ls_seq_status_contributionKözreműködésAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingA tanár által választott elágazásA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_synch_gateSzinkronizáló kapuA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_moderationModerálásDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_choose_groupingCsoportosítás választásaAllows the Teacher to add the learners to chosen groupstd_desc_textAz Elvégzendő fül használata nem szükséges a folyamat befejezéséhez. További információkért nézze meg a súgót! <br><br>Ez a lehetőség már teljesen működőképes.Todo tab descriptionls_manage_apply_btn_tooltipMegváltoztatja a lecke állapotát, attól függően, mit választunk legördülő menüből. tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportálja az osztláy portfólióját, és elmenti az ön gépére, egy későbbi tájékoztatás céljáratool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportálja ennek a tanulónak a portfólióját, és elmenti az ön gépére, egy későbbi tájékoztatás céljáratool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referenceal_doubleclick_todoactivitySajnálom, a {0} tanuló még nem ért el a(z) {1} tevékenységhez.alert message when user double click on the todo activity in the sequence under learner tabstaff_group_name{0} megfigyelésGroup name for the class's staff group.ls_sequence_live_edit_btnKözvetlen szerkesztésLive Edit buttonls_sequence_live_edit_btn_tooltipSzerkeszti ennek a leckének a jelenlegi tervét.Tool tip message for Live Edit buttonal_confirm_live_editA Közvetlen Szerkesztést készül megnyitni.Folytassuk?Confirm warning (dialog) message displayed when opening Live Edit.ls_continue_action_lblKattintson erre: {0} a folytatáshoz!Action label displayed when a user can proceed to Live Edit.close_mc_tooltipLekicsinyítTooltip message for close button on Branching canvas.lbl_num_sequences{0} - Folyamat(ok)Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidSajnálom, választania kell egy tevékenységet, mielőtt rákattint az alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgKérem, adja meg a keresési feltételt, vagy egy 1 és {0} közötti oldalszámot!This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgAz oldalszámnak 1 és {0} között kell lennieThis error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_index_view_btn_lblIndex nézetWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.current_act_tooltipDupla kattintással áttekintheti a folyamatban lévő közreműködéseket a tanulók jelenlegi tevékenységéheztool tip message for current activity iconcompleted_act_tooltipDupla kattintással áttekintheti a folyamatban lévő közreműködéseket a tanulók befejezett tevékenységéheztool tip message for completed activity iconfinish_learner_tooltipHa a befejezéshez a lecke végére akarja kényszeríteni a tanulót, húzza a tanuló ikonját erre a sávra, majd eressze el!Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btn_tooltipMegjeleníti a tanulók átal mentett összes naplótételttool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_confirm_forcecomplete_to_end_of_branching_seqBiztos benne, hogy kényszeríteni akarja a {0} tanulót, hogy az elágazás végén befejezze ezt a folyamatot?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_seq_status_define_laterKésőbb definiálOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authoral_error_forcecomplete_invalidactivityA '{0}' tanulót egy folyamatban lévő, vagy a már befejezett '{1}' tevékenységhez küldteError message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_notargetKérem, küldje a '{0}' tanulót egy tevékenységhez, vagy a lecke végére!Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasbranch_mapping_dlg_conditions_dgd_lblLeképezésekHeading label for Mapping datagrid.branch_mapping_dlg_branch_col_lblElágazásColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblFeltételColumn heading for showing condition description of the mapping.ccm_monitor_view_group_mappingsMegjeleníti az elágazásokhoz rendelt csoportokatLabel for Custom Context View Group Mappingsccm_monitor_view_condition_mappingsMegjeleníti az elágazásokhoz rendelt feltételeketLabel for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lblCsoportColumn heading for showing group name of the mapping.mnu_go_sequenceJelenetMenu bar Go to Sequence Tabcv_activity_helpURL_undefinedNem található súgó ehhez: {0}Alert message when a tool activity has no help url defined.cv_design_unsaved_live_editA nem mentett változásokat automatikusan menteni fogjuk. Folytatni szeretné a beszúrást/összefűzést?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/it_IT_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3refresh_btn_tooltipRicarica gli ultimi dati sulla progressione degli studentitool tip message for the refresh buttonls_seq_status_define_laterDefinisci in seguitoOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_choose_groupingScegli i gruppiAllows the Teacher to add the learners to chosen groupsls_seq_status_contributionContributoAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingSezione scelta dal docenteA type of branching where the Teacher chooses which learners to add to each branchal_cancelAnnullaTo Confirm title for LFErroral_confirmConfermaTo Confirm title for LFErrorls_seq_status_not_setNon ancora stabilitoThe value of the sequence's status is not setapp_chk_themeloadI dati del Tema non sono stati caricatimessage for unsuccessful theme loadingapp_fail_continueL'applicazione non può continuare. Per favore, contatta il supporto tecnico.message if application cannot continue due to any errordb_datasend_confirmGrazie per l'invio dei dati al serverMessage when user sucessfully dumps data to the servermnu_editModificaMenu bar Editmnu_edit_copyCopiaMenu bar Edit &gt; Copymnu_edit_cutTagliaMenu bar Edit &gt; Cutmnu_edit_pasteIncollaMenu bar Edit &gt; Pastemnu_fileFileMenu bar Filemnu_file_editclassModifica ClasseMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpAiutoMenu bar Helpmnu_help_abtSu LAMSMenu bar Aboutperm_act_lblPermessoLabel for permission gate activitysched_act_lblProgrammaLabel for schedule gate activitysynch_act_lblSincronizzaUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnnulla2ws_dlg_location_buttonPosizioneWorkspace dialogue Location btn labelws_tree_mywspLa mia area di lavoroThe root level of the treews_tree_orgsOrganizzazioniShown in the top level of the tree in the workspacesys_errorErrore di sistemaSystem Error elert window titlemnu_file_scheduleProgrammaMenu bar Schedulels_win_learners_heading_lblStudenti nella classeHeading on View Learners window panel.mnu_view_learnersStudenti...Menu bar Learnersmnu_goVaiMenu bar Gomnu_go_lessonLezioneMenu bar Go to Lesson Tabmnu_go_scheduleProgrammaMenu bar Go to Schedule Tabmnu_go_learnersStudentiMenu bar Go to Learners Tabmnu_go_todoDa fareMenu bar Todohelp_btnAiutoHelp buttonmtab_lessonLezioneMonitor Lesson details tabmtab_seqSequenzaMonitor Sequence tabmtab_learnersStudentiMonitor Learners tabmtab_todoDa fareMonitor Todo tabls_status_lblStatusStatus label - Lesson detailsal_alertAlertGeneric title for Alert windowmv_search_index_view_btn_lblIndiceWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.ls_win_editclass_titleModifica ClasseEdit class window titlesys_error_msg_finishDevi far ripartire LAMS Author per continuare. Vuoi salvare le seguenti informazioni sull'errore per contribuire a risolvere questo problema?Common System error message finish paragraphabout_popup_trademark_lbl{0} è un marchio di {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ls_win_editclass_save_btnSalvaSave button on Edit Class popupls_win_editclass_cancel_btnAnnullaCancel button on Edit Class popupls_win_learners_close_btnChiudiClose button on View Learners popupls_win_editclass_organisation_lblOrganizzazioneHeading for Organisation tree on Edit Class popupls_win_editclass_learners_lblStudentiHeading for Learners list on the Edit Class popuptd_desc_headingControlli avanzatiTodo tab description headingopt_activity_titleAttività opzionaleTitle for Optional Activity on canvas (monitoring)ls_learners_lblStudentiLearner label - Lesson detailsls_class_lblClasseClass label - Lesson detailsls_manage_class_lblClasseClass managing label - Lesson detailsls_manage_start_lblStartStart managing label - Lesson detailsls_manage_learners_btnVista StudentiView learners button - Lesson details (manage section)ls_manage_editclass_btnModifica ClasseEdit class button - Lesson details (manage section)ls_manage_apply_btnApplicaStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnProgrammaSchedule start button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblTempo trascorsoElapsed duration of lesson - Lesson detailsls_manage_status_cmbScegli statusStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAttivaLesson status option - Activatels_status_cmb_disableDisabilitaLesson status option - Disable (suspend)ls_status_cmb_enableAttivoLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchivioLesson status option - Archivels_status_disabled_lblSospesoCurrent status description if suspended (disabled)ls_status_archived_lblArchiviatoCurrent status description if archviedls_status_started_lblIniziatoCurrent status description if started (enabled)mnu_file_exitEsciMenu bar Exitls_seq_status_moderationModeratoreDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_of_textdii.e. 1 of 10 Used for showing how many learners have startedls_manage_txtGestisci la LezioneHeading for Management section of Lesson Tabls_tasks_txtCompiti richiestiHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnVaiGo button on contribute entry itemlearner_exportPortfolio_btnEsporta PortfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivitySei sicuro di voler forzare per lo studente '{0}' il completamento dell'attività '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityHai posto lo studente '{0}' o sulla sua attività corrente o sulla sua attività '{1}'già completataError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishSei sicuro di voler forzare lo studente '{0}' a terminare la lezione?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_win_learners_titleMostra StudentiView learners window titlemnu_viewMostraMenu bar Viewal_error_forcecomplete_notargetPer favore, colloca lo studente '{0}' su un'attività o sulla fine della lezione.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasls_status_scheduled_lblPianificatoLesson status option - Scheduled (Not Started)goContribute_btn_tooltipCompleta questo compito adessotool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipAiutotool tip message for help button in toolbarls_manage_editclass_btn_tooltipModifica la lista degli studenti e dello staff assegnati a questa lezionetool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMostra tutti gli studenti assegnati a questa lezionetool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipCambia lo status di questa lezione dal menu a cascatatool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEsporta il portfolio di classe e salvalo sul tuo computer per consultarlo in seguitotool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEsporta il portfolio di questo studente e salvalo sul tuo computer per consultarlo in seguitotool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipInizia questa lezione immediatamentetool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipProgramma una lezione da iniziare successivamente tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDoppio click per correggere in progress il contributo degli studenti per la corrente attivitàtool tip message for current activity iconcompleted_act_tooltipDoppio click per correggere il contributo degli studenti per l' attività completatatool tip message for completed activity iconal_doubleclick_todoactivitySpiacente, lo studente {0} non è ancora giunto all'attività {1}.alert message when user double click on the todo activity in the sequence under learner tabmnu_file_refreshAggiornaMenu bar Refreshccm_monitor_activityApri Attività di MonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpAiuto per Attività di MonitorLabel for Custom Context Monitor Activity Helpls_learnerURL_lblURL StudenteLearner URL:finish_learner_tooltipPer forzare il completamento della lezione da parte di uno studente, trascina l'icona dello studente sopra questa barra, quindi rilascia l'icona.Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnInserimenti DiarioLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVedi tutti gli inserimenti nel Diario salvati dagli Studenti.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_manage_learnerExpp_lblConsenti export portfolio per gli studentiLabel for Enable export portfolio for Learnerls_confirm_expp_enabledExport Porfolio è ora abilitato per gli studentiConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledExport Porfolio è ora disabilitato per gli studentiConfirmation message on disabling export portfolio for learnersmnu_help_helpAiuto per MonitoringMenu bar Help itemls_manage_status_lblModifica StatusStatus managing label - Lesson detailsls_manage_start_btnInizia oraStart immediately button - Lesson details (manage section)ls_status_active_lblCreato ma non iniziatoCurrent status description if active (enabled)learners_group_name{0} studentiGroup name for the class's learners group.al_yesSiYes on the alert dialogal_noNo'No' on the alert dialogstaff_group_name{0} staffGroup name for the class's staff group.ls_status_cmb_removeRimuoviLesson status option - Removels_status_removed_lblRimossoCurrent status description if deleted (removed) lesson.sys_error_msg_startSi è verificato il seguente errore di sistemaCommon System error message starting lineal_validation_schstartNessuna data selezionata. Scegli data e ora, prego.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTempo (Ore : Minuti)Time fields title - Lesson details (manage section)al_validation_schtimeInserisci un valore valido, per favore. Alert message when user enters an invalid time for schedule startls_remove_confirm_msgHai scelto di rimuovere questa lezione. Le lezioni rimosse non possono essere poi recuperate. Continuare?remove confirm msgcheck_avail_btnControlla disponibilitàCheck Availability button labelcontinue_btnContinuaContinue button labells_continue_lblCiao {1}, non hai finito di modificare {0}.Continue message labells_sequence_live_edit_btnModifica LiveLive Edit buttonls_sequence_live_edit_btn_tooltipModifica il progetto attuale per questa lezione.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblControllando...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNon disponibile. Prova ancora.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSpiacente, {0} è attualmente in via di modifica da {1}.Warning message on Monitor locked screen.al_confirm_live_editStai per aprire Live Edit. Vuoi continuare?Confirm warning (dialog) message displayed when opening Live Edit.al_sendInviaSend button label on the system error dialogabout_popup_title_lblSu - {}Title for the About Pop-up window.about_popup_version_lblVersioneLabel displaying the version no on the About dialog.about_popup_license_lblQuesto programma è free software; puoi redistribuirlo e/o modificarlo a termini della GNU General Public License version 2 come pubblicato dalla Free Software Foundation. {0}Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblClicca {0} per procedere.Action label displayed when a user can proceed to Live Edit.al_okOKOK on the alert dialogapp_chk_langloadI dati relativi alla lingua non sono stati caricatimessage for unsuccessful language loadinglbl_num_activitiesAttivitàNumber of child activities for Complex activity shown on canvas.ls_remove_warning_msgATTENZIONE: La lezione stà per essere rimossa. Desideri conservare questa lezione?Message for the alert dialog which appears following confirmation dialog for removing a lesson.close_mc_tooltipRiduciTooltip message for close button on Branching canvas.mv_search_default_txtImmetti termine di ricerca o numero di paginaThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequencesSequenzeNumber of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidAttento! Devi selezionare un'attività prima di cliccare su Apri/Modifica Contenuto Attività nel menu Attività alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgPerfavore immetti un termine di ricerca o un numero di pagina compreso tra 1 e [0]This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgIl numero di pagina deve essere compreso tra 1 e [0]This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg[0] non è stato trovatoThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblPagina [0] di [1]{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblCercaIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.refresh_btnAggiornaRefresh buttonal_confirm_forcecomplete_to_end_of_branching_seqSiete sicuri di voler spostare lo studente "0" al termine di questa sequenza?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq"0" non può essere spostato su un'attività che si trova su un diverso ramo/sequenza.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencebranch_mapping_dlg_condition_col_lblCondizioniColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppoColumn heading for showing group name of the mapping.ls_seq_status_perm_gatePorta di permessoA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gatePorta di sincronizzazioneA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_system_gatePorta di sistemaA System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_sched_gatePorta di tempoA type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_branch_col_lblRamiColumn heading for showing sequence name of the mapping.ccm_monitor_view_group_mappingsVisualizza gruppi e ramiLabel for Custom Context View Group Mappingsccm_monitor_view_condition_mappingsVisualizza condizioni e ramiLabel for Custom Context View Condition Mappingsls_win_editclass_staff_lblStaffHeading for Staff list on Edit Class popupbranch_mapping_dlg_conditions_dgd_lblMappingHeading label for Mapping datagrid.title_sequencetab_endGateStudenti che hanno completatoTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonmnu_go_sequenceSequenzaMenu bar Go to Sequence Tabcv_activity_helpURL_undefinedImpossibile trovare la pagina di Aiuto per (0)Alert message when a tool activity has no help url defined.cv_design_unsaved_live_editLe modifiche non salvate saranno automaticamente salvate. Desiderate continuare con l'inserimento/unione?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching Impossibile aggiungere o rimuovere gruppi; è possibile solo aggiungere/rimuovere utenti dai gruppi esistenti.Third instructions paragraph on the chosen branching screen.about_popup_copyright_lbl© 2002-2009 {0} Foundation.Label displaying copyright statement in About dialog.ls_confirm_presence_disabledOra gli studenti non possono vedere chi è on linels_confirm_presence_disabledls_confirm_presence_enabledOra gli studenti possono vedere chi è on linels_confirm_presence_enabledview_competences_dlgVedi CompetenzeAllows you to view all the competences within a learning designview_competences_in_ld_lblCompetenze nel progetto di e-learning: {0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentview_act_mapped_competencesVedi le competenze pianificateAllows you to view competences mapped to a particular activitymapped_competences_lblPiano delle competenzeTitle for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lblCompetenze programmate per {0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lblTitoloCompetence Title label in Mapped Competences dialogcompetence_desc_lblDescrizioneCompetence Description label in Mapped Competences dialogorder_learners_by_completion_lblOrdine di completamentoLabel for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lblConsenti agli studenti di vedere chi è onlinels_manage_presenceEnabled_lblal_activity_view_competence_mappings_invalidAssicurati di aver selezionato un'attività prima di tentare di vedere il suo piano delle competenze.Warning that appears when no activity is selected when the user tries to view competence mappingstd_desc_textQuesto non è necessario per completare la sequenza. Vedi la pagina di aiuto per maggiori informazioni.Todo tab descriptionls_win_learners_heading_class_lblClasseHeading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lblAttivitàHeading on View Learners window panel (learners at activity).learner_plus_tooltip{0} studenti. Doppio click per vedere l'elenco completo.Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ja_JP_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3td_desc_heading拡張コントロール:view_competences_in_ld_lbl学習デザインにおける権限: {0}ls_continue_lbl{1} さん、<b>{0}</b> の編集が終了していません。ls_manage_status_cmb選択されたステータス: sys_error_msg_finish作業を続けるためには LAMS 教材作成を再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?stream_reference_lblLAMSls_manage_learnerExpp_lbl学習者によるポートフォリオのエクスポートを許可しますls_manage_presenceEnabled_lbl学習者が他ユーザーのオンライン状況を見ることを許可するal_activity_openContent_invalidアクティビティのコンテキストメニューで 開く/編集 をクリックする前に、アクティビティを選択する必要があります。about_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} は {0} Foundation ( {1} ) の商標です。ls_sequence_live_edit_btn_tooltipレッスンの現在のデザインを編集します。msg_bubble_check_action_lblチェック中...msg_bubble_failed_action_lblレッスンが正しい形式ではありません。再編集してください。label.grouping.general.instructions.branchingこのグループ分けは、分岐で使用されています。グループの追加や削除は、分岐の設定に影響を与えますので、このグループ分けからグループを追加したり削除したりすることはできません。既存のグループからユーザを追加 / 削除することは可能です。al_confirm_live_editライブ編集を中止します。続行しますか?al_send送信about_popup_title_lbl{0} についてstream_urlhttp://{0}foundation.orggpl_license_urlwww.gnu.org/licenses/gpl.txt ls_continue_action_lbl{0} をクリックして次に進みます。lbl_num_sequences{0} - シーケンスmv_search_not_found_msg{0} は見つかりませんでした。ls_of_text / mv_search_go_btn_lblGomv_search_index_view_btn_lblインデックスの表示close_mc_tooltip最小化al_error_forcecomplete_to_different_seq{0} を、異なる分岐、またはシーケンスのアクティビティにドロップすることはできません。ls_seq_status_moderation評価ls_seq_status_define_later後で定義するls_seq_status_perm_gateゲートの設定ls_seq_status_synch_gate同期ゲートls_seq_status_choose_groupingグループ分けls_seq_status_contribution進捗ls_seq_status_system_gateシステムゲートls_seq_status_not_setまだ設定されていませんls_seq_status_sched_gateスケジュールゲートbranch_mapping_dlg_branch_col_lbl分岐branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblグループmnu_go_sequenceシーケンスcv_activity_helpURL_undefined{0}のヘルプは見つかりませんでしたtd_desc_textToDo タブはシーケンスが完了していなくても使用できます。詳細はヘルプをご覧ください。<br><br>この特徴は現在、完全に動作しています。opt_activity_title選択枠アクティビティlbl_num_activities{0} - アクティビティls_manage_txtレッスン管理ls_tasks_txt必要なタスクtd_goContribute_btnGolearner_exportPortfolio_btnエクスポートls_status_scheduled_lblスケジュール済みal_confirm_forcecomplete_toactivity学習者 "{0}" にアクティビティ "{1}" の完了を強制しますか?al_error_forcecomplete_invalidactivity学習者 "{0}" を、学習中もしくは完了したアクティビティ "{1}" にドロップしました。al_confirm_forcecomplete_tofinish学習者 "{0}" にレッスンの最後までの完了を強制しますか?al_error_forcecomplete_notarget学習者 "{0}" をアクティビティもしくはレッスン修了にドロップしてください。title_sequencetab_endGate終了した学習者:help_btn_tooltipヘルプrefresh_btn_tooltip学習者用の最新の進行データを再読込しますls_manage_learners_btn_tooltipこのレッスンに所属する全学習者を閲覧しますls_manage_apply_btn_tooltipレッスンの状態を、ドロップダウンリストの内容に変更しますls_manage_start_btn_tooltip今すぐレッスンを開始しますcurrent_act_tooltipダブルクリックで、学習者の現在のアクティビティに対する進捗状況をチェックしますcompleted_act_tooltipダブルクリックで、学習者の完了したアクティビティに対する状況をチェックしますal_doubleclick_todoactivity学習者 {0} は アクティビティ {1} に到達していません。finish_learner_tooltip学習者アイコンをこのバーにドロップすると、レッスン修了までの完了を強制しますccm_monitor_activityhelpヘルプlearner_viewJournals_btnジャーナルエントリlearner_viewJournals_btn_tooltip学習者が保存した全てのジャーナルエントリを表示しますls_learnerURL_lbl学習者 URL:ls_confirm_expp_enabled学習者によるポートフォリオのエクスポートを有効にしました。ls_confirm_expp_disabled学習者によるポートフォリオのエクスポートを無効にしました。ls_remove_confirm_msg学習履歴の削除 が選択されました。削除された学習履歴は復元できません。続けますか?ls_status_cmb_remove学習履歴の削除ls_status_removed_lbl削除されましたal_yesはいal_noいいえls_remove_warning_msg警告: 学習履歴を削除しようとしています。このレッスンを残しておきますか?learners_group_name{0} 学習者ls_win_editclass_staff_lblモニターcheck_avail_btn正規性チェックcontinue_btn続行ls_sequence_live_edit_btnライブ編集mnu_edit編集mnu_edit_copyコピーmnu_edit_cut切り取りmnu_edit_paste貼り付けmnu_fileファイルmnu_file_refresh更新mnu_file_editclassクラスを編集mnu_file_startスタートmnu_helpヘルプmnu_help_abtAboutperm_act_lbl手動で開くsched_act_lblタイマーで設定synch_act_lbl全員を待つws_Rootルートws_dlg_cancel_buttonキャンセルws_dlg_location_button場所ws_tree_mywspワークスペースws_tree_orgs組織sys_error_msg_startシステムエラーが発生しました:sys_errorシステムエラーmnu_file_scheduleスケジュールmnu_file_exit終了mnu_view_learners学習者...mnu_goGomnu_go_lessonレッスンmnu_go_scheduleスケジュールmnu_go_learners学習者mnu_go_todoToDomnu_help_helpヘルプrefresh_btn更新help_btnヘルプmtab_lessonレッスンmtab_seqシーケンスmtab_learners学習者mtab_todoToDols_status_lblステータス:ls_learners_lbl学習者:ls_class_lblクラス:ls_manage_class_lblクラス:ls_manage_status_lblステータス変更:ls_manage_start_lbl開始:ls_manage_learners_btn学習者を表示ls_manage_editclass_btnクラスを編集ls_manage_apply_btn適用ls_manage_schedule_btnスケジュールls_manage_start_btnすぐに開始ls_manage_date_lbl日付ls_duration_lbl経過期間:ls_status_cmb_activate再開ls_status_cmb_disable中断ls_status_cmb_enable再開ls_status_cmb_archiveアーカイブ保存ls_status_active_lbl有効ls_status_disabled_lbl無効ls_status_archived_lblアーカイブls_status_started_lbl開始ls_win_editclass_titleクラスを編集ls_win_learners_title学習者を表示ls_win_editclass_save_btn保存ls_win_editclass_cancel_btnキャンセルls_win_learners_close_btn閉じるls_win_editclass_organisation_lbl組織ls_win_editclass_learners_lbl学習者ls_manage_editclass_btn_tooltipこのレッスンに割り当てられる学習者とモニターのリストを編集しますstaff_group_name{0} モニターccm_monitor_activityアクティビティ モニターbranch_mapping_dlg_conditions_dgd_lbl割り当てcompetences_mapped_to_act_lbl権限を {0} にマップしました。mapped_competences_lbl権限の割り当てal_activity_view_competence_mappings_invalid権限の割り当てを表示する前にアクティビティを選択してください。view_act_mapped_competences権限の割り当てを表示al_cancelキャンセルal_confirm確認al_okOKapp_chk_langload言語データはロードされませんでしたapp_chk_themeloadテーマはロードされませんでしたapp_fail_continueアプリケーションは作業を続行できません。サポートに連絡してくださいdb_datasend_confirmデータをサーバに送信しましたccm_monitor_view_group_mappings分岐のグループを表示ccm_monitor_view_condition_mappings分岐の条件を表示goContribute_btn_tooltipこのタスクの実行画面へ移動するmv_search_invalid_input_msgページ番号は 1 から {0} の間ですmv_search_current_page_lblページ {0} / {1}mv_search_default_txt検索する文字列かページ番号を入力してくださいls_seq_status_teacher_branching先生が分岐を選択al_confirm_forcecomplete_to_end_of_branching_seq学習者 {0} に、この分岐シーケンスの最後までの完了を強制しますか?class_exportPortfolio_btn_tooltipクラスのポートフォリオをエクスポートし、今後参照するためにこのコンピュータに保存しますlearner_exportPortfolio_btn_tooltip学習者のポートフォリオをエクスポートし、今後参照するためにこのコンピュータに保存しますls_win_learners_heading_lbl{0} の学習者: {1}mv_search_error_msg検索する文字列かページ番号 (1-{0}) を入力してくださいls_locked_msg_lbl<b>{0}</b> はユーザー {1} が編集中です。competence_title_lblタイトルcompetence_desc_lbl説明view_competences_dlg権限の表示order_learners_by_completion_lbl完了順ls_win_learners_heading_class_lblクラスls_win_learners_heading_activity_lblアクティビティlearner_plus_tooltip学習者 {0}ダブルクリックで全リストが見れます。ls_confirm_presence_enabled現在、学習者は他ユーザーのオンライン状況を見ることができますls_confirm_presence_disabled現在、学習者は他ユーザーのオンライン状況を見ることができませんls_manage_presenceImEnabled_lblインスタント・メッセージを有効にするsupport_act_titleサポート・アクティビティal_error_forcecomplete_support_act強制的に学習者がサポート・アクティビティを完了させることはできませんmsg_no_learners_in_lesson1 人以上の学習者が選択しなければいけませんls_confirm_presence_im_enabledインスタント・メッセージは有効ですls_confirm_presence_im_disabledインスタント・メッセージは無効ですal_alert通知ls_manage_schedule_btn_tooltipレッスンの開始予定時刻を設定しますal_validation_schstart日付が選択されていません。日付と時刻を選択してください。ls_manage_time_lbl時刻 (時 : 分)al_validation_schtime正しい時刻を入力してください。view_time_graph_btn_tooltipアクティビティごとの進捗状況のグラフの表示view_time_chart_btn学習時間グラフの表示cv_design_unsaved_live_edit保存されていない変更は自動的に保存されます。挿入/統合を続けますか?view_time_chart_btn_tooltipアクティビティごとの進捗状況のグラフの表示view_time_graph_btn学習時間グラフの表示mnu_view表示about_popup_version_lblバージョンabout_popup_license_lbl<p>このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された GNU 一般公衆利用許諾契約書 バージョン 2 の定める条件の下で再頒布または改変することができます。<br><br>{0}</p> \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ko_KR_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_seq_status_moderation중재Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later추후 정의Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate허가 관문A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate관문 동기화A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping모둠 선택Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution기여Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate시스템 관문A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_teacher_branching교수자가 선택한 갈래A type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_set아직 미설정The value of the sequence's status is not setls_seq_status_sched_gate예약 관문A type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_conditions_dgd_lbl매핑Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl갈래Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl조건Column heading for showing condition description of the mapping.ccm_monitor_view_group_mappings갈래 모둠 보기Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings갈래 조건 보기Label for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lbl모둠Column heading for showing group name of the mapping.mnu_go_sequence순차학습Menu bar Go to Sequence Tabcv_activity_helpURL_undefined{0}에 대한 도움말 페이지를 찾을 수 없습니다.Alert message when a tool activity has no help url defined.al_confirm_forcecomplete_to_end_of_branching_seq모든 학습자들을 이 갈래 순차학습 끝으로 보내기를 원하십니까?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq{0}는 순차학습의 다른 갈래에 있는 활동위에 놓여질 수 없습니다.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencecv_design_unsaved_live_edit저장되지 않은 변경은 자동으로 저장될 것입니다. 삽입/통합으로 계속하기를 원하십니까?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching모둠이 갈래에서 사용중이므로 이 모둠무리에 대해 모둠을 추가하거나 제거할 수 없습니다. 모둠을 추가하거나 제거하는 것은 갈래 모둠 설정에 영향을 줍니다. 기존 모둠에 사용자를 추가하거나 제거할 수 있습니다.Third instructions paragraph on the chosen branching screen.al_alert주의Generic title for Alert windowal_cancel취소To Confirm title for LFErroral_confirm확인To Confirm title for LFErrorapp_chk_langload언어 데이터가 올려지지 않았습니다.message for unsuccessful language loadingapp_chk_themeload주제 데이터가 올려지지 않았습니다.message for unsuccessful theme loadingapp_fail_continue응용프로그램이 계속할 수 없습니다. 지원팀에게 문의하십시요message if application cannot continue due to any errordb_datasend_confirm서버에 자료를 올려주어서 감사합니다.Message when user sucessfully dumps data to the servermnu_edit편집Menu bar Editmnu_edit_copy복사Menu bar Edit &gt; Copymnu_edit_cut자르기Menu bar Edit &gt; Cutmnu_edit_paste붙이기Menu bar Edit &gt; Pastemnu_file파일Menu bar Filemnu_file_refresh새로고침Menu bar Refreshmnu_file_editclass분반 편집Menu bar Edit Classmnu_file_start시작Menu bar Startmnu_help도움말Menu bar Helpmnu_help_abt정보Menu bar Aboutperm_act_lbl허가Label for permission gate activitysched_act_lbl일정Label for schedule gate activitysynch_act_lbl동기화Used as a label for the Synch Gate Activity Typews_Root최상위 폴더Root folder title for workspacews_dlg_cancel_button취소2ws_dlg_location_button위치Workspace dialogue Location btn labelws_tree_mywsp내 작업공간The root level of the treews_tree_orgs조직Shown in the top level of the tree in the workspacesys_error_msg_start다음 시스템오류가 발생하였습니다.Common System error message starting linesys_error_msg_finish계속하기 위해서는 LAMS 저작을 다시 시작해야 합니다. 이문제를 고치는데 도움을 주기 위해서 이 오류에 대한 다음 정보를 저장하기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error elert window titlemnu_file_schedule일정Menu bar Schedulemnu_file_exit나감Menu bar Exitmnu_view_learners학습자들Menu bar Learnersmnu_go진행Menu bar Gomnu_go_schedule일정Menu bar Go to Schedule Tabmnu_go_learners학습자들Menu bar Go to Learners Tabmnu_go_todo할일Menu bar Todorefresh_btn새로고침Refresh buttonhelp_btn도움말Help buttonmtab_seq순차학습Monitor Sequence tabmtab_learners학습자들Monitor Learners tabmtab_todo할일Monitor Todo tabls_status_lbl상태Status label - Lesson detailsls_learners_lbl학습자들Learner label - Lesson detailsls_class_lbl분반Class label - Lesson detailsls_manage_class_lbl분반Class managing label - Lesson detailsls_manage_start_lbl시작Start managing label - Lesson detailsls_manage_learners_btn학습자 보기View learners button - Lesson details (manage section)ls_manage_editclass_btn분반 편집Edit class button - Lesson details (manage section)ls_manage_apply_btn적용Status Apply button - Lesson details (manage section)ls_manage_schedule_btn일정Schedule start button - Lesson details (manage section)ls_manage_date_lbl일자Date field title - Lesson details (manage section)ls_duration_lbl경과시간Elapsed duration of lesson - Lesson detailsls_manage_status_cmb상태 선택Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activate활성화Lesson status option - Activatels_status_cmb_disable비활성화Lesson status option - Disable (suspend)ls_status_cmb_enable활성화Lesson status option - Enable (make active/unsuspend)ls_status_cmb_archive저장소Lesson status option - Archivels_status_disabled_lbl비활성화됨Current status description if suspended (disabled)ls_status_archived_lbl저장됨Current status description if archviedls_status_started_lbl시작됨Current status description if started (enabled)ls_win_editclass_title분반 편집Edit class window titlels_win_learners_title학습자 보기View learners window titlemnu_view보기Menu bar Viewls_win_editclass_save_btn저장Save button on Edit Class popupls_win_editclass_cancel_btn취소Cancel button on Edit Class popupls_win_learners_close_btn닫기Close button on View Learners popupls_win_editclass_organisation_lbl조직Heading for Organisation tree on Edit Class popupls_win_editclass_staff_lbl관리자Heading for Staff list on Edit Class popupls_win_editclass_learners_lbl학습자Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl과목의 학습자 수Heading on View Learners window panel.td_desc_heading고급 제어Todo tab description headingtd_desc_text순차학습을 마치기 위해서 할일 탭을 사용할 필요가 없습니다. 더 많은 정보를 위해서 도움말 페이지를 보기바랍니다. Todo tab descriptionopt_activity_title선택 활동Title for Optional Activity on canvas (monitoring)lbl_num_activities하위 활동Number of child activities for Complex activity shown on canvas.ls_of_text/i.e. 1 of 10 Used for showing how many learners have startedls_manage_txt강좌 관리Heading for Management section of Lesson Tabls_tasks_txt필요작업Heading for Required Tasks (todo section of Lesson tab)td_goContribute_btn진행Go button on contribute entry itemlearner_exportPortfolio_btn포트폴리오 내보내기Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lbl예정됨Lesson status option - Scheduled (Not Started)ls_manage_learnerExpp_lbl학습자에 대한 포트폴리오 내보내기 활성화Label for Enable export portfolio for Learnerls_confirm_expp_enabled학습자에 대한 포트폴리오 내보내기가 활성화 되었습니다.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled학습자에 대한 포트폴리오 내보내기가 비 활성화되었습니다.Confirmation message on disabling export portfolio for learnersal_confirm_forcecomplete_toactivity당신은 학습자 '{0}'가 '{1}' 활동을 강제 완료하기를 원하십니까?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivity학습자의 현재 또는 완료한 활동'{1}'에서 학습자 '{0}'를 제거하였습니다.Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinish학습자 '{0}'를 강좌 끝에서 강제 완료하기를 원하십니까?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notarget학습자 '{0}'를 활동 혹은 강좌의 끝에 있게 하십시요.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate완료한 학습자들Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_learnerURL_lbl학습자 URLLearner URL:refresh_btn_tooltip학습자들에 대한 최근의 진도 자료 다시 올리기tool tip message for the refresh buttonls_manage_apply_btn_tooltip드롭 다운 선택에 의한 강의 상태 변경tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statuscompleted_act_tooltip학습자가 완료한 활동에 대한 기여를 검토하기 위해서 더블클릭하새요.tool tip message for completed activity iconlearner_exportPortfolio_btn_tooltip학습자의 포트폴리오를 내보내기 하여 추후 참조를 위해 당신의 컴퓨터에 저장하십시요.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn지금 시작Start immediately button - Lesson details (manage section)ls_status_active_lbl생성되었지만 아직 시작되지 않음Current status description if active (enabled)ls_manage_status_lbl상태 변경Status managing label - Lesson detailsgoContribute_btn_tooltip이 일을 지금 하세요.tool tip message for go button in required tasks list in lesson tabhelp_btn_tooltip도움말tool tip message for help button in toolbarls_manage_editclass_btn_tooltip이 강의에 할당된 학습자 및 관리자 목록 편집 tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltip이 강의에 할당된 모든 학습자 보기 tool tip message for the view learners button in lesson tab under manage lesson sectionclass_exportPortfolio_btn_tooltip강좌 포트폴리오를 내보내기 하고 추후 참조를 위해 당신의 컴퓨터에 저장하십시요.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerls_manage_start_btn_tooltip지금 강좌를 시작tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessoncurrent_act_tooltip학습자의 현재 활동에 대한 진행중인 기여를 검토하기 위해 더블클릭하십시요.tool tip message for current activity iconls_manage_schedule_btn_tooltip추후에 시작할 수 있도록 강좌를 예약tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timeal_doubleclick_todoactivity죄송합니다. 학습자 {0} 가 아직 활동 {1}에 도달하지 못하였습니다.alert message when user double click on the todo activity in the sequence under learner tablearner_viewJournals_btn저널 항목Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip학습자에 의해 저장된 모든 저널 항목 보기tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.mtab_lesson학습Monitor Lesson details tabmnu_go_lesson학습Menu bar Go to Lesson Tabmnu_help_help학습자 관찰 도움말Menu bar Help itemccm_monitor_activity활동 관찰 열기Label for Custom Context Monitor Activityccm_monitor_activityhelp관찰 활동 도움말Label for Custom Context Monitor Activity Helplearners_group_name{0} 학습자들Group name for the class's learners group.staff_group_name{0} 스태프Group name for the class's staff group.al_validation_schstart날짜가 선택되지 않았습니다. 날짜와 시간을 선택하여 주십시요.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl시간(시간:분)Time fields title - Lesson details (manage section)al_ok확인OK on the alert dialogal_validation_schtime올바른 시간을 입력하세요.Alert message when user enters an invalid time for schedule startfinish_learner_tooltip학습자를 강의의 마지막부분으로 강제 종료하고자 하기 위해서는 학습자 아이콘을 이 막대 다음으로 드래그 한 다음 놓으십시요.Rollover message when user moves their mouse over the end gate bar in monitor tab viewal_no아니오'No' on the alert dialogls_remove_warning_msg학습이 제거되려고 합니다. 이 학습이 보관되기를 원하십니까?Message for the alert dialog which appears following confirmation dialog for removing a lesson.ls_remove_confirm_msg당신은 이 학습을 제거하는 것을 선택하였습니다. 제거된 학습은 다시 복원될 수 없습니다. 계속하시겠습니까? remove confirm msgls_status_cmb_remove제거Lesson status option - Removels_status_removed_lbl제거됨Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_send보내기Send button label on the system error dialogcontinue_btn계속Continue button labells_sequence_live_edit_btn라이브 편집Live Edit buttonls_continue_action_lbl계속하기 위해서 {0}를 클릭하세요Action label displayed when a user can proceed to Live Edit.stream_reference_lbl람스Reference label for the application stream.check_avail_btn사용가능 확인Check Availability button labelmsg_bubble_failed_action_lbl사용불가, 다시시도 하세요Label displayed when check failed i.e. lesson is still locked.msg_bubble_check_action_lbl확인중...Label displayed when checking availability of lesson.about_popup_license_lbl이 프로그램은 프리소프트웨어 입니다; Free Software Foundationd 에 의해 발간된 GNU General Public Licence version2의 조건에 한해서 재배포하거나 수정할 수 있습니다. Label displaying the license statement in the About dialog.about_popup_trademark_lbl{0}는 {0} 재단의 등록상표입니다. ({1}).Label displaying the trademark statement in the About dialog.al_confirm_live_edit라이브편집을 열려고 합니다. 계속하시겠습니까?Confirm warning (dialog) message displayed when opening Live Edit.ls_continue_lbl안녕하세요{1}, 아직 {0}를 편집하는 것을 마치지 않았습니다.Continue message labells_sequence_live_edit_btn_tooltip이 학습에 대한 설계를 편집Tool tip message for Live Edit buttonabout_popup_version_lbl버전Label displaying the version no on the About dialog.about_popup_title_lbl{0} 정보Title for the About Pop-up window.stream_urlhttp://{0}foundation.org URL address for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.ls_locked_msg_lbl죄송합니다. {0}은 {1}에 의해 편집 중입니다.Warning message on Monitor locked screen.about_popup_copyright_lbl© 2002-2008 {0} 재단Label displaying copyright statement in About dialog.close_mc_tooltip최소화Tooltip message for close button on Branching canvas.mv_search_default_txt검색 쿼리나 페이지 번호를 입력하세요The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequences{0}-순차학습Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalid죄송합니다. 활동의 오른쪽 클릭 메뉴의 활동 콘텐츠 메뉴 열기/편집을 클릭하기전에 활동을 선택하여야 합니다.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msg검색 쿼리나 1과 {0} 사이의 페이지 번호를 입력하세요This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg페이지 번호는 1에서 {0} 사이 이어야 합니다.This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0} 을 찾을 수 없습니다.This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl{1} 중 {0} 페이지{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl진행If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl인덱스 보기When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/mi_NZ_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀElearners_group_name{0} ākongaccm_monitor_activityTuwhera Aroturuki Ngoheccm_monitor_activityhelpĀwhina Aroturuki Ngoheal_validation_schtimeTāpiritia he wā whai mana.learner_viewJournals_btnTāuru Hautaka learner_viewJournals_btn_tooltipTirohia ngā Tāuru Hautaka i tiakina e ngā Ākongaal_doubleclick_todoactivityAroha, kāhore anō tēnei akonga: {0} kia tae atu ki te ngohe: {1}.about_popup_license_lbl<p> He kore utu tēnei papatono; ka taea te tohatoha me te whakahōu i raro i ngā tikanga o te GNU ahua2 pērā i ngā putanga o te Free Software Foundation. <br><br>{0}</p>about_popup_version_lblTe ĀhuagoContribute_btn_tooltipWhakaotia tēnei tūmahi ināianeirefresh_btn_tooltipTīkina ake anō ngā raraunga kaneke hōu tonu mō ngā ākongals_manage_editclass_btn_tooltipWhakatikaina te rārangi ākonga, kaiako hoki kua tautapatia ki tēnei akoranga ls_manage_learners_btn_tooltipKa whakaatu i ngā ākonga katoa kua tautapatia ki tēnei akorangals_manage_apply_btn_tooltipHurihia te tūnga o te akoranga e ai ki te kōwhiringa taka-iho ls_manage_start_btn_tooltipTīmataria te ākoranga ināia tonu neils_manage_schedule_btn_tooltipWhakaritea kia tīmata te akoranga ā tētehi wā o muri current_act_tooltipKia rua ngā pāwhiringa hei arotake i ngā takoha kei te haere mō tā te ākonga ngohe o nāianei completed_act_tooltipKia rua ngā pāwhiringa hei arotake i ngā takoha kei te haere mō te ngohe kua oti nei i te ākongals_duration_lblTe Wā kua Haere:class_exportPortfolio_btn_tooltipKawea atu te kōpaki akomanga, ka tiaki ki tāu rorohiko hei tohutoro māu ā muri atual_confirmWhakatūturutiaapp_chk_langloadKāhore anō kia utaina ngā raraunga reoapp_chk_themeloadKāhore ngā raraunga kaupapa kia utainaapp_fail_continueKāhore te Taupānga e taea te haere tonu. Whakapā atu ki te Kaiwhakahaeredb_datasend_confirmNgā mihi mō te tuku raraunga ki te tūmau mnu_help_abtWhakamāramaws_dlg_location_buttonŪngasys_error_msg_finishTērā pea me tīmata anō koe i te Pūnaha Akoranga ā Hiko. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?al_cancelWhakakorels_win_editclass_cancel_btnWhakakorews_dlg_cancel_buttonWhakakorews_RootWhaiaronga Iomatuals_manage_apply_btnHōatuls_manage_schedule_btnWhakaritengals_manage_date_lblTe Rāls_status_archived_lblPūrangals_status_started_lblKua timatals_learnerURL_lblĀkonga URLls_class_lblTaipitopitomnu_viewTirohials_win_editclass_save_btnTiakils_win_learners_close_btnKatials_win_editclass_organisation_lblWhakahaerels_win_editclass_staff_lblKaiakols_win_editclass_learners_lblĀkongaopt_activity_titleNgohe Whiringalbl_num_activitiesNgohe Tamarikils_of_textotd_goContribute_btnHaeretitle_sequencetab_endGateĀkonga i mutuls_status_scheduled_lblKua Whakariteahelp_btn_tooltipĀwhinamnu_file_refreshTāmatatiarefresh_btnTāmatatiasys_error_msg_startKua puta tēnei hapa pūnaha:ls_status_cmb_activateWhakahoheals_status_cmb_disableMonokials_status_cmb_enableHohels_status_cmb_archivePūrangals_status_disabled_lblTāherels_win_learners_heading_lblNgā ākonga kei te akomanga:td_desc_headingArā atu Mana Anō:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.ls_manage_txtWhakahaere Akorangals_tasks_txtTūmahi Kia Mahiaal_confirm_forcecomplete_toactivityMe āta whai koe ki te uruhi i te otinga o te ākonga '{0} ki te ngohe {1}?al_error_forcecomplete_invalidactivityKua waiho e koe te ākonga ‘{0}’ i tāna mahi o nāianei, i tāna ngohe oti rānei ‘{1}’al_confirm_forcecomplete_tofinishMe āta whai koe ki te uruhi i te otinga o te ākonga ‘{0}’ ki te mutunga o te akoranga?al_error_forcecomplete_notargetWaiho koa te ākonga ‘{0}’ ki tētehi ngohe, ki te mutunga o te akoranga rānei. ls_manage_time_lblTe Wā (Haora : Miniti)mnu_help_helpĀwhinals_manage_start_btnTīmatariaal_alertKia Matohimnu_editWhakatikatikamnu_edit_copyTāruatiamnu_edit_cutWhakakoreamnu_edit_pasteTāpiamnu_fileKōnaemnu_file_editclassWhakatikatika Akomangamnu_file_startTīmatariamnu_helpĀwhinaperm_act_lblWhakaaetangasched_act_lblWhakaritengasynch_act_lblTukutahiws_tree_mywspTaku Papamahiws_tree_orgsWhakahaeresys_errorHapa Pūnahamnu_file_scheduleWhakaritengamnu_file_exitPutangamnu_view_learnersĀkonga....mnu_goHaeremnu_go_lessonAkorangamnu_go_scheduleWhakaritengamnu_go_learnersĀkongamnu_go_todoHei Mahihelp_btnĀwhinamtab_lessonAkorangamtab_seqRaupapamtab_learnersĀkongamtab_todoHei Mahils_status_lblTūngals_learners_lblĀkongals_manage_class_lblAkorangals_win_learners_titleTirohials_manage_start_lblTīmatarials_manage_editclass_btnWhakatikatika akomangaclose_mc_tooltipWhakaitils_status_active_lblKua hangaia ēngari kāore anō kia tīmatariamv_search_go_btn_lblRapumv_search_default_txtTuhi rapu ui tau wharangi rāneimv_search_error_msgTuhi rapu ui tau wharangi rānei mai 1 me {0}mv_search_invalid_input_msgKo te tau wharangi mai 1 me {0}mv_search_not_found_msgKāore te {0} i rapumv_search_current_page_lblWharangi {0} ki {1}ls_seq_status_contributionTākohamv_search_index_view_btn_lblTirohanga Matuals_seq_status_moderationAroturukiview_time_chart_btn_tooltipTirohia ki tētehi tūtohinga kia kite i te kāneke o te ākonga ki te wā mō ia ngohe.support_act_titleNgohe Āwhinaal_error_forcecomplete_support_actKāore e taea te whakaotia i te ākonga mō te ngohe āwhina.view_time_graph_btn_tooltipTirohia ki tētehi kauwhata kia kite i te kāneke o te ākonga ki te wā mō ia ngohe.ls_seq_status_define_laterTautu a muri atuls_seq_status_perm_gateTomokanga Whakaaeal_validation_schstartKāore i kōwhiria te rā. Kōwhirihia te rā me te wā.finish_learner_tooltipE uruhina ai te ākonga ki te whakaoti tae noa ki te mutunga o te akoranga, tōia te ata ākonga ki te pae nei, ka wete.ls_remove_confirm_msgKua kōwhiria e koe te Tango tēnei akoranga. Kāore e taea te whakahokia mai anō ngā akoranga i tango. Haere tonu?ls_status_cmb_removeTangohials_status_removed_lblKua Tangohiaal_yesĀeal_noKāolearner_exportPortfolio_btn_tooltipKawea atu te kōpaki ākonga, ka tiaki ki tāu rorohiko hei tohutoro māu ā muri atual_sendTukunacheck_avail_btnTirohiacontinue_btnHaere tonuls_continue_lblKia ora {0}, kāhore anō koe kia mutu te whakatikatika {0}.ls_sequence_live_edit_btn_tooltipWhakatikaina tēnei hoahoatanga mō tēnei ngohe.msg_bubble_check_action_lblKei te tirohia...ls_locked_msg_lblAroha, {0} kei te whakatikaina e {1}.about_popup_title_lblWhakamārama - {0}about_popup_trademark_lblHe moko o {0} Rōpū {1}.stream_reference_lblPūnaha Akoranga ā Hikogpl_license_urlwww.gnu.org/rēhita/gpl.txtstream_urlhttp://{0}rōpū.orgls_continue_action_lblPāwhirihia {0} kia haere tonu.ls_sequence_live_edit_btnWhakatikaina Ngohemsg_bubble_failed_action_lblKāore e taea, me mahi anō.al_confirm_live_editKei te tūwhera koe i te Whakatikaina Ngohe. Ka hiahia koe te haere tonu?ls_manage_learners_btnTirohials_manage_status_lblTūngals_manage_status_cmbKōwhiria:ls_win_editclass_titleWhakatikatikals_seq_status_synch_gateTomokanga Tukutahils_seq_status_choose_groupingKōwhiri Whakarōpūlbl_num_sequences{0} - Raupapa Akols_remove_warning_msgKia Mataara: Kei te tango akoranga. Ka pirangi te mau tēnei akoranga?view_time_graph_btnTirohia Kauwhata Wāls_seq_status_system_gateTomokanga Pūnahaabout_popup_copyright_lbl© 2002-2009 {0} Rōpū.branch_mapping_dlg_condition_col_lblTikangaccm_monitor_view_condition_mappingsTirohia Tikanga ki Rōpūal_error_forcecomplete_to_different_seq{0} kāore e taea te whakakore ngohe kei tētehi atu pekanga raupapa ako rānei.label.grouping.general.instructions.branchingKāore e taea te tāpiri tangohia rānei mō tēnei whakarōpūtanga nā te whakaritenga pekanga. Ka taea te tāpiri/tango kaimahi anakē ki ngā rōpū e tū nei.ls_seq_status_teacher_branchingPekanga Kaiako i Kōwhirihials_seq_status_not_setKāhore anō i Whakatauls_seq_status_sched_gateTomokanga Wābranch_mapping_dlg_conditions_dgd_lblMāheretangabranch_mapping_dlg_branch_col_lblPekangaccm_monitor_view_group_mappingsTirohia Rōpū ki Pekangabranch_mapping_dlg_group_col_lblRōpūmnu_go_sequenceRaupapa Akocv_activity_helpURL_undefinedKāore i kimi te wharangi āwhi mō {0}al_confirm_forcecomplete_to_end_of_branching_seqMe āta whai koe ki te uruhi i te otinga o te ākonga '{0} ki te mutunga o tēnei raupapa pekanga?view_time_chart_btnTirohia Tūtohinga Wācompetence_title_lblTaitaracompetence_desc_lblWhakamāramals_manage_learnerExpp_lblWhakahohe te tuku kōpaki mō te ākongalearner_exportPortfolio_btnKawe Kōpaki Atuls_confirm_expp_disabledKua monokia te kawe kōpaki mo ngā ākongals_confirm_expp_enabledKua whakahohetia te kawe kōpaki mō ngā ākongacv_design_unsaved_live_editKa tiaki aunoa ngā rerekētanga kāore i tiaki. Haere tonutia te kōkuhu/hanumi?al_activity_openContent_invalidAroha! Tīpakohia tētehi ngohe i mua i te pāwhiri i te Huakina/Whakatikatika i te papatono Ihirangi Ngohe ki te taha matau. view_competences_dlgTirohia Matatauview_competences_in_ld_lblMatatau hoahoa ako: {0}view_act_mapped_competencesTirohia ngā Matatau kua Whakamaheretiamapped_competences_lblMatatau kua Whakamaheretiacompetences_mapped_to_act_lblMatatau kua Whakamaheretia ki {0}al_activity_view_competence_mappings_invalidMe āta kōwhiri koe i tētehi ngohe i mua i te tiro ki ōna matatau kua whakamaheretia.order_learners_by_completion_lblRaupapa mā te mahi otils_manage_presenceEnabled_lblTukuna ngā ākonga kia kite ko wai kua tuihono mails_confirm_presence_enabledKa taea e ngā ākonga te kite ko wai kua tuihono mai ināianei.ls_confirm_presence_disabledKāore e taea e ngā ākonga te kite ko wai kua tuihono mai ināianeils_win_learners_heading_class_lblAkomangals_win_learners_heading_activity_lblNgohelearner_plus_tooltip{0} Ākonga. Pāwhirihia kia kite te rārangi katoa.staff_group_name{0} kaiako aroturuki \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ms_MY_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertAletGeneric title for Alert windowal_cancelBatalTo Confirm title for LFErroral_confirmSahTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadData Bahasa tidak berjaya diloadmessage for unsuccessful language loadingapp_chk_themeloadData tema tidak berjaya diloadmessage for unsuccessful theme loadingapp_fail_continueAplikasi tidak berjaya diteruskan. Sila hubungi kumpulan sokonganmessage if application cannot continue due to any errordb_datasend_confirmTerima kasih kerana menghantar data ke pelayanMessage when user sucessfully dumps data to the servermnu_editSuntingMenu bar Editmnu_edit_copySalinMenu bar Edit &gt; Copymnu_edit_cutPotongMenu bar Edit &gt; Cutmnu_edit_pasteTampalMenu bar Edit &gt; Pastemnu_fileFailMenu bar Filemnu_file_refreshRefreshMenu bar Refreshmnu_file_editclassSunting KelasMenu bar Edit Classmnu_file_startMulaMenu bar Startmnu_helpBantuMenu bar Helpmnu_help_abtTentangMenu bar Aboutperm_act_lblKeizinanLabel for permission gate activitysched_act_lblJadualLabel for schedule gate activitysynch_act_lblSynchroniseUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonBatal2ws_dlg_location_buttonLokasiWorkspace dialogue Location btn labelws_tree_mywspRuang Kerja SayaThe root level of the treews_tree_orgsOrganisasiShown in the top level of the tree in the workspacesys_error_msg_startRalat sistem ini telah muncul:Common System error message starting linesys_error_msg_finishAnda mungkin perlu memulakan semula LAMS untuk sambung. Adakah anda mahu menyimpan ralat untuk membantu menyelesaikan masalah ini?Common System error message finish paragraphsys_errorRalat SistemSystem Error elert window titlemnu_file_scheduleJadualMenu bar Schedulemnu_file_exitKeluarMenu bar Exitmnu_view_learnersPelajar...Menu bar Learnersmnu_goPergiMenu bar Gomnu_go_lessonPelajaranMenu bar Go to Lesson Tabmnu_go_scheduleJadualMenu bar Go to Schedule Tabmnu_go_learnersPelajarMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpAwasi BantuanMenu bar Help itemrefresh_btnRefreshRefresh buttonhelp_btnBantuHelp buttonmtab_lessonPelajaranMonitor Lesson details tabmtab_seqTurutanMonitor Sequence tabmtab_learnersPelajarMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblPelajar:Learner label - Lesson detailsls_class_lblKelas:Class label - Lesson detailsls_manage_class_lblKelas:Class managing label - Lesson detailsls_manage_status_lblTukar Status:Status managing label - Lesson detailsls_manage_start_lblMula:Start managing label - Lesson detailsls_manage_learners_btnPapar PelajarView learners button - Lesson details (manage section)ls_manage_editclass_btnSunting KelasEdit class button - Lesson details (manage section)ls_manage_apply_btnPohonStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnJadualSchedule start button - Lesson details (manage section)ls_manage_start_btnMula SekarangStart immediately button - Lesson details (manage section)ls_manage_date_lblTarikhDate field title - Lesson details (manage section)ls_duration_lblDurasi TinggalElapsed duration of lesson - Lesson detailsls_manage_status_cmbPilih status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktifkanLesson status option - Activatels_status_cmb_enableAktifLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkibLesson status option - Archivels_status_archived_lblArkibCurrent status description if archviedls_win_editclass_titleSunting KelasEdit class window titlels_win_learners_titlePapar PelajarView learners window titlemnu_viewPaparMenu bar Viewls_win_editclass_save_btnSimpanSave button on Edit Class popupls_win_editclass_cancel_btnBatalCancel button on Edit Class popupls_win_learners_close_btnTutupClose button on View Learners popupls_win_editclass_organisation_lblOrganisasiHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStafHeading for Staff list on Edit Class popupls_win_editclass_learners_lblPelajarHeading for Learners list on the Edit Class popupls_win_learners_heading_lblPelajar dalam kelas:Heading on View Learners window panel.td_desc_headingKontrol AdvanTodo tab description headingtd_desc_textGuna Tab Todo tidak diperlukan untuk menyempurnakan turutan. Sila lihat laman bantuan untuk maklumat lanjut <br> <br>Fitur ini telah berfungsi dengan penuh sekarang.Todo tab descriptionopt_activity_titleAktiviti PilihanTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesanak aktivitiNumber of child activities for Complex activity shown on canvas.ls_of_textdarii.e. 1 of 10 Used for showing how many learners have startedls_manage_txtUrus PelajaranHeading for Management section of Lesson Tabls_tasks_txtTugas DiperlukanHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnPergiGo button on contribute entry itemlearner_exportPortfolio_btnEksport PorfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblJadualLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityAdakah anda pasti untuk memaksa pelajar '{0}' yang telah selesai ke Aktiviti '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityAnda telah menjatuhkan pelajar '{0}' pada aktiviti sekarang atau aktviti '{1}' yang telah selesaiError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishAdakah anda pasti untuk memaksa pelajar '{0}' yang telah selesai untuk menamatkan pelajaran?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetSila jatuhkan pelajar '{0}' ke aktiviti atau tamatkan pelajaran.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGatePelajar Selesai:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipLengkapkan tugas ini sekarangtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipBantuantool tip message for help button in toolbarrefresh_btn_tooltipRelod data perkembangan terbaru untuk pelajartool tip message for the refresh buttonls_manage_editclass_btn_tooltipSunting senarai pelajar dan staf yang ditetapkan untuk pelajaran initool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipPapar semua pelajar yang ditetapkan untuk pelajaran initool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipUbah status pelajaran mengikut pilihan drop downtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksport portfolio kelas dan simpan di dalam komputer anda untuk rujukan masa depantool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksport portfolio pelajar dan simpan di dalam komputer anda untuk rujukan masa depantool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipMula pelajaran dengan segeratool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipJadualkan pelajaran untuk mula pada masa depantool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipKlik dua kali untuk reviu kontribusi dalam progres untuk aktiviti pelajar sekarangtool tip message for current activity iconcompleted_act_tooltipKlik dua kali untuk reviu kontribusi pelajar dalam aktiviti yang telah selesaitool tip message for completed activity iconal_doubleclick_todoactivityMaaf, pelajar: {0} tidak mencapai aktiviti: {1}, lagi.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartTiada tarikh dipilih. Sila pilih tarikh dan masa.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblMasa (Jam : Minit)Time fields title - Lesson details (manage section)al_validation_schtimeSila masukkan masa yang betul.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipUntuk memaksa pelajar yang telah selesai menamatkan pelajaran, tarik ikon pelajar ke bar ini dan lepaskan ikon tersebutRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityBuka Paparan AktivitiLabel for Custom Context Monitor Activityccm_monitor_activityhelpAwasi Bantuan AktivitiLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnEntri JurnalLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipPapar semua simpanan Entri Jurnal oleh pelajartool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL Pelajar:Learner URL:ls_manage_learnerExpp_lblBenarkan eksport portfolio untuk pelajarLabel for Enable export portfolio for Learnerls_confirm_expp_enabledEksport Portfolio telah dibenarkan untuk pelajar.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledEksport Portfolio telah dihilangkan untuk pelajar.Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgAnda telah memilih untuk Membuang pelajaran ini. Pelajaran yang telah dibuang tidak boleh diambil kembali. Sambung?remove confirm msgls_status_cmb_removeBuangLesson status option - Removels_status_removed_lblDibuangCurrent status description if deleted (removed) lesson.al_yesYaYes on the alert dialogal_noTidak'No' on the alert dialogls_remove_warning_msgAMARAN: Pelajaran ini akan dibuang. Adakah anda mahu teruskan?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} pelajarGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.check_avail_btnPeriksa KesediaanCheck Availability button labelcontinue_btnSambungContinue button labells_continue_lblHi {1}, anda tidak selesai menyunting {0}.Continue message labells_sequence_live_edit_btnSunting HidupLive Edit buttonls_sequence_live_edit_btn_tooltipSunting desain untuk pelajaran ini.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblPeriksa ...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblTiada, Cuba Lagi.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblMaaf, {0} sedan disunting oleh {1}.Warning message on Monitor locked screen.al_confirm_live_editAnda akan membuka Suntingan Hidup. Adakah anda mahu teruskan?Confirm warning (dialog) message displayed when opening Live Edit.al_sendHantarSend button label on the system error dialogabout_popup_title_lblTentang - {0}Title for the About Pop-up window.about_popup_version_lblVersiLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} adalah hakcipta Yayasan {0} ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblProgram ini adalah perisian percuma; anda boleh mengagihkan ia dan/atau mengubahnya dibawah terma GNU General Public License Versi 2 seperti yang diterbitkan oleh Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKlik {0} untuk teruskan.Action label displayed when a user can proceed to Live Edit.ls_status_active_lblDicipta tetapi tidak dimulakan lagiCurrent status description if active (enabled)ls_status_disabled_lblDigantungCurrent status description if suspended (disabled)ls_status_started_lblDimulakanCurrent status description if started (enabled)ls_status_cmb_disableHilangkanLesson status option - Disable (suspend)about_popup_copyright_lbl© 2002-2008 Yayasan {0}.Label displaying copyright statement in About dialog.mv_search_default_txtMasukkan query carian atau nombor halamanThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequences{0} - TurutanNumber of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidMaaf! Anda perlu memilih aktiviti sebelum anda klik menu Buka/Sunting Isi Aktiviti pada menu klik kanan aktiviti.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgSila masukkan query carian atau nombor halaman diantara 1 dengan {0}This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgNombor halaman mesti diantara 1 dan {0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0} tidak dijumpaiThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblHalaman {0} dari {1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblPergiIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lblPandangan IndexWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.close_mc_tooltipMinimizeTooltip message for close button on Branching canvas. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/nl_BE_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_manage_editclass_btn_tooltipDe lijst met de aan deze lijst toegewezen cursisten en medewerkers aanpasentool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipToont alle cursisten die aan deze les zijn toegewezentool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipVerander de status van deze les op basis van de selectie uit de lijsttool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusal_alertOpgeletGeneric title for Alert windowal_cancelAnnulerenTo Confirm title for LFErroral_confirmBevestigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDe taal-gegevens zijn niet geladenmessage for unsuccessful language loadingapp_chk_themeloadDe thema-gegevens zijn niet geladenmessage for unsuccessful theme loadingapp_fail_continueHet programma kan niet verder werken. Waarschuw ondersteuning/de helpdeskmessage if application cannot continue due to any errordb_datasend_confirmDank voor het naar de server sturen van gegevensMessage when user sucessfully dumps data to the servermnu_editWijzigenMenu bar Editmnu_edit_copyKopieerenMenu bar Edit &gt; Copymnu_edit_cutKnippenMenu bar Edit &gt; Cutmnu_edit_pastePlakkenMenu bar Edit &gt; Pastemnu_fileBestandMenu bar Filemnu_file_refreshVernieuwenMenu bar Refreshmnu_file_editclassCategorie aanpassenMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHelpMenu bar Helpmnu_help_abtOverMenu bar Aboutperm_act_lblToestemmingLabel for permission gate activitysched_act_lblRoosterLabel for schedule gate activitysynch_act_lblSynchroniserenUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnnuleren2ws_dlg_location_buttonLokatieWorkspace dialogue Location btn labelws_tree_mywspMijn WerkplekThe root level of the treews_tree_orgsOrganisatiesShown in the top level of the tree in the workspacesys_error_msg_startDe volgens systeemfout is opgetreden:Common System error message starting linesys_error_msg_finishMogelijk moet u LAMS opnieuw opstarten voordat u door kunt. Wilt u de volgende informatie opslaan zodat wij de oorzaak van de fout kunnen proberen op te zoeken?Common System error message finish paragraphsys_errorSysteemfoutSystem Error elert window titlemnu_file_scheduleRoosterMenu bar Schedulemnu_file_exitAfsluitenMenu bar Exitmnu_view_learnersCursisten...Menu bar Learnersmnu_goGaanMenu bar Gomnu_go_lessonLesMenu bar Go to Lesson Tabmnu_go_scheduleRoosterMenu bar Go to Schedule Tabmnu_go_learnersCursistenMenu bar Go to Learners Tabmnu_go_todoTe doenMenu bar Todomnu_help_helpBewaak-hulpMenu bar Help itemrefresh_btnVernieuwenRefresh buttonhelp_btnHelpHelp buttonmtab_lessonLesMonitor Lesson details tabmtab_seqOpeenvolgingMonitor Sequence tabmtab_learnersCursistenMonitor Learners tabmtab_todoTe doenMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblCursisten:Learner label - Lesson detailsls_class_lblCategorie:Class label - Lesson detailsls_manage_class_lblCategorie:Class managing label - Lesson detailsls_manage_status_lblStatus wijzigen:Status managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnCursisten bekijkenView learners button - Lesson details (manage section)ls_manage_editclass_btnCategorie wijzigenEdit class button - Lesson details (manage section)ls_manage_apply_btnToepassenStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblCursist toestaan portfolio te exporterenLabel for Enable export portfolio for Learnerls_confirm_expp_enabledCursisten kunnen hun portfolio nu exporterenConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledCursisten kunnen hun portfolio nu NIET exporterenConfirmation message on disabling export portfolio for learnersls_manage_schedule_btnRoosterSchedule start button - Lesson details (manage section)ls_manage_start_btnNu startenStart immediately button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblVerstreken periode:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbStatus selecteren:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateActiverenLesson status option - Activatels_status_cmb_disableUitschakelenLesson status option - Disable (suspend)ls_status_cmb_enableActiefLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiefLesson status option - Archivels_status_active_lblAangemaakt maar nog niet gestartCurrent status description if active (enabled)ls_status_disabled_lblBevrorenCurrent status description if suspended (disabled)ls_status_archived_lblGearchiveerdCurrent status description if archviedls_status_started_lblGestartCurrent status description if started (enabled)ls_win_editclass_titleCategorie wijzigenEdit class window titlels_win_learners_titleCursisten bekijkenView learners window titlemnu_viewBeeldMenu bar Viewls_win_editclass_save_btnOpslaanSave button on Edit Class popupls_win_editclass_cancel_btnAnnulerenCancel button on Edit Class popupls_win_learners_close_btnAfsluitenClose button on View Learners popupls_win_editclass_organisation_lblOrganisatieHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStafledenHeading for Staff list on Edit Class popupls_win_editclass_learners_lblCursistenHeading for Learners list on the Edit Class popupls_win_learners_heading_lblCursisten in de klas:Heading on View Learners window panel.td_desc_headingGeavanceerde opties:Todo tab description headingtd_desc_textHet gebruik van deze TeDoen-tab is niet nodig om de reeks af te maken. Zie de helppagina voor meer informatie. <br><br>Deze optie is nu volledig bruikbaar.Todo tab descriptionopt_activity_titleOptionele activiteitTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesOnderliggende activiteitenNumber of child activities for Complex activity shown on canvas.ls_of_textvan dei.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLes beherenHeading for Management section of Lesson Tabls_tasks_txtBenodigde takenHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnUitvoerenGo button on contribute entry itemlearner_exportPortfolio_btnPortfolio exporterenLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_sendVerzendenSend button label on the system error dialogccm_monitor_activityActiviteitenmonitor openenLabel for Custom Context Monitor Activityccm_monitor_activityhelpActiviteitenbeheer helpLabel for Custom Context Monitor Activity Helpal_validation_schstartEr is geen datum gekozen. Selecteer een datum en tijd.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityWeet u zeker dat u cursist '{0}' wil verplichten activiteit '{1}' te maken?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityU heeft cursist '{0}' op zijn huidige of afgemaakt activiteit '{1} laten vallen.'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishWeet u zeker dat u cursist '{0}' naar het eind van de les wil forceren?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetLaat cursist '{0}' op een activiteit of eind van de les vallen.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateCursisten die klaar zijn:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblTijd (Uren : Minuten)Time fields title - Lesson details (manage section)ls_learnerURL_lblURL van de cursist:Learner URL:ls_status_scheduled_lblGeplandLesson status option - Scheduled (Not Started)goContribute_btn_tooltipDeze taak nu afmakentool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHelptool tip message for help button in toolbarrefresh_btn_tooltipDe gegevens over voortgang van de cursisten actualiserentool tip message for the refresh buttonclass_exportPortfolio_btn_tooltipExporteer de portfolio van de klas en sla de gegevens op op uw eigen computer, zodat u er later gebruik van kunt makentool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExporteer de portfolio van de cursist en sla de gegevens op op uw eigen computer, zodat u er later gebruik van kunt makentool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipDe les direct startentool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipBepalen op welke datum/tijd de les moet startentool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDubbelklik om de actuele bijdrages van de cursist te bekijkentool tip message for current activity iconcompleted_act_tooltipDubbelklik om de afgeronde activiteiten van de cursist te bekijkentool tip message for completed activity iconal_validation_schtimeVoer een geldige tijd in.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipOm een cursist naar het eind van een les te forceren, sleept u het cursist-icoon naar deze balk en laat u de muisknop losRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnLogboekLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipLogboeken van alle cursisten bekijkentool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_doubleclick_todoactivitySorry, cursist: {0} heeft activitei: {1}, nog niet bereikt.alert message when user double click on the todo activity in the sequence under learner tablearners_group_name{0} cursistenGroup name for the class's learners group.ls_remove_confirm_msgU heeft ervoor gekozen deze les te verwijderen. Verwijderde lessen kunnen niet terug gehaald worden. Doorgaan?remove confirm msgls_status_cmb_removeVerwijderenLesson status option - Removels_status_removed_lblVerwijderdCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNee'No' on the alert dialogls_remove_warning_msgWAARSCHUWING: de les gaat verwijderd worden. Wilt u hem in het archief opslaan?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} medewerkersGroup name for the class's staff group.check_avail_btnBeschikbaarheid controlerenCheck Availability button labelcontinue_btnDoorgaanContinue button labells_continue_lblBeste {1}, je bent nog niet klaar met het wijzigen van {0}.Continue message labells_sequence_live_edit_btnRealtime wijzigenLive Edit buttonls_sequence_live_edit_btn_tooltipHet ontwerp van de les wijzigen.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblControle loopt...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblOnbeschikbaar. Probeer het nogmaals.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSorry, {0} wordt momenteel bewerkt door {1}.Warning message on Monitor locked screen.al_confirm_live_editU staat op het punt realtime te gaan wijzigen. Doorgaan?Confirm warning (dialog) message displayed when opening Live Edit.about_popup_title_lblOver - {0}Title for the About Pop-up window.about_popup_version_lblVersieLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 Stichting {0} .Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} is een handelsmerk van {0} stichting ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDit programma valt onder de Vrije Software; u mag het verspreiden en/of aanpassen onder de voorwaarden van de GNU General Public License versie 2 zoals gepubliceerd door de Free Software Foundation. <br><br> {0}Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKlik {0} om door te gaan.Action label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/no_NO_dictionary.xml 12 Jan 2010 01:20:14 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} kan ikke bli overført til en aktivitet som er i en annen gren eller sekvenslearner_viewJournals_btn_tooltipSe på alle journaler som er skrevet av studenteneabout_popup_trademark_lbl{0} er varemerket til {0} Stiftelse ({1}).ls_seq_status_perm_gateTilgangs port. Åpnes av foreleser.mv_search_error_msgVennligst start et søke eller sett inn et sidenummer med en tallverdi mellom 1 og {0}ls_seq_status_sched_gateTidsstyrt portsys_error_msg_finishDu må kanskje starte om LAMS forfatter for å fortsette. Ønsker du å lagre informasjon om dette problemet for å hjelpe oss å rette feilen ?al_activity_openContent_invalidBeklager ! Du må velge en aktivitet før du velger Åpne/Rediger Aktivitets Innhold meny punktet.mnu_go_sequenceSekvensls_manage_learnerExpp_lblKoble til eksport av mapper for studentenorder_learners_by_completion_lblList opp etter ferdigstillelsels_manage_apply_btnBruklearners_group_name{0} studenterls_learnerURL_lblStudentens URL:ls_status_active_lblUtarbeidet, men ikke startetls_manage_status_lblEndre status:ls_manage_start_btnStart nålbl_num_activities{0} - aktiviteterlearner_viewJournals_btnJournaleral_validation_schtimeVennligst angi et gyldig tidspunkt.mnu_editRedigermnu_file_editclassRediger klassels_win_editclass_titleRediger klassels_manage_editclass_btn_tooltipRediger listen for studenter og forelesere for denne aktivitetenls_win_editclass_staff_lblForeleserestaff_group_name{0} forelesere i kontroll modusbranch_mapping_dlg_conditions_dgd_lblBetingelseropt_activity_titleAlternativ aktivitetls_of_textavls_manage_txtAdministrer leksjonls_tasks_txtPålagte oppgavertd_goContribute_btnStartlearner_exportPortfolio_btnEksporter mappeal_validation_schstartDet er ikke angitt noen dato. Vennligst velg dato og tidspunkt.al_confirm_forcecomplete_toactivityEr du sikker på at du ønsker å flytte studenten '{0}' til aktivitet '{1}' ?al_error_forcecomplete_invalidactivityDu har flyttet studenten '{0}' til enten den nåværende eller til den ferdige aktiviteten'{1}'al_confirm_forcecomplete_tofinishEr du sikker på at du ønsker å flytte studenten '{0}' til slutten av leksjonen ?al_error_forcecomplete_notargetVenligst flytt studenten '{0}' til en aktivitet eller på slutten av leksjonen.title_sequencetab_endGateFerdige studenter:ls_manage_time_lblTid (Timer:Minutter)ls_status_scheduled_lblPlanlagt tidgoContribute_btn_tooltipFullfør denne oppgaven nåhelp_btn_tooltipHjelprefresh_btn_tooltipLast inn de siste fremdriftsdata for studentenels_manage_learners_btn_tooltipViser alle studenter som er knyttet til denne leksjonenls_manage_apply_btn_tooltipEndre status for denne leksjonen med informasjon fra menyenclass_exportPortfolio_btn_tooltipEksporter klassens mappe og lagre den på din datamaskin for senere referanselearner_exportPortfolio_btn_tooltipEksporter elevens mappe og lagre den på din datamaskin for senere referansels_manage_start_btn_tooltipStart leksjonen omgåendels_manage_schedule_btn_tooltipPlanlegg at leksjonen skal starte senerecurrent_act_tooltipDobbeltklikk for å se fremdriften for studentens nåværende aktivitetcompleted_act_tooltipDobbeltklikk for å se innholdet i studentens ferdigstilte aktivitetal_doubleclick_todoactivityBeklager, studenten {0} har ikke nådd fram til aktiviteten: {1} enda.al_cancelAvbrytal_confirmBekreftal_okOKapp_chk_themeloadTema data er ikke lastet inn.app_fail_continueProgrammet kan ikke fortsette. Vennligst kontakt brukerstøtten.db_datasend_confirmTakk for at data er sendt til server.mnu_edit_copyKopiermnu_edit_cutKlipp utmnu_edit_pasteLim innmnu_fileFilmnu_file_refreshFrisk oppmnu_file_startStartmnu_helpHjelpmnu_help_abtOmperm_act_lblTilgangsched_act_lblTidsplansynch_act_lblSynkroniserws_RootRotws_dlg_cancel_buttonAvbrytws_dlg_location_buttonStedws_tree_mywspMitt arbeidsområdews_tree_orgsOrganisasjonersys_error_msg_startDen følgende system feilen har oppstått:sys_errorSystem feilmnu_file_scheduleTidsplanmnu_file_exitGå utmnu_view_learnersStudenter...mnu_goStartmnu_go_lessonLeksjonmnu_go_scheduleTidsplanmnu_go_learnersStudentermnu_go_todoMå gjøresmnu_help_helpHjelprefresh_btnFrisk opphelp_btnHjelpmtab_lessonLeksjonmtab_seqSekvensmtab_learnersStudentermtab_todoHuskelistels_status_lblStatus:ls_learners_lblStudenter:ls_class_lblKlasse:ls_manage_class_lblKlasse:ls_manage_start_lblStart:ls_manage_learners_btnSe på studenterls_manage_schedule_btnTidsplanls_manage_date_lblDatols_duration_lblMedgått tid:ls_manage_status_cmbVelg status:ls_status_cmb_activateAktiverls_status_cmb_disableKoble frals_status_cmb_enableAktivls_status_cmb_archiveArkiverls_status_disabled_lblKoblet frals_status_archived_lblArkivertls_status_started_lblStartetls_win_learners_titleSe på studentermnu_viewSe påls_win_editclass_save_btnLagrels_win_editclass_cancel_btnAngrels_win_learners_close_btnLukkls_win_editclass_organisation_lblOrganisasjonls_win_editclass_learners_lblStudenterls_win_learners_heading_lblStudenter i klassen:td_desc_headingAvanserte kontroller:td_desc_textDet er ikke behov for å benytte denne huskelisten for å gjøre ferdig sekvensen. Konferer hjelpesidene for mer informasjon.<br><br>. Denne egenskapen er nå i funksjon.ccm_monitor_activityÅpne kontroll modusccm_monitor_activityhelpHjelpls_manage_editclass_btnRediger klassels_continue_lblOoops ! {1}, du har ikke gjort deg ferdig med å redigere {0}.ls_sequence_live_edit_btn_tooltipRediger dette designet for denne leksjonen.support_act_titleBrukerstøtte aktivitetal_error_forcecomplete_support_actKan ikke tvinge en student til en brukerstøtte aktivitetfinish_learner_tooltipFor å kunne flytte en student til siste del av leksjonen, så flytt student ikonet over dette skillet.about_popup_title_lblOM - {0}about_popup_version_lblVersjonstream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgabout_popup_license_lblDenne programvaren er en fri programmvare, du kan distribuere den videre og/eller endre denne så lenge betingelsene i GNU General Public License versjon 2, utgitt av Free Software Foundation, følges.ls_remove_confirm_msgDu har valgt å slette denne leksjonen. Slettede leksjoner kan ikke hentes inn igjen. Vil du fortsette ?ls_status_cmb_removeFjernls_status_removed_lblFjernetal_yesJaal_noNeicheck_avail_btnKontroller tilgjengelighetcontinue_btnFortsettls_sequence_live_edit_btnAktuell endringmsg_bubble_check_action_lblKontrollerer....msg_bubble_failed_action_lblIkke tilgjengelig, forsøk igjen.ls_locked_msg_lblBeklager {0} er i ferd med å bli endret av {1}.al_confirm_live_editDu er i ferd med å åpne for endringer. Ønsker du å fortsette ?al_sendSendls_continue_action_lblKlikk på {0} for å fortsette.app_chk_langloadSpråkdata er ikke lastet inn.competences_mapped_to_act_lblKompetanse som er tilknyttet {0}mv_search_default_txtStart et søk eller sett inn et sidenummermv_search_invalid_input_msgSidenummeret må være mellom 1 og {0}mv_search_not_found_msg{0} ble ikke funnetmv_search_current_page_lblSide {0} av {1}lbl_num_sequences{0} sekvensermv_search_go_btn_lblStart søkmv_search_index_view_btn_lblOversiktclose_mc_tooltipMinimerls_seq_status_moderationOrdstyrerls_seq_status_define_laterDefineres senerels_seq_status_choose_groupingVelg grupperingls_seq_status_contributionBidragls_seq_status_system_gateStopp punktls_seq_status_not_setIkke bestemt endabranch_mapping_dlg_branch_col_lblGrenbranch_mapping_dlg_condition_col_lblForutsettningerbranch_mapping_dlg_group_col_lblGruppeccm_monitor_view_group_mappingsSe på grupper og grenerccm_monitor_view_condition_mappingsSe på forutsettningene for grenercv_activity_helpURL_undefinedFinner ikke hjelpesiden for {0}cv_design_unsaved_live_editEndringer som ikke er lagret vil bli lagret automatisk. Ønsker du å fortsette med å sette inn ?label.grouping.general.instructions.branchingDu kan ikke legge til eller fjerne grupper her fordi den inngår i en grenaktivitet. Du kan kun endre antall brukere i gruppene.al_alertVarsells_remove_warning_msgAdvarsel ! Leksjonen er i ferd med å bli fjernet. Vil du beholde denne ?ls_seq_status_synch_gateSynkroniserings portls_seq_status_teacher_branchingValg av gren. Utføres av foreleserabout_popup_copyright_lbl© 2002-2009 {0} Stiftelse.competence_title_lblTittelcompetence_desc_lblBeskrivelsels_confirm_expp_enabledEksport av mapper er nå tilkoblet for studentenels_confirm_expp_disabledEksport av mapper er frakoblet for studenteneal_activity_view_competence_mappings_invalidVennligst kontroller at du har valgt en aktivitet før du forsøker å se på kompetanse sammenligningene. ls_manage_presenceEnabled_lblTillat studentene å se hva som er on-linels_confirm_presence_enabledStudentene kan se hvem som er on-linels_confirm_presence_disabledStudentene kan ikke se hvem som er on-lineview_competences_dlgSe kompetanse al_confirm_forcecomplete_to_end_of_branching_seqEr du sikker på at du vil overføre studenten {0} til slutten av denne gren-sekvensen ?view_act_mapped_competencesSe på kompetanse som er tilordnet aktiviteterview_competences_in_ld_lblKompetanse som er tilknyttet designet {0}mapped_competences_lblKompetanse tilknyttet aktiviteterls_win_learners_heading_class_lblKlassels_win_learners_heading_activity_lblAktivitetlearner_plus_tooltip{0} studenter. Dobbeltklikk for å se hele listen.view_time_graph_btnSe tidsplanview_time_graph_btn_tooltipSe på en graf som viser studentens fremdrift i henhold til tidsplanview_time_chart_btnSe tidsplanview_time_chart_btn_tooltipSe en graf som viser studentens fremdrift i henhold til planlagt tidsplan for hver aktivitet.msg_no_learners_in_lessonDet må velges en eller flere studenter.ls_manage_presenceImEnabled_lblKoble til meldingstjenestels_confirm_presence_im_enabledMeldingstjenesten er tilkobletls_confirm_presence_im_disabledMeldingstjenesten er frakoblet \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/pl_PL_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertUwagaGeneric title for Alert windowal_cancelAnulujTo Confirm title for LFErroral_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDane językowe nie zostały załadowanemessage for unsuccessful language loadingapp_chk_themeloadTemat nie został załadowanymessage for unsuccessful theme loadingapp_fail_continueProgram nie może kontynuuować. Skontaktuje się z administratoremmessage if application cannot continue due to any errordb_datasend_confirmDane zostały wysłaneMessage when user sucessfully dumps data to the servermnu_editEdycjaMenu bar Editmnu_edit_copyKopiujMenu bar Edit &gt; Copymnu_edit_cutWytnijMenu bar Edit &gt; Cutmnu_edit_pasteWklejMenu bar Edit &gt; Pastemnu_filePlikMenu bar Filemnu_file_refreshOdświeżMenu bar Refreshmnu_file_editclassEdytuj klasęMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpPomocMenu bar Helpmnu_help_abtO...Menu bar Aboutperm_act_lblPozwolenieLabel for permission gate activitysched_act_lblPlanLabel for schedule gate activitysynch_act_lblSynchronizujUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnuluj2ws_dlg_location_buttonLokalizacjaWorkspace dialogue Location btn labelws_tree_mywspMoje ProjektyThe root level of the treews_tree_orgsOrganizacjeShown in the top level of the tree in the workspacesys_error_msg_startWystąpił następujący bład systemuCommon System error message starting linesys_error_msg_finishMusisz ponownie uruchomić moduł Autora systemu LAMS. Czy chcesz zapisać informacje na temat błedu aby go naprawić ?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titlemnu_file_schedulePlanMenu bar Schedulemnu_file_exitWyjścieMenu bar Exitmnu_view_learnersStudenci...Menu bar Learnersmnu_goIdź doMenu bar Gomnu_go_lessonLekcjaMenu bar Go to Lesson Tabmnu_go_scheduleSekwencjaMenu bar Go to Schedule Tabmnu_go_learnersPostępMenu bar Go to Learners Tabmnu_go_todoDo zrobieniaMenu bar Todomnu_help_helpPomocMenu bar Help itemrefresh_btnOdświeżRefresh buttonhelp_btnPomocHelp buttonmtab_lessonLekcjaMonitor Lesson details tabmtab_seqSekwencjaMonitor Sequence tabmtab_learnersPostępMonitor Learners tabmtab_todoDo zrobieniaMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblStudenci:Learner label - Lesson detailsls_class_lblKlasa:Class label - Lesson detailsls_manage_class_lblKlasa:Class managing label - Lesson detailsls_manage_status_lblStatus:Status managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnPokaż studentówView learners button - Lesson details (manage section)ls_manage_editclass_btnEdytuj klasęEdit class button - Lesson details (manage section)ls_manage_apply_btnPotwierdźStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblUmożliwia eksport portfolio studentaLabel for Enable export portfolio for Learnerls_confirm_expp_enabledEksport portfolio został włączony dla studentówConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledEksport portfolio został wyłączony dla studentówConfirmation message on disabling export portfolio for learnersls_manage_schedule_btnPlanSchedule start button - Lesson details (manage section)ls_manage_start_btnUruchomStart immediately button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblCzas trwania:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbWybierz:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktywujLesson status option - Activatels_status_cmb_disableZatrzymajLesson status option - Disable (suspend)ls_status_cmb_enableUruchomLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiwizujLesson status option - Archivels_status_active_lblAktywnaCurrent status description if active (enabled)ls_status_disabled_lblZawieszonaCurrent status description if suspended (disabled)ls_status_archived_lblArchilwalnaCurrent status description if archviedls_status_started_lblUruchomionaCurrent status description if started (enabled)ls_win_editclass_titleEdycja klasyEdit class window titlels_win_learners_titleWidok studentówView learners window titlemnu_viewWidokMenu bar Viewls_win_editclass_save_btnZapiszSave button on Edit Class popupls_win_editclass_cancel_btnAnulujCancel button on Edit Class popupls_win_learners_close_btnZamknijClose button on View Learners popupls_win_editclass_organisation_lblOrganizacjaHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblPracownicyHeading for Staff list on Edit Class popupls_win_editclass_learners_lblStudenciHeading for Learners list on the Edit Class popupls_win_learners_heading_lblStudenci w klasie:Heading on View Learners window panel.td_desc_headingOpcje zaawansowaneTodo tab description headingtd_desc_textAby zakończyć sekwencję nie trzeba używać zakładki Do Zrobienia. Aby uzyskać więcej informacji zobacz pomocTodo tab descriptionopt_activity_titleAktywność opcjonalnaTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesAktywności podrzędneNumber of child activities for Complex activity shown on canvas.ls_of_textzi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtOpcje lekcjiHeading for Management section of Lesson Tabls_tasks_txtWymagane zadaniaHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnIdźGo button on contribute entry itemlearner_exportPortfolio_btnEksport portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataccm_monitor_activityMonitoruj aktywnośćLabel for Custom Context Monitor Activityccm_monitor_activityhelpPomoc dla monitoringu aktywnościLabel for Custom Context Monitor Activity Helpal_validation_schstartNie wybrano daty. Wybierz datę i czasMessage when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityCzy na pewno chcesz zmusić studenta '{0}' do zakończenia aktywności '{1}' ?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityPrzesunałęś studenta '{0}' albo na aktywność bieżącą albo na aktywność '{1}' którą już zakończyłError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishCzy na pewno chcesz zmusić studenta '{0}' do zakończenia lekcji ?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetPrzesuń studenta '{0}' na aktywność lub zakończ lekcjęError Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateStudenci którza zakończyli pracęTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblCzas (Godziny : Minuty)Time fields title - Lesson details (manage section)ls_learnerURL_lblURL studentaLearner URL:ls_status_scheduled_lblZaplanowanaLesson status option - Scheduled (Not Started)goContribute_btn_tooltipZakończ natychmiast zadanietool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipPomoctool tip message for help button in toolbarrefresh_btn_tooltipZaładuj ponownie ostatnie dane postępu dla studentówtool tip message for the refresh buttonls_manage_editclass_btn_tooltipEdycja listy studentów i pracowników przypisanych do lekcjitool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipPokaż wszystkich studentów przypisanych do tej lekcjitool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipZmień status lekcji korzystając z listy rozwijanejtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksportuj portfolio klasy i zapisz je na swoim kompuerze w celu ponownego użycia w przyszłościtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksportuj portfolio studenta i zapisz je na swoim kompuerze w celu ponownego użycia w przyszłościtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipUruchom natychmiast lekcję tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipPlan lekcji do uruchomienia w przyszłościtool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipPodwójne kliknięcie aby zobaczyć postępy studenta dla danej aktywnościtool tip message for current activity iconcompleted_act_tooltipPodwójne kliknięcie aby zobaczyć postępy studenta dla zakończonej aktywnościtool tip message for completed activity iconal_validation_schtimeWprowadź poprawny format czasuAlert message when user enters an invalid time for schedule startfinish_learner_tooltipAby zmusić studenta do zakończenia lekcji, przeciągnij i upuść ikonę studenta na tą belkęRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnWpisy do dziennikaLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipPokaż wszystkie wpisy do dziennikatool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_doubleclick_todoactivityStudent: {0} nie osiągnął jeszcze aktywności: {1}alert message when user double click on the todo activity in the sequence under learner tablearners_group_nameStudenci {0}Group name for the class's learners group.ls_remove_confirm_msgCzy chcesz usunąć zaznaczoną lekcję ? Lekcja zostanie utracona bezpowrotnieremove confirm msgls_status_cmb_removeUsuńLesson status option - Removels_status_removed_lblUsuniętaCurrent status description if deleted (removed) lesson.al_yesTakYes on the alert dialogal_noNie'No' on the alert dialogls_remove_warning_msgUwaga! Lekcja zostanie usunięta. Czy chcesz przechować ją w archiwum ?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_nameKadra {0}Group name for the class's staff group.check_avail_btnSprawdź dostępnośćCheck Availability button labelcontinue_btnDalejContinue button labells_continue_lblHej {1}, nie zakończono edycji {0}Continue message labells_sequence_live_edit_btnEdycja na żywoLive Edit buttonls_sequence_live_edit_btn_tooltipEdycja projektu dla tej lekcjiTool tip message for Live Edit buttonmsg_bubble_check_action_lblSprawdzanie...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNiedostępne, Spróbuj ponownieLabel displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblNiestety, {0} jest właśnie edytowane przez {1}Warning message on Monitor locked screen.al_confirm_live_editZa chwilę rozpoczniesz Edycję na żywo. Czy chesz kontynuować ?Confirm warning (dialog) message displayed when opening Live Edit.al_sendWysłanoSend button label on the system error dialogabout_popup_title_lblO - {0}Title for the About Pop-up window.about_popup_version_lblWersjaLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} jest znakiem firmowym {0} Fundacji ( {1} )Label displaying the trademark statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKliknij {0} aby kontynuowaćAction label displayed when a user can proceed to Live Edit.about_popup_license_lblTen program jest darmowy, może być dystrybuowany i/lub modyfikowany na zasadach licencji GNU General Public License wersja 2 - Free Software Foundation Label displaying the license statement in the About dialog.al_confirm_forcecomplete_to_end_of_branching_seqCzy na pewno chcesz zakończyć sekwencje studenta {0} ?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.about_popup_copyright_lbl@ 2002-2008 {0} FundacjaLabel displaying copyright statement in About dialog.close_mc_tooltipMinimalizujTooltip message for close button on Branching canvas.mv_search_current_page_lblStrona {0} z {1}{0} is the page we are on now and {1} is the number of pagesmv_search_not_found_msg{0} nie znaleziono.This message appears when the search does not find any learners whose names contain the search parameter.mv_search_index_view_btn_lblIndeksWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.lbl_num_sequences{0} - SekwencjiNumber of child sequence or Optional Sequences activity shown on canvas.mv_search_invalid_input_msgZakres stron musi być z przedziału od 1 do {0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_default_txtWpisz szukaną frazę lub numer stronyThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msgProszę podać szukaną frazę lub numer strony z zakresu od 1 do {0}This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_go_btn_lblSzukajIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.al_activity_openContent_invalidPrzed wybraniem polecenia Otwórz/Edycja należy zaznaczyć właściwą aktywność. Menu aktywności po kliknięciu prawym przyciskiem myszy na aktywności.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasal_error_forcecomplete_to_different_seqStudent {0} nie może zostać przeniosiony na aktywność (inna gałąź lub inna sekwencja)This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderationModeracjaDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_laterZdefiniuj późniejOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_synch_gateOtwierana synchronicznieA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_perm_gateOtwierana przez nauczycielaA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_choose_groupingWybierz grupowanieAllows the Teacher to add the learners to chosen groupsls_seq_status_contributionDodatkiAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingWybierana przez nauczycielaA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_setBrak ustawieńThe value of the sequence's status is not setls_seq_status_sched_gateOtwierana czasowoA type of Gate Activity where progress depends on time (start time and/or end time)ls_seq_status_system_gateBrama systemowaA System Gate is a stop point that can be controlled by time setting or user control \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/pt_BR_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertAlertaGeneric title for Alert windowal_cancelCancelarTo Confirm title for LFErroral_confirmConfirmarTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadOs dado do idioma não foram carregadosmessage for unsuccessful language loadingapp_chk_themeloadOs dados do tema não foram carregadosmessage for unsuccessful theme loadingapp_fail_continueA aplicação não pode continar. Favor contactar o suportemessage if application cannot continue due to any errordb_datasend_confirmObrigado por enviar dados para o servidorMessage when user sucessfully dumps data to the servermnu_editEditarMenu bar Editmnu_edit_copyCopiarMenu bar Edit &gt; Copymnu_edit_cutRecortarMenu bar Edit &gt; Cutmnu_edit_pasteColarMenu bar Edit &gt; Pastemnu_fileArquivoMenu bar Filemnu_file_refreshAtualizarMenu bar Refreshmnu_file_editclassEditar ClasseMenu bar Edit Classmnu_file_startIniciarMenu bar Startmnu_helpAjudaMenu bar Helpmnu_help_abtSobreMenu bar Aboutperm_act_lblPermissãoLabel for permission gate activitysched_act_lblAgendaLabel for schedule gate activitysynch_act_lblSincronizarUsed as a label for the Synch Gate Activity Typews_RootRaizRoot folder title for workspacews_dlg_cancel_buttonCancelar2ws_dlg_location_buttonLocalWorkspace dialogue Location btn labelws_tree_mywspMeus Espaço de TrabalhoThe root level of the treews_tree_orgsOrganizaçõesShown in the top level of the tree in the workspacesys_error_msg_startO seguinte erro de sistem ocorreu:Common System error message starting linesys_error_msg_finishVocê talvez necessite reiniciar esta janela do navegador para continuar. Você deseja salvar a informação vinda deste erro para ajudar a solucionar este problema?Common System error message finish paragraphsys_errorErro de SistemaSystem Error elert window titlemnu_file_scheduleAgendaMenu bar Schedulemnu_file_exitSairMenu bar Exitmnu_view_learnersAlunos...Menu bar Learnersmnu_goIrMenu bar Gomnu_go_lessonLiçãoMenu bar Go to Lesson Tabmnu_go_scheduleAgendaMenu bar Go to Schedule Tabmnu_go_learnersAlunosMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpAjudaMenu bar Help itemrefresh_btnAtualizaRefresh buttonhelp_btnAjudaHelp buttonmtab_lessonLiçãoMonitor Lesson details tabmtab_seqSeqüênciaMonitor Sequence tabmtab_learnersAlunosMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblEstadoStatus label - Lesson detailsls_learners_lblAlunos:Learner label - Lesson detailsls_class_lblClasse:Class label - Lesson detailsls_manage_class_lblClasse:Class managing label - Lesson detailsls_manage_status_lblEstado:Status managing label - Lesson detailsls_manage_start_lblInício:Start managing label - Lesson detailsls_manage_learners_btnVisualizar Alunos:View learners button - Lesson details (manage section)ls_manage_editclass_btnEditar ClasseEdit class button - Lesson details (manage section)ls_manage_apply_btnAplicarStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnAgendaSchedule start button - Lesson details (manage section)ls_manage_start_btnIniciar agoraStart immediately button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblTempo decorridoElapsed duration of lesson - Lesson detailsls_manage_status_cmbSeleciona estadoStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAtivadoLesson status option - Activatels_status_cmb_disableDesativadoLesson status option - Disable (suspend)ls_status_cmb_enableAtivoLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArquivoLesson status option - Archivels_status_active_lblAtivoCurrent status description if active (enabled)ls_status_disabled_lblSuspensoCurrent status description if suspended (disabled)ls_status_archived_lblArquivoCurrent status description if archviedls_status_started_lblComeçadoCurrent status description if started (enabled)ls_win_editclass_titleEditar ClasseEdit class window titlels_win_learners_titleVisualizar AlunosView learners window titlemnu_viewVisualizarMenu bar Viewls_win_editclass_save_btnSalvarSave button on Edit Class popupls_win_editclass_cancel_btnCancelarCancel button on Edit Class popupls_win_learners_close_btnFecharClose button on View Learners popupls_win_editclass_organisation_lblOrganizaçãoHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblDocenteHeading for Staff list on Edit Class popupls_win_editclass_learners_lblAlunosHeading for Learners list on the Edit Class popupls_win_learners_heading_lblAlunos na classe:Heading on View Learners window panel.td_desc_headingControles Avançados:Todo tab description headingtd_desc_textO uso da Aba Todo não é necessário para completar a seqüência. Veja a página de ajuda para maiores informações.<br><br>Esta opção agora é totalmente funcional.Todo tab descriptionopt_activity_titleAtividade OpcionalTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesatividades filhasNumber of child activities for Complex activity shown on canvas.ls_of_textdei.e. 1 of 10 Used for showing how many learners have startedls_manage_txtGerenciar LiçãoHeading for Management section of Lesson Tabls_tasks_txtTarefas NecessáriasHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnIrGo button on contribute entry itemlearner_exportPortfolio_btnExportar PortfólioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblAgendaLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityVocê tem certeza que você quer forçar o aluno a completar '{0}' para a Atividade '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityVocê soltou o aluno '{0}' na atividade atual ou na atividade completadaError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishVocê tem certeza que você quer forçar o aluno a completar '{0}' para o fim da lição? Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetFavor arrastar e soltar o aluno '{0}' sobre a atividade ou sobre o fim da lição.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateAluno que terminaramTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipCompletar esta tarefa agoratool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipAjudatool tip message for help button in toolbarrefresh_btn_tooltipRecarregar os dados de progresso mais recentes dos alunostool tip message for the refresh buttonls_manage_editclass_btn_tooltipEditar a lista de alunos e docentes designados para esta liçãotool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMostra todos os alunos designados para esta liçãotool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipMuda o estado desta lição com base na seleção do menu suspensotool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportar este portfólio da classe e salvar no computador para referência futuratool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportar este portfólio do aluno e salvar no computador para referência futuratool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipIniciar a lição imediatamentetool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipAgendar uma lição para iniciar no futurotool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipClicar duas vezes para rever o progresso da contribuição para o aluno da atividade atualtool tip message for current activity iconcompleted_act_tooltipClicar duas vezes para rever a contribuição para o aluno da atividade completadatool tip message for completed activity iconal_doubleclick_todoactivityDesculpe aluno: {0} não alcançou a atividade: {1} ainda.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartNenhuma data foi selecionada. Favor selecionar a data e a hora.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTempo (Horas : Minutos)Time fields title - Lesson details (manage section)al_validation_schtimeFavor digitar um valor (tempo) válido.Alert message when user enters an invalid time for schedule startfinish_learner_tooltippara forçar o aluno a completar a lição até o final, arraste e solte o ícone do aluno sobre esta barra Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityAtividade de monitoração abertaLabel for Custom Context Monitor Activityccm_monitor_activityhelpAjuda da atividade monitoradaLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnEntradas de jornaisLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVer todos os Jornais salvos pelos alunostool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL do alunoLearner URL:ls_manage_learnerExpp_lblHabilita exportar Portfólio para alunoLabel for Enable export portfolio for Learnerls_confirm_expp_enabledExportar Portfólio para aluno está agora habilitado Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledExportar Portfólio para aprendiz está agora desabilitado Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgVocê selecionou esta lição para Remover. Lições removidas não podem ser recuperadas novamente. Continuar?remove confirm msgls_status_cmb_removeremoverLesson status option - Removels_status_removed_lblRemovidoCurrent status description if deleted (removed) lesson.al_yesSimYes on the alert dialogal_noNão'No' on the alert dialogls_remove_warning_msgCuidado: A lição está para ser removida. Você quer arquivá-la?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} alunosGroup name for the class's learners group.staff_group_name{0} pessoalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/ru_RU_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_noНетstaff_group_name{0} сотрудниковls_win_editclass_cancel_btnОтменитьcheck_avail_btnПроверить доступностьls_sequence_live_edit_btn_tooltipРедактировать проект этого урокаls_learnerURL_lblСсылка для ученика:continue_btnПродолжитьmv_search_not_found_msg{0} не найдено.mv_search_go_btn_lblПерейти кls_win_learners_close_btnЗакрытьmv_search_current_page_lblСтраница {0} из {1}ls_manage_learners_btn_tooltipПоказать всех уччеников, крикрепленных к этому урокуls_manage_apply_btn_tooltipИзменить статус урока, основываясь на выборе в выпадающем менюls_seq_status_system_gateСистемный затворmnu_go_todoСписок заданийmtab_todoСписок заданийtd_desc_textИспользование Списка заданий необязательно для выполнения этой последовательности. Обратите в раздел помощь за соотвествующей информацией.<br><br> Эта функция теперь доступна в полном объеме.al_error_forcecomplete_invalidactivityВы перетащили пользователя '{0}' на его текущее или уже выполненное задание '{1}'ccm_monitor_activityhelpПомощь по мониторингу заданийal_validation_schstartВы не выбрали дату. Выберите, пожалуйста, дату и время.al_confirm_forcecomplete_toactivityДействительно ли вы желаете принудительно завершить задания у ученика '{0}' вплоть до '{1}'?ls_seq_status_not_setЕще не заданls_sequence_live_edit_btnРедактирование "на лету"about_popup_license_lblЭто программа является free software; Вы можете распространять и/или изменять ее при условиях соответствия GNU General Public License version 2 опубликованной Free Software Foundation. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txt stream_urlhttp://{0}foundation.orgal_okОКclose_mc_tooltipСвернутьls_tasks_txtОбязательные заданияls_manage_time_lblВремя (Часы : Минуты)ls_continue_lblЗдравствуйте, {1}, вы не закончили редактирование {0}.al_confirm_forcecomplete_tofinishДействительно ли вы желаете принудительно завершить урок у ученика '{0}'?competences_mapped_to_act_lblЗнания определены к {0}ls_status_cmb_removeУдалитьls_status_removed_lblУдаленныйal_yesДаls_continue_action_lblНажмите {0}, чтобы продолжить. mv_search_default_txtВведите поисковый запрос или номер страницыbranch_mapping_dlg_conditions_dgd_lblСоотвествияlbl_num_sequences{0} - Последовательностейal_activity_openContent_invalidИзвините! Перед тем как нажать пункт меню Открыть/Редактировать Задание, Вы должны выбрать задание.mv_search_error_msgВведите, пожалуйста, поисковый запрос или номер страницы между 1 и {0}mv_search_invalid_input_msgНомер страницы должен быть между 1 и {0}ls_seq_status_sched_gateЗатвор, работающий по времениbranch_mapping_dlg_branch_col_lblРазветвлениеfinish_learner_tooltipЧтобы принудительно завершить урок у ученика, перетащите его иконку ну эту панель.mnu_help_helpПомощь по мониторингуls_manage_status_lblИзменить статус:ls_manage_learners_btnПросмотр учениковls_manage_learnerExpp_lblРазрешить ученикам экспортировать портфолиоls_confirm_expp_enabledЭкспорт портфолио разрешен для учениковls_confirm_expp_disabledЭкспорт портфолио запрещен для учениковls_duration_lblОжидаемая продолжительность:td_desc_headingРасширенное управлениеopt_activity_titleОпциональное заданиеlbl_num_activities{0} - Заданияls_of_textизls_manage_txtУправление урокомtd_goContribute_btnПерейти кlearner_exportPortfolio_btnЭкспорт портфолиоal_sendОтправитьls_status_scheduled_lblЗапланированоеgoContribute_btn_tooltipЗавершить это задание сейчасhelp_btn_tooltipПомощьls_manage_start_btn_tooltipНачать урок незамедлительноmsg_bubble_check_action_lblПроверка...msg_bubble_failed_action_lblНедостуно, попробуйте еще раз.ls_locked_msg_lblИзвините, но {0} сейчас редактируется {1}.al_confirm_live_editРедактирование "на лету" будет открыто. Желаете продолжить?about_popup_title_lblО программе - {0}about_popup_version_lblВерсияabout_popup_copyright_lbl© 2002-2008 {0} Foundation.about_popup_trademark_lbl{0} является торговой маркой {0} Foundation ( {1} ).branch_mapping_dlg_condition_col_lblУсловиеal_error_forcecomplete_to_different_seqВы не можете перетащить {0} на задание из другой ветви или последовательности.al_error_forcecomplete_notargetПожалуйста, перетащите пользователя '{0}' на задание либо конец урока.ls_win_editclass_organisation_lblОрганизацияmnu_file_startСтартmnu_helpПомощьmnu_help_abtО программеperm_act_lblРазрешениеsched_act_lblРасписаниеsynch_act_lblСинхронизированныйws_RootКореньws_dlg_cancel_buttonОтменитьws_dlg_location_buttonРасположениеws_tree_mywspМоя рабочая средаws_tree_orgsОрганизацииsys_error_msg_startПроизошла следующая системная ошибка:sys_errorСистемная ошибкаmnu_file_scheduleРасписаниеmnu_file_exitВыходmnu_view_learnersУченики...mnu_goПерейти кmnu_go_lessonУрокmnu_go_scheduleРасписаниеmnu_go_learnersУченикиrefresh_btnОбновитьhelp_btnПомощьrefresh_btn_tooltipОбновить пользовательскую информацию.al_alertПредупреждениеal_cancelОтменитьal_confirmПодтвердитьapp_chk_langloadЯзыковые данные загружены неудачноapp_chk_themeloadДанные для темы загружены неудачноapp_fail_continueПрограмма завершит работу. Пожалуйста, свяжитесь со службой поддержки.db_datasend_confirmСпасибо за то, что послали данные на серверmnu_editРедактироватьmnu_edit_copyКопироватьmnu_edit_cutВырезатьmnu_edit_pasteВставитьmnu_fileФайлmnu_file_refreshОбновитьmnu_file_editclassРедактировать классbranch_mapping_dlg_group_col_lblГруппаmnu_go_sequenceПоследовательностьcv_activity_helpURL_undefinedНет справки для {0}cv_design_unsaved_live_editНесохраненные изменения будут автоматически сохранены. Желаете ли вы продолжить вставку/слияние?mtab_lessonУрокmtab_seqПоследовательностьmtab_learnersУченикиls_status_lblСтатус:ls_learners_lblУченики:ls_class_lblКласс:ls_manage_class_lblКласс:ls_manage_editclass_btnРедактировать классls_manage_apply_btnПрименитьls_manage_schedule_btnРасписаниеls_manage_start_btnСтартовать сейчасls_manage_date_lblДатаls_manage_status_cmbВыберите статус:ls_status_cmb_activateАктивироватьls_status_cmb_disableДеактивироватьls_status_cmb_enableАктивноls_status_cmb_archiveАрхивls_status_active_lblСоздано, но еще запущенls_status_disabled_lblНеактивноls_status_archived_lblАрхивныйls_status_started_lblЗапущенныйls_win_editclass_titleРедактировать классls_win_learners_titleПросмотр учениковmnu_viewВидls_win_editclass_save_btnСохранитьls_win_editclass_staff_lblСотрудникиls_win_editclass_learners_lblУченикиls_win_learners_heading_lblУченики в классе:sys_error_msg_finishЧтобы продолжить работу, перезапустите, пожалуйста, Редактор заданий. Желаете ли Вы сохранить информацию о произошедщей ошибке, чтобы помочь решить ее в будущем?ccm_monitor_activityОткрыть мониторинг заданияccm_monitor_view_condition_mappingsПосмотреть соотвествия Ветвей Условиямccm_monitor_view_group_mappingsПосмотреть соотвествия Ветвей Группамtitle_sequencetab_endGateЗавершили:ls_seq_status_perm_gateРазрешение учителяls_seq_status_synch_gateСинхронизацияal_doubleclick_todoactivityИзвините, но ученик {0} еще не достиг {1} заданияls_remove_confirm_msgВы нажали Удалить этот урок. Удаленные уроки не могут быть восстановлены. Продолжить?ls_remove_warning_msgВНИМАНИЕ: Урок будет удален. Желаете ли вы сохранить его?mv_search_index_view_btn_lblИндекс страницls_seq_status_moderationАрбитражls_seq_status_define_laterОпределить позжеls_seq_status_choose_groupingРаспределить по группамls_seq_status_contributionСделатьls_seq_status_teacher_branchingОснованное на решении учителяls_manage_schedule_btn_tooltipЗапланировать старт урока на заданное времяcurrent_act_tooltipДважды нажмите мышью, чтобы посмотреть текущее состояние задания у пользователяcompleted_act_tooltipДважды нажмите мышью, чтобы посмотреть завершенные задания у пользователяal_validation_schtimeВведите, пожалуйста, правильное время.learner_viewJournals_btnЗаписиlearner_viewJournals_btn_tooltipПросмотреть все записи, сделанные пользователемlearner_exportPortfolio_btn_tooltipЭкспортировать и сохранить портфолио пользователя для дальнейщих обращений к немуls_manage_editclass_btn_tooltipРедактировать список пользователей и сотрудников, прикрепленных к этому уроку.label.grouping.general.instructions.branchingВы не можете добавлять или удалять группы в это групповое задание, так как оно используется в Разветвлении, а добавление или удаление новых групп повлечет за собой изменение настроек соотвествий ветвей группам. Вы можете только добавлять или удалять пользователей в уже существующие группы.al_activity_view_competence_mappings_invalidПожалуйста, убедитесь, что вы выбрали задание перед просмотром знаний.order_learners_by_completion_lblУпорядочить по факту завершенияlearners_group_name{0} ученикиls_manage_start_lblСтарт:view_competences_dlgПросмотреть знанияview_competences_in_ld_lblЗнания в учебных шаблонах: {0}view_act_mapped_competencesПросмотреть определенные знанияmapped_competences_lblОпределенные знанияcompetence_title_lblЗаголовокcompetence_desc_lblОписаниеls_manage_presenceEnabled_lblРазрешить ученикам видеть кто находится онлайнls_confirm_presence_enabledС данного момента ученики могут видеть кто находится онлайнls_confirm_presence_disabledС данного момента ученики не могут видеть кто находится онлайнls_win_learners_heading_class_lblКлассls_win_learners_heading_activity_lblЗаданиеlearner_plus_tooltip{0} учеников. Щелкните два раза для просмотра полного списка.view_time_graph_btnПросмотр временного графикаview_time_graph_btn_tooltipПросмотреть график успеваемости выбранных студентов по времени, потраченном на каждое заданиеview_time_chart_btnПросмотр временной диаграммыview_time_chart_btn_tooltipПросмотреть диаграмму успеваемости выбранных студентов по времени, потраченном на каждое заданиеclass_exportPortfolio_btn_tooltipЭкспортировать и сохранить портфолио всего класса для дальнейщих обращений к немуal_confirm_forcecomplete_to_end_of_branching_seqВы желаете принудительно завершить эту разветвляющуюся последовательность у ученика '{0}'?support_act_titleВспомогательное заданиеal_error_forcecomplete_support_actНевозможно принудительно завершить вспомогательные задания у ученикаmsg_no_learners_in_lessonОдин или более учеников должны быть отмеченыls_manage_presenceImEnabled_lblРазрешить обмен сообщениямиls_confirm_presence_im_enabledОбмен сообщениями включенls_confirm_presence_im_disabledОбмен сообщениями отключен \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/sv_SE_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertPåminnelseGeneric title for Alert windowal_cancelAvbrytTo Confirm title for LFErroral_confirmBekräftaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSpråkdata har inte laddats inmessage for unsuccessful language loadingapp_chk_themeloadTemadata har inte laddats inmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan inte fortsätta. Var snäll och kontakta supporten. message if application cannot continue due to any errordb_datasend_confirmTack för att du skickar data till servern. Message when user sucessfully dumps data to the servermnu_editRedigeraMenu bar Editmnu_edit_copyKopieraMenu bar Edit &gt; Copymnu_edit_cutKlippMenu bar Edit &gt; Cutmnu_edit_pasteKlistraMenu bar Edit &gt; Pastemnu_fileFilMenu bar Filemnu_file_refreshÅterställMenu bar Refreshmnu_file_editclassRedigera klassMenu bar Edit Classmnu_file_startStartaMenu bar Startmnu_helpHjälpMenu bar Helpmnu_help_abtOmMenu bar Aboutperm_act_lblTillståndLabel for permission gate activitysched_act_lblSchemaläggLabel for schedule gate activitysynch_act_lblSynkroniseraUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAvbryt2ws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_tree_mywspMin arbetsytaThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacesys_error_msg_startFöljande systemfel har inträffat:Common System error message starting linesys_error_msg_finishDet kan bli nödvändigt att starta om LAMS Författare för stt det ska gå att fortsätta. Vill du spara den följande informationen om detta fel i syfte att hjälpa till att åtgärda det?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titlemnu_file_scheduleSchemaMenu bar Schedulemnu_file_exitAvslutaMenu bar Exitmnu_view_learnersLärande...Menu bar Learnersmnu_goMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_scheduleSchemaMenu bar Go to Schedule Tabmnu_go_learnersLärandeMenu bar Go to Learners Tabmnu_go_todoAtt göraMenu bar Todomnu_help_helpHjälpMenu bar Help itemrefresh_btnÅterställRefresh buttonhelp_btnHjälpHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSekvensMonitor Sequence tabmtab_learnersLärandeMonitor Learners tabmtab_todoAtt göra Monitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblLärande:Learner label - Lesson detailsls_class_lblKlass:Class label - Lesson detailsls_manage_class_lblKlass:Class managing label - Lesson detailsls_manage_status_lblStatus:Status managing label - Lesson detailsls_manage_start_lblStarta:Start managing label - Lesson detailsls_manage_learners_btnVisa lärandeView learners button - Lesson details (manage section)ls_manage_editclass_btnRedigera klassEdit class button - Lesson details (manage section)ls_manage_apply_btnTillämpaStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnSchemaSchedule start button - Lesson details (manage section)ls_manage_start_btnStarta nuStart immediately button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblHar pågått under:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbVälj status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktiveraLesson status option - Activatels_status_cmb_disableAvaktiveraLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkivLesson status option - Archivels_status_active_lblAktivCurrent status description if active (enabled)ls_status_disabled_lblAvbrutenCurrent status description if suspended (disabled)ls_status_archived_lblArkiveradCurrent status description if archviedls_status_started_lblStartadCurrent status description if started (enabled)ls_win_editclass_titleRedigera klassEdit class window titlels_win_learners_titleVisa lärandeView learners window titlemnu_viewVisaMenu bar Viewls_win_editclass_save_btnSparaSave button on Edit Class popupls_win_editclass_cancel_btnAvbrytCancel button on Edit Class popupls_win_learners_close_btnStängClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblPersonalHeading for Staff list on Edit Class popupls_win_editclass_learners_lblLärandeHeading for Learners list on the Edit Class popupls_win_learners_heading_lblLärande i klassen:Heading on View Learners window panel.td_desc_headingAvancerade kontroller:Todo tab description headingtd_desc_textAnvänd den här fliken 'Att göra' för att fullfölja sekvensen. Se hjälpsidan för mer info.<br /><br />Den här egenskapen är nu fullt fungerande. Todo tab descriptionopt_activity_titleValfri aktivitetTitle for Optional Activity on canvas (monitoring)lbl_num_activities'barn'-aktiviteterNumber of child activities for Complex activity shown on canvas.ls_of_textavi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtAdministrera lektionHeading for Management section of Lesson Tabls_tasks_txtObligatoriska uppgifterHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGo button on contribute entry itemlearner_exportPortfolio_btnExportera portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblSchemalagdLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityÄr du säker på att du vill tvinga lärande '{0}' vidare till aktivitet '{1]'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityDu har 'släppt' lärande '{0}' antingen på dennes aktuella eller dennes fullföljda aktivitet. Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishÄr du säker på att du vill tvinga lärande '{0}' till lektionens slut?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetVar snäll och 'släpp' lärande '{0}' på en aktivitet eller i slutet på en lektion. Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateLärande som har avslutat:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipFullfölj den här uppgiften nutool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHjälptool tip message for help button in toolbarrefresh_btn_tooltipLadda om de senaste datana för de lärandes progressiontool tip message for the refresh buttonls_manage_editclass_btn_tooltipRedigera listan över de lärande och den personal som har tilldelats denna lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipVisa alla de lärande som har tilldelats denna lektiontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipÄndra status på den här lektionen baserat på urvalet för 'nedsläpp'.tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportera klassens portfolio och spara den på din dator för framtida referens.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportera den här portfolion för lärande och spara den på din dator för framtida referens.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipStarta lektionen omedelbarttool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipSchemalägg lektionen så att den ska starta vid ett tillfälle i framtidentool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDubbelklicka för att granska de bidrag som är på gång i den lärandes aktuella aktivitettool tip message for current activity iconcompleted_act_tooltipDubbelklicka för att granska bidragen i den lärandes fullföljda aktivitet. tool tip message for completed activity iconal_doubleclick_todoactivityLärande: {0} har tyvärr inte nått aktivitet: {1}, ännu. alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartInget datum sparades. Var snäll och välj ett datum och en tid.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTid (timmar : minuter)Time fields title - Lesson details (manage section)al_validation_schtimeVar snäll och mata in en giltig tidAlert message when user enters an invalid time for schedule startfinish_learner_tooltipFör att tvinga en lärande att fullfölja och gå till lektionens slut så ska Du dra den lärandes ikon över till den här raden och sedan släpper Du ikonen. Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityÖppna monitorering av aktivetetLabel for Custom Context Monitor Activityccm_monitor_activityhelpHjälp för monitorering av aktivetetLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnInlägg i journalenLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVisa alla de inlägg i journalerna som de lärande har sparat.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblLärande URL:Learner URL:ls_manage_learnerExpp_lblAktivera export av portfolio för lärande.Label for Enable export portfolio for Learnerls_confirm_expp_enabled Export av portfolio för lärande har nu aktiverats. Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled Export av portfolio för lärande har nu avaktiverats. Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgDu har valt att 'Ta bort' den här lektionen. Det går inte att återställa borttagna lektioner. Vill du fortsätta?remove confirm msgls_status_cmb_removeTa bortLesson status option - Removels_status_removed_lblBorttagenCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNej'No' on the alert dialogls_remove_warning_msgVarning! Du håller på att ta bort lektionen, Vill du behålla och arkivera den?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} lärandeGroup name for the class's learners group.staff_group_name{0} personalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/tr_TR_dictionary.xml 12 Jan 2010 01:20:14 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_win_editclass_save_btnKaydetSave button on Edit Class popupabout_popup_license_lblBu program üzretsiz bir yazılımdır; dağıtabilir ve/veya Free Softvare Foundation tarafından yayınlanan GNU General Public Licence version 2 şartları altında değiştirebilirsiniz. Label displaying the license statement in the About dialog.stream_urlhttp://{0}foundation.orgURL address for the application stream.learner_viewJournals_btn_tooltipÖğrencilerin kaydettiği günlük mesajlarının tümünü göster.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.branch_mapping_dlg_condition_col_lblKoşulColumn heading for showing condition description of the mapping.learner_exportPortfolio_btn_tooltipBu öğrencinin portfolyosunu dışa aktarıp bilgisayarınıza kaydeder.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referenceclass_exportPortfolio_btn_tooltipDersin portfolyosunu dışa aktarır ve ileride kullanılmak üzere bilgisayarınıza kaydeder.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computercv_design_unsaved_live_editKaydedilmeyen değişiklikler otomatik olarak kaydedilecek. Ekle/birleştir ile devam etmek istiyor musunuz?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.al_validation_schtimeLütfen geçerli bir zaman giriniz.Alert message when user enters an invalid time for schedule startview_competences_dlgYetkileri görüntüleAllows you to view all the competences within a learning designview_act_mapped_competencesHaritalanmış yetkileri görüntüleAllows you to view competences mapped to a particular activityccm_monitor_view_condition_mappingsKoşullara olan dallanmaları gösterLabel for Custom Context View Condition Mappingsccm_monitor_view_group_mappingsGrup dallanmalarını gösterLabel for Custom Context View Group Mappingsls_manage_learners_btnÖğrenci görüntüleView learners button - Lesson details (manage section)ls_win_learners_titleÖğrenenleri görüntüleView learners window titlemnu_viewGörünümMenu bar Viewmv_search_index_view_btn_lblDizin görünümüWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.al_activity_view_competence_mappings_invalidYetkileri gmrüntülemeden önce bir etkinlik seçtiğinizden emin olunuz.Warning that appears when no activity is selected when the user tries to view competence mappingscurrent_act_tooltipÖğrencinin şimdiki etkinliğine katılımını gözlemek için çift tıklayınız.tool tip message for current activity iconcompleted_act_tooltipÖğrencilerin tamamladığı etkinlikleri görmek için çift tıklayınız.tool tip message for completed activity iconal_cancelİptalTo Confirm title for LFErrorws_dlg_cancel_buttonİptal2learner_exportPortfolio_btnPortfolyo kaydetLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_manage_learnerExpp_lblÖğrenci için portfolyo dışa aktarmayı etkinleştirLabel for Enable export portfolio for Learnerls_confirm_expp_enabledPortfolyo dışa aktarma etkinleştirildi.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledPortfolyo dışa aktarmayı devreden çıkarConfirmation message on disabling export portfolio for learnersls_win_editclass_organisation_lblOrganizasyonHeading for Organisation tree on Edit Class popupal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorapp_chk_langloadDil bileşenleri yüklenmedimessage for unsuccessful language loadingapp_chk_themeloadTema bileşenleri yüklenmedimessage for unsuccessful theme loadingapp_fail_continueUygulamaya devam edilemiyor. Destek için iletişime geçiniz.message if application cannot continue due to any errordb_datasend_confirmSunucuya gönderdiğiniz veri için teşekkürler.Message when user sucessfully dumps data to the servermnu_editDüzenleMenu bar Editmnu_edit_copyKopyalaMenu bar Edit &gt; Copymnu_edit_cutKesMenu bar Edit &gt; Cutmnu_edit_pasteYapıştırMenu bar Edit &gt; Pastemnu_fileDosyaMenu bar Filemnu_file_refreshYenileMenu bar Refreshmnu_file_editclassDers düzenleMenu bar Edit Classmnu_file_startBaşlaMenu bar Startmnu_helpYardımMenu bar Helpmnu_help_abtHakkındaMenu bar Aboutperm_act_lblİzinLabel for permission gate activitymv_search_not_found_msg{0} bulunamadıThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblSayfa {0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblGitIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.ls_seq_status_moderationEtkinlik yönetDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_perm_gateİzin kapısıA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_choose_groupingGruplamayı seçAllows the Teacher to add the learners to chosen groupsls_seq_status_system_gateSistem kapısıA System Gate is a stop point that can be controlled by time setting or user controlws_RootAna dizinRoot folder title for workspacews_tree_mywspÇalışma AlanımThe root level of the treesys_error_msg_startBir sistem hatası oluştu.Common System error message starting linesys_errorSistem hatasıSystem Error elert window titlemnu_file_exitÇıkışMenu bar Exitmnu_goGitMenu bar Gomnu_go_lessonDersMenu bar Go to Lesson Tabrefresh_btnYenileRefresh buttonhelp_btnYardımHelp buttonmtab_lessonDersMonitor Lesson details tabmtab_seqSıralamaMonitor Sequence tabls_status_lblDurumStatus label - Lesson detailsls_manage_start_lblBaşlaStart managing label - Lesson detailsls_manage_editclass_btnSınıfı düzenleEdit class button - Lesson details (manage section)ls_manage_apply_btnUygulaStatus Apply button - Lesson details (manage section)ls_manage_start_btnŞimdi başlaStart immediately button - Lesson details (manage section)ls_manage_date_lblTarihDate field title - Lesson details (manage section)ls_manage_status_cmbDurum seçStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateEtkinleştirLesson status option - Activatels_status_cmb_disablePasifLesson status option - Disable (suspend)ls_status_cmb_enableAktifLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArşivLesson status option - Archivels_status_active_lblOluşturuldu ancak başlatılmadıCurrent status description if active (enabled)ls_status_disabled_lblPasifCurrent status description if suspended (disabled)ls_status_archived_lblArşivlendiCurrent status description if archviedls_status_started_lblBaşladıCurrent status description if started (enabled)ls_win_editclass_titleSınıfı düzenleEdit class window titlels_win_learners_close_btnKapatClose button on View Learners popupls_win_editclass_learners_lblÖğrencilerHeading for Learners list on the Edit Class popupls_win_learners_heading_lblSınıftaki öğrencilerHeading on View Learners window panel.td_desc_headingGelişmiş kontrollerTodo tab description headingopt_activity_titleSeçmeli EtkinlikTitle for Optional Activity on canvas (monitoring)lbl_num_activities{0} - EtkinliklerNumber of child activities for Complex activity shown on canvas.ls_manage_txtDersi yönetHeading for Management section of Lesson Tabls_tasks_txtYapılması gereken görevlerHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGitGo button on contribute entry itemal_sendGönderSend button label on the system error dialogal_validation_schstartTarih seçilmedi. Lütfen tarih ve zaman seçiniz.Message when no date is selected for starting a lesson by schedule.title_sequencetab_endGateBitiren öğrencilerTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_learnerURL_lblÖğrenci URL'siLearner URL:goContribute_btn_tooltipBu görevi şimdi tamamlatool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipYardımtool tip message for help button in toolbarls_manage_editclass_btn_tooltipBu derse kayırlı öğrencileri düzenler ve izler.tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipBu derse kayıtlı öğrencileri gösterir.tool tip message for the view learners button in lesson tab under manage lesson sectionls_class_lblSınıfClass label - Lesson detailsls_manage_class_lblSınıfClass managing label - Lesson detailsls_manage_status_lblDurum değiştirStatus managing label - Lesson detailsls_win_editclass_cancel_btnİptalCancel button on Edit Class popupls_duration_lblGeçen zamanElapsed duration of lesson - Lesson detailsccm_monitor_activityhelpEtkinlik yardımını izleLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnGünlük mesajlarıLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learners_group_name{0} öğrenciGroup name for the class's learners group.ls_remove_confirm_msgBu dersi kaldırmayı seçtiniz. Bu işlemi tekrar geri lamazsınız. devam etmek istiyor musunuz?remove confirm msgcontinue_btnDevam etContinue button labelmsg_bubble_check_action_lblKontrol ediliyor...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblGerçekleştirilemedi, tekrar deneyiniz.Label displayed when check failed i.e. lesson is still locked.branch_mapping_dlg_branch_col_lblDallanmaColumn heading for showing sequence name of the mapping.branch_mapping_dlg_group_col_lblGrupColumn heading for showing group name of the mapping.mnu_go_sequenceSıralamaMenu bar Go to Sequence Tabcv_activity_helpURL_undefined{0}'ın yardım sayfası bulunamıyor.Alert message when a tool activity has no help url defined.al_doubleclick_todoactivityÜzgünüm, öğrenci {0} henüz etkinliğe erişmedialert message when user double click on the todo activity in the sequence under learner tabls_status_cmb_removeKaldırLesson status option - Removels_status_removed_lblKaldırıldıCurrent status description if deleted (removed) lesson.al_yesEvetYes on the alert dialogal_noHayır'No' on the alert dialogls_remove_warning_msgUYARI: Ders kaldırılmak üzere. Bu dersi saklamak istiyor musunuz?Message for the alert dialog which appears following confirmation dialog for removing a lesson.check_avail_btnKullanılabilirliğini kontrol et.Check Availability button labelabout_popup_title_lbl{0} hakkındaTitle for the About Pop-up window.about_popup_version_lblSürümLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2008 {0} Foundation. Label displaying copyright statement in About dialog.ls_manage_start_btn_tooltipDersi hemen başlattool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessongpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.mtab_learnersÖğrencilerMonitor Learners tabls_learners_lblÖğrencilerLearner label - Lesson detailsls_of_textin i.e. 1 of 10 Used for showing how many learners have startedccm_monitor_activityEtkinlik izlemeyi açLabel for Custom Context Monitor Activityclose_mc_tooltipSimge durumuna küçültTooltip message for close button on Branching canvas.ls_seq_status_define_laterDaha sonra tanımlaOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_continue_lblHi {1}, düzenlemeyi bitirmediniz.Continue message labelstream_reference_lblLAMSReference label for the application stream.mv_search_default_txtAnahtar kelime veya sayfa numarası giriniz.The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.ls_manage_time_lblZaman (Saat:dakika)Time fields title - Lesson details (manage section)ls_seq_status_teacher_branchingÖğretmen seçimli dallanmaA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_setHenüz kurulmadıThe value of the sequence's status is not setal_activity_openContent_invalidÜzgünüm! Etkinlik sağ menüsündeki Etkinlik içeriği Aç/Düzenle maddesine tıklamadan önce etkinliği seçmek zorundasınız. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvassched_act_lblTakvimLabel for schedule gate activitymnu_file_scheduleTakvimMenu bar Schedulemnu_go_scheduleTakvimMenu bar Go to Schedule Tabmnu_go_learnersÖğrencilerMenu bar Go to Learners Tabls_manage_schedule_btnTakvimSchedule start button - Lesson details (manage section)synch_act_lblSenkronize etUsed as a label for the Synch Gate Activity Typews_dlg_location_buttonKonumWorkspace dialogue Location btn labelmnu_view_learnersÖğrenciler..Menu bar Learnersls_locked_msg_lblÜzgünüm, {0} şuan {1} tarafından düzenleniyor.Warning message on Monitor locked screen.ls_continue_action_lblDevam etmek için {0}'a tıklayınız.Action label displayed when a user can proceed to Live Edit.ls_manage_apply_btn_tooltipAçılır menü ile bu dersin durumunu değiştirir.tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statustd_desc_textBu sekmenin kullanımı akışı tamamlamanızı gerektirmez. Daha fazla bilgi için yardım sayfasına bakınız. Bu özellik tüm işlevleriyle çalışıyor.Todo tab descriptional_confirm_forcecomplete_to_end_of_branching_seqÖğrenci {0}'ı dallanma sıralamasını sonuna göndermek istediğinizden emin misiniz?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_manage_schedule_btn_tooltipDersi belirlenen tarihte başlatmak üzere takvim oluşturur.tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timemnu_help_helpİzleme yardımMenu bar Help itemws_tree_orgsOrganizasyonShown in the top level of the tree in the workspacestaff_group_name{0} izleyiciGroup name for the class's staff group.al_confirm_live_editÇalışırken düzenle'yi açmak üzeresiniz. Devam etmek istiyor musunuz?Confirm warning (dialog) message displayed when opening Live Edit.mnu_go_todoYapMenu bar Todomtab_todoYapMonitor Todo tabal_error_forcecomplete_notargetLütfen öğrenci {0}'ı bir etkinliğin üzerine veya dersin sonuna bırakınız.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasrefresh_btn_tooltipÖğrenciler için son değişimleri yüklertool tip message for the refresh buttonbranch_mapping_dlg_conditions_dgd_lblHaritalamaHeading label for Mapping datagrid.mv_search_error_msgLütfen 1 ve {0} arasında bir sayfa sayısı veya anahtar kelime girerek sorgulama yapınız.This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgSayfa numarası 1 ile {0} arasında olmalıdır.This error message appears if the number entered by the user lies outside the range of viewable pages.al_confirm_forcecomplete_toactivityÖğrenci '{0}' ı Etkinlik {1}'i yapmaya zorlamak istediğinizden emin misiniz?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityÖğrenci {0}'ı şuanki etkinliğine veya tamamladığı etkinlik {1}'e bıraktınız.Error message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_to_different_seq{0} farklı bir sıralama veya dallanmadaki etkinliğe bırakılamaz.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_win_editclass_staff_lblİzlemeHeading for Staff list on Edit Class popupls_seq_status_contributionKatılımAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.finish_learner_tooltipÖğrenciyi dersi tamamlamaya zorlamak için öğrenci simgesini bu çubuğa sürükleyiniz ve bırakınız.Rollover message when user moves their mouse over the end gate bar in monitor tab viewlabel.grouping.general.instructions.branchingGrubun dallanmasını etkileyeceğinden bu gruplamaya grup ekleyip kaldıramazsınız. Sadece varolan gruplara kullanıcıekleyip kaldırabilirsiniz.Third instructions paragraph on the chosen branching screen.ls_sequence_live_edit_btn_tooltipBu ders için geçerli tasarımı düzenler.Tool tip message for Live Edit buttonls_sequence_live_edit_btnCanlı düzenleLive Edit buttonls_seq_status_sched_gateKapıyı programlaA type of Gate Activity where progress depends on time (start time and/or end time)ls_seq_status_synch_gateSenkronize kapısıA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_status_scheduled_lblZaman çizelgesi oluşturuldu.Lesson status option - Scheduled (Not Started)mapped_competences_lblHaritalanmış yetkikerTitle for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lblYetkiler {0}'a haritalandı.Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lblBaşlıkCompetence Title label in Mapped Competences dialogview_competences_in_ld_lblÖğrenme tasarımındaki yetkiler: {0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentcompetence_desc_lblAçıklamaCompetence Description label in Mapped Competences dialogal_okTamamOK on the alert dialogorder_learners_by_completion_lblDersi tamamlama sürecini öğrenciye göster.Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lblÖğrencilerin çevrimiçi kişileri görmesine izin ver.ls_manage_presenceEnabled_lblls_confirm_presence_enabledÖğrencileri çevrimiçi kişileri göremeyecekler.ls_confirm_presence_enabledls_confirm_presence_disabledÖğrencileri çevrimiçi kişileri görebilecekler.ls_confirm_presence_disabledal_confirm_forcecomplete_tofinishÖğrenci {0}'ı dersi bitirmeye zorlamak istediğinizden emin misiniz?Message to get confirmation from user before sending data to server for force complete to the end of lessonlbl_num_sequences{0} - AkışlarNumber of child sequence or Optional Sequences activity shown on canvas.sys_error_msg_finishDevam etmek için LAMS tasarımı yeniden başlatmalısınız. Problemin giderilmesinde yardımcı olmak için hata bilgisini kaydetmek ister misiniz?Common System error message finish paragraphabout_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ls_win_learners_heading_class_lblSınıfHeading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lblEtkinlikHeading on View Learners window panel (learners at activity).learner_plus_tooltip{0} öğrenci. Tüm listeyi görmek için çift tıklayınız.Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/vi_VN_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertCảnh báoGeneric title for Alert windowal_cancelHủyTo Confirm title for LFErroral_confirmXác nhậnTo Confirm title for LFErroral_okChấp nhậnOK on the alert dialogapp_chk_langloadDữ liệu ngôn ngữ không được đưa lênmessage for unsuccessful language loadingapp_chk_themeloadTodomessage for unsuccessful theme loadingapp_fail_continueChương trình không thể tiếp tục. Hãy liên hệ hỗ trợmessage if application cannot continue due to any errordb_datasend_confirmCảm ơn đã gửi dữ liệu tới máy chủMessage when user sucessfully dumps data to the servermnu_editSửaMenu bar Editmnu_edit_copySao chépMenu bar Edit &gt; Copymnu_edit_cutCắtMenu bar Edit &gt; Cutmnu_edit_pasteDánMenu bar Edit &gt; Pastemnu_fileTệp tinMenu bar Filemnu_file_refreshHồi phụcMenu bar Refreshmnu_file_editclassĐiều chỉnh lớpMenu bar Edit Classmnu_file_startBắt đầuMenu bar Startmnu_helpTrợ giúpMenu bar Helpmnu_help_abtGần nhưMenu bar Aboutperm_act_lblCho phépLabel for permission gate activitysched_act_lblThời gian biểuLabel for schedule gate activitysynch_act_lblĐồng bộUsed as a label for the Synch Gate Activity Typews_RootGốcRoot folder title for workspacews_dlg_cancel_buttonHủy2ws_dlg_location_buttonVị tríWorkspace dialogue Location btn labelws_tree_mywspKhông gian làm việc của tôiThe root level of the treews_tree_orgsTổ chứcShown in the top level of the tree in the workspacesys_error_msg_startĐã xảy ra lỗi hệ thống sauCommon System error message starting linesys_error_msg_finishBạn có thể phải khởi động lại Module soạn giảng của LAMS để tiếp tục. Bạn có muốn lưu thông tin dưới đây về lỗi này để trợ giúp khắc phục lỗi này?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titlemnu_file_scheduleThời gian biểuMenu bar Schedulemnu_file_exitKết thúcMenu bar Exitmnu_view_learnersNgười họcMenu bar Learnersmnu_goTiếp tụcMenu bar Gomnu_go_lessonBài họcMenu bar Go to Lesson Tabmnu_go_scheduleThời gian biểuMenu bar Go to Schedule Tabmnu_go_learnersNgười họcMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpTrợ giúp theo dõiMenu bar Help itemrefresh_btnPhục hồiRefresh buttonhelp_btnTrợ giúpHelp buttonmtab_lessonbài họcMonitor Lesson details tabmtab_seqChuỗiMonitor Sequence tabmtab_learnersNgười họcMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblTrạng tháiStatus label - Lesson detailsls_learners_lblNgười họcLearner label - Lesson detailsls_class_lblLớp họcClass label - Lesson detailsls_manage_class_lblLớp họcClass managing label - Lesson detailsls_manage_status_lblThay đổi trạng tháiStatus managing label - Lesson detailsls_manage_start_lblBắt đầuStart managing label - Lesson detailsls_manage_learners_btnXem người họcView learners button - Lesson details (manage section)ls_manage_editclass_btnĐiều chỉnh lớp họcEdit class button - Lesson details (manage section)ls_manage_apply_btnĐăng kýStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnThời gian biểuSchedule start button - Lesson details (manage section)ls_manage_start_btnBắt đầu Start immediately button - Lesson details (manage section)ls_manage_date_lblNgàyDate field title - Lesson details (manage section)ls_duration_lblKhoảng thời gian mà hoạt động đã diễn raElapsed duration of lesson - Lesson detailsls_manage_status_cmbLựa chọn trạng tháiStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateTrạng thái hoạt độngLesson status option - Activatels_status_cmb_disableVô hiệu hóaLesson status option - Disable (suspend)ls_status_cmb_enableHoạt độngLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveLưu trữLesson status option - Archivels_status_active_lblTạo nhưng không bắt đầuCurrent status description if active (enabled)ls_status_disabled_lblHoãnCurrent status description if suspended (disabled)ls_status_archived_lblLưu trữCurrent status description if archviedls_status_started_lblBắt đầuCurrent status description if started (enabled)ls_win_editclass_titleĐiều chỉnh lớp họcEdit class window titlels_win_learners_titleXem người họcView learners window titlemnu_viewXem Menu bar Viewls_win_editclass_save_btnLưuSave button on Edit Class popupls_win_editclass_cancel_btnHủyCancel button on Edit Class popupls_win_learners_close_btnĐóngClose button on View Learners popupls_win_editclass_organisation_lblTổ chứcHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblNhân viênHeading for Staff list on Edit Class popupls_win_editclass_learners_lblNgười họcHeading for Learners list on the Edit Class popupls_win_learners_heading_lblHọc viên trong lớpHeading on View Learners window panel.td_desc_headingKiểm soát nâng caoTodo tab description headingtd_desc_textTab Todo không được yêu cầu để hoàn thành chuỗi này. Xem trợ giúpTodo tab descriptionopt_activity_titleHoạt động tùy chọnTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesHoạt động conNumber of child activities for Complex activity shown on canvas.ls_of_textThuộc vềi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtQuản lý bài họcHeading for Management section of Lesson Tabls_tasks_txtNhiệm vụ yêu cầuHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnTiếp tụcGo button on contribute entry itemlearner_exportPortfolio_btnXuất kết quả học tậpLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblThời gian biểuLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityBạn có chắc chắn muốn sắp xếp những học viên hoàn thành '{0}' vào hành động '{1}' ? Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityBạn muốn đặt học viên '{0}' tại hoạt động hiện tại hay lên hoạt động đã hoàn thành '{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishBạn có chắc chắn muốn sắp xếp học viên hoàn tất bài học '{0}' về cuối bài họcMessage to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetHãy đặt học viên '{0}' lên 1 hoạt động hoặc về cuối bài họcError Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateNhững người học đã kết thúcTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipHoàn tất nhiệm vụtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipTrợ giúptool tip message for help button in toolbarrefresh_btn_tooltipNạp lại dữ liệu mới nhất cho người họctool tip message for the refresh buttonls_manage_editclass_btn_tooltipĐiều chỉnh danh sách học viên và nhân viên được gán cho lớp học nàytool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipHiển thị tất cả học viên gán cho lớp học nàytool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipThay đổi trạng thái bài học dựa trên sự lựa chọn giảm xuốngtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipXuất kết quả học tập của lớp học và lưu nó trên máy tính của bạn để xem sautool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipXuất kết quả học tập của học viên này và lưu nó trên máy tính của bạn để xem sautool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipBắt đầu bài học này ngaytool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipLịch bài giảng sautool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipKichk đúp để xem trước quá trình cung cấp cho hoạt động hiện tại của học viêntool tip message for current activity iconcompleted_act_tooltipKích đúp để xem trước sự cung cấp đối với các họat động hoàn thành cảu học viêntool tip message for completed activity iconal_doubleclick_todoactivityXin lỗi, học viên: {0} đã không đi đến hoạt động {1}alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartBạn chưa lựa chọn ngày. Hãy chọn 1 ngày và thời gianMessage when no date is selected for starting a lesson by schedule.ls_manage_time_lblThời gian (Giờ: Phút)Time fields title - Lesson details (manage section)al_validation_schtimeHãy nhập vào thời gian hợp lýAlert message when user enters an invalid time for schedule startfinish_learner_tooltipĐể hoàn tất việc sắp xếp học viên tới cuối bài học, kéo biểu tượng học viên qua thanh này và thả biểu tượng đóRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityMở hoạt động theo dõiLabel for Custom Context Monitor Activityccm_monitor_activityhelpTrợ giúp hoạt động theo dõiLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnNhật ký đăng nhậpLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipXem tất cả nhật ký đăng nhập được lưu bởi học viêntool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL của học viênLearner URL:ls_manage_learnerExpp_lblCó thể xuất kết quả học tập cho học viênLabel for Enable export portfolio for Learnerls_confirm_expp_enabledBây giờ có thể xuất kết quả học tập cho học viênConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledBây giờ không thể xuất kết quả học tập cho học viênConfirmation message on disabling export portfolio for learnersls_remove_confirm_msgBạn vừa chọn bỏ đi bài học này. Bài học được bỏ đi sẽ không thể lấy lại được. Tiếp tục?remove confirm msgls_status_cmb_removeGõ bỏLesson status option - Removels_status_removed_lblĐã gỡ bỏCurrent status description if deleted (removed) lesson.al_yesYes on the alert dialogal_noKhông'No' on the alert dialogls_remove_warning_msgCảnh báo : Bài học sẽ được bỏ đi. Bạn có muốn giữ bài học này dưới dạng văn thư không?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} Học viênGroup name for the class's learners group.staff_group_name{0} Giảng viênGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/zh_CN_dictionary.xml 12 Jan 2010 01:20:13 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alert警惕Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm确定To Confirm title for LFErroral_okOK on the alert dialogapp_chk_langload语言数据没有被装载message for unsuccessful language loadingapp_chk_themeload题目数据没有被装载message for unsuccessful theme loadingapp_fail_continue请求不能继续。请联系技术支持。message if application cannot continue due to any errordb_datasend_confirm谢谢您向服务器传送数据Message when user sucessfully dumps data to the servermnu_edit编辑Menu bar Editmnu_edit_copy复制Menu bar Edit &gt; Copymnu_edit_cut剪切Menu bar Edit &gt; Cutmnu_edit_paste粘贴Menu bar Edit &gt; Pastemnu_file文件Menu bar Filemnu_file_refresh刷新Menu bar Refreshmnu_file_editclass编辑类Menu bar Edit Classmnu_file_start开始Menu bar Startmnu_help帮助Menu bar Helpmnu_help_abt关于Menu bar Aboutperm_act_lbl允许Label for permission gate activitysched_act_lbl时间表Label for schedule gate activitysynch_act_lbl同步Used as a label for the Synch Gate Activity Typews_RootRoot folder title for workspacews_dlg_cancel_button取消2ws_dlg_location_button位置Workspace dialogue Location btn labelws_tree_mywsp我的工作空间The root level of the treews_tree_orgs组织Shown in the top level of the tree in the workspacesys_error_msg_start发生了一个系统错误Common System error message starting linesys_error_msg_finish你需要重新启动LAMS设计来继续。你向保存下列有关这个错误的信息来帮助解决这个问题吗?Common System error message finish paragraphsys_error系统错误System Error elert window titlemnu_file_schedule时间表Menu bar Schedulemnu_file_exit退出Menu bar Exitmnu_view_learners学习者Menu bar Learnersmnu_go前进Menu bar Gomnu_go_lesson课程Menu bar Go to Lesson Tabmnu_go_schedule时间表Menu bar Go to Schedule Tabmnu_go_learners学习者Menu bar Go to Learners Tabmnu_go_todo去做Menu bar Todols_manage_editclass_btn编辑班级Edit class button - Lesson details (manage section)ls_manage_apply_btn申请Status Apply button - Lesson details (manage section)ls_manage_schedule_btn时间表Schedule start button - Lesson details (manage section)ls_manage_start_btn立即开始Start immediately button - Lesson details (manage section)ls_status_cmb_disable不可用Lesson status option - Disable (suspend)ls_status_cmb_enable活动的Lesson status option - Enable (make active/unsuspend)ls_status_disabled_lbl暂停的Current status description if suspended (disabled)ls_status_archived_lbl存档的Current status description if archviedls_win_learners_title观看学习者View learners window titlemnu_view观看Menu bar Viewls_win_editclass_save_btn保存Save button on Edit Class popupls_win_editclass_learners_lbl学习者Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl班级中的学习者Heading on View Learners window panel.opt_activity_title可选活动Title for Optional Activity on canvas (monitoring)lbl_num_activities子活动Number of child activities for Complex activity shown on canvas.ls_tasks_txt必需的任务Heading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGo button on contribute entry itemal_confirm_forcecomplete_tofinish你确信你想强迫完成学习者'{0}'到课程结尾吗?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_status_scheduled_lbl预定的Lesson status option - Scheduled (Not Started)goContribute_btn_tooltip现在完成这个任务tool tip message for go button in required tasks list in lesson tabrefresh_btn_tooltip重载学习者的最近进展数据tool tip message for the refresh buttonls_manage_learners_btn_tooltip显示所有分配给这个课程的学习者tool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltip在向下移动选择的基础上改变这个课程的状态tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusls_manage_status_cmb选择状态Status combo top (index) item - Lesson details (manage section)ls_manage_learners_btn观看学习者View learners button - Lesson details (manage section)ls_manage_date_lbl日期Date field title - Lesson details (manage section)ls_duration_lbl消逝的持续时间Elapsed duration of lesson - Lesson detailsls_status_cmb_activate使活动Lesson status option - Activatels_status_cmb_archive存档Lesson status option - Archivels_status_started_lbl开始的Current status description if started (enabled)ls_win_editclass_title编辑班级Edit class window titlels_win_editclass_cancel_btn取消Cancel button on Edit Class popupls_win_learners_close_btn关闭Close button on View Learners popupls_win_editclass_organisation_lbl组织Heading for Organisation tree on Edit Class popuptd_desc_heading高级控制Todo tab description headingtd_desc_text使用这个Todo标签不是完成序列所必需的。更多信息请看帮助页面。这个特征已完全功能化。Todo tab descriptionls_of_texti.e. 1 of 10 Used for showing how many learners have startedls_manage_txt管理课程Heading for Management section of Lesson Tablearner_exportPortfolio_btn导出公文包Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivity你确信你想强迫学习者'{0}'完成活动'{1}'吗?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivity你已经将学习者'{0}'置于当前或已完成的活动'{1}'中了。Error message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_notarget请将学习者'{0}'置于活动中或课程的结尾。Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate已完成的学习者Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonhelp_btn_tooltip帮助tool tip message for help button in toolbarls_manage_schedule_btn_tooltip确定课程将来开始的时间tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltip双击,为学习者的当前活动回顾发展中的贡献tool tip message for current activity iconal_doubleclick_todoactivity对不起,学习者'{0}'还没有到达活动'{1}'。alert message when user double click on the todo activity in the sequence under learner tabrefresh_btn刷新Refresh buttonhelp_btn帮助Help buttonmtab_lesson课程Monitor Lesson details tabmtab_seq序列Monitor Sequence tabmtab_learners学习者Monitor Learners tabmtab_todo去做Monitor Todo tabls_learners_lbl学习者Learner label - Lesson detailsls_class_lbl班级Class label - Lesson detailsls_manage_class_lbl班级Class managing label - Lesson detailsls_manage_start_lbl开始Start managing label - Lesson detailsls_status_lbl状态Status label - Lesson detailsclass_exportPortfolio_btn_tooltip导出课程公文包,为了将来的参考,在你的计算机上保存它。tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltip导出这个学习者公文包,为了将来的参考,在你的计算机上保存它。tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltip立即开始课程tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessoncompleted_act_tooltip双击,回顾学习者已完成活动的贡献tool tip message for completed activity iconal_validation_schstart没有日期被选定。请选择一个日期和时间。Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl时间(小时:分钟)Time fields title - Lesson details (manage section)al_validation_schtime请输入一个有效的时间。Alert message when user enters an invalid time for schedule startls_manage_learnerExpp_lbl学习者允许导出的导出文件夹Label for Enable export portfolio for Learnerls_confirm_expp_enabled学习者现在可以导出文件夹Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled学习者现在不允许导出文件夹Confirmation message on disabling export portfolio for learnersal_send发送Send button label on the system error dialogccm_monitor_activity打开活动监视器Label for Custom Context Monitor Activityccm_monitor_activityhelp监视活动帮助Label for Custom Context Monitor Activity Helpls_learnerURL_lbl学习者 URL:Learner URL:finish_learner_tooltip要强制使一个学生结束课程,请将该学生的图标拖到此栏并释放该图标Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btn日志入口Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip查看学习者保存的日志入口tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.learners_group_name{0}-学习者Group name for the class's learners group.ls_remove_confirm_msg您已经选择移去该课程,移去的课程将不能再获取,继续吗?remove confirm msgls_status_cmb_remove移去Lesson status option - Removels_status_removed_lbl移去的Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_no'No' on the alert dialogcheck_avail_btn检查可用性Check Availability button labelcontinue_btn继续Continue button labells_continue_lbl您好{0},您还没有完成编辑{0}。Continue message labells_sequence_live_edit_btn灵活编辑Live Edit buttonls_sequence_live_edit_btn_tooltip为该课程编辑目前的设计。Tool tip message for Live Edit buttonmsg_bubble_check_action_lbl检查中...Label displayed when checking availability of lesson.msg_bubble_failed_action_lbl不可用,重试。Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lbl对不起,{0}目前正在被{1}编辑。Warning message on Monitor locked screen.al_confirm_live_edit您将打开灵活编辑,继续吗?Confirm warning (dialog) message displayed when opening Live Edit.about_popup_title_lbl关于-{0}Title for the About Pop-up window.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_trademark_lbl{0} 是一个商标。Label displaying the trademark statement in the About dialog.about_popup_license_lbl该软件是一个自由软件; 您可以重新发布并/或修改它,前提是您必须遵守自由软件组织发布的准则。Label displaying the license statement in the About dialog.stream_reference_lbl LAMS Reference label for the application stream.gpl_license_url www.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_url http://{0}foundation.org URL address for the application stream.ls_continue_action_lbl点击{0}以继续。Action label displayed when a user can proceed to Live Edit.about_popup_copyright_lbl © 2002-2008 {0} 基金。Label displaying copyright statement in About dialog.lbl_num_sequences{0}—序列Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalid对不起,在您右击鼠标选择打开/编辑活动菜单之前,请选择该活动。alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasclose_mc_tooltip最小Tooltip message for close button on Branching canvas.mv_search_default_txt输入搜索查询或页面号码The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msg请输入搜索查询或范围在1到{0}直接的页面号码This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg页面号码必须在1和{0}之间This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0}没有找到。This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl页面{0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl开始If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl索引视图When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.al_confirm_forcecomplete_to_end_of_branching_seq你确定要强制学习者{0}结束该分支流程吗?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_seq_status_teacher_branching教师A type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_set还没有设置The value of the sequence's status is not setbranch_mapping_dlg_conditions_dgd_lbl映射Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl条件Column heading for showing condition description of the mapping.ccm_monitor_view_group_mappings查看分支的分组Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings查看分支的条件Label for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lblColumn heading for showing group name of the mapping.mnu_go_sequence流程Menu bar Go to Sequence Tabcv_activity_helpURL_undefined找不到{0}的帮助页面Alert message when a tool activity has no help url defined.view_competences_dlg查看映射Allows you to view all the competences within a learning designview_competences_in_ld_lbl学习设计中的权限:{0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentview_act_mapped_competences查看权限映射Allows you to view competences mapped to a particular activitymapped_competences_lbl已映射的权限Title for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lbl权限映射到{0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lbl标题Competence Title label in Mapped Competences dialogcompetence_desc_lbl描述Competence Description label in Mapped Competences dialogal_activity_view_competence_mappings_invalid请确定在查看权限映射前已选定一个活动。Warning that appears when no activity is selected when the user tries to view competence mappingsal_error_forcecomplete_to_different_seq{0}不能被强制拖到不同分支或流程中的活动中This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderation延迟Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later稍后定义Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate许可闸门A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate同步闸门A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping选择小组Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution贡献Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate系统闸门A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_sched_gate时间闸门A type of Gate Activity where progress depends on time (start time and/or end time)cv_design_unsaved_live_edit未保存的修改将被自动保存,你想继续插入/合并吗?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching您不能添加或移除分组中的小组,因为它正在被分支流程使用;并且添加或移除小组将影响到分支设置的分组。您只能在现有的小组中添加或移除用户。Third instructions paragraph on the chosen branching screen.ls_win_editclass_staff_lbl监控者Heading for Staff list on Edit Class popupmnu_help_help监控帮助Menu bar Help itemls_status_active_lbl已创建但还不开始Current status description if active (enabled)ls_manage_editclass_btn_tooltip编辑分配给这个课程的学习者和监控者列表tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_status_lbl改变状态Status managing label - Lesson detailsorder_learners_by_completion_lbl通过完成活动来命令学生Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonstaff_group_name{0}-监控者Group name for the class's staff group.ls_remove_warning_msg警告:该课程将被移去,您想保留该课程吗?Message for the alert dialog which appears following confirmation dialog for removing a lesson. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/monitoring/zh_TW_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_seq_status_not_set尚未設定The value of the sequence's status is not setbranch_mapping_dlg_condition_col_lbl狀態Column heading for showing condition description of the mapping.ls_seq_status_sched_gate時程閘門A type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_conditions_dgd_lbl映圖Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_group_col_lbl群組Column heading for showing group name of the mapping.ccm_monitor_view_group_mappings檢視群組到分支Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings檢視Label for Custom Context View Condition Mappingsmnu_go_sequence編程Menu bar Go to Sequence Tabview_competences_in_ld_lbl設計中的能力Label for dialog that shows all the competences in a learning design with a name specified by the argumentmtab_lesson課程Monitor Lesson details tabmtab_seq順序Monitor Sequence tabls_status_lbl狀態Status label - Lesson detailssys_error系統錯誤System Error elert window titlemnu_file_schedule時程表Menu bar Schedulemnu_file_exit離開Menu bar Exitmnu_go_lesson課程Menu bar Go to Lesson Tabmnu_go_schedule時程表Menu bar Go to Schedule Tabrefresh_btn重新整理Refresh buttonhelp_btn輔助Help buttoncv_activity_helpURL_undefined無法找到{0}的幫助頁面Alert message when a tool activity has no help url defined.cv_design_unsaved_live_edit未保存的修改將被自動保存,您想要繼續插入/合併嗎?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching您不能添加或移除分組中的小組,因為它正在被分支流程使用;並且添加或移除小組將影響到分支設置的分組。您只能在現有的小組中添加或移除使用者。Third instructions paragraph on the chosen branching screen.view_competences_dlg檢視能力Allows you to view all the competences within a learning designview_act_mapped_competences檢視映圖能力Allows you to view competences mapped to a particular activitymapped_competences_lbl映圖能力Title for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lbl能力硬圖到{0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lbl標題Competence Title label in Mapped Competences dialogcompetence_desc_lbl描述Competence Description label in Mapped Competences dialogal_activity_view_competence_mappings_invalid請確定在查看能力硬圖前已選定一個活動。Warning that appears when no activity is selected when the user tries to view competence mappingsorder_learners_by_completion_lbl按完成排序Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lbl允許學習者查看誰在線上ls_manage_presenceEnabled_lblls_confirm_presence_enabled現在學習者可以看誰在線上ls_confirm_presence_enabledls_confirm_presence_disabled學習者無法看到誰在線上ls_confirm_presence_disabledls_win_learners_heading_class_lbl課程Heading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lbl活動Heading on View Learners window panel (learners at activity).learner_plus_tooltip{0}學習者。按兩下去看完整的名單Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity.al_alert注意Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm確認To Confirm title for LFErroral_okOK on the alert dialogapp_chk_langload語言資料還未被載入message for unsuccessful language loadingapp_chk_themeload主題資料還未被載入message for unsuccessful theme loadingapp_fail_continue應用程式無法繼續。請聯絡技術支援message if application cannot continue due to any errordb_datasend_confirm謝謝您傳送資料到伺服器Message when user sucessfully dumps data to the servermnu_edit編輯Menu bar Editmnu_edit_copy拷貝Menu bar Edit &gt; Copymnu_edit_cut剪下Menu bar Edit &gt; Cutmnu_edit_paste貼上Menu bar Edit &gt; Pastemnu_file檔案Menu bar Filemnu_file_refresh重新整理Menu bar Refreshmnu_file_editclass編輯Menu bar Edit Classmnu_file_start開始Menu bar Startmnu_help幫助Menu bar Helpmnu_help_abt有關Menu bar Aboutperm_act_lbl允許Label for permission gate activitysched_act_lbl行程Label for schedule gate activitysynch_act_lbl同步Used as a label for the Synch Gate Activity Typews_Root根目錄Root folder title for workspacews_dlg_cancel_button取消2ws_dlg_location_button地點Workspace dialogue Location btn labelws_tree_mywsp我的工作空間The root level of the treews_tree_orgs組織Shown in the top level of the tree in the workspacesys_error_msg_start系統錯誤發生Common System error message starting linemnu_view_learners學習者...Menu bar Learnersmnu_go啟用Menu bar Gomnu_go_learners學習者Menu bar Go to Learners Tabmnu_go_todo執行Menu bar Todomnu_help_help監視Menu bar Help itemmtab_learners學習者Monitor Learners tabmtab_todo執行Monitor Todo tabls_learners_lbl學習者Learner label - Lesson detailsls_class_lbl課程Class label - Lesson detailssys_error_msg_finish你需要重新啟動LAMS設計來繼續。你想保留下列有關這個錯誤的資訊來幫助解決這個問題嗎?Common System error message finish paragraphal_validation_schtime請輸入一個有效的時間Alert message when user enters an invalid time for schedule startfinish_learner_tooltip要強制一位學習者結束課程,請將該學習者的圖示拖到此欄並釋放該圖示Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activity開啟活動監視器Label for Custom Context Monitor Activityccm_monitor_activityhelp監視活動輔助Label for Custom Context Monitor Activity Helplearner_viewJournals_btn日記記錄Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip檢視學習者所有儲存的日記記錄tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lbl壆習者URL:Learner URL:ls_remove_confirm_msg您已經選擇移除該課程,移除的課程將不能再獲取,繼續嗎?remove confirm msgls_status_cmb_remove移除Lesson status option - Removels_status_removed_lbl已移除Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_no'No' on the alert dialogls_remove_warning_msg警告:此課程將被移除。你要保存此課程嗎?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0}學習者Group name for the class's learners group.staff_group_name{0}監視Group name for the class's staff group.check_avail_btn檢查可使用的標示Check Availability button labelcontinue_btn繼續Continue button labells_continue_lbl嗨{1},你尚未完成編輯{0}Continue message labells_sequence_live_edit_btn即時編輯Live Edit buttonls_sequence_live_edit_btn_tooltip編輯此課程的設計Tool tip message for Live Edit buttonmsg_bubble_check_action_lbl檢查...Label displayed when checking availability of lesson.msg_bubble_failed_action_lbl不可用,請再試ㄧ次Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lbl抱歉,{0}目前被{1}編輯中Warning message on Monitor locked screen.al_confirm_live_edit你將開啟即時編輯,你想繼續嗎?Confirm warning (dialog) message displayed when opening Live Edit.al_send送出Send button label on the system error dialogabout_popup_title_lbl有關- {0}Title for the About Pop-up window.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2009 {0} 基金會Label displaying copyright statement in About dialog.about_popup_trademark_lbl {0} 是{0}基金會( {1} )的註冊商標Label displaying the trademark statement in the About dialog.about_popup_license_lbl該軟體是一個自由軟體; 您可以重新發佈並/或修改它,前提是您必須遵守自由軟體組織發佈的準則。Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.ls_manage_class_lbl課程:Class managing label - Lesson detailsls_manage_status_lbl改變狀態:Status managing label - Lesson detailsls_manage_start_lbl開始:Start managing label - Lesson detailsls_manage_learners_btn檢視使用者View learners button - Lesson details (manage section)ls_manage_editclass_btn編輯課程Edit class button - Lesson details (manage section)ls_manage_apply_btn套用Status Apply button - Lesson details (manage section)ls_manage_schedule_btn行程Schedule start button - Lesson details (manage section)ls_manage_start_btn現在開始Start immediately button - Lesson details (manage section)ls_manage_date_lbl日期Date field title - Lesson details (manage section)ls_duration_lbl持續時間Elapsed duration of lesson - Lesson detailsls_manage_status_cmb選擇狀態Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activate啟用Lesson status option - Activatels_status_cmb_disable關閉Lesson status option - Disable (suspend)ls_status_cmb_enable啟用Lesson status option - Enable (make active/unsuspend)ls_status_cmb_archive檔案櫃Lesson status option - Archivels_status_active_lbl已建立但尚未啟用Current status description if active (enabled)ls_status_disabled_lbl已經關閉Current status description if suspended (disabled)ls_status_archived_lbl已歸檔Current status description if archviedls_status_started_lbl已經啟用Current status description if started (enabled)ls_win_editclass_title編輯課程Edit class window titlels_win_learners_title檢視學習者View learners window titlemnu_view檢視Menu bar Viewls_win_editclass_save_btn儲存Save button on Edit Class popupls_win_editclass_cancel_btn取消Cancel button on Edit Class popupls_win_learners_close_btn結束Close button on View Learners popupls_win_editclass_organisation_lbl組織Heading for Organisation tree on Edit Class popupls_win_editclass_staff_lbl監視Heading for Staff list on Edit Class popupls_win_editclass_learners_lbl學習者Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl學習者於{0}: {1} Heading on View Learners window panel.td_desc_heading進階控制Todo tab description headingopt_activity_title選擇性活動Title for Optional Activity on canvas (monitoring)lbl_num_activities{0} - 活動Number of child activities for Complex activity shown on canvas.ls_of_texti.e. 1 of 10 Used for showing how many learners have startedls_manage_txt管理課程Heading for Management section of Lesson Tabgpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.td_goContribute_btn執行Go button on contribute entry itemlearner_exportPortfolio_btn輸出檔案Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lbl已排定時程Lesson status option - Scheduled (Not Started)stream_urlhttp://{0}foundation.org URL address for the application stream.ls_manage_learnerExpp_lbl啟動給學習者的檔案夾Label for Enable export portfolio for Learnerls_confirm_expp_enabled輸出檔案夾已經啟動給學習者Confirmation message on enabling export portfolio for learnersal_confirm_forcecomplete_toactivity你確認要強迫學習者'{0}'完活動'{1}'嗎?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedls_tasks_txt必要的工作項目Heading for Required Tasks (todo section of Lesson tab)ls_confirm_expp_disabled對學習者的輸出檔案夾已經關閉Confirmation message on disabling export portfolio for learnerstd_desc_text使用這個Todo標籤不是完編程列所必需的。更多資訊請看幫助頁面。這個特徵已完全功能化。Todo tab descriptional_error_forcecomplete_invalidactivity你已經將學習者'{0}'置於當前或已完成的活動'{1}'中了Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinish你確信你想強迫完成學習者'{0}'到課程結尾嗎?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notarget請安置學習者{0}瑜課程結束的活動中Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate已完成的學習者Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltip現在完成這個項目tool tip message for go button in required tasks list in lesson tabhelp_btn_tooltip幫助tool tip message for help button in toolbarrefresh_btn_tooltip重新載入最近的進度資料給學習者tool tip message for the refresh buttonls_manage_editclass_btn_tooltip編輯學習者的名單與此課程的監視視窗tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltip顯示此課程所有的學習者tool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltip根據下拉的選項改變課程的狀態tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusls_continue_action_lbl按下{0}去進行Action label displayed when a user can proceed to Live Edit.learner_exportPortfolio_btn_tooltip輸出此學習者的檔案夾並儲存於電腦中以未來參考tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencelbl_num_sequences{0} - 編程Number of child sequence or Optional Sequences activity shown on canvas.class_exportPortfolio_btn_tooltip輸出此課程的檔案夾並儲存於電腦中以供未來參考tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerls_manage_start_btn_tooltip送出tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltip安排課程起始在一個未來的時間tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltip請按兩下去檢視進行中的學習者的現在活動付出tool tip message for current activity iconcompleted_act_tooltip請按兩下去檢視學習者的完成活動進行中的付出tool tip message for completed activity iconal_doubleclick_todoactivity抱歉,學習者:{0}尚未達到這項活動:{1}alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstart日期未選定,請選擇一個日期與時間Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl時間(小時:分)Time fields title - Lesson details (manage section)al_activity_openContent_invalid對不起,在您右擊滑鼠選擇打開/編輯活動功能表之前,請選擇該活動。alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_default_txt輸入搜尋字串或頁碼The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msg請輸入搜尋字串或介於1和{0}頁碼This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg頁碼必須介於1和{0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0}沒有找到This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl頁面{0}的{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl啟動If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl目錄檢視When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.close_mc_tooltip最小話Tooltip message for close button on Branching canvas.al_confirm_forcecomplete_to_end_of_branching_seq你確定要強制學習者{0}結束該分支流程嗎?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq{0}不能被強制拖到不同分支或流程的活動中This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderation主導Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later稍後定義Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate許可閘門A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate同步閘門A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping選擇群組Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution付出Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate系統閘門A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_teacher_branching敎師選則分支A type of branching where the Teacher chooses which learners to add to each branch \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ar_JO_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizardDesc_1_lblالدليل ادناه يحتوي تصاميم لانشاء الدرس. اختر احداها والنقر عل زر التالي للاستمرار. Step 1 descriptioncancel_btnإلغاءCancel button to exit wizardal_cancelإلغاءCancel on alert dialogconfirmMsg_1_txt{0} لقد بدأ.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} قد جدول لـ {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} تم انشاءه و لكن لم يتم تشغيلهConclusion screen description if lesson created but not startedsummery_design_lblسلسلة:Label for summery heading of selected design field.al_validation_schstartلم يتم اختيار التاريخ،من فضلك اختر الوقت و التاريخ ،و انقر ابدأMessage when no date is selected starting a lesson by schedule.summery_title_lblعنوان:Label for summery heading of defined title.summery_desc_lblوصف:Label for summery heading of defined description.summery_course_lblمجموعة:Label for summery heading of selected course field.summery_class_lblمجموعة فرعية:Label for summery heading of selected class field.summery_staff_lblالموظفونLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblمتعلمون:Label for summery heading of number of selected learners in the lesson class.al_sendارسلOK on system error dialogal_validation_schtimeالرجاء إدخال وقت مقبولAlert message when user enters an invalid time for schedule startdate_lblالتاريخLabel for Schedule Date fieldtime_lblالوقت (الساعات : الدقائق)Label for Schedule Time fieldwizard_selAll_cb_lblإختر الكلّLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} متعلّمونGroup name for the class's learners group.wizard_learner_expp_cb_lblمكّن تصدير المعلومات الشخصية للمتعلّمLabel for Enable export portfolio for Learnerstaff_group_name{0} مراقبونGroup name for the class's staff group.addmore_btnأضف درسا آخراButton to add another lesson, return to first step.sys_error_msg_startلم تكن قادرا على إنشاء الدّرس.Common System error message starting linesys_error_msg_finishهل تريد ارسال تقرير بالخطأ ؟Common System error message finish paragraphsys_errorخطأ النظامSystem Error elert window titleprev_btn< سابقPrevious step buttonnext_btnتالي >Next step buttonfinish_btnالنهايةFinish button to complete wizardclose_btnاغلقClose button to close windowstart_btnإبدأ الآنStart button to start new lessontitle_lblالعنوانNew Lesson titledesc_lblالوصفNew Lesson descriptionlearner_lblمتعلمونHeading for list of class learnersstaff_lblمراقبونHeading for list of class staffschedule_cb_lblالجدولLabel for schedule checkboxsummery_lblالخلاصةHeading for summery outlinews_Rootالمجلد الرئيسيRoot folder title for workspacews_tree_mywspمساحة العملThe root level of the workspace treewizardTitle_1_lblاختر التصميمStep 1 screen titlewizardTitle_2_lblتفاصيل الدّرسStep 2 screen titlewizardTitle_3_lblخطوة 2 من 3: إختر المتعلّمين و المراقبينStep 3 screen titlewizardTitle_4_lblخطوة 3 من 3: أكّد تفاصيل الدّرسStep 4 screen titlewizardTitle_x_lblدرس: {0}Confirmation screen titleal_alertانذارGeneric title for Alert windowal_confirmأكّدTo Confirm title for LFErroral_okموافقOK on alert dialogal_validation_msg1يجب اختيار تصميم صحيحMessage when no design is selected on step 1al_validation_msg2العنوان حقل اجباري Message when title field is empty on Step 2al_validation_msg3_1لم يتم اختبار مادة أو درسMessage when no course/class is selected in Step 3al_validation_msg3_2يجب اختيار على الاقل طالب و مدرس Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblيمكنك اضافة الاسم و الوصف الذي تريد الطلاب أن يروه لهذه المادةStep 2 descriptionwizardDesc_3_lblيمكنك عدم اختيار الطلاب و الموظفين من الصف بعدم نقر المربع الملاصق لأسمائهمStep 3 descriptionwizardDesc_4_lblبالضغط على زر التشغيل يمكنك بدأ الدرس فورا وبرمجة الدرس ليبدأ في وقت و زمن محددين Step 4 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/cy_GB_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startNid oeddech yn gallu creu gwers.Common System error message starting linesys_error_msg_finishYdych chi eisiau anfon adroddiad gwall?Common System error message finish paragraphsys_errorGwall SystemSystem Error elert window titleprev_btn&lt; BlaenorolPrevious step buttonnext_btnNesaf &gt;Next step buttonfinish_btnDechrau yn y MonitorFinish button to complete wizardcancel_btnCansloCancel button to exit wizardclose_btnCauClose button to close windowstart_btnDechrau NawrStart button to start new lessontitle_lblTeitlNew Lesson titledesc_lblDisgrifiadNew Lesson descriptionlearner_lblDysgwyrHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblTrefnlenLabel for schedule checkboxsummery_lblCrynodebHeading for summery outlinews_RootGwraiddRoot folder title for workspacews_tree_mywspFy Lle GwaithThe root level of the workspace treewizardTitle_1_lblDewiswch y DilyniantStep 1 screen titlewizardTitle_2_lblManylion y WersStep 2 screen titlewizardTitle_3_lblDewiswch Fyfyrwyr a StaffStep 3 screen titlewizardTitle_4_lblCadarnhewch Fanylion y WersStep 4 screen titlewizardTitle_x_lblGwers: {0}Confirmation screen titleal_alertRhybuddGeneric title for Alert windowal_cancelCansloCancel on alert dialogal_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on alert dialogal_validation_msg1Rhaid dewis dilyniant dilys.Message when no design is selected on step 1al_validation_msg2Teitl yn faes gofynnol.Message when title field is empty on Step 2al_validation_msg3_1Dim cwrs neu ddosbarth wedi'i ddewis.Message when no course/class is selected in Step 3al_validation_msg3_2Rhaid cael o leiaf 1 aelod staff a dysgwr wedi'i ddewis.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblMae'r strwythur cyfeiriadur isod yn cynnwys y dilyniannu y gallwch eu creu ar gyfer gwers. Dewiswch un a chliciwch ar y botwm nesaf i barhau.Step 1 descriptionwizardDesc_2_lblGallwch ychwanegu'r enw a'r disgrifiad yr hoffech i'r myfyrwyr ei weld ar gyfer y wers hon.Step 2 descriptionwizardDesc_3_lblGallwch ddewis dad-ddewis myfyrwyr a staff o'r dosbarth hwn trwy ddad-dicio'r blwch wrth ochr eu henwau.Step 3 descriptionwizardDesc_4_lblTrwy wasgu ar y botwm Dechrau gallwch ddechrau’r wers yn syth. Hefyd, gallwch drefnu i'r wers ddechrau ar ddyddiad ac amser arbennig.Step 4 descriptionconfirmMsg_1_txt{0} wedi dechrau.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} wedi cael ei drefnu ar gyfer {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} wedi cael ei greu ond heb ei ddechrau eto.Conclusion screen description if lesson created but not startedal_validation_schstartDim dyddiad wedi'i ddewis. Dewiswch ddyddiad ac amser, yna cliciwch ar y botwm Trefnlen.Message when no date is selected starting a lesson by schedule.summery_design_lblDilyniant:Label for summery heading of selected design field.summery_title_lblTeitl:Label for summery heading of defined title.summery_desc_lblDisgrifiad:Label for summery heading of defined description.summery_course_lblGrŵp:Label for summery heading of selected course field.summery_class_lblIs-grŵp:Label for summery heading of selected class field.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblDysgwyr:Label for summery heading of number of selected learners in the lesson class.al_sendAnfonOK on system error dialogal_validation_schtimeRhowch amser dilys.Alert message when user enters an invalid time for schedule startdate_lblDyddiadLabel for Schedule Date fieldtime_lblAmser (Awr : Munud)Label for Schedule Time fieldwizard_selAll_cb_lblDewis PopethLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblGalluogi allforio portffolio i'r dysgwrLabel for Enable export portfolio for Learnerlearners_group_name{0} dysgwyrGroup name for the class's learners group.staff_group_name{0} staffGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/da_DK_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startDet lykkedes dig ikke at oprette en lektion.Common System error message starting linesys_error_msg_finishØnsker du at sende en fejlrapport?Common System error message finish paragraphsys_errorSystemfejlSystem Error elert window titleprev_btn< ForrigePrevious step buttonnext_btn> NæsteNext step buttonfinish_btnStart i MonitorFinish button to complete wizardcancel_btnAnnullérCancel button to exit wizardclose_btnLukClose button to close windowstart_btnStart nuStart button to start new lessontitle_lblTitelNew Lesson titledesc_lblBeskrivelseNew Lesson descriptionlearner_lblBrugereHeading for list of class learnersstaff_lblInstruktørerHeading for list of class staffschedule_cb_lblTidsplanLabel for schedule checkboxsummery_lblResuméHeading for summery outlinews_RootRodRoot folder title for workspacews_tree_mywspMit arbejdsområdeThe root level of the workspace treewizardTitle_1_lblVælg sekvensStep 1 screen titlewizardTitle_2_lblLektionsdetaljerStep 2 screen titlewizardTitle_3_lblVælg brugere og instruktørerStep 3 screen titlewizardTitle_4_lblBekræft lektionsdetaljerStep 4 screen titlewizardTitle_x_lbl{0}Confirmation screen titleal_alertNB!Generic title for Alert windowal_cancelAnnullérCancel on alert dialogal_confirmBekræftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Vælg et gyldigt designMessage when no design is selected on step 1al_validation_msg2Du skal skrive en titelMessage when title field is empty on Step 2al_validation_msg3_1Intet kursus og ingen klasse blev valgtMessage when no course/class is selected in Step 3al_validation_msg3_2Der skal vælges mindst én bruger og én instruktørMessage when either no staff/learner users are selected in Step 3.wizardDesc_1_lblMappestrukturen nedenfor indeholder de sekvenser, som du kan oprette lektioner med. Vælg ét og klik på "Næste" for at fortsætte.Step 1 descriptionwizardDesc_2_lblDu kan tilføje det navn og den beskrivelse, du ønsker brugerne skal se for denne lektion.Step 2 descriptionwizardDesc_3_lblDu kan fravælge brugere og instruktører fra denne klasse ved at fjerne markeringen i boksen ud for deres navne.Step 3 descriptionwizardDesc_4_lblVed at klikke på knappen "Start" kan du aktivere lektionen med det samme. Du kan også sætte lektionen til at starte på en bestemt dato og et bestemt tidspunkt.Step 4 descriptionconfirmMsg_1_txt{0} er startet.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} er fastsat til at starte {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} er oprettet, men er ikke startet endnu.Conclusion screen description if lesson created but not startedal_validation_schstartIngen dato blev valgt. Vælg en dato og et tidspunkt, og klik derefter på knappen "Skema".Message when no date is selected starting a lesson by schedule.summery_design_lblSekvensLabel for summery heading of selected design field.summery_title_lblTitelLabel for summery heading of defined title.summery_desc_lblBeskrivelseLabel for summery heading of defined description.summery_course_lblGruppeLabel for summery heading of selected course field.summery_class_lblUndergruppeLabel for summery heading of selected class field.summery_staff_lblInstruktørerLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblBrugereLabel for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogal_validation_schtimeAngiv et gyldigt tidspunktAlert message when user enters an invalid time for schedule startdate_lblDatoLabel for Schedule Date fieldtime_lblTid (timer : minutter)Label for Schedule Time fieldwizard_selAll_cb_lblVælg alleLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblSlå "Eksportér portfolio" til for brugereLabel for Enable export portfolio for Learnerlearners_group_name{0} brugereGroup name for the class's learners group.staff_group_name{0} stabGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/de_DE_dictionary.xml 12 Jan 2010 01:19:59 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startSie sind nicht berechtigt, eine Lektion anzulegen.Common System error message starting linesys_error_msg_finishWollen sie einen Fehlerbericht versenden?Common System error message finish paragraphsys_errorSystemfehlerSystem Error elert window titleprev_btn< ZurückPrevious step buttonnext_btnWeiter >Next step buttoncancel_btnAbbrechenCancel button to exit wizardclose_btnSchließenClose button to close windowtitle_lblTitelNew Lesson titledesc_lblBeschreibungNew Lesson descriptionlearner_lblTeilnehmer/innenHeading for list of class learnersstaff_lblTrainer/innenHeading for list of class staffschedule_cb_lblTerminLabel for schedule checkboxsummery_lblZusammenfassungHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMein ArbeitsplatzThe root level of the workspace treewizardTitle_2_lblDetails der LektionStep 2 screen titlewizardTitle_3_lblTeilnehmer/innen undf Trainer/innen auswählenStep 3 screen titlewizardTitle_4_lblDetails bestätigenStep 4 screen titlewizardTitle_x_lblLektion: {0}Confirmation screen titleal_alertHinweisGeneric title for Alert windowal_cancelAbbrechenCancel on alert dialogal_confirmBestätigenTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Titel ist ein Pflichtfeld.Message when title field is empty on Step 2al_validation_msg3_1Es wurde keine Klasse oder Kurs ausgewählt.Message when no course/class is selected in Step 3al_validation_msg3_2Es muß mindestens je ein/e Trainer/in und ein/e Teilnehmer/in ausgewählt werden.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblGeben Sie einen Namen und eine Beschreibung ein, die die Teilnehmer/innen sehen können.Step 2 descriptionwizardDesc_3_lblKlicken Sie auf die Box, um die jeweiligen Personen abzuwählen.Step 3 descriptionwizardDesc_4_lblMit dem Klick auf den Start-Button beginnen Sie die Lektion sofort. Sie können jedoch auch einen Termin für den Beginn festlegen.Step 4 descriptionconfirmMsg_1_txt{0} hat begonnen.Conclusion screen description if lesson startedconfirmMsg_2_txtDer Beginn von '{0}' wurde auf {1} festsetzt.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} wurde angelegt, aber noch nicht gestartet.Conclusion screen description if lesson created but not startedal_validation_schstartBisher wurde kein Termin ausgewählt. Tragen sie nun einen Termin ein und klicken Sie dann auf den 'Termin'-Button.Message when no date is selected starting a lesson by schedule.summery_title_lblTitel:Label for summery heading of defined title.summery_desc_lblBeschreibung:Label for summery heading of defined description.summery_staff_lblTrainer/innen:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblTeilnehmer/innen:Label for summery heading of number of selected learners in the lesson class.al_sendSendenOK on system error dialogdate_lblDatumLabel for Schedule Date fieldtime_lblZeit (Stunden:Minuten)Label for Schedule Time fieldal_validation_schtimeGeben Sie bitte eine gültige Zeit ein.Alert message when user enters an invalid time for schedule startwizardDesc_1_lblIn den Verzeichnissen sind Design enthalten, die Sie für eine Lektion verwenden können. Wählen Sie eine aus und klicken Sie auf den Button 'Weiter'.Step 1 descriptionsummery_design_lblSequenz:Label for summery heading of selected design field.summery_course_lblGruppe:Label for summery heading of selected course field.finish_btnBeobachtung startenFinish button to complete wizardstart_btnJetzt startenStart button to start new lessonwizardTitle_1_lblSequenz auswählenStep 1 screen titleal_validation_msg1Ein gültiges Design muß ausgewählt werden.Message when no design is selected on step 1summery_class_lblUntergruppe:Label for summery heading of selected class field.wizard_learner_expp_cb_lblPortfolioexport für Teilnehmer/innen deaktivierenLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblAlle auswählenLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} Teilnehmer/innenGroup name for the class's learners group.staff_group_name{0} Trainer/innenGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/el_GR_dictionary.xml 12 Jan 2010 01:19:59 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizard_selAll_cb_lblΕπιλογή όλωνLabel for select all check box used to select all staff or learner users in list.wizardTitle_3_lblΕπιλέξτε Εκπαιδευόμενους και ΕπόπτεςStep 3 screen titlestaff_lblΕπόπτεςHeading for list of class stafffinish_btnΕκκίνηση σε ΕποπτείαFinish button to complete wizardstart_btnΈναρξη ΤώραStart button to start new lessonconfirmMsg_1_txt{0} έχει αρχίσει.Conclusion screen description if lesson startedsummery_desc_lblΠεριγραφή:Label for summery heading of defined description.al_sendΑποστολήOK on system error dialogcancel_btnΑκύρωσηCancel button to exit wizarddesc_lblΠεριγραφήNew Lesson descriptional_cancelΑκύρωσηCancel on alert dialogal_confirmΕπιβεβαίωσηTo Confirm title for LFErroral_okΟΚOK on alert dialogwizard_learner_expp_cb_lblΕνεργ. Εξαγ. Φακ. Εργασ. ΕκπαιδευόμενωνLabel for Enable export portfolio for Learnerwizard_learner_enLiveEdit_cb_lblΕνεργοποίηση "Ζωντανής" Επεξεργασίαςwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblΜπορείτε να προσθέσετε το όνομα και την περιγραφή του μαθήματος που θα θέλατε να δουν οι σπουδαστές για το μάθημα αυτό. Step 2 descriptionwizardDesc_3_lblΜπορείτε να επιλέξετε/απο-επιλέξετε Εκπαιδευόμενους και Επόπτες από αυτή την τάξη επιλέγοντας/αποεπιλέγοντας το αντίστοιχο πλαίσιο δίπλα από τα ονόματά τους. Step 3 descriptionwizard_learner_enpres_cb_lblΠροβ. Συνδεδεμένων σε Εκπ.Checkbox label for presenceal_validation_schtimeΠαρακαλώ εισαγάγετε έναν έγκυρο χρόνο. Alert message when user enters an invalid time for schedule starttime_lblΧρόνος (Ώρες : Λεπτά)Label for Schedule Time fieldsummery_staff_lblΠροσωπικό: Label for summery heading of number of selected staff in the lesson class.ws_RootΡίζαRoot folder title for workspacesummery_design_lblΑκολουθία: Label for summery heading of selected design field.close_btnΚλείσιμοClose button to close windowwizardDesc_1_lblΗ παρακάτω δομή καταλόγου περιέχει τις ακολουθίες με τις οποίες μπορείτε να δημιουργήσετε ένα μάθημα. Επιλέξτε μία και πατήστε στο κουμπί "Επόμενο" για να συνεχίσετε. Step 1 descriptional_validation_msg3_2Πρέπει να είναι επιλεγμένοι τουλάχιστον ένα μέλος διδακτικού προσωπικού και ένας εκπαιδευόμενος. Message when either no staff/learner users are selected in Step 3.al_validation_msg2Ο Τίτλος είναι απαιτούμενο πεδίο.Message when title field is empty on Step 2staff_group_name{0} προσωπικόGroup name for the class's staff group.wizardTitle_2_lblΛεπτομέρειες μαθήματοςStep 2 screen titlewizardTitle_4_lblΕπιβεβαιώστε τις λεπτομέρειες του μαθήματοςStep 4 screen titlenext_btnΕπόμενο >Next step buttonsys_error_msg_finishΘέλετε να στείλετε μια αναφορά με τα λάθη;Common System error message finish paragraphws_tree_mywspΟ χώρος εργασίας μουThe root level of the workspace treesummery_class_lblΥποομάδα: Label for summery heading of selected class field.wizardTitle_1_lblΕπιλέξτε μία ακολουθίαStep 1 screen titlesys_error_msg_startΔεν μπορείτε να δημιουργήσετε ένα μάθημα. Common System error message starting lineconfirmMsg_3_txt{0} έχει δημιουργθεί αλλά δεν έχει αρχίσει ακόμη. Conclusion screen description if lesson created but not startedal_validation_msg1Πρέπει να επιλεχθεί μία έγκυρη σχεδίαση. Message when no design is selected on step 1summery_course_lblΟμάδα: Label for summery heading of selected course field.confirmMsg_2_txt{0} έχει προγραμματιστεί για {1}. Conclusion screen description if lesson scheduledal_validation_schstartΚαμία ημερομηνία δεν έχει επιλεγεί. Παρακαλώ επιλέξτε ημερομηνία και ώρα, και μετά πατήστε "Αρχή"Message when no date is selected starting a lesson by schedule.date_lblΗμερομηνίαLabel for Schedule Date fieldsys_errorΛάθος ΣυστήματοςSystem Error elert window titleprev_btn< ΠροηγούμενοPrevious step buttonwizardTitle_x_lblΜάθημα: {0}Confirmation screen titlesummery_learners_lblΕκπαιδευόμενοι: Label for summery heading of number of selected learners in the lesson class.al_validation_msg3_1Κανένα μάθημα ή τάξη δεν έχει επιλεgεί.Message when no course/class is selected in Step 3learners_group_name{0} εκπαιδευόμενοιGroup name for the class's learners group.title_lblΤίτλοςNew Lesson titlesummery_title_lblΤίτλος: Label for summery heading of defined title.learner_lblΕκπαιδευόμενοιHeading for list of class learnerswizardDesc_4_lblΜε το πάτημα του κουμπιού "ΈναρξηΤώρα" μπορείτε να αρχίσετε το μάθημα αμέσως. Μπορείτε επίσης να προγραμματίσετε την εκκίνηση του μαθήματος σε συγκεκριμένη ημερομηνία και ώρα. Step 4 descriptionwizard_splitLearners_LearnersPerLesson_lblΕκπαιδευόμενοι ανά μάθημαwizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_leanersInGroup_lblΕκπαιδευόμενοι σε αυτη την ομάδαwizard_splitLearners_leanersInGroup_lblal_alertΕιδοποίησηGeneric title for Alert windowwizard_splitLearners_splitSumShort{0} περιπτώσεις αυτού του μαθήματος με {1} εκπαιδευόμενους κατανεμημένους σε κάθε ένα από αυτά.Shorter split learners summarywizard_splitLearners_splitSum{0} περιπτώσεις αυτού του μαθήματος θα δημιουργηθούν και περίπου {1} εκπαιδευόμενοι θα κατανεμηθούν σε κάθε μάθημα.Split learners summaryconfirmMsg_4_txt{0} περιπτώσεις {1} έχουν αρχίσει. Conclusion screen description if starting several lessonssummery_lblΣύνοψηHeading for summery outlineaddmore_btnΠροσθήκη άλλου ΜαθήματοςButton to add another lesson, return to first step.schedule_cb_lblΠρογραμματισμός ΈναρξηςLabel for schedule checkboxwizard_splitLearners_cb_lblΘέλετε να χωρίσετε τους εκπαιδευόμενους σε ξεχωριστά αντίγραφα του μαθήματος;wizard_splitLearners_cb_lblwizard_wkspc_date_modified_lblΤελευταία τροποποίηση: (0)Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/en_AU_dictionary.xml 12 Jan 2010 01:19:53 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startYou were unable to create a lesson.Common System error message starting linesys_error_msg_finishDo you want to send an error report?Common System error message finish paragraphsys_errorSystem ErrorSystem Error elert window titleprev_btn&lt; PrevPrevious step buttonnext_btnNext &gt;Next step buttoncancel_btnCancelCancel button to exit wizardclose_btnCloseClose button to close windowtitle_lblTitleNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblLearnersHeading for list of class learnersschedule_cb_lblScheduleLabel for schedule checkboxws_RootRootRoot folder title for workspacews_tree_mywspMy WorkspaceThe root level of the workspace treewizardTitle_2_lblLesson DetailsStep 2 screen titlewizardTitle_x_lblLesson: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelCancelCancel on alert dialogal_confirmConfirmTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Title is a required field. Message when title field is empty on Step 2al_validation_msg3_1No course or class was selected. Message when no course/class is selected in Step 3confirmMsg_1_txt{0} has been started.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} has been created but has not been started yet.Conclusion screen description if lesson created but not startedsummery_title_lblTitle:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_learners_lblLearners:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogwizard_learner_expp_cb_lblEnable export portfolio for learnerLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSelect AllLabel for select all check box used to select all staff or learner users in list.al_validation_msg1A valid sequence must be selected.Message when no design is selected on step 1summery_design_lblSequence:Label for summery heading of selected design field.summery_course_lblGroup:Label for summery heading of selected course field.summery_class_lblSubgroup:Label for summery heading of selected class field.finish_btnStart in MonitorFinish button to complete wizardstart_btnStart NowStart button to start new lessonal_validation_schtimePlease enter a valid time.Alert message when user enters an invalid time for schedule startdate_lblDateLabel for Schedule Date fieldtime_lblTime (Hours : Minutes)Label for Schedule Time fieldal_validation_schstartNo date was selected. Please select a date and time, and then click Schedule button.Message when no date is selected starting a lesson by schedule.learners_group_name{0} learnersGroup name for the class's learners group.wizardDesc_1_lblClick on a folder below to open it to view available sequences. Select one and click on the Next button to continue.Step 1 descriptionwizardTitle_3_lblStep 2 of 3: Select Learners and MonitorsStep 3 screen titlewizardDesc_3_lblYou can select/unselect Learners and Monitors from this class by checking/unchecking the box next to their names.Step 3 descriptionwizardTitle_4_lblStep 3 of 3: Confirm Lesson detailsStep 4 screen titlewizardDesc_4_lblBy clicking on Start you can begin the lesson immediately. You can also schedule it to start at a particular date and time.Step 4 descriptionconfirmMsg_2_txt{0} has been scheduled to start on {1}.Conclusion screen description if lesson scheduledwizardTitle_1_lblStep 1 of 3: Select your SequenceStep 1 screen titlestaff_lblMonitorsHeading for list of class staffal_validation_msg3_2There must be at least 1 monitor member and learner selected.Message when either no staff/learner users are selected in Step 3.summery_staff_lblMonitors:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} monitorsGroup name for the class's staff group.addmore_btnAdd Another LessonButton to add another lesson, return to first step.summery_lblSummaryHeading for summery outlinewizard_splitLearners_leanersInGroup_lblLearners in this group:wizard_splitLearners_leanersInGroup_lblconfirmMsg_4_txt{0} instances of {1} have been started.Conclusion screen description if starting several lessonswizard_splitLearners_splitSum{0} instances of this lesson will be created and approximately {1} learners will be allocated to each lesson.Split learners summarywizard_splitLearners_splitSumShort{0} instances of this lesson with {1} learners allocated to eachShorter split learners summarywizard_splitLearners_LearnersPerLesson_lblLearners per lesson:wizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_cb_lblDo you want to split these learners into separate copies of this lesson? wizard_splitLearners_cb_lblwizard_learner_enLiveEdit_cb_lblEnable Live Editwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblYou can add the name and description you would like the learners to see for this lesson.Step 2 descriptionwizard_learner_enpres_cb_lblAllow Learners to see who is onlineCheckbox label for presencewizard_wkspc_date_modified_lblLast modified: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/en_dictionary.xml 12 Jan 2010 01:19:56 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startYou were unable to create a lesson.Common System error message starting linesys_error_msg_finishDo you want to send an error report?Common System error message finish paragraphsys_errorSystem ErrorSystem Error elert window titleprev_btn&lt; PrevPrevious step buttonnext_btnNext &gt;Next step buttoncancel_btnCancelCancel button to exit wizardclose_btnCloseClose button to close windowtitle_lblTitleNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblLearnersHeading for list of class learnersschedule_cb_lblScheduleLabel for schedule checkboxws_RootRootRoot folder title for workspacews_tree_mywspMy WorkspaceThe root level of the workspace treewizardTitle_2_lblLesson DetailsStep 2 screen titlewizardTitle_x_lblLesson: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelCancelCancel on alert dialogal_confirmConfirmTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Title is a required field. Message when title field is empty on Step 2al_validation_msg3_1No course or class was selected. Message when no course/class is selected in Step 3confirmMsg_1_txt{0} has been started.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} has been created but has not been started yet.Conclusion screen description if lesson created but not startedsummery_title_lblTitle:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_learners_lblLearners:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogwizard_learner_expp_cb_lblEnable export portfolio for learnerLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSelect AllLabel for select all check box used to select all staff or learner users in list.al_validation_msg1A valid sequence must be selected.Message when no design is selected on step 1summery_design_lblSequence:Label for summery heading of selected design field.summery_course_lblGroup:Label for summery heading of selected course field.summery_class_lblSubgroup:Label for summery heading of selected class field.finish_btnStart in MonitorFinish button to complete wizardstart_btnStart NowStart button to start new lessonal_validation_schtimePlease enter a valid time.Alert message when user enters an invalid time for schedule startdate_lblDateLabel for Schedule Date fieldtime_lblTime (Hours : Minutes)Label for Schedule Time fieldal_validation_schstartNo date was selected. Please select a date and time, and then click Schedule button.Message when no date is selected starting a lesson by schedule.learners_group_name{0} learnersGroup name for the class's learners group.wizardDesc_1_lblClick on a folder below to open it to view available sequences. Select one and click on the Next button to continue.Step 1 descriptionwizardTitle_3_lblStep 2 of 3: Select Learners and MonitorsStep 3 screen titlewizardDesc_3_lblYou can select/unselect Learners and Monitors from this class by checking/unchecking the box next to their names.Step 3 descriptionwizardTitle_4_lblStep 3 of 3: Confirm Lesson detailsStep 4 screen titlewizardDesc_4_lblBy clicking on Start you can begin the lesson immediately. You can also schedule it to start at a particular date and time.Step 4 descriptionconfirmMsg_2_txt{0} has been scheduled to start on {1}.Conclusion screen description if lesson scheduledwizardTitle_1_lblStep 1 of 3: Select your SequenceStep 1 screen titlestaff_lblMonitorsHeading for list of class staffal_validation_msg3_2There must be at least 1 monitor member and learner selected.Message when either no staff/learner users are selected in Step 3.summery_staff_lblMonitors:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} monitorsGroup name for the class's staff group.addmore_btnAdd Another LessonButton to add another lesson, return to first step.summery_lblSummaryHeading for summery outlinewizard_splitLearners_leanersInGroup_lblLearners in this group:wizard_splitLearners_leanersInGroup_lblconfirmMsg_4_txt{0} instances of {1} have been started.Conclusion screen description if starting several lessonswizard_splitLearners_splitSum{0} instances of this lesson will be created and approximately {1} learners will be allocated to each lesson.Split learners summarywizard_splitLearners_splitSumShort{0} instances of this lesson with {1} learners allocated to eachShorter split learners summarywizard_splitLearners_LearnersPerLesson_lblLearners per lesson:wizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_cb_lblDo you want to split these learners into separate copies of this lesson? wizard_splitLearners_cb_lblwizard_learner_enLiveEdit_cb_lblEnable Live Editwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblYou can add the name and description you would like the learners to see for this lesson.Step 2 descriptionwizard_learner_enpres_cb_lblAllow Learners to see who is onlineCheckbox label for presencewizard_wkspc_date_modified_lblLast modified: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/es_ES_dictionary.xml 12 Jan 2010 01:19:59 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3start_btnComenzar ahoraStart button to start new lessonsummery_design_lblSecuencia: Label for summery heading of selected design field.summery_course_lblGrupo:Label for summery heading of selected course field.sys_error_msg_startNo se pudo crear una lección.Common System error message starting linesys_error_msg_finish¿Desea enviar un reporte de error al servidor? Este reporte ayudará a los programadores a determinar el error.Common System error message finish paragraphsys_errorError de sistemaSystem Error elert window titleprev_btn< AnteriorPrevious step buttonnext_btnContinuar >Next step buttonsummery_class_lblSubgrupoLabel for summery heading of selected class field.cancel_btnCancelarCancel button to exit wizardclose_btnCerrarClose button to close windowtitle_lblTítuloNew Lesson titledesc_lblDescripciónNew Lesson descriptionlearner_lblEstudiantesHeading for list of class learnersstaff_lblTutoresHeading for list of class staffsummery_lblResúmenHeading for summery outlinews_RootRaizRoot folder title for workspacews_tree_mywspMi Espacio de TrabajoThe root level of the workspace treewizardTitle_2_lblDetalles de la LecciónStep 2 screen titlewizardTitle_3_lblSeleccione Estudiantes y TutoresStep 3 screen titlewizardTitle_4_lblConfirmar Detalles de LecciónStep 4 screen titlewizardTitle_x_lblLección: {0}Confirmation screen titleal_alertAtenciónGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2El título de la lección es necesario.Message when title field is empty on Step 2al_validation_msg3_1No se ha seleccionado curso o clase.Message when no course/class is selected in Step 3al_validation_msg3_2Debe haber por lo menos un tutor y estudiante seleccionadoMessage when either no staff/learner users are selected in Step 3.wizardDesc_2_lblAgrege el nombre y descripción deseado para esta lección. Este nombre será usado por los estudiantes para seleccionar la lección.Step 2 descriptionwizardDesc_3_lblDes-seleccionar a los estudiantes y tutores que no quiera incluir en esta lección.Step 3 descriptionwizardDesc_4_lblPuede empezar su lección en un tiempo determinado o presione en Comenzar para empezar su lección ahora mismo.Step 4 descriptionconfirmMsg_1_txtLa lección {0} ha sido iniciada. Conclusion screen description if lesson startedconfirmMsg_2_txtLa lección {0} comenzará en {1}. Conclusion screen description if lesson scheduledconfirmMsg_3_txtLa lección {0} ha sido creada pero no ha comenzado todavía. Conclusion screen description if lesson created but not startedsummery_title_lblTítulo: Label for summery heading of defined title.summery_desc_lblDescripción: Label for summery heading of defined description.al_validation_schstartNo se ha seleccionado fecha. Por favor seleccione la fecha y la hora, luego pulse el botón PlanMessage when no date is selected starting a lesson by schedule.summery_staff_lblTutores:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblEstudiantes:Label for summery heading of number of selected learners in the lesson class.al_sendEnviarOK on system error dialogwizardTitle_1_lblSeleccione la secuenciaStep 1 screen titleal_validation_msg1Se debe seleccionar una secuencia válidaMessage when no design is selected on step 1wizardDesc_1_lblLa estructura de directorios contiene las secuencias que usted puede utilizar para crear una lección. Seleccione una y pulse en el siguiente botón para continuar.Step 1 descriptionwizard_learner_expp_cb_lblActivar Portfolio Export para estudiantesLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSeleccionar todosLabel for select all check box used to select all staff or learner users in list.al_validation_schtimeLa hora entrada no es válida.Alert message when user enters an invalid time for schedule startdate_lblFechaLabel for Schedule Date fieldtime_lblHora (horas : minutos)Label for Schedule Time fieldlearners_group_name{0} estudiantesGroup name for the class's learners group.staff_group_name{0} tutoresGroup name for the class's staff group.addmore_btnAgregar una nueva lecciónButton to add another lesson, return to first step.finish_btnEmpezar en SeguimientoFinish button to complete wizardwizard_learner_enpres_cb_lblPermitir ver que alumnos estan onlineCheckbox label for presencewizard_splitLearners_splitSum{0} copias de esta lección serán creadas y aproximadamente {1} estudiantes serán incluidos en cada lección.Split learners summarywizard_splitLearners_splitSumShort{0} copias de la lección con {1} estudiantes en cada unaShorter split learners summaryconfirmMsg_4_txt{0} copias de {1} has sido comenzadas.Conclusion screen description if starting several lessonswizard_splitLearners_cb_lbl¿Desea dividir a los estudiantes generando varias copiasde la misma lección?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblEstudiantes en este grupowizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblEstudiantes por lecciónwizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblHabilitar Edición en Vivowizard_learner_enLiveEdit_cb_lblschedule_cb_lblComenzar en fecha específicaLabel for schedule checkboxwizard_wkspc_date_modified_lblÚltimo cambio: {0} Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/fr_FR_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3start_btnCommencer maintenantStart button to start new lessonwizardTitle_1_lblChoisir la séquenceStep 1 screen titleal_validation_msg1Une séquence valide doit être sélectionnée.Message when no design is selected on step 1wizardDesc_1_lblLa structure des dossiers ci-dessous contient les séquences pour lesquelles vous pouvez créer une leçon. Choisissez-en un et cliquez sut le bouton Suivant pour continuer.Step 1 descriptionfinish_btnDébuter en mode supervisionFinish button to complete wizardsummery_design_lblSéquence:Label for summery heading of selected design field.summery_course_lblGroupe:Label for summery heading of selected course field.summery_class_lblSousgroupe:Label for summery heading of selected class field.learners_group_nameapprenantsGroup name for the class's learners group.wizard_selAll_cb_lblSélectionner toutLabel for select all check box used to select all staff or learner users in list.staff_group_nameencadrantsGroup name for the class's staff group.wizard_learner_expp_cb_lblAutorise l'exportation pour l'apprenantLabel for Enable export portfolio for LearnerwizardDesc_2_lblVous pouvez ajouter le nom et la description que les étudiants verront pour cette leçon.Step 2 descriptionaddmore_btnAjouter une leçonButton to add another lesson, return to first step.confirmMsg_1_txt{0} a commencé.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} a été planifié pour {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} a été créé but n'a pas encore commencé.Conclusion screen description if lesson created but not startedsummery_title_lblTitre:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_staff_lblEnseignant(s):Label for summery heading of number of selected staff in the lesson class.summery_learners_lblApprenants:Label for summery heading of number of selected learners in the lesson class.al_sendEnvoyerOK on system error dialogdate_lblDateLabel for Schedule Date fieldtime_lblTemps (Heures : Minutes)Label for Schedule Time fieldal_validation_schtimeVeuillez entrer une heure valide.Alert message when user enters an invalid time for schedule startwizardDesc_4_lblVous pouvez commencer la leçon tout de suite en cliquant sur le bouton Début. Vous pouvez aussi planifier une heure de début pour cette leçon.Step 4 descriptional_validation_schstartAucune date sélectionnée. Veuillez choisir un jour et une heure, puis cliquer sur le bouton HoraireMessage when no date is selected starting a lesson by schedule.sys_error_msg_startIl n'a pas été possible de créer la leçon.Common System error message starting linesys_error_msg_finishVoulez-vous envoyer un rapport d'erreur?Common System error message finish paragraphsys_errorErreur systèmeSystem Error elert window titleprev_btn< Préc.Previous step buttonnext_btnSuiv. >Next step buttoncancel_btnAbandonnerCancel button to exit wizardclose_btnFermerClose button to close windowtitle_lblTitreNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblApprenantsHeading for list of class learnersstaff_lblEnseignantsHeading for list of class staffschedule_cb_lblHoraireLabel for schedule checkboxsummery_lblRésuméHeading for summery outlinews_RootRacineRoot folder title for workspacews_tree_mywspMon Espace de travailThe root level of the workspace treewizardTitle_2_lblDétails de la leçonStep 2 screen titlewizardTitle_4_lblConfirmez les détails de la leçonStep 4 screen titlewizardTitle_x_lblLeçon: {0}Confirmation screen titleal_alertAvertissementGeneric title for Alert windowal_cancelAbandonnerCancel on alert dialogal_confirmConfirmerTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Le titre est un champ obligatoire.Message when title field is empty on Step 2al_validation_msg3_1Ni classe ni cours n'ont été sélectionnés.Message when no course/class is selected in Step 3wizard_learner_enpres_cb_lblActiver le contrôle de présenceCheckbox label for presencewizardTitle_3_lblChoisissez les étudiants et les moniteurs (superviseurs)Step 3 screen titleal_validation_msg3_2Il doit y avoir au moins un moniteur (superviseur) et un apprenant sélectionnés.Message when either no staff/learner users are selected in Step 3.wizardDesc_3_lblVous pouvez choisir de désélectionner étudiants et moniteurs de cette classe en décochant les boîtes près de leur nom.Step 3 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/hu_HU_dictionary.xml 12 Jan 2010 01:19:59 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3desc_lblLeírásNew Lesson descriptionsummery_design_lblTervezés:Label for summery heading of selected design field.summery_title_lblCím:Label for summery heading of defined title.summery_desc_lblLeírás:Label for summery heading of defined description.summery_course_lblKurzus:Label for summery heading of selected course field.summery_class_lblOsztály:Label for summery heading of selected class field.summery_staff_lblMunkatársak:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblTamulók:Label for summery heading of number of selected learners in the lesson class.al_sendKüldésOK on system error dialogdate_lblDátumLabel for Schedule Date fieldtime_lblIdő (óra : perc)Label for Schedule Time fieldal_validation_schtimeKérem, írja be az érvényes időt!Alert message when user enters an invalid time for schedule startlearner_lblTanulókHeading for list of class learnerssys_error_msg_finishKívánja elküldeni a hibajelentést?Common System error message finish paragraphsys_errorRendszerhibaSystem Error elert window titleprev_btn< ElőzőPrevious step buttonnext_btnKövetkező >Next step buttonfinish_btnVégeFinish button to complete wizardcancel_btnMégseCancel button to exit wizardclose_btnBezárásClose button to close windowstart_btnKezdés és befejezésStart button to start new lessontitle_lblCímNew Lesson titlestaff_lblSzemélyekHeading for list of class staffschedule_cb_lblÜtemezésLabel for schedule checkboxsummery_lblÖsszefoglalóHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspAz én munkaterületemThe root level of the workspace treewizardTitle_2_lblA lecke részleteiStep 2 screen titlewizardTitle_3_lblHallgatók és személyek kiválasztásaStep 3 screen titlewizardTitle_4_lblA lecke részleteinek jóváhagyásaStep 4 screen titlewizardTitle_x_lblLecke {0}Confirmation screen titleal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseCancel on alert dialogal_confirmJóváhagyásTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2A cím kötelező mezőMessage when title field is empty on Step 2confirmMsg_1_txt{0} elindultConclusion screen description if lesson startedwizard_learner_expp_cb_lblEngedélyezi a diák portfóloójának exportálásátLabel for Enable export portfolio for Learnersys_error_msg_startNem tudta létrerhozni a leckét.Common System error message starting lineal_validation_msg3_1Nem választott kurzust vagy osztályt.Message when no course/class is selected in Step 3al_validation_msg3_2Legalább egy munkatársat és egy tanulót kell választania.Message when either no staff/learner users are selected in Step 3.wizardTitle_1_lblVálasszon jelenetet!Step 1 screen titleal_validation_msg1Egy érvényes jelenetet kell választania.Message when no design is selected on step 1wizardDesc_1_lblAz alábbi könyvtárszerkezet tartalmazza azokat a jeleneteket, melyekhez leckét készíthet. Válasszon egyet közülük, majd a folytatáshoz kattintson a Tovább gombra!Step 1 descriptionwizardDesc_2_lbl Ha szeretné, hogy a diákok nevet és leírást lássanak ehhez a leckéhez, itt megadhatja ezeket.Step 2 descriptionwizardDesc_3_lblTörölheti diákok vagy munkatársak kiválasztását ennél az osztálynál, ha üresen hagyja a nevük melletti jelölőnégyzetet.Step 3 descriptionwizardDesc_4_lblA Start gomb lenyomásával azonnal elindíthatja ezt a leckét. Ütemezheti is a leckét, hogy egy bizonyos dátum adott időpontjában induljon.Step 4 descriptionconfirmMsg_2_txtA {0} ütemezése ekkorra: {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txtA {0} létrehozása megtörtént, de elindítva még nincs.Conclusion screen description if lesson created but not startedal_validation_schstartNem választott dátumot. Kérem, válasszon dátumot és időpontot, mielőtt az Ütemezés gombra kattint!Message when no date is selected starting a lesson by schedule.wizard_selAll_cb_lblMindent kiválasztLabel for select all check box used to select all staff or learner users in list.learners_group_nameA tanulók száma: {0}Group name for the class's learners group.staff_group_nameA munkatársak száma: {0}Group name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/it_IT_dictionary.xml 12 Jan 2010 01:19:57 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3finish_btnInizia in MonitorFinish button to complete wizardal_validation_msg1Occorre selezionare una sequenza valida.Message when no design is selected on step 1summery_design_lblSequenza:Label for summery heading of selected design field.summery_course_lblGruppo:Label for summery heading of selected course field.summery_class_lblSottogruppo:Label for summery heading of selected class field.wizard_selAll_cb_lblSeleziona TuttoLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblConsenti Esporta Portfolio per lo studenteLabel for Enable export portfolio for Learnerstart_btnInizia oraStart button to start new lessonwizardTitle_1_lblSeleziona la sequenzaStep 1 screen titleal_validation_schstartNessuna data è stata selezionata. Scegli la data e l'ora, quindi clicca su Programma.Message when no date is selected starting a lesson by schedule.staff_group_name{0} staffGroup name for the class's staff group.wizardTitle_4_lblConferma dettagli lezioneStep 4 screen titleal_validation_msg2Occorre inserire il Titolo della lezione.Message when title field is empty on Step 2sys_error_msg_startNon è stato possibile creare una lezione.Common System error message starting linesys_error_msg_finishVuoi inviare un report di questo errore?Common System error message finish paragraphsys_errorErrore di SistemaSystem Error elert window titleprev_btn<PrecedentePrevious step buttonnext_btnSuccessivo>Next step buttoncancel_btnAnnullaCancel button to exit wizardclose_btnChiudiClose button to close windowtitle_lblTitoloNew Lesson titledesc_lblDescrizioneNew Lesson descriptionlearner_lblStudentiHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblProgrammaLabel for schedule checkboxsummery_lblSommarioHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspLa mia Area di lavoroThe root level of the workspace treewizardTitle_2_lblDettagli sulla LezioneStep 2 screen titlewizardTitle_3_lblScegli Studenti e StaffStep 3 screen titlewizardTitle_x_lblLezione: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelAnnullaCancel on alert dialogal_confirmConfermaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg3_1Non è stato scelto alcun corso o classe.Message when no course/class is selected in Step 3al_validation_msg3_2Occorre scegliere almeno un membro di staff e uno studente.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblPuoi aggiungere il nome e la descrizione che gli studenti utilizzeranno per questa lezione.Step 2 descriptionwizardDesc_3_lblDeseleziona studenti e staff che non vuoi includere in questa lezione.Step 3 descriptionwizardDesc_4_lblPremendo il pulsante Inizia puoi cominciare subito la lezione. Puoi anche programmare l'inizio della lezione per una particolare data e ora.Step 4 descriptionconfirmMsg_1_txt{0} è iniziataConclusion screen description if lesson startedconfirmMsg_2_txt{0} è stata programmata per {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}è stata creata ma non è ancora iniziata.Conclusion screen description if lesson created but not startedsummery_title_lblTitolo:Label for summery heading of defined title.summery_desc_lblDescrizione:Label for summery heading of defined description.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblStudenti:Label for summery heading of number of selected learners in the lesson class.al_sendInviaOK on system error dialoglearners_group_name{0} studentiGroup name for the class's learners group.wizardDesc_1_lblLa seguente directory contiene le sequenze per le quali puoi creare una lezione. Scegline una e clicca sul pulsante Successivo per continuare.Step 1 descriptiondate_lblDataLabel for Schedule Date fieldtime_lblTempo (Ore : Minuti)Label for Schedule Time fieldal_validation_schtimeInserisci un valore valido per il tempo, prego.Alert message when user enters an invalid time for schedule startaddmore_btnAggiungi un'altra lezioneButton to add another lesson, return to first step.wizard_learner_enpres_cb_lblConsenti agli studenti di vedere chi è on lineCheckbox label for presencewizard_splitLearners_cb_lblVuoi dividere questi studenti in copie separate di questa lezione?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblStudenti in questo gruppo:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblStudenti per lezione:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblAbilita modifica livewizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSumSaranno create {0} istanze di questa lezione e circa {1} studenti saranno assegnati a ogni lezione. Split learners summarywizard_splitLearners_splitSumShort{0} istanze di questa lezione con {1} studenti assegnati a ciascunaShorter split learners summaryconfirmMsg_4_txt{0} istanze di {1} sono cominciate.Conclusion screen description if starting several lessons \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ja_JP_dictionary.xml 12 Jan 2010 01:19:58 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3summery_learners_lbl学習者:Label for summery heading of number of selected learners in the lesson class.al_send送信OK on system error dialogal_validation_schtime正しい時刻を入力してください。Alert message when user enters an invalid time for schedule startdate_lbl日付Label for Schedule Date fieldtime_lbl時刻 (時 : 分)Label for Schedule Time fieldwizard_selAll_cb_lblすべて選択Label for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl学習者によるポートフォリオのエクスポートを許可しますLabel for Enable export portfolio for Learnerlearners_group_name{0} 学習者Group name for the class's learners group.al_validation_msg2タイトルが必要です。Message when title field is empty on Step 2sys_error_msg_startレッスンの作成に失敗しました。Common System error message starting linesys_error_msg_finishエラーレポートを送信しますか?Common System error message finish paragraphsys_errorシステムエラーSystem Error elert window titleprev_btn< 前へPrevious step buttonnext_btn次へ >Next step buttonfinish_btnモニタの開始Finish button to complete wizardcancel_btnキャンセルCancel button to exit wizardclose_btn閉じるClose button to close windowstart_btnすぐに開始Start button to start new lessontitle_lblタイトルNew Lesson titledesc_lbl説明New Lesson descriptionlearner_lbl学習者Heading for list of class learnersschedule_cb_lblスケジュールLabel for schedule checkboxsummery_lbl要約Heading for summery outlinews_RootルートRoot folder title for workspacews_tree_mywspワークスペースThe root level of the workspace treewizardTitle_1_lblシーケンス選択Step 1 screen titlewizardTitle_2_lblレッスンの詳細Step 2 screen titlewizardTitle_3_lbl学習者とスタッフの選択Step 3 screen titlewizardTitle_4_lblレッスンの詳細確認Step 4 screen titlewizardTitle_x_lblレッスン: {0}Confirmation screen titleal_alert警告Generic title for Alert windowal_cancelキャンセルCancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1有効なシーケンスを選択してください。Message when no design is selected on step 1al_validation_msg3_1コースかグループが選択されていません。Message when no course/class is selected in Step 3al_validation_msg3_2スタッフか学習者を、少なくとも 1 人は選択する必要があります。Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lbl下のディレクトリにはレッスンの作成に利用できるシーケンスが存在します。1 つ選択して 次へ をクリックしてください。Step 1 descriptionwizardDesc_2_lbl学習者に参照して欲しいレッスン名と説明をつけ加えることができます。Step 2 descriptionwizardDesc_3_lbl学習者やスタッフの名前の横にあるチェックを消すと、このクラスから外すことができます。Step 3 descriptionconfirmMsg_1_txt{0} は開始されました。Conclusion screen description if lesson startedconfirmMsg_3_txt{0} は作成されましたが、まだ開始していません。Conclusion screen description if lesson created but not startedal_validation_schstart日付が選択されていません。日時を指定して スケジュール ボタンをクリックしてください。Message when no date is selected starting a lesson by schedule.summery_design_lblシーケンス:Label for summery heading of selected design field.summery_title_lblタイトル:Label for summery heading of defined title.summery_desc_lbl説明:Label for summery heading of defined description.summery_course_lblグループ:Label for summery heading of selected course field.summery_class_lblサブグループ:Label for summery heading of selected class field.summery_staff_lblスタッフ:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} スタッフGroup name for the class's staff group.staff_lblスタッフHeading for list of class staffconfirmMsg_2_txt{0} は {1} に開始する予定です。Conclusion screen description if lesson scheduledwizardDesc_4_lbl開始 ボタンをクリックすると、すぐにレッスンを開始できます。もしくは、レッスン開始日時を指定して実行することもできます。Step 4 descriptionaddmore_btn別のレッスンを追加Button to add another lesson, return to first step. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ko_KR_dictionary.xml 12 Jan 2010 01:19:56 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3addmore_btn레슨 추가Button to add another lesson, return to first step.sys_error_msg_start당신은 강좌를 생성할 수 없습니다.Common System error message starting linesys_error_msg_finish오류 보고서를 보내기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error elert window titleprev_btn<이전Previous step buttonnext_btn다음>Next step buttoncancel_btn취소Cancel button to exit wizardclose_btn닫기Close button to close windowtitle_lbl제목`New Lesson titledesc_lbl설명New Lesson descriptionlearner_lbl학습자들Heading for list of class learnersstaff_lbl교수자Heading for list of class staffschedule_cb_lbl일정Label for schedule checkboxsummery_lbl요약Heading for summery outlinews_Root최상위 폴더Root folder title for workspacews_tree_mywsp내 작업공간The root level of the workspace treewizardTitle_2_lbl과목 상세Step 2 screen titlewizardTitle_3_lbl학습자과 교수자 선택Step 3 screen titlewizardTitle_4_lbl과정 상세 확인Step 4 screen titlewizardTitle_x_lbl과정:{0}Confirmation screen titleal_alert주의Generic title for Alert windowal_cancel취소Cancel on alert dialogal_confirm확인To Confirm title for LFErroral_validation_msg2제목은 필요한 항목입니다.Message when title field is empty on Step 2al_validation_msg3_1과정 혹은 분반이 선택되지 않았습니다.Message when no course/class is selected in Step 3al_validation_msg3_2최소한 1명의 교수자와 학습자가 선택되어야만 합니다.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lbl이 강좌에서 학습자들이 볼 수 있도록 이름과 설명을 추가할 수 있습니다.Step 2 descriptionwizardDesc_3_lbl당신은 학습자나 교수자의 이름 옆에 있는 박스에 채크를 해지 함으로써 이 분반에서 학습자나 교수자를 선택해제 할수 있습니다.Step 3 descriptionwizardDesc_4_lbl시작버튼을 클릭해서 강좌를 시작할 수 있습니다. 또는 정해진 일시에 강좌가 시작될 수 있도록 일정을 잡을 수 있습니다.Step 4 descriptionconfirmMsg_1_txt{0} 가 시작되었습니다.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} 은 {1}로 일정이 정해져 있습니다.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}은 생성되었지만 시작되지 않았습니다.Conclusion screen description if lesson created but not startedsummery_title_lbl제목Label for summery heading of defined title.summery_desc_lbl설명Label for summery heading of defined description.summery_staff_lbl교수자Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl학습자Label for summery heading of number of selected learners in the lesson class.al_send보내기OK on system error dialogwizard_learner_expp_cb_lbl학습자에 대한 포트폴리오 내보내기 활성화Label for Enable export portfolio for LearnerwizardDesc_1_lbl다음 디렉토리 구조는 학습을 위해서 생성할 수 있는 학습설계를 포함하고 있습니다. 계속하기 위해서는 하나를 선택한 후 다음버튼을 클릭하세요.Step 1 descriptional_validation_schstart아무 날짜가 선택되지 않았습니다. 날짜와 시간을 선택한 다음 예약일정버튼을 클릭하세요.Message when no date is selected starting a lesson by schedule.summery_design_lbl시퀀스Label for summery heading of selected design field.summery_course_lbl그룹Label for summery heading of selected course field.summery_class_lbl하위그룹Label for summery heading of selected class field.wizard_selAll_cb_lbl모두 선택Label for select all check box used to select all staff or learner users in list.finish_btn모니터에서 시작Finish button to complete wizardstart_btn지금 시작Start button to start new lessonwizardTitle_1_lbl시퀀스 선택Step 1 screen titleal_validation_msg1올바른 시퀀스를 선택해야 합니다.Message when no design is selected on step 1learners_group_name{0} 학습자들Group name for the class's learners group.staff_group_name{0} 스태프Group name for the class's staff group.al_ok확인OK on alert dialogal_validation_schtime올바른 시간을 입력하세요.Alert message when user enters an invalid time for schedule startdate_lbl날짜Label for Schedule Date fieldtime_lbl시간(시:분)Label for Schedule Time field \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/mi_NZ_dictionary.xml 12 Jan 2010 01:19:55 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀEOK on alert dialogal_cancelWhakakoreCancel on alert dialogcancel_btnWhakakoreCancel button to exit wizardlearners_group_name{0} ākongaGroup name for the class's learners group.staff_group_name{0} kaiakoGroup name for the class's staff group.summery_class_lblRōpū ā-Roto:Label for summery heading of selected class field.wizard_selAll_cb_lblTīpako te KatoaLabel for select all check box used to select all staff or learner users in list.ws_RootWhaiaronga IomatuaRoot folder title for workspacesummery_title_lblTaitaraLabel for summery heading of defined title.summery_desc_lblWhakamāramaLabel for summery heading of defined description.summery_course_lblRōpūLabel for summery heading of selected course field.summery_learners_lblĀkongaLabel for summery heading of number of selected learners in the lesson class.al_sendTukunaOK on system error dialogdate_lblTe RāLabel for Schedule Date fieldtime_lblTe Wā (Hāora: Miniti)Label for Schedule Time fieldal_validation_schtimeTapiritia te wā.Alert message when user enters an invalid time for schedule startsys_error_msg_startKāore i tāea e koe te whakarite akoranga.Common System error message starting linesys_error_msg_finishKei te pīrangi ki te tuku pūrongo hapa?Common System error message finish paragraphsys_errorHapa PūnahaSystem Error elert window titleprev_btn< ki muriPrevious step buttonfinish_btnTimataria ki AroturukiFinish button to complete wizardclose_btnKatiaClose button to close windowstart_btnTimatariaStart button to start new lessontitle_lblTaitaraNew Lesson titledesc_lblWhakamāramaNew Lesson descriptionlearner_lblĀkongaHeading for list of class learnersstaff_lblKaiakoHeading for list of class staffschedule_cb_lblWhakaritengaLabel for schedule checkboxsummery_lblWhakarāpopotongaHeading for summery outlinews_tree_mywspTāku PapamahiThe root level of the workspace treewizardTitle_1_lblKōwhiria te AkorangaStep 1 screen titlewizardTitle_2_lblTaipitopito AkorangaStep 2 screen titlewizardTitle_3_lblKōwhiria ngā Ākonga me ngā KaiakoStep 3 screen titlewizardTitle_4_lblWhakatūturutia ngā Taipitopito AkorangaStep 4 screen titlewizardTitle_x_lblAkoranga: {0}Confirmation screen titleal_alertKia MatohiGeneric title for Alert windowal_confirmWhakatūturutiaTo Confirm title for LFErroral_validation_msg1Kōwhiria he hoahoatanga tūturu.Message when no design is selected on step 1al_validation_msg2He pūmautanga tō te āpure Taitara.Message when title field is empty on Step 2al_validation_msg3_1Kāhore i kōwhiri akoranga, ākonga rānei.Message when no course/class is selected in Step 3wizardDesc_2_lblKa taea te tāpiri i te ingoa me te whakaahuatanga o te akoranga e hiahia ana koe kia kite ngā ākonga. Step 2 descriptionwizardDesc_4_lblMā te pāwhiri i te pātene Tīmata ka timata wawe tonu te akoranga. Ka taea hoki te whakarite kia tīmataria te akoranga i tētehi rā, i tētahi wā ake hoki.Step 4 descriptionconfirmMsg_1_txt{0} i tīmatariaConclusion screen description if lesson startedconfirmMsg_2_txt{0} i whakaritea mō {1}Conclusion screen description if lesson scheduledal_validation_schstartKāore tētehi rā i kōwhiria. Kōwhiria koa tētehi rā me tētehi wā, ka pāwhiri ai i te Tīmata. Message when no date is selected starting a lesson by schedule.summery_design_lblAkorangaLabel for summery heading of selected design field.wizard_wkspc_date_modified_lblkētanga mutunga: {0}Shows the last modified datetime for a Learning Design.addmore_btnTāpiri AkorangaButton to add another lesson, return to first step.al_validation_msg3_2Kōwhiria kia kotahi te kaiako, ākonga hoki i te itinga rawa.Message when either no staff/learner users are selected in Step 3.wizard_learner_expp_cb_lblWhakaaetia te kawe kōpaki atu mō ngā ākongaLabel for Enable export portfolio for LearnerconfirmMsg_3_txt{0} i hangaia ēngari kāhore anō kia tīmatariaConclusion screen description if lesson created but not startednext_btnki mua >Next step buttonwizardDesc_3_lblKa taea te whakakore ākonga me ngā kaiako i tēnei akoranga mā te whakawātea i te pouaka taki i te taha o ngā ingoa.Step 3 descriptionwizardDesc_1_lblKa noho ngā hoahoatanga hei hanga akoranga ki te hanganga whaiaronga i raro nei. Kōwhiria tētehi, ka pāwhiri ai i te patene ka whai ake kia haere tonu atu.Step 1 descriptionsummery_staff_lblAroturuki:Label for summery heading of number of selected staff in the lesson class.wizard_learner_enpres_cb_lblTukuna ngā ākonga kia kite ko wai kua tuihono maiCheckbox label for presencewizard_splitLearners_cb_lblKa tino pīrangi ki te wehewehe i ēnei ākonga ki ngā tāruatanga motuahake o tēnei akoranga?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblĀkonga i roto i tēnei rōpū:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblTapeke ākonga i tēnei akoranga:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblWhakahohe Whakatikanga i Tēnei Wā Tonuwizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSumka hangaia {0} ngā tauira o tēnei akoranga me te tohatoha pea i te {1} ākonga ki ia akoranga Split learners summarywizard_splitLearners_splitSumShortka hangaia {0} ngā tauira o tēnei akoranga me te tohatoha i te {1} ākonga ki ia akoranga Shorter split learners summaryconfirmMsg_4_txtkua tīmataria {0} ngā tauira o te {1}. Conclusion screen description if starting several lessons \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ms_MY_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startAnda tidak boleh mencipta kelasCommon System error message starting linesys_error_msg_finishAdakah anda mahu menghantar laporan ralat?Common System error message finish paragraphsys_errorRalat SistemSystem Error elert window titleprev_btn< BelakangPrevious step buttonnext_btnHapadan >Next step buttonfinish_btnMula di PaparanFinish button to complete wizardcancel_btnBatalCancel button to exit wizardclose_btnTutupClose button to close windowstart_btnMula SekarangStart button to start new lessontitle_lblTajukNew Lesson titledesc_lblDeskripsiNew Lesson descriptionlearner_lblPelajarHeading for list of class learnersstaff_lblStafHeading for list of class staffschedule_cb_lblJadualLabel for schedule checkboxsummery_lblRingkasanHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspRuang kerja SayaThe root level of the workspace treewizardTitle_1_lblPilih TurutanStep 1 screen titlewizardTitle_2_lblPerincian KelasStep 2 screen titlewizardTitle_3_lblPilih Pelajar dan StafStep 3 screen titlewizardTitle_4_lblSahkan Perincian KelasStep 4 screen titlewizardTitle_x_lblKelas {0}Confirmation screen titleal_alertAletGeneric title for Alert windowal_cancelBatalCancel on alert dialogal_confirmTerimaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Turutan sah mesti dipilihMessage when no design is selected on step 1al_validation_msg2Tajuk adalah ruangan perluMessage when title field is empty on Step 2al_validation_msg3_1Tiada kursus atau kelas dipilih.Message when no course/class is selected in Step 3al_validation_msg3_2Mesti terdapat sekurang-kurangnya 1 ahli staf dan pelajar dipilih.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblAnda boleh menambah nama dan diskripsi yang mahu dipaparkan kepada pelajar untuk kelasi ini.Step 2 descriptionwizardDesc_3_lblAnda boleh memilih untuk tidak memilih pelajar dan staf dari kelas ini dengan tidak menanda box di sebelah nama mereka.Step 3 descriptionconfirmMsg_1_txt{0} telah bermula.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} telah di jadualkan untuk {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} telah di cipta tetapi belum bermula lagi.Conclusion screen description if lesson created but not startedal_validation_schstartTiada tarik dipilih. Sila pilih tarikh dan masa, dan klik butang Jadual.Message when no date is selected starting a lesson by schedule.summery_design_lblTurutan:Label for summery heading of selected design field.summery_title_lblTajuk:Label for summery heading of defined title.summery_desc_lblDiskripsi:Label for summery heading of defined description.summery_course_lblKumpulan:Label for summery heading of selected course field.summery_class_lblSub kumpulan:Label for summery heading of selected class field.summery_staff_lblStaf:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblPelajar:Label for summery heading of number of selected learners in the lesson class.al_sendKirimOK on system error dialogal_validation_schtimeSila masukkan masa yang sah.Alert message when user enters an invalid time for schedule startdate_lblTarikhLabel for Schedule Date fieldtime_lblMasa (Jam : Minit)Label for Schedule Time fieldwizard_selAll_cb_lblPilih SemuaLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblBenarkan eksport portfolio untuk pelajarLabel for Enable export portfolio for Learnerlearners_group_name{0} pelajarGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.wizardDesc_4_lblDengan menekan butang Mula anda boleh terus memulakan kelas. Anda juga boleh menjadualkan kelas untuk bermula pada tarikh dan masa tertentu.Step 4 descriptionwizardDesc_1_lblStruktur direktori di bawah mengandungi turutan yang membenarkan anda membuat kelas. Pilih satu dan klik pada butang hadapan untuk sambung.Step 1 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/nl_BE_dictionary.xml 12 Jan 2010 01:19:56 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startHet is niet gelukt om een les te creëren.Common System error message starting linesys_error_msg_finishWil je een foutenrapport verzenden ?Common System error message finish paragraphsys_errorSteemfoutSystem Error elert window titleprev_btn< VorigePrevious step buttonnext_btnVolgende >Next step buttoncancel_btnAnnuleerCancel button to exit wizardclose_btnSluitenClose button to close windowtitle_lblTitelNew Lesson titledesc_lblOmschrijvingNew Lesson descriptionlearner_lblLeerlingenHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblSchemaLabel for schedule checkboxsummery_lblSamenvattingHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMijn WerkruimteThe root level of the workspace treewizardTitle_2_lblDetails van de lesStep 2 screen titlewizardTitle_3_lblKies leerlingen en staffStep 3 screen titlewizardTitle_4_lblBevestig details van de lesStep 4 screen titlewizardTitle_x_lblLes {0}Confirmation screen titleal_alertWaarschuwingGeneric title for Alert windowal_cancelAnnuleerCancel on alert dialogal_confirmBevestigTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Titel is een verplicht veld.Message when title field is empty on Step 2al_validation_msg3_1Er werd geen cursus of klas aangeduid.Message when no course/class is selected in Step 3al_validation_msg3_2Er moet ten minste 1 stafflid en leerling worden aangeduid.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblJe kan een naam en omschrijving toevoegen die de leerlingen voor deze les te zien krijgen.Step 2 descriptionwizardDesc_3_lblJe kan leerlingen en staff uit deze klas verwijderen de checkbox bij hun naam leeg te maken.Step 3 descriptionwizardDesc_4_lblDoor op de startknop te drukken kan je deze les nu beginnen. Je kan ook plannen om de les te starten op bepaalde dag en tijd.Step 4 descriptionconfirmMsg_1_txt{0} is gestart.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} is gepland voor {1} .Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} werd aangemaakt, maar is nog niet gestart.Conclusion screen description if lesson created but not startedal_validation_schstartEr werd nog geen tijdstip aangeduid. Kies een datum en tijd, en klik op start.Message when no date is selected starting a lesson by schedule.summery_design_lblOntwerp:Label for summery heading of selected design field.summery_title_lblTital:Label for summery heading of defined title.summery_desc_lblOmschrijving:Label for summery heading of defined description.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblLeerlingen:Label for summery heading of number of selected learners in the lesson class.al_sendVerzendenOK on system error dialogfinish_btnStart in monitorFinish button to complete wizardstart_btnNu startenStart button to start new lessonwizardTitle_1_lblKies een sequentieStep 1 screen titleal_validation_msg1Kies een geldige sequentie.Message when no design is selected on step 1wizardDesc_1_lblDe mappenstructuur hieronder bevat de sequenties waarvan je een les kan maken. Kies er een en klik op "volgende" om verder te gaan.Step 1 descriptionwizard_learner_expp_cb_lblExport van student-portfolio mogelijk makenLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblAlles selecterenLabel for select all check box used to select all staff or learner users in list.date_lblDatumLabel for Schedule Date fieldtime_lblTijd (uren : minuten)Label for Schedule Time fieldal_validation_schtimeVoer een geldige tijd in.Alert message when user enters an invalid time for schedule startlearners_group_name{0} studentenGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.summery_course_lblGroep:Label for summery heading of selected course field.summery_class_lblSubgroep:Label for summery heading of selected class field. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/no_NO_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizardTitle_1_lblSteg 1 av 3: Velg leksjonStep 1 screen titlewizard_learner_expp_cb_lblTilkobl eksport av mapper for studentenLabel for Enable export portfolio for Learnersummery_design_lblSekvens:Label for summery heading of selected design field.summery_course_lblGruppe:Label for summery heading of selected course field.wizardTitle_4_lblSteg 3 av 3: Bekreft detaljene til denne leksjonenStep 4 screen titlestart_btnStart nåStart button to start new lessonwizard_selAll_cb_lblVelg alleLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} studenterGroup name for the class's learners group.al_validation_msg1En gyldig sekvens må velges.Message when no design is selected on step 1summery_class_lblUndergruppe:Label for summery heading of selected class field.confirmMsg_2_txt{0} har blitt planlagt for å starte den {1}.Conclusion screen description if lesson scheduledal_validation_schtimeVennligst angi et gyldig tidspunkt.Alert message when user enters an invalid time for schedule startwizardTitle_x_lblLeksjon: {0}Confirmation screen titleconfirmMsg_1_txt{0} har blitt startet.Conclusion screen description if lesson startedwizardTitle_3_lblSteg 2 av 3: Velg studenter og forelesereStep 3 screen titlefinish_btnStart i kontrollmodusFinish button to complete wizardwizardDesc_1_lblKlikk på en mappe for å se på innholdet. Velg en sekvens og klikk på "Neste" for å fortsette.Step 1 descriptional_validation_msg3_2Det må minimum velges en foreleser og en student.Message when either no staff/learner users are selected in Step 3.wizardDesc_3_lblDu kan velge å legge til/fjerne studenter og forelesere fra denne klassen ved å klikke i ruten ved siden av navnet deres.Step 3 descriptionwizardDesc_2_lblDu kan legge til navn og beskrivelse av den leksjon som du ønsker at studentene skal se.Step 2 descriptionwizardDesc_4_lblVelger du start knappen så starter leksjonen umiddelbart. Du kan også starte leksjonen på et bestemt tidspunkt. Step 4 descriptionconfirmMsg_3_txt{0} har blitt opprettet, men ennå ikke startet.Conclusion screen description if lesson created but not startedal_validation_schstartDet er ikke valgt en dato. Vennligst velg dato og tid og klikk deretter på start.Message when no date is selected starting a lesson by schedule.summery_title_lblTittel:Label for summery heading of defined title.summery_desc_lblBeskrivelse:Label for summery heading of defined description.summery_learners_lblStudenter:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogdate_lblDatoLabel for Schedule Date fieldtime_lblTidspunkt (Timer:Minutter)Label for Schedule Time fieldsys_error_msg_startDu klarte ikke å lage en leksjon.Common System error message starting linesys_error_msg_finishØnsker du å sende en feilrapport ?Common System error message finish paragraphsys_errorFeilSystem Error elert window titleprev_btn<ForrigePrevious step buttonnext_btnNeste>Next step buttoncancel_btnAngreCancel button to exit wizardclose_btnStengClose button to close windowtitle_lblTittelNew Lesson titledesc_lblBeskrivelseNew Lesson descriptionlearner_lblStudenter:Heading for list of class learnersschedule_cb_lblTidsplanLabel for schedule checkboxsummery_lblOppsummeringHeading for summery outlinews_RootRotRoot folder title for workspacews_tree_mywspMitt arbeidsområdeThe root level of the workspace treewizardTitle_2_lblLeksjon detaljerStep 2 screen titleal_cancelAngreCancel on alert dialogal_confirmBekreftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Tittel må fylles ut.Message when title field is empty on Step 2al_validation_msg3_1Ingen kurs eller klasse er valgt.Message when no course/class is selected in Step 3staff_group_name{0} forelesereGroup name for the class's staff group.summery_staff_lblForelesere:Label for summery heading of number of selected staff in the lesson class.staff_lblForelesereHeading for list of class staffal_alertVarselGeneric title for Alert windowaddmore_btnLegg til en ny leksjonButton to add another lesson, return to first step.wizard_learner_enpres_cb_lblKobl til leksjonCheckbox label for presencewizard_splitLearners_cb_lblVil du dele studente inn til egne kopier av leksjonen ?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblStudenter i denne gruppenwizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblStudenter pr leksjonwizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblKoble inn aktiv redigeringwizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSum{0}tilfelle av denne leksjonen vil bli opprettet og omtrent {1}studenter vil bli tilordnet til hver leksjon.Split learners summarywizard_splitLearners_splitSumShort{0} tilfelle av denne leksjonen med {1} studenter tilordnet til hverShorter split learners summaryconfirmMsg_4_txt{0} tilfelle av {1} har blitt startet.Conclusion screen description if starting several lessonswizard_wkspc_date_modified_lblSist modifisert: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/pl_PL_dictionary.xml 12 Jan 2010 01:19:59 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startNie udało się utworzyć lekcji.Common System error message starting linesys_error_msg_finishCzy chcesz wysłać raport o błędach?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titleprev_btnWsteczPrevious step buttonnext_btnDalejNext step buttonfinish_btnStartFinish button to complete wizardcancel_btnAnulujCancel button to exit wizardclose_btnZakończClose button to close windowstart_btnStartStart button to start new lessontitle_lblTytułNew Lesson titledesc_lblOpisNew Lesson descriptionlearner_lblStudenciHeading for list of class learnersstaff_lblProwadzącyHeading for list of class staffschedule_cb_lblPlan zajęćLabel for schedule checkboxsummery_lblPodsumowanieHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMoje ProjektyThe root level of the workspace treewizardTitle_1_lblWybierz projektStep 1 screen titlewizardTitle_2_lblSzczegóły lekcjiStep 2 screen titlewizardTitle_3_lblWybierz studentów i prowadzącychStep 3 screen titlewizardTitle_4_lblPotwierdź szczegóły lekcjiStep 4 screen titlewizardTitle_x_lblLekcja: {0}Confirmation screen titleal_alertUwagaGeneric title for Alert windowal_cancelAnulujCancel on alert dialogal_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Należy wybrać prawidłowy projektMessage when no design is selected on step 1al_validation_msg2Wymagane jest pole tytułuMessage when title field is empty on Step 2al_validation_msg3_1Żaden kurs ani klasa nie zostały wybraneMessage when no course/class is selected in Step 3al_validation_msg3_2Musi być przynajmniej jeden prowadzący i student wybrany.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblKatalogi zawierają projekty, z których możesz utworzyć lekcję. Wybierz projekt i wciśnij Dalej aby kontynuowaćStep 1 descriptionwizardDesc_2_lblMożesz dodać nazwę i opis lekcji, które bedą widoczne dla studentówStep 2 descriptionwizardDesc_3_lblMożesz wyłączyć studentów i prowadzących klikając na pola wyboru obok ich nazwiskStep 3 descriptionwizardDesc_4_lblMożesz uruchomić lekcję natychmiast poprzez wciśnięcie przysisku Start. Możesz także wybrać dokładną date i godzinę rozpoczęcia lekcjiStep 4 descriptionconfirmMsg_1_txt{0} została uruchomionaConclusion screen description if lesson startedconfirmMsg_2_txt{0} została zaplanowana na {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} została utworzona ale nie uruchomionaConclusion screen description if lesson created but not startedal_validation_schstartNie została wybrana żadna data. Proszę wybierz date i czas, następnie naciśnij start.Message when no date is selected starting a lesson by schedule.summery_design_lblProjektLabel for summery heading of selected design field.summery_title_lblTytuł:Label for summery heading of defined title.summery_desc_lblOpis:Label for summery heading of defined description.summery_course_lblKurs:Label for summery heading of selected course field.summery_class_lblKlasa:Label for summery heading of selected class field.summery_staff_lblProwadzący:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblStudenci:Label for summery heading of number of selected learners in the lesson class.al_sendWysłaneOK on system error dialogal_validation_schtimeWprowadź poprawny forma czasuAlert message when user enters an invalid time for schedule startdate_lblDataLabel for Schedule Date fieldtime_lblCzas (Godziny : Minuty)Label for Schedule Time fieldwizard_selAll_cb_lblZaznacz wszystkoLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblUmożliwia studentom eksport portfolioLabel for Enable export portfolio for Learnerlearners_group_name{0} studentówGroup name for the class's learners group.staff_group_name{0} kadraGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/pt_BR_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startVocê não está habilitado para criar a lição.Common System error message starting linesys_error_msg_finishVocê quer enviar um relatório de erro?Common System error message finish paragraphsys_errorErro de sistemaSystem Error elert window titleprev_btn&lt; AnteriorPrevious step buttonnext_btnPróximo &gt;Next step buttonfinish_btnTerminarFinish button to complete wizardcancel_btnCancelarCancel button to exit wizardclose_btnFecharClose button to close windowstart_btnIniciar agoraStart button to start new lessontitle_lblTítuloNew Lesson titledesc_lblDescriçãoNew Lesson descriptionlearner_lblAlunosHeading for list of class learnersstaff_lblCorpo DocenteHeading for list of class staffschedule_cb_lblAgendaLabel for schedule checkboxsummery_lblSumárioHeading for summery outlinews_RootRaizRoot folder title for workspacews_tree_mywspMeu Espaço de TrabalhoThe root level of the workspace treewizardTitle_1_lblSelecione a sequênciaStep 1 screen titlewizardTitle_2_lblDetalhes da LiçãoStep 2 screen titlewizardTitle_3_lblSelecione os Alunos e Corpo DocenteStep 3 screen titlewizardTitle_4_lblConfirme os Detalhes da LiçãoStep 4 screen titlewizardTitle_x_lblLição: {0}Confirmation screen titleal_alertAlertaGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Uma sequência válida deve ser selecionadaMessage when no design is selected on step 1al_validation_msg2Título é um campo obrigatórioMessage when title field is empty on Step 2al_validation_msg3_1Nenhum curso ou classe foram selecionados.Message when no course/class is selected in Step 3al_validation_msg3_2Deve haver pelo menos 1 membro do corpo docente e um aluno selecionado.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblA estrutura de pastas abaixo contém as sequências que você pode criar para uma lição. Selecione uma e clique no botão próximo para continuar.Step 1 descriptionwizardDesc_2_lblVocê pode adicionar o nome e a descrição que você que os estudantes vejam para essa lição.Step 2 descriptionwizardDesc_3_lblVocê pode tirar a seleção dos estudantes e docentes desta classe clicando no box próximo aos seus respectivos nomes.Step 3 descriptionwizardDesc_4_lblPressionando o botão Iniciar você pode começar a lição imediatamente. Você também pode agendar a lição para iniciar em uma data e horário em particular.Step 4 descriptionconfirmMsg_1_txt{0} foi iniciada.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} foi agendada para {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} foi criada, mas ainda não foi iniciada.Conclusion screen description if lesson created but not startedal_validation_schstartNenhuma data foi selecionada. Favor selecionar a data e o tempo, e então clicar no botão Agenda.Message when no date is selected starting a lesson by schedule.summery_design_lblSequência:Label for summery heading of selected design field.summery_title_lblTítuloLabel for summery heading of defined title.summery_desc_lblDescriçãoLabel for summery heading of defined description.summery_course_lblGrupo:Label for summery heading of selected course field.summery_class_lblSub-grupoLabel for summery heading of selected class field.summery_staff_lblCorpo DocenteLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblEstudantesLabel for summery heading of number of selected learners in the lesson class.al_sendEnviarOK on system error dialogal_validation_schtimeFavor digitar um valor (tempo) válido.Alert message when user enters an invalid time for schedule startdate_lblDataLabel for Schedule Date fieldtime_lblTempo (Horas : Minutos)Label for Schedule Time fieldwizard_selAll_cb_lblSelecionar todosLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblhabilita exportação do portfólio para alunosLabel for Enable export portfolio for Learnerlearners_group_name{0} alunosGroup name for the class's learners group.staff_group_name{0} pessoalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/ru_RU_dictionary.xml 12 Jan 2010 01:19:55 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3finish_btnНачать в режиме "Монитор"Finish button to complete wizardsummery_class_lblПодгруппа:Label for summery heading of selected class field.summery_course_lblГруппа:Label for summery heading of selected course field.summery_design_lblПоследовательность:Label for summery heading of selected design field.start_btnНачать сейчасStart button to start new lessonwizardTitle_x_lblУрок: {0}Confirmation screen titleal_alertОповещениеGeneric title for Alert windowal_cancelОтменитьCancel on alert dialogal_confirmПодтвердитьTo Confirm title for LFErroral_validation_msg2Название необходимого поля.Message when title field is empty on Step 2confirmMsg_1_txt{0} был начат.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} был создан, но ещё не начат.Conclusion screen description if lesson created but not startedsummery_title_lblЗаголовок:Label for summery heading of defined title.summery_desc_lblОписание:Label for summery heading of defined description.summery_learners_lblСтуденты:Label for summery heading of number of selected learners in the lesson class.al_sendОтправитьOK on system error dialogdate_lblДатаLabel for Schedule Date fieldtime_lblВремя (Часы : Минуты)Label for Schedule Time fieldal_validation_schtimeПожалуйста введите корректное время.Alert message when user enters an invalid time for schedule startnext_btnДалее &qt;Next step buttonprev_btn&lt; НазадPrevious step buttonsys_errorСистемная ошибкаSystem Error elert window titlecancel_btnОтменитьCancel button to exit wizardclose_btnЗакрытьClose button to close windowtitle_lblЗаголовокNew Lesson titledesc_lblОписаниеNew Lesson descriptionlearner_lblУченикиHeading for list of class learnersschedule_cb_lblРасписаниеLabel for schedule checkboxsummery_lblЛетоHeading for summery outlinews_RootКорневая директорияRoot folder title for workspacews_tree_mywspМоя рабочая областьThe root level of the workspace treewizardTitle_2_lblДетали урокаStep 2 screen titleal_validation_msg1Должна быть выбрана доступная последовательность.Message when no design is selected on step 1wizard_selAll_cb_lblВыбрать всёLabel for select all check box used to select all staff or learner users in list.wizardDesc_1_lblДревовидная структура ниже содержит проекты, для которых Вы можете создать урок. Выберите один из них и нажмите "Далее", для продолжения.Step 1 descriptionwizardTitle_3_lblВыберите студентов и сотрудниковStep 3 screen titleal_validation_msg3_1Не были выбраны курсы или классы.Message when no course/class is selected in Step 3al_validation_msg3_2Должен быть выбран по крайней мере один сотрудник и ученик.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblВы можете добавить название и описание для этого урока, те, которые Вы хотели бы, чтобы видели студенты.Step 2 descriptionwizardDesc_3_lblВы можете исключить студентов и сотрудников из этого класса, убрав отменку о их включении рядом с их именами.Step 3 descriptionwizardDesc_4_lblНажав на кнопке "Начать" Вы можете начать урок немедленно. Вы можете также создать расписание, чтобы начать урок в конкретное число и время.Step 4 descriptional_validation_schstartНе была выбрана дата. Пожалуйста выберите дату и время, а затем нажмите кнопку "Расписание".Message when no date is selected starting a lesson by schedule.sys_error_msg_startВы не могли создать урок.Common System error message starting linesys_error_msg_finishВы хотите отправить сообщение об ошибке?Common System error message finish paragraphwizardTitle_1_lblВыберите последовательностьStep 1 screen titlewizard_learner_expp_cb_lblРазрешить ученикам экпорт портфолиоLabel for Enable export portfolio for Learnerlearners_group_name{0} учениковGroup name for the class's learners group.staff_group_name{0} сотрудниковGroup name for the class's staff group.summery_staff_lblСотрудники:Label for summery heading of number of selected staff in the lesson class.staff_lblСотрудникиHeading for list of class staffwizardTitle_4_lblПодтвердите детали урокаStep 4 screen titleconfirmMsg_2_txt{0} было запланировано на {1}.Conclusion screen description if lesson scheduledal_okОКOK on alert dialog \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/sv_SE_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startDu kunde inte skapa någon lektion.Common System error message starting linesys_error_msg_finishVill du skicka en felrapport?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titleprev_btn<FöregåendePrevious step buttonnext_btnNästa>Next step buttonfinish_btnAvslutaFinish button to complete wizardcancel_btnAvbrytCancel button to exit wizardclose_btnStängClose button to close windowstart_btnStarta och avslutaStart button to start new lessontitle_lblTitelNew Lesson titledesc_lblBeskrivningNew Lesson descriptionlearner_lblLärandeHeading for list of class learnersstaff_lblPersonalHeading for list of class staffschedule_cb_lblSchemaLabel for schedule checkboxsummery_lblSammanfattningHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMin arbetsytaThe root level of the workspace treewizardTitle_1_lblVälj designStep 1 screen titlewizardTitle_2_lblDetaljer om lektionStep 2 screen titlewizardTitle_3_lblVälj lärande och personalStep 3 screen titlewizardTitle_4_lblBekräfta detaljer om lektionStep 4 screen titlewizardTitle_x_lblLektion {0}Confirmation screen titleal_alertPåminnelseGeneric title for Alert windowal_cancelAvbrytCancel on alert dialogal_confirmBekräftaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Du måste välja en giltig design. Message when no design is selected on step 1al_validation_msg2Titel är ett obligatoriskt fält.Message when title field is empty on Step 2al_validation_msg3_1Ingen kurs eller klass har valts. Message when no course/class is selected in Step 3al_validation_msg3_2Du måste välja åtminstone en medlem av personalen och en lärande. Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblDen nedanstående strukturen för katalog innehåller de designer som du kan använda för att skapa en lektion. Välj en och klicka på knappen Nästa för att fortsätta. Step 1 descriptionwizardDesc_2_lblDu kan lägga till det namn och den beskrivning för den här lektionen som du vill att de lärande ska se. Step 2 descriptionwizardDesc_3_lblDu kan välja att ta bort lärande och personal från den här klassen genom att avmarkera rutan intill deras namn. Step 3 descriptionwizardDesc_4_lblGenom att trycka på knappen Start kan du påbörja lektionen genast. Du kan också schemalägga lektionen så att den ska starta på ett specifikt datum och tid. Step 4 descriptionconfirmMsg_1_txt{0} har påbörjats.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} har schemalagts för {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} har skapats med har inte påbörjats ännu.Conclusion screen description if lesson created but not startedal_validation_schstartDu valde inget datum. Var snäll och välj ett datum och en tid, klicka sedan på start. Message when no date is selected starting a lesson by schedule.summery_design_lblDesign:Label for summery heading of selected design field.summery_title_lblTitel:Label for summery heading of defined title.summery_desc_lblBeskrivning:Label for summery heading of defined description.summery_course_lblKurs:Label for summery heading of selected course field.summery_class_lblKlass:Label for summery heading of selected class field.summery_staff_lblPersonal:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblLärande:Label for summery heading of number of selected learners in the lesson class.al_sendSkickaOK on system error dialogal_validation_schtimeVar snäll och mata in en giltig tidAlert message when user enters an invalid time for schedule startdate_lblDatumLabel for Schedule Date fieldtime_lblTid (Timmar: Minuter)Label for Schedule Time fieldwizard_selAll_cb_lblMarkera alltLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl Aktivera export av portfolio för lärandeLabel for Enable export portfolio for Learnerlearners_group_name{0} lärandeGroup name for the class's learners group.staff_group_name{0} personalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/tr_TR_dictionary.xml 12 Jan 2010 01:19:59 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_cancelİptalCancel on alert dialogwizardTitle_1_lblBasamak 1/3: Sıralamanızı seçinStep 1 screen titlewizardTitle_2_lblDers ayrıntılarıStep 2 screen titlewizardTitle_3_lblBasamak 2/3: Öğrencileri ve izlemeyi seçStep 3 screen titlewizardTitle_4_lblBasamak 3/3: Ders ayrıntılarını onaylaStep 4 screen titlewizardTitle_x_lblDers: {0}Confirmation screen titleal_validation_msg1Geçerli bir sıralama seçilmelidir.Message when no design is selected on step 1wizardDesc_3_lblİzleyici ve öğrencilerin adlarının yanında bulunan seçim kutularını işaretleyerek seçebilir veya işareti kaldırarak seçimi kaldırabilirsiniz.Step 3 descriptional_validation_msg2Başlık doldurulması gereken alanlardandır.Message when title field is empty on Step 2wizard_learner_expp_cb_lblPortfolyo dışa aktarmayı etkinleştir.Label for Enable export portfolio for Learnersys_error_msg_startDers yaratma işlemi başarılamadı.Common System error message starting linesys_error_msg_finishHata raporu göndermek istiyor musunuz?Common System error message finish paragraphsys_errorSistem hatasıSystem Error elert window titleprev_btn<ÖncekiPrevious step buttonnext_btnSonraki>Next step buttonclose_btnKapatClose button to close windowstart_btnŞİmdi başlatStart button to start new lessontitle_lblBaşlıkNew Lesson titlelearner_lblÖğrencilerHeading for list of class learnersschedule_cb_lblTakvimLabel for schedule checkboxws_tree_mywspÇalışma alanımThe root level of the workspace treeal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorsummery_course_lblGrupLabel for summery heading of selected course field.summery_class_lblAlt grupLabel for summery heading of selected class field.summery_learners_lblÖğrencilerLabel for summery heading of number of selected learners in the lesson class.al_sendGönderOK on system error dialogdate_lblTarihLabel for Schedule Date fieldwizard_selAll_cb_lblTümünü seçLabel for select all check box used to select all staff or learner users in list.ws_RootAna dizinRoot folder title for workspacecancel_btnİptalCancel button to exit wizardal_validation_msg3_1Herhangi bir ders veya sınıf seçilmedi.Message when no course/class is selected in Step 3confirmMsg_1_txt{0} başlatıldı.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} {1} tarihinde başlatılmak üzere ayarlandı.Conclusion screen description if lesson scheduledsummery_design_lblSıralamaLabel for summery heading of selected design field.summery_title_lblBaşlıkLabel for summery heading of defined title.time_lblZaman (Saat: Dakika)Label for Schedule Time fieldal_validation_schtimeLütfen geçerli bir zaman giriniz.Alert message when user enters an invalid time for schedule startlearners_group_name{0} öğrenciGroup name for the class's learners group.addmore_btnBaşka bir ders ekleButton to add another lesson, return to first step.al_validation_msg3_2En az 1 izleme üyesi ve öğrenci seçilmeliMessage when either no staff/learner users are selected in Step 3.summery_staff_lblİzleyenlerLabel for summery heading of number of selected staff in the lesson class.staff_group_name{0} izleyiciGroup name for the class's staff group.confirmMsg_3_txt{0} oluşturuldu ancak henüz başlatılmadıConclusion screen description if lesson created but not startedwizardDesc_4_lblBaşlat butonuna basarak dersi hemen başlatabilirsiniz. Ayrıca dersi belirlenen zamanda başlatmak için takvimi ayarlayabilirsiniz.Step 4 descriptional_validation_schstartTarih seçilmedi. Lütfen tarih ve zaman seçiniz ve Takvim butonuna tıklayınız.Message when no date is selected starting a lesson by schedule.staff_lblİzleyenlerHeading for list of class staffsummery_lblÖzetHeading for summery outlinefinish_btnBaşlatFinish button to complete wizardal_okTamamOK on alert dialogdesc_lblAçıklamaNew Lesson descriptionwizardDesc_2_lblBu dersi görecek öğrenciler için bir isim ve açıklama ekleyebilirsiniz.Step 2 descriptionsummery_desc_lblAçıklamaLabel for summery heading of defined description.wizard_learner_enpres_cb_lblÖğrencilerin çevrimiçi kişileri görmesine izin ver.Checkbox label for presencewizard_splitLearners_leanersInGroup_lblBu gruptaki öğrencileri:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblDers başına düşen öğrenci:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblGerçek zamanlı düzenlemeyi geçerli kıl.wizard_learner_enLiveEdit_cb_lblwizard_splitLearners_cb_lblÖğrencilerin dersin farklı kopyalarına bölmek istiyor musunuz?wizard_splitLearners_cb_lblconfirmMsg_4_txt-Conclusion screen description if starting several lessonswizard_splitLearners_splitSum-Split learners summarywizard_splitLearners_splitSumShort-Shorter split learners summarywizardDesc_1_lblMevcut akışları açmak ve görüntülemek için aşağıdaki dosyayı tıklayınız. Birini seçip devam etmek için ileri butonuna tıklayınız.Step 1 description \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/vi_VN_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startBạn không thể tạo bài họcCommon System error message starting linesys_error_msg_finishBạn có muốn gửi báo cáo lỗi không?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titleprev_btn< TrướcPrevious step buttonnext_btnSau >Next step buttonfinish_btnBắt đầu màn hìnhFinish button to complete wizardcancel_btnHủy bỏCancel button to exit wizardclose_btnĐóngClose button to close windowstart_btnBắt đầuStart button to start new lessontitle_lblTiêu đềNew Lesson titledesc_lblMô tảNew Lesson descriptionlearner_lblCác học viênHeading for list of class learnersstaff_lblGiáo viênHeading for list of class staffschedule_cb_lblBảng kế hoạchLabel for schedule checkboxsummery_lblMùa hèHeading for summery outlinews_RootGốcRoot folder title for workspacews_tree_mywspKhông gian làm việc của tôiThe root level of the workspace treewizardTitle_1_lblLựa chọn bối cảnhStep 1 screen titlewizardTitle_2_lblChi tiết bài họcStep 2 screen titlewizardTitle_3_lblLựa chọn sinh viên và giáo viênStep 3 screen titlewizardTitle_4_lblXác nhận chi tiết bài họcStep 4 screen titlewizardTitle_x_lblBài học: {0} Confirmation screen titleal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏCancel on alert dialogal_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on alert dialogal_validation_msg1Bố cảnh có hiệu lực phải được lựa chọn.Message when no design is selected on step 1al_validation_msg2Yêu cầu tiêu đề.Message when title field is empty on Step 2al_validation_msg3_1Không có khoá học hay lớp được lựa chọn.Message when no course/class is selected in Step 3al_validation_msg3_2Ít nhât phải có một cán bộ và học viên được lựa chọn.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblCấu trúc thư mục dưới bao gồm các bối cảnh mà bạn tạo cho một bài học. Chọn một hoặc bấm vào nút tiếp theo để tiếp tục.Step 1 descriptionwizardDesc_2_lblBạn có thể đặt tên và định nghĩa mà bạn muốn cho học viên thấy về bài học.Step 2 descriptionwizardDesc_3_lblBạn có thể hủy chọn sinh viên hoặc cán bộ ơ lớp này bằng cách bỏ tích vào ô cạnh tên của họ.Step 3 descriptionwizardDesc_4_lblBằng cách bấm nút bắt đầu bạn có thể bắt đầu bài học ngay. Bạn còn có thể lên lịch cho bài học bắt đầu bằng ngày giờ cụ thểStep 4 descriptionconfirmMsg_1_txt{0} đã bắt đầuConclusion screen description if lesson startedconfirmMsg_2_txt{0} đã lên lịch cho {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} đã được tạo nhưng chưa bắt đầuConclusion screen description if lesson created but not startedal_validation_schstartChưa chọn ngày tháng. Xin hãy chọn ngày tháng, và bấm nút kế hoạchMessage when no date is selected starting a lesson by schedule.summery_design_lblBối cảnh:Label for summery heading of selected design field.summery_title_lblTiêu đề:Label for summery heading of defined title.summery_desc_lblĐịnh nghĩa:Label for summery heading of defined description.summery_course_lblNhóm:Label for summery heading of selected course field.summery_class_lblNhóm con:Label for summery heading of selected class field.summery_staff_lblGiáo viên:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblHọc viênLabel for summery heading of number of selected learners in the lesson class.al_sendGửiOK on system error dialogal_validation_schtimeHãy nhập thời gian bắt đầu hiệu lựcAlert message when user enters an invalid time for schedule startdate_lblNgàyLabel for Schedule Date fieldtime_lblGiờ (giờ :phút)Label for Schedule Time fieldwizard_selAll_cb_lblChọn tất cảLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblCho phép học viết xuất ra tài liệuLabel for Enable export portfolio for Learnerlearners_group_nameHọc viên {0}Group name for the class's learners group.staff_group_nameGiảng viên {0}Group name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/zh_CN_dictionary.xml 12 Jan 2010 01:19:54 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_start你不能创建一个课程Common System error message starting linesys_error_msg_finish你想发送一个错误报告吗?Common System error message finish paragraphsys_error系统错误System Error elert window titleprev_btn<前一步Previous step buttonnext_btn下一步>Next step buttoncancel_btn取消Cancel button to exit wizardclose_btn关闭Close button to close windowtitle_lbl标题New Lesson titledesc_lbl描述New Lesson descriptionlearner_lbl学习者Heading for list of class learnersschedule_cb_lbl时间表Label for schedule checkboxsummery_lbl摘要Heading for summery outlinews_RootRoot folder title for workspacews_tree_mywsp我的工作空间The root level of the workspace treewizardTitle_2_lbl课程详情Step 2 screen titlewizardTitle_4_lbl确认课程详情Step 4 screen titlewizardTitle_x_lbl课程:{0}Confirmation screen titleal_alert警惕Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm确认To Confirm title for LFErroral_okOK on alert dialogal_validation_msg1必需选择一个有效的设计。Message when no design is selected on step 1al_validation_msg2必需有标题。Message when title field is empty on Step 2al_validation_msg3_1没有课程或班级被选中。Message when no course/class is selected in Step 3al_validation_msg3_2必需有至少1个人员和学习者被选中。Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lbl下面的目录结构包含你创建课程所需的设计。选中一个,点击“下一步”按钮继续。Step 1 descriptionwizardDesc_2_lbl你可以为这个课程添加你想让学生看见的课程名称和描述。Step 2 descriptionwizardDesc_3_lbl你可以通过不在他们名字旁边的方框打勾,从而不从这个班级选中学生和人员。Step 3 descriptionwizardDesc_4_lbl通过按“开始”按钮,你可以直接开始课程。你也可以确定课程的时间,在特定的日期和时间开始。Step 4 descriptionconfirmMsg_1_txt{0}已经开始。Conclusion screen description if lesson startedconfirmMsg_2_txt{0}已经为{1}确定了时间。Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}已经创建但还没有开始。Conclusion screen description if lesson created but not startedal_validation_schstart没有日期被选中。请选择日期和时间,然后点击“开始”。Message when no date is selected starting a lesson by schedule.summery_design_lbl设计Label for summery heading of selected design field.summery_title_lbl标题Label for summery heading of defined title.summery_desc_lbl描述Label for summery heading of defined description.summery_course_lbl课程Label for summery heading of selected course field.summery_class_lbl班级Label for summery heading of selected class field.summery_staff_lbl全体人员Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl学习者Label for summery heading of number of selected learners in the lesson class.al_send发送OK on system error dialogdate_lbl日期Label for Schedule Date fieldtime_lbl时间(小时:分钟)Label for Schedule Time fieldal_validation_schtime请输入一个有效的时间。Alert message when user enters an invalid time for schedule startwizard_selAll_cb_lbl全部选择Label for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl学习者可以导出的文件Label for Enable export portfolio for Learnerlearners_group_name{0}学习者Group name for the class's learners group.staff_group_name{0}全体Group name for the class's staff group.addmore_btn添加新课程Button to add another lesson, return to first step.wizard_learner_enpres_cb_lbl使课程可用Checkbox label for presencewizardTitle_3_lbl选择学习者和监控人员Step 3 screen titlewizard_splitLearners_cb_lbl你想将这些学习者分到不同的课程副本中去吗?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lbl该组中的学习者wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lbl每门课的学习者wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lbl使实时编辑可用wizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSum该课程中将要创建{0}个实例,并且将给每个课程安排大约{1}个学习者。Split learners summarywizard_splitLearners_splitSumShort该课程有{0}个实例,每个实例都安排了{1}个学习者Shorter split learners summaryconfirmMsg_4_txt{1}个实例中的{0}个已经开始运行Conclusion screen description if starting several lessonsfinish_btn在监控环境中开始Finish button to complete wizardstaff_lbl监控者Heading for list of class staffwizardTitle_1_lbl步骤1/3:选择你的流程Step 1 screen titlestart_btn现在开始Start button to start new lesson \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/assets/test/default/flashxml/wizard/zh_TW_dictionary.xml 12 Jan 2010 01:19:57 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3date_lbl日期Label for Schedule Date fieldtime_lbl時間(小時:分)Label for Schedule Time fieldwizard_selAll_cb_lbl選擇所有Label for select all check box used to select all staff or learner users in list.learners_group_name{0}學習者Group name for the class's learners group.staff_group_name{0}監視者Group name for the class's staff group.addmore_btn加入另一個課程Button to add another lesson, return to first step.wizard_learner_enpres_cb_lbl讓學習者看到誰在線上Checkbox label for presencewizard_splitLearners_leanersInGroup_lbl此群組的學習者wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lbl每一個課程的學習者wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lbl啟動即時編輯wizard_learner_enLiveEdit_cb_lblconfirmMsg_4_txt{0}事件的{1}已經開始Conclusion screen description if starting several lessonswizard_wkspc_date_modified_lbl最後修訂:{0}Shows the last modified datetime for a Learning Design.wizardDesc_1_lbl下面的資料夾包含課程所需的編程。選中一個,按“下一步”按鈕繼續。Step 1 descriptionwizardDesc_2_lbl你可以為這個課程添加你想讓學習者看見的課程名稱和描述。Step 2 descriptionwizard_splitLearners_splitSum該課程中將要創立{0}個事件,並且將給每個課程安排大約{1}個學習者。Split learners summarywizardDesc_3_lbl你可以通過不在他們名字旁邊的方框打勾,從而不從這個班級選擇學習者和堅督者。Step 3 descriptionwizard_splitLearners_splitSumShort該課程有{0}個事件,每個實例都安排了{1}個學習者Shorter split learners summarywizardDesc_4_lbl通過按“開始”按鈕,你可以直接開始課程。你也可以確定課程的時間,並在特定的日期和時間開始。Step 4 descriptionsys_error_msg_start你無法建立一個課程Common System error message starting linewizard_learner_expp_cb_lbl啟動輸出的資料夾給學習者Label for Enable export portfolio for Learnerwizard_splitLearners_cb_lbl你想將這些學習者分到不同的課程副本中去嗎?wizard_splitLearners_cb_lblsys_error_msg_finish你想要傳送ㄧ份錯誤報告嗎?Common System error message finish paragraphsys_error系統錯誤System Error elert window titleprev_btn< 前ㄧ步Previous step buttonnext_btn下一步 >Next step buttonfinish_btn在監視器中開始Finish button to complete wizardcancel_btn取消Cancel button to exit wizardclose_btn關閉Close button to close windowstart_btn現在開始Start button to start new lessontitle_lbl標題New Lesson titledesc_lbl描述New Lesson descriptionlearner_lbl學習者Heading for list of class learnersstaff_lbl監視Heading for list of class staffschedule_cb_lbl行程Label for schedule checkboxsummery_lbl總結Heading for summery outlinews_Root根目錄Root folder title for workspacews_tree_mywsp我的工作空間The root level of the workspace treewizardTitle_1_lbl步驟1之3:選擇你的編程Step 1 screen titlewizardTitle_2_lbl課程細節Step 2 screen titlewizardTitle_3_lbl步驟2之3:選擇你的學習者與監視Step 3 screen titlewizardTitle_4_lbl步驟3之3:確認課程細節Step 4 screen titlewizardTitle_x_lbl課程:{0}Confirmation screen titleal_alert注意Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOK on alert dialogal_validation_msg1一個有效的編程必須選擇Message when no design is selected on step 1al_validation_msg2標題是必須填的Message when title field is empty on Step 2al_validation_msg3_1沒有課程或班級被選擇Message when no course/class is selected in Step 3al_validation_msg3_2至少要選定一位監督者與學習者Message when either no staff/learner users are selected in Step 3.confirmMsg_1_txt{0}已經開始Conclusion screen description if lesson startedconfirmMsg_2_txt{0}已經排定開始於{1}。Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}已經建立但尚未開始Conclusion screen description if lesson created but not startedal_validation_schstart沒有選定日期。請選擇一個日期與時間,然後按下行程按鈕。Message when no date is selected starting a lesson by schedule.summery_design_lbl編程Label for summery heading of selected design field.summery_title_lbl標題Label for summery heading of defined title.summery_desc_lbl描述Label for summery heading of defined description.summery_course_lbl群組Label for summery heading of selected course field.summery_class_lbl子群組Label for summery heading of selected class field.summery_staff_lbl監視Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl學習者Label for summery heading of number of selected learners in the lesson class.al_send送出OK on system error dialogal_validation_schtime請輸入一個有效的名稱Alert message when user enters an invalid time for schedule start \ No newline at end of file Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_assessment.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_assessment.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_chat.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_chat.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_chat_and_scribe_notebook.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_chat_and_scribe_notebook.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_daco.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_daco.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_dimdim.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_dimdim.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_forum.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_forum.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_forum_and_scribe.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_forum_and_scribe.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_gmap.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_gmap.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_groupreporting.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_groupreporting.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_htmlnb.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_htmlnb.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_imageGallery.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_imageGallery.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_mcq.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_mcq.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_mindmap.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_mindmap.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_notebook.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_notebook.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_noticeboard.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_noticeboard.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_pixlr.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_pixlr.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_questionanswer.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_questionanswer.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_ranking.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_ranking.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_reportsubmission.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_reportsubmission.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_rsrc.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_rsrc.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_scribe.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_scribe.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_spreadsheet.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_spreadsheet.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_survey.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_survey.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_taskList.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_taskList.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_urlcontentmessageboard.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_urlcontentmessageboard.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_videoRecorder.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_videoRecorder.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_wiki.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/assets/test/toolimages/icon_wiki.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/bin-debug/history/history.css =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/history/history.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/history/history.css 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,6 @@ +/* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */ + +#ie_historyFrame { width: 0px; height: 0px; display:none } +#firefox_anchorDiv { width: 0px; height: 0px; display:none } +#safari_formDiv { width: 0px; height: 0px; display:none } +#safari_rememberDiv { width: 0px; height: 0px; display:none } Index: lams_flex/LamsAuthor/bin-debug/history/history.js =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/history/history.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/history/history.js 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,662 @@ +BrowserHistoryUtils = { + addEvent: function(elm, evType, fn, useCapture) { + useCapture = useCapture || false; + if (elm.addEventListener) { + elm.addEventListener(evType, fn, useCapture); + return true; + } + else if (elm.attachEvent) { + var r = elm.attachEvent('on' + evType, fn); + return r; + } + else { + elm['on' + evType] = fn; + } + } +} + +BrowserHistory = (function() { + // type of browser + var browser = { + ie: false, + firefox: false, + safari: false, + opera: false, + version: -1 + }; + + // if setDefaultURL has been called, our first clue + // that the SWF is ready and listening + //var swfReady = false; + + // the URL we'll send to the SWF once it is ready + //var pendingURL = ''; + + // Default app state URL to use when no fragment ID present + var defaultHash = ''; + + // Last-known app state URL + var currentHref = document.location.href; + + // Initial URL (used only by IE) + var initialHref = document.location.href; + + // Initial URL (used only by IE) + var initialHash = document.location.hash; + + // History frame source URL prefix (used only by IE) + var historyFrameSourcePrefix = 'history/historyFrame.html?'; + + // History maintenance (used only by Safari) + var currentHistoryLength = -1; + + var historyHash = []; + + var initialState = createState(initialHref, initialHref + '#' + initialHash, initialHash); + + var backStack = []; + var forwardStack = []; + + var currentObjectId = null; + + //UserAgent detection + var useragent = navigator.userAgent.toLowerCase(); + + if (useragent.indexOf("opera") != -1) { + browser.opera = true; + } else if (useragent.indexOf("msie") != -1) { + browser.ie = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('msie') + 4)); + } else if (useragent.indexOf("safari") != -1) { + browser.safari = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('safari') + 7)); + } else if (useragent.indexOf("gecko") != -1) { + browser.firefox = true; + } + + if (browser.ie == true && browser.version == 7) { + window["_ie_firstload"] = false; + } + + // Accessor functions for obtaining specific elements of the page. + function getHistoryFrame() + { + return document.getElementById('ie_historyFrame'); + } + + function getAnchorElement() + { + return document.getElementById('firefox_anchorDiv'); + } + + function getFormElement() + { + return document.getElementById('safari_formDiv'); + } + + function getRememberElement() + { + return document.getElementById("safari_remember_field"); + } + + // Get the Flash player object for performing ExternalInterface callbacks. + // Updated for changes to SWFObject2. + function getPlayer(id) { + if (id && document.getElementById(id)) { + var r = document.getElementById(id); + if (typeof r.SetVariable != "undefined") { + return r; + } + else { + var o = r.getElementsByTagName("object"); + var e = r.getElementsByTagName("embed"); + if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + } + } + else { + var o = document.getElementsByTagName("object"); + var e = document.getElementsByTagName("embed"); + if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + else if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (o.length > 1 && typeof o[1].SetVariable != "undefined") { + return o[1]; + } + } + return undefined; + } + + function getPlayers() { + var players = []; + if (players.length == 0) { + var tmp = document.getElementsByTagName('object'); + players = tmp; + } + + if (players.length == 0 || players[0].object == null) { + var tmp = document.getElementsByTagName('embed'); + players = tmp; + } + return players; + } + + function getIframeHash() { + var doc = getHistoryFrame().contentWindow.document; + var hash = String(doc.location.search); + if (hash.length == 1 && hash.charAt(0) == "?") { + hash = ""; + } + else if (hash.length >= 2 && hash.charAt(0) == "?") { + hash = hash.substring(1); + } + return hash; + } + + /* Get the current location hash excluding the '#' symbol. */ + function getHash() { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + var idx = document.location.href.indexOf('#'); + return (idx >= 0) ? document.location.href.substr(idx+1) : ''; + } + + /* Get the current location hash excluding the '#' symbol. */ + function setHash(hash) { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + if (hash == '') hash = '#' + document.location.hash = hash; + } + + function createState(baseUrl, newUrl, flexAppUrl) { + return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; + } + + /* Add a history entry to the browser. + * baseUrl: the portion of the location prior to the '#' + * newUrl: the entire new URL, including '#' and following fragment + * flexAppUrl: the portion of the location following the '#' only + */ + function addHistoryEntry(baseUrl, newUrl, flexAppUrl) { + + //delete all the history entries + forwardStack = []; + + if (browser.ie) { + //Check to see if we are being asked to do a navigate for the first + //history entry, and if so ignore, because it's coming from the creation + //of the history iframe + if (flexAppUrl == defaultHash && document.location.href == initialHref && window['_ie_firstload']) { + currentHref = initialHref; + return; + } + if ((!flexAppUrl || flexAppUrl == defaultHash) && window['_ie_firstload']) { + newUrl = baseUrl + '#' + defaultHash; + flexAppUrl = defaultHash; + } else { + // for IE, tell the history frame to go somewhere without a '#' + // in order to get this entry into the browser history. + getHistoryFrame().src = historyFrameSourcePrefix + flexAppUrl; + } + setHash(flexAppUrl); + } else { + + //ADR + if (backStack.length == 0 && initialState.flexAppUrl == flexAppUrl) { + initialState = createState(baseUrl, newUrl, flexAppUrl); + } else if(backStack.length > 0 && backStack[backStack.length - 1].flexAppUrl == flexAppUrl) { + backStack[backStack.length - 1] = createState(baseUrl, newUrl, flexAppUrl); + } + + if (browser.safari) { + // for Safari, submit a form whose action points to the desired URL + if (browser.version <= 419.3) { + var file = window.location.pathname.toString(); + file = file.substring(file.lastIndexOf("/")+1); + getFormElement().innerHTML = '
'; + //get the current elements and add them to the form + var qs = window.location.search.substring(1); + var qs_arr = qs.split("&"); + for (var i = 0; i < qs_arr.length; i++) { + var tmp = qs_arr[i].split("="); + var elem = document.createElement("input"); + elem.type = "hidden"; + elem.name = tmp[0]; + elem.value = tmp[1]; + document.forms.historyForm.appendChild(elem); + } + document.forms.historyForm.submit(); + } else { + top.location.hash = flexAppUrl; + } + // We also have to maintain the history by hand for Safari + historyHash[history.length] = flexAppUrl; + _storeStates(); + } else { + // Otherwise, write an anchor into the page and tell the browser to go there + addAnchor(flexAppUrl); + setHash(flexAppUrl); + } + } + backStack.push(createState(baseUrl, newUrl, flexAppUrl)); + } + + function _storeStates() { + if (browser.safari) { + getRememberElement().value = historyHash.join(","); + } + } + + function handleBackButton() { + //The "current" page is always at the top of the history stack. + var current = backStack.pop(); + if (!current) { return; } + var last = backStack[backStack.length - 1]; + if (!last && backStack.length == 0){ + last = initialState; + } + forwardStack.push(current); + } + + function handleForwardButton() { + //summary: private method. Do not call this directly. + + var last = forwardStack.pop(); + if (!last) { return; } + backStack.push(last); + } + + function handleArbitraryUrl() { + //delete all the history entries + forwardStack = []; + } + + /* Called periodically to poll to see if we need to detect navigation that has occurred */ + function checkForUrlChange() { + + if (browser.ie) { + if (currentHref != document.location.href && currentHref + '#' != document.location.href) { + //This occurs when the user has navigated to a specific URL + //within the app, and didn't use browser back/forward + //IE seems to have a bug where it stops updating the URL it + //shows the end-user at this point, but programatically it + //appears to be correct. Do a full app reload to get around + //this issue. + if (browser.version < 7) { + currentHref = document.location.href; + document.location.reload(); + } else { + if (getHash() != getIframeHash()) { + // this.iframe.src = this.blankURL + hash; + var sourceToSet = historyFrameSourcePrefix + getHash(); + getHistoryFrame().src = sourceToSet; + } + } + } + } + + if (browser.safari) { + // For Safari, we have to check to see if history.length changed. + if (currentHistoryLength >= 0 && history.length != currentHistoryLength) { + //alert("did change: " + history.length + ", " + historyHash.length + "|" + historyHash[history.length] + "|>" + historyHash.join("|")); + // If it did change, then we have to look the old state up + // in our hand-maintained array since document.location.hash + // won't have changed, then call back into BrowserManager. + currentHistoryLength = history.length; + var flexAppUrl = historyHash[currentHistoryLength]; + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + _storeStates(); + } + } + if (browser.firefox) { + if (currentHref != document.location.href) { + var bsl = backStack.length; + + var urlActions = { + back: false, + forward: false, + set: false + } + + if ((window.location.hash == initialHash || window.location.href == initialHref) && (bsl == 1)) { + urlActions.back = true; + // FIXME: could this ever be a forward button? + // we can't clear it because we still need to check for forwards. Ugg. + // clearInterval(this.locationTimer); + handleBackButton(); + } + + // first check to see if we could have gone forward. We always halt on + // a no-hash item. + if (forwardStack.length > 0) { + if (forwardStack[forwardStack.length-1].flexAppUrl == getHash()) { + urlActions.forward = true; + handleForwardButton(); + } + } + + // ok, that didn't work, try someplace back in the history stack + if ((bsl >= 2) && (backStack[bsl - 2])) { + if (backStack[bsl - 2].flexAppUrl == getHash()) { + urlActions.back = true; + handleBackButton(); + } + } + + if (!urlActions.back && !urlActions.forward) { + var foundInStacks = { + back: -1, + forward: -1 + } + + for (var i = 0; i < backStack.length; i++) { + if (backStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.back = i; + } + } + for (var i = 0; i < forwardStack.length; i++) { + if (forwardStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.forward = i; + } + } + handleArbitraryUrl(); + } + + // Firefox changed; do a callback into BrowserManager to tell it. + currentHref = document.location.href; + var flexAppUrl = getHash(); + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + } + } + //setTimeout(checkForUrlChange, 50); + } + + /* Write an anchor into the page to legitimize it as a URL for Firefox et al. */ + function addAnchor(flexAppUrl) + { + if (document.getElementsByName(flexAppUrl).length == 0) { + getAnchorElement().innerHTML += "" + flexAppUrl + ""; + } + } + + var _initialize = function () { + if (browser.ie) + { + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + var iframe_location = (new String(s.src)).replace("history.js", "historyFrame.html"); + } + } + historyFrameSourcePrefix = iframe_location + "?"; + var src = historyFrameSourcePrefix; + + var iframe = document.createElement("iframe"); + iframe.id = 'ie_historyFrame'; + iframe.name = 'ie_historyFrame'; + //iframe.src = historyFrameSourcePrefix; + try { + document.body.appendChild(iframe); + } catch(e) { + setTimeout(function() { + document.body.appendChild(iframe); + }, 0); + } + } + + if (browser.safari) + { + var rememberDiv = document.createElement("div"); + rememberDiv.id = 'safari_rememberDiv'; + document.body.appendChild(rememberDiv); + rememberDiv.innerHTML = ''; + + var formDiv = document.createElement("div"); + formDiv.id = 'safari_formDiv'; + document.body.appendChild(formDiv); + + var reloader_content = document.createElement('div'); + reloader_content.id = 'safarireloader'; + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + html = (new String(s.src)).replace(".js", ".html"); + } + } + reloader_content.innerHTML = ''; + document.body.appendChild(reloader_content); + reloader_content.style.position = 'absolute'; + reloader_content.style.left = reloader_content.style.top = '-9999px'; + iframe = reloader_content.getElementsByTagName('iframe')[0]; + + if (document.getElementById("safari_remember_field").value != "" ) { + historyHash = document.getElementById("safari_remember_field").value.split(","); + } + + } + + if (browser.firefox) + { + var anchorDiv = document.createElement("div"); + anchorDiv.id = 'firefox_anchorDiv'; + document.body.appendChild(anchorDiv); + } + + //setTimeout(checkForUrlChange, 50); + } + + return { + historyHash: historyHash, + backStack: function() { return backStack; }, + forwardStack: function() { return forwardStack }, + getPlayer: getPlayer, + initialize: function(src) { + _initialize(src); + }, + setURL: function(url) { + document.location.href = url; + }, + getURL: function() { + return document.location.href; + }, + getTitle: function() { + return document.title; + }, + setTitle: function(title) { + try { + backStack[backStack.length - 1].title = title; + } catch(e) { } + //if on safari, set the title to be the empty string. + if (browser.safari) { + if (title == "") { + try { + var tmp = window.location.href.toString(); + title = tmp.substring((tmp.lastIndexOf("/")+1), tmp.lastIndexOf("#")); + } catch(e) { + title = ""; + } + } + } + document.title = title; + }, + setDefaultURL: function(def) + { + defaultHash = def; + def = getHash(); + //trailing ? is important else an extra frame gets added to the history + //when navigating back to the first page. Alternatively could check + //in history frame navigation to compare # and ?. + if (browser.ie) + { + window['_ie_firstload'] = true; + var sourceToSet = historyFrameSourcePrefix + def; + var func = function() { + getHistoryFrame().src = sourceToSet; + window.location.replace("#" + def); + setInterval(checkForUrlChange, 50); + } + try { + func(); + } catch(e) { + window.setTimeout(function() { func(); }, 0); + } + } + + if (browser.safari) + { + currentHistoryLength = history.length; + if (historyHash.length == 0) { + historyHash[currentHistoryLength] = def; + var newloc = "#" + def; + window.location.replace(newloc); + } else { + //alert(historyHash[historyHash.length-1]); + } + //setHash(def); + setInterval(checkForUrlChange, 50); + } + + + if (browser.firefox || browser.opera) + { + var reg = new RegExp("#" + def + "$"); + if (window.location.toString().match(reg)) { + } else { + var newloc ="#" + def; + window.location.replace(newloc); + } + setInterval(checkForUrlChange, 50); + //setHash(def); + } + + }, + + /* Set the current browser URL; called from inside BrowserManager to propagate + * the application state out to the container. + */ + setBrowserURL: function(flexAppUrl, objectId) { + if (browser.ie && typeof objectId != "undefined") { + currentObjectId = objectId; + } + //fromIframe = fromIframe || false; + //fromFlex = fromFlex || false; + //alert("setBrowserURL: " + flexAppUrl); + //flexAppUrl = (flexAppUrl == "") ? defaultHash : flexAppUrl ; + + var pos = document.location.href.indexOf('#'); + var baseUrl = pos != -1 ? document.location.href.substr(0, pos) : document.location.href; + var newUrl = baseUrl + '#' + flexAppUrl; + + if (document.location.href != newUrl && document.location.href + '#' != newUrl) { + currentHref = newUrl; + addHistoryEntry(baseUrl, newUrl, flexAppUrl); + currentHistoryLength = history.length; + } + + return false; + }, + + browserURLChange: function(flexAppUrl) { + var objectId = null; + if (browser.ie && currentObjectId != null) { + objectId = currentObjectId; + } + pendingURL = ''; + + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + try { + pl[i].browserURLChange(flexAppUrl); + } catch(e) { } + } + } else { + try { + getPlayer(objectId).browserURLChange(flexAppUrl); + } catch(e) { } + } + + currentObjectId = null; + } + + } + +})(); + +// Initialization + +// Automated unit testing and other diagnostics + +function setURL(url) +{ + document.location.href = url; +} + +function backButton() +{ + history.back(); +} + +function forwardButton() +{ + history.forward(); +} + +function goForwardOrBackInHistory(step) +{ + history.go(step); +} + +//BrowserHistoryUtils.addEvent(window, "load", function() { BrowserHistory.initialize(); }); +(function(i) { + var u =navigator.userAgent;var e=/*@cc_on!@*/false; + var st = setTimeout; + if(/webkit/i.test(u)){ + st(function(){ + var dr=document.readyState; + if(dr=="loaded"||dr=="complete"){i()} + else{st(arguments.callee,10);}},10); + } else if((/mozilla/i.test(u)&&!/(compati)/.test(u)) || (/opera/i.test(u))){ + document.addEventListener("DOMContentLoaded",i,false); + } else if(e){ + (function(){ + var t=document.createElement('doc:rdy'); + try{t.doScroll('left'); + i();t=null; + }catch(e){st(arguments.callee,0);}})(); + } else{ + window.onload=i; + } +})( function() {BrowserHistory.initialize();} ); Index: lams_flex/LamsAuthor/bin-debug/history/historyFrame.html =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/bin-debug/history/historyFrame.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/bin-debug/history/historyFrame.html 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,29 @@ + + + + + + + + Hidden frame for Browser History support. + + Index: lams_flex/LamsAuthor/html-template/AC_OETags.js =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/html-template/AC_OETags.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/html-template/AC_OETags.js 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,278 @@ +// Flash Player Version Detection - Rev 1.6 +// Detect Client Browser type +// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. +var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; +var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; +var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; + +function ControlVersion() +{ + var version; + var axo; + var e; + + // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry + + try { + // version will be set for 7.X or greater players + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + version = axo.GetVariable("$version"); + } catch (e) { + } + + if (!version) + { + try { + // version will be set for 6.X players only + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + + // installed player is some revision of 6.0 + // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, + // so we have to be careful. + + // default to the first public version + version = "WIN 6,0,21,0"; + + // throws if AllowScripAccess does not exist (introduced in 6.0r47) + axo.AllowScriptAccess = "always"; + + // safe to call for 6.0r47 or greater + version = axo.GetVariable("$version"); + + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 4.X or 5.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = axo.GetVariable("$version"); + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 3.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = "WIN 3,0,18,0"; + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 2.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + version = "WIN 2,0,0,11"; + } catch (e) { + version = -1; + } + } + + return version; +} + +// JavaScript helper required to detect Flash Player PlugIn version information +function GetSwfVer(){ + // NS/Opera version >= 3 check for Flash plugin in plugin array + var flashVer = -1; + + if (navigator.plugins != null && navigator.plugins.length > 0) { + if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { + var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; + var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; + var descArray = flashDescription.split(" "); + var tempArrayMajor = descArray[2].split("."); + var versionMajor = tempArrayMajor[0]; + var versionMinor = tempArrayMajor[1]; + var versionRevision = descArray[3]; + if (versionRevision == "") { + versionRevision = descArray[4]; + } + if (versionRevision[0] == "d") { + versionRevision = versionRevision.substring(1); + } else if (versionRevision[0] == "r") { + versionRevision = versionRevision.substring(1); + if (versionRevision.indexOf("d") > 0) { + versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); + } + } else if (versionRevision[0] == "b") { + versionRevision = versionRevision.substring(1); + } + var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; + } + } + // MSN/WebTV 2.6 supports Flash 4 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; + // WebTV 2.5 supports Flash 3 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; + // older WebTV supports Flash 2 + else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; + else if ( isIE && isWin && !isOpera ) { + flashVer = ControlVersion(); + } + return flashVer; +} + +// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available +function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) +{ + versionStr = GetSwfVer(); + if (versionStr == -1 ) { + return false; + } else if (versionStr != 0) { + if(isIE && isWin && !isOpera) { + // Given "WIN 2,0,0,11" + tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] + tempString = tempArray[1]; // "2,0,0,11" + versionArray = tempString.split(","); // ['2', '0', '0', '11'] + } else { + versionArray = versionStr.split("."); + } + var versionMajor = versionArray[0]; + var versionMinor = versionArray[1]; + var versionRevision = versionArray[2]; + + // is the major.revision >= requested major.revision AND the minor version >= requested minor + if (versionMajor > parseFloat(reqMajorVer)) { + return true; + } else if (versionMajor == parseFloat(reqMajorVer)) { + if (versionMinor > parseFloat(reqMinorVer)) + return true; + else if (versionMinor == parseFloat(reqMinorVer)) { + if (versionRevision >= parseFloat(reqRevision)) + return true; + } + } + return false; + } +} + +function AC_AddExtension(src, ext) +{ + if (src.indexOf('?') != -1) + return src.replace(/\?/, ext+'?'); + else + return src + ext; +} + +function AC_Generateobj(objAttrs, params, embedAttrs) +{ + var str = ''; + if (isIE && isWin && !isOpera) + { + str += ' '; + str += ''; + } else { + str += ' + + + + + + + + + + + +${title} + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/html-template/playerProductInstall.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/html-template/playerProductInstall.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/html-template/history/history.css =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/html-template/history/history.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/html-template/history/history.css 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,6 @@ +/* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */ + +#ie_historyFrame { width: 0px; height: 0px; display:none } +#firefox_anchorDiv { width: 0px; height: 0px; display:none } +#safari_formDiv { width: 0px; height: 0px; display:none } +#safari_rememberDiv { width: 0px; height: 0px; display:none } Index: lams_flex/LamsAuthor/html-template/history/history.js =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/html-template/history/history.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/html-template/history/history.js 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,662 @@ +BrowserHistoryUtils = { + addEvent: function(elm, evType, fn, useCapture) { + useCapture = useCapture || false; + if (elm.addEventListener) { + elm.addEventListener(evType, fn, useCapture); + return true; + } + else if (elm.attachEvent) { + var r = elm.attachEvent('on' + evType, fn); + return r; + } + else { + elm['on' + evType] = fn; + } + } +} + +BrowserHistory = (function() { + // type of browser + var browser = { + ie: false, + firefox: false, + safari: false, + opera: false, + version: -1 + }; + + // if setDefaultURL has been called, our first clue + // that the SWF is ready and listening + //var swfReady = false; + + // the URL we'll send to the SWF once it is ready + //var pendingURL = ''; + + // Default app state URL to use when no fragment ID present + var defaultHash = ''; + + // Last-known app state URL + var currentHref = document.location.href; + + // Initial URL (used only by IE) + var initialHref = document.location.href; + + // Initial URL (used only by IE) + var initialHash = document.location.hash; + + // History frame source URL prefix (used only by IE) + var historyFrameSourcePrefix = 'history/historyFrame.html?'; + + // History maintenance (used only by Safari) + var currentHistoryLength = -1; + + var historyHash = []; + + var initialState = createState(initialHref, initialHref + '#' + initialHash, initialHash); + + var backStack = []; + var forwardStack = []; + + var currentObjectId = null; + + //UserAgent detection + var useragent = navigator.userAgent.toLowerCase(); + + if (useragent.indexOf("opera") != -1) { + browser.opera = true; + } else if (useragent.indexOf("msie") != -1) { + browser.ie = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('msie') + 4)); + } else if (useragent.indexOf("safari") != -1) { + browser.safari = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('safari') + 7)); + } else if (useragent.indexOf("gecko") != -1) { + browser.firefox = true; + } + + if (browser.ie == true && browser.version == 7) { + window["_ie_firstload"] = false; + } + + // Accessor functions for obtaining specific elements of the page. + function getHistoryFrame() + { + return document.getElementById('ie_historyFrame'); + } + + function getAnchorElement() + { + return document.getElementById('firefox_anchorDiv'); + } + + function getFormElement() + { + return document.getElementById('safari_formDiv'); + } + + function getRememberElement() + { + return document.getElementById("safari_remember_field"); + } + + // Get the Flash player object for performing ExternalInterface callbacks. + // Updated for changes to SWFObject2. + function getPlayer(id) { + if (id && document.getElementById(id)) { + var r = document.getElementById(id); + if (typeof r.SetVariable != "undefined") { + return r; + } + else { + var o = r.getElementsByTagName("object"); + var e = r.getElementsByTagName("embed"); + if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + } + } + else { + var o = document.getElementsByTagName("object"); + var e = document.getElementsByTagName("embed"); + if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + else if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (o.length > 1 && typeof o[1].SetVariable != "undefined") { + return o[1]; + } + } + return undefined; + } + + function getPlayers() { + var players = []; + if (players.length == 0) { + var tmp = document.getElementsByTagName('object'); + players = tmp; + } + + if (players.length == 0 || players[0].object == null) { + var tmp = document.getElementsByTagName('embed'); + players = tmp; + } + return players; + } + + function getIframeHash() { + var doc = getHistoryFrame().contentWindow.document; + var hash = String(doc.location.search); + if (hash.length == 1 && hash.charAt(0) == "?") { + hash = ""; + } + else if (hash.length >= 2 && hash.charAt(0) == "?") { + hash = hash.substring(1); + } + return hash; + } + + /* Get the current location hash excluding the '#' symbol. */ + function getHash() { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + var idx = document.location.href.indexOf('#'); + return (idx >= 0) ? document.location.href.substr(idx+1) : ''; + } + + /* Get the current location hash excluding the '#' symbol. */ + function setHash(hash) { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + if (hash == '') hash = '#' + document.location.hash = hash; + } + + function createState(baseUrl, newUrl, flexAppUrl) { + return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; + } + + /* Add a history entry to the browser. + * baseUrl: the portion of the location prior to the '#' + * newUrl: the entire new URL, including '#' and following fragment + * flexAppUrl: the portion of the location following the '#' only + */ + function addHistoryEntry(baseUrl, newUrl, flexAppUrl) { + + //delete all the history entries + forwardStack = []; + + if (browser.ie) { + //Check to see if we are being asked to do a navigate for the first + //history entry, and if so ignore, because it's coming from the creation + //of the history iframe + if (flexAppUrl == defaultHash && document.location.href == initialHref && window['_ie_firstload']) { + currentHref = initialHref; + return; + } + if ((!flexAppUrl || flexAppUrl == defaultHash) && window['_ie_firstload']) { + newUrl = baseUrl + '#' + defaultHash; + flexAppUrl = defaultHash; + } else { + // for IE, tell the history frame to go somewhere without a '#' + // in order to get this entry into the browser history. + getHistoryFrame().src = historyFrameSourcePrefix + flexAppUrl; + } + setHash(flexAppUrl); + } else { + + //ADR + if (backStack.length == 0 && initialState.flexAppUrl == flexAppUrl) { + initialState = createState(baseUrl, newUrl, flexAppUrl); + } else if(backStack.length > 0 && backStack[backStack.length - 1].flexAppUrl == flexAppUrl) { + backStack[backStack.length - 1] = createState(baseUrl, newUrl, flexAppUrl); + } + + if (browser.safari) { + // for Safari, submit a form whose action points to the desired URL + if (browser.version <= 419.3) { + var file = window.location.pathname.toString(); + file = file.substring(file.lastIndexOf("/")+1); + getFormElement().innerHTML = '
'; + //get the current elements and add them to the form + var qs = window.location.search.substring(1); + var qs_arr = qs.split("&"); + for (var i = 0; i < qs_arr.length; i++) { + var tmp = qs_arr[i].split("="); + var elem = document.createElement("input"); + elem.type = "hidden"; + elem.name = tmp[0]; + elem.value = tmp[1]; + document.forms.historyForm.appendChild(elem); + } + document.forms.historyForm.submit(); + } else { + top.location.hash = flexAppUrl; + } + // We also have to maintain the history by hand for Safari + historyHash[history.length] = flexAppUrl; + _storeStates(); + } else { + // Otherwise, write an anchor into the page and tell the browser to go there + addAnchor(flexAppUrl); + setHash(flexAppUrl); + } + } + backStack.push(createState(baseUrl, newUrl, flexAppUrl)); + } + + function _storeStates() { + if (browser.safari) { + getRememberElement().value = historyHash.join(","); + } + } + + function handleBackButton() { + //The "current" page is always at the top of the history stack. + var current = backStack.pop(); + if (!current) { return; } + var last = backStack[backStack.length - 1]; + if (!last && backStack.length == 0){ + last = initialState; + } + forwardStack.push(current); + } + + function handleForwardButton() { + //summary: private method. Do not call this directly. + + var last = forwardStack.pop(); + if (!last) { return; } + backStack.push(last); + } + + function handleArbitraryUrl() { + //delete all the history entries + forwardStack = []; + } + + /* Called periodically to poll to see if we need to detect navigation that has occurred */ + function checkForUrlChange() { + + if (browser.ie) { + if (currentHref != document.location.href && currentHref + '#' != document.location.href) { + //This occurs when the user has navigated to a specific URL + //within the app, and didn't use browser back/forward + //IE seems to have a bug where it stops updating the URL it + //shows the end-user at this point, but programatically it + //appears to be correct. Do a full app reload to get around + //this issue. + if (browser.version < 7) { + currentHref = document.location.href; + document.location.reload(); + } else { + if (getHash() != getIframeHash()) { + // this.iframe.src = this.blankURL + hash; + var sourceToSet = historyFrameSourcePrefix + getHash(); + getHistoryFrame().src = sourceToSet; + } + } + } + } + + if (browser.safari) { + // For Safari, we have to check to see if history.length changed. + if (currentHistoryLength >= 0 && history.length != currentHistoryLength) { + //alert("did change: " + history.length + ", " + historyHash.length + "|" + historyHash[history.length] + "|>" + historyHash.join("|")); + // If it did change, then we have to look the old state up + // in our hand-maintained array since document.location.hash + // won't have changed, then call back into BrowserManager. + currentHistoryLength = history.length; + var flexAppUrl = historyHash[currentHistoryLength]; + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + _storeStates(); + } + } + if (browser.firefox) { + if (currentHref != document.location.href) { + var bsl = backStack.length; + + var urlActions = { + back: false, + forward: false, + set: false + } + + if ((window.location.hash == initialHash || window.location.href == initialHref) && (bsl == 1)) { + urlActions.back = true; + // FIXME: could this ever be a forward button? + // we can't clear it because we still need to check for forwards. Ugg. + // clearInterval(this.locationTimer); + handleBackButton(); + } + + // first check to see if we could have gone forward. We always halt on + // a no-hash item. + if (forwardStack.length > 0) { + if (forwardStack[forwardStack.length-1].flexAppUrl == getHash()) { + urlActions.forward = true; + handleForwardButton(); + } + } + + // ok, that didn't work, try someplace back in the history stack + if ((bsl >= 2) && (backStack[bsl - 2])) { + if (backStack[bsl - 2].flexAppUrl == getHash()) { + urlActions.back = true; + handleBackButton(); + } + } + + if (!urlActions.back && !urlActions.forward) { + var foundInStacks = { + back: -1, + forward: -1 + } + + for (var i = 0; i < backStack.length; i++) { + if (backStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.back = i; + } + } + for (var i = 0; i < forwardStack.length; i++) { + if (forwardStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.forward = i; + } + } + handleArbitraryUrl(); + } + + // Firefox changed; do a callback into BrowserManager to tell it. + currentHref = document.location.href; + var flexAppUrl = getHash(); + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + } + } + //setTimeout(checkForUrlChange, 50); + } + + /* Write an anchor into the page to legitimize it as a URL for Firefox et al. */ + function addAnchor(flexAppUrl) + { + if (document.getElementsByName(flexAppUrl).length == 0) { + getAnchorElement().innerHTML += "" + flexAppUrl + ""; + } + } + + var _initialize = function () { + if (browser.ie) + { + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + var iframe_location = (new String(s.src)).replace("history.js", "historyFrame.html"); + } + } + historyFrameSourcePrefix = iframe_location + "?"; + var src = historyFrameSourcePrefix; + + var iframe = document.createElement("iframe"); + iframe.id = 'ie_historyFrame'; + iframe.name = 'ie_historyFrame'; + //iframe.src = historyFrameSourcePrefix; + try { + document.body.appendChild(iframe); + } catch(e) { + setTimeout(function() { + document.body.appendChild(iframe); + }, 0); + } + } + + if (browser.safari) + { + var rememberDiv = document.createElement("div"); + rememberDiv.id = 'safari_rememberDiv'; + document.body.appendChild(rememberDiv); + rememberDiv.innerHTML = ''; + + var formDiv = document.createElement("div"); + formDiv.id = 'safari_formDiv'; + document.body.appendChild(formDiv); + + var reloader_content = document.createElement('div'); + reloader_content.id = 'safarireloader'; + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + html = (new String(s.src)).replace(".js", ".html"); + } + } + reloader_content.innerHTML = ''; + document.body.appendChild(reloader_content); + reloader_content.style.position = 'absolute'; + reloader_content.style.left = reloader_content.style.top = '-9999px'; + iframe = reloader_content.getElementsByTagName('iframe')[0]; + + if (document.getElementById("safari_remember_field").value != "" ) { + historyHash = document.getElementById("safari_remember_field").value.split(","); + } + + } + + if (browser.firefox) + { + var anchorDiv = document.createElement("div"); + anchorDiv.id = 'firefox_anchorDiv'; + document.body.appendChild(anchorDiv); + } + + //setTimeout(checkForUrlChange, 50); + } + + return { + historyHash: historyHash, + backStack: function() { return backStack; }, + forwardStack: function() { return forwardStack }, + getPlayer: getPlayer, + initialize: function(src) { + _initialize(src); + }, + setURL: function(url) { + document.location.href = url; + }, + getURL: function() { + return document.location.href; + }, + getTitle: function() { + return document.title; + }, + setTitle: function(title) { + try { + backStack[backStack.length - 1].title = title; + } catch(e) { } + //if on safari, set the title to be the empty string. + if (browser.safari) { + if (title == "") { + try { + var tmp = window.location.href.toString(); + title = tmp.substring((tmp.lastIndexOf("/")+1), tmp.lastIndexOf("#")); + } catch(e) { + title = ""; + } + } + } + document.title = title; + }, + setDefaultURL: function(def) + { + defaultHash = def; + def = getHash(); + //trailing ? is important else an extra frame gets added to the history + //when navigating back to the first page. Alternatively could check + //in history frame navigation to compare # and ?. + if (browser.ie) + { + window['_ie_firstload'] = true; + var sourceToSet = historyFrameSourcePrefix + def; + var func = function() { + getHistoryFrame().src = sourceToSet; + window.location.replace("#" + def); + setInterval(checkForUrlChange, 50); + } + try { + func(); + } catch(e) { + window.setTimeout(function() { func(); }, 0); + } + } + + if (browser.safari) + { + currentHistoryLength = history.length; + if (historyHash.length == 0) { + historyHash[currentHistoryLength] = def; + var newloc = "#" + def; + window.location.replace(newloc); + } else { + //alert(historyHash[historyHash.length-1]); + } + //setHash(def); + setInterval(checkForUrlChange, 50); + } + + + if (browser.firefox || browser.opera) + { + var reg = new RegExp("#" + def + "$"); + if (window.location.toString().match(reg)) { + } else { + var newloc ="#" + def; + window.location.replace(newloc); + } + setInterval(checkForUrlChange, 50); + //setHash(def); + } + + }, + + /* Set the current browser URL; called from inside BrowserManager to propagate + * the application state out to the container. + */ + setBrowserURL: function(flexAppUrl, objectId) { + if (browser.ie && typeof objectId != "undefined") { + currentObjectId = objectId; + } + //fromIframe = fromIframe || false; + //fromFlex = fromFlex || false; + //alert("setBrowserURL: " + flexAppUrl); + //flexAppUrl = (flexAppUrl == "") ? defaultHash : flexAppUrl ; + + var pos = document.location.href.indexOf('#'); + var baseUrl = pos != -1 ? document.location.href.substr(0, pos) : document.location.href; + var newUrl = baseUrl + '#' + flexAppUrl; + + if (document.location.href != newUrl && document.location.href + '#' != newUrl) { + currentHref = newUrl; + addHistoryEntry(baseUrl, newUrl, flexAppUrl); + currentHistoryLength = history.length; + } + + return false; + }, + + browserURLChange: function(flexAppUrl) { + var objectId = null; + if (browser.ie && currentObjectId != null) { + objectId = currentObjectId; + } + pendingURL = ''; + + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + try { + pl[i].browserURLChange(flexAppUrl); + } catch(e) { } + } + } else { + try { + getPlayer(objectId).browserURLChange(flexAppUrl); + } catch(e) { } + } + + currentObjectId = null; + } + + } + +})(); + +// Initialization + +// Automated unit testing and other diagnostics + +function setURL(url) +{ + document.location.href = url; +} + +function backButton() +{ + history.back(); +} + +function forwardButton() +{ + history.forward(); +} + +function goForwardOrBackInHistory(step) +{ + history.go(step); +} + +//BrowserHistoryUtils.addEvent(window, "load", function() { BrowserHistory.initialize(); }); +(function(i) { + var u =navigator.userAgent;var e=/*@cc_on!@*/false; + var st = setTimeout; + if(/webkit/i.test(u)){ + st(function(){ + var dr=document.readyState; + if(dr=="loaded"||dr=="complete"){i()} + else{st(arguments.callee,10);}},10); + } else if((/mozilla/i.test(u)&&!/(compati)/.test(u)) || (/opera/i.test(u))){ + document.addEventListener("DOMContentLoaded",i,false); + } else if(e){ + (function(){ + var t=document.createElement('doc:rdy'); + try{t.doScroll('left'); + i();t=null; + }catch(e){st(arguments.callee,0);}})(); + } else{ + window.onload=i; + } +})( function() {BrowserHistory.initialize();} ); Index: lams_flex/LamsAuthor/html-template/history/historyFrame.html =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/html-template/history/historyFrame.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/html-template/history/historyFrame.html 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,29 @@ + + + + + + + + Hidden frame for Browser History support. + + Index: lams_flex/LamsAuthor/src/LamsAuthor.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/LamsAuthor.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/LamsAuthor.mxml 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/assets/css/activities.css =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/css/Attic/activities.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/css/activities.css 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,7 @@ +/* CSS file */ + + +vbox.toolActivity { + background-color: green; + +} Index: lams_flex/LamsAuthor/src/assets/css/learningLibrary.css =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/css/learningLibrary.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/css/learningLibrary.css 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,66 @@ +/* CSS file */ + +.linkButtonWindowShade { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; +} + +.linkButtonStyle { + corner-radius:10; + fill-alphas:1,1; + padding-left:10; + +} + +.informative { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; + roll-over-color:#FFEEC8; + selectionColor:#FFEEC8; + +} + +.reflective { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; + roll-over-color:#DDFCB1; + selectionColor:#DDFCB1; +} + +.collaborative { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + use-roll-over: false; + roll-over-color:#FFFDBE; + selectionColor:#FFFDBE; +} + +.assessment { + headerClass:ClassReference('mx.controls.LinkButton'); + header-style-name: linkButtonStyle; + drop-shadow-enabled:true; + corner-radius:10; + border-style:solid; + font-weight:bold; + roll-over-color:#E9E2F5; + selectionColor:#E9E2F5; +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/configData.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/configData.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/configData.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1 @@ +
getConfigData3defaultDefaultlimeLimerubyRubyen_AUEnglish (AU)cy_GBWelsh (GB)frFran&#xe7;aisesEspanolmi_NZMaori (NZ)zhChineseitItalianpt_BRPortuguese (BR)deGermannoNorwegiankoKoreansvSwedishplPolishbgBulgarianthThaidefaulten6000001.142 \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/contributorData.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/contributorData.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/contributorData.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1,147 @@ +
getContributorList3Thành Bùi + + + Tuan Son + + + Viettien Soft + + + Ha VuAnton Vychegzhanin + + + Andrey BalanJens Bruun KofoedAbdel-Elah Al-AyyoubAl-Faisal El-Dajani + + + Arbaoui AhmedRob Joris + + + Raoul TeeuwenSpyros Papadakis (special thanks)Eleni Rossiou + + + Stelios Skourtis + + + Tatania BekouKittipong Phumpuang + + + Polawat OuilapanDaniel DenevGyula PappPeter Gogh + + + Tamas KeresztesAdam StecykSebastian Komorowski + + + Marcin ChojnowskiJong-Dae Park + + + Jong-Ki LeeAnders BerggrenErik Engh (special thanks!)Edoardo MontefuscoLaura PetrilloRoberta Gaeta (special thanks!)Massimo AngeloniRosella BaldazziIda Taci + + + Silvia Flaim + + + Mario Mattioli + + + Daniela Castrataro (special thanks!) + + + Anna MontefuscoNadia Spang Bovey + + + Benjamin Gay + + + Pascal Gibon + + + Daniel Schneider + + + Laurence VignolletFei YangYi ZhouLi Yan + + + Wei Guo + + + Lihua Guo + + + + + + Long-chuan Chen + + + + + Eric Hsin + + + Alexia Chang + + + Cheng Bo Chuan + + Ralf HilgenstockCarlos MarceloErnie Ghiglione + + + Gregorio Rodríguez Gomez + + + Elena de Miguel GarciaKristian BesleyPaulo GouveiaCharles Niza + + + Marcio Soares + + + Luciana OliveiraRobin Ohia + + + + + Haruhiko Taira + + + + + Minoru Akiyama + + + + + + + Mohammad Fahmi Adam + + + + + Gonca Kızılkaya + + + + + Darius Staigys + + + + + Fiona Malikoff + + + Ernie Ghiglione + + + + Jun-Dir Liew + + James DalzielRobyn PhilipBronwen DalzielAngela VoermanKaren Baskett + + + Leanne Maria Cameron + + + Jeremy PageMichelle O'ReillyFiona MalikoffDapeng NiOzgur DemirtasJun-Dir LiewMitchell SeatonAnthony SukkarPradeep SharmaYoichi TakayamaErnie GhiglioneFei YangDavid CaygillMai Ling TruongAnthony XiaoJacky FangManpreet MinhasChris PerfectDaniel CarlierLuke Foxton + + \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/defaultTheme.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/defaultTheme.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/defaultTheme.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1 @@ +
0x33364810Verdana0x669BF20x669BF20x669BF2insetdefaultbutton0x3336489Verdana0xBFFFBF0xBFFFBF0xBFFFBF0x669BF2label0x33364812VerdanaPIlabel0x33364810VerdanaCALabel0x33364811VerdananoneEndGatelabel0x3336487VerdanaLFWindow0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFinsettreeview0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFElasticdatagrid0x33364814Verdana0xBFFFBF0xBFFFBF0xBFFFBFElasticcombo0x33364811Verdana0xBFFFBF0xBFFFBF0xBFFFBFpicombo0x3336489Verdana0xBFFFBF0xBFFFBF0xBFFFBFLFMenuBar0x33364811Verdana0xBFFFBF0xBFFFBF0xBFFFBFBGPaneloutset0xC2D5FEFlowPanelnone0xC2D5FEWZPaneloutset0xDBE6FDMHPanelnone0xDBE6FDTAPaneloutset0xC2D5FE0x000000scrollpane0x669BF2textarea0x333648Verdana10CanvasPanel0xFCFCFCACTPanelNone0xC2D5FEACTPanel0None0xE1E7E7ACTPanel1None0xC2D5FEACTPanel2None0xFFFDBEACTPanel3None0xDDFCB1ACTPanel4None0xFFEEC8ACTPanel5None0xE9E2F5OptActContainerPanelinset0x25a56fOptActPanelnone0xd8ffefparallelHeadPaneloutset0x4684F7OptHeadPaneloutset0x4684F7ACTPanelNegativeNone0x000000smallLabel0x333648 10 VerdanaTAPanelSelected0x1B6BA7redLabel0xFF0000 12 VerdanaboldTAPanelRollover0xFFFFFFoutsetBGPanelShadow0xAFC8FFCAHighlightBorder0x266DEELTVLearnerText0x555555Verdana11bold0xE7EEFEsolidAboutDialogScpGeneralItem0x66666611VerdanaAboutDialogScpHeaderItem0x66666611VerdanaboldAboutDialogPanel0xFFFFFFnoneAlertDialog1000100010001000IndexBar0x1647BEIndexButtonTahoma12IndexTextFieldTahoma120x333333progressBar0xEAF9FF0x0033660xC4D6FF0x003366branchingDiagram0x0000000x0000000xCC0000BlueTextArea0xC2D5FELightBlueTextArea0x669BF2None \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/preloaderStyle.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/preloaderStyle.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/preloaderStyle.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1 @@ + \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/ar_JO_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleأدوات الانشطةTitle for Activity Toolkit Panelal_alertتحذيرGeneric title for Alert windowal_cancelإلغاءTo Confirm title for LFErroral_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on the alert dialogapp_chk_langloadبيانات اللغة لم تحمل بعدmessage for unsuccessful language loadingapp_chk_themeloadبيانات الموضوع لم تحمل بعدmessage for unsuccessful theme loadingapp_fail_continueالبرنامج لا يمكنه الاستمرار، الرجاء الاتصال بالدعم الفنيmessage if application cannot continue due to any errorchosen_grp_lblالمنتقىLabel for the grouping drop down in the PropertyInspectorcopy_btnنسخToolbar &gt; Copy Buttoncv_invalid_design_savedتصميمك ليس صحيح ولكنة حفظ، انقر على "مشاكل" للتحقق من الخطاءMessage when an invalid design has been savedcv_invalid_trans_targetلا يمكنك رسم نقلة لهذا العنصرError message for when transition tool is dropped outside of valid target activitycv_show_validationمشاكلThe button on the confirm dialogcv_valid_design_savedمبروك ... تم حفظ تصميمك بنجاح Message when a valid design has been saveddb_datasend_confirmشكرا على ارسال البيانات إلى الخادمMessage when user sucessfully dumps data to the serverdelete_btnحذفLabel for Delete buttongate_btnبوابةToolbar &gt; Gate Buttongroup_btnمجموعةToolbar &gt; Group Buttongrouping_act_titleتجميعDefault title for the grouping activityld_val_activity_columnنشاطThe heading on the activity in the ValidationIssuesDialogld_val_doneانتهىThe button label for the dialogld_val_issue_columnمشاكلThe heading on the issue in the ValidationIssuesDialogld_val_titleقضايا التحققThe title for the dialoglicense_not_selectedلم يتم إختيار رخصة - الرجاء اختيار واحدةShown if no license is selected in the drop down in workspacemnu_editتحريرMenu bar Editmnu_edit_copyنسخقMenu bar Edit &gt; Copymnu_edit_cutقصMenu bar Edit &gt; Cutmnu_edit_pasteلصقMenu bar Edit &gt; Pastemnu_edit_redoإعادةMenu bar Edit &gt; Redomnu_edit_undoإلغاءMenu bar Edit &gt; Undomnu_fileملفMenu bar Filemnu_file_closeإعلاقMenu bar Closemnu_file_newجديدMenu bar Newmnu_file_openفتحMenu bar Openmnu_file_saveحفظMenu bar savemnu_file_saveasحفظ بإسم ...Menu bar Save asmnu_helpتعليماتMenu bar Helpmnu_help_abtعن لامسMenu bar Aboutmnu_toolsأدواتMenu bar Toolsmnu_tools_optارسم اختياريMenu bar Optionalmnu_tools_prefsتفضيلاتMenu bar preferencesmnu_tools_transارسم نقلة Menu bar draw transitionnew_btnجديدToolbar &gt; New Buttonnew_confirm_msgهل انت متأكد من انك تريد مسح التصميم عن الشاشة؟Msg when user clicks new while working on the existing designnone_act_lblلا شيء No gate activity selectedopen_btnفتحToolbar &gt; Open Buttonoptional_btnاختياريToolbar &gt; Optional Buttonpaste_btnلصقToolbar &gt; Paste Buttonperm_act_lblصلاحيةLabel for permission gate activitypi_activity_type_gateنشاط البوابةActivity type for gate in PIpi_activity_type_groupingنشاط التجميعActivity type for grouping in Property Inspectorpi_definelaterعرف لاحقاLabel for Define later for PIpi_end_offsetاغلق البوابةEnd offset labelpi_group_typeنوع التجميعProperty Inspector Grouping type drop downpi_hoursساعاتHours label in Property Inspectorpi_lbl_currentgroupالتجميع الحاليCurrent grouping label for PIpi_lbl_descالوصفDescription Label for PIpi_lbl_groupالتجميعGrouping label for PIpi_lbl_titleالعنوانTitle label for PIpi_max_actنشاطات الحد الاقصىlabel for maximum Activitiespi_min_actنشاطات الحد الادنىlabel for Minimum activitiespi_minsدقائقMins label in teh property inspectorpi_no_groupingلا شيء Combo title for no groupingpi_num_learnersمتعلمو الارقامPI Num learners labelpi_optional_titleنشاط اختياريTitle for oprional activity property inspectorpi_runofflineنفذ بشكل غير مباسرLabel for Run Oflinepi_start_offsetافتح بوابةStart offset labelpi_titleخصائصOn the title bar of the PIprefix_copyofنسخة منPrefix for copy paste command for canvas activitiesprefs_dlg_cancelالغاء6prefs_dlg_lng_lblاللغة7prefs_dlg_okنعم5prefs_dlg_theme_lblالموضوع 8prefs_dlg_titleالتفضيلات4preview_btnاستعراضToolbar &gt; Preview Buttonproperty_inspector_titleخصائصOn the title bar of the PIrandom_grp_lblعشوائيLabel for the grouping drop down in the PropertyInspectorrename_btnإعادة تسميةLabel for Rename Buttonsave_btnحفظToolbar &gt; Save buttonsched_act_lblجدولLabel for schedule gate activitysynch_act_lblزامن Used as a label for the Synch Gate Activity Typetk_titleأدوات النشاطاتLabel for Activities Toolkit Paneltrans_btnنقلهToolbar &gt; Transition Buttontrans_dlg_cancelإلغاءCancel button on transition dialogtrans_dlg_gateتزامنHeader for the transition props dialogtrans_dlg_gatetypecmbنوعGate type combo labeltrans_dlg_okنعمOK Button on transition dialogtrans_dlg_titleنقلهTitle for the transition properties dialogws_Rootالمجلد الرئيسيRoot folder title for workspacews_chk_overwrite_resourceانتبه انت على وشك حذف سلسة!ws_click_folder_fileالرجاء النقر على مجلد للحفظ داخله أو على تصميم لحذفهError msg if no folder or file is selectedws_copy_same_folderالمصدر والمقصد هي نفس المجلداتThe user has tried to drag and drop to the same placews_dlg_cancel_buttonإلغاء2ws_dlg_filenameاسم الملفLabel for File name in workspace windowws_dlg_location_buttonالوقعWorkspace dialogue Location btn labelws_dlg_ok_buttonنعمWsp Dia OK Button labelws_dlg_open_btnفتحWsp Dia Open Button labelws_dlg_properties_buttonخصائصWorkspace dialogue Properties btn labelws_dlg_save_btnحفظWsp Dia Save Button labelws_dlg_titleمساحه عمل 0ws_newfolder_cancelإلغاءCancel on the new folder name diaws_newfolder_insالرجاء إدخال اسم مجلد جديدInstructions on the new name pop upws_newfolder_okنعمOK on the new folder name diaws_no_permissionعفواً ... ليس لديك صلاحيات لحذف هذا المصررMessage when user does not have write permission to complete actionws_rename_insالرجاء ادخال الاسم الجديدMessage of the new name for the userws_tree_mywspمساحه عملي The root level of the treews_tree_orgsمجموعايShown in the top level of the tree in the workspacews_view_license_buttonعرضTo show the license to the useract_lock_chkالرجاء فتح حاوية النشاط الاختياري قبل اسناد هذا النشاط كنشاط اختياري Alert Message if user drags the activity to locked optional activity container sys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج الى اعاده بدء مؤلف لامس لاستمرار. هل تريد حفظ المعلومات التاليه عن الخطا للمساعدة في تحديد المشكله؟ Common System error message finish paragraphsys_errorخطإ في النظامSystem Error elert window titlepi_num_groupsعدد المجموعاتNumber of groups in Property inspectorpi_parallel_titleنشاط موازيTitle for parallel activity property inspectoropt_activity_titleنشاط اختياريTitle for Optional Activity Containerlbl_num_activitiesنشاطاتreplacement for word activitiesal_sendإرسلSend button label on the system error dialogal_cannot_move_activityعفواً ... لا يمكنك نقل هذا النشاطAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkلا يمكنك اضافة نشاط بوابة كنشاط اختياريError message when user drags gate activity over to optional containerprefix_copyof_countنسخة من ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidلا يمكنك حفظ التصميم في هذا المجلد. الرجاء اختيار مجلد فرعي آخرAlert message if root My Workspace folder is selected to save a design in.ws_click_file_openالرجاء النقر على تصميم للفتحAlert message if folder tried to be opened.ws_license_lblرخصةLabel for Licence drop down on workspace properties tab viewws_license_comment_lblمعلومات اضافية عن الرخصةLabel for Licence Comment description below license drop downcv_invalid_optional_activityحذف نقلات من والى {0} قبل تعريفها كنشاط اختياريAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingالنشاط الثاني للنقلة مفقودError message when target activity for transition is missingcv_invalid_trans_target_from_activityالنقلة من {0} موجودة اصلاError message when a transition from the activity already existcv_invalid_trans_target_to_activityالنقلة لـ {0} موجدة اصلاError message when a transition to the activity already existbranch_btnفرعLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnتدفقLabel for Flow button in Toolbarmnu_file_importاستردادMenu bar Importcv_design_export_unsavedلا يمكنك تصدير تمصيم غير محفوظAlert message when trying to export can unsaved design.cv_design_unsavedلقد تغير التصميم. هل ترغب بالاستمرار دون الحفظ؟Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportتصديرMenu bar Exportws_chk_overwrite_existingهذا المجلد يحتوي على ملف بالاسم {0}Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderلا يمكن استخدام هذا المجلدAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitخروجFile Menu Exitws_no_file_openلا يوجد ملفاتAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceلا يمكنك استخدام سلاسل دائريةError message when a transition from one activity to another is creating a circular loopbin_tooltipإلقي نشاط في هذه السلة لإزالته من سلسلة النشاطاتTool tip message for canvas binnew_btn_tooltipمسح التسلسل الحالي واعادة استخدام مساحه العملTool tip message for new button in toolbaropen_btn_tooltipعرض ملف الحوار لفتح سلسلة نشاطTool tip message for open button in toolbarsave_btn_tooltipحفظ سريع لسلسله النشاط الحاليtool tip message for save button in toolbarcopy_btn_tooltipنسخ النشاط المحددtool tip message for copy button in toolbarpaste_btn_tooltipلصق نسخة من النشاط المحددtool tip message for paste button in toolbartrans_btn_tooltipاستخدم هذا القلم لرسم نقلة بين نشاطينtool tip message for transition button in toolbaroptional_btn_tooltipانشاء مجموعه من الانشطه الاختياريه tool tip message for optional button in toolbargate_btn_tooltipانشاء نقطه التوقف tool tip message for gate button in toolbarbranch_btn_tooltipانشاء فرع tool tip message for branch button in toolbarflow_btn_tooltipانشاء ضوابط لتدفق الانشطه tool tip message for flow button in toolbargroup_btn_tooltipانشاء نشاط لتكوين المجموعاتtool tip message for group button in toolbarpreview_btn_tooltipاستعراض سلسلة كما سيراها المتعلمTool tip message for preview button in toolbarcv_activity_dbclick_readonlyلا يمكنك تحرير ادوات تصميم مخصصةللقراءة فقط. الرجاء حفظ نسخه من التصميم والمحاولة مره اخري. Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblللفرائة فقطLabel for top left of canvas shown when a read-only design is open.al_empty_designعفواً ... لا يمكنك حفظ تصميم فارغalert message when user want to save an empty designcv_autosave_err_msgحدث خطا اثناء محاولته الحفظ التلقائي للتصميم. اذا يستمر هذا الخطا الرجاء الاتصال بمدير النظام Alert error message when auto-save fails.cv_autosave_rec_msgانت عن وشك استرداد تصميم ضائع أو غير محفوظ. سيتم مسح التصميم الحالي. استمرار؟ Message informing users that they have recovered data for a design.cv_autosave_rec_titleتحذيرAlert title for auto save recovery message.mnu_file_recoverاسترجع ...Menu bar Recovercv_activity_copy_invalidعفوا ! لا يمكنك نسخ هذا النشاط. Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidعفوا ! لا يمكنك لسق هذا النشاط. Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidنأسف! يجب اختيار النشاط قبل النسخAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidعفوا! يجب إختيار النشاط قبل النقر على فتح/تحرير محتوى النشاط من قائمة الزر الايمن للفارة. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgهل انت متأكد من حذف الملف أو المجلد؟Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyعفواً ... لا يمكنك حفظ التصميم بدون اسم.Error message when user try to save a design with no file namews_entre_file_nameالرجاء إدخال اسم التصميم ومن ثم النقر على زر الحفظ.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedلم يتم العثور على صفحة التعليمات {0} Alert message when a tool activity has no help url defined.cv_untitled_lblبدون اسم - 1Label for Design Title bar on canvasmnu_help_helpتعليمات التأليفlabel for menu bar Help - Authoring Help optionccm_open_activitycontentفتح أو تحرير محتوى النشاطLabel for Custom Context Menuccm_copy_activityنسخ النشاطLabel for Custom Context Menuccm_paste_activityلصق النشاطLabel for Custom Context Menuccm_piمعاين الخصائصLabel for Custom Context Menuccm_author_activityhelpتعليمات مؤلف النشاطLabel for Custom Context Menuws_dlg_descriptionالوصفLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateلا شيءDrop down default for gate typepi_daysايامDays label in property inspector for gate tool \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/bg_BG_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/bg_BG_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/bg_BG_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleНабор инструменти за учебни дейностиTitle for Activity Toolkit Panelal_alertПредупреждениеGeneric title for Alert windowal_cancelОтказванеTo Confirm title for LFErroral_confirmПотвърждаванеTo Confirm title for LFErroral_okДАOK on the alert dialogapp_chk_langloadДанните за езика не бяха заредениmessage for unsuccessful language loadingapp_chk_themeloadДанните за темата не бяха заредениmessage for unsuccessful theme loadingapp_fail_continueПриложението не може да продължи работа. Моля, обърнете се към специалистие по поддръжка на системата.message if application cannot continue due to any errorchosen_grp_lblИзбранLabel for the grouping drop down in the PropertyInspectorcopy_btnКопиранеToolbar &gt; Copy Buttoncv_invalid_design_savedДизайнът ви вече все още не е валиден, но е съхранен, щракнете на "Есета" за да видите какво не е наред.Message when an invalid design has been savedcv_invalid_trans_targetНе е възможно да създадете преход към този обект.Error message for when transition tool is dropped outside of valid target activitycv_show_validationЕсетеThe button on the confirm dialogcv_valid_design_savedСега вашия дизайнвече е валиден и съхраненMessage when a valid design has been saveddb_datasend_confirmБлагодаря за изпращането на данните до сървъраMessage when user sucessfully dumps data to the serverdelete_btnИзтриванеLabel for Delete buttongate_btnГейтToolbar &gt; Gate Buttongroup_btnГрупаToolbar &gt; Group Buttongrouping_act_titleГрупиранеDefault title for the grouping activityld_val_activity_columnДейностThe heading on the activity in the ValidationIssuesDialogld_val_doneГотовоThe button label for the dialogld_val_issue_columnЕсеThe heading on the issue in the ValidationIssuesDialogld_val_titleЕсета по валидациятаThe title for the dialoglicense_not_selectedМоля, изберете лиценз за този дизайнShown if no license is selected in the drop down in workspacemnu_editРедактиранеMenu bar Editmnu_edit_copyКопиранеMenu bar Edit &gt; Copymnu_edit_cutИзрязванеMenu bar Edit &gt; Cutmnu_edit_pasteВмъкванеMenu bar Edit &gt; Pastemnu_edit_redoОтновоMenu bar Edit &gt; Redomnu_edit_undoОтмянаMenu bar Edit &gt; Undomnu_fileФайлMenu bar Filemnu_file_closeЗатварянеMenu bar Closemnu_file_newНовMenu bar Newmnu_file_openОтварянеMenu bar Openmnu_file_revertНазадMenu bar Revertmnu_file_saveСъхраняванеMenu bar savemnu_file_saveasСъхраняване като...Menu bar Save asmnu_helpПомощна информацияMenu bar Helpmnu_help_abtОтносноMenu bar Aboutmnu_toolsИнструментиMenu bar Toolsmnu_tools_optДопълнително изчертаванеMenu bar Optionalmnu_tools_prefsПредпочитанияMenu bar preferencesmnu_tools_transИзчертаване на преходMenu bar draw transitionnew_btnНовToolbar &gt; New Buttonnew_confirm_msgСигурни ли сте, че желаете да изтриете вашият дизайн от екрана?Msg when user clicks new while working on the existing designnone_act_lblБезNo gate activity selectedopen_btnОтварянеToolbar &gt; Open Buttonoptional_btnНезадължителенToolbar &gt; Optional Buttonpaste_btnВмъкване (залепване)Toolbar &gt; Paste Buttonperm_act_lblПозволениеLabel for permission gate activitypi_activity_type_gateГейт дейностActivity type for gate in PIpi_activity_type_groupingДейност групиранеActivity type for grouping in Property Inspectorpi_definelaterДефиниране по-късноLabel for Define later for PIpi_end_offsetЗатваряне на гейтEnd offset labelpi_group_typeТип групиранеProperty Inspector Grouping type drop downpi_hoursЧасовеHours label in Property Inspectorpi_lbl_currentgroupТекущо групиранеCurrent grouping label for PIpi_lbl_descОписаниеDescription Label for PIpi_lbl_groupГрупиранеGrouping label for PIpi_lbl_titleЗаглавиеTitle label for PIpi_max_actМаксимална активностпо дейносиlabel for maximum Activitiespi_min_actМинимална активностпо дейносиlabel for Minimum activitiespi_minsМинутиMins label in teh property inspectorpi_no_groupingБез`Combo title for no groupingpi_num_learnersБрой обучаемиPI Num learners labelpi_optional_titleНезадължителна дейностTitle for oprional activity property inspectorpi_runofflineРабота офлайнLabel for Run Oflinepi_start_offsetОтваряне гейтStart offset labelpi_titleСвойстваOn the title bar of the PIprefix_copyofКопиране наPrefix for copy paste command for canvas activitiesprefs_dlg_cancelОтказване6prefs_dlg_lng_lblЕзик7prefs_dlg_okДА5prefs_dlg_theme_lblТема8prefs_dlg_titleПредпочитания4preview_btnПредварителен прегледToolbar &gt; Preview Buttonproperty_inspector_titleСвойстваOn the title bar of the PIrandom_grp_lblПроизволноLabel for the grouping drop down in the PropertyInspectorrename_btnПреименуванеLabel for Rename Buttonsave_btnСъхраняванеToolbar &gt; Save buttonsched_act_lblГрафикLabel for schedule gate activitysynch_act_lblСинхронизиранеUsed as a label for the Synch Gate Activity Typetk_titleНабор инструменти за учебни дейностиLabel for Activities Toolkit Paneltrans_btnПреходToolbar &gt; Transition Buttontrans_dlg_cancelОтказванеCancel button on transition dialogtrans_dlg_gateСинхронизиранеHeader for the transition props dialogtrans_dlg_gatetypecmbТипGate type combo labeltrans_dlg_okДАOK Button on transition dialogtrans_dlg_titleПреходTitle for the transition properties dialogws_RootИме на Root директорията за работното пространство Root folder title for workspacews_chk_overwrite_resourceВнимавайте относно пренаисването на ресурс!ws_click_folder_fileМоля, щракнете на една от двете алтернативи: "Директория"- за да съхраните в нея, или "Дизайн" за презапишетеError msg if no folder or file is selectedws_copy_same_folderИзточникът и направлениетоThe user has tried to drag and drop to the same placews_dlg_cancel_buttonОтказване2ws_dlg_filenameИме на файлLabel for File name in workspace windowws_dlg_location_buttonМестонахождениеWorkspace dialogue Location btn labelws_dlg_ok_buttonДАWsp Dia OK Button labelws_dlg_open_btnОтварянеWsp Dia Open Button labelws_dlg_properties_buttonСвойстваWorkspace dialogue Properties btn labelws_dlg_save_btnСъхраняванеWsp Dia Save Button labelws_dlg_titleРаботно пространство0ws_newfolder_cancelОтказванеCancel on the new folder name diaws_newfolder_insМоля въведете име на нова директорияInstructions on the new name pop upws_newfolder_okДАOK on the new folder name diaws_no_permissionСъжаляваме, но вие нямате позволение да пишете в рамките на този ресурсMessage when user does not have write permission to complete actionws_rename_insМоля, въведете новото имеMessage of the new name for the userws_tree_mywspМоето работно пространствоThe root level of the treews_tree_orgsОбучаващи организацииShown in the top level of the tree in the workspacews_view_license_buttonПреглед лиценз на потребителTo show the license to the useract_lock_chkПреди определянето на тази учебна дейност като незадължителна, отключете контейнера "Незадължителна Дейност"Alert Message if user drags the activity to locked optional activity container sys_error_msg_startНастъпи следната системна грешка:Common System error message starting linesys_error_msg_finishЗа да продължите е необходимо да "рестартирате" модула "Автор" на LAMS. Желаете ли да съхраните информацията за възникналата грешка? Тази информация би могла да се окаже полезна за нейното отстраняване. Common System error message finish paragraphsys_errorСистемна ГрешкаSystem Error elert window title \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/ca_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/ca_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/ca_ES_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_lbl_titleTítolpi_max_actMàx {0}mnu_tools_optActivitat opcionalcv_trans_readOnlyLa transició no pot ser {0}. El destí es de només lecturacv_invalid_optional_activityCal eliminar l'origen i destí de les transicions de {0} abans de definirla com a activitat opcionalal_activity_paste_invalidHo sentim, no es pot enganxar aquest tipus d'activitatsupport_act_titleActivitat de suportsupport_msg_no_connectionLes activitats de siport no es poden conectar a un altre activitatsupport_msg_invalid_childLes activitats de tipus {0} no es poden afegir com a activitat de suportsupport_msg_cannot_be_childNo es permès dipositar una activitat de suport dins d'una altre acvtivitatis_remove_warning_msgAtenció !! Aquesta lliço està a punt de ser esborrada: Desitja mantenir aquesta lliçó coma {0}?branch_mapping_dlg_condition_linked_msg{0} està vinculat amb una branca existent. Desitja continuar?cv_activityProtected_activity_link_msg{0} està vinculat a {1}branch_mapping_dlg_group_col_lblGruptrans_dlg_nogateCappi_daysDiesal_group_name_invalid_blankCal assignar un nom al grupcv_invalid_trans_diff_branchesNo es poden crear transicions entre activitats que es trobin en branques diferentsto_conditions_dlg_gte_lblMajor que o igual ato_conditions_dlg_lte_lblMenor que o igual apreview_btn_tooltip_disabledCal desar la seqüència abans de pre visualitzar-lato_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_range_lblIntervalto_conditions_dlg_defin_long_typeintervalto_conditions_dlg_remove_item_btn_lblEsborrarchosen_grp_lblEscollir en el seguimentoptional_act_btnActivitatpi_definelaterDefineix en el seguimentto_conditions_dlg_to_lblDes decv_autosave_err_msgS'ha produït un error al intentar guardar automàticament el seu disseny. Si us plau, augmenti les propietats d'emmagatzemament del seu reproductor de Flash. cv_autosave_rec_msgVostè està a punt de recuperar un disseny perdut o que no s'ha desat. El disseny actual es perdrà. Vol continuar?cv_activity_copy_invalidHo sentim! No es pot copiar una activitat que depèn d'un altre.cv_activity_cut_invalidHo sentim! No es pot tallar una activitat que depèn d'un altre.al_activity_copy_invalidHo sentim! cal seleccionar l'activitat abans de copiar-laws_del_confirm_msgEsta segur de que vol esborrar aquest arxiu / carpeta?branch_mapping_dlg_branch_col_lblBrancaws_file_name_emptyHo sentim! No es pot desar un disseny que no té nom.ccm_author_activityhelpAjut sobre activitats pels autorsws_entre_file_nameSi us plau, introdueixi el nom del disseny i faci "clic" en el boto Guardarcv_untitled_lblSense títol - 1mnu_help_helpAjut pels autorsccm_piInspecció de propietats...validation_error_activityWithNoTransitionUna activitat ha de tenir una transició d'entrada o de sortidato_condition_untitled_item_lblSense títol {0}cancel_btn_tooltipTornar al seguiment de la lliçóbranching_act_titleRamificaciógroupnaming_dialog_instructions_lblFaci "clic" en el nom per modificar el seu valor.pi_branch_tool_acts_lblEntrada (Eina)to_conditions_dlg_from_lblDes depi_define_monitor_cb_lblDefinir en el seguimentpi_activity_type_branchingRamificar activitatpi_branch_typeTipus de ramificaciótool_branch_act_lblResultats de l'alumneto_condition_start_valueValor inicialto_condition_end_valueValor finalto_condition_invalid_value_direction{0} no pot ser més gran que {1}.pi_no_seq_actNombre de seqüènciesbranch_mapping_dlg_condition_col_lblCondicióto_conditions_dlg_title_lblCrear condicions de sortidaal_doneFetcondmatch_dlg_cond_lst_lblCondicionspi_defaultBranch_cb_lblPer defecteto_conditions_dlg_add_btn_lbl+ Afegirto_conditions_dlg_clear_all_btn_lblNetejar totbranch_mapping_no_branch_msgNo s'ha seleccionat cap brancabranch_mapping_no_condition_msgNo s'ha seleccionat cap condicióbranch_mapping_dlg_condition_col_value_exactValor exacte de {0}branch_mapping_no_groups_msgNo s'han seleccionat cap grupbranch_mapping_dlg_branches_lst_lblBranquesgroupmatch_dlg_groups_lst_lblGrupsgroupnaming_dlg_title_lblAnomenar grupspi_group_naming_btn_lblAnomenar grupssequence_act_titleSeqüènciachosen_branch_act_lblSelecció del docental_continueContinuarbranch_mapping_dlg_condition_linked_allHi han condiconsbranch_mapping_dlg_condition_linked_singleAquesta condició éspi_minsMinutspi_no_groupingCappi_num_learnersNombre d'estudiantspi_optional_titleActivitat opcionalpi_runofflineActivitatpi_start_offsetObrir portapi_titlePropietatsprefix_copyofCòpia deprefs_dlg_cancelCancel·larprefs_dlg_lng_lblIdiomaprefs_dlg_okD'acordprefs_dlg_theme_lblTemaprefs_dlg_titlePreferènciespreview_btnVista prèvia property_inspector_titlePropietatsrandom_grp_lblA l'atzarsave_btnGuardarsched_act_lblTemporitzatsynch_act_lblSincronitzattk_titleJoc d'activitatstrans_btnTransiciótrans_dlg_cancelCancel·lartrans_dlg_gateSincronitzaciótrans_dlg_gatetypecmbTipustrans_dlg_okD'acordal_alertAlertatrans_dlg_titleTransiciócv_invalid_trans_targetVostè no pot crear una transició cap aquest objectenew_confirm_msgEstà segur de que vol netejar el seu disseny de la pantalla?pi_branch_tool_acts_default--Selecció--pi_equal_group_sizesGrups de la mateixa midacompetence_editor_warning_title_existsLa competència amb el títol {0}, ja existeixsequence_act_title_new{0} {1}rename_btnRe anomenarccm_copy_activityCopiar activitatcv_autosave_rec_titleAlertamnu_file_recoverRecuperar...cv_activity_helpURL_undefinedNo es troba la pàgina d'ajut de {0}ccm_open_activitycontentObrir/Editar l'activitatccm_paste_activityEnganxar l'activitatws_dlg_descriptionDescripciócv_close_return_to_ext_srcTancar i tornar a {0}cv_eof_changes_appliedEls canvis s'han aplicat correctament.mnu_file_apply_changesAplicar canvisvalidation_error_inputTransitionType1Aqueta activitat no té una transició d'entradavalidation_error_outputTransitionType1Aqueta activitat no té una transició de sortidacv_invalid_design_on_apply_changesExisteix una o més transicions perdudes.apply_changes_btnAplicar canviscancel_btnCancel·larcv_activity_readOnlyAquesta activitat és de només lecturacv_element_readOnly_action_delEliminatcv_element_readOnly_action_modModificatcv_eof_finish_invalid_msgPer a poder finalitzar la edició el disseny ha de ser vàlid.cv_eof_finish_modified_msgAtenció: El seu disseny ha estat modificat. Desitja tancar-lo sense desar-lo?mnu_file_finishAcabarabout_popup_title_lblSobre - {0}about_popup_version_lblVersióabout_popup_copyright_lblFundacióabout_popup_trademark_lblÉs una marca registrada de {0} Foundation ({1}).stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txt stream_urlhttp://{0}foundation.org pi_activity_type_sequenceSeqüència d'activitat ({0})act_tool_titleJoc d'activitatsal_cancelCancel·laral_confirmConfirmaral_okAcceptarpi_condmatch_btn_lblCrear condicionsopt_activity_seq_titleSeqüències opcionalspi_actActivitatsto_conditions_dlg_condition_items_name_col_lblNomto_conditions_dlg_condition_items_value_col_lblCondicióto_conditions_dlg_options_item_header_lbl[ Opcions]close_mc_tooltipMinimitzargroupnaming_dialog_col_groupName_lblNom del gruprefresh_btnRefrescarto_conditions_dlg_defin_user_defined_typeDefinit per l'usuaricv_invalid_trans_closed_sequenceNo es pot connectar una nova transició a una seqüència tancadacompetence_editor_dlgEditor de competènciescompetences_lblCompetènciescompetence_editor_add_competence_btnAfegircompetence_editor_warning_title_blankEl títol de la competència no pot estar buitmap_comptence_btnMapa de competènciescompetence_mappings_btnMapa de competènciescompetences_mapped_to_act_lblCompetènciesgate_openObertagate_closedTancadaws_dlg_date_modified_lblDarrera modificació: {0}ws_save_title_reserved_charsEl títol no pot contenir caràcters especials: {0}optional_seq_btnSeqüènciabranch_mapping_dlg_condition_col_value_maxMajor que o igual a {0}pi_min_actMin {0}optional_seq_btn_tooltipCrear un grup de seqüències opcionals.pi_optSequence_remove_msg_titleEsborrar seqüèncieslbl_num_sequences{0} - SeqüènciesactivityDrop_optSequence_error_msgSi us plau, arrossegui l'activitat a sobre d'una de les seqüènciesto_conditions_dlg_lt_lblMenor que o igual abranch_mapping_dlg_condition_col_value_minMenor que o igual a {0}pi_seqSeqüènciesto_conditions_dlg_defin_bool_typeVertader/falsws_dlg_insert_btnInserirbranch_mapping_dlg_branch_item_default{0} (per defecte)pi_group_matching_btn_lblAssignar grups a les branquespi_tool_output_matching_btn_lblAssignar condicions a les branquescv_invalid_branch_target_to_activityJa existeix una branca cap a {0}cv_invalid_branch_target_from_activityJa existeix una branca des de {0}learner_choice_grp_lblElecció de l'estudiantcompetence_def_dlgDefinició de les competènciescv_valid_design_savedEnhorabona! - El seu disseny es correcte i ha estat desatws_click_folder_fileSi us plau, faci "click" sobre una carpeta o sobre un arxiu per a sobreescriure'lact_lock_chkSi us plau, desbloquegi el contenidor d'activitats opcionals abans d'assignar l'activitat.sys_error_msg_finishPer continuar cal reiniciar l'eina d'autor de LAMS. Desitja guardar la informació d'aquest error per a contribuir a resoldre el problema?. cv_trans_target_act_missingLa segona activitat de la transició no existeix.cv_design_unsavedEl disseny de l'activitat ha canviat. Vol continuar sense guardar-la?mnu_file_exportExportarws_chk_overwrite_existingAquesta carpeta ja conté un arxiu amb el nom {0}.ws_click_virtual_folderAquesta carpeta no es pot utilitzar.mnu_file_exitSortirws_no_file_openNo s'ha trobat l'arxiu.cv_invalid_trans_circular_sequenceNo li és permès de realitza una seqüència circular.bin_tooltipArrossegui l'activitat a la paperera per esborrar-la de la seqüència.new_btn_tooltipNeteja l'editor i comença amb una nova seqüènciaopen_btn_tooltipMostra el diàleg d'arxius per obrir una seqüència d'activitatssave_btn_tooltipDesar la seqüència d'activitat actualcopy_btn_tooltipCopiar l'activitat seleccionadapaste_btn_tooltipEnganxar una copia de l'activitat seleccionadatrans_btn_tooltipUtilitzi aquest llapis per definir transicions entre les activitats (o premi la tecla CTRL) optional_btn_tooltipCrear un grup d'activitats opcionals.gate_btn_tooltipCrear un punt d'aturadabranch_btn_tooltipCrear una branca (disponible a la v 2.1 de LAMS)flow_btn_tooltipCrear un flux de control de les activitatsgroup_btn_tooltipCrear un grup d'activitatspreview_btn_tooltipVista previa de la seqüència, tal i com la veuran els alumnescv_activity_dbclick_readonlyAquest disseny es només de lectura i no espot editar. Si us plau, salvi'n una copia i torni-ho a intentar.cv_readonly_lblNOmés de lecturaal_empty_designHo sentim, no es pot uardar un disseny buitws_chk_overwrite_resourceAlerta: està a punt de sobreescriure aquesta seqüència!ws_RootArrelws_copy_same_folderLes carpetes d'origen i destí són les mateixesws_dlg_cancel_buttonCancel·larws_dlg_filenameNom de l'arxiuws_dlg_location_buttonLocalitzacióws_dlg_ok_buttonD'acordws_dlg_open_btnObrirws_dlg_properties_buttonPropietatsws_dlg_save_btnGuardarws_dlg_titleEspai de treballws_newfolder_cancelCancel·larws_newfolder_insSi us plau, introdueixi un nou nom de carpetaws_newfolder_okD'acordws_no_permissionHo sentim, vostè no té permís d'escriptura en aquest recursws_rename_insSi us plau, introdueixi un nom nouws_tree_mywspEl meu espai de treballws_tree_orgsEls meus grupsws_view_license_buttonVeuresys_error_msg_startS'ha produït el següent error del sistema: sys_errorError del sistemapi_num_groupsNombre de grupspi_parallel_titleActivitat paral·lelaopt_activity_titleActivitat opcionallbl_num_activities{0} - Activitatsal_sendEnviaral_cannot_move_activityHo sentim, aquesta activitat no es pot moure.cv_gateoptional_hit_chkVostè no pot afegir una porta d'activitat com a activitat opcional.prefix_copyof_countCopia {0} dews_save_folder_invalidVostè no pot guardar el disseny en aquesta carpeta. Si us plau, escolli un sotsdirectori vàlid.ws_click_file_openSi us plau, faci "click" en un disseny per obrir-lo.ws_license_lblLlicènciaws_license_comment_lblInformació addicional sobre la llicènciacv_invalid_trans_target_from_activityJa existeix una transició des de {0}cv_invalid_trans_target_to_activityJa existeix una transició cap a {0} branch_btnBranca flow_btnFluxmnu_file_importImportarcv_design_export_unsavedVostè no pot exportar un disseny abans de guardar-lo.mnu_file_import_communityImportar de la comunitat de LAMSview_students_before_selectionVeure els estudiants abans de la selecció?arrange_act_btnOrganitzar les activitatsapp_chk_langloadLes dades de l'idioma no s'han carregatcv_invalid_design_savedEl seu disseny encara no és vàlid. Faci click en "Temes potencials" per veure el que és incorrecteapp_chk_themeloadLes dades del tema no s'han carregatapp_fail_continueL'aplicació no pot continuar. Si us plau, contacti amb el suportcopy_btnCopiarcv_show_validationTemesdb_datasend_confirmGràcies per enviar dades al servidordelete_btnEsborrargate_btnPortagroup_btnGrupgrouping_act_titleAgruparld_val_activity_columnActivitatld_val_doneFetld_val_issue_columnTemald_val_titleValidació dels temeslicense_not_selectedActualment no hi ha cap llicència selecccionada - Si us plau, seleccionin una mnu_editEditarmnu_edit_copyCopiarmnu_edit_cutTallarmnu_edit_pasteEnganxar mnu_edit_redoRefermnu_edit_undoDesfermnu_fileArxiumnu_file_closeTancarmnu_file_newNoumnu_file_openObrirmnu_file_saveGuardarmnu_file_saveasGuardar com...mnu_helpAjutmnu_help_abtSobre LAMSmnu_toolsEinesmnu_tools_prefsPreferènciesmnu_tools_transDibuixar transiciónew_btnNounone_act_lblCapopen_btnObriroptional_btnOpcionalpaste_btnEnganxarperm_act_lblPermíspi_activity_type_gatePorta d'activitatpi_activity_type_groupingGrup d'activitatspi_end_offsetTancar portapi_group_typeTipus de gruppi_hoursHorespi_lbl_currentgroupGrup actualpi_lbl_descDescripciópi_lbl_groupAgrupamental_group_name_invalid_existingEls noms de grup no poden estar repetitsal_activity_openContent_invalidAtenció !! Cal seleccional l'activitat abans d'obrir-la o editar-la. Es pot veure el menú fent "clic" amb el botó dret en l'activitatvalidation_error_transitionNoActivityBeforeOrAfterUna transició ha de tenir una activitat abans o després validation_error_inputTransitionType2No hi ha activitats sense la transició d'entradavalidation_error_outputTransitionType2No hi ha activitats sense la transició de sortidaapply_changes_btn_tooltipAplica els canvis i torna al seguiment de la lliçócv_edit_on_fly_lblEdició "en viu" support_act_btnSuportabout_popup_license_lblAquest programa és lliure; vostè el pot re distribuir i/o modificar segons els termes establerts en la versió 2 de la Llicència Publica General (GNU, General Public License) publicada per la Free Software Foundation. act_seq_lock_chkSi us plau, desbloquegi el contenidor abans d'assignar-hi l'activitat com a seqüència opcional.condmatch_dlg_title_lblCondicions d'unió per a les branquesbranch_mapping_no_mapping_msgNo s'han seleccionat ramificacions.branch_mapping_auto_condition_msgTotes les condicions s'assignaran a la primera branca, per defecte. branch_mapping_dlg_match_dgd_lblRamificacionsbranch_mapping_dlg_condition_col_valueRang de {0} a {1}pi_mapping_btn_lblAssignar ramificacionsgroupmatch_dlg_title_lblAssignar grups a ramificacionsgroup_branch_act_lblBasat en grupsto_condition_invalid_value_range{0} no pot estar en el rang d'una condició ja existentredundant_branch_mappings_msgAquest disseny conté assignacions a branques que no s'utilitzen i seran esborrades. Desitja continuar?cv_activityProtected_activity_remove_msgPer esborrar-la, si us plau, deseleccioni la ramificació a {0}cv_activityProtected_child_activity_link_msgAquesta activitat {0} te una sots-activitat associada a {1} pi_optSequence_remove_msgLa seqüència(es) que s'esborraran poden contenir activitats (que també s'esborraran). Vol esborrar les seqüències? cv_invalid_optional_seq_activity_no_branchesEsborrant les ramificacions conectades amb {0} abans d'afegir-les en una seqüència opcional.cv_invalid_optional_seq_activityEsborri les transicions de {0} abans d'assignar-hi una seqüència opcional.to_conditions_dlg_defin_item_header_lbl[ Escollir sortida ]mnu_file_insertdesignInserir...to_conditions_dlg_condition_items_update_defaultConditionsVostè està a punt de modificar les condicions de sortida. Això desfarà els vincles de les branques existents. Vol continuar de tota manera?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNos es poden actualitzar les condicions ja que no n'existeixen de previes. Cal definir les condicions per defecte en l'apartat d'autoria.grouping_invalid_with_common_names_msgNo es pot guardar l'activitat de grup {0} perquè conté més d'un grup amb el mateix nom. Si us plau, revisi-ho i torni-ho a provar.condmatch_dlg_message_lblCal triar la branca per defecte fent "clic" a la opció "per defecte" en l'apartat de propietats de la branca.ta_iconDrop_optseq_error_msgNo hi han seqüències en aquest contenidor.cv_invalid_optional_activity_no_branchesEsborri qualsevol transició de {0} abans d'assignar-hi una seqüència opcional.gate_mapping_auto_condition_msgLa reta de condicions s'assignaran a les portes que tenen l'estat de tancat.cv_design_insert_warningAl insertar una nova seqüència s'actualitzarà, automàticamanent, la que ja existia. Per retornar al la seqüència antiga, cal esborrar les noves seqüències afegides a ma. Si no vol canviar la seqüència anterior, premi "Cancel·lar ". En cas contrari, premi "D'acord".al_cannot_move_to_diff_opt_seqPer moure una activitat a un altre seqüència, a seqüències opcionals, primer arrossegui l'activitat fora de l'apartat de Seqüències opcionals, i torni-la a arrossegar a la seva nova ubicació. competence_editor_warning_competence_mappedLa competència que està esborrant està assignada a una o més activitats. Si s'esborra la competència, també s'esborraran les assignacions. Vol continuar?map_gate_conditions_btnAssignació de condicions a les portesal_activity_view_competence_mappings_invalidSi us plau, verifiqui que ha seleccionat una activitat abans de veure les competències que te assignades. gradebook_output_typeQualificacionssupport_act_btn_tooltipCrear un grup d'activitats de suport opcionals.support_msg_max_children_reachedNo es pot afegir l'activitat: {0} aquí. Les activitats de suport permeten un màxim de {1} sots activitats.grp_chk_clear_branch_mappingsAtenció: Aquesta acció esborrarà l'associació de grups i ramificacions, vol continuar de totes maneres? \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/cy_GB_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleCronfa Feddalwedd Gweithgareddau Title for Activity Toolkit Panelal_alertRhybuddGeneric title for Alert windowal_cancelCansloTo Confirm title for LFErroral_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on the alert dialogapp_chk_langloadNid yw'r data iaith wedi'i lwytho message for unsuccessful language loadingapp_chk_themeloadNid yw'r data thema wedi'i lwytho message for unsuccessful theme loadingapp_fail_continueNid yw'r rhaglen yn gallu parhau. Ceisiwch gymorthmessage if application cannot continue due to any errorchosen_grp_lblWedi'i ddewis Label for the grouping drop down in the PropertyInspectorcopy_btnCopïoToolbar &gt; Copy Buttoncv_invalid_design_savedNid yw'ch dyluniad yn ddilys eto, ond mae wedi cael ei gadw, cliciwch ar 'Mater' i weld beth sydd o'i le.Message when an invalid design has been savedcv_invalid_trans_targetNi allwch greu trosiad i'r gwrthrych hwnError message for when transition tool is dropped outside of valid target activitycv_show_validationMaterThe button on the confirm dialogcv_valid_design_savedLlongyfarchiadau! - Mae eich dyluniad yn ddilys ac mae wedi cael ei gadwMessage when a valid design has been saveddb_datasend_confirmDiolch am anfon data i'r gweinyddMessage when user sucessfully dumps data to the serverdelete_btnDileuLabel for Delete buttongate_btnAdwyToolbar &gt; Gate Buttongroup_btnGrŵpToolbar &gt; Group Buttongrouping_act_titleGrŵpDefault title for the grouping activityld_val_activity_columnGweithgareddThe heading on the activity in the ValidationIssuesDialogld_val_doneWedi'i wneudThe button label for the dialogld_val_issue_columnMaterThe heading on the issue in the ValidationIssuesDialogld_val_titleMaterion dilysuThe title for the dialoglicense_not_selectedNi allwch ddewis trwydded - Dewiswch unShown if no license is selected in the drop down in workspacemnu_editGolyguMenu bar Editmnu_edit_copyCopïoMenu bar Edit &gt; Copymnu_edit_cutTorriMenu bar Edit &gt; Cutmnu_edit_pasteGludoMenu bar Edit &gt; Pastemnu_edit_redoAil-wneudMenu bar Edit &gt; Redomnu_edit_undoDadwneudMenu bar Edit &gt; Undomnu_fileFfeilMenu bar Filemnu_file_closeCauMenu bar Closemnu_file_newNewyddMenu bar Newmnu_file_openAgorMenu bar Openmnu_file_saveCadwMenu bar savemnu_file_saveasCadw fel...Menu bar Save asmnu_helpCymorthMenu bar Helpmnu_help_abtAm LAMSMenu bar Aboutmnu_toolsOfferMenu bar Toolsmnu_tools_optBlwch DewisolMenu bar Optionalmnu_tools_prefsDewisiadauMenu bar preferencesmnu_tools_transTynnu LlinellMenu bar draw transitionnew_btnNewyddToolbar &gt; New Buttonnew_confirm_msgYdych chi'n siŵr eich bod chi eisiau clirio eich dyluniad ar y sgrin? Msg when user clicks new while working on the existing designnone_act_lblDimNo gate activity selectedopen_btnAgorToolbar &gt; Open Buttonoptional_btnDewisolToolbar &gt; Optional Buttonpaste_btnGludoToolbar &gt; Paste Buttonperm_act_lblCaniatâdLabel for permission gate activitypi_activity_type_gateGweithgaredd AdwyActivity type for gate in PIpi_activity_type_groupingGweithgaredd GrŵpActivity type for grouping in Property Inspectorpi_definelaterDiffinio'n ddiweddarachLabel for Define later for PIpi_end_offsetCau adwyEnd offset labelpi_group_typeMath o GrŵpProperty Inspector Grouping type drop downpi_hoursAwrHours label in Property Inspectorpi_lbl_currentgroupGrŵp CyfredolCurrent grouping label for PIpi_lbl_descDisgrifiadDescription Label for PIpi_lbl_groupGrŵpGrouping label for PIpi_lbl_titleTeitlTitle label for PIpi_max_actGweithgareddau Mwyaflabel for maximum Activitiespi_min_actGweithgareddau Lleiaflabel for Minimum activitiespi_minsMunudMins label in teh property inspectorpi_no_groupingDimCombo title for no groupingpi_num_learnersNifer y dysgwyrPI Num learners labelpi_optional_titleGweithgaredd DewisolTitle for oprional activity property inspectorpi_runofflineRhedeg All-leinLabel for Run Oflinepi_start_offsetAgor adwyStart offset labelpi_titlePriodweddauOn the title bar of the PIprefix_copyofCopi oPrefix for copy paste command for canvas activitiesprefs_dlg_cancelCanslo6prefs_dlg_lng_lblIaith7prefs_dlg_okIawn5prefs_dlg_theme_lblThema8prefs_dlg_titleDewisiadau4preview_btnRhagolwgToolbar &gt; Preview Buttonproperty_inspector_titlePriodweddauOn the title bar of the PIrandom_grp_lblHapLabel for the grouping drop down in the PropertyInspectorrename_btnAilenwiLabel for Rename Buttonsave_btnCadwToolbar &gt; Save buttonsched_act_lblTrefnlenLabel for schedule gate activitysynch_act_lblSyncroneiddioUsed as a label for the Synch Gate Activity Typetk_titleCronfa Feddalwedd GweithgareddauLabel for Activities Toolkit Paneltrans_btnPontioToolbar &gt; Transition Buttontrans_dlg_cancelCansloCancel button on transition dialogtrans_dlg_gateSyncroneiddioHeader for the transition props dialogtrans_dlg_gatetypecmbMathGate type combo labeltrans_dlg_okIawnOK Button on transition dialogtrans_dlg_titlePontioTitle for the transition properties dialogws_RootGwraiddRoot folder title for workspacews_chk_overwrite_resourceRhybudd: rydych ar fin trosysgrifo adnodd!ws_click_folder_fileCliciwch ar naill ai Ffolder i'w gadw, neu Dylunio i'w drosysgrifoError msg if no folder or file is selectedws_copy_same_folderMae'r ffynhonnell a'r ffolderi cyrchfan yr un fathThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCanslo2ws_dlg_filenameEnw FfeilLabel for File name in workspace windowws_dlg_location_buttonLleoliadWorkspace dialogue Location btn labelws_dlg_ok_buttonIawnWsp Dia OK Button labelws_dlg_open_btnAgorWsp Dia Open Button labelws_dlg_properties_buttonPriodweddauWorkspace dialogue Properties btn labelws_dlg_save_btnCadwWsp Dia Save Button labelws_dlg_titleGweithle0ws_newfolder_cancelCansloCancel on the new folder name diaws_newfolder_insRhowch enw'r ffolder newyddInstructions on the new name pop upws_newfolder_okIawnOK on the new folder name diaws_no_permissionNi chaniateir i chi ysgrifennu i'r adnodd hwnMessage when user does not have write permission to complete actionws_rename_insRhowch yr enw newyddMessage of the new name for the userws_tree_mywspFy NgweithleThe root level of the treews_tree_orgsFy GrŵpShown in the top level of the tree in the workspacews_view_license_buttonGweldTo show the license to the useract_lock_chkDatglowch y blwch Gweithgaredd Dewisol cyn ei ddosbarthu'n weithgaredd dewisolAlert Message if user drags the activity to locked optional activity container sys_error_msg_startMae'r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd rhaid i chi ailgychwyn LAMS Author i barhau. Ydych chi eisiau cadw'r wybodaeth ganlynol am y gwall hwn er mwyn helpu datrys y broblem hon?Common System error message finish paragraphsys_errorGwall System System Error elert window titlepi_num_groupsNifer y grwpiauNumber of groups in Property inspectorpi_parallel_titleGweithgaredd ParalelTitle for parallel activity property inspectoropt_activity_titleGweithgaredd DewisolTitle for Optional Activity Containerlbl_num_activitiesGweithgareddreplacement for word activitiesal_sendAnfonSend button label on the system error dialogal_cannot_move_activityNi allwch symud y gweithgaredd hwnAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNi allwch ychwanegu gweithgaredd adwy fel gweithgaredd dewisol.Error message when user drags gate activity over to optional containerprefix_copyof_countCopi ({0}) o Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNi allwch gadw dyluniad yn y ffolder hwn. Dewiswch is-ffolder dilys.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openCliciwch ar Ddylunio i agorAlert message if folder tried to be opened.ws_license_lblTrwyddedLabel for Licence drop down on workspace properties tab viewws_license_comment_lblGwybodaeth Trwydded YchwanegolLabel for Licence Comment description below license drop downcv_invalid_optional_activitySymud llinell i ac o {0} cyn ei osod fel gweithgaredd dewisol.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingAil gam wrth bontio yn eisiau.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityMae Llinell o {0} eisoes yn bodoliError message when a transition from the activity already existcv_invalid_trans_target_to_activityMae Llinell i {0} eisoes yn bodoliError message when a transition to the activity already existbranch_btnCangenLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnLlifLabel for Flow button in Toolbarmnu_file_importMewnforioMenu bar Importcv_design_export_unsavedNi allwch Allforio dyluniad heb ei gadwAlert message when trying to export can unsaved design.cv_design_unsavedMae'r dyluniad ar y cynfas wedi newid. Parhau heb gadw?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportAllforioMenu bar Exportws_chk_overwrite_existingMae'r ffolder hwn eisoes yn cynnwys ffeil o'r enw {0}Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNi allwch ddefnyddio'r ffolder hwn.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitGadaelFile Menu Exitws_no_file_openDim ffeil wedi'i chanfodAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNi allwch gael dilyniant cylcholError message when a transition from one activity to another is creating a circular loopbin_tooltipRhowch weithgaredd yn y bin hwn i'w ddileu o'r dilyniant gweithgaredd.Tool tip message for canvas binnew_btn_tooltipClirio dilyniant cyfredol ac ailosod lle gwaith yn barod i'w ddefnyddioTool tip message for new button in toolbaropen_btn_tooltipDangos Ffeil Deialog i agor Dilyniant GweithgareddTool tip message for open button in toolbarsave_btn_tooltipCadw Dilyniant Gweithgaredd cyfredol yn gyflymtool tip message for save button in toolbarcopy_btn_tooltipCopïo'r gweithgaredd a ddewiswydtool tip message for copy button in toolbarpaste_btn_tooltipGludo copi o'r gweithgaredd a ddewiswydtool tip message for paste button in toolbartrans_btn_tooltipDefnyddio'r pen hwn i dynnu llinell rhwng gweithgareddau (neu wasgu CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCreu cyfres o weithgareddau dewisoltool tip message for optional button in toolbargate_btn_tooltipCreu man arostool tip message for gate button in toolbarbranch_btn_tooltipCreu cangen (ar gael mewn LAMS f 2.1)tool tip message for branch button in toolbarflow_btn_tooltipCreu gweithgareddau rheoli lliftool tip message for flow button in toolbargroup_btn_tooltipCreu gweithgaredd grŵptool tip message for group button in toolbarpreview_btn_tooltipRhagolwg o'ch Dilyniant fel y bydd dysgwyr yn ei weldTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNi allwch olygu offer dyluniad darllen yn unig. Cadwch gopi o'r dyluniad a cheisiwch eto.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblDarllen Yn UnigLabel for top left of canvas shown when a read-only design is open.al_empty_designNi allwch gadw dyluniad gwagalert message when user want to save an empty designcv_autosave_err_msgMae gwall wedi digwydd wrth geisio awtogadw eich dyluniad. Os yw'r gwall yn parhau cysylltwch â'r Gweinyddwr System.Alert error message when auto-save fails.cv_autosave_rec_msgRydych ar fin adfer y dyluniad coll neu heb ei gadw diwethaf. Bydd eich dyluniad cyfredol yn cael ei glirio. Parhau?Message informing users that they have recovered data for a design.cv_autosave_rec_titleRhybuddAlert title for auto save recovery message.mnu_file_recoverAdfer....Menu bar Recovercv_activity_copy_invalidNi allwch gopïo'r gweithgaredd plentyn hwn.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidNi allwch dorri'r gweithgaredd plentyn hwn.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidRhaid i chi ddewis y gweithgaredd cyn clicio ar gopiAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidRhaid i chi ddewis y gweithgaredd cyn clicio ar yr eitem dewislen Agor/Golygu Cynnwys Gweithgaredd yn y ddewislen di-glicio gweithgareddalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgYdych chi'n siŵr eich bod chi eisiau dileu'r ffeil / ffolder yma?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyNi allwch gadw dyluniad heb unrhyw enw ffeil.Error message when user try to save a design with no file namews_entre_file_nameNodwch enw'r dyluniad, yna cliciwch y botwm Cadw.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedDdim yn gallu canfod tudalen cymorth ar gyfer {0}Alert message when a tool activity has no help url defined.cv_untitled_lblDi-deitl - 1Label for Design Title bar on canvasmnu_help_helpCymorth Awdurolabel for menu bar Help - Authoring Help optionccm_open_activitycontentAgor/Golygu Cynnwys GweithgareddLabel for Custom Context Menuccm_copy_activityCopïo GweithgareddLabel for Custom Context Menuccm_paste_activityGludo GweithgareddLabel for Custom Context Menuccm_piArolygydd Priodwedd...Label for Custom Context Menuccm_author_activityhelpCymorth Awduro Gweithgaredd Label for Custom Context Menuws_dlg_descriptionDisgrifiadLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateDimDrop down default for gate typepi_daysDiwrnodDays label in property inspector for gate toolcv_close_return_to_ext_srcCau a nôl i {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/da_DK_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_eof_finish_modified_msgAdvarsel: Dit design er ændret. Ønsker du at afslutte uden at gemme?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyOvergangen kan ikke være {0}. Målet for overgangen er read-only.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipVend tilbage til monitor session.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishAfslutMenu bar File - Finish (Edit Mode)about_popup_title_lblOm - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} er registreret varemærke for {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDette program er freeware; du må videreformidle og/eller ændre det på de betingelser, som er angivet i GNU General Public License version 2, publiceret af Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.cv_eof_changes_appliedÆndringer er nu gennemført.Changes have been successful applied.mnu_file_apply_changesForetag ændringerApply Changesvalidation_error_transitionNoActivityBeforeOrAfterEn overgang kræver en aktivitet både før og efter overgangenA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEn aktivitet skal have en input eller output overgangAn activity must have an input or output transitionvalidation_error_inputTransitionType1Denne aktivitet har ingen input overgangThis activity has no input transitionvalidation_error_inputTransitionType2Ingen aktiviteter mangler input overgang.No activities are missing their input transition.validation_error_outputTransitionType1Denne aktivitet har ingen output overgangThis activity has no output transitionvalidation_error_outputTransitionType2Ingen aktiviteter mangler output overgang.No activities are missing their output transition.cv_invalid_design_on_apply_changesKan ikke foretage ændringer. En eller flere overgange mangler.Cannot apply changes. There are one or more transitions missing.apply_changes_btnForetag ændringerApply Changesapply_changes_btn_tooltipForetag ændringer i design og vend tilbage til monitor session.tool tip message for save button in toolbarcancel_btnAnnullérToolbar - Cancel Buttoncv_activity_readOnlyAktiviteten kan ikke være {0]. Aktiviteten er read-onlyAlert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblLive EditLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delFjernetAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modÆndretAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDesignet skal være gyldigt for at redigering kan afsluttes.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.pi_daysDageDays label in property inspector for gate tooltrans_dlg_nogateIngenDrop down default for gate typews_chk_overwrite_resourceNB! Du er ved at overskrive denne sekvens!ws_tree_orgsMine grupperShown in the top level of the tree in the workspaceal_activity_copy_invalidBeklager, du er nødt til at vælge aktiviteten før du klikker på knappen "kopiér" eller kopiér aktivitets menuen i højrekliks menuen aktiviteter.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvascv_invalid_design_savedDit design er gyldigt endnu, men er blevet gemt, klik på 'Emner' for at se, hvad der er galt.Message when an invalid design has been savedcv_autosave_rec_msgDu er ved at genskabe et design, du har mistet eller ikke har gemt. Dit aktuelle design vil blive nulstillet. Ønsker du at fortsætte?Message informing users that they have recovered data for a design.ws_dlg_descriptionBeskrivelseLabel for description in Workspace dialog - Properties tabmnu_toolsVærktøjMenu bar Toolsmnu_tools_prefsForetrukne indstillingerMenu bar preferencespreview_btnForhåndsvisningToolbar &gt; Preview Buttonws_RootRodRoot folder title for workspacews_newfolder_cancelAnnullérCancel on the new folder name diaws_view_license_buttonVisTo show the license to the userld_val_doneGjortThe button label for the dialogccm_author_activityhelpForfatter aktivitetshjælpLabel for Custom Context Menuccm_open_activitycontentÅbn/redigér aktivitetsindholdLabel for Custom Context Menuccm_copy_activityKopiér aktivitetLabel for Custom Context Menuccm_paste_activityIndsæt aktivitetLabel for Custom Context Menuccm_piKontrol af egenskaberLabel for Custom Context Menuws_file_name_emptyBeklager, du kan ikke gemme et design uden filnavn.Error message when user try to save a design with no file namecv_untitled_lblUnavngivet - 1Label for Design Title bar on canvasal_empty_designBeklager, du kan ikke gemme et tomt designalert message when user want to save an empty designcv_autosave_err_msgEn fejl er opstået i forbindelse med automatisk gemning af dit design. Hvis denne fejl opstår igen skal du kontakte systemadminstratoren.Alert error message when auto-save fails.cv_autosave_rec_titleAdvarselAlert title for auto save recovery message.mnu_file_recoverGenopret...Menu bar Recoverws_newfolder_okOKOK on the new folder name diaws_no_permissionBeklager, du har ikke rettigheder til at skrive til denne ressourceMessage when user does not have write permission to complete actionws_rename_insSkriv det nye navnMessage of the new name for the userws_tree_mywspMit arbejdsområdeThe root level of the treeact_lock_chkLås den valgfri aktivitet op før du gør den valgfriAlert Message if user drags the activity to locked optional activity container sys_error_msg_startDer er opstået følgende systemfejl:Common System error message starting linesys_error_msg_finishDu er nødt til at genstarte LAMS Forfatter for at fortsætte. Ønsker du at gemme følgende information om fejlen som hjælp til at løse problemet?Common System error message finish paragraphsys_errorSystemfejlSystem Error elert window titleal_sendSendSend button label on the system error dialoglbl_num_activitiesAktiviteterreplacement for word activitiesopt_activity_titleValgfri aktivitetTitle for Optional Activity Containerws_license_lblLicensLabel for Licence drop down on workspace properties tab viewws_license_comment_lblUddybende licensinformationLabel for Licence Comment description below license drop downal_cannot_move_activityBeklager, du kan ikke flytte denne aktivitet.Alert message when user tries to move child activity of any parallel activitymnu_help_helpHjælp til forfattermoduletlabel for menu bar Help - Authoring Help optionws_del_confirm_msgEr du sikker på, at du ønsker at slette denne fil/mappe?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_openKlik venligst på et design for at åbne.Alert message if folder tried to be opened.cv_invalid_optional_activityFjerne forbindelser til og fra {0} før du angiver den som valgfri aktivitet.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDen anden aktivitet i forbindelse mangler.Error message when target activity for transition is missingpi_num_groupsAntal af grupperNumber of groups in Property inspectorcv_activity_copy_invalidBeklager, du har ikke rettigheder til at kopiere denne underaktivitet.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidBeklager, du har ikke rettigheder til at slette denne underaktivitet.Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activityEn forbindelse til {0} eksisterer alleredeError message when a transition to the activity already existcv_design_unsavedDesignet i arbejdsområdet er ændret. Ønsker du at fortsætte uden at gemme?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipRydder aktuelle sekvenser og nulstiller arbejdsområdet, så det er klar til brugTool tip message for new button in toolbaropen_btn_tooltipViser filmenuen for at åbne en aktivitetssekvensTool tip message for open button in toolbarsave_btn_tooltipGemmer aktuel aktivitetssekvenstool tip message for save button in toolbarcopy_btn_tooltipKopiér den valgte aktivitettool tip message for copy button in toolbarpaste_btn_tooltipIndsæt en kopi af den valgte aktivitettool tip message for paste button in toolbartrans_btn_tooltipBrug denne pensel til at tegne forbindelser mellem aktiviteter (eller brug CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipOpret en serie valgfri aktivitetertool tip message for optional button in toolbargate_btn_tooltipOpret et "stoppested"tool tip message for gate button in toolbarbranch_btn_tooltipOpret en forgrening (tilgængelig i LAMS v 2.1)tool tip message for branch button in toolbargroup_btn_tooltipOpret gruppeaktivitettool tip message for group button in toolbarpreview_btn_tooltipVis din sekvens, som brugeren kommer til at se denTool tip message for preview button in toolbarmnu_file_exitExitFile Menu Exital_activity_openContent_invalidBeklager, du er nødt til at vælge en aktivitet før du klikker på knappen "Åbn/Redigér aktivitetsindhold" menuen i højrekliksmenue aktiviteter. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_design_export_unsavedDu kan ikke eksportere et design, der ikke er gemt.Alert message when trying to export can unsaved design.mnu_file_exportEksportérMenu bar Exportws_chk_overwrite_existingDenne mappe indeholder allerede en fil med navnet {0}Alert message when saving a design with the same filename as an existing design.ws_no_file_openIngen fil fundetAlert message if no matching file is found to open in selected folder of Workspace.branch_btnGrenLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFlowLabel for Flow button in Toolbarmnu_file_importImportérMenu bar Importws_click_virtual_folderKan ikke bruge denne mappe.Alert message for trying to use a virtual folder to save/open a file.pi_parallel_titleParallel aktivitetTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceDu kan ikke lave en cirkulær sekvensError message when a transition from one activity to another is creating a circular loopbin_tooltipTræk en aktivitet til denne skraldespand for at fjerne den fra aktivitetssekvensenTool tip message for canvas bincv_gateoptional_hit_chkDu kan ikke tilføje en port aktivitet som valgfri aktivitetError message when user drags gate activity over to optional containerprefix_copyof_countKopi ({0}) afPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidDu kan ikke gemme et design i denne mappe. Vælg venligst en gyldig undermappe.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityEn forbindelse fra {0} eksisterer alleredeError message when a transition from the activity already existws_entre_file_nameVælg et navn til designet og klik dernæst på knappen "Gem"Error message when user try to save a design with no file namecv_activity_helpURL_undefinedIngen hjælp tilgængelig om {0}Alert message when a tool activity has no help url defined.cv_activity_dbclick_readonlyDu kan ikke redigere værktøjer i et read-only design. Gem en kopi af designet og prøv igen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblRead OnlyLabel for top left of canvas shown when a read-only design is open.ld_val_issue_columnEmneThe heading on the issue in the ValidationIssuesDialogld_val_titleEmner til valideringThe title for the dialoglicense_not_selectedDer er ikke valgt nogen licens - vælg venligst énShown if no license is selected in the drop down in workspacemnu_edit_redoGentagMenu bar Edit &gt; Redomnu_edit_undoFortrydMenu bar Edit &gt; Undomnu_fileFilMenu bar Filemnu_file_closeLukMenu bar Closemnu_file_newNyMenu bar Newmnu_file_openÅbnMenu bar Openmnu_file_saveGemMenu bar savemnu_file_saveasGem somMenu bar Save asmnu_helpHjælpMenu bar Helpmnu_help_abtOm LAMSMenu bar Aboutmnu_tools_optTegn valgfriMenu bar Optionalmnu_tools_transTegn forbindelseMenu bar draw transitionnew_btnNyToolbar &gt; New Buttonnew_confirm_msgEr du sikker på, at du vil slette det aktuelle design?Msg when user clicks new while working on the existing designnone_act_lblIngenNo gate activity selectedopen_btnÅbnToolbar &gt; Open Buttonoptional_btnValgfriToolbar &gt; Optional Buttonpaste_btnIndsætToolbar &gt; Paste Buttonperm_act_lblTilladelseLabel for permission gate activitypi_activity_type_gatePort aktivitetActivity type for gate in PIpi_activity_type_groupingGruppeaktivitetActivity type for grouping in Property Inspectorpi_definelaterDefinér senereLabel for Define later for PIpi_end_offsetLuk portEnd offset labelpi_group_typeGruppeinddelingstypeProperty Inspector Grouping type drop downpi_hoursTimerHours label in Property Inspectorpi_lbl_currentgroupAktuel gruppeinddelingCurrent grouping label for PIpi_lbl_descBeskrivelseDescription Label for PIpi_lbl_groupGruppeinddelingGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMaximum aktiviteterlabel for maximum Activitiespi_min_actMinimum aktiviteterlabel for Minimum activitiespi_minsMinutterMins label in teh property inspectorpi_no_groupingIngenCombo title for no groupingpi_num_learnersAntal deltagerePI Num learners labelpi_optional_titleValgfri aktivitetTitle for oprional activity property inspectorpi_runofflineKør offlineLabel for Run Oflinepi_start_offsetÅbn portStart offset labelpi_titleEgenskaberOn the title bar of the PIprefix_copyofKopi afPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAnnullér6prefs_dlg_lng_lblSprog7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titleForetrukne indstillinger4property_inspector_titleEgenskaberOn the title bar of the PIrandom_grp_lblTilfældigLabel for the grouping drop down in the PropertyInspectorrename_btnOmdøbLabel for Rename Buttonsave_btnGemToolbar &gt; Save buttonsched_act_lblSkemaLabel for schedule gate activitysynch_act_lblSynkronisérUsed as a label for the Synch Gate Activity Typetk_titleVærktøjskasse for aktiviteterLabel for Activities Toolkit Paneltrans_btnForbindelseToolbar &gt; Transition Buttontrans_dlg_gateSynkroniseringHeader for the transition props dialogtrans_dlg_gatetypecmbTypeGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleForbindelseTitle for the transition properties dialogws_click_folder_fileKlik venligst enten på en mappe til at gemme i eller et design, som skal overskrivesError msg if no folder or file is selectedws_copy_same_folderKilde- og destinationsmapperne er identiskeThe user has tried to drag and drop to the same placews_dlg_cancel_buttonFortryd2ws_dlg_filenameFilnavnLabel for File name in workspace windowws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÅbnWsp Dia Open Button labelws_dlg_properties_buttonEgenskaberWorkspace dialogue Properties btn labelws_dlg_save_btnGemWsp Dia Save Button labelws_dlg_titleArbejdsområde0ws_newfolder_insSkriv navnet på den nye mappeInstructions on the new name pop uptrans_dlg_cancelAnnullérCancel button on transition dialogflow_btn_tooltipKontrolerer arbejdsgangen i aktiviteternetool tip message for flow button in toolbaral_alertNB!Generic title for Alert windowal_cancelAnnullérTo Confirm title for LFErroral_confirmBekræftTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSprogindstillingerne er ikke indlæstmessage for unsuccessful language loadingapp_chk_themeloadTemaindstillingerne er ikke indlæstmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan ikke fortsætte. Kontakt venligst supportmessage if application cannot continue due to any errorcv_invalid_trans_targetDu kan ikke lave en forbindelse til dette objektError message for when transition tool is dropped outside of valid target activitydb_datasend_confirmTak for at sende data til serverenMessage when user sucessfully dumps data to the servergate_btnPortToolbar &gt; Gate Buttondelete_btnSletLabel for Delete buttoncv_show_validationEmnerThe button on the confirm dialoggroup_btnGrupperToolbar &gt; Group Buttoncv_valid_design_savedTillykke! - Dit design er accepteret og gemt!Message when a valid design has been savedact_tool_titleVærkstøjskasse for aktiviteterTitle for Activity Toolkit Panelchosen_grp_lblValgtLabel for the grouping drop down in the PropertyInspectorcopy_btnKopierToolbar &gt; Copy Buttongrouping_act_titleGruppeinddelingDefault title for the grouping activityld_val_activity_columnAktivitetThe heading on the activity in the ValidationIssuesDialogmnu_editRedigérMenu bar Editmnu_edit_copyKopiérMenu bar Edit &gt; Copymnu_edit_cutKlipMenu bar Edit &gt; Cutmnu_edit_pasteIndsætMenu bar Edit &gt; Pastecv_close_return_to_ext_srcLuk og gå tilbage til {0}Button label used on close and return button in save confirm message popup.branching_act_titleForgreningLabel for Branching Activitypi_activity_type_sequenceSekvens aktivitet (forgrening)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlik på et navn for at ændre dets værdiInstructions for Group Naming dialog.pi_branch_tool_acts_lblInput (Værktøj)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.branch_mapping_no_branch_msgIngen forgrening valgtAlert message when adding a Mapping without a Branch (Sequence) being selected.pi_condmatch_btn_lblSetup af betingelser for outputLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblOpret betingelser for outputDialog title for creating new tool output conditions.al_doneGjortLabel for dialog completion button.condmatch_dlg_cond_lst_lblBetingelserLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblMatch betingelser til forgreningerDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblStandardCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ TilføjLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblNulstil alleLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- FjernLabel for button to remove condition.to_conditions_dlg_from_lblFra:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblTil:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblDefinér værdimængdeHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblGrenColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblBetingelseColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppeColumn heading for showing group name of the mapping.branch_mapping_no_mapping_msgIngen Mapping valgt.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgIngen betingelse valgt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgAlle resterende betingelser vil blive knyttet til standardforgreningAlert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueVærdimængde {0} til {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactEksakt værdi af {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblSetup MappingsLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblDefinér i MonitorCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblKnyt grupper til forgreningerMap Groups to Branchesbranch_mapping_no_groups_msgIngen grupper valgtAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppe-baseretBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblForgreningerLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGrupperLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblNavngivning af grupperTitle label for Group Naming dialog.pi_activity_type_branchingForgreningsaktivitetActivity type for Branching in Property Inspector.pi_branch_typeForgreningstypeProperty Inspector Branching type drop down.pi_group_naming_btn_lblNavngivning af grupperLabel for button that opens Group Naming dialog.sequence_act_titleSekvensDefault title for Sequence Activity.tool_branch_act_lblVærktøj outputBranching type label for Tool output Branching. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/de_DE_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_activity_openContent_invalidSorry. Wählen Sie erst eine Aktivität aus, bevor Sie auf den Öffnen/bearbeiten-Button klicken oder das Kontentmenu über die rechte Maustaste nutzen. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_activity_copy_invalidSorry. Sie sind nicht berechtigt, diese Unteraktivität zu kopieren.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSorry. Sie sind nicht berechtigt, diese Unteraktivität auszuschneiden.Error message when user try to cut child activity from either optional or parallel activity containerccm_author_activityhelpAtivitätenhilfe für AutorenLabel for Custom Context Menuccm_open_activitycontentÖffnen/Bearbeiten des Inhalts einer AktivitätLabel for Custom Context Menuccm_copy_activityAktivität kopierenLabel for Custom Context Menuccm_paste_activityAktivität einfügenLabel for Custom Context Menuccm_piRechte prüfen....Label for Custom Context Menuws_dlg_descriptionBeschreibungLabel for description in Workspace dialog - Properties tabact_tool_titleAktivitätenTitle for Activity Toolkit Panelal_alertWarnungGeneric title for Alert windowal_cancelAbbrechenTo Confirm title for LFErroral_confirmBestätigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDie Sprachdatei wurde nicht geladenmessage for unsuccessful language loadingapp_chk_themeloadDie Themedatei wurde nicht geladenmessage for unsuccessful theme loadingapp_fail_continueDie Anwendung kann nicht fortgesetzt werden. Kontakten Sie bitte den Support.message if application cannot continue due to any errorchosen_grp_lblGewähltLabel for the grouping drop down in the PropertyInspectorcopy_btnKopierenToolbar &gt; Copy Buttoncv_invalid_trans_targetZu diesem Objekt kann keine Verbindung herrgestellt werdenError message for when transition tool is dropped outside of valid target activityal_sendAbsendenSend button label on the system error dialogpi_num_groupsZahl der GruppenNumber of groups in Property inspectorcv_invalid_trans_target_to_activityEine Verbindung zuj {0} besteht bereitsError message when a transition to the activity already existcv_design_unsavedie Gestaltung wurde geändert. Weiter ohne vorheriges Speichern?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipLöscht bestehende Sequenz und stellt neue Arbeitsumgebung zur VerfügungTool tip message for new button in toolbaropen_btn_tooltipZeigt Dateidialog, um eine Sequenz zu öffnenTool tip message for open button in toolbarsave_btn_tooltipSchnellspeicherung der geöffneten Sequenztool tip message for save button in toolbarcopy_btn_tooltipKopieren der ausgewählten Aktivitättool tip message for copy button in toolbarpaste_btn_tooltipEinfügen einer Kopie der ausgewählten Aktivitättool tip message for paste button in toolbartrans_btn_tooltipZiehen Sie mit dem Stift Verbindungen zwischen den Aktivitäten (oder Sttrg-Taste)tool tip message for transition button in toolbaroptional_btn_tooltipErstellen einer Reihe optionaler Aktivitätentool tip message for optional button in toolbargate_btn_tooltipStop-Punkt anlegentool tip message for gate button in toolbarbranch_btn_tooltipZweig anlegen (ab LAMS 2.1)tool tip message for branch button in toolbarcv_show_validationProblemeThe button on the confirm dialogcv_valid_design_savedGratulation. Ihr Design ist geprüft und gespeichert worden.Message when a valid design has been saveddb_datasend_confirmDie Daten wurden an den Server übertragenMessage when user sucessfully dumps data to the serverdelete_btnLöschenLabel for Delete buttongate_btnSperreToolbar &gt; Gate Buttongroup_btnGruppeToolbar &gt; Group Buttongrouping_act_titleGruppen bildenDefault title for the grouping activityld_val_activity_columnAktivitätThe heading on the activity in the ValidationIssuesDialogld_val_doneErledigtThe button label for the dialogld_val_issue_columnProblemeThe heading on the issue in the ValidationIssuesDialogld_val_titleProbleme prüfenThe title for the dialoglicense_not_selectedWählen Sie bitte eine Lizenz für dieses DesignShown if no license is selected in the drop down in workspacemnu_editBearbeitenMenu bar Editmnu_edit_copyKopierenMenu bar Edit &gt; Copymnu_edit_cutAusschneidenMenu bar Edit &gt; Cutmnu_edit_pasteEinfügenMenu bar Edit &gt; Pastemnu_edit_redoWiederholenMenu bar Edit &gt; Redomnu_edit_undoRückgängigMenu bar Edit &gt; Undomnu_fileDateiMenu bar Filemnu_file_closeSchließenMenu bar Closemnu_file_newNeuMenu bar Newmnu_file_openÖffnenMenu bar Openmnu_file_saveSpeichernMenu bar savemnu_file_saveasSpeichern als...Menu bar Save asmnu_helpHilfeMenu bar Helpmnu_toolsWerkzeugeMenu bar Toolsmnu_tools_optOptionen zeichnenMenu bar Optionalmnu_tools_prefsVoreinstellungenMenu bar preferencesmnu_tools_transVerbindungen zeichnenMenu bar draw transitionnew_btnNeuToolbar &gt; New Buttonnew_confirm_msgSind Sie sicher, dass Sie das Design löschen wollen?Msg when user clicks new while working on the existing designnone_act_lblKeineNo gate activity selectedopen_btnÖffnenToolbar &gt; Open Buttonoptional_btnOptionalToolbar &gt; Optional Buttonpaste_btnEinfügenToolbar &gt; Paste Buttonperm_act_lblRechteLabel for permission gate activitypi_activity_type_gateSperr-AktivitätActivity type for gate in PIpi_activity_type_groupingGruppenaktivitätenActivity type for grouping in Property Inspectorpi_definelaterSpäter festlegenLabel for Define later for PIpi_end_offsetSperre aufhebenEnd offset labelpi_group_typeArt der GruppeProperty Inspector Grouping type drop downpi_hoursStundenHours label in Property Inspectorpi_lbl_currentgroupDezeitige GruppeCurrent grouping label for PIpi_lbl_descBeschreibungDescription Label for PIpi_lbl_groupGruppierungGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actAktivitäten (max)label for maximum Activitiespi_min_actAktivitäten (min)label for Minimum activitiespi_minsMinutenMins label in teh property inspectorpi_num_learnersZahl der Teilnehmer/innenPI Num learners labelpi_optional_titleOptionale AktivitätTitle for oprional activity property inspectorpi_runofflineOffline ausführenLabel for Run Oflinepi_start_offsetSperre öffnenStart offset labelpi_titleRechteOn the title bar of the PIprefix_copyofKopie vonPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAbbrechen6prefs_dlg_lng_lblSprache7prefs_dlg_okOK5prefs_dlg_theme_lblTheme8prefs_dlg_titlePräferenzen4preview_btnVorschauToolbar &gt; Preview Buttonproperty_inspector_titleRechteOn the title bar of the PIrandom_grp_lblZufallLabel for the grouping drop down in the PropertyInspectorrename_btnUmbenennenLabel for Rename Buttonsave_btnSpeichernToolbar &gt; Save buttonsched_act_lblTerminLabel for schedule gate activitysynch_act_lblSynchronisierenUsed as a label for the Synch Gate Activity Typetk_titleAktivitätenLabel for Activities Toolkit Paneltrans_btnVerbindungToolbar &gt; Transition Buttontrans_dlg_cancelAbbrechenCancel button on transition dialogtrans_dlg_gateSynchronisationHeader for the transition props dialogtrans_dlg_gatetypecmbTypGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleVerbindungTitle for the transition properties dialogws_RootRootRoot folder title for workspacews_click_folder_fileKlicken Sie auf einen Ordner, um darin abzuspeichern oder ein veorhandenes Design, um dieses zu überschreiben.Error msg if no folder or file is selectedws_copy_same_folderDer Quell- und Zielordner sind identischThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAbbrechen2ws_dlg_filenameDateinameLabel for File name in workspace windowws_dlg_location_buttonAblageortWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÖffnenWsp Dia Open Button labelws_dlg_properties_buttonRechteWorkspace dialogue Properties btn labelws_dlg_save_btnSpeichernWsp Dia Save Button labelws_dlg_titleArbeitsplatz0ws_newfolder_cancelAbbrechenCancel on the new folder name diaws_newfolder_insBitte geben Sie einen neuen Ordnernamen einInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionSie haben nicht die Berechtigung zum Durchführen dieser AktionMessage when user does not have write permission to complete actionws_rename_insGeben Sie bitte den neuen Namen einMessage of the new name for the userws_tree_mywspMein ArbeitsplatzThe root level of the treews_view_license_buttonAnsichtTo show the license to the useract_lock_chkHeben Sie zuerst die Sperre für die optionalen Aktivitäten auf, bevor Sie diese bearbeitenAlert Message if user drags the activity to locked optional activity container sys_error_msg_startFolgender Systemfehler ist aufgetreten:Common System error message starting linesys_errorSystemfehlerSystem Error elert window titlelbl_num_activitiesAktivitätenreplacement for word activitiesopt_activity_titleOptionale AktivitätenTitle for Optional Activity Containerws_license_lblLizenzLabel for Licence drop down on workspace properties tab viewws_license_comment_lblZusätzliche LizenzinformationenLabel for Licence Comment description below license drop downal_cannot_move_activitySorry. Diese Aktivität kann nicht verschoben werden.Alert message when user tries to move child activity of any parallel activityws_click_file_openKlicken sie bitte auf ein Design, um dieses zu öffnen.Alert message if folder tried to be opened.cv_invalid_optional_activityEntfernen der Verbindungen zu und von {0} bevor diese als optional angelegt wird.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDie zweite Aktivität in dieser Verbindung fehlt.Error message when target activity for transition is missingflow_btn_tooltipErstellt Ablaufkontrolletool tip message for flow button in toolbargroup_btn_tooltipGruppenaktivität anlegentool tip message for group button in toolbarpreview_btn_tooltipTeilnehmer/innenvorschau der SequenzTool tip message for preview button in toolbarmnu_file_exitAbbruchFile Menu Exitcv_design_export_unsavedSpeichern Sie bitte, bevor Sie exportieren.Alert message when trying to export can unsaved design.mnu_file_exportExportMenu bar Exportws_chk_overwrite_existingDieser Ordner enthält bereits eine Datei mit der Bezeichnung {0}Alert message when saving a design with the same filename as an existing design.ws_no_file_openKeine Datei gefundenAlert message if no matching file is found to open in selected folder of Workspace.branch_btnZweigLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnAblaufLabel for Flow button in Toolbarmnu_file_importImportMenu bar Importws_click_virtual_folderDieser Ordner kann nicht verwandt werden.Alert message for trying to use a virtual folder to save/open a file.pi_parallel_titleParallele AktivitätTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceSie können keine kreisförmige Sequenz anlegenError message when a transition from one activity to another is creating a circular loopbin_tooltipZiehen Sie eine Aktivität aus der Sequenz in den Abfalleimer, um sie zu entfernenTool tip message for canvas bincv_gateoptional_hit_chkEine Sperraktivität kann keine optionale Aktivität sein.Error message when user drags gate activity over to optional containerprefix_copyof_count{0}. Kopie vonPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidSie können Ihr Design nicht in diesem Ordner speichern. Wählen Sie einen Unterordner aus.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityEine Verbindung von {0} besteht bereits.Error message when a transition from the activity already existcv_activity_dbclick_readonlyDas Design ist schreibgeschützt. Erstellen Sie eine Kopie, um dann Änderungen vorzunehmen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSchreibgeschütztLabel for top left of canvas shown when a read-only design is open.al_empty_designSorry. Sie können ein leeres Design nicht speichern.alert message when user want to save an empty designcv_autosave_err_msgBei der automatischen Speicherung ist ein Fehler aufgetreten. Sollte der Fehler weiter auftreten, benachrichtigen Sie bitte die Systemadministration.Alert error message when auto-save fails.cv_autosave_rec_titleWarnungAlert title for auto save recovery message.mnu_file_recoverRückgängigMenu bar Recoversys_error_msg_finishSie müssen zuerst die LAMS Autorenfunktion erneut starten, bevor Sie fortsetzen können. Wollen Sie die Fehlernachricht speichern, um das Problem zubeheben?Common System error message finish paragraphmnu_help_helpHilfe zur Autorenfunktionlabel for menu bar Help - Authoring Help optionws_del_confirm_msgWollen Sie diese Datei/Ordner wirklich löschen?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_entre_file_nameGeben Sie bitte einen Namen für das Design ein und speichern Sie dann.Error message when user try to save a design with no file namews_file_name_emptySorry! Sie können nicht speichern, ohne einen Namen vergeben zu haben.Error message when user try to save a design with no file namecv_untitled_lblUnbenannt -1Label for Design Title bar on canvascv_activity_helpURL_undefinedDie Hilfeseite für {0} wurde nicht gefunden.Alert message when a tool activity has no help url defined.cv_invalid_design_savedDas gewählte Design ist nicht gültig. Die Einstellung wurde jedoch gespeichert. but it has been saved. Klicken Sie auf 'Probleme', um nähere Informationen zu erhalten.Message when an invalid design has been savedmnu_help_abtÜber LAMSMenu bar Aboutpi_no_groupingKeineCombo title for no groupingws_chk_overwrite_resourceVorsicht. Sie sind gerade dabei, eine Sequenz zu überschreiben.pi_daysTageDays label in property inspector for gate tooltrans_dlg_nogateKeineDrop down default for gate typecv_close_return_to_ext_srcSchließen und zurück zu {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedDie Änderungen wurden erfolgreich hinzugefügt.Changes have been successful applied.mnu_file_apply_changesÄnderungen hinzufügenApply Changesvalidation_error_transitionNoActivityBeforeOrAfterZu einer Verbindung gehören einen Aktivität an beiden Enden.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEine Aktivität benötigt eine Input und Output-VerbindungAn activity must have an input or output transitionvalidation_error_inputTransitionType1Diese Aktivität hat noch keine Input-VerbindungThis activity has no input transitionvalidation_error_inputTransitionType2Alle Aktivitäten verfügen über Input-Verbindungen.No activities are missing their input transition.validation_error_outputTransitionType1Diese Aktivität hat keine Output-VerbindungThis activity has no output transitionvalidation_error_outputTransitionType2Alle Aktivitäten verfügen über Output-Verbindungen.No activities are missing their output transition.cv_invalid_design_on_apply_changesEs können keine weiteren Veränderungen hinzugefügt werden. Alle Verbindungen bestehen.Cannot apply changes. There are one or more transitions missing.apply_changes_btnÄnderungen bestätigenApply Changesapply_changes_btn_tooltipÄnderungen des Designs bestätigen und Lektion beobachten.tool tip message for save button in toolbarcancel_btnAbbrechenToolbar - Cancel Buttoncv_activity_readOnlyAktivität kann nicht {0} sein. Die Aktivität ist zum Bearbeiten gesperrt.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblLivebearbeitungLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delentferntAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modverändertAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDas Design muss korrekt sein, um das Bearbeiten zu beenden.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgHinwies: Das Design wurde verändert. Wolen Sie ohne zu speichern abbrechen?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyVerbindung kann nicht {0} sein. Das Verbindungsziel kann nur gelesen werden. Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipZurück zur Beobachtung der Lektiontool tip message for cancel button in toolbar (edit mode)mnu_file_finishBeendenMenu bar File - Finish (Edit Mode)about_popup_title_lblÜber - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} ist ein Warenzeichen der [0} Foundation ({1}).Label displaying the trademark statement in the About dialog.about_popup_license_lblDieses Programm ist freie Software. Sie kann unter den Bedingungen der GNU General Public License Version 2 weiter verbreitet und verändert werden. Die GNU GPL wird veröffentlicht von der Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleVerzweigungLabel for Branching Activityal_activity_copy_invalidSorry. Wählen Sie erst eine Aktivität aus, bevor Sie auf den Kopieren-Button klickenAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasws_tree_orgsMeine GruppenShown in the top level of the tree in the workspacecv_autosave_rec_msgSie stellen die letzte oder noch nicht gespeicherte Version wieder her. Wenn Sie Fortfahren, wird das jetzige Design gelöscht. Fortsetzen?Message informing users that they have recovered data for a design.pi_activity_type_sequenceSequenzen (Verzweigungen)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlicken Sie den Namen an, um den Wert zu ändern.Instructions for Group Naming dialog.pi_branch_tool_acts_lblEingabe (Werkzeug)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.al_doneFertigLabel for dialog completion button.condmatch_dlg_cond_lst_lblBedingungenLabel for primary list heading on Condition to Branch Matching dialog.pi_condmatch_btn_lblBedingungen festlegenLabel for button to open dialog to create output conditions.condmatch_dlg_title_lblBedingungen Verzweigungen zuordnenDialog title for matching conditions to branches for Tool based Branching.branch_mapping_no_branch_msgKein Zweig ausgewählt.Alert message when adding a Mapping without a Branch (Sequence) being selected.to_conditions_dlg_title_lblAnlegen der Output-BedingungenDialog title for creating new tool output conditions.pi_defaultBranch_cb_lbldefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ HinzufügenLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblAlle löschenLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- EntfernenLabel for button to remove condition.to_conditions_dlg_from_lblVon:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblBis:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblBereich definieren:Heading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblZweigColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblBedingungColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppeColumn heading for showing group name of the mapping.branch_mapping_no_mapping_msgKeine Zuordnung gewählt.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgKeine Bedingung gewählt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgAlle verbleibenden Bedingungen werden dem default Zweig zugewiesen.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblZuordnungenHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueBereich {0} bis {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactExakter Wert von {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblZuordnungen anlegenLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblIm Monitor festlegenCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblGruppen zu Zweigen zuordnenMap Groups to Branchesbranch_mapping_no_groups_msgKeine Gruppen ausgewählt.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppenbasiertBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblVerzweigungenLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGruppenLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblGruppennamenTitle label for Group Naming dialog.pi_activity_type_branchingVerzweigungsaktivitätActivity type for Branching in Property Inspector.pi_branch_typeVerzweigungstypProperty Inspector Branching type drop down.pi_group_naming_btn_lblGruppennamenLabel for button that opens Group Naming dialog.sequence_act_titleSequenzDefault title for Sequence Activity.tool_branch_act_lblOutputBranching type label for Tool output Branching.chosen_branch_act_lblTrainerauswahlBranching type label for Teacher choice Branching.to_condition_start_valueStartwertValue representing the min boundary value of the conditions range.to_condition_end_valueEndwertValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeDie Bedingung {0} passt nicht zu den anderen Bedingungen.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction{0} kann nicht größer sein als {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgWarnung: Sie beabsichtigen die Lektion zu entfernen. Wollen Sie die Lektion als {0} behalten?Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueWeiterContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} mit einer bestehenden Verzweigung verbinden. Wollen Sie fortsetzen?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allHierfür gibt es BedingungenPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleBedingung istPhrase used at start of linked conditions alert message when clearing a single entry. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/el_GR_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3branch_mapping_no_mapping_msgΚαμμία Αντιστοίχηση δεν έχει επιλεγείbranch_mapping_dlg_match_dgd_lblΣυνδέσειςgrp_chk_clear_branch_mappingsΠροειδοποίηση: Αυτό θα σβήσει όλες τις υπάρχουσες ομάδες στην απεικόνιση των κλάδων που συνδέονται με αυτή την ομαδική δραστηριότητα, θέλετε να συνεχίσετε;pi_mapping_btn_lblΚαθορισμός Συνδέσεωνgroupmatch_dlg_title_lblΑντιστοίχιση Ομάδων σε Κλάδουςgate_closedκλεισμένοbranch_mapping_auto_condition_msgΌλες υπόλοιπες Συνθήκες θα συνδεθούν με τον προεπιλεγμένο κλάδο. competence_editor_warning_competence_mappedΗ ικανότητα που προσπαθήτε να σβήσετε αντιστοιχεί σε μία ή περισσότερες δραστηριότητες. Διαγράφοντας αυτή την ικανότητα θα διαγραφούν και οι συνδέσεις της. Είστε σίγουροι ότι θέλετε να συνεχίσετε;map_gate_conditions_btnΣυνθήκες Πύλης Χάρτηal_activity_view_competence_mappings_invalidΠαρακαλώ σιγουρευτείτε ότι έχετε επιλεγμένη μια δραστηριότητα πρίν προσπαθείσετε να δείτε τις συνδέσεις των ικανοτήτων της. gate_mapping_auto_condition_msgΌλες οι υπόλοιπες συνθήκες θα συνδεθούν στις επιλεγμένες κλειστές πύλες. groupnaming_dialog_col_groupName_lblΌνομα Ομάδαςws_dlg_insert_btnΕισαγωγήcompetence_editor_dlgΕπεξεργαστής Ικανοτήτωνgate_openανοικτόcompetence_editor_warning_title_existsΜια ικανότητα με τίτλο {0} υπάρχει ήδηcompetence_editor_warning_title_blankΟ τίτλος της ικανότητας δεν μπορεί να είναι κενόςcompetence_def_dlgΔιάλογος Ορισμού Ικανότηταςcompetence_editor_add_competence_btnΠροσθήκηsequence_act_titleΑκολουθίαto_condition_start_valueαρχική τιμή competence_mappings_btnΣυνδέσεις Ικανοτήτωνredundant_branch_mappings_msgΟ σχεδιασμός περιέχει διακλαδώσεις που δεν έχουν απομακρυνθεί. Θέλετε να συνεχίσετε;sequence_act_title_new{0} {1}to_condition_end_valueτελική τιμή mnu_file_insertdesignΕισαγωγή/(Συν)ένωση ...branch_mapping_dlg_branch_item_defaultΑγγλικά: {0} (προκαθορισμένα)pi_group_matching_btn_lblΣυνδυασμός Ομάδων με Κλάδουςpi_tool_output_matching_btn_lblΣυνδυασμός Συνθηκών με Κλάδουςrefresh_btnΑνανέωσηcv_invalid_trans_closed_sequenceΔεν μπορείτε να κάνετε μία νέα σύνδεση σε μία κλειστή ακολουθίαpi_equal_group_sizesΙσομεγέθης Ομάδεςto_conditions_dlg_condition_items_update_defaultConditionsΠρόκειται να ανανεώσετε τις συνθήκες της επιλεγμένης εξόδου. Αυτο θα διαγράψει όλους τους υπάρχοντες κλάδους. Θέλετε να συνεχίσετε; learner_choice_grp_lblΕπιλογές Εκπαιδευόμενουbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroΔεν μπορεί να ενημερωθεί όσο δεν βρίσκεται κανείς χρήστης που να έχει καθορίσει τις συνθήκες. Μπορεί να πρέπει να τις καθορίσετε στη σελίδα(ς) του εργαλείου συγγραφήςto_conditions_dlg_defin_user_defined_typeορισμένο από το χρήστηal_activity_paste_invalidΣυγνώμη, δεν μπορείτε να επικολλήσετε δραστηριότητες τέτοιου τύπου. al_group_name_invalid_blankΤα ονόματα των ομάδων δεν μπορεί να ειναι κενά. al_group_name_invalid_existingΤα ονόματα των ομάδων πρέπει να είναι μοναδικά. pi_group_naming_btn_lblΟνομασία Ομάδωνtool_branch_act_lblΑποτελέσματα Εκπαιδευομένωνchosen_branch_act_lblΕπιλογή Καθηγητήbranch_mapping_dlg_condition_linked_allΥπάρχουν συνθήκες branch_mapping_dlg_condition_linked_singleΗ συνθήκη είναι to_condition_untitled_item_lblΧωρίς τίτλο {0} branch_mapping_dlg_condition_col_value_maxΜεγαλύτερο ή ίσο από {0} optional_act_btnΔραστηριότηταgrouping_invalid_with_common_names_msgΗ '{0}' έχει περισσότερες από μία ομάδες με το ίδιο όομα και ο σχεδιασμός δεν μπορεί να αποθηκευθεί ως ομαδική δραστηριότητα. Παρακαλώ αναθεωρήστε την ομαδοποίηση και προσπαθήστε ξανά.optional_seq_btnΑκολουθίαpi_optSequence_remove_msg_titleΑπομάκρυνση ακολουθιώνpi_no_seq_actΑριθμός Ακολουθιών cv_invalid_trans_diff_branchesΔεν μπορείτε να δημιουργήσετε μία σύνδεση μεταξύ δραστηριοτήτων διαφορετικών κλάδωνcv_invalid_branch_target_to_activityΟ κλάδος στη {0} υπάρχει ήδη.cv_invalid_branch_target_from_activityΟ κλάδος από τη {0} υπάρχει ήδη.to_condition_invalid_value_range{0} δεν μπορεί να είναι μέσα στη σειρά μιας υπάρχουσας συνθήκηςto_condition_invalid_value_directionΟ {0} δεν μπορεί να είναι μεγαλύτερος από {1}.lbl_num_sequences{0} - Ακολουθιών pi_seqΑκολουθίεςis_remove_warning_msgΠΡΟΕΙΔΟΠΟΙΗΣΗ: Το μάθημα πρόκειται να αφαιρεθεί. Θέλετε αυτό κρατήσετε αυτό το μάθημα ως {0};al_continueΣυνεχείστεbranch_mapping_dlg_condition_linked_msgΟ {0} είναι συνδεμένος με έναν υπάρχοντα κλάδο. Επιθυμείτε να συνεχιστείτε; to_conditions_dlg_defin_long_typeσειράcv_activityProtected_child_activity_link_msgΤο {0} έχει ένα παιδί συνδεδεμένο με το {1} optional_seq_btn_tooltipΔημιουργία ενός συνόλου προαιρετικών ακολουθιώνal_cannot_move_to_diff_opt_seqΓια να μετακινήσετε μια δραστηριότητα σε μία διαφορετική ακολουθία με Προεραιτικές ακολουθίες, πρώτα σύρε την δραστηριότητα έξω από το την περιοχή της Προεραιτικής Ακολουθίας και μετά κάνε κλί και σύρε την στη νέα της θεση μέσα στις Προεραιτικές Ακολουθίες. to_conditions_dlg_defin_bool_typeαλήθεια/ψέμαcv_activityProtected_activity_remove_msgΓια να το απομακρύνετε παρακαλώ να ακυρώσετε την επιλογή αυτής της δραστηριότητας ως {0} .cv_activityProtected_activity_link_msgΑυτό το {0} είναι συνδεδεμένο με το {0} to_conditions_dlg_defin_item_header_lbl[ Επιλογή Εξόδου ]to_conditions_dlg_defin_item_fn_lbl{0} ({1}) pi_optSequence_remove_msgΗ ακολουθία(ες) που πρόκειται να απομακρυνθούν περιέχουν δραστηριότητες που θα διαγραφούν. Θέλετε να διαγράψετε αυτές τις ακολουθίες;to_conditions_dlg_condition_items_name_col_lblΌνομαactivityDrop_optSequence_error_msgΠαρακαλώ αφήστε τη δραστηριότητα μέσα σε μία από τις ακολουθίες. arrange_act_btnΤακτοποιήστε τις Δραστηριότητεςto_conditions_dlg_condition_items_value_col_lblΣυνθήκηto_conditions_dlg_options_item_header_lbl[ Επιλογές ]close_mc_tooltipΕλαχιστοποίησηto_conditions_dlg_gte_lblΜεγαλύτερο ή ίσο απόbranching_act_titleΔιακλάδωσηto_conditions_dlg_lte_lblΜικρότερο ή ίσο απόcv_invalid_optional_seq_activity_no_branchesΑπομακρύνετε όλους τους συνδεδεμένους κλάδους από {0} πριν τον προσθέσετε σε μία προαιρετική ακολουθία.ta_iconDrop_optseq_error_msgΔεν υπάρχουν ενεργοποιημένες ακολουθίες σε αυτόν τον υποδοχέα.cv_eof_finish_invalid_msgΤο σχέδιο πρέπει να είναι έγκυρο για να ολοκληρώσετε την επεξεργασία.gpl_license_urlwww.gnu.org/licenses/gpl.txtact_seq_lock_chkΠαρακαλώ ξεκλειδώστε τον υποδοχέα Προαιρετικών Ακολουθιών πριν αναθέσετε αυτή τη δραστηριότητα σε μία προαιρετική ακολουθία. cv_invalid_optional_seq_activityΑφαιρέστε τις μεταβάσεις "από" και "προς" από το {0} πριν το καθορίσετε ως προαιρετική ακολουθία.stream_urlhttp:// {0} foundation.orgcv_invalid_optional_activity_no_branchesΔιαγράψτε όλες τις διασυνδέσεις από το {0} πριν το καθορίσετε ως προαιρετική δραστηριότητα.opt_activity_seq_titleΠροαιρετικές ακολουθίεςto_conditions_dlg_lt_lblΜικρότερο ή ίσο απόbranch_mapping_dlg_condition_col_value_minΜικρότερο από ή ίσο με {0}pi_actΔραστηριότητεςpi_activity_type_sequenceΔραστηριότητα Ακολουθίας ({0})groupnaming_dialog_instructions_lblΚάντε κλικ σε ένα όνομα για να αλλάξετε την τιμή του.branch_mapping_dlg_group_col_lblΟμάδαcv_activity_readOnlyΗ δραστηριότητα δεν μπορεί να είναι {0}. Η δραστηριότητα είναι μόνο για ανάγνωση.cv_edit_on_fly_lblΖωντανή Επεξεργασίαcv_element_readOnly_action_delδιαγραφήcv_element_readOnly_action_modμεταβλήθηκεpi_minsΛεπτάpi_branch_tool_acts_lblΕισαγωγή (εργαλείο)pi_condmatch_btn_lblΔημιουργία Συνθηκώνpi_branch_tool_acts_default---Επιλογή---pi_no_groupingΚαμίαcv_trans_readOnlyΗ μετάβαση δεν μπορεί να {0}. Ο στόχος της μετάβασης είναι μόνο για ανάγνωση.cancel_btn_tooltipΕπιστροφή στην εποπτεία μαθήματοςmnu_file_finishΤέλοςabout_popup_title_lblΠερί - {0}about_popup_version_lblΈκδοσηabout_popup_copyright_lbl2002-2008 Ίδρυμα {0}. about_popup_trademark_lbl{0} είναι ένα εμπορικό σήμα {του ιδρύματος 0} ({1}).about_popup_license_lblΑυτό το πρόγραμμα είναι ελεύθερο λογισμικό μπορείτε να το διανείμετε ή/και να το τροποποιήσετε υπό τους όροους των αδειών GNU όπως δημοσιεύονται από το Ίδρυμα Ελεύθερου Λογισμικού.stream_reference_lblLAMS to_conditions_dlg_title_lblΔημιουργήστε Συνθήκες Εξόδουal_doneΕγινε condmatch_dlg_cond_lst_lblΣυνθήκεςcondmatch_dlg_title_lblΑντιστοίχηση Συνθηκών σε Κλάδουςpi_defaultBranch_cb_lblπροεπιλογή to_conditions_dlg_add_btn_lbl+ Προσθέστεto_conditions_dlg_clear_all_btn_lblΚαθαρισμός Όλωνto_conditions_dlg_remove_item_btn_lbl- Αφαιρέστε to_conditions_dlg_from_lblΑπό: to_conditions_dlg_to_lblΠρος: to_conditions_dlg_range_lblΕύροςbranch_mapping_dlg_branch_col_lblΚλάδοςbranch_mapping_dlg_condition_col_lblΟροςbranch_mapping_no_branch_msgΚανένας Κλάδος δεν έχει επιλεγείbranch_mapping_no_condition_msgΚαμία Συνθήκη δεν έχει επιλεγείbranch_mapping_dlg_condition_col_valueΣειρά {0} {1}branch_mapping_dlg_condition_col_value_exactΑκριβή τιμή {0} {1}pi_define_monitor_cb_lblΟρίστε στο Περιβάλλον Ελέγχουbranch_mapping_no_groups_msgΚαμμία ομάδα δεν επιλέχθηκεgroup_branch_act_lblΒασισμένη σε Ομάδαbranch_mapping_dlg_branches_lst_lblΚλάδοιgroupmatch_dlg_groups_lst_lblΟμάδεςgroupnaming_dlg_title_lblΟνομασία Ομάδαςpi_activity_type_branchingΔραστηριότητα Διακλάδωσηςpi_branch_typeΕίδος διακλάδωσηςflow_btn_tooltipΔημιουργία διαγράμματος ελέγχου δραστηριοτήτωνgroup_btn_tooltipΔημιουργία Ομαδικής Δραστηριότηταςpreview_btn_tooltipΠροεπισκόπηση της Ακολουθίας σας όπως θα τη βλέπουν οι Εκπαιδευόμενοι.cv_activity_dbclick_readonlyΔεν είναι δυνατή η επεξεργασία εργαλείων ενός μόνο-για ανάγνωση σχεδιασμού. Παρακαλώ αποθηκεύστε ένα αντίγραφο του σχεδιασμού και προσπαθήστε πάλι.cv_readonly_lblΜόνο για Ανάγνωσηal_empty_designΛυπούμαστε, Δε μπορείτε να αποθηκεύσετε ένα άδειο σχέδιοcv_autosave_rec_msgΕίστε έτοιμοι για ανάκτηση των χαμένων ή μη-αποθηκευμένων σχεδιασμών. Ο τρέχον σχεδιασμός θα διαγραφεί. Θέλετε να συνεχίσετε;cv_autosave_rec_titleΠροσοχήmnu_file_recoverΑνάκτηση...cv_activity_copy_invalidΣυγνώμη! Δεν επιτρέπεται η αντιγραφή της δραστηριότητας-παιδί. cv_activity_cut_invalidΣυγνώμη! Δεν επιτρέπεται η αποκοπή αυτής της δραστηριότητας-παιδί. al_activity_copy_invalidΛυπούμαστε! Πρέπει να επιλέξετε τη δραστηριότητα πριν πατήστε αντιγραφήal_activity_openContent_invalidΣυγγνώμη! Απαιτείται να έχετε επιλέξειτη δραστηριότητα πριν να κάντε κλικ στο στοιχείο του μενού Άνοιγμα/Επεξεργασία Περιεχομένου Δραστηριότητας στο μενού με το δεξί κλικ της δραστηριότητας.ws_del_confirm_msgΕίστε σίγουροι ότι θέλετε να διαγράψετε αυτό το αρχείο/φάκελο;ws_file_name_emptyΛυπούμαστε! Δε μπορείτε να αποθηκεύσετε ένα σχέδιο χωρίς όνομαcv_activity_helpURL_undefinedΔεν μπορώ να βρώ βοήθεια για τη σελίδα {0}cv_untitled_lblΑνώνυμη-1mnu_help_helpΒοήθεια Συγγραφήςccm_open_activitycontentΆνοιγμα/Επεξεργασία Περιεχομένου Δραστηριότηταςccm_copy_activityΑντιγραφή Δραστηριότηταςccm_paste_activityΕπικόλληση Δραστηριότηταςccm_piΕπιθεώρηση ιδιότητας ...ccm_author_activityhelpΒοήθεια Συγγραφέα για τη Δραστηριότηταws_dlg_descriptionΠεριγραφήtrans_dlg_nogateΤίποτεpi_daysΗμέρεςcv_close_return_to_ext_srcΚλείσιμο και μετάβαση πίσω στο {0}cv_eof_changes_appliedΟι αλλαγές έχουν γίνει επιτυχώςmnu_file_apply_changesΕφαρμογή Αλλαγώνvalidation_error_transitionNoActivityBeforeOrAfterΜια μετάβαση πρέπει να έχει μια δραστηριότητα πριν από ή μετά από αυτήνvalidation_error_activityWithNoTransitionΜια δραστηριότητα πρέπει να έχει μια μετάβαση εισόδου ή εξόδου validation_error_inputTransitionType1Αυτή η δραστηριότητα δεν έχει καμία μετάβαση εισόδουvalidation_error_inputTransitionType2Καμία από τις δραστηριότητες δεν έχει χάσει την μετάβαση εισόδου.validation_error_outputTransitionType1Αυτή η δραστηριότητα δεν έχει καμία μετάβαση εξόδουvalidation_error_outputTransitionType2Καμμία από τις δραστηριότητες δεν έχει χάσει την μετάβαση εξόδου. cv_invalid_design_on_apply_changesΔεν μπορείτε να εφαρμόσετε τις αλλαγές. Λείπουν μια ή περισσότερες μεταβάσεις.apply_changes_btnΕφαρμογή αλλαγώνapply_changes_btn_tooltipΕφαρμογή αλλαγών στο σχέδιο και επιστροφή στην οθόνη μαθήματος.cancel_btnΆκυροws_tree_mywspΟ Χώρος Εργασίας μουws_tree_orgsΟι Ομάδες μουws_view_license_buttonΠροβολήact_lock_chkΠαρακαλώ, ξεκλειδώστε την Προαιρετική Δραστηριότητα πριν καθορίσετε αυτήν την δραστηριότητα ως προαιρετική.sys_error_msg_startΈχει εμφανιστεί το ακόλουθο λάθος συστήματος: sys_error_msg_finishΑπαιτείται επανεκκίνηση του LAMS "Συγγραφέας" για να συνεχίσετε. Θέλετε να αποθηκεύσετε τις παρακάτω πληροφορίες για το λάθος ώστε να βοηθήσετε στην επίλυση αυτού του προβλήματος;sys_errorΛάθος συστήματοςpi_num_groupsΑριθμός Ομάδωνpi_parallel_titleΠαράλληλη Δραστηριότηταopt_activity_titleΠροαιρετική Δραστηριότηταlbl_num_activities{0}-Δραστηριότητεςal_sendΑποστολήal_cannot_move_activityΛυπούμαστε, δεν μπορείτε να μετακινήσετε αυτή τη δραστηριότητα. cv_gateoptional_hit_chkΔεν μπορείτε να προσθέσετε μία δρασηριότητα πύλης σαν μια προαιρετική δραστηριότητα.prefix_copyof_countΑντιγραφή ({0}) απόws_save_folder_invalidΔεν μπορείτε να αποθηκεύσετε το σχέδιο σε αυτό το φάκελο. Παρακαλώ επιλέξτε έναν έγκυρο υποφάκελο.ws_click_file_openΠαρακαλώ κάντε κλικ στο Σχέδιο για να να ανοίξει.ws_license_lblΆδειαws_license_comment_lblΕπιπρόσθετες Πληροφορίες Άδειαςcv_invalid_optional_activityΑφαίρεση σε και από {0} μεταβάσεις πριν την τοποθέτηση μιας προαιρετικής δραστηριότηταςcv_trans_target_act_missingΗ δεύτερη δραστηριότητα της Μετάβασης λείπει.cv_invalid_trans_target_from_activityΗ Μετάβαση από {0} ήδη υπάρχει.cv_invalid_trans_target_to_activityΗ Μετάβαση σε {0} ήδη υπάρχει.branch_btnΔιακλάδωσηflow_btnΡοή mnu_file_importΕισαγωγήcv_design_export_unsavedΔε μπορεί να γίνει "εξαγωγή" μη αποθηκευμένου Σχεδίουmnu_file_exportΕξαγωγήws_chk_overwrite_existingΑυτός ο φάκελος περιέχει ήδη ένα αρχείο με όνομα {0}. ws_click_virtual_folderΔε μπορεί να χρησιμοποιηθεί ο φάκελος αυτόςmnu_file_exitΈξοδοςws_no_file_openΔεν βρέθηκε αρχείοcv_invalid_trans_circular_sequenceΔεν επιτρέπεται να έχετε κυκλική ακολουθία bin_tooltipΡίξτε μία δραστηριότητα σε αυτό το καλάθι για να την απομακρύνετε από την ακολουθία δραστηριοτήτωνnew_btn_tooltipΔημιουργία Νέας Ακολουθίας Δραστηριοτήτωνopen_btn_tooltipΆνοιγμα αποθηκευμένης Ακολουθίας Δραστηριοτήτωνcopy_btn_tooltipΑντιγραφή της επιλεγμένης δραστηριότηταςpaste_btn_tooltipΕπικόλληση ενός αντιγράφου της επιλεγμένης δραστηριότηταςtrans_btn_tooltipΣχεδίαση μεταβάσεων μεταξύ δραστηριοτήτων (ή με χρήση του πλήκτρου CTRL)optional_btn_tooltipΔημιουργία μιας ομάδας προαιρετικών δραστηριοτήτωνgate_btn_tooltipΔημιουργία ενός σημείου διακοπήςbranch_btn_tooltipΔημιουργία ενός κλάδου (διαθέσιμο στο LAMS v 2.1)none_act_lblΚαμίαopen_btnΆνοιγμαoptional_btnΠροαιρετικήpaste_btnΕπικόλλησηperm_act_lblΆδεια Πρόσβασηςpi_activity_type_gateΔραστηριότητα Πύληςpi_activity_type_groupingΟμαδική Δραστηριότηταpi_definelaterΚαθορίζονται από τον Επόπτηpi_end_offsetΚλείστε την πύληpi_group_typeΤύπος Ομαδοποίησηςpi_hoursΏρεςpi_lbl_currentgroupΤρέχουσα ομαδοποίησηpi_lbl_descΠεριγραφήpi_lbl_groupΟμαδοποίησηpi_lbl_titleΌνομαpi_max_actΜέγιστος {0}pi_min_actΕλάχιστος {0}ws_dlg_ok_buttonΟΚpi_num_learnersΑριθμός Εκπαιδευόμενων pi_optional_titleΠροαιρετική Δραστηριότηταpi_runofflineΔραστ. χωρίς απευθείας σύνδεσηpi_start_offsetΆνοιγμα πύληςprefix_copyofΑντιγραφή τηςprefs_dlg_cancelΆκυροprefs_dlg_lng_lblΓλώσσαprefs_dlg_okΟΚprefs_dlg_theme_lblΘέμαprefs_dlg_titleΠροτιμήσειςpreview_btnΠροεπισκόπησηrandom_grp_lblΤυχαίαrename_btnΜετονομασίαsched_act_lblΧρονοδιάγραμμαsynch_act_lblΣυγχρονίστεtk_titleΕργαλείο Δραστηριοτήτωνtrans_btnΜετάβασηtrans_dlg_cancelΆκυροtrans_dlg_gateΣυγχρονισμόςtrans_dlg_gatetypecmbΤύποςtrans_dlg_okΟΚtrans_dlg_titleΜετάβασηws_RootΡίζαws_dlg_open_btnΆνοιγμαws_chk_overwrite_resourceΠροσοχή: πρόκειται να αντικαταστήσετε αυτή την ακολουθία!ws_copy_same_folderΗ πηγή και ο φάκελος προορισμού έχουν το ίδιο όνομαws_dlg_cancel_buttonΆκυροws_dlg_filenameΌνομα Αρχείουws_dlg_location_buttonΤοποθεσίαmnu_file_saveasΑποθήκευση ως ...mnu_file_saveΑποθήκευσηws_dlg_titleΧώρος Εργασίαςcv_autosave_err_msgΠρόβλημα κατα τη διάρκεια αυτόματης αποθήκευσης του σχεδίου σας. Αν το πρόβλημα επαναλαμβάνεται παρακαλώ επικοινωνήστε με το Διαχειριστή του Συστήματοςws_newfolder_cancelΆκυροal_cancelΆκυροws_newfolder_insΠαρακαλώ εισάγετε ένα νέο όνομα αρχείουws_newfolder_okΟΚal_okΟΚws_dlg_save_btnΑποθήκευσηws_no_permissionΛυπούμαστε, δεν έχετε άδεια να γράψετε σε αυτό τον πόροws_rename_insΠαρακαλώ εισάγετε ένα νέο όνομαal_alertΕιδοποίησηact_tool_titleΕργαλείο Δραστηριοτήτωνws_click_folder_fileΠαρακαλώ πατήστε είτε σε έναν Κατάλογο για αποθήκευση είτε σε μία Σχεδίαση για επικάλυψηsave_btnΑποθήκευσηal_confirmΕπιβεβαίωσηgroup_btnΟμάδαgrouping_act_titleΟμαδοποίησηapp_chk_langloadΤα δεδομένα της γλώσσας δεν έχουν φορτωθείapp_chk_themeloadΤα δεδομένα του θέματος δεν έχουν φορτωθείapp_fail_continueΗ εφαρμογή δεν μπορεί να συνεχίσει. Παρακαλώ επικοινωνείστε με την τεχνική υποστήριξηchosen_grp_lblΕπιλογή στην Εποπτείαcopy_btnΑντιγραφήcv_invalid_design_savedΤο σχέδιό σας δεν είναι ακόμα έγκυρο, αλλά έχει αποθηκευθεί, κάντε κλικ στο "Ζητήματα" για να δείτε το λάθος. ld_val_activity_columnΔραστηριότηταcv_invalid_trans_targetΔεν μπορείτε να δημιουργήσετε μια μετάβαση σε αυτό το αντικείμενοcv_show_validationΖητήματαcv_valid_design_savedΣυγχαρητήρια! - Η σχεδίαση είναι έγκυρη και έχει αποθηκευθείsave_btn_tooltipΑποθήκευση Ακολουθίας Δραστηριοτήτωνdb_datasend_confirmΕυχαριστώ για την αποστολή των δεδομένων στον εξυπηρετητήdelete_btnΔιαγραφήgate_btnΠύληld_val_doneΈγινεview_students_before_selectionΠροβολή εκπαιδευομένων πριν από την επιλογή;ld_val_issue_columnΖήτημαld_val_titleΕπικύρωση ζητήματοςlicense_not_selectedΚαμία άδεια δεν έχει ακόμα επιλεγεί - Παρακαλώ επιλέξετε μίαmnu_editΕπεξεργασίαmnu_edit_copyΑντιγραφήmnu_edit_cutΑποκοπήmnu_edit_pasteΕπικόλλησηmnu_edit_redoΑκύρ. Αναίρεσηςmnu_edit_undoΑναίρεσηcv_design_unsavedΤο Σχέδιο της επιφάνειας έχει αλλάξει. Θέλετε να συνεχίσετε χωρίς αποθήκευση;mnu_fileΑρχείοmnu_file_closeΚλείσιμοmnu_file_newΝέαws_entre_file_nameΠαρακαλώ δώστε το όνομα του σχεδίου και μετά πατήστε Αποθήκευσηmnu_file_openΆνοιγμαcv_eof_finish_modified_msgΠροειδοποίηση: Το σχέδιό σας έχει τροποποιηθεί. Επιθυμείτε να κλείσετε χωρίς αποθήκευση;mnu_helpΒοήθειαmnu_help_abtΠληροφορίες για το LAMSmnu_toolsΕργαλείαmnu_tools_optΠροαιρετικήmnu_tools_prefsΕπιλογέςmnu_tools_transΜετάβαση new_btnΝέαnew_confirm_msgΕίστε σίγουροι ότι θέλετε να διαγράψετε τη σχεδίαση από την οθόνη;competences_lblΙκανότητεςcompetences_mapped_to_act_lblΙκανότητεςws_dlg_properties_buttonΙδιότητεςmap_comptence_btnΣύνδ. με Ικανότητεςpi_titleΕπιθεώρηση Ιδιοτήτωνproperty_inspector_titleΙδιότητες:condmatch_dlg_message_lblΟ πρεπιλεγμένος κλάδος μπορεί να επιλεχθεί με κλικ στο τετραγωνίδιο «Προεπιλεγμένος» στην περιοχή ιδιοτήτων του επιθυμητού κλάδου.ws_dlg_date_modified_lblΤελευταία τροποποίηση: (0)ws_save_title_reserved_charsΟ Τίτλος δεν μπορεί να περιέχει ειδικούς χαρακτήρες: (0)mnu_file_import_communityΕισαγωγή από την Κοινότητα του LAMS ...gradebook_output_typeΈξοδος Βαθμολογίουsupport_act_btnΥποστήριξηsupport_act_btn_tooltip Δημιουργήστε μια σειρά από προαιρετικές δραστηριότητες υποστήριξης.support_act_titleΔραστηριότητα Υποστήριξης.support_msg_no_connectionΟι δραστηριότητες υποστήριξης δεν μπορούν να συνδεθούν με καμία άλλη δραστηριότητα.support_msg_invalid_childΟι δραστηριότητες τύπου {0} δεν μπορούν να προστεθούν ως δραστηριότητες υποστήριξηςsupport_msg_max_children_reachedΔεν είναι δυνατή η προσθήκη δραστηριότητας:{0} εδώ. Η δραστηριότητα υποστήριξης επιτρέπει το μέγιστο {1} δραστηριότητες παιδιά.support_msg_cannot_be_childΔεν μπορείτε να βάζετε μια δραστηριότητα υποστήριξης μέσα σε μια άλλη δραστηριότητα.cv_design_insert_warningΜόλις εισαγάγετε μια άλλη ακολουθία, δεν μπορείτε να ακυρώσετε αυτήν την πράξη - η παλαιά ακολουθία αυτόματα αποθηκεύεται με τη νέα ακολουθία που παρεμβάλλεται. Για να επιστρέψετε στην παλαιά ακολουθία σας, θα πρέπει διαγράψτε όλες τις νέες δραστηριότητες με το χέρι, και έπειτα να την αποθηκεύσετε. Για να αφήσει την τρέχουσα ακολουθία σας χωρίς αλλαγές, κάντε κλικ στο Άκυρο. Διαφορετικά κάντε κλικ στο Εντάξει για να επιλέξετε την ακολουθία που θα εισαγάγετε.preview_btn_tooltip_disabledΓια την προεπισκόπηση της δραστηριότητας θα πρέπει να την έχετε αποθηκεύσει και στη συνέχεια να επιλέξετε "Προεπισκόπηση" \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/en_AU_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleParallel Activityopt_activity_titleOptional Activityal_sendSendal_cannot_move_activitySorry you cannot move this activity.cv_activity_copy_invalidSorry! You are not allowed to copy this child activity.cv_activity_cut_invalidSorry! You are not allowed to cut this child activity.act_tool_titleActivities Toolkital_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportcopy_btnCopycv_invalid_trans_targetYou cannot create a transition to this objectcv_show_validationIssuesdb_datasend_confirmThanks for Sending data to serverdelete_btnDeletegate_btnGategroup_btnGroupgrouping_act_titleGroupingld_val_activity_columnActivityld_val_doneDoneld_val_issue_columnIssueld_val_titleValidation issuesmnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_edit_redoRedomnu_edit_undoUndomnu_fileFilemnu_file_closeClosemnu_file_newNewmnu_file_openOpenmnu_file_saveSavemnu_file_saveasSave as...mnu_helpHelpmnu_toolsToolsmnu_tools_optDraw Optionalmnu_tools_transDraw Transitionnew_btnNewnew_confirm_msgAre you sure you want to clear your design on the screen?none_act_lblNoneopen_btnOpenoptional_btnOptionalpaste_btnPasteperm_act_lblPermissionpi_activity_type_gateGate Activitypi_activity_type_groupingGrouping Activitypi_end_offsetClose gatepi_group_typeGrouping typepi_hoursHourspi_lbl_currentgroupCurrent Groupingpi_lbl_descDescriptionpi_lbl_groupGroupingpi_lbl_titleTitlepi_minsMinutespi_optional_titleOptional Activitypi_start_offsetOpen gatepi_titlePropertiesprefix_copyofCopy of prefs_dlg_cancelCancelprefs_dlg_lng_lblLanguageprefs_dlg_okOKprefs_dlg_theme_lblThemepreview_btnPreviewproperty_inspector_titlePropertiesrandom_grp_lblRandomrename_btnRenamesave_btnSavesched_act_lblSchedulesynch_act_lblSynchronisetk_titleActivities Toolkittrans_btnTransitiontrans_dlg_cancelCanceltrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRootws_click_folder_filePlease click on either a Folder to save in, or a Design to overwritews_copy_same_folderThe source and destination folders are the samews_dlg_cancel_buttonCancelws_dlg_filenameFile Namews_dlg_location_buttonLocationws_dlg_ok_buttonOKws_dlg_open_btnOpenws_dlg_properties_buttonPropertiesws_dlg_save_btnSavews_dlg_titleWorkspacews_newfolder_cancelCancelws_newfolder_insPlease enter a the new folder namews_newfolder_okOKws_no_permissionSorry, you do not have permission to write to this resourcews_rename_insPlease enter the new namews_tree_mywspMy Workspacews_view_license_buttonViewsys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errorchosen_grp_lblChoose in Monitoral_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.pi_no_groupingNonews_chk_overwrite_existingThis folder already contains a file named {0}.mnu_file_importImportprefix_copyof_countCopy ({0}) ofws_click_file_openPlease click on a Design to open.cv_gateoptional_hit_chkYou cannot add a gate activity as an optional activity.ws_save_folder_invalidYou cannot save a design in this folder. Please select a valid sub-folder.ws_license_lblLicensews_license_comment_lblAdditional License Informationcv_trans_target_act_missingSecond activity of the Transition is missing.cv_invalid_optional_activityRemove to and from transitions from {0} before setting it as an optional activity.cv_invalid_trans_target_to_activityA Transition to {0} already existcv_invalid_trans_target_from_activityA Transition from {0} already existws_del_confirm_msgAre you sure you want to delete this file / folder?branch_btnBranchflow_btnFlowbin_tooltipDrop an activity on this bin to remove it from the activity sequence.new_btn_tooltipClears current sequence and resets workspace ready for useopen_btn_tooltipShow File Dialogue to open an Activity Sequenceflow_btn_tooltipCreate flow controls activitiesgroup_btn_tooltipCreate a Grouping activitypreview_btn_tooltipPreview your Sequence as learners will see itcopy_btn_tooltipCopy the selected activitypaste_btn_tooltipPaste a copy of the selected activitysave_btn_tooltipQuick save current Activity Sequenceoptional_btn_tooltipCreate a set of optional activities. gate_btn_tooltipCreate a stop pointtrans_btn_tooltipUse this pen to draw transitions between activities (or press CTRL key)pi_daysDaysws_click_virtual_folderCannot use this folder.mnu_file_exitExitcv_design_export_unsavedYou cannot Export an unsaved design.mnu_file_exportExportrefresh_btnRefreshpi_num_groupsNumber of groupscv_design_unsavedThe design on the canvas has changed. Continue without saving?ws_no_file_openNo file found.cv_invalid_trans_circular_sequenceYou are not allowed to have a circular sequencetrans_dlg_nogateNonecv_autosave_rec_msgYou are about to recover the last lost or unsaved design. Your current design will be cleared. Continue?ws_chk_overwrite_resourceWarning: you are about to overwrite this sequence!al_activity_copy_invalidSorry! You are required to select the activity before you click copyapp_chk_langloadThe language data has not been loadedcv_activity_dbclick_readonlyYou are unable to edit tools of a read-only design. Please save a copy of the design and try again.cv_readonly_lblRead Onlylicense_not_selectedNo license currently selected - Please select one al_empty_designSorry, You cannot save an empty designws_dlg_descriptionDescriptioncv_valid_design_savedCongratulations! - Your design is valid and has been savedtool_branch_act_lblLearner's Outputcv_autosave_rec_titleWarningws_tree_orgsMy Groupsmnu_file_recoverRecover...ws_entre_file_namePlease enter the design name, and then click Save button.ws_file_name_emptySorry! You are not allowed to save a design with no file name.ccm_author_activityhelpAuthor Activity Helpccm_open_activitycontentOpen/Edit Activity Contentccm_copy_activityCopy Activityccm_paste_activityPaste Activityccm_piProperty Inspector...mnu_help_helpAuthoring Helpsupport_act_btnSupportsupport_act_btn_tooltipCreate a set of optional support activities.support_act_titleSupport Activitysupport_msg_no_connectionSupport activities cannot be connected to any other activitysupport_msg_invalid_childActivities of type {0} cannot be added as a support activitysupport_msg_max_children_reachedCannot drop activity: {0} here. The support activity permits a maximum of {1} child activities.support_msg_cannot_be_childCannot drop a support activity inside another activity.mnu_help_abtAbout LAMScv_untitled_lblUntitled - 1cv_activity_helpURL_undefinedCannot find help page for {0}cv_close_return_to_ext_srcClose and back to {0}about_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcancel_btn_tooltipReturn to monitor lesson.mnu_file_finishFinishmnu_file_apply_changesApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAn activity must have an input or output transitionvalidation_error_inputTransitionType1This activity has no input transitionvalidation_error_inputTransitionType2No activities are missing their input transition.validation_error_outputTransitionType1This activity has no output transitionvalidation_error_outputTransitionType2No activities are missing their output transition.cv_invalid_design_on_apply_changesCannot apply changes. There are one or more transitions missing.apply_changes_btnApply Changesapply_changes_btn_tooltipApply changes to design and return to monitor lesson.cancel_btnCancelcv_activity_readOnlyActivity cannot be {0}. The Activity is read-only.cv_edit_on_fly_lblLive Editcv_element_readOnly_action_delremovedcv_element_readOnly_action_modmodifiedcv_eof_finish_invalid_msgDesign must be valid in order to finish editing.cv_eof_finish_modified_msgWarning: Your design has been modified. Do you wish to close without saving?cv_trans_readOnlyTransition cannot be {0}. The Transition target is read-only.pi_branch_tool_acts_default--Selection--about_popup_copyright_lbl© 2002-2009 {0} Foundation. branching_act_titleBranchingpi_definelaterDefine in Monitorgroupnaming_dialog_instructions_lblClick on a name to change its value.pi_branch_tool_acts_lblInput (Tool)al_doneDonecondmatch_dlg_cond_lst_lblConditionscondmatch_dlg_title_lblMatch Conditions to Branchespi_defaultBranch_cb_lbldefaultto_conditions_dlg_add_btn_lbl+ Addto_conditions_dlg_clear_all_btn_lblClear Allto_conditions_dlg_remove_item_btn_lbl- Removebranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupbranch_mapping_no_branch_msgNo Branch selected.branch_mapping_no_mapping_msgNo Mapping selected.branch_mapping_no_condition_msgNo Condition selected.branch_mapping_auto_condition_msgAll remaining Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsbranch_mapping_dlg_condition_col_valueRange {0} to {1}branch_mapping_dlg_condition_col_value_exactExact value of {0}pi_mapping_btn_lblSetup Mappingspi_define_monitor_cb_lblDefine in Monitorgroupmatch_dlg_title_lblMap Groups to Branchesmap_comptence_btnMap to competenciescompetences_mapped_to_act_lblCompetenciesbranch_mapping_no_groups_msgNo Groups selected.group_branch_act_lblGroup-basedbranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupsgroupnaming_dlg_title_lblGroup Namingpi_activity_type_branchingBranching Activitypi_branch_typeBranching typepi_group_naming_btn_lblName Groupssequence_act_titleSequenceal_activity_paste_invalidSorry you cannot paste this type of activitychosen_branch_act_lblTeacher Choiceto_condition_start_valuestart valueto_condition_end_valueend valueto_condition_invalid_value_rangeThe {0} cannot be within the range of an existing condition.to_condition_invalid_value_directionThe {0} cannot be greater than the {1}.is_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson as {0}?condmatch_dlg_message_lblThe default branch can be chosen by clicking the "default" checkbox in the Properties area for the desired branch.al_continueContinuebranch_mapping_dlg_condition_linked_msg{0} linked to an existing branch. Do you wish to continue?branch_mapping_dlg_condition_linked_allThere are conditionsbranch_mapping_dlg_condition_linked_singleThis condition isto_condition_untitled_item_lblUntitled {0}redundant_branch_mappings_msgThe design contains unused branch mappings that will be removed. Do you wish to continue?cv_activityProtected_activity_remove_msgTo remove please deselect this activity as the {0}.cv_activityProtected_activity_link_msgThis {0} is linked to a {1}.cv_activityProtected_child_activity_link_msgThis {0} has a child linked to a {1}.optional_act_btnActivityoptional_seq_btnSequenceoptional_seq_btn_tooltipCreate a set of optional sequences.pi_optSequence_remove_msg_titleRemoving sequencespi_optSequence_remove_msgThe sequence(s) to be removed may contain activities that will be deleted. Do you wish to remove these sequences? pi_no_seq_actNo of Sequencespi_activity_type_sequenceSequence Activity ({0})lbl_num_sequences{0} - SequencesactivityDrop_optSequence_error_msgPlease drop the activity onto one of the sequences. cv_invalid_optional_seq_activity_no_branchesRemove any connected branches from {0} before adding it to an optional sequence.ta_iconDrop_optseq_error_msgThere are no sequences enabled on this container.act_seq_lock_chkPlease unlock the Optional Sequences container before assigning this activity to an optional sequence.cv_invalid_optional_seq_activityRemove to and from transitions from {0} before setting it to an optional sequence.cv_invalid_optional_activity_no_branchesRemove any connected branches from {0} before setting it as an optional activity.act_lock_chkPlease unlock the Optional Activity container before assigning this activity as optional.lbl_num_activities{0} - Activitiesto_conditions_dlg_lt_lblLess than or equalsopt_activity_seq_titleOptional Sequencesbranch_mapping_dlg_condition_col_value_minLess than or eq {0}branch_mapping_dlg_condition_col_value_maxGreater than or eq {0}pi_actActivitiespi_seqSequencespi_max_actMax {0}pi_min_actMin {0}pi_runofflineOffline Activitysequence_act_title_new{0} {1}to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblToto_conditions_dlg_range_lblRangeto_conditions_dlg_defin_long_typerangeto_conditions_dlg_defin_bool_typetrue/falseto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNameto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[ Options ]close_mc_tooltipMinimizecv_autosave_err_msgAn error has occurred while trying to auto-save your design. Please increase your Flash Player storage settings.to_conditions_dlg_gte_lblGreater than or equal toto_conditions_dlg_lte_lblLess than or equal togroupnaming_dialog_col_groupName_lblGroup Namews_dlg_insert_btnInsertbranch_mapping_dlg_branch_item_default{0} (default)to_conditions_dlg_title_lblCreate Output Conditionsto_conditions_dlg_defin_item_header_lbl[ Choose Output ] pi_condmatch_btn_lblCreate Conditionspi_group_matching_btn_lblMatch Groups to Branches pi_tool_output_matching_btn_lblMatch Conditions to Branchesto_conditions_dlg_condition_items_update_defaultConditionsYou are about to update your conditions for the selected output definition. This will clear all links to existing branches. Do you wish to continue?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroCannot update as no user defined conditions were found. You may need to set them up in the tool's authoring page(s).to_conditions_dlg_defin_user_defined_typeuser definedgrouping_invalid_with_common_names_msgCannot save the design as the grouping activity '{0}' has more than one group with the same name. Please review the grouping and try again.mnu_file_insertdesignInsert/Merge...preview_btn_tooltip_disabledTo Preview your sequence, you need to save it first, then click Previewcv_invalid_design_savedYour design is not yet valid, but it has been saved, click 'Potential Issues' to see what's wrong.pi_num_learnersNumber of learnerscv_design_insert_warningOnce you insert another sequence, you cannot Cancel this action – your old sequence is automatically saved with the new sequence inserted. To go back to your old sequence, you will need to delete all new sequence activities by hand, and then save. To leave your current sequence unchanged, click Cancel. Otherwise click OK to select a sequence to insert.cv_invalid_trans_diff_branchesCan't create a transition between activities in different branches. cv_invalid_branch_target_to_activityA branch to {0} already exists.cv_invalid_branch_target_from_activityA branch from {0} already exists.cv_invalid_trans_closed_sequenceCannot connect a new transition to a closed sequence.al_cannot_move_to_diff_opt_seqTo move an activity to a different sequence within Optional sequences, first drag the activity out of the Optional Sequence area, and then click and drag it to its new location inside Optional Sequences.al_group_name_invalid_blankGroup names cannot be blank.al_group_name_invalid_existingGroup names must be unique.learner_choice_grp_lblLearner's choicepi_equal_group_sizesEqual group sizescompetence_editor_dlgCompetence Editorcompetence_editor_warning_title_existsA competence with the title {0} already existscompetence_editor_warning_title_blankThe competence title cannot be blankcompetence_editor_warning_competence_mappedThe competence you are attempting to delete is currently mapped to one or more activities. Deleting this competence will remove its mappings. Are you sure you want to proceed?competences_lblCompetenciescompetence_editor_add_competence_btnAddcompetence_def_dlgCompetence Definition Dialogcompetence_mappings_btnCompetence Mappingsmap_gate_conditions_btnMap Gate Conditionsgate_mapping_auto_condition_msgAll remaining conditions will be mapped to the selected gates closed state.gate_openopengate_closedclosedal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.cv_eof_changes_appliedChanges have been successfully applied.mnu_file_import_communityImport from LAMS Community...ws_dlg_date_modified_lblLast modified: {0}ws_save_title_reserved_charsTitle cannot contain special characters: {0}mnu_tools_prefsPreferencesprefs_dlg_titlePreferencesgradebook_output_typeGradebook Outputview_students_before_selectionView learners before selection?arrange_act_btnArrange Activitiesgrp_chk_clear_branch_mappingsWarning: This will clear all existing group to branch mappings linked to this grouping activity, would you like to continue?branch_btn_tooltipCreate branches \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/en_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleParallel Activityopt_activity_titleOptional Activityal_sendSendal_cannot_move_activitySorry you cannot move this activity.cv_activity_copy_invalidSorry! You are not allowed to copy this child activity.cv_activity_cut_invalidSorry! You are not allowed to cut this child activity.act_tool_titleActivities Toolkital_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportcopy_btnCopycv_invalid_trans_targetYou cannot create a transition to this objectcv_show_validationIssuesdb_datasend_confirmThanks for Sending data to serverdelete_btnDeletegate_btnGategroup_btnGroupgrouping_act_titleGroupingld_val_activity_columnActivityld_val_doneDoneld_val_issue_columnIssueld_val_titleValidation issuesmnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_edit_redoRedomnu_edit_undoUndomnu_fileFilemnu_file_closeClosemnu_file_newNewmnu_file_openOpenmnu_file_saveSavemnu_file_saveasSave as...mnu_helpHelpmnu_toolsToolsmnu_tools_optDraw Optionalmnu_tools_transDraw Transitionnew_btnNewnew_confirm_msgAre you sure you want to clear your design on the screen?none_act_lblNoneopen_btnOpenoptional_btnOptionalpaste_btnPasteperm_act_lblPermissionpi_activity_type_gateGate Activitypi_activity_type_groupingGrouping Activitypi_end_offsetClose gatepi_group_typeGrouping typepi_hoursHourspi_lbl_currentgroupCurrent Groupingpi_lbl_descDescriptionpi_lbl_groupGroupingpi_lbl_titleTitlepi_minsMinutespi_optional_titleOptional Activitypi_start_offsetOpen gatepi_titlePropertiesprefix_copyofCopy of prefs_dlg_cancelCancelprefs_dlg_lng_lblLanguageprefs_dlg_okOKprefs_dlg_theme_lblThemepreview_btnPreviewproperty_inspector_titlePropertiesrandom_grp_lblRandomrename_btnRenamesave_btnSavesched_act_lblSchedulesynch_act_lblSynchronisetk_titleActivities Toolkittrans_btnTransitiontrans_dlg_cancelCanceltrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRootws_click_folder_filePlease click on either a Folder to save in, or a Design to overwritews_copy_same_folderThe source and destination folders are the samews_dlg_cancel_buttonCancelws_dlg_filenameFile Namews_dlg_location_buttonLocationws_dlg_ok_buttonOKws_dlg_open_btnOpenws_dlg_properties_buttonPropertiesws_dlg_save_btnSavews_dlg_titleWorkspacews_newfolder_cancelCancelws_newfolder_insPlease enter a the new folder namews_newfolder_okOKws_no_permissionSorry, you do not have permission to write to this resourcews_rename_insPlease enter the new namews_tree_mywspMy Workspacews_view_license_buttonViewsys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errorchosen_grp_lblChoose in Monitoral_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.pi_no_groupingNonews_chk_overwrite_existingThis folder already contains a file named {0}.mnu_file_importImportprefix_copyof_countCopy ({0}) ofws_click_file_openPlease click on a Design to open.cv_gateoptional_hit_chkYou cannot add a gate activity as an optional activity.ws_save_folder_invalidYou cannot save a design in this folder. Please select a valid sub-folder.ws_license_lblLicensews_license_comment_lblAdditional License Informationcv_trans_target_act_missingSecond activity of the Transition is missing.cv_invalid_optional_activityRemove to and from transitions from {0} before setting it as an optional activity.cv_invalid_trans_target_to_activityA Transition to {0} already existcv_invalid_trans_target_from_activityA Transition from {0} already existws_del_confirm_msgAre you sure you want to delete this file / folder?branch_btnBranchflow_btnFlowbin_tooltipDrop an activity on this bin to remove it from the activity sequence.new_btn_tooltipClears current sequence and resets workspace ready for useopen_btn_tooltipShow File Dialogue to open an Activity Sequenceflow_btn_tooltipCreate flow controls activitiesgroup_btn_tooltipCreate a Grouping activitypreview_btn_tooltipPreview your Sequence as learners will see itcopy_btn_tooltipCopy the selected activitypaste_btn_tooltipPaste a copy of the selected activitysave_btn_tooltipQuick save current Activity Sequenceoptional_btn_tooltipCreate a set of optional activities. gate_btn_tooltipCreate a stop pointtrans_btn_tooltipUse this pen to draw transitions between activities (or press CTRL key)pi_daysDaysws_click_virtual_folderCannot use this folder.mnu_file_exitExitcv_design_export_unsavedYou cannot Export an unsaved design.mnu_file_exportExportrefresh_btnRefreshpi_num_groupsNumber of groupscv_design_unsavedThe design on the canvas has changed. Continue without saving?ws_no_file_openNo file found.cv_invalid_trans_circular_sequenceYou are not allowed to have a circular sequencetrans_dlg_nogateNonecv_autosave_rec_msgYou are about to recover the last lost or unsaved design. Your current design will be cleared. Continue?ws_chk_overwrite_resourceWarning: you are about to overwrite this sequence!al_activity_copy_invalidSorry! You are required to select the activity before you click copyapp_chk_langloadThe language data has not been loadedcv_activity_dbclick_readonlyYou are unable to edit tools of a read-only design. Please save a copy of the design and try again.cv_readonly_lblRead Onlylicense_not_selectedNo license currently selected - Please select one al_empty_designSorry, You cannot save an empty designws_dlg_descriptionDescriptioncv_valid_design_savedCongratulations! - Your design is valid and has been savedtool_branch_act_lblLearner's Outputcv_autosave_rec_titleWarningws_tree_orgsMy Groupsmnu_file_recoverRecover...ws_entre_file_namePlease enter the design name, and then click Save button.ws_file_name_emptySorry! You are not allowed to save a design with no file name.ccm_author_activityhelpAuthor Activity Helpccm_open_activitycontentOpen/Edit Activity Contentccm_copy_activityCopy Activityccm_paste_activityPaste Activityccm_piProperty Inspector...mnu_help_helpAuthoring Helpsupport_act_btnSupportsupport_act_btn_tooltipCreate a set of optional support activities.support_act_titleSupport Activitysupport_msg_no_connectionSupport activities cannot be connected to any other activitysupport_msg_invalid_childActivities of type {0} cannot be added as a support activitysupport_msg_max_children_reachedCannot drop activity: {0} here. The support activity permits a maximum of {1} child activities.support_msg_cannot_be_childCannot drop a support activity inside another activity.mnu_help_abtAbout LAMScv_untitled_lblUntitled - 1cv_activity_helpURL_undefinedCannot find help page for {0}cv_close_return_to_ext_srcClose and back to {0}about_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcancel_btn_tooltipReturn to monitor lesson.mnu_file_finishFinishmnu_file_apply_changesApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAn activity must have an input or output transitionvalidation_error_inputTransitionType1This activity has no input transitionvalidation_error_inputTransitionType2No activities are missing their input transition.validation_error_outputTransitionType1This activity has no output transitionvalidation_error_outputTransitionType2No activities are missing their output transition.cv_invalid_design_on_apply_changesCannot apply changes. There are one or more transitions missing.apply_changes_btnApply Changesapply_changes_btn_tooltipApply changes to design and return to monitor lesson.cancel_btnCancelcv_activity_readOnlyActivity cannot be {0}. The Activity is read-only.cv_edit_on_fly_lblLive Editcv_element_readOnly_action_delremovedcv_element_readOnly_action_modmodifiedcv_eof_finish_invalid_msgDesign must be valid in order to finish editing.cv_eof_finish_modified_msgWarning: Your design has been modified. Do you wish to close without saving?cv_trans_readOnlyTransition cannot be {0}. The Transition target is read-only.pi_branch_tool_acts_default--Selection--about_popup_copyright_lbl© 2002-2009 {0} Foundation. branching_act_titleBranchingpi_definelaterDefine in Monitorgroupnaming_dialog_instructions_lblClick on a name to change its value.pi_branch_tool_acts_lblInput (Tool)al_doneDonecondmatch_dlg_cond_lst_lblConditionscondmatch_dlg_title_lblMatch Conditions to Branchespi_defaultBranch_cb_lbldefaultto_conditions_dlg_add_btn_lbl+ Addto_conditions_dlg_clear_all_btn_lblClear Allto_conditions_dlg_remove_item_btn_lbl- Removebranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupbranch_mapping_no_branch_msgNo Branch selected.branch_mapping_no_mapping_msgNo Mapping selected.branch_mapping_no_condition_msgNo Condition selected.branch_mapping_auto_condition_msgAll remaining Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingsbranch_mapping_dlg_condition_col_valueRange {0} to {1}branch_mapping_dlg_condition_col_value_exactExact value of {0}pi_mapping_btn_lblSetup Mappingspi_define_monitor_cb_lblDefine in Monitorgroupmatch_dlg_title_lblMap Groups to Branchesmap_comptence_btnMap to competenciescompetences_mapped_to_act_lblCompetenciesbranch_mapping_no_groups_msgNo Groups selected.group_branch_act_lblGroup-basedbranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupsgroupnaming_dlg_title_lblGroup Namingpi_activity_type_branchingBranching Activitypi_branch_typeBranching typepi_group_naming_btn_lblName Groupssequence_act_titleSequenceal_activity_paste_invalidSorry you cannot paste this type of activitychosen_branch_act_lblTeacher Choiceto_condition_start_valuestart valueto_condition_end_valueend valueto_condition_invalid_value_rangeThe {0} cannot be within the range of an existing condition.to_condition_invalid_value_directionThe {0} cannot be greater than the {1}.is_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson as {0}?condmatch_dlg_message_lblThe default branch can be chosen by clicking the "default" checkbox in the Properties area for the desired branch.al_continueContinuebranch_mapping_dlg_condition_linked_msg{0} linked to an existing branch. Do you wish to continue?branch_mapping_dlg_condition_linked_allThere are conditionsbranch_mapping_dlg_condition_linked_singleThis condition isto_condition_untitled_item_lblUntitled {0}redundant_branch_mappings_msgThe design contains unused branch mappings that will be removed. Do you wish to continue?cv_activityProtected_activity_remove_msgTo remove please deselect this activity as the {0}.cv_activityProtected_activity_link_msgThis {0} is linked to a {1}.cv_activityProtected_child_activity_link_msgThis {0} has a child linked to a {1}.optional_act_btnActivityoptional_seq_btnSequenceoptional_seq_btn_tooltipCreate a set of optional sequences.pi_optSequence_remove_msg_titleRemoving sequencespi_optSequence_remove_msgThe sequence(s) to be removed may contain activities that will be deleted. Do you wish to remove these sequences? pi_no_seq_actNo of Sequencespi_activity_type_sequenceSequence Activity ({0})lbl_num_sequences{0} - SequencesactivityDrop_optSequence_error_msgPlease drop the activity onto one of the sequences. cv_invalid_optional_seq_activity_no_branchesRemove any connected branches from {0} before adding it to an optional sequence.ta_iconDrop_optseq_error_msgThere are no sequences enabled on this container.act_seq_lock_chkPlease unlock the Optional Sequences container before assigning this activity to an optional sequence.cv_invalid_optional_seq_activityRemove to and from transitions from {0} before setting it to an optional sequence.cv_invalid_optional_activity_no_branchesRemove any connected branches from {0} before setting it as an optional activity.act_lock_chkPlease unlock the Optional Activity container before assigning this activity as optional.lbl_num_activities{0} - Activitiesto_conditions_dlg_lt_lblLess than or equalsopt_activity_seq_titleOptional Sequencesbranch_mapping_dlg_condition_col_value_minLess than or eq {0}branch_mapping_dlg_condition_col_value_maxGreater than or eq {0}pi_actActivitiespi_seqSequencespi_max_actMax {0}pi_min_actMin {0}pi_runofflineOffline Activitysequence_act_title_new{0} {1}to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblToto_conditions_dlg_range_lblRangeto_conditions_dlg_defin_long_typerangeto_conditions_dlg_defin_bool_typetrue/falseto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNameto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[ Options ]close_mc_tooltipMinimizecv_autosave_err_msgAn error has occurred while trying to auto-save your design. Please increase your Flash Player storage settings.to_conditions_dlg_gte_lblGreater than or equal toto_conditions_dlg_lte_lblLess than or equal togroupnaming_dialog_col_groupName_lblGroup Namews_dlg_insert_btnInsertbranch_mapping_dlg_branch_item_default{0} (default)to_conditions_dlg_title_lblCreate Output Conditionsto_conditions_dlg_defin_item_header_lbl[ Choose Output ] pi_condmatch_btn_lblCreate Conditionspi_group_matching_btn_lblMatch Groups to Branches pi_tool_output_matching_btn_lblMatch Conditions to Branchesto_conditions_dlg_condition_items_update_defaultConditionsYou are about to update your conditions for the selected output definition. This will clear all links to existing branches. Do you wish to continue?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroCannot update as no user defined conditions were found. You may need to set them up in the tool's authoring page(s).to_conditions_dlg_defin_user_defined_typeuser definedgrouping_invalid_with_common_names_msgCannot save the design as the grouping activity '{0}' has more than one group with the same name. Please review the grouping and try again.mnu_file_insertdesignInsert/Merge...preview_btn_tooltip_disabledTo Preview your sequence, you need to save it first, then click Previewcv_invalid_design_savedYour design is not yet valid, but it has been saved, click 'Potential Issues' to see what's wrong.pi_num_learnersNumber of learnerscv_design_insert_warningOnce you insert another sequence, you cannot Cancel this action – your old sequence is automatically saved with the new sequence inserted. To go back to your old sequence, you will need to delete all new sequence activities by hand, and then save. To leave your current sequence unchanged, click Cancel. Otherwise click OK to select a sequence to insert.cv_invalid_trans_diff_branchesCan't create a transition between activities in different branches. cv_invalid_branch_target_to_activityA branch to {0} already exists.cv_invalid_branch_target_from_activityA branch from {0} already exists.cv_invalid_trans_closed_sequenceCannot connect a new transition to a closed sequence.al_cannot_move_to_diff_opt_seqTo move an activity to a different sequence within Optional sequences, first drag the activity out of the Optional Sequence area, and then click and drag it to its new location inside Optional Sequences.al_group_name_invalid_blankGroup names cannot be blank.al_group_name_invalid_existingGroup names must be unique.learner_choice_grp_lblLearner's choicepi_equal_group_sizesEqual group sizescompetence_editor_dlgCompetence Editorcompetence_editor_warning_title_existsA competence with the title {0} already existscompetence_editor_warning_title_blankThe competence title cannot be blankcompetence_editor_warning_competence_mappedThe competence you are attempting to delete is currently mapped to one or more activities. Deleting this competence will remove its mappings. Are you sure you want to proceed?competences_lblCompetenciescompetence_editor_add_competence_btnAddcompetence_def_dlgCompetence Definition Dialogcompetence_mappings_btnCompetence Mappingsmap_gate_conditions_btnMap Gate Conditionsgate_mapping_auto_condition_msgAll remaining conditions will be mapped to the selected gates closed state.gate_openopengate_closedclosedal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.cv_eof_changes_appliedChanges have been successfully applied.mnu_file_import_communityImport from LAMS Community...ws_dlg_date_modified_lblLast modified: {0}ws_save_title_reserved_charsTitle cannot contain special characters: {0}mnu_tools_prefsPreferencesprefs_dlg_titlePreferencesgradebook_output_typeGradebook Outputview_students_before_selectionView learners before selection?arrange_act_btnArrange Activitiesgrp_chk_clear_branch_mappingsWarning: This will clear all existing group to branch mappings linked to this grouping activity, would you like to continue?branch_btn_tooltipCreate branches \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/es_ES_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_parallel_titleActividad Paralelaopt_activity_titleActividad Opcionalbranch_mapping_dlg_condition_col_value_maxMayor o igual que {0}al_sendEnviaral_cannot_move_activityNo se puede mover esta actividadal_activity_openContent_invalidAtención: debe seleccionar la actividad previamente para poder editar su contenido. cv_activity_copy_invalidAtención: No se pueden copiar actividades que esten dentro de otra actividad (opcional o paralela)cv_activity_cut_invalidAtención: No se puede pegar actividades que sean parte de otra actividad (opcional o paralela)ws_save_folder_invalidNo se puede guardar esta secuencia en esta carpetar. Por favor seleccione un subdirectorio válido. prefix_copyof_countCopia ({0}) de cv_gateoptional_hit_chkNo se puede agregar una actividad puerta a una actividad opcional.ws_license_lblLicenciaws_license_comment_lblInformación adicionalcv_invalid_optional_activityNo se puede insertar actividades con transiciónes dentro de una actividad opcionalcv_invalid_trans_target_from_activityLa transición de {0} ya existe.cv_invalid_trans_target_to_activityLa transición hacia {0} ya existews_entre_file_nameEntre un nombre para el diseño y luego presione el botón de Guardar.cv_autosave_rec_msgEstá a punto de recuperar un diseño perdido o que no ha sido guardado. El diseño actual será borrado. ¿Desea continuar?condmatch_dlg_title_lblCondiciones de unión para las ramascv_trans_target_act_missingLa transición debe terminar en otra actividadws_del_confirm_msg¿Esta seguro que desea borrar este archivo o folder?branch_btnRamificaciónflow_btnFlujonew_btn_tooltipLimpiar la pantalla y comenzar un nuevo diseñoopen_btn_tooltipAbrir un diseño save_btn_tooltipGuardar diseñocopy_btn_tooltipCopiar la actividad seleccionadapaste_btn_tooltipPegar la actividad copiadatrans_btn_tooltipDibujar transiciones entre actividades (alternativamente use tecla CTRL)optional_btn_tooltipCrear una actividad opcionalgate_btn_tooltipCrear un punto de Stopflow_btn_tooltipActividades de control de flujogroup_btn_tooltipCrear Actividad de Grupospreview_btn_tooltipVista preliminar de diseño como lo verán los estudiantesbin_tooltipArrastre actividades que desea desechar a esta papelerapi_daysDiasact_tool_titleLibrería de Actividadesal_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okAceptarapp_chk_themeloadLa plantilla de diseño no ha podido ser cargadaapp_fail_continueLa aplicación ha dado un error y no puede continuar. Por favor contacte con soporte técnicocopy_btnCopiarcv_invalid_trans_targetNo se puede crear una transición a esta actividadcv_show_validationProblemasdb_datasend_confirmGracias por mandar información al servidordelete_btnBorrargate_btnPuertagroup_btnGrupogrouping_act_titleGruposld_val_activity_columnActividadld_val_doneTerminadold_val_issue_columnProblemald_val_titleProblemas de Validaciónmnu_editEditarmnu_edit_copyCopiarmnu_edit_cutCortarmnu_edit_pastePegarmnu_edit_redoRe-hacermnu_edit_undoDeshacermnu_fileArchivomnu_file_closeCerrarmnu_file_newNuevomnu_file_openAbrirmnu_file_saveGuardarmnu_file_saveasGuardar como...mnu_helpAyudamnu_toolsHerramientasmnu_tools_optActividades Opcionalesmnu_tools_prefsPreferenciasmnu_tools_transTransicionesnew_btnNuevonew_confirm_msg¿Esta seguro que desea eliminar el diseño en pantalla?none_act_lblNingunoopen_btnAbriroptional_btnOpcionalpaste_btnPegarperm_act_lblPermisopi_activity_type_gateActividad de Puertapi_activity_type_groupingActividad en Grupospi_end_offsetCerrar Puertapi_group_typeTipo de Grupopi_hoursHoraspi_lbl_currentgroupGrupos actualespi_lbl_descDescripciónpi_lbl_groupGrupospi_lbl_titleTítulopi_max_actMáximo número de actividadespi_min_actMínimo número de actividadespi_minsMinutospi_num_learnersNúmero de Estudiantespi_optional_titleActividades Opcionalespi_start_offsetAbrir Puertapi_titlePropiedadesprefix_copyofCopia deprefs_dlg_cancelCancelarprefs_dlg_lng_lblLenguajeprefs_dlg_okAceptarprefs_dlg_theme_lblTemaprefs_dlg_titlePreferenciaspreview_btnVista previaproperty_inspector_titlePropiedadesrandom_grp_lblAleatoriorename_btnRenombrarsave_btnGuardarsched_act_lblPor tiemposynch_act_lblSincronizadotk_titleLibrería de Actividadestrans_btnTransicióntrans_dlg_cancelCancelartrans_dlg_gateSincronizacióntrans_dlg_gatetypecmbTipotrans_dlg_okAceptartrans_dlg_titleTransiciónws_RootRaízws_click_folder_filePor favor pulse sobre un directorio o sobre un archivo para sobreescribirws_copy_same_folderLa carpeta de origen y destino es la mismaws_dlg_cancel_buttonCancelarws_dlg_filenameNombre de Archivows_dlg_location_buttonLugarws_dlg_ok_buttonAceptarws_dlg_open_btnAbrirws_dlg_properties_buttonPropiedadesws_dlg_save_btnGuardarws_dlg_titleEspacio de Trabajows_newfolder_cancelCancelarws_newfolder_insNuevo nombre de carpetaws_newfolder_okAceptarws_no_permissionNo tiene permiso para escribir en esta carpetaws_rename_insNuevo nombrews_tree_mywspMi Espacio de Trabajows_view_license_buttonMás Informaciónsys_error_msg_startHa occurido un error de sistema: sys_error_msg_finishNecesita reiniciar LAMS Autor. ¿Desea guardar la información del fallo para ayudar a los desarrolladores a solucionar el problema?sys_errorError de sistemamnu_file_exitSalirpi_num_groupsNúmero de Gruposcv_design_unsavedSu diseño ha cambiado. ¿Desea continuar sin salvar los cambios?cv_design_export_unsavedNo se puede exportar un diseño que no ha sido salvado. mnu_file_exportExportarmnu_file_importImportarws_no_file_openNo se encontró archivows_chk_overwrite_existingEsta carpeta ya contiene un archivo llamado {0}.ws_click_virtual_folderNo se puede utilizar esta carpetaact_lock_chkPor favor, desbloque la Actividad Opcional antes de asignar esta actividadact_seq_lock_chkDesbloqué el contenedor de Secuencia Opcional antes de asignar o añadir ws_chk_overwrite_resourceAtención: esta por sobreescribir un archivotrans_dlg_nogateNingunacv_invalid_design_savedEl diseño se ha guardado aunque aún no es valido. Para más información presione el botón "Problemas"app_chk_langloadEl diccionario de lenguaje no ha podido ser cargadosupport_msg_max_children_reachedNo puede poner actividad {0} aqui. Las actividades de soporte permiten un mínimo de {1} actividadessupport_act_btnSoportesupport_act_btn_tooltipCrear actividades de soporte opcionalessupport_act_titleActividad de Soportesupport_msg_no_connectionLas actividades de soporte no pueden formar parte de la secuenciasupport_msg_invalid_childLas actividades de tipo {0} no se pueden incluir como actividades de soportesupport_msg_cannot_be_childNo se puede poner una actividad soporte dentro de otra actividad.pi_no_groupingNingunocv_valid_design_savedSu diseño es válido y ha sido guardadocv_activity_dbclick_readonlyNo se puede editar este diseño ya que ha sido marcado como solo lectura. Si desea efectuar cambios, presione el botón de Guardar para crear una copia.cv_readonly_lblSolo Lecturaal_empty_designNo se puede guardar diseños sin actividad alguna.ws_dlg_descriptionDescripcióncv_autosave_rec_titleAtención!ws_tree_orgsMis Gruposmnu_file_recoverRecuperar...ws_file_name_emptyAtención: No se puede guardar un diseño sin nombre.ccm_copy_activityCopiar Actividadccm_paste_activityPegar Actividadccm_piPropiedades...ccm_author_activityhelpAyuda para esta actividadccm_open_activitycontentAbrir/Editar el Contenido de Actividadmnu_help_abtAcerca de LAMSmnu_help_helpAyuda para Diseñocv_untitled_lblSin títulocv_activity_helpURL_undefinedNo se ha podido encontrar la página de ayuda para {0}cv_close_return_to_ext_srcCerrar y volver a {0}cv_eof_changes_appliedLos cambios han sido guardados.mnu_file_apply_changesAñadir Cambiosvalidation_error_transitionNoActivityBeforeOrAfterLa transición debe tener una actividad antes y después de la mismavalidation_error_activityWithNoTransitionUna actividad debe tener una transición de entrada y otra de salida.validation_error_inputTransitionType1Esta actividad no tiene transición de entradavalidation_error_inputTransitionType2Todas las actividades tienen transiciones de entrada.validation_error_outputTransitionType2Todas las actividades tienen transiciones de salida.cv_invalid_design_on_apply_changesNo se pueden añadir los cambios. Falta por lo menos una transición.apply_changes_btnAñadir Cambioscancel_btnCancelarcv_activity_readOnlyLa actividad no se puede {0}. Esta actividad es de solo lectura.cv_edit_on_fly_lblEdición en Vivocv_element_readOnly_action_delborrarcv_element_readOnly_action_modmodificarcv_eof_finish_invalid_msgSu diseño debe ser válido para poder aplicar modificaciones.cv_eof_finish_modified_msgAtención: Su diseño ha sido modificado. ¿Desea descartar los cambios?cv_trans_readOnlyLa transición no se puede {0}. Esta transición es de solo lectura.mnu_file_finishTerminarabout_popup_title_lblAcerca de {0}about_popup_version_lblVersiónabout_popup_trademark_lbl{0} is a marca registrada de {0} Foundation ( {1} ).about_popup_license_lblEste programa es de software libre. Usted puede distribuirlo y/o modificarlo bajo los terminos de la GNU General Public License versión 2 como está publicada por la Free Software Foudantion. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgcompetence_def_dlgDefinición de Competenciaspi_branch_tool_acts_default--Seleccionar--cv_invalid_trans_diff_branchesNo se puede crear transiciones entre actividades en distintas ramaslicense_not_selectedSeleccione una licencia para su diseñocv_invalid_branch_target_to_activityYa existe una rama hacia {0}cv_invalid_branch_target_from_activityYa existe una rama desde {0}cv_invalid_trans_closed_sequenceNo se puede conectar una nueva transición para una secuencia cerrada.al_group_name_invalid_blankNo se pueden dejar nombres de grupos en blanco.cv_invalid_optional_activity_no_branchesRemover toda las transiciones de {0} antes de agregar a la Secuencia Opcional.al_cannot_move_to_diff_opt_seqPara mover una actividad a otra secuencia dentro de Secuencias Opcionales, primero extraiga la actividad afuera de la Secuencia Opcional y luego vuelva a poner la misma en la nueva posición.al_group_name_invalid_existingCada grupo debe tener un nombre único.branching_act_titleRamificaciónal_doneListocondmatch_dlg_cond_lst_lblCondicionesto_conditions_dlg_add_btn_lbl+ Añadirto_conditions_dlg_remove_item_btn_lbl- Removerbranch_mapping_dlg_condition_col_lblCondiciónbranch_mapping_dlg_group_col_lblGrupobranch_mapping_no_condition_msgNo se ha seleccionado una condiciónbranch_mapping_dlg_condition_col_valueRango {0} hasta {1} branch_mapping_no_groups_msgNo se han seleccionado gruposgroupmatch_dlg_groups_lst_lblGruposgroupnaming_dlg_title_lblNombrar Grupospi_group_naming_btn_lblNombrar Grupossequence_act_titleSecuenciacv_activityProtected_activity_remove_msgPara remover esta actividad, borre esta actividad {0}.cv_activityProtected_activity_link_msgLa actividad {0} está asociada a {1}.cv_activityProtected_child_activity_link_msgEsta actividad {0} tiene una subactividad asociada a {1}.group_branch_act_lblBasado en grupopi_mapping_btn_lblAsignar ramificaciones a...al_activity_copy_invalidAtención: Debe seleccionar la actividad antes de usar el botón de copiar o pegar.groupnaming_dialog_instructions_lblTeclea sobre un nombre para modificar su valorpi_branch_tool_acts_lblEntrada (Herramienta)branch_mapping_no_branch_msgNo se ha seleccionado ramificaciónpi_defaultBranch_cb_lblpor defectoto_conditions_dlg_clear_all_btn_lblLimpiar todochosen_branch_act_lblElección del profesor/ato_condition_end_valuevalor finalto_condition_start_valuevalor de iniciois_remove_warning_msgPELIGRO: La lección va a ser anulada. ¿Quiere que esta lección aparezca como {0}?to_condition_invalid_value_directionEl {0} no puede ser mayor que {1}.to_condition_invalid_value_rangeEl {0} no puede estar dentro del rango de una condición existente.branch_mapping_dlg_branch_col_lblRamabranch_mapping_dlg_branches_lst_lblRamasbranch_mapping_dlg_condition_col_value_exactValor exacto de {0}pi_branch_typeTipo de ramificaciónpi_activity_type_branchingActividad de ramificaciónal_continueContinuarbranch_mapping_dlg_condition_linked_msg{0} conectado con una rama existente. ¿Desea continuar?branch_mapping_dlg_condition_linked_allHay condicionesbranch_mapping_dlg_condition_linked_singleLa condición esto_condition_untitled_item_lblSin nombre {0}branch_mapping_dlg_match_dgd_lblAsignar raminifacionesgroupmatch_dlg_title_lblAsignar grupos a ramificacionescompetence_editor_warning_title_existsUna competencia con el título {0} ya existeoptional_act_btnActividadoptional_seq_btn_tooltipCrear un conjunto de secuencias opcionales.competence_editor_warning_title_blankEl título de la competencia no puede ser dejado en blancocompetence_editor_warning_competence_mappedLa competencia que ha intentado borrar esta conectado a una actividad. Al borrar el objetivo se borrará tambien la conección a la actividad. ¿Esta seguro que quiere borrarla?competence_editor_dlgEditor de Competenciasclose_mc_tooltipMInimizarcompetence_mappings_btnConección de Competencias y Actividadesal_activity_view_competence_mappings_invalidAsegúrese que tiene una actividad seleccionada para poder ver sus competenciaslbl_num_activities{0} - Actividadespi_optSequence_remove_msg_titleRemoviendo secuenciasbranch_mapping_auto_condition_msgTodas las condiciones serán asignadas a la primera rama por defectopi_no_seq_actNúmero de secuenciaslbl_num_sequences{0} - SecuenciasactivityDrop_optSequence_error_msgDeposite actividades dentro de cada secuenciacv_invalid_optional_seq_activity_no_branchesRemover cualquier conexión entre ramas desde {0} antes de agregarla a una secuencia opcional.ta_iconDrop_optseq_error_msgNo hay secuencias habilitadas en este contenedor.opt_activity_seq_titleSecuencias opcionalesto_conditions_dlg_lt_lblMenor o igual quebranch_mapping_dlg_condition_col_value_minMenor o igual que {0}pi_actActividadespi_seqSecuenciascv_invalid_optional_seq_activityRemover todas las transiciones de {0} antes de agregar a la Secuecia Opcional.about_popup_copyright_lbl© 2002-2009 Fundación {0}.to_conditions_dlg_defin_long_typerangoto_conditions_dlg_defin_bool_typeVerdadero/Falsoto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNombreto_conditions_dlg_condition_items_value_col_lblCondiciónto_conditions_dlg_options_item_header_lbl[ Opciones ]branch_mapping_no_mapping_msgNo se ha asignado a rama sequence_act_title_new{0} {1}redundant_branch_mappings_msgEste diseño tiene asignaciones a ramas que no han sido usados y serán elimados. ¿Desea Continuar?cv_autosave_err_msgHa ocurrido un error en el auto-guardado de su diseño. Por favor agrege más memoria de almacenaje en su Flash Player.to_conditions_dlg_range_lblEntre un rangoto_conditions_dlg_gte_lblMayor o igual...to_conditions_dlg_lte_lblMenor o igual...optional_seq_btnSecuenciaspi_activity_type_sequenceSecuencia ({0})groupnaming_dialog_col_groupName_lblGrupospi_define_monitor_cb_lblDefinir en Seguimientoapply_changes_btn_tooltipAñadir cambios a su diseño y volver a Seguimientocancel_btn_tooltipVolver a Seguimientopi_definelaterDefinir en Seguimientows_click_file_openPor favor, seleccione la secuencia que usted desea abrir. cv_invalid_trans_circular_sequenceSecuencias circulares no estan permitidas. pi_optSequence_remove_msgLas secuencias a ser removidas pueden contener actividades que serán borradas. ¿Desea remover estas secuencias?to_conditions_dlg_from_lblDesdeto_conditions_dlg_to_lblHastamnu_file_insertdesignInsertar...ws_dlg_insert_btnInsertarchosen_grp_lblSelección en seguimientobranch_mapping_dlg_branch_item_default{0} (por defecto)pi_runofflineActividad Offlineto_conditions_dlg_title_lblCreación de Condiciones to_conditions_dlg_defin_item_header_lbl[ Elija Resultado a usar ]tool_branch_act_lblResultados de actividades previaspi_condmatch_btn_lblEspecificar Condicionespi_group_matching_btn_lblAsignar Grupos a Ramaspi_tool_output_matching_btn_lblAsignar Condiciones a Ramasrefresh_btnActualizarto_conditions_dlg_condition_items_update_defaultConditionsUsted esta apunto de actualizar la lista de condiciones. Realizar esta operación quitará las asignaciones entre las condiciones y las ramas. ¿Esta seguro que desea continuar?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNo se puede actualizar ya que no hay condiciones de usuarios definidas. Usted puede definir estas condiciones en cada actividad.to_conditions_dlg_defin_user_defined_typedefinida por el usuariogrouping_invalid_with_common_names_msgNo se ha podido guardar su diseño dado que la actividad de grupo '{0}' tiene dos o más grupos con el mismo nombre. Por favor, revise el nombre de los grupos de esta actividad y una vez cambiados intente guardar su diseño nuevamente.preview_btn_tooltip_disabledPara activar la vista previa, guarde primero su diseñoal_activity_paste_invalidNo se puede copiar este tipo de actividadcondmatch_dlg_message_lblLa rama "por defecto" se puede seleccionar usando la opción en el Inspector de propiedades.cv_design_insert_warningAl insertar una secuencia en su actual, se actualizara su diseño. Si desea deshacer los cambios, solo tiene que eliminar las actividades añadidas ¿Desea continuar?learner_choice_grp_lblA elección del estudiantepi_equal_group_sizesGrupos del mismo tamañomap_comptence_btnConectar objetivoscompetences_lblObjectivoscompetence_editor_add_competence_btnAgregarcompetences_mapped_to_act_lblObjetivosmap_gate_conditions_btnAsignar condiciones a puertasgate_mapping_auto_condition_msgTodas las demás condiciones seran asignadas a las puertas en estado cerrado.gate_openabrirgate_closedcerradomnu_file_import_communityImportar secuencias de Comunidad LAMS...ws_dlg_date_modified_lblÚltimo cambio: {0} ws_save_title_reserved_charsEl nombre de la secuencia no puede contener estos caracteres: {0}view_students_before_selectionPermitir ver los estudiantes en cada grupo antes de elegir grupoarrange_act_btnAcomodar actividadesvalidation_error_outputTransitionType1Esta actividad no tiene transición de salidagradebook_output_typeNota para Calificacionesgrp_chk_clear_branch_mappingsAtención: Esta acción limpiara la asociación de grupos y ramificaciones, ¿Está seguro que desea continuar?branch_btn_tooltipCrear ramificaciones \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/fr_FR_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_design_insert_warningVous ne pourrez pas annuler l'insertion d'une autre séquence. L'ancienne séquence sera automatiquement sauvegardée et elle contiendra la nouvelle séquence. Pour revenir à votre ancienne séquence, vous devrez supprimer manuellement toutes les nouvelles séquences et ensuite sauver. Pour ne pas modifier la séquence actuelle, cliquez sur "annuler". Sinon cliquez sur OK pour sélectionner une séquence à insérer.pi_optSequence_remove_msgLa/les séquence(s) à supprimer peut contenir des activités qui seront effacées. Voulez-vous vraiment supprimer ces séquences?delete_btnSupprimerld_val_activity_columnActivitéws_del_confirm_msgVoulez-vous vraiment supprimer ce fichier / dossier?competence_editor_warning_competence_mappedLa compétence que vous tentez de supprimer est liée à une ou plusieurs activités. Le supprimer provoquera la perte de ces liens. Etes-vous sûr de vouloir continuer?cv_trans_target_act_missingLa 2ème activité de la transition manque.paste_btn_tooltipColler une copie de l'activité sélectionnéepi_parallel_titleActivité parallèleal_cannot_move_activityCette activité de ne peut pas être déplacée.al_activity_openContent_invalidVous devez sélectionner l'activité avant de pouvoir l'ouvrir ou la modifier.grp_chk_clear_branch_mappingsCela effacera tous les mappages groupes vers branches liées à cette activité de groupement, souhaitez-vous continuer?cv_gateoptional_hit_chkImpossible d'ajouter une activité de liaison comme activité optionnelle.bin_tooltipDéposer une activité dans cette poubelle pour la retirer de la séquence.cv_invalid_optional_activityEnlever les transitions de et vers {0} avant de la paramétrer comme activité optionnelleal_cannot_move_to_diff_opt_seqPour déplacer une activité vers une autre séquence optionnelle, tirez l'activité hors de la zone optionnelle. Ensuite cliquer et tirer vers sa nouvelle position dans les séquences optionnelles.pi_optional_titleActivité optionnelleccm_author_activityhelpAide Activité d'auteurgroup_btn_tooltipCréer une activité de regroupementcopy_btn_tooltipCopier l'activité sélectionnéeal_activity_copy_invalidVous devez sélectionner l'activité avant de cliquer sur le bouton Copieropt_activity_titleActivité optionnelleccm_copy_activityCopier l'activitéccm_open_activitycontentOuvrir/modifier le contenu de l'activitéccm_paste_activityColler l'activitésupport_msg_no_connectionDes activités de soutien ne peuvent être connectées à aucune autre activitésupport_msg_invalid_childDes activités de type {0} ne peuvent pas être ajoutées comme une activité de soutiensupport_msg_cannot_be_childImpossible d'insérer une activité de soutien dans une autre activité.validation_error_transitionNoActivityBeforeOrAfterLa transition doit être précédée ou précéder une activité.validation_error_activityWithNoTransitionUne activité doit être liée à une transition entrante ou sortante.validation_error_inputTransitionType1Cette activité n'a pas de transition entrantevalidation_error_outputTransitionType1Cette activité n'a pas de transition sortantepi_activity_type_gateActivité porte logiquecv_activity_readOnlyCette activité ne peut être {0}. La cible est en lecture seule.pi_activity_type_branchingActivité pour schéma en arbreal_activity_paste_invalidDésolé, vous ne pouvez pas coller ce type d'activitécv_activityProtected_activity_remove_msgPour effacer cette activité, déselectionnez la en tant que {0}optional_act_btnActivitépi_activity_type_sequenceSéquence d'activité ({0}) activityDrop_optSequence_error_msgVeuillez placer cette activité dans l'une des séquences.act_seq_lock_chkVeuillez dévérouiller le container des séquences optionelles avant d'assigner cette activité à une séquence optionelle.cv_invalid_optional_activity_no_branchesEffacez toutes les branches connectées de {0} avant de la configurer comme une séquence optionelle.act_lock_chkVeuillez dévérouiller le conteneur d'activités optionnelles avant de désigner cette activité comme optionnellepi_activity_type_groupingActivité de regroupementsupport_msg_max_children_reachedImpossible d'insérer l'activité: (0) ici. L'activité de soutien permet à un maximum de {1} activités enfants.view_students_before_selectionAfficher les apprenants avant la sélection?preview_btn_tooltip_disabledPour prévisulaiser votre séquence, veuillez l'enregistrer, ensuite cliquer sur Prévisualisationgrouping_invalid_with_common_names_msgLa séquence (design) ne peut pas être enregistrée. L'activité de regroupement '{0}' possède plus qu'un groupe ayant le même nom. Veuillez revoir le regroupement et essayez de nouveauws_view_license_buttonAfficherpreview_btn_tooltipPrévisualiser votre séquence comme les apprenants la verrontal_activity_view_competence_mappings_invalidVeuillez sélectionner une activité avant de demander à voir les compétences qui lui sont associéespreview_btnPrévisualisationapp_fail_continueL'application ne peut pas continuer. Veuillez contacter le supportsupport_act_btnSupportsupport_act_btn_tooltipCréer un ensemble d'activités de soutien en option.support_act_titleActivité de soutienpi_runofflineActivité hors-lignecompetence_editor_dlgEditeur de compétencesmnu_editModifiercv_eof_finish_invalid_msgLe design doit être valide pour terminer l'édition.cv_edit_on_fly_lblModifier en directws_file_name_emptyIl n'est pas permis d'enregistrer une séquence sans nom de fichier.cv_activity_copy_invalidCopier cette activité enfant n'est pas possible.cv_activity_cut_invalidCouper cette activité enfant n'est pas possible.cv_invalid_trans_circular_sequenceIl n'est pas possible de faire une séquence circulairebranch_mapping_dlg_match_dgd_lblMise en correspondance (mappage)pi_mapping_btn_lblRéglages des mises en correspondance (mappage)redundant_branch_mappings_msgCe design contient des embranchements inutilisés qui seront effacés. Voulez-vous continuer?act_tool_titleBoîte à outilsal_alertAlerteal_cancelAnnuleral_confirmConfirmeral_okOKapp_chk_langloadLes données du choix de langue n'ont pas été chargéesapp_chk_themeloadLes données du choix de thème n'ont pas été chargéeschosen_grp_lblChoisir dans l'outil de suivicopy_btnCopiercv_invalid_trans_targetVous ne pouvez pas créer une transition vers cet objetcv_show_validationProblèmesdb_datasend_confirmMerci d'avoir transmis les données au serveurgate_btnPortegroup_btnGroupegrouping_act_titleRegroupementld_val_doneTerminéld_val_issue_columnProblèmeld_val_titleProblèmes de validationlicense_not_selectedVeuillez sélectionner une licence pour cette séquencemnu_edit_copyCopiermnu_edit_cutCoupermnu_edit_pasteCollermnu_edit_redoRépétermnu_edit_undoAnnulermnu_file_closeFermermnu_file_newNouveaumnu_file_openOuvrirmnu_helpAidemnu_help_abtA propos de LAMSmnu_toolsOutilsmnu_tools_optDessiner une optionmnu_tools_prefsPréférencesmnu_tools_transDessiner une transitionnew_btnNouveaunew_confirm_msgVoulez-vous vraiment effacer la séquence présente à l'écran?none_act_lblAucuneopen_btnOuvriroptional_btnOptionnelpaste_btnCollerperm_act_lblPermissionpi_definelaterDéfinir dans l'outil de suivipi_end_offsetFermer porte logiquepi_group_typeType de regroupementpi_hoursHeurespi_lbl_currentgroupRegroupement actuelpi_lbl_descDescriptionpi_lbl_groupRegroupementpi_lbl_titleTitrepi_max_actMax {0}pi_min_actMin {0}pi_minsMinutespi_no_groupingAucunpi_start_offsetOuvrir porte logiquepi_titlePropriétésprefix_copyofCopie deprefs_dlg_cancelAbandonnerprefs_dlg_lng_lblLangueprefs_dlg_okOKprefs_dlg_theme_lblThèmeprefs_dlg_titlePréférencesproperty_inspector_titlePropriétésrandom_grp_lblAléatoirerename_btnRenommersched_act_lblCalendriersynch_act_lblSynchronisertk_titleBoîte à outilstrans_btnTransitiontrans_dlg_cancelAbandonnertrans_dlg_gateSynchronisationtrans_dlg_gatetypecmbTypetrans_dlg_okOKtrans_dlg_titleTransitionws_RootRacinews_chk_overwrite_resourceAttention, vous allez écraser une séquence existantews_copy_same_folderLe Dossier source est le même que celui de destinationws_dlg_cancel_buttonAbandonnerws_dlg_location_buttonEmplacementws_dlg_ok_buttonOKws_dlg_open_btnOuvrirws_dlg_properties_buttonPropriétésws_dlg_titleEspace de travailws_newfolder_cancelAbandonnerws_newfolder_insVeuillez entrer un nouveau nom de fichierws_newfolder_okOKws_no_permissionDésolé, vous n'êtes pas autorisé à faire cette opérationws_rename_insVeuillez entrer le nouveau nomws_tree_mywspMon espace de travailws_tree_orgsMes groupessys_error_msg_startL'erreur système suivante s'est produite:sys_errorErreur systèmelbl_num_activities{0} - Activitésal_sendEnvoyerprefix_copyof_countCopie {0} dews_click_file_openVeuillez cliquer sur une Séquence pour ouvrir.ws_license_lblLicencews_license_comment_lblLicence - informations complémentairescv_invalid_trans_target_from_activityIl existe déjà une transition depuis {0}cv_invalid_trans_target_to_activityIl existe déjà une transtion vers {0}branch_btnBrancheflow_btnFluxmnu_file_importImportermnu_file_exportExporterws_click_virtual_folderCe dossier ne peut pas être utilisé.mnu_file_exitSortirnew_btn_tooltipEfface la séquence courante et réinitialise l'espace de travailtrans_btn_tooltipUtiliser le crayon pour tracer des transitions entre les activités (ou pressez la touche CTRL)optional_btn_tooltipCréer un groupe d'activités optionnellesgate_btn_tooltipCréer un point d'arrêtbranch_btn_tooltipCréer une branche (disponible dans LAMS v 2.1)flow_btn_tooltipCréer les contrôles de flux d'activitéscv_readonly_lblLecture seulecv_autosave_rec_titleAttentionmnu_file_recoverRécupérer...al_group_name_invalid_blankUn nom de groupe ne peut pas rester videcv_activity_helpURL_undefinedLa page d'aide pour {0} n'a pas été trouvéecv_untitled_lblSans titre - 1al_group_name_invalid_existingUn nom de groupe doit être uniquelearner_choice_grp_lblChoix de l'étudiantpi_equal_group_sizesGroupes de taille égaleccm_piInspecteur de propriétéscompetences_lblCompétencesws_dlg_descriptionDescriptiontrans_dlg_nogateAucunpi_daysJourscv_close_return_to_ext_srcFermez et revenez à {0}cv_eof_changes_appliedchangements appliqués avec succèsmnu_file_apply_changesAppliquer les changementscompetence_editor_add_competence_btnAjoutercompetence_def_dlgDialogue de définition de compétencecompetence_editor_warning_title_existsUne compétence avec l'intitulé {0} existe déjàvalidation_error_inputTransitionType2Aucune activité ne requièrent encore une transition entrante.competence_editor_warning_title_blankL'intitulé d'une compétence ne peut être videvalidation_error_outputTransitionType2Aucune activité ne requièrent encore une transition sortante.cv_invalid_design_on_apply_changesLes changements ne peuvent être appliqués. Il manque une ou plusieurs transitions.apply_changes_btnAppliquer les changementsapply_changes_btn_tooltipAppliquer les changements de design et retourner à la supervision de la leçon.cancel_btnAnnulermap_comptence_btnAssocier avec des compétencescompetences_mapped_to_act_lblCompétencesmap_gate_conditions_btnAssocier des conditions de la portegate_mapping_auto_condition_msgToutes les conditions restantes seront associées avec l'état fermé (des portes choisies)cv_element_readOnly_action_deleffacécv_element_readOnly_action_modmodifiégate_openOuvert cv_trans_readOnlyLa transition ne peut être {0}. La cible est en lecture seule.cancel_btn_tooltipRetourner à la supervision de la leçon.mnu_file_finishTerminerabout_popup_title_lblSujet:about_popup_version_lblVersionabout_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ).about_popup_license_lblCe programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier, selon les termes de la version 2 de la licence générale publique GNU tel qu'elle est publiée par la "Free Software Foundation".stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_titleSchéma en arbregate_closedFermégroupnaming_dialog_instructions_lblCliquez sur un groupe pour le renommer.pi_branch_tool_acts_lblBouton (outils)pi_condmatch_btn_lblCréez des conditionsto_conditions_dlg_title_lblCréer des conditions sortantesal_doneTerminécondmatch_dlg_cond_lst_lblconditionscondmatch_dlg_title_lblLier des conditions aux branchespi_defaultBranch_cb_lblPar défautto_conditions_dlg_add_btn_lblAjouterto_conditions_dlg_clear_all_btn_lblEffacer toutto_conditions_dlg_remove_item_btn_lblEnlevezto_conditions_dlg_from_lblDepuisto_conditions_dlg_to_lblJusqu'àto_conditions_dlg_range_lblPlage:branch_mapping_dlg_branch_col_lblBranchebranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupebranch_mapping_no_branch_msgAucune branche sélectionnée.branch_mapping_no_mapping_msgPas de mise en correspondance sélectionnée.branch_mapping_no_condition_msgAucune condition n'est sélectionnéebranch_mapping_auto_condition_msgToutes les conditions restantes seront associées à la branche par défaut.ws_dlg_date_modified_lblDernière modification: {0}branch_mapping_dlg_condition_col_valuePlage de {0} à {1}branch_mapping_dlg_condition_col_value_exactValeur exact de {0}ws_save_title_reserved_charsLe titre ne peut pas contenir des caractères spéciaux: {0}pi_define_monitor_cb_lblDéfinir dans la supervisiongroupmatch_dlg_title_lblLier des groupes aux branchesbranch_mapping_no_groups_msgAucun groupe n'est sélectionné.group_branch_act_lblOrganisé par groupebranch_mapping_dlg_branches_lst_lblBranchesgroupmatch_dlg_groups_lst_lblGroupesgroupnaming_dlg_title_lblNommer les groupesmnu_file_import_communityImporter à partir de la communauté LAMSpi_branch_typeSchéma en arbrepi_group_naming_btn_lblNom des groupessequence_act_titleSéquencetool_branch_act_lblSortie apprenantsto_condition_start_valuevaleur de débutto_condition_end_valuevaleur de finto_condition_invalid_value_range{0} ne peut être située sur la plage d'une condition existante.to_condition_invalid_value_direction{0} ne peut être plus grand que {1}.is_remove_warning_msgAttention: cette leçon est sur le point d'être effacée. Voulez-vous la conserver sous {0}? al_continueContinuerbranch_mapping_dlg_condition_linked_msg{0} est relié(e) à une branche existante. Voulez-vous pousuivre?branch_mapping_dlg_condition_linked_allIl y a des conditionsbranch_mapping_dlg_condition_linked_singleCette condition estto_condition_untitled_item_lblSans titre{0}gradebook_output_typeSortie carnet de notescv_activityProtected_activity_link_msgCe(tte) {0} est liée à un(e) {1}cv_activityProtected_child_activity_link_msgCe(tte) {0} a une activité fille qui est liée à {1}branch_mapping_dlg_condition_col_value_maxplus grand ou égal à {0}arrange_act_btnArranger des activitésoptional_seq_btnSéquenceoptional_seq_btn_tooltipCréer une série de séquences optionelles.pi_optSequence_remove_msg_titleEffacer des séquencespi_no_seq_actNe fait pas partie de la séquence.lbl_num_sequences{0} - séquencescv_invalid_optional_seq_activity_no_branchesEffacez toutes les branches connectées de {0} avant de l'ajouter à une séquence optionelle.ta_iconDrop_optseq_error_msgIl n'y a pas de séquences en fonction dans ce container.competence_mappings_btnAssociation de compétencescv_invalid_optional_seq_activityEnlevez les transitions entrantes et sortantes de {0} avant de la relier à une séquence optionnelleopt_activity_seq_titleSéquences optionnellesto_conditions_dlg_lt_lblPlus petit ou égalbranch_mapping_dlg_condition_col_value_minPlus petit ou égal à {0}pi_actActivitéspi_seqSéquencesto_conditions_dlg_defin_long_typePlageto_conditions_dlg_defin_bool_typeVrai/fauxto_conditions_dlg_defin_item_header_lbl[Selectionnez sortie]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNomto_conditions_dlg_condition_items_value_col_lblConditionto_conditions_dlg_options_item_header_lbl[options]sequence_act_title_new{0} {1}close_mc_tooltipRéduireto_conditions_dlg_gte_lblPlus grand ou égal àto_conditions_dlg_lte_lblPLus petit ou égal àgroupnaming_dialog_col_groupName_lblNom du groupemnu_file_insertdesignInsérer/fusionnerws_dlg_insert_btnInsérerbranch_mapping_dlg_branch_item_default{0} défautpi_group_matching_btn_lblAssocier groupes aux branchespi_tool_output_matching_btn_lblAssocier conditions aux branchesrefresh_btnRafraîchirto_conditions_dlg_condition_items_update_defaultConditionsVous êtes en train de mettre à jour les conditions pour les définitions de sortie selectionnées. Voulez-vous continuer ?to_conditions_dlg_defin_user_defined_typedéfini par l'utilisateurcondmatch_dlg_message_lblChoisir la branche par défaut en cochant "défaut" dans les propriétés pour la branche en questionpi_branch_tool_acts_default--Sélection---cv_invalid_trans_diff_branchesUne transition entre des activités appartenant à des branches différentes ne peut pas être créecv_invalid_branch_target_to_activityUne branche vers {0} existe déjàcv_invalid_branch_target_from_activityUne branche depuis {0} existe déjàcv_invalid_trans_closed_sequenceVous ne pouvez pas créer une transition vers une séquence ferméechosen_branch_act_lblChoix de l'enseignantcv_eof_finish_modified_msgAttention: le design a été modifié. Voulez-vous quitter sans enregistrer ?cv_design_unsavedLa séquence sur le canevas a changé. Continuer sans enregistrer ?pi_num_groupsNombre de groupespi_num_learnersNombre d'étudiant-e-smnu_file_saveEnregistrersys_error_msg_finishIl se peut que vous deviez redémarrer LAMS Auteur pour pouvoir continuer. Voulez-vous enregistrer les informations concernant cette erreur pour aider à résoudre le problème?ws_save_folder_invalidImpossible d'enregistrer une séquence dans ce dossier. Veuillez choisir un sous-dossier valide.mnu_file_saveasEnregistrer comme...save_btn_tooltipEnregistrement rapide de la séquence d'activités courantecv_design_export_unsavedEnregistrez votre séquence avant de l'exportercv_autosave_rec_msgVous êtes sur le point de récupérer une séquence perdue ou non enregistrée. La séquence courante va être vidée. Continuer?cv_activity_dbclick_readonlyImpossible de modifier les outils d'une séquence en lecture seule. Veuillez enregistrer une copie de la séquence et réessayer.al_empty_designImpossible d'enregistrer une séquence videsave_btnEnregistrerws_click_folder_fileVeuillez cliquer soit sur un Dossier pour enregistrer ou sur le titre d'une séquence pour la remplacerws_dlg_save_btnEnregistrercv_valid_design_savedFélicitations. Votre séquence est valide. Elle a été enregistréews_entre_file_nameVeuillez entrer le nom de la séquence et cliquez sur le bouton "Enregistrer".cv_autosave_err_msgUne erreur est survenue lors de la sauvegarde automatique de la séquence. Veuillez augmenter la dotation mémoire de votre lecteur Flashcv_invalid_design_savedVotre séquence n'est pas encore validée mais elle a été enregistrée. Cliquez sur 'Problèmes potentiels' pour voir ce qui ne va pas.mnu_fileFichierws_no_file_openAucun fichier trouvé.ws_chk_overwrite_existingCe dossier contient déjà un fichier nommé {0}.open_btn_tooltipMontre la boîte de dialogue Fichier pour ouvrir une séquence d'activitésws_dlg_filenameNom du fichiermnu_help_helpAide pour la créationbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroMise à jour impossible car il manque les conditions définies par l'utilisateur. Il faudrait les définir dans la/les page(s) de création. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/hu_HU_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3close_mc_tooltipKis méretTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblNagyobb vagy egyenlőGreater than or equal toto_conditions_dlg_lte_lblKisebb vagy egyenlőLess than or equal togroupnaming_dialog_col_groupName_lblCsoportnévColumn label for editable datagrid in Group Naming dialog.trans_dlg_okOKOK Button on transition dialogmnu_file_insertdesignBeszúrás...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnBeszúrásButton label on Workspace in INSERT mode.branch_mapping_dlg_branch_item_default {0} (alapértelmezett)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.ws_RootRootRoot folder title for workspacews_newfolder_okOKOK on the new folder name diapi_equal_group_sizesEgyenlő csoportméretekCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equaltrans_dlg_gatetypecmbTípusGate type combo labelcompetence_editor_dlgHatáskör-szerkesztőDialog for adding/editing/removing competencespi_group_matching_btn_lblA csoportok illesztése az elágazásokhozButton in author that allows you to allocate groups to branches for group based branchingtrans_dlg_gateSzinkronizálásHeader for the transition props dialogpi_tool_output_matching_btn_lblA feltételek illesztése az elágazásokhozButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnFrissítésButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditionsÉpp frissíteni készül a kiválasztott kimeneti definíció feltételeit. Ez a művelet összes létező elágazásra mutató hivatkozást törli. Biztosan folytatja?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNem lehet frissíteni, mivel nincsenek a felhasználó által definiált feltételek. Ezeket be kellene állítania a szerzői eszközök oldalán/oldalain.Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_typea felhasználó által definiáltType description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msgA terv nem menthető, mivel a '{0}' csoporttevékenység többször tartalmazza ugyanazt a csoportnevet. Kérem, nézze át a csoportosítást, majd próbálja újra!Alert message displayed when the Grouping validation fails during saving a design.al_activity_paste_invalidElnézést, ilyen típusú tevékenységet nem szúrhat be.Alert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledA jelenet előnézetéhez először mentenie kell azt. Csak ezután kattintson az Előnézet gombra.Tool tip message for preview button in toolbar when button is disabled.pi_branch_tool_acts_default-- Kijelölés --Default item label for Input Tool dropdown list.cv_invalid_branch_target_to_activityAz elágazás ide: {0} már létezik.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityAz elágazás innen: {0} már létezik.Error message displayed after drawing a branch from an activity that has an existing connected branch.al_group_name_invalid_blankA csoportnév nem lehet üres.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingEgyedi csoportnevet kell megadni.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupcompetences_lblHatáskörökLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnHozzáadAdd competence buttoncompetence_def_dlgHatáskörök meghatározásának párbeszédeTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsA {0} nevű hatáskör már létezikWarning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankA hatáskör címe nem lehet üresWarning message when you try to define a competence with a blank competence titlecompetence_editor_warning_competence_mappedA törölni kívánt hatáskör jelenleg egy vagy több tevékenységhez csatlakozik. A hatáskör törlése eltávolítja a csatolást is. Bistosan folytatja?Warning message when you attempt to delete a competence that is mapped to one or more activities.map_comptence_btnHatáskörhöz csatolásLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnA hatáskör csatolásaiTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblHatáskörökLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btnA kapu feltételeinek csatolásaButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgAz összes fennmaradó feltételt a kiválasztott kapu lezárt állapotához csatoljuk.Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openmegnyitOpen state for gate activity, allows learners to pass through itgate_closedlezárvaClosed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalidMielőtt megpróbálná megjeleníteni a hatáskör csatolásait, ellenőrizze, hogy választott-e tevékenységet!Warning that appears when no activity is selected when the user tries to view competence mappingsws_dlg_date_modified_lblUtoljára módosítva: {0} Show the last modified datetime of the selected design in the workspacews_save_title_reserved_charsA cím nem tartalmazhatja ezeket a speciális karaktereket {0}.Error alert when trying to save with a title containing illegal characters.mnu_file_import_communityImportálás a LAMS közösségtől...File menu item for importing a learning design from the LAMS communitygradebook_output_typeAz osztályzóív kimneteLabel in the Property Inspector relating to which tool output type (if any) will be sent to gradebook for evaluation for the selected tool activityview_students_before_selectionMegnézi a tanulókat, mielőtt választana?Label in the Property Inspector for option to allow students to see who's in each group before they pick which group that want to be in for learner chosen grouping.arrange_act_btnA tevékenységek rendezéseMenu item button to neatly arrange the activities on the Canvascondmatch_dlg_message_lblAz alapértelmezett elágazást úgy állíthatja be, hogy a kiválasztott elágazás Tulajdonságok részénél bejelöli az "alapértelmezett" jelölőnégyzetet.Label for a message in the Condition to Branch matching dialog.cv_invalid_trans_diff_branchesNem hozhat létre átmenetet különböző elágazások tevékenységei között.Error message displayed after drawing a transition between activities of two different branches.learner_choice_grp_lblA tanuló választásaA type of grouping where the learner picks which group they'd like to be incv_invalid_trans_closed_sequenceLezárt jelenethez nem kapcsolhat új átmenetet.Error message displayed after drawing a transition from an activity in a closed sequence.cv_design_insert_warningAmint beszúr egy másik jelenetet, már nem tudja visszavonni ezt a műveletet – a régi jelenet automatikusan a beszúrt új jelenettel kerül mentésre. Amennyiben vissza akar térni a régi jelenetéhez, sajátkezűleg törölnie kell az új jelenetek összes tevékenységét, majd menteni. A jelenlegi jelenet változatlanul hagyásához, kattintson a Mégse gombra! Az OK-ra kattintva kiválaszthatja a beszúrni kívánt jelenetet.Warning message when merge/insertal_cannot_move_to_diff_opt_seqHa a választható jeleneteken belül egy másik jelenetbe szeretne áthelyezni egy tevékenységet, először húzza azt a Választható Jelenetek területén kívülre, majd kattintson rá, és húzza vissza a Választható Jelenetek területén belül lévő új helyére!Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitybranch_mapping_no_mapping_msgNem választott leképezést.Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNem választott feltételt.Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msgMinden fennmaradó feltételt az alapértelmezett elágazásra képez le.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblLeképezésekHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_value{0} - {1} tartományValue for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactA(z) {0} pontos értékeValue for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblA leképezések beállításaLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblFigyelő meghatározásaCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblCsoportok leképezése elágazásokraMap Groups to Branchesbranch_mapping_no_groups_msgNem választott csoportokat.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblCsoporthoz kötöttBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblElágazásokLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblCsoportokLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblA csoport elnevezéseTitle label for Group Naming dialog.pi_activity_type_branchingTevékenység az elágazásnálActivity type for Branching in Property Inspector.pi_branch_typeElágazás-típusProperty Inspector Branching type drop down.pi_group_naming_btn_lblCsoportnevekLabel for button that opens Group Naming dialog.sequence_act_titleJelenetDefault title for Sequence Activity.tool_branch_act_lblElágazás eszközkimenet alapjánBranching type label for Tool output Branching.chosen_branch_act_lblA Tanár választásaBranching type label for Teacher choice Branching.to_condition_start_valuekezdő értékValue representing the min boundary value of the conditions range.to_condition_end_valuevégső értékValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeA {0} kívül esik egy már létező feltétel tartományán.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_directionA(z) {0} nem lehet nagyobb, mit a(z) {1}. Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgFigyelem: A lecke eltávolítását választotta. Meg szeretné tartani ezt a leckét {0}-ként?Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueTovábbContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msgA(z) {0} már egy létező elágazáshoz kapcsolódik. Folytatja? Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allMég vannak feltételekPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleEz a feltételPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblNév nélküli {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgA terv használaton kívüli elágazás-leképezéseket tartalmaz, melyek szintén törlődnek. Folytatja?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgAz eltávolításhoz kérem szüntessem meg ennek a tevékenységnek a kiválasztását itt: {0}.Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msgEz: {0} kapcsolódik ehhez: {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msgEz {0} alárendelt kapcsolatban áll ezzel: {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxNagyobb vagy egyenlő, mint {0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btnTevékenységToolbar button for Optional Activity.optional_seq_btnJelenetToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipVálasztható tevékenységek készletének létrehozása.Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleJelenetek eltávolításaRemoving sequencespi_optSequence_remove_msgA törölni kívánt jelenet(ek) tevékenységeket tartalmazhatnak, melyek szintén törlődnek. Biztosan eltávolítja ezeket a jeleneteket?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actA jelenet számaLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - JelenetLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgKérem, helyezze a tevékenységet valamelyik jelenetbe!Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesTávolítsa el az összes kapcsolt feltételt {0}-ból, mielőtt hozzáadná egy választható jelenethez!Alert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msgEbben a tárolóban nincs engedélyezett jelenet.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.act_seq_lock_chkKérem oldja fel a Választható Jelenet tárolóját, mielőtt ezt a tevékenységet hozzárendelné egy választható jelenethez!Alert Message if user drags the activity to locked optional sequences container.cv_invalid_optional_seq_activitytávolítsa el a bemenő és kimenő kapcsolatokat ebből: {0}, mielőtt választható tevékenységhez rendelné hozzá!Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesEbből: {0} távolítson el minden kapcsolt elágazást, mielőtt választható tevékenységnek állítaná be!Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleVálasztható JelenetekTitle for Optional Sequences Container.to_conditions_dlg_lt_lblKisebb vagy egyenlőLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minKisebb vagy egyenlő mint {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actTevékenységekMin and max label postfix when an Optional Activity is selected.pi_seqJelenetekMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typetartományType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typeigaz/hamisType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[Meghatározások]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNévColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblFeltételColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[Választások]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new {0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.ws_file_name_emptySajnálom, nem mentheti a tervet, amíg nem ad meg fájlnevet.Error message when user try to save a design with no file namews_entre_file_nameKérem, írja be a terv nevét, és katintson a Mentés gombra!Error message when user try to save a design with no file namecv_activity_helpURL_undefinedNem található súgó ehhez: {0}.Alert message when a tool activity has no help url defined.cv_untitled_lblNévtelen - 1Label for Design Title bar on canvasmnu_help_helpSzerzői súgólabel for menu bar Help - Authoring Help optiontrans_dlg_titleÁtmenetTitle for the transition properties dialogccm_open_activitycontentTevékenység Megnyitása/SzerkesztéseLabel for Custom Context Menuws_newfolder_cancelMégseCancel on the new folder name diaccm_copy_activityTevékenység másolásaLabel for Custom Context Menuccm_paste_activityTevékenység beillesztéseLabel for Custom Context Menuccm_piTulajdonságok felügyelése...Label for Custom Context Menuccm_author_activityhelpA Szerzői Tevékenység súgójaLabel for Custom Context Menuws_dlg_descriptionLeírásLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateMégseDrop down default for gate typepi_daysNapDays label in property inspector for gate toolcv_close_return_to_ext_srcBezárás és visszatérés ehhez: {0}.Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedA változások alkalmazása sikerült.Changes have been successful applied.mnu_file_apply_changesAlkalmazApply Changesvalidation_error_transitionNoActivityBeforeOrAfterA kapcsolat előtt vagy mögött egy tevékenységnek kell lennie.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionEgy tevékenységnek kimenő vagy bemenő kapcsolattal kell rendelkeznieAn activity must have an input or output transitionvalidation_error_inputTransitionType1Ennek a tevékenységnek nincs bemenő kapcsolat.This activity has no input transitionvalidation_error_inputTransitionType2Egyik tevékenységnek sem hiányoznak a bemenő kapcsolatai.No activities are missing their input transition.validation_error_outputTransitionType1Ennek a tevékenységnek nincs kimenő kapcsolata.This activity has no output transitionvalidation_error_outputTransitionType2Egyik tevékenységnek sem hiányoznak a kimenő kapcsolatai.No activities are missing their output transition.cv_invalid_design_on_apply_changesA változtatások nem alkalmazhatók. Egy vagy több kapcsolat hiányzik.Cannot apply changes. There are one or more transitions missing.apply_changes_btnAlkalmazApply Changesapply_changes_btn_tooltipAlkalmazza a terv változtatásait, és visszatér a lecke figyeléséhez.tool tip message for save button in toolbarcancel_btnMégseToolbar - Cancel Buttoncv_activity_readOnlyA tevékenységet nem lehet {0}. A tevékenység írásvédett.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblAzonnali SzerkesztésLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_deltörölveAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modmódosítvaAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgA tervnek érvényesnek kell lennie, ha be akarja fejezni a szerkesztést.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgFigyelem: A terv megváltozott. Be akarja zárni anélkül hogy mentené?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyA kapcsolatot nem lehet {0}. A kapcsolat cél-objektuma írásvédett.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipVisszatérés a lecke figyeléséhez.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishBefejezésMenu bar File - Finish (Edit Mode)about_popup_title_lblErről - {0}Title for the About Pop-up window.about_popup_version_lblVerzióLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2009 {0} Alapítvány.Label displaying copyright statement in About dialog.about_popup_trademark_lblA {0} a {0} Foundation védjegye( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblEz a program szabad szoftver. Továbbadhatja, és/vagy módosíthatja a Free Software Foundation által kiadott Általános Nyilvános Licensz 2-es változata alapján.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleElágazásLabel for Branching Activitypi_activity_type_sequence({0}) Jelenet TevékenységActivity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKattintson a névre, ha meg akarja változtatni!Instructions for Group Naming dialog.pi_branch_tool_acts_lblBevitel (Eszköz)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_condmatch_btn_lblA Feltételes Kimutatások beállításaLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblAz eszközkimenet feltételeinek megadásaDialog title for creating new tool output conditions.al_doneKészLabel for dialog completion button.condmatch_dlg_cond_lst_lblFeltételekLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblA feltételek illesztése az elágazásokhozDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblalapértelmezettCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ HozzáadLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblMindet törliLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- EltávolítLabel for button to remove condition.to_conditions_dlg_from_lblEttőlLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblEddigLabel for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblTartományHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblElágazásColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblFeltételColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblCsoportColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNem választott elágazást.Alert message when adding a Mapping without a Branch (Sequence) being selected.sys_error_msg_startA következő rendszerhiba történt: Common System error message starting linesys_error_msg_finishA folytatáshoz újra kellene indítania a LAMS Szerző-t. El szeretné menteni a hibáról szóló alábbi információt, hogy segítse a probléma megoldásában?Common System error message finish paragraphsys_errorRendszerhibaSystem Error elert window titlepi_num_groupsCsoportok számaNumber of groups in Property inspectorpi_parallel_titlePárhuzamos tevékenységTitle for parallel activity property inspectoropt_activity_titleVálasztható tevékenységTitle for Optional Activity Containerlbl_num_activitiesTevékenységekreplacement for word activitiesal_sendKüldésSend button label on the system error dialogal_cannot_move_activitySajnálom, ezt a tevékenységet nem lehet áthelyezni.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNem adhat hozzá kapu tevékenységet választható tevékenységként.Error message when user drags gate activity over to optional containerprefix_copyof_count({0}) másolatPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNem mentheti a tervet ebbe a mappába. Kérem, válasszon érvényes al-mappát!Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openKérem, a megnyitáshoz kattintson egy tervre!Alert message if folder tried to be opened.ws_license_lblLicencLabel for Licence drop down on workspace properties tab viewws_license_comment_lblTovábbi licenszinformációkLabel for Licence Comment description below license drop downcv_invalid_optional_activityTávolítson el minden be- és kivezető átmenetet ebből: {0}, mielőtt választható tevékenységnek állítaná be!Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingAz átmenethez hiányzik a másik tevékenység.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityEgy átmenet a(z) {0} felől már létezikError message when a transition from the activity already existcv_invalid_trans_target_to_activityEgy átmenet a(z) {0} felé már létezikError message when a transition to the activity already existbranch_btnElágazásLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFolyamatLabel for Flow button in Toolbarmnu_file_importImportálásMenu bar Importcv_design_export_unsavedA tervet nem lehet expottálni. Kérem, előbb mentse!Alert message when trying to export can unsaved design.cv_design_unsavedA vászon tervét megváltoztatta. Folytatja anélkül hogy mentené?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExportálásMenu bar Exportws_chk_overwrite_existingEz a mappa már tartalmaz egy {0} nevű fájlt. Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNem használhatja ezt a mappát.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitKilépésFile Menu Exitws_no_file_openAz állományt nem találhatóAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNem hozhat létre körkörös kapcsolatot a jelenetek között.Error message when a transition from one activity to another is creating a circular loopbin_tooltipDobja ebbe a szemétkosárba azt a tevékenységet, melyet törölni akar a jelenetből!Tool tip message for canvas binnew_btn_tooltipTörli az aktuális jelenetet, és újból használatra késszé teszi a munkaterületetTool tip message for new button in toolbaropen_btn_tooltipMegjeleníti a Fájl párbeszédet a Tevékenység Jelenet megnyitásához.Tool tip message for open button in toolbarsave_btn_tooltipAz aktuális Tevékenység Jelenet gyorsmentése.tool tip message for save button in toolbarcopy_btn_tooltipA kiválasztott tevékenység másolásatool tip message for copy button in toolbarpaste_btn_tooltipA kiválasztott tevékenység beillesztésetool tip message for paste button in toolbartrans_btn_tooltipHasználja ezt a tollat a tevékenységek közti átmenetek megrajzolásához (vagy tartsa lenyomva a CTRL billentyűt)!tool tip message for transition button in toolbaroptional_btn_tooltipVálasztható tevékenységek létrehozásatool tip message for optional button in toolbargate_btn_tooltipMegállási pont létrehozásatool tip message for gate button in toolbarbranch_btn_tooltipElágazás létrehozása (majd csak a LAMS 2.1-es verziójában)tool tip message for branch button in toolbarflow_btn_tooltipFolyamatellenőrző tevékenység létrehozásatool tip message for flow button in toolbargroup_btn_tooltipTevékenységcsoport kialakításatool tip message for group button in toolbarpreview_btn_tooltipTanulói nézetTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNem szerkesztheti az írásvédett terv eszközeit. Kérem, mentse a terv egy másolatát, majd próbálja újra!Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblCsak olvashatóLabel for top left of canvas shown when a read-only design is open.al_empty_designSajnálom, üres tervet nem lehet menteni.alert message when user want to save an empty designws_newfolder_insKérem adja meg az új mappa nevétInstructions on the new name pop upcv_autosave_err_msgHiba történt a terv automatikus mentése közben. Kérem, növelje meg a Flash Player tárhelyét!Alert error message when auto-save fails.cv_autosave_rec_msgAz utolsó elveszett vagy nem mentett terv visszaállításával próbálkozik. A jelenlegi terv így törllődik. Folytatja?Message informing users that they have recovered data for a design.cv_autosave_rec_titleFigyelmeztetésAlert title for auto save recovery message.mnu_file_recoverHelyreállításMenu bar Recovercv_activity_copy_invalidSajnálom, nem megengedett az altevékenység másolása.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSajnálom, nem megengedett az altevékenység kivágása.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidSajnálom! Választania kell egy tevékenységet, mielőtt a másolásra kattintana.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidSajnálom, de ki kell választania egy tevékenységet mielőtt a tevékenység gyorsmenüjében rákattint a Megnyitás/Szerkesztés menüpontra!alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgBiztosan törölni kívánja ezt az állományt / könyvtárat?Confirmation message when user tries to delete a file or folder in workspace dialog boxmnu_helpSúgóMenu bar Helpmnu_help_abtNévjegyMenu bar Aboutmnu_toolsEszközökMenu bar Toolsmnu_tools_optVálasztható RajzeszközMenu bar Optionalmnu_tools_prefsBeállításokMenu bar preferencesmnu_tools_transÁtmenetMenu bar draw transitionnew_btnÚjToolbar &gt; New Buttonnew_confirm_msgBiztos benne, hogy törölni akarja a képernyőn lévő tervét?Msg when user clicks new while working on the existing designnone_act_lblMégseNo gate activity selectedopen_btnMegnyitásToolbar &gt; Open Buttonoptional_btnOpcionálisToolbar &gt; Optional Buttonpaste_btnBeillesztésToolbar &gt; Paste Buttonperm_act_lblEngedélyLabel for permission gate activitypi_activity_type_gateTevékenység a kapunálActivity type for gate in PIpi_activity_type_groupingTevékenység csoportosításaActivity type for grouping in Property Inspectorpi_definelaterKésőbb definiálniLabel for Define later for PIpi_end_offsetA kapu lezárásaEnd offset labelpi_group_typeCsoportosítás típusaProperty Inspector Grouping type drop downpi_hoursÓraHours label in Property Inspectorpi_lbl_currentgroupAktuális csoportosításCurrent grouping label for PIpi_lbl_descLeírásDescription Label for PIpi_lbl_groupCsoportosításGrouping label for PIpi_lbl_titleCímTitle label for PIpi_max_actMax {0} Label for maximum Activities or Sequencespi_min_actMin {0} Label for minimum Activities or Sequencespi_minsPercMins label in teh property inspectorpi_no_groupingNincsCombo title for no groupingpi_num_learnersTanulók számaPI Num learners labelpi_optional_titleOpcionális tevékenységTitle for oprional activity property inspectorpi_runofflineOffline futtatásLabel for Run Oflinepi_start_offsetA kapu megnyitásaStart offset labelpi_titleTulajdonságokOn the title bar of the PIprefix_copyofMásolás...Prefix for copy paste command for canvas activitiesprefs_dlg_cancelMégse6prefs_dlg_lng_lblNyelv7prefs_dlg_okOK5prefs_dlg_theme_lblTéma8prefs_dlg_titleBeállítások4preview_btnElőnézetToolbar &gt; Preview Buttonproperty_inspector_titleTulajdonságokOn the title bar of the PIrandom_grp_lblVéletlenszerűLabel for the grouping drop down in the PropertyInspectorrename_btnÁtnevezésLabel for Rename Buttonsave_btnMentésToolbar &gt; Save buttonsched_act_lblÜtemezésLabel for schedule gate activitysynch_act_lblEgyeztetésUsed as a label for the Synch Gate Activity Typetk_titleTevékenységekLabel for Activities Toolkit Paneltrans_btnÁtmenetToolbar &gt; Transition Buttontrans_dlg_cancelMégseCancel button on transition dialogws_chk_overwrite_resourceVigyázzon: a jelenet felülírását választotta!ws_click_folder_fileKérem, egy mappára kattintson, vagy ha felül akar írni egy tervet, akkor arra!Error msg if no folder or file is selectedws_copy_same_folderA forrás- és a célkönyvtár azonosThe user has tried to drag and drop to the same placews_dlg_cancel_buttonMégse2ws_dlg_filenameFájlnévLabel for File name in workspace windowws_dlg_location_buttonHelyWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnMegnyitásWsp Dia Open Button labelws_dlg_properties_buttonTulajdonságokWorkspace dialogue Properties btn labelws_dlg_save_btnMentésWsp Dia Save Button labelws_dlg_titleMunkaterület0ws_no_permissionSajnálom, ezt a forrást nem oszthatja meg írásraMessage when user does not have write permission to complete actionws_rename_insKérem, adja meg az új nevetMessage of the new name for the userws_tree_mywspMunkaterületemThe root level of the treews_tree_orgsCsoportjaimShown in the top level of the tree in the workspacews_view_license_buttonNézetTo show the license to the useract_lock_chkKérem oldja fel a Választható Tevékenység tárolóját, mielőtt ezt a tevékenységet választhatónak állítaná be!Alert Message if user drags the activity to locked optional activity container act_tool_titleTevékenységekTitle for Activity Toolkit Panelal_alertÉrtesítésGeneric title for Alert windowal_cancelMégseTo Confirm title for LFErroral_confirmMegerősítésTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadA nyelvi adatok nem töltődtek be.message for unsuccessful language loadingapp_chk_themeloadNem sikerült betölteni a téma adataitmessage for unsuccessful theme loadingapp_fail_continueAz alkalmazás leáll. A hibával kapcsolatban kérjen tanácsot!message if application cannot continue due to any errorchosen_grp_lblKiválasztottLabel for the grouping drop down in the PropertyInspectorcopy_btnMásolásToolbar &gt; Copy Buttoncv_invalid_design_savedA terve még nem érvényes, de azért elmentettük. Kattintson az 'Példányok'-ra, hogy megtudja a hiba okát!Message when an invalid design has been savedcv_invalid_trans_targetNem hozhat létre átmenetet ehhez az objektumhoz.Error message for when transition tool is dropped outside of valid target activitycv_show_validationPéldányokThe button on the confirm dialogcv_valid_design_savedGratulálok! Az ön terve érvényes és mentésre került.Message when a valid design has been saveddb_datasend_confirmKöszönjük, hogy elküldte az adatokat a szerverre.Message when user sucessfully dumps data to the serverdelete_btnTörlésLabel for Delete buttongate_btnKapuToolbar &gt; Gate Buttongroup_btnCsoportToolbar &gt; Group Buttongrouping_act_titleCsoportosításDefault title for the grouping activityld_val_activity_columnTevékenységThe heading on the activity in the ValidationIssuesDialogld_val_doneRendbenThe button label for the dialogld_val_issue_columnPéldányThe heading on the issue in the ValidationIssuesDialogld_val_titleA példányok érvényesítéseThe title for the dialoglicense_not_selectedMég nem választott engedélyt - Kérjük, válasszon egyet!Shown if no license is selected in the drop down in workspacemnu_editSzerkesztésMenu bar Editmnu_edit_copyMásolásMenu bar Edit &gt; Copymnu_edit_cutKivágásMenu bar Edit &gt; Cutmnu_edit_pasteBeillesztésMenu bar Edit &gt; Pastemnu_edit_redoMégisMenu bar Edit &gt; Redomnu_edit_undoVisszavonásMenu bar Edit &gt; Undomnu_fileFájlMenu bar Filemnu_file_closeBezárásMenu bar Closemnu_file_newÚjMenu bar Newmnu_file_openMegnyitásMenu bar Openmnu_file_saveMentésMenu bar savemnu_file_saveasMentés máskéntMenu bar Save as \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/it_IT_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3opt_activity_seq_titleSequenze opzionaliTitle for Optional Sequences Container.optional_seq_btn_tooltipCrea un set di sequenze opzionaliTooltip for Sequences within Optionaly Activity button.to_conditions_dlg_defin_long_typeVariazioneType description for a long-value based ouput definition.cv_invalid_optional_seq_activity_no_branchesRimuovi tutte le sezioni dipendenti da {0} prima di aggiungerlo ad una sequenza opzionale.Alert message when user try to drop an activity with connected branches into optional sequences container.pi_no_seq_actNumero di sequenzeLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.cv_invalid_optional_seq_activityRimuovi i collegamenti da e verso {0} prima di impostarlo in una sequenza opzionale.Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_activity_helpURL_undefinedImpossibile trovare la pagina di aiuto per {0}Alert message when a tool activity has no help url defined.ta_iconDrop_optseq_error_msgNon ci sono sequenze abilitate in questo contenitore.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.pi_optSequence_remove_msgLa/e sequenza/e che sta(nno) per essere rimossa/e potrebbe(ro) contenere alcune attività che verranno cancellate. Procedere?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.activityDrop_optSequence_error_msgTrascina l'attività su una delle sequenzeAlert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.to_conditions_dlg_defin_bool_typeVero/FalsoType description for a lboolean-value based ouput definition.to_conditions_dlg_lt_lblMinore o uguale Less than option for long type conditions.pi_actAttivitàMin and max label postfix when an Optional Activity is selected.pi_seqSequenzaMin and max label postfix when an Optional Sequences activity is selected.pi_defaultBranch_cb_lblDefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNomeColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblCondizioneColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[Opzioni]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipRiduciTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblMaggiore o uguale a Greater than or equal toto_conditions_dlg_lte_lblMinore o uguale aLess than or equal togroupnaming_dialog_col_groupName_lblNome del gruppoColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignInserisci/Unisci...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnInserisciButton label on Workspace in INSERT mode.lbl_num_sequences{0} - SequenzeLabel to describe the amount of sequences in the container.pi_group_matching_btn_lblAbbina i Gruppi ai RamiButton in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lblAbbina le Condizioni ai RamiButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnAggiornaButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_defin_user_defined_typeDefinito dall'utenteType description for a user-defined (boolean set) based ouput definition.al_activity_paste_invalidImpossibile incollare questo tipo di attività!Alert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledPer visualizzare in anteprima la sequenza creata, salvare prima e poi cliccare su Anteprima.Tool tip message for preview button in toolbar when button is disabled.condmatch_dlg_message_lblIl branch predefinito si può selezionare scegliendo la relativa opzione nell'area Proprietà del branch desiderato.Label for a message in the Condition to Branch matching dialog.mnu_help_helpAiuto per l'Authoringlabel for menu bar Help - Authoring Help optionbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroImpossibile aggiornare: nessuna condizione definita dall'utente. Per procedere, impostare le condizioni nella pagina di authoring degli strumenti.Alert message when the updating the conditions with a selected output definition that has no default conditions.al_group_name_invalid_blankI nomi dei gruppi non possono essere lasciati in bianco.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupgpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.pi_branch_tool_acts_lblInput (Tool)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleRamificazioneLabel for Branching Activityabout_popup_license_lblQuesto programma è free software; puoi redistribuirlo e/o modificarlo a termini della GNU General Public License version 2 come pubblicato dalla Free Software Foundation. {0} Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.groupnaming_dialog_instructions_lblClicca su un nome per cambiarne il valoreInstructions for Group Naming dialog.pi_condmatch_btn_lblCrea condizioniLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblCrea condizioni di outputDialog title for creating new tool output conditions.al_doneFattoLabel for dialog completion button.condmatch_dlg_cond_lst_lblCondizioniLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblAbbina le Condizioni ai RamiDialog title for matching conditions to branches for Tool based Branching.to_conditions_dlg_add_btn_lblAggiungiLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblPulisci tuttoLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblRimuoviLabel for button to remove condition.to_conditions_dlg_from_lblDaLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblALabel for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblConfigura la gammaHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblRamoColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblCondizioneColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppoColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNessun Ramo selezionatoAlert message when adding a Mapping without a Branch (Sequence) being selected.branch_mapping_no_mapping_msgNessun Mapping selezionatoAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNessuna condizione selezionataAlert message when adding a Mapping without a Condition being selected.cv_autosave_err_msgSi è verificato un errore durante il tentativo di salvataggio automatico del tuo progetto. Aumentare la capacità di memoria Flash Player nelle impostazioni.Alert error message when auto-save fails.branch_mapping_auto_condition_msgTutte le restanti condizioni saranno applicate al Ramo di default.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMappingHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueVariazione da {0} a {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactEsatto valore di {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblConfigura MappingLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblDefinisci in MonitorCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblDistribuisci i gruppi tra i ramiMap Groups to Branchesbranch_mapping_no_groups_msgNessun gruppo selezionatoAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGruppo baseBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblRamiLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGruppiLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblDenomina i GruppiTitle label for Group Naming dialog.pi_activity_type_branchingAttività di ramificazioneActivity type for Branching in Property Inspector.pi_branch_typeTipo di ramificazioneProperty Inspector Branching type drop down.pi_group_naming_btn_lblNome GruppoLabel for button that opens Group Naming dialog.sequence_act_titleSequenzaDefault title for Sequence Activity.tool_branch_act_lblOutput StudentiBranching type label for Tool output Branching.chosen_branch_act_lblScelta del docenteBranching type label for Teacher choice Branching.to_condition_start_valueValore inizialeValue representing the min boundary value of the conditions range.to_condition_end_valueValore finaleValue representing the max boundary value of the conditions value.al_continueContinuaContinue button on Alert dialogbranch_mapping_dlg_condition_linked_allSono presenti delle condizioniPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleQuesta condizione èPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblSenza titoloThe default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgIl progetto contiene branch mappings inutilizzate. Continuare?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.optional_act_btnAttivitàToolbar button for Optional Activity.optional_seq_btnSequenzaToolbar button for Sequences within Optional Activity.pi_optSequence_remove_msg_titleRimozione sequenze in corsoRemoving sequencesbranch_btn_tooltipCrea una ramificazione (disponibile in LAMS 2.1)tool tip message for branch button in toolbarcancel_btn_tooltipTorna a monitorare la lezione.tool tip message for cancel button in toolbar (edit mode)mnu_file_finishFinitoMenu bar File - Finish (Edit Mode)flow_btn_tooltipCrea un controllo sullo svolgimento delle attivitàtool tip message for flow button in toolbargroup_btn_tooltipCrea un'attività di raggruppamentotool tip message for group button in toolbarabout_popup_title_lblSu - {0}Title for the About Pop-up window.al_alertAvvisoGeneric title for Alert windowpreview_btn_tooltipVedi in anteprima la sequenza come la vedranno gli studentiTool tip message for preview button in toolbarlbl_num_activities{0} - Attivitàreplacement for word activitiescv_activity_dbclick_readonlyNon puoi modificare un progetto di sola lettura. Salva una copia del progetto e prova di nuovo.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSola letturaLabel for top left of canvas shown when a read-only design is open.pi_max_actMax {0}Label for maximum Activities or Sequencespi_min_actMin {0}Label for minimum Activities or Sequencesal_empty_designSpiacente, non puoi salvare un progetto vuotoalert message when user want to save an empty designcv_autosave_rec_msgStai per recuperare l'ultimo progetto perso o non salvato. Il tuo progetto corrente sarà cancellato. Continuare?Message informing users that they have recovered data for a design.cv_autosave_rec_titleAttenzioneAlert title for auto save recovery message.mnu_file_recoverRecupero...Menu bar Recovercv_activity_copy_invalidNon ti è permesso copiare quest'attività.Error message when user try to copy child activity from either optional or parallel activity containercv_activityProtected_activity_link_msgQuesto {0} è collegato a {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_linked_msg{0} è collegato a un ramo esistente. Continuare?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.al_activity_copy_invalidAttenzione! è necessario selezionare l'attività prima di cliccare 'copia'.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasbranch_mapping_dlg_condition_col_value_maxMaggiore o uguale a {0}Value for Condition field in mapping datagrid when Greater than option is selected.al_activity_openContent_invalidAttenzione! è necessario selezionare l'attività prima di cliccare sulla voce Apri/Modifica Contenuto Attività nel menù Attivitàalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasabout_popup_version_lblVersioneLabel displaying the version no on the About dialog.cv_activityProtected_child_activity_link_msgQuesto {0} ha un figlio collegato a {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.ws_del_confirm_msgSei sicuro di voler cancellare questo file/cartella?Confirmation message when user tries to delete a file or folder in workspace dialog boxvalidation_error_outputTransitionType1Quest'attività non ha un collegamento in uscita.This activity has no output transitionws_file_name_emptySpiacente! Non puoi salvare un progetto senza alcun nome.Error message when user try to save a design with no file nameto_condition_invalid_value_directionIl {0} non può essere maggiore di {1}Alert message when the start value is greater than end value of the submitted condition.ws_view_license_buttonVediTo show the license to the usercv_activity_cut_invalidNon ti è consentito tagliare quest'attività.Error message when user try to cut child activity from either optional or parallel activity containerws_entre_file_nameInserisci il nome del progetto, quindi clicca sul pulsante Salva.Error message when user try to save a design with no file namecv_design_insert_warningUna volta inserita un'altra sequenza, quest'azione non potrà essere cancellata (la vecchia sequenza sarà salvata con la nuova inserita). Per tornare alla vechia sequenza, è necessario cancellare manualmente tutte le nuove attività inserite, quindi salvare. Per lasciare inalterata la sequenza corrente, clicca su Annulla. Altrimenti clicca su OK per selezionare la sequenza da inserire.Warning message when merge/insertcv_untitled_lblSenza titolo - 1Label for Design Title bar on canvasal_group_name_invalid_existingI nomi dei gruppi devono essere univoci.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupccm_open_activitycontentApri/Modifica il contenuto delle attivitàLabel for Custom Context Menuccm_copy_activityCopia attivitàLabel for Custom Context Menuccm_paste_activityIncolla attivitàLabel for Custom Context Menuccm_piVisualizza ProprietàLabel for Custom Context Menuccm_author_activityhelpAiuto per Attività AutoreLabel for Custom Context Menuws_dlg_descriptionDescrizioneLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateNessunoDrop down default for gate typepi_daysGiorniDays label in property inspector for gate toolcv_close_return_to_ext_srcChiudi e torna a {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedLe modifiche sono state apportate con successo.Changes have been successful applied.mnu_file_apply_changesApplica modificheApply Changesvalidation_error_transitionNoActivityBeforeOrAfterDeve esserci un'attività prima o dopo un collegamento.A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionUn'attività deve avere un cellegamento in ingresso o in uscita.An activity must have an input or output transitionvalidation_error_inputTransitionType1Quest'attività non ha collegamenti in ingresso.This activity has no input transitionvalidation_error_inputTransitionType2Nessuna attività è senza collegamento in ingresso.No activities are missing their input transition.pi_num_groupsNumero di gruppiNumber of groups in Property inspectorvalidation_error_outputTransitionType2Nessuna attività è senza collegamento in uscita.No activities are missing their output transition.cv_invalid_design_on_apply_changesNon puoi apportare modifiche. Ci sono uno o più collegamenti mancanti.Cannot apply changes. There are one or more transitions missing.apply_changes_btnApporta modifiche.Apply Changesapply_changes_btn_tooltipApporta modiche al progetto e torna a monitorare la lezione.tool tip message for save button in toolbarcancel_btnAnnullaToolbar - Cancel Buttoncv_activity_readOnlyL'attività non può essere {0}. L'attività è in sola lettura.Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblModifica in modalità liveLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delrimuoviAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modmodificatoAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgIl progetto deve essere valido per terminare le modifiche.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgAttenzione: il tuo progetto è stato modificato. Vuoi chiudere senza salvare?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyNon può esserci {0} collegamento. L'attività target è in sola lettura .Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).pi_parallel_titleAttività parallelaTitle for parallel activity property inspectorabout_popup_trademark_lbl{0} è un marchio di {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.ws_chk_overwrite_resourceAttenzione! Stai per sovrascrivere questa sequenza!ws_click_folder_fileCliccare su una Cartella per salvare o su un Progetto per sovrascrivereError msg if no folder or file is selectedws_copy_same_folderLa cartella di origine e quella di destinazione coincidonoThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCancella2ws_dlg_filenameNome FileLabel for File name in workspace windowws_dlg_location_buttonPosizioneWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnApriWsp Dia Open Button labelws_dlg_properties_buttonProprietàWorkspace dialogue Properties btn labelws_dlg_save_btnSalvaWsp Dia Save Button labelws_dlg_titleArea di lavoro0ws_newfolder_cancelCancellaCancel on the new folder name diaws_newfolder_insRinominare la cartellaInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionAttenzione, non hai il permesso di scrivere in questa risorsaMessage when user does not have write permission to complete actionws_rename_insDigitare il nuovo nomeMessage of the new name for the userws_tree_mywspLa mia area di lavoroThe root level of the treews_tree_orgsI miei GruppiShown in the top level of the tree in the workspaceact_lock_chkSblocca il contenitore delle attività opzionali prima di assegnarvi questa attività come opzionaleAlert Message if user drags the activity to locked optional activity container sys_error_msg_startSi è verificato il seguente errore di sistema:Common System error message starting linesys_error_msg_finishRiavviare LAMS Author per continuare. Vuoi salvare le seguenti informazioni sull'errore per contribuire a risolvere questo problema?Common System error message finish paragraphsys_errorErrore di SistemaSystem Error elert window titlepi_activity_type_sequenceAttività della Sequenza ({0})Activity type for Sequence (Branch) in Property Inspector.opt_activity_titleAttività opzionaleTitle for Optional Activity Containeris_remove_warning_msgATTENZIONE: la lezione sta per essere rimossa. Vuoi conservare questa lezione come {0}?Message for the alert dialog which appears following confirmation dialog for removing a lesson.cv_activityProtected_activity_remove_msgPer eliminare, deseleziona quest'attività come {0}.Instruction how to delete an Activity linked to a Branching Activity.al_sendInviaSend button label on the system error dialogal_cannot_move_activityImpossibile spostare questa attività.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkImpossibile aggiungere un'attività con Barriera come attività opzionaleError message when user drags gate activity over to optional containerprefix_copyof_countCopia ({0}) diPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidImpossibile salvare un progetto in questa cartella. Scegliere una sottocartella valida.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openFai clic su un Progetto per aprirlo.Alert message if folder tried to be opened.ws_license_lblLicenzaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformazioni aggiuntive sulla licenzaLabel for Licence Comment description below license drop downcv_invalid_optional_activityRimuovi i collegamenti provenienti da e diretti a {0} prima di impostarla come attività opzionale.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingManca la seconda attività del collegamento.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityEsiste già un collegamento da {0}Error message when a transition from the activity already existcv_invalid_trans_target_to_activityEsiste già un collegamento verso {0}Error message when a transition to the activity already existbranch_btnRamificazioneLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnSvolgimento attivitàLabel for Flow button in Toolbarmnu_file_importImportaMenu bar Importcv_design_export_unsavedNon puoi esportare un progetto non salvato.Alert message when trying to export can unsaved design.cv_design_unsavedIl progetto è stato modificato. Continuare senza salvare?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportEsportaMenu bar Exportws_chk_overwrite_existingQuesta cartella contiene già un file chiamato {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNon puoi usare questa cartella.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitEsciFile Menu Exitws_no_file_openNessun file trovato.Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNon puoi creare una sequenza circolareError message when a transition from one activity to another is creating a circular loopbin_tooltipSposta un'attività su questo cestino per rimuoverla dalla sequenza.Tool tip message for canvas binnew_btn_tooltipCancella la sequenza corrente e ripristina lo spazio di lavoro pronto per l'usoTool tip message for new button in toolbaropen_btn_tooltipMostra la finestra di dialogo File per aprire una sequenza di attivitàTool tip message for open button in toolbarsave_btn_tooltipSalva rapidamente la sequenza correntetool tip message for save button in toolbarcopy_btn_tooltipCopia la sequenza selezionatatool tip message for copy button in toolbarpaste_btn_tooltipIncolla una copia della sequenza selezionatatool tip message for paste button in toolbartrans_btn_tooltipUsa questa matita per disegnare collegamenti fra le attività (o premi il tasto CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCrea un blocco di attività opzionali.tool tip message for optional button in toolbargate_btn_tooltipBlocca un passaggiotool tip message for gate button in toolbargrouping_act_titleRaggruppamentoDefault title for the grouping activityld_val_activity_columnAttivitàThe heading on the activity in the ValidationIssuesDialogld_val_doneFattoThe button label for the dialogld_val_issue_columnProblemaThe heading on the issue in the ValidationIssuesDialogld_val_titleProblemi di validazioneThe title for the dialoglicense_not_selectedSelezionare una licenza per questo progettoShown if no license is selected in the drop down in workspacemnu_editModificaMenu bar Editmnu_edit_copyCopiaMenu bar Edit &gt; Copymnu_edit_cutTagliaMenu bar Edit &gt; Cutmnu_edit_pasteIncollaMenu bar Edit &gt; Pastemnu_edit_redoRipetiMenu bar Edit &gt; Redomnu_edit_undoAnnulla Menu bar Edit &gt; Undomnu_fileFileMenu bar Filemnu_file_closeChiudiMenu bar Closemnu_file_newNuovoMenu bar Newmnu_file_openApriMenu bar Openmnu_file_saveSalvaMenu bar savemnu_file_saveasSalva con nomeMenu bar Save asmnu_helpAiutoMenu bar Helpmnu_help_abtNotizie su LAMSMenu bar Aboutmnu_toolsStrumentiMenu bar Toolsmnu_tools_optCrea Attività opzionaliMenu bar Optionalmnu_tools_prefsPreferenzeMenu bar preferencesmnu_tools_transDisegna CollegamentoMenu bar draw transitionnew_btnNuovoToolbar &gt; New Buttonnew_confirm_msgSei sicuro di voler cancellare il tuo progetto sullo schermo?Msg when user clicks new while working on the existing designnone_act_lblNessuna AttivitàNo gate activity selectedopen_btnApriToolbar &gt; Open Buttonoptional_btnAttività opzionaliToolbar &gt; Optional Buttonpaste_btnIncollaToolbar &gt; Paste Buttonperm_act_lblPermessoLabel for permission gate activitypi_activity_type_gateAttività con BarrieraActivity type for gate in PIpi_activity_type_groupingAttività di GruppoActivity type for grouping in Property Inspectorpi_definelaterDefinisci in MonitorLabel for Define later for PIpi_end_offsetBarriera chiusaEnd offset labelpi_group_typeTipo di raggruppamentoProperty Inspector Grouping type drop downpi_hoursOreHours label in Property Inspectorpi_minsMinutiMins label in teh property inspectorpi_lbl_currentgroupRaggruppamento correnteCurrent grouping label for PIpi_lbl_descDescrizioneDescription Label for PIpi_lbl_groupRaggruppamentoGrouping label for PIpi_lbl_titleTitoloTitle label for PIpi_no_groupingNessunoCombo title for no groupingpi_num_learnersNumero di studentiPI Num learners labelpi_optional_titleAttività opzionaleTitle for oprional activity property inspectorpi_runofflineAttività OfflineLabel for Run Oflinepi_start_offsetBarriera apertaStart offset labelpi_titleProprietàOn the title bar of the PIprefix_copyofCopia diPrefix for copy paste command for canvas activitiesprefs_dlg_cancelCancella6prefs_dlg_lng_lblLingua7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titlePreferenze4preview_btnAnteprimaToolbar &gt; Preview Buttonproperty_inspector_titleProprietàOn the title bar of the PIrandom_grp_lblCasualeLabel for the grouping drop down in the PropertyInspectorrename_btnRinominaLabel for Rename Buttonsave_btnSalvaToolbar &gt; Save buttonsched_act_lblOrarioLabel for schedule gate activitysynch_act_lblSincronizzaUsed as a label for the Synch Gate Activity Typetk_titleStrumenti per le AttivitàLabel for Activities Toolkit Paneltrans_btnCollegamentoToolbar &gt; Transition Buttontrans_dlg_cancelCancellaCancel button on transition dialogtrans_dlg_gateSincronizzaHeader for the transition props dialogtrans_dlg_gatetypecmbTipoGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleCollegamentoTitle for the transition properties dialogws_RootCartella principaleRoot folder title for workspaceact_tool_titleStrumenti per le AttivitàTitle for Activity Toolkit Panelal_cancelAnnullaTo Confirm title for LFErroral_confirmConfermaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadInformazioni sul linguaggio non caricatemessage for unsuccessful language loadingapp_chk_themeloadInformazioni sul tema non caricatemessage for unsuccessful theme loadingapp_fail_continueL'applicazione non può continuare. Contattare il supporto tecnico.message if application cannot continue due to any errorchosen_grp_lblScegliere in MonitorLabel for the grouping drop down in the PropertyInspectorcopy_btnCopiaToolbar &gt; Copy Buttoncv_invalid_design_savedIl tuo progetto non è ancora valido ma è stato salvato. Clicca su 'problemi possibili' per vedere che cosa non va.Message when an invalid design has been savedcv_invalid_trans_targetImpossibile creare un collegamento verso questo oggetto.Error message for when transition tool is dropped outside of valid target activitycv_show_validationProblemiThe button on the confirm dialogcv_valid_design_savedCongratulazioni! - Il tuo progetto è valido ed è stato salvato.Message when a valid design has been saveddb_datasend_confirmGrazie per aver inviato i dati al serverMessage when user sucessfully dumps data to the serverdelete_btnCancellaLabel for Delete buttongate_btnBarrieraToolbar &gt; Gate Buttongroup_btnGruppoToolbar &gt; Group Buttonabout_popup_copyright_lbl© 2002-2009 {0} Foundation.Label displaying copyright statement in About dialog.pi_branch_tool_acts_defaultSelezioneDefault item label for Input Tool dropdown list.cv_invalid_trans_diff_branchesNon puoi creare un collegamento tra attività in branch differentiError message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activityUn branch verso {0} già esiste.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityUn branch da {0} già esiste.Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceNon puoi connettere un nuovo collegamento a una sequenza chiusa.Error message displayed after drawing a transition from an activity in a closed sequence.al_cannot_move_to_diff_opt_seqPer spostare un'attività verso una diversa sequenza all'interno di Sequenze opzionali, prima trascina l'attività fuori dall'area della Sequenza opzionale, quindi clicca e trascinala verso la nuova posizione all'interno delle Sequenze opzionali.Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitybranch_mapping_dlg_branch_item_default{0} (default)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.learner_choice_grp_lblScelta dello studenteA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesDimensioni gruppo egualiCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgEditor obiettiviDialog for adding/editing/removing competencescompetences_lblObiettiviLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnAggiungiAdd competence buttoncompetence_def_dlgDefinizione obiettiviTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsUn obiettivo con il titolo {0} già esisteWarning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankIl titolo dell'obiettivo non può essere lasciato in biancoWarning message when you try to define a competence with a blank competence titlemap_comptence_btnPiano degli obiettiviLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnProgrammazione obiettiviTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblObiettiviLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumental_activity_view_competence_mappings_invalidAssicurati di aver selezionato un'attività prima di tentare di vederne la mappa degli obiettivi.Warning that appears when no activity is selected when the user tries to view competence mappingscv_invalid_optional_activity_no_branchesRimuovi tutte le sezioni dipendenti da {0} prima di impostarlo come attività opzionale.Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.map_gate_conditions_btnMappa delle condizioniButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgTutte le restanti condizioni devono essere rilevate per lo stato di barriera chiusa selezonato.Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openapertoOpen state for gate activity, allows learners to pass through itgate_closedchiusoClosed state for gate activity, does not allow learners to pass through itcompetence_editor_warning_competence_mappedL'obiettivo che stai tentando di eliminare è programmato attualmente per una o più attività. Eliminando quest'obiettivo, si rimuoverà ogni relativa programmazione. Sei sicuro di voler procedere? Warning message when you attempt to delete a competence that is mapped to one or more activities.branch_mapping_dlg_condition_col_value_minMinore o uguale a {0}Value for Condition field in mapping datagrid when Less than option is selected.act_seq_lock_chkSblocca il contenitore di sequenze opzionali prima di assegnare quest'attività ad una sequenza opzionale.Alert Message if user drags the activity to locked optional sequences container.to_conditions_dlg_defin_item_header_lbl[Scegli l'Output]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_update_defaultConditionsStai per aggiornare le tue condizioni per la definizione dell'output selezionato. Ciò rimuoverà tutti i collegamenti ai rami esistenti. Vuoi continuare?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.grouping_invalid_with_common_names_msgImpossibile salvare il progetto in quanto l'attività di gruppo '{0}' ha più di un gruppo con lo stesso nome. Ricontrollare il raggruppamento e riprovare.Alert message displayed when the Grouping validation fails during saving a design.to_condition_invalid_value_rangeLa {0} non rientra nella gamma delle condizioni esistentiAlert message when a submitted condition interferes with another previously submitted condition. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/ja_JP_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSstream_urlhttp://{0}foundation.orgmnu_file_insertdesign挿入/マージ...gpl_license_urlwww.gnu.org/licenses/gpl.txtmnu_tools_transコネクタでつなぐws_del_confirm_msgこのファイル/フォルダを削除してもいいですか?cv_eof_changes_applied変更は適用されました。about_popup_trademark_lbl{0} は {0} Foundation ( {1} ) の商標です。about_popup_copyright_lbl© 2002-2009 {0} Foundation.trans_btnコネクタtrans_dlg_titleコネクタmnu_file_import_communityLAMS コミュニティからのインポートpi_define_monitor_cb_lblあとでモニタで定義するgate_mapping_auto_condition_msg全残りの閉じられた状態の選択済ゲートを割り当てられます。sys_error_msg_finish作業を続けるためには LAMS 教材作成を再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?prefs_dlg_title詳細設定pi_definelaterあとでモニタで定義するmnu_help_abtLAMS についてcompetence_mappings_btn権限の割り当てmnu_tools_prefs詳細設定chosen_grp_lblあとでモニタで選択するcancel_btn_tooltipレッスンモニタに戻る。apply_changes_btn_tooltipデザインの変更を適用して、レッスンモニタに戻ります。al_activity_view_competence_mappings_invalid権限の割り当てを表示する前にアクティビティを選択してください。competence_editor_warning_competence_mapped削除中の権限には、現在 1 つ以上のアクティビティが配置されています。この権限を削除することは、その割り当ても削除されることになります。続けますか?grp_chk_clear_branch_mappings警告: すべての既存グループを、このグルーピング・アクティビティにリンクされた分岐の割り当てに変更しようとしていますが、続けますか?redundant_branch_mappings_msgデザインは、削除される未使用の分岐を含みます。続行しますか?map_comptence_btn権限の割り当てgroupmatch_dlg_title_lblグループを分岐に割り当てるpi_mapping_btn_lbl割り当て設定branch_mapping_dlg_match_dgd_lbl割り当てbranch_mapping_auto_condition_msgまだ割り当てられていない条件は、デフォルトの分岐にマップされます。branch_mapping_no_mapping_msg割り当てが選択されていません。map_gate_conditions_btnゲート条件の割り当てcv_invalid_design_savedデザインを保存しましたが、まだ有効な形式ではありません。潜在的問題点 ボタンをクリックして問題を確認してください。ld_val_issue_column問題点ld_val_title検証時の問題点to_conditions_dlg_defin_bool_type真/偽cv_show_validation問題点chosen_branch_act_lbl先生の選択learner_choice_grp_lbl学習者の選択cv_trans_target_act_missingコネクタの片側のアクティビティが無くなっています。ws_newfolder_okOKpi_seqシーケンスto_conditions_dlg_defin_long_type範囲to_conditions_dlg_defin_item_header_lbl[ 出力を選択 ]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_value_col_lbl条件to_conditions_dlg_options_item_header_lbl[ オプション ]sequence_act_title_new{0} {1}close_mc_tooltip最小化to_conditions_dlg_gte_lblこれ以上:to_conditions_dlg_lte_lblこれ以下:ws_dlg_insert_btn挿入branch_mapping_dlg_branch_item_default{0} (規定値)pi_group_matching_btn_lblグループを分岐に割り当てるpi_tool_output_matching_btn_lbl分岐の一致条件refresh_btn更新to_conditions_dlg_condition_items_update_defaultConditions選択されたアウトプットの、すべての条件を更新しようとしています。この際、すでに存在する分岐へのすべてのリンクが消去されます。続行しますか?to_conditions_dlg_defin_user_defined_type設定済みto_conditions_dlg_range_lbl範囲branch_mapping_dlg_branch_col_lbl分岐branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblグループbranch_mapping_no_branch_msg分岐が選択されていません。branch_mapping_no_condition_msg条件が選択されていません。branch_mapping_dlg_condition_col_value{0} から {1}branch_mapping_dlg_condition_col_value_exact{0}branch_mapping_no_groups_msgグループが選択されていません。group_branch_act_lblグループを元とするbranch_mapping_dlg_branches_lst_lbl分岐groupmatch_dlg_groups_lst_lblグループgroupnaming_dlg_title_lblグループ名pi_activity_type_branching分岐アクティビティpi_branch_type分岐のタイプsequence_act_titleシーケンスtool_branch_act_lbl学習者のアウトプットto_condition_start_value開始値to_condition_end_value終了値to_condition_invalid_value_range{0} は前掲の範囲から外れています。to_condition_invalid_value_direction{0} は {1} を超えて設定することはできません。is_remove_warning_msg警告: 学習履歴を削除しようとしています。このレッスンを {0} のままにしておきますか?al_continue続行branch_mapping_dlg_condition_linked_msg{0} は既存の分岐と接続しています。続行しますか?branch_mapping_dlg_condition_linked_all条件があります。branch_mapping_dlg_condition_linked_singleこの条件はto_condition_untitled_item_lbl無題 {0}cv_activityProtected_activity_link_msgこの {0} は {1} とリンクしています。branch_mapping_dlg_condition_col_value_max{0} 以上optional_act_btnアクティビティoptional_seq_btnシーケンスoptional_seq_btn_tooltip選択枠シーケンスを配置します。pi_optSequence_remove_msg_titleシーケンスの削除pi_optSequence_remove_msg削除するシーケンスにアクティビティが含まれる場合、同時に削除されます。シーケンスを削除しますか?pi_no_seq_actシーケンス番号lbl_num_sequences{0} - シーケンスactivityDrop_optSequence_error_msgアクティビティはシーケンスの上にドロップしてください。cv_invalid_optional_seq_activity_no_branchesそれを選択枠シーケンスに追加する前に、{0} に接続している分岐を削除してください。ta_iconDrop_optseq_error_msgこのコンテナには有効なシーケンスがありません。cv_invalid_optional_activity_no_branchesそれを選択枠アクティビティに追加する前に、{0} に接続している分岐を削除してください。opt_activity_seq_title選択枠シーケンスto_conditions_dlg_lt_lbl以下branch_mapping_dlg_condition_col_value_min{0} 以下pi_actアクティビティcv_activity_helpURL_undefined{0}のヘルプは見つかりませんでしたcv_untitled_lbl無題 - 1mnu_help_helpヘルプccm_open_activitycontentアクティビティの編集ccm_copy_activityコピーccm_paste_activityペーストccm_piプロパティ・インスペクタccm_author_activityhelpヘルプws_dlg_description説明trans_dlg_nogate未設定pi_dayscv_close_return_to_ext_src閉じて {0} に戻るmnu_file_apply_changes適用apply_changes_btn適用cancel_btnキャンセルcv_activity_readOnlyアクティビティは {0} になれません。読み込み専用です。cv_edit_on_fly_lblライブ編集cv_element_readOnly_action_del削除されましたcv_element_readOnly_action_mod変更されましたcv_eof_finish_modified_msg警告: デザインは変更されています。保存せずに閉じますか?mnu_file_finish終了about_popup_title_lbl{0} についてal_cancelキャンセルbranching_act_title分岐pi_activity_type_sequenceシーケンス・アクティビティ ({0})pi_branch_tool_acts_lblインプット (ツール)pi_condmatch_btn_lbl条件を作成to_conditions_dlg_title_lblアウトプット条件を作成al_done完了condmatch_dlg_cond_lst_lbl条件condmatch_dlg_title_lbl分岐の一致条件pi_defaultBranch_cb_lblデフォルトto_conditions_dlg_add_btn_lbl+ 追加to_conditions_dlg_clear_all_btn_lbl全消去to_conditions_dlg_remove_item_btn_lbl- 削除to_conditions_dlg_from_lblFromto_conditions_dlg_to_lblTocv_gateoptional_hit_chk選択枠アクティビティにゲート・アクティビティを追加することはできません。prefix_copyof_count{0} をコピーws_save_folder_invalidこのフォルダーにデザインを保存することはできません。有効なサブフォルダを選択してください。ws_click_file_openデザインをクリックして開いてください。ws_license_lblライセンスws_license_comment_lbl追加ライセンス情報branch_btn分岐flow_btnフローmnu_file_importインポートcv_design_export_unsaved未保存のデザインはエクスポートすることができません。cv_design_unsavedキャンバス上のデザインは変更されています。保存せずに続行しますか?mnu_file_exportエクスポートws_click_virtual_folderこのフォルダを利用することはできません。mnu_file_exit終了ws_no_file_openファイルが見つかりません。cv_invalid_trans_circular_sequence繰り返すシーケンスを作ることはできませんbin_tooltipアクティビティ・シーケンスから削除するために、ごみ箱にアクティビティをドロップしてください。new_btn_tooltip現在のシーケンスをクリアして、ワークスペースを準備しますopen_btn_tooltipアクティビティ・シーケンスを開くファイルダイアログを表示しますsave_btn_tooltip現在のアクティビティ・シーケンスを保存しますcopy_btn_tooltip選択したアクティビティをコピーしますpaste_btn_tooltipアクティビティをペーストしますoptional_btn_tooltip選択枠アクティビティを配置します。gate_btn_tooltip終了点を配置しますflow_btn_tooltipフローコントロール・アクティビティを配置しますgroup_btn_tooltipグループ・アクティビティを配置しますcv_activity_dbclick_readonly読み込み専用デザインのツールを編集することはできません。デザインの複製を保存してから再度操作してください。cv_readonly_lbl読み込み専用al_empty_design空のデザインを保存することはできませんcv_autosave_err_msgデザインを自動保存する際にエラーが発生しました。Flash Player の記憶領域設定を増やしてください。cv_autosave_rec_msg最後に失われたか、未保存のデザインを回復しようとしています。現在のデザインはクリアされます。続けますか?cv_autosave_rec_title警告mnu_file_recover再読込...cv_activity_copy_invalidこのアクティビティはコピーすることができません。al_activity_copy_invalid コピーする前にアクティビティを選択する必要がありますpi_lbl_currentgroup現在のグループpi_lbl_desc説明pi_lbl_groupグループpi_lbl_titleタイトルpi_max_act最大値 {0}pi_min_act最小値 {0}branch_btn_tooltip分岐を配置しますact_seq_lock_chkこのアクティビティを選択枠シーケンスに配置する前に、選択枠のロックを解除してください。pi_minspi_no_grouping未設定pi_num_learners学習者数pi_optional_title選択枠アクティビティpi_runofflineオフラインアクティビティpi_start_offsetタイマーpi_titleプロパティprefix_copyofコピー元: prefs_dlg_cancelキャンセルprefs_dlg_lng_lbl言語prefs_dlg_okOKprefs_dlg_theme_lblテーマproperty_inspector_titleプロパティrandom_grp_lbl自動で割り当てるsave_btn保存sched_act_lblタイマーで設定synch_act_lbl全員を待つtk_titleアクティビティ・ツールキットcv_invalid_optional_activity選択枠アクティビティに設定する前に、{0} に接続するコネクタを削除してください。trans_dlg_cancelキャンセルtrans_dlg_gate同期trans_dlg_gatetypecmbタイプtrans_dlg_okOKws_Rootルートws_chk_overwrite_resource警告: このシーケンスを上書きしようとしています!ws_click_folder_fileフォルダをクリックして保存するか、デザインをクリックして上書き保存してくださいws_copy_same_folder同じ場所にはドロップできませんws_dlg_cancel_buttonキャンセルws_dlg_location_button場所ws_dlg_ok_buttonOKws_dlg_open_btn開くws_dlg_properties_buttonプロパティws_dlg_save_btn保存ws_dlg_titleワークスペースws_newfolder_cancelキャンセルws_no_permissionこの資料を書き込む権限がありませんws_tree_mywspワークスペースws_tree_orgsグループact_lock_chkこのアクティビティを選択枠アクティビティに配置する前に、選択枠のロックを解除してください。sys_error_msg_startシステムエラーが発生しました: al_confirm確認al_okOKapp_chk_langload言語データはロードされませんでしたsys_errorシステムエラーpi_num_groupsグループ数opt_activity_title選択枠アクティビティlbl_num_activities{0} - アクティビティal_send送信al_cannot_move_activityこのアクティビティを動かすことはできません。act_tool_titleアクティビティ・ツールキットapp_chk_themeloadテーマはロードされませんでしたapp_fail_continueアプリケーションは作業を続行できません。サポートに連絡してくださいcopy_btnコピーcv_valid_design_savedおつかれさまでした!正しい形式のデザインが保存されましたdb_datasend_confirmデータをサーバに送信しましたdelete_btn削除gate_btnゲートgroup_btnグループgrouping_act_titleグループld_val_activity_columnアクティビティld_val_done完了license_not_selected著作権表示が選択されていません - 少なくとも一つ選択してくださいmnu_edit編集mnu_edit_copyコピーmnu_edit_cut切り取りmnu_edit_paste貼り付けmnu_edit_redoやり直すmnu_edit_undo元に戻すmnu_fileファイルmnu_file_close閉じるmnu_file_new新規作成mnu_file_open開くmnu_file_save保存mnu_file_saveas名前を付けて保存mnu_helpヘルプmnu_toolsツールmnu_tools_opt選択枠を配置new_btn新規作成new_confirm_msg画面上のデザインを消去してもよろしいですか?none_act_lbl未設定open_btn開くoptional_btn選択枠paste_btn貼り付けperm_act_lbl手動で開くpi_activity_type_gateゲート・アクティビティpi_activity_type_groupingグループ・アクティビティpi_end_offset終了ゲートpi_group_typeグループ・タイプpi_hoursal_activity_paste_invalidこのアクティビティを貼り付けすることはできません。condmatch_dlg_message_lbl目的の分岐のプロパティの"デフォルト"チェックボックスをクリックすると、デフォルトの分岐が選択されます。cv_design_insert_warningいったん別のシーケンスを挿入すると、取り消すことはできません - 元のシーケンスは、挿入された新しいシーケンスと共に、自動的に保存されます。元のシーケンスに戻すには、新しいシーケンスのアクティビティを手動で削除して、保存しなければならなくなります。現在のシーケンスを変更せずにおくには、キャンセルをクリックしてください。そうでない場合は、OKをクリックして、挿入するシーケンスを選択してください。cv_invalid_trans_targetこのオブジェクトへのコネクタを作成することはできませんal_cannot_move_to_diff_opt_seqアクティビティを選択枠シーケンス内の別のシーケンスに移動するには、まずそのアクティビティを選択枠シーケンスの外にドラッグしてから、選択枠シーケンス内の新たな位置にドラッグしてください。cv_activityProtected_activity_remove_msg削除するには {0} からこのアクティビティを外してください。trans_btn_tooltipコネクタをつなぎます (もしくは CTRL キーを押しながらドラッグ)al_activity_openContent_invalidアクティビティのコンテキストメニューで 開く/編集 をクリックする前に、アクティビティを選択する必要があります。cv_activity_cut_invalid このアクティビティは切り取りすることができません。cv_activityProtected_child_activity_link_msgこの {0} のアクティビティは、{1} とリンクしています。validation_error_outputTransitionType2遷移先コネクタを失ったアクティビティはありません。cv_invalid_design_on_apply_changes変更を適用することができません。いくつかのコネクタが失われています。cv_trans_readOnlyコネクタは {0} になれません。コネクタのターゲットは読み込み専用です。cv_invalid_optional_seq_activity選択枠シーケンスに設定する前に、{0} に接続するコネクタを削除してください。pi_equal_group_sizes同じグループサイズにするcompetence_editor_dlg権限の編集cv_invalid_trans_diff_branches異なる分岐に配置されているアクティビティをコネクタで接続することはできません。cv_invalid_trans_closed_sequence完結しているシーケンスに新しいコネクタを作成することはできません。validation_error_transitionNoActivityBeforeOrAfterコネクタは、前か後にアクティビティをつなげる必要がありますvalidation_error_inputTransitionType1このアクティビティにはコネクタの遷移元の端がありませんvalidation_error_inputTransitionType2遷移元コネクタを失ったアクティビティはありません。validation_error_outputTransitionType1このアクティビティにはコネクタの遷移先の端がありませんws_save_title_reserved_charsタイトルに特殊文字を含めることはできません: {0}competence_editor_warning_title_blank権限のタイトルは空欄にできませんcompetences_lbl権限competence_editor_add_competence_btn追加competence_def_dlg権限定義付けダイアログcompetences_mapped_to_act_lbl権限gate_open開くgate_closed閉じるws_dlg_date_modified_lbl最終変更日: {0}view_students_before_selection選択前に学習者一覧を見ますか?arrange_act_btnアレンジ・アクティビティsupport_act_btnサポートsupport_act_btn_tooltip選択枠サポート・アクティビティを配置します。gradebook_output_type成績表のアウトプットsupport_act_titleサポート・アクティビティsupport_msg_no_connectionサポート・アクティビティは他のアクティビティと接続できませんsupport_msg_invalid_childアクティビティのタイプ {0} はサポート・アクティビティとして追加できませんsupport_msg_max_children_reached以下にアクティビティをドロップできません: {0}. サポート・アクティビティは 最大 {1} の子アクティビティが使えます。support_msg_cannot_be_child他のアクティビティにサポート・アクティビティをドロップできません。cv_eof_finish_invalid_msgデザインは、編集を終了する際に正しい順序になっている必要があります。pi_branch_tool_acts_default-- 未選択 --ws_file_name_emptyファイル名をつけないと保存することができません。groupnaming_dialog_instructions_lblクリックして名前を変更してください。groupnaming_dialog_col_groupName_lblグループ名to_conditions_dlg_condition_items_name_col_lblタイトルgrouping_invalid_with_common_names_msgグループ・アクティビティ '{0}' に同じ名前のグループが1つ以上存在するため、デザインを保存することができません。グループを見直してから再度操作してください。al_group_name_invalid_blankグループ名は空欄にできません。al_group_name_invalid_existing同じグループ名は付けられません。ws_rename_ins新規名を入力してくださいpi_group_naming_btn_lblグループ名ws_newfolder_insフォルダ名を入力してくださいws_dlg_filenameファイル名ws_entre_file_nameデザインの名前を入力してから、保存 ボタンをクリックしてください。cv_invalid_trans_target_to_activity{0} へつながっているコネクタがすでに存在しますcv_invalid_trans_target_from_activity{0} とつながっているコネクタがすでに存在しますws_chk_overwrite_existingこのフォルダにはすでに {0} という名前のファイルが存在します。cv_invalid_branch_target_to_activity{0} への分岐はすでに作成済です。cv_invalid_branch_target_from_activity{0} からの分岐はすでに作成済です。competence_editor_warning_title_existsタイトル {0} の権限は有効になっていますal_alert通知branch_mapping_dlg_condtion_items_update_defaultConditions_zeroユーザーに定義された条件が見つからなかったので、アップデートできません。ツールの編集ページで設定する必要があるかもしれません。validation_error_activityWithNoTransitionアクティビティは、遷移元か遷移先となるコネクタが必要ですpreview_btn_tooltip_disabledシーケンスをプレビューするには、シーケンスを保存してからプレビューをクリックしてください。ws_view_license_button表示preview_btn_tooltip学習者視点でシーケンスをプレビューしますpreview_btnプレビューrename_btn名前の変更pi_parallel_title並行アクティビティabout_popup_version_lblバージョンabout_popup_license_lbl<p>このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された GNU 一般公衆利用許諾契約書 バージョン 2 の定める条件の下で再頒布または改変することができます。<br><br>{0}</p> \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/ko_KR_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3close_mc_tooltip최소화to_conditions_dlg_gte_lbl같거나 큼to_conditions_dlg_lte_lbl같거나 작음groupnaming_dialog_col_groupName_lbl모둠이름mnu_file_insertdesign삽입/병합ws_dlg_insert_btn삽입branch_mapping_dlg_branch_item_default{0}(기본)pi_group_matching_btn_lbl모둠을 가지로 연계cv_invalid_branch_target_to_activity{0}으로의 갈래가 이미 있습니다.cv_invalid_branch_target_from_activity{0}로부터의 갈래가 이미 있습니다.cv_invalid_trans_closed_sequence닫힌 순차학습으로 새로운 이동을 연결할 수 없습니다.al_group_name_invalid_blank모둠 이름은 공백이어서는 안됩니다.al_group_name_invalid_existing모둠 이름은 유일해야 합니다.refresh_btn새로고침pi_tool_output_matching_btn_lbl조건별 갈래 연결to_conditions_dlg_defin_user_defined_type사용자 정의al_activity_paste_invalid죄송합니다. 이 종류의 활동은 붙여넣기 할 수 없습니다.pi_branch_tool_acts_default---선택---cv_invalid_trans_diff_branches다른 갈래에 있는 활동간 이동을 만들 수 없습니다.to_conditions_dlg_condition_items_update_defaultConditions선택된 출력 정의에 대한 조건을 갱신하려고 합니다.al_cannot_move_to_diff_opt_seq선택적 순차학습내에서 다른 순차학습으로 활동을 옮기기 위해서는 선택적 순차학습 영역내에서 학습을 바깥으로 드래그한다음 다시 클릭하고 순차학습내의 새로운 위치로 끌어다 놓으십시요. preview_btn_tooltip_disabled순차학습을 미리보기 위해서는 저장한 다음 미리보기를 클릭하세요.condmatch_dlg_message_lbl기본 갈래는 원하는 갈래의 속성영역에서 "기본"체크 박스를 선택하여 선택할 수 있습니다.branch_mapping_dlg_condtion_items_update_defaultConditions_zero사용자 정의 조건이 없어서 새로고침할 수 없습니다. 도구의 작성페이지에서 사용자 정의 조건들을 설정할 수 있습니다.grouping_invalid_with_common_names_msg모둠 활동 '{0}'에 같은 이름의 모둠이 한개 이상 있어서 학습설계를 저장할 수 없습니다. 모둠구성을 확인하고 다시 시도하십시요.cv_design_insert_warning한번 다른 순차학습을 삽입하면 취소할 수 없습니다. 이전 순차학습은 새 순차학습이 삽입된 상태로 자동으로 저장될 것 입니다. 이전의 순차학습으로 돌아가기 위해서는 수동으로 모든 새로운 순차학습을 삭제하고 저장해야 합니다. 현재 순차학습을 변경하지 않으려면 취소를 클릭하시고 순차학습을 삽입하기 위해서는 확인을 클릭하세요.branch_mapping_no_condition_msg조건이 선택되지 않았습니다.branch_mapping_auto_condition_msg남은 조건들은 기본 갈래에 할당될 것입니다.branch_mapping_dlg_match_dgd_lbl할당branch_mapping_dlg_condition_col_value{0}에서 {1} 까지 범위branch_mapping_dlg_condition_col_value_exact{0}의 정확한 값pi_mapping_btn_lbl할당 설정pi_define_monitor_cb_lbl관찰에서 정의groupmatch_dlg_title_lbl모둠을 갈래에 할당branch_mapping_no_groups_msg모둠이 선택되지 않았습니다.branch_mapping_dlg_branches_lst_lbl갈래group_branch_act_lbl모둠 기반groupmatch_dlg_groups_lst_lbl모둠들groupnaming_dlg_title_lbl모둠 이름 짓기pi_activity_type_branching갈래 활동pi_branch_type갈래 형식pi_group_naming_btn_lbl모둠이름짓기sequence_act_title순차학습tool_branch_act_lbl도구 출력chosen_branch_act_lbl교수자 선택to_condition_start_value최소값to_condition_end_value최대값pi_optSequence_remove_msg_title순차학습 제거to_condition_invalid_value_range{0}은 기존 조건 범위에 포함되지 않습니다.to_conditions_dlg_defin_bool_type참/거짓to_condition_invalid_value_direction{0}은 {1}보다 클 수 없습니다.optional_seq_btn_tooltip선택 순차학습활동 집합 만들기is_remove_warning_msg학습이 제거될 것입니다. 이 학습을 {0}로 보존하기를 원하십니까?al_continue계속branch_mapping_dlg_condition_linked_msg{0}이 기존 갈래와 연결되었습니다. 계속하시겠습니까?branch_mapping_dlg_condition_linked_all다음 조건들이 있습니다.branch_mapping_dlg_condition_linked_single이 조건은 다음과 같습니다.to_condition_untitled_item_lbl제목없음 {0}redundant_branch_mappings_msg이 설계는 사용되지 않아서 제거될 갈래 할당을 포함하고 있습니다. 계속하시겠습니까?cv_activityProtected_activity_remove_msg제거하기 위해서는 이 활동을 {0}로 선택하지 마십시요.cv_activityProtected_activity_link_msg{0}이 {1}과 연결되어 있습니다.cv_activityProtected_child_activity_link_msg{0}이 {1}와 연결된 하위활동을 가지고 있습니다.branch_mapping_dlg_condition_col_value_max{0}과 크거나 같음optional_act_btn활동optional_seq_btn순차학습pi_optSequence_remove_msg제거될 순차학습은 삭제될 활동을 포함할 수도 있습니다. 이 순차학습들을 제거하시겠습니까?pi_no_seq_act순차학습의 수lbl_num_sequences{0} - 순차학습activityDrop_optSequence_error_msg순차학습의 하나로 이 활동을 할당하세요.cv_invalid_optional_seq_activity_no_branches선택 순차학습에 추가하기전에 {0}으로 부터 연결된 갈래를 제거하세요.ta_iconDrop_optseq_error_msg이 컨테이너에 활성화된 순차학습이 없습니다.act_seq_lock_chk선택순차학습에 이 활동을 배정하기 전에 선택순차학습 컨테이너의 잠금을 해제하십시요.cv_invalid_optional_seq_activity선택 순차학습으로 설정하기 전에 연결된 이동을 제거하세요.cv_invalid_optional_activity_no_branches선택 순차학습으로 설정하기 전에 {0}로 부터 연결된 갈래를 제거하세요.opt_activity_seq_title선택적 순차학습to_conditions_dlg_lt_lbl적거나 같음branch_mapping_dlg_condition_col_value_min{0} 과 같거나 적음pi_act활동pi_seq순차학습to_conditions_dlg_defin_long_type범위to_conditions_dlg_defin_item_header_lbl[정의들]to_conditions_dlg_defin_item_fn_lbl{0} ({1}) to_conditions_dlg_condition_items_name_col_lbl조건명to_conditions_dlg_condition_items_value_col_lbl조건to_conditions_dlg_options_item_header_lbl[선택]sequence_act_title_new{0} {1}cv_untitled_lbl제목없음-1mnu_help_help작성하기 도움말ccm_open_activitycontent활동 내용 열기/편집ccm_copy_activity활동 복사ccm_paste_activity활동 붙이기ccm_pi속성 찾기ccm_author_activityhelp저작 활동 도움말ws_dlg_description설명trans_dlg_nogate없음pi_days날짜들cv_close_return_to_ext_src닫고 {0} 로 돌아가기cv_eof_changes_applied변경이 성공적으로 적용되었습니다mnu_file_apply_changes변경 적용validation_error_transitionNoActivityBeforeOrAfter이동 전 혹은 후에 활동이 있어야 합니다 validation_error_activityWithNoTransition활동은 전단계 혹은 다음단계 이동이 있어야 합니다.validation_error_inputTransitionType1이 활동은 전단계 이동이 없습니다.validation_error_inputTransitionType2어떤 활동도 전단계 이동이 누락된 것이 없습니다validation_error_outputTransitionType1이 활동은 다음단계 이동이 없습니다.validation_error_outputTransitionType2어떤 활동도 다음 단계 이동이 누락된 것이 없습니다cv_invalid_design_on_apply_changes변경을 적용할 수 없습니다. 하나 혹은 그 이상의 이동이 누락되었습니다.apply_changes_btn변경 적용apply_changes_btn_tooltip학습설계에 변경을 적용하고 학습관찰로 돌아갑니다.cancel_btn취소cv_activity_readOnly활동이 {0} 이 될 수 없습니다. 활동은 읽을 수만 있습니다.cv_edit_on_fly_lbl라이브 편집cv_element_readOnly_action_del제거됨cv_element_readOnly_action_mod수정됨cv_eof_finish_invalid_msg편집을 마치기 위해서는 학습설계가 유효해야 합니다.cv_eof_finish_modified_msg주의:학습설계가 수정되었습니다. 저장하지 않고 닫기를 원하십니까?cv_trans_readOnly이동이 {0}이 될 수 없습니다. 이동하고자 하는 목표는 읽기 전용입니다.cancel_btn_tooltip학습관찰로 돌아가기mnu_file_finish종료about_popup_title_lbl{0} 정보about_popup_version_lbl버전about_popup_trademark_lbl {0}은 {0}재단의 등록상표입니다 ( {1} ). about_popup_license_lbl이 프로그램은 프리소프트웨어 입니다; Free Software Foundationd 에 의해 발간된 GNU General Public Licence version2의 조건에 한해서 재배포하거나 수정할 수 있습니다.stream_reference_lbl람스gpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.org branching_act_title분기pi_activity_type_sequence순차학습 활동 ({0})groupnaming_dialog_instructions_lbl이 값을 변경하기위해서는 이름을 클릭하세요.pi_branch_tool_acts_lbl입력(도구)pi_condmatch_btn_lbl조건 설정to_conditions_dlg_title_lbl도구 출력 조건 만들기al_done완료condmatch_dlg_cond_lst_lbl조건들condmatch_dlg_title_lbl조건들을 갈래와 연결하기pi_defaultBranch_cb_lbl기본to_conditions_dlg_add_btn_lbl+ 추가to_conditions_dlg_clear_all_btn_lbl모두 지움to_conditions_dlg_remove_item_btn_lbl- 제거to_conditions_dlg_from_lbl시작to_conditions_dlg_to_lblto_conditions_dlg_range_lbl범위branch_mapping_dlg_branch_col_lbl갈래branch_mapping_dlg_condition_col_lbl조건branch_mapping_dlg_group_col_lbl모둠branch_mapping_no_branch_msg갈래가 선택되지 않았습니다.branch_mapping_no_mapping_msg연결이 선택되지 않았습니다.al_send보내기al_cannot_move_activity죄송합니다. 이 활동을 이동할 수 없습니다.cv_gateoptional_hit_chk선택활동으로 게이트 활동을 추가할 수 없습니다.prefix_copyof_count사본({0})ws_save_folder_invalid이 폴더에 학습설계를 저장할 수 없습니다. 올바른 하위폴더를 선택하십시요.ws_click_file_open열고자 하는 설계를 클릭하십시요.ws_license_lbl라이선스ws_license_comment_lbl추가 라이선스 정보cv_invalid_optional_activity선택활동으로 설정하기 전에 {0}으로나 로부터의 이동을 제거하시오.cv_trans_target_act_missing이동의 두번째 활동이 빠져 있습니다.cv_invalid_trans_target_from_activity{0} 로부터의 이동이 이미 존재합니다.cv_invalid_trans_target_to_activity{0} 로의 이동이 이미 존재합니다.branch_btn갈래flow_btn흐름mnu_file_import가져오기cv_design_export_unsaved저장되지 않은 설계를 내보내기 할 수 없습니다.cv_design_unsaved캔버스 상의 학습설계가 변경되었습니다. 저장하지 않고 계속하시겠습니까?mnu_file_export내보내기ws_chk_overwrite_existing이 폴더에는 파일이름이 {0} 인 파일이 이미 존재합니다.act_tool_title활동 도구al_alert주의al_cancel취소al_confirm확인al_ok확인app_chk_langload언어자료가 불러들여지지 못함app_chk_themeload테마자료가 불러들여지지 못함app_fail_continue계속할수없습니다. 지원부서에 연락하십시요chosen_grp_lbl선택됨copy_btn복사cv_invalid_design_saved설계가 유효하지 않으나 저장되었음. 무엇이 문제인지 '이슈들'을 클릭하세요cv_invalid_trans_target이 객체로 이동을 만들 수 없습니다cv_show_validation이슈들cv_valid_design_saved축하합니다. 학습설계가 유효하며 저장되었습니다db_datasend_confirm서버에 자료를 보내주어 감사합니다delete_btn삭제gate_btn게이트group_btn그룹grouping_act_title그룹만들기ld_val_activity_column활동ld_val_done완료ld_val_issue_column이슈ld_val_title유효성 이슈들license_not_selected아무 라이선스가 선택되지 않았습니다. 라이선스를 선택하십시요mnu_edit편집mnu_edit_copy복사mnu_edit_cut잘라내기mnu_edit_paste붙이기mnu_edit_redo반복실행mnu_edit_undo실행취소mnu_file파일mnu_file_close닫기mnu_file_new새로만들기mnu_file_open열기mnu_file_save저장mnu_file_saveas다음과 같이 저장mnu_help도움말mnu_help_abt람스에 대해mnu_tools도구들mnu_tools_opt선택활동 그리기mnu_tools_prefs선택 설정mnu_tools_trans이동선 긋기new_btn새로 만들기new_confirm_msg당신의 설계를 지우기를 원하십니까?none_act_lbl없음open_btn열기optional_btn선택활동paste_btn붙이기perm_act_lbl허가pi_activity_type_gate게이트 활동pi_activity_type_grouping그룹만들기 활동pi_definelater관찰에서 정의pi_end_offset게이트 설정pi_group_type그룹 형태pi_hours시간pi_lbl_currentgroup현재 그룹pi_lbl_desc설명pi_lbl_group그룹만들기pi_lbl_title제목pi_max_act최대 {0}pi_min_act최소 {0}pi_minspi_no_grouping없음pi_num_learners학습자 수pi_optional_title선택적 활동pi_runoffline오프라인 활동pi_start_offset게이트 열기pi_title속성prefix_copyof사본prefs_dlg_cancel취소prefs_dlg_lng_lbl언어prefs_dlg_ok확인prefs_dlg_theme_lbl테마prefs_dlg_title선택적설정preview_btn미리보기property_inspector_title속성random_grp_lbl임의rename_btn다른 이름으로save_btn저장하기sched_act_lbl일정synch_act_lbl동기화tk_title활동 도구모음trans_btn이동trans_dlg_cancel취소trans_dlg_gate동기화trans_dlg_gatetypecmb형식trans_dlg_ok확인trans_dlg_title이동ws_Root최상위 폴더ws_chk_overwrite_resource주의: 이 시퀀스를 덮어쓸려고 합니다.ws_click_folder_file저장할 폴더를 클릭하거나 덮어쓸 설계를 클릭하세요ws_copy_same_folder소스와 목표 폴더가 같습니다.ws_dlg_cancel_button취소ws_dlg_filename파일명ws_dlg_location_button위치ws_dlg_ok_button확인ws_dlg_open_btn열기ws_dlg_properties_button속성ws_dlg_save_btn저장ws_dlg_title작업공간ws_newfolder_cancel취소ws_newfolder_ins새로운 폴더이름을 입력하시요.ws_newfolder_ok확인ws_no_permission죄송합니다. 당신은 이 자원에 쓸 수 있는 권한이 없습니다ws_rename_ins새로운 이름을 입력하세요ws_tree_mywsp내 작업공간ws_tree_orgs내 그룹ws_view_license_button보기act_lock_chk활동을 선택활동으로 하기 위해서는 선택활동 컨테이너의 잠금을 해제하십시요sys_error_msg_start다음과 같은 시스템 오류가 발생하였습니다sys_error_msg_finish계속하기위해서는 람스를 다시 시작해야 합니다. 이문제를 해결하기 위해서 다음 정보를 저장하기를 원합니까?sys_error시스템 오류pi_num_groups그룹 수pi_parallel_title병행 활동opt_activity_title선택활동lbl_num_activities{0}-활동들ws_click_virtual_folder이 폴더를 사용할 수 없습니다.mnu_file_exit나감ws_no_file_open발견된 파일이 없습니다.cv_invalid_trans_circular_sequence당신은 순환 순차학습을 만들 권한이 없습니다.bin_tooltip활동 순차학습에서 활동을 제거하기 위해서 이 휴지통에 활동을 넣으세요.new_btn_tooltip현재 순차학습을 지우고 작업공간을 사용할 수 있도록 초기화open_btn_tooltip활동 순차학습을 열기위해 파일 대화상자 열기save_btn_tooltip현재 활동 순차학습의 빠른 저장copy_btn_tooltip선택된 활동 복사paste_btn_tooltip선택된 활동 사본을 붙여넣기trans_btn_tooltip활동간 이동을 그리기 위해서 이 펜을 사용하거나 컨트롤키를 누르세요.optional_btn_tooltip선택활동모음 생성하기gate_btn_tooltip멈출 위치 생성branch_btn_tooltip분기 활동 생성(램스 2.1버전에서 가능)flow_btn_tooltip학습 흐름제어 활동 생성group_btn_tooltip그룹 활동 생성preview_btn_tooltip학습자가 볼 순차학습 미리보기cv_activity_dbclick_readonly일기전용의 학습설계를 편집할 수 없습니다. 설계 사본을 저장하고 다시 시도하십시요. cv_readonly_lbl읽기 전용al_empty_design죄송합니다. 비어있는 학습설계를 저장할 수 없습니다.cv_autosave_err_msg당신의 학습설계를 자동으로 저장하는과정에서 오류가 발생하였습니다. 플래시 플레이어 설정값을 조정하십시오.cv_autosave_rec_msg마지막에 손실되거나 저장되지 않은 학습설계를 복구할려고 합니다. 현재 학습설계는 지워질 것입니다. 계속하겠습니까?cv_autosave_rec_title경고mnu_file_recover복원하기cv_activity_copy_invalid죄송합니다. 당신은 하위활동을 복사할 권한이 없습니다.cv_activity_cut_invalid죄송합니다. 당신은 하위 활동을 잘라내기 할 권한이 없습니다.al_activity_copy_invalid죄송합니다. 복사를 클릭하기 전에 활동을 선택해야 합니다.al_activity_openContent_invalid죄송합니다. 오른쪽 클릭메뉴에서 활동 컨텐츠 열기/편집 메뉴를 클릭하기 전에 활동을 선택해야 합니다.ws_del_confirm_msg이 파일/폴더를 삭제하는 것이 확실합니까?ws_file_name_empty죄송합니다. 파일이름 없이 학습설계를 저장할 수 없습니다.ws_entre_file_name학습설계 이름을 입력하고 저장버튼을 클릭해 주십시요.cv_activity_helpURL_undefined{0} 에대한 도움말 페이지를 찾을 수 없습니다.about_popup_copyright_lbl© 2002-2009 {0} 재단learner_choice_grp_lbl학습자의 선택 pi_equal_group_sizes동일한 모둠 크기competence_editor_dlg역량편집기competences_lbl역량competence_editor_add_competence_btn추가competence_def_dlg역량 정의 대화창competence_editor_warning_title_exists제목이 {0}인 역량이 이미 존재합니다.competence_editor_warning_title_blank역량 제목은 비워둘 수 없습니다.competence_editor_warning_competence_mapped삭제하고자하는 역량은 한개이상의 활동과 연계되어 있습니다. 이 역량을 삭제하면 연계도 삭제됩니다. 계속하시겠습니까?map_comptence_btn역량과 연계competence_mappings_btn역량 연계competences_mapped_to_act_lbl역량들map_gate_conditions_btn관문 조건과 연계gate_mapping_auto_condition_msg모든 나머지 조건들은 선택된 관문들의 닫힌 상태와 연계될 것입니다.gate_open열림gate_closed닫힘al_activity_view_competence_mappings_invalid역량연계를 보기전에 활동을 선택하였는지 확인하십시요.ws_dlg_date_modified_lbl마지막 수정됨:{0}ws_save_title_reserved_chars제목에는 특수 문자를 포함할 수 없습니다:{0}mnu_file_import_community램스 사용자모임에서 가져오기gradebook_output_type성적 산출물view_students_before_selection선택하기전에 학습자들 보기arrange_act_btn활동 배치support_act_btn보조support_act_btn_tooltip선택적 보조 활동집합 만들기support_act_title보조 활동support_msg_no_connection지원활동은 다른 활동과 연결될 수 없습니다.support_msg_invalid_child{0} 타입의 활동들은 지원활동으로 추가될 수 없습니다.support_msg_max_children_reached여기에 {0} 활동을 놓을 수 없습니다. 지원활동은 최대 {1}개의 하위 활동만을 허용합니다.support_msg_cannot_be_child다른 활동안에 지원 활동을 놓을 수 없습니다.grp_chk_clear_branch_mappings이 모둠구성 활동과 연관된 모든 모둠별 분기 연계가 삭제될 것입니다. 계속하시겠습니까? \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/lt_LT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/lt_LT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/lt_LT_dictionary.xml 12 Jan 2010 01:20:19 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3mnu_file_finishPabaigacv_invalid_branch_target_from_activityŠaka iš {0} jau yra.about_popup_title_lblApie - {0}cv_invalid_trans_closed_sequenceNegalima prijungti naujo perėjimo prie užvertos sekos.al_cannot_move_to_diff_opt_seqNorėdami perkelti veiklą į skirtingą seką pasirinktinėse sekose, pirmiausia nuvilkite veiklą iš pasirinktinių sekų srities, tada spustelėkite ir nuvilkite į naują vietą pasirinktinų sekų viduje.al_group_name_invalid_blankGrupės negali būti be pavadinimo.al_group_name_invalid_existingGrupių vardai turi nesikartoti.learner_choice_grp_lblMokinio pasirinkimaspi_equal_group_sizesVienodi grupių dydžiaicompetence_editor_dlgKompetencijos rengyklėcompetences_lblKompetencijoscompetence_editor_add_competence_btnPridėticompetence_def_dlgKompetencijos apibrėžimo dialogascompetence_editor_warning_title_existsJau yra kompetencija su antrašte {0}competence_editor_warning_title_blankKompetencija turi turėti antraštęcompetence_editor_warning_competence_mappedKompetencija, kurią ketinate šalinti, šiuo metu yra atvaizduota vienoje ar keliose veiklose. Šios kompetencijos pašalinimas panaikins visus jos atvaizdavimus. Ar tikrai norite tęsti?map_comptence_btnAtvaizduoti kompetencijosecompetence_mappings_btnKompetencijų atvaizdavimaicompetences_mapped_to_act_lblKompetencijosmap_gate_conditions_btnAtvaizduoti loginių elementų sąlygasgate_mapping_auto_condition_msgVisos likusios sąlygos bus atvaizduotos pasirinktų loginių elementų užvertoje būklėje.gate_openatvertigate_closedužvertial_activity_view_competence_mappings_invalidĮsitikinkite, kad prieš bandydami peržiūrėti kompetencijos atvaizdavimus pasirinkote atitinkamą veiklą.ws_dlg_date_modified_lblModifikuota: {0}ws_save_title_reserved_charsAntraštėje negali būti specialių simbolių: {0}mnu_file_import_communityImportuoti iš LAMS bendruomenės ...gradebook_output_typePažymių knygelės išvestisview_students_before_selectionPeržiūrėti mokinius prieš pasirenkant?arrange_act_btnSutvarkyti veiklassupport_act_btnPriežiūrasupport_act_btn_tooltipSukurkite pasirinktinų priežiūros veiklų rinkinį.support_act_titlePriežiūros veiklasupport_msg_no_connectionPriežiūros veiklos negali būti sujungtos su kitomis veiklomissupport_msg_invalid_child{0} tipo veiklos negali būti pridėtos kaip priežiūros veiklossupport_msg_max_children_reachedNegalima numesti veiklos: {0}. Priežiūros veikla gali turėti daugiausiai {1} dukterinių veiklų.support_msg_cannot_be_childNegalima numesti priežiūros veiklos į kitos veiklos vidų.grp_chk_clear_branch_mappingsPerspėjimas: tai panaikins visus esamos grupės atvaizdavimus, susietus su šia grupine veikla, šakose. Norite tęsti?al_continueTęstibranch_mapping_dlg_condition_linked_msg{0} susietas su esama šaka. Norite tęsti?branch_mapping_dlg_condition_linked_allYra sąlygųbranch_mapping_dlg_condition_linked_singleŠi sąlyga yrato_condition_untitled_item_lblBe pavadinimo {0}redundant_branch_mappings_msgProjekte yra nepanaudotų šakų atvaizdavimų, kurie bus pašalinti. Norite tęsti?cv_activityProtected_activity_remove_msgPašalinimui prašome panaikinti šios veiklos pažymėjimą kaip {0}.cv_activityProtected_activity_link_msgŠis {0} susietas su {1}.cv_activityProtected_child_activity_link_msgŠis {0} turi dukterinį elementą, susietą su {1}.branch_mapping_dlg_condition_col_value_maxLygus arba didesnis už {0}optional_act_btnVeiklaoptional_seq_btnSekaoptional_seq_btn_tooltipKurti pasirinktinių sekų rinkinį.pi_optSequence_remove_msg_titleSekų šalinimaspi_optSequence_remove_msgŠi šalinama seka (sekos) gali būti su veiklomis, kurios bus pašalintos. Norite panaikinti šias sekas?pi_no_seq_actJokia sekalbl_num_sequences- sekosactivityDrop_optSequence_error_msgPrašome numesti veiklą ant vienos iš sekų.cv_invalid_optional_seq_activity_no_branchesPašalinkite iš {0} bet kokias sujungtas šakas prieš pridėdami prie pasirinktinės sekos.ta_iconDrop_optseq_error_msgKonteineryje nėra jokių veikiančių sekų.act_seq_lock_chkPrašome atrakinti pasirinktinų sekų konteinerį prieš priskiriant šią veiklą pasirinktinei sekai.cv_invalid_optional_seq_activityPašalinkite perėjimus į ir iš {0} prieš nustatydami kaip pasirinktinę seką.cv_invalid_optional_activity_no_branchesPašalinkinte nuo {0} bet kokias prijungtas šakas prieš nustatydami kaip pasirinktinę veiklą.opt_activity_seq_titlePasirinktinės sekosto_conditions_dlg_lt_lblMažiau už arba lygubranch_mapping_dlg_condition_col_value_minMažiau už arba lygu {0}pi_actVeiklospi_seqSekosto_conditions_dlg_defin_long_typesritisto_conditions_dlg_defin_bool_typetaip/neto_conditions_dlg_defin_item_header_lbl[ pasirinkti išvestį]to_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblPavadinimasto_conditions_dlg_condition_items_value_col_lblSąlygato_conditions_dlg_options_item_header_lbl[ Sąlygos]sequence_act_title_new{0} {1}close_mc_tooltipSumažintito_conditions_dlg_gte_lblDaugiau už arba lyguto_conditions_dlg_lte_lblMažiau už arba lygugroupnaming_dialog_col_groupName_lblGrupės pavadinimasmnu_file_insertdesignĮterpti/Sulieti ...ws_dlg_insert_btnĮterptibranch_mapping_dlg_branch_item_default{0} {numatytasis}pi_group_matching_btn_lblPritaikyti grupes šakomspi_tool_output_matching_btn_lblPritaikyti sąlygas šakomsrefresh_btnAtnaujintito_conditions_dlg_condition_items_update_defaultConditionsKetinate atnaujinti pasirinkto išvesties apibrėžimo sąlygas. Tuo pašalinsite visas sąsajas su esamomis šakomis. Norite tęsti?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNegalima atnaujinti, nes nerasta jokių naudotojo apibrėžtų sąlygų. Gali prireikti nustatyti jas priemonės kūrimo puslapyje.to_conditions_dlg_defin_user_defined_typenustatyta naudotojogrouping_invalid_with_common_names_msgNegalima įrašyti projekto, nes grupinė veikla '{0}' turi daugiau nei vieną grupę su tuo pačiu pavadinimu. Prašome peržiūrėti grupavimą ir pabandyti dar kartą.al_activity_paste_invalidDeja, Jūs negalite įklijuoti šio veiklos tipopreview_btn_tooltip_disabledPrieš peržiūrint seką, turite ją pirmiau įrašyti, o tada spustelėti „Peržiūrėti“condmatch_dlg_message_lblNumatytoji šaka gali būti pasirinkta pažymint norimos šakos „numatyta“ žymimąjį langelį Savybių srityje.cv_design_insert_warningĮterpus kitą seką, negalite nutraukti šio veiksmo, nes senoji seka automatiškai įrašoma su įterpta naująja seka. Grįžimui prie senosios sekos turite pašalinti visas naująsias sekos veiklas rankiniu būdu, o tada įrašyti. Norint palikti esamas sekas nepakeistas, spustelėkite „Nutraukti“. Kitu atveju spustelėkite „Gerai“ ir pažymėsite įterptiną seką.pi_branch_tool_acts_default--Pasirinkimas--cv_invalid_trans_diff_branchesNegalima sukurti perėjimo tarp veiklų skirtingose šakose.cv_invalid_branch_target_to_activityŠaka į {0} jau yra.cv_invalid_design_on_apply_changesNegalite pritaikyti pakeitimų. Trūksta vieno ar kelių perėjimų.apply_changes_btnPritaikyti pakeitimusapply_changes_btn_tooltipPritaikyti pakeitimus projekte ir grįžti į pamokos stebėjimą.cancel_btnNutraukticv_activity_readOnlyVeikla negali būti {0}. Veikla yra skirta tik skaitymui.cv_edit_on_fly_lblTiesioginis redagavimascv_element_readOnly_action_delpašalintascv_element_readOnly_action_modpakeistascv_eof_finish_invalid_msgProjektas turi būti galiojantis, kad galėtumėte baigti redaguoti.cv_eof_finish_modified_msgĮspėjimas: Jūsų projektas buvo pakeistas. Norite užverti neįrašę?cv_trans_readOnlyPerėjimas negali būti {0}. Perėjimo tikslas yra skirtas tiktai skaitymui.cancel_btn_tooltipGrįžti į pamokos stebėjimą.about_popup_version_lblVersijaabout_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} yra prekės ženklas {0} Foundation ( {1} ).about_popup_license_lblŠi programa yra nemokama; Jūs galite ją platinti ir/arba modifikuoti pagal GNU General Public License 2 versiją kaip publikuota Free Software Foundation. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.org branching_act_titleŠakojimasispi_activity_type_sequenceSekos veikla ({0})groupnaming_dialog_instructions_lblSpustelėkite vardą, kad pakeistumėte jo reikšmę.pi_branch_tool_acts_lblĮvestis (Priemonė)pi_condmatch_btn_lblKurti sąlygasto_conditions_dlg_title_lblKurti išvesties sąlygasal_doneAtliktacondmatch_dlg_cond_lst_lblSąlygoscondmatch_dlg_title_lblSuvienodinti šakų sąlygaspi_defaultBranch_cb_lblnumatytasisto_conditions_dlg_add_btn_lbl+ Pridėtito_conditions_dlg_clear_all_btn_lblIšvalyti viskąto_conditions_dlg_remove_item_btn_lbl- Pašalintito_conditions_dlg_from_lblto_conditions_dlg_to_lblĮto_conditions_dlg_range_lblDiapazonasbranch_mapping_dlg_branch_col_lblŠakabranch_mapping_dlg_condition_col_lblSąlygabranch_mapping_dlg_group_col_lblGrupėbranch_mapping_no_branch_msgNepasirinkta jokia šaka.branch_mapping_no_mapping_msgNepasirinktas joks atvaizdavimas.branch_mapping_no_condition_msgNepasirinkta jokia sąlyga.branch_mapping_auto_condition_msgVisos likusios sąlygos bus atvaizduotos numatytojoje šakoje.branch_mapping_dlg_match_dgd_lblAtvaizdavimaibranch_mapping_dlg_condition_col_valueSritis nuo {0} iki {1}branch_mapping_dlg_condition_col_value_exactTiksli {0} reikšmėpi_mapping_btn_lblNustatyti atvaizdavimuspi_define_monitor_cb_lblApibrėžti ekranegroupmatch_dlg_title_lblAtvaizduoti grupes šakosebranch_mapping_no_groups_msgNepasirinktos jokios grupės.group_branch_act_lblGrupinisbranch_mapping_dlg_branches_lst_lblŠakosgroupmatch_dlg_groups_lst_lblGrupėsgroupnaming_dlg_title_lblGrupinis pervadinimaspi_activity_type_branchingŠakojimosi veiklapi_branch_typeŠakojimosi tipaspi_group_naming_btn_lblPavadinti grupessequence_act_titleSekatool_branch_act_lblMokinio atsiliepimaschosen_branch_act_lblMokytojo pasirinkimasto_condition_start_valuepradinė reikšmėto_condition_end_valuegalutinė reikšmėto_condition_invalid_value_range{0} negali būti galiojančios sąlygos ribose.to_condition_invalid_value_direction{0} negali būti didesnis už {1}.is_remove_warning_msgPerspėjimas: ketinate ištrinti pamoką. Ar norite ją išsaugoti kaip {0}?cv_invalid_trans_target_to_activityPerėjimas į {0} jau egzistuojabranch_btnŠakaflow_btnSrautasmnu_file_importImportuoticv_design_export_unsavedJūs negalite eksportuoti neįrašyto projekto.cv_design_unsavedProjektas buvo pakeistas. Tęsti neįrašius?mnu_file_exportEksportuotiws_chk_overwrite_existingŠis aplankas jau turi savyje failą, pavadintą {0}ws_click_virtual_folderNegalite panaudoti šio aplanko.mnu_file_exitIšeitiws_no_file_openFailas nerastas.cv_invalid_trans_circular_sequenceJums uždara seka neleidžiamabin_tooltipNumeskite veiklą į šiukšlių dėžę, kad pašalintumėte iš veiklos sekos.new_btn_tooltipIšvalo dabartinę seką ir vėl darbinę zoną parengia naudojimuiopen_btn_tooltipRodyti failo dialogą veiklos sekos atvėrimuisave_btn_tooltipDabartinės veiklos sekos spartus įrašymascopy_btn_tooltipPasirinktos veiklos kopijavimaspaste_btn_tooltipĮdėti pasirinktos veiklos kopijątrans_btn_tooltipPanaudokite šį rašiklį, kad nupieštumėte perėjimą tarp veiksmų (arba spauskite klavišą CTRL)optional_btn_tooltipSukurkite laisvai pasirenkamų veiklų rinkinį.gate_btn_tooltipSukurkite sustojimo punktąbranch_btn_tooltipSukurkite šakasflow_btn_tooltipSrauto kontrolės veiklų kūrimasgroup_btn_tooltipSukurkite besigrupuojančią veikląpreview_btn_tooltipPažiūrėkite, kaip Jūsų seką matys mokiniaicv_activity_dbclick_readonlyJūs negalite redaguoti projekto, jeigu jis skirtas tik skaitymui. Prašome įrašyti projekto kopiją ir pabandyti dar kartą.cv_readonly_lblTiktai skaitymuial_empty_designDeja, Jūs negalite įrašyti tuščio projektocv_autosave_err_msgĮvyko klaida bandant automatiškai įrašyti Jūsų projektą. Prašome padidinti Flash Player laikmenos nustatymus.cv_autosave_rec_msgJūs pasirinkote atnaujinti paskutinį prarastą ar neįrašytą projektą. Jūsų dabartinis projektas bus išvalytas. Tęsti?cv_autosave_rec_titleĮspėjimasmnu_file_recoverAtkurti...cv_activity_copy_invalidDeja, Jums neleidžiama kopijuoti šios dukterinės veiklos.cv_activity_cut_invalidDeja, Jums neleidžiama iškirpti šios dukterinės veiklos.al_activity_copy_invalidDeja, Jūs privalote pasirinkti veiklą prieš spustelint „kopijuoti“al_activity_openContent_invalidDeja, prieš spustelėdami meniu juostoje Atverti/Taisyti veiklos turinį, turite pasirinkti veiklą.ws_del_confirm_msgAr Jūs įsitikinęs, kad norite pašalinti šį failą ar aplanką?ws_file_name_emptyDeja, Jums neleidžia išsaugoti projekto be failo vardo.ccm_open_activitycontentAtsiverti/Redaguoti veiklos turinįws_entre_file_namePrašome įvesti projekto pavadinimą ir tada spustelėti mygtuką „Įrašyti“.cv_activity_helpURL_undefinedNegali surasti pagalbos puslapio, skirto {0}cv_untitled_lblBe pavadinimo - 1mnu_help_helpKūrimo pagalbaccm_copy_activityKopijuoti veikląpi_max_actMaks. {0}ccm_paste_activityĮdėti veikląact_tool_titleVeiklų priemonių rinkinysal_alertĮspėjimasal_cancelNutrauktial_confirmPatvirtintial_okGeraiapp_chk_langloadNeįkelti kalbos duomenysapp_chk_themeloadNeįkelti temos duomenysapp_fail_continuePrograma negali būti toliau vykdoma. Prašom susisiekti su priežiūros tarnybachosen_grp_lblPasirinkite ekranecopy_btnKopijuoticv_invalid_design_savedJūsų projektas dar nepatvirtintas, bet įrašytas; spragtelėkite "Galimos problemos", kad pamatytumėte tai, kas neteisinga.cv_invalid_trans_targetJūs negalite sukurti perėjimo į šį objektącv_show_validationSvarstytinos problemoscv_valid_design_savedSveikinimai! - Jūsų projektas patvirtintas ir įrašytasdb_datasend_confirmDėkojame už duomenų siuntimą į serverįdelete_btnŠalintigate_btnLoginis elementasgroup_btnGrupėgrouping_act_titleGrupavimasld_val_activity_columnVeiklald_val_doneAtliktald_val_issue_columnSvarstytina problemald_val_titlePatvirtinimo problemoslicense_not_selectedŠiuo metu nepasirinkta jokia licencija - prašome pasirinkti vienąmnu_editTaisytimnu_edit_copyKopijuotimnu_edit_cutIškirptimnu_edit_pasteĮdėtimnu_edit_redoGrąžintimnu_edit_undoAtšauktimnu_fileFailasmnu_file_closeUžvertimnu_file_newNaujasmnu_file_openAtvertimnu_file_saveĮrašytimnu_file_saveasĮrašyti kaip...mnu_helpPagalbamnu_help_abtApie LAMSmnu_toolsPriemonėsmnu_tools_optPridėti papildomas parinktismnu_tools_prefsParinktysmnu_tools_transPridėti perėjimąnew_btnNaujasnew_confirm_msgAr Jūs esate įsitikinęs, kad norite išvalyti savo projektą, esantį ekrane?none_act_lblJoksopen_btnAtvertioptional_btnPasirinktinispaste_btnĮklijuotiperm_act_lblTeisėspi_activity_type_gateLoginio elemento veiklapi_activity_type_groupingGrupinė veiklapi_definelaterApibrėžkite ekranepi_end_offsetUžverti loginį elementapi_group_typeGrupavimo tipaspi_hoursValandosccm_piSavybių inspektorius...ccm_author_activityhelpAutoriaus veiklos pagalbaws_dlg_descriptionApibūdinimastrans_dlg_nogateTusčiapi_daysDienoscv_close_return_to_ext_srcUždaryti ir grįžti į {0}cv_eof_changes_appliedPakeitimai sėkmingai pritaikytipi_lbl_currentgroupEsamas grupavimasmnu_file_apply_changesPritaikyti pakeitimuspi_lbl_descAprašaspi_lbl_groupGrupavimaspi_lbl_titleAntraštėpi_min_actMin. {0}validation_error_transitionNoActivityBeforeOrAfterPerėjimas turi turėti veiklą prieš arba po perėjimopi_minsMinutėspi_no_groupingJokspi_num_learnersMokinių skaičiuspi_optional_titlePasirinktinė veiklapi_runofflineAutonominė veiklapi_start_offsetAtverti loginį elementąpi_titleSavybėsprefix_copyofKopija nuoprefs_dlg_cancelNutrauktiprefs_dlg_lng_lblKalbaprefs_dlg_okGeraiprefs_dlg_theme_lblTemaprefs_dlg_titleParinktyspreview_btnPeržiūraproperty_inspector_titleSavybėsrandom_grp_lblAtsitiktinisrename_btnPervadintisave_btnĮrašytisched_act_lblTvarkaraštissynch_act_lblSinchronizuotitk_titleVeiklų priemonių rinkinystrans_btnPerėjimastrans_dlg_cancelNutrauktitrans_dlg_gateSinchronizacijatrans_dlg_gatetypecmbTipastrans_dlg_okGeraitrans_dlg_titlePerėjimasws_RootŠakninis aplankasws_chk_overwrite_resourceĮspėjimas: Jūs ketinate perrašyti šią seką!ws_click_folder_filePrašome pasirinkti aplanką įrašymui arba projektą jo perrašymuiws_copy_same_folderIšeities ir paskirties aplankai yra tie patysws_dlg_cancel_buttonNutrauktiws_dlg_filenameFailo pavadinimasws_dlg_location_buttonVietaws_dlg_ok_buttonGeraiws_dlg_open_btnAtvertiws_dlg_properties_buttonSavybėsws_dlg_save_btnĮrašytiws_dlg_titleDarbinė zonaws_newfolder_cancelNutrauktiws_newfolder_insPrašom įrašyti naują aplanko pavadinimąws_newfolder_okGeraiws_no_permissionDeja, jūs neturite leidimo rašyti į šiuos ištekliusws_rename_insPrašom įrašyti naują vardąws_tree_mywspMano darbinė zonaws_tree_orgsMano grupėsws_view_license_buttonPeržiūrėtiact_lock_chkPrieš priskiriant šią užduotį prie laisvai pasirenkamų, prašome atrakinti laisvai pasirenkamos veiklos konteinerį. sys_error_msg_startSistemos klaida:sys_error_msg_finishNorint tęsti, gali prireikti iš naujo paleisti LAMS Author. Ar norite įrašyti informaciją apie šią klaidą, kad vėliau galėtumėte ją ištaisyti? sys_errorSistemos klaidapi_num_groupsGrupių skaičiuspi_parallel_titleLygiagreti veiklaopt_activity_titlePasirinktinė veiklalbl_num_activities{0} - Veiklosal_sendSiųstial_cannot_move_activityDeja, Jūs negalite perkelti šios veiklos.cv_gateoptional_hit_chkJūs negalite pridėti loginio elemento veiklos kaip pasirinktinės.prefix_copyof_countKopija ({0})ws_save_folder_invalidJūs negalite išsaugoti projekto šiame aplanke. Prašom pasirinkti galiojantį poaplankį.ws_click_file_openPrašom paspausti „Projektas“ norėdami jį atverti.ws_license_lblLicencijaws_license_comment_lblPapildoma licencijos informacijacv_invalid_optional_activityPrieš nustatydami šią veiklą kaip pasirinktinę, turite pašalinti visus perėjimus iš {0} į ją ir iš jos į {0}.cv_trans_target_act_missingTrūksta antros perėjimo veiklos.cv_invalid_trans_target_from_activityPerėjimas nuo {0} jau egzistuojavalidation_error_activityWithNoTransitionVeikla turi turėti įvestą ar išvestą perėjimąvalidation_error_inputTransitionType1Ši veikla neturi jokio perėjimovalidation_error_inputTransitionType2Visose veiklose yra įvesties perėjimai.validation_error_outputTransitionType1Ši veikla neturi jokio išvesties perėjimovalidation_error_outputTransitionType2Visuose veiksmuose yra išvesties perėjimai. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/mi_NZ_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3trans_dlg_titleTauwhiromnu_tools_transTā Tauwhirooptional_seq_btn_tooltipHāngaia he huinga raupapa kōwhiri.trans_btnTauwhiroabout_popup_version_lblTe Āhuaabout_popup_license_lbl<p> He kore utu tēnei papatono; ka taea te tohatoha me te whakahōu i raro i ngā tikanga o te GNU ahua2 pērā i ngā putanga o te Free Software Foundation. <br><br>{0}</p>ws_newfolder_okĀEtrans_dlg_okĀEws_dlg_ok_buttonĀEws_dlg_location_buttonWāhiws_RootWhaiaronga Iomatuaws_license_comment_lblTāpiri Parongo Raihanaal_cancelWhakakoreprefs_dlg_cancelWhakakoretrans_dlg_cancelWhakakorews_dlg_cancel_buttonWhakakorews_newfolder_cancelWhakakorecancel_btnWhakakorenew_btnHōumnu_file_newHōupreview_btnĀrokitesave_btnTiakicv_design_insert_warningKa kōkuhu raupapa ako anō, kāore e taea te whakakore i tēnei mahi - ka tiaki aunoa tō raupapa ako tawhito ki te raupapa ako hōu. Kia taea te hoki whakamuri ki tōu raupapa ako tawhito, whakakorea katoatia ā ringa ngā ngohe o te raupapa ako hōu, katahi ka tiaki. Kia waihō tūturutia tō raupapa ako pāwhiria Whakakore. Pāwhirihia te whakaae rānei kia tīpako raupapa ako hei kōkuhu.sys_error_msg_startKua puta tēnei hapa pūnaha:opt_activity_titleNgohe Kōwhiringa ws_license_lblRaihanamnu_help_helpĀwhina ccm_author_activityhelpĀwhina Kaituhi pi_num_groupsTapeke rōpū ccm_copy_activityTāruatia te Ngoheccm_paste_activityTāpia te Ngohemnu_file_exitPutangamnu_file_exportKawe Atumnu_file_importKawe Maiws_dlg_descriptionWhakamāramatrans_dlg_nogateKorecv_readonly_lblPānui Anakecv_autosave_rec_titleWhakatūpatoto_conditions_dlg_condition_items_value_col_lbltikangaws_dlg_save_btnTiakicv_invalid_optional_seq_activity_no_branchesTangohia ngā pekanga katoa i honoa {0} i mua i tāpiri ki te raupapa ako kōwhiri.cv_invalid_design_on_apply_changesKāore e taea te hōatu rerekētanga. Kei te ngaro ētehi tauwhiro.apply_changes_btnHōatu Rerekētangaopt_activity_seq_titleRaupapa Ako Kōwhiriapply_changes_btn_tooltipHōatu rerekētanga ki te hoahoatanga me hoki ki te aroturuki. al_okĀEprefs_dlg_okĀEbranch_mapping_no_condition_msgKāore he Tikanga i kōwhirihiamnu_edit_undoWhakakoreatk_titleHe Puna Whakamahitrans_dlg_gateTukutahitangatrans_dlg_gatetypecmbMomows_copy_same_folderHe wāhi ōrite te kōpaki pūtake me te kōpaki ūngaws_dlg_filenameIngoaws_dlg_open_btnHuakinaws_dlg_properties_buttonĀhuatangaws_dlg_titlePapamahiws_newfolder_insWhakaingoatia te kōpaki hōuws_rename_insWhakaurua koa te ingoa hōuws_tree_mywspTāku Papamahiws_tree_orgsNgā Whakahaerews_view_license_buttonTirosys_error_msg_finishTērā pea me tīmata anō koe i te Pūnaha Akoranga ā Hiko. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?app_chk_langloadKāhore anō kia utaina ngā raraunga reoapp_chk_themeloadKāhore anō kia utaina ngā raraunga kaupapaapp_fail_continueKāhore te Taupānga e taea te haere tonu. Whakapā atu ki te Kaiwhakahaerecopy_btnTāruatiacv_invalid_design_savedKua tiakina ngā mahi, ēngari kāhore anō tō wāhanga ako kia whai mana. Pāwhiria ngā ‘Take’ kia kite atu i ngā raru.cv_invalid_trans_targetKāhore e taea te tauwhiro ki tēnei akorangacv_show_validationTakecv_valid_design_savedNgā mihi ki a koe! Kua tiakina, kua whai mana to wāhanga akodb_datasend_confirmNgā mihi mō te tuku raraunga ki te tūmau delete_btnWhakakoregate_btnTomokangagroup_btnWhakarōpūgrouping_act_titleWhakarōpūld_val_activity_columnNgoheld_val_doneKua oti paild_val_issue_columnTakeld_val_titleNgā take whai manalicense_not_selectedKōwhiritia tētehi raihana mō tēnei wāhanga akomnu_editWhakatikatikamnu_edit_copyTāruatiamnu_edit_cutWhakakoreamnu_edit_pasteTāpiamnu_edit_redoMahia anō mnu_fileKōnaemnu_file_closeKatiamnu_file_openHuakinamnu_file_saveTiakimnu_file_saveasTiaki hei ..mnu_helpĀwhinamnu_help_abtWhakamārama a LAMSmnu_toolsNgā Taputapumnu_tools_optTā Whiringamnu_tools_prefsManakohanganone_act_lblKoreopen_btnHuakinaoptional_btnWhiringapaste_btnTāpiaperm_act_lblWhakaaetangapi_activity_type_gateNgohe Tomokangapi_activity_type_groupingNgohe Whakarōpūpi_hoursHāorapi_lbl_currentgroupWhakarōpū o naianeipi_lbl_titleIngoapi_lbl_groupWhakarōpūpi_max_actNgohe mutunga rawapi_min_actNgohe iti rawa pi_minsMinitipi_no_groupingKorepi_num_learnersĀkonga taupi_optional_titleNgohe Whiriwhiripi_titleĀhuatangaprefix_copyofHe tāruatanga oprefs_dlg_lng_lblReoprefs_dlg_theme_lblKaupapaprefs_dlg_titleManakohangaproperty_inspector_titleĀhuatangarandom_grp_lblMatapōkererename_btnWhakaingoatia anōsched_act_lblWhakaritengasynch_act_lblTukutahisys_errorHapa Pūnaha al_sendTukunalbl_num_activitiesNgoheact_tool_titleHe Puna Whakamahial_alertKia Matohial_confirmWhakatūturutiaws_dlg_date_modified_lblkētanga mutunga: {0}chosen_grp_lblKōwhiritia ki Aroturukito_conditions_dlg_defin_long_typeāhuatanga whanuito_conditions_dlg_defin_bool_typetika/hēto_conditions_dlg_defin_item_header_lbl[ Kōwhiri Huaputa ]to_conditions_dlg_condition_items_name_col_lblIngoato_conditions_dlg_options_item_header_lbl[ Kōwhiringa ]close_mc_tooltipWhakamōkitosupport_msg_no_connectionKāore e taea te tūhono ngohe ki ērā atu o ngā ngohe.support_msg_invalid_childKāore e taea te tāpiri ngohe āwhina {0} ki ēnei momo ngohesupport_msg_max_children_reachedKāore e taea te waihō: {0} ki kōnei. Ko te {1} te mōrahi e whakaae te ngohe āwhina mō ngā ngohe tamaiti.support_msg_cannot_be_childKāore e taea te waihō tētehi ngohe āwhina i roto i tētehi atu ngohe.to_conditions_dlg_gte_lblNui rawa ōrite rāneigradebook_output_typeHuanga Pukaaromatawaiview_students_before_selectionTirohia ngā ākonga i mua i te kōwhiringa?arrange_act_btnRaupapa Ngohesupport_act_btnĀwhinasupport_act_btn_tooltipHangaia he huinga o ngā ngohe āwhina.support_act_titleNgohe Āwhinapi_daysNgā Rāws_del_confirm_msgMe āta whai koe te whakakore tēnei kōnae/ kōpae?ws_no_file_openKāore i rapu kōnaepi_parallel_titleNgohe Whakararaprefix_copyof_countTāruarua o ({0})cv_untitled_lblIngoa Kore- 1mnu_file_recoverWhakaora...new_confirm_msgMe āta whai koe te whakakore i tō hoahoa i te mata?ws_chk_overwrite_resourceKia mataara: ka tata koe te tuhirua i tēnei whakaraupapa ako!ws_click_folder_filePāwhiria tētehi Kōpaki hei tiaki, tētehi Hoahoa rānei hei tuhiruaal_cannot_move_activityAroha, kāore e taea te nuku tēnei ngohe.ws_click_file_openPāwhirihia tētehi hoahoa ki te tuwhera.cv_invalid_optional_activityTangohia ngā tauwhiro mai i {0} i mua i te tautuhi hei ngohe kōwhiri.cv_trans_target_act_missingKei te ngaro te ngohe tuarua o te Tauwhirocv_activity_copy_invalidAroha, kāore e taea te tāruarua tēnei ngohe tamaiti.cv_activity_cut_invalidAroha, kāore e taea te tapahi tēnei ngohe tamaiti.cv_invalid_trans_target_to_activityKei te tīari kē tētahi tauwhiro ki {0}cv_design_unsavedKua whakarerekētia te hoahoa i te atamira. Haere tonu me te kore tiaki?new_btn_tooltipWhakakorea tēnei akoranga me te tautuhi anō i te papamahi. open_btn_tooltipWhakaaturia ngā Kōrero ā-Kōnae ki te tuwhera Raupapa Ako.save_btn_tooltipTiaki teretia tēnei Raupapa Akocopy_btn_tooltipTāruatia te ngohe i kōwhirihiapaste_btn_tooltipTāpia atu te ngohe i kōwhirihiaoptional_btn_tooltipHanga huinga ngohe kōwhiri.gate_btn_tooltipHanga wāhi taubranch_btn_tooltipHanga pekanga (ka taea ki LAMS v2.1)flow_btn_tooltipHanga ngohe mana ripogroup_btn_tooltipHanga ngohe Whakarōpūpreview_btn_tooltipTiro wawetia tō Raupapa Ako mā te āhua e kitea ai e ngā ākongaal_activity_copy_invalidAroha! Tīpakohia te ngohe i mua i te pāwhiri tārua.ccm_piĀhuatanga Tautuhingaws_chk_overwrite_existingHe kōnae kē kei tēnei kōpaki e kīia nei ko {0}branch_btnPekangaflow_btnRipows_click_virtual_folderKāore e taea te whakamahi tēnei kōpakicv_invalid_trans_circular_sequenceKāore e whakaaetia kia huri haere te raupapa.bin_tooltipWhakatakahia he ngohe ki tēnei ipu ki te tangohia mai i te raupapa ako.cv_gateoptional_hit_chkKāore e taea te tāpiri ngohe tomokanga hei tūnga ngohe kōwhiri.ws_save_folder_invalidKāore e taea te tiaki ki tēnei kōpaki. Kōwhiria tetehi kōpaki roto whaimana.cv_invalid_trans_target_from_activityKei te tīari kē he Tauwhiro mai i {0} ws_entre_file_nameTuhia te ingoa hoahoa, ka pāwhiri ai i te pātene Tiaki.cv_activity_helpURL_undefinedKāore e taea te rapu wharangi āwhina mō {0}cv_activity_dbclick_readonlyKāore e taea te whakatika taputapu o te hoahoa pānui-anake. Tiakina he tāruatanga o te hoahoa, ka whakamātau anō ai.ws_file_name_emptyAroha! Kāore e taea te tiaki hoahoa kāore anō kia tapaina.al_empty_designAroha! Kāore e taea te tiaki he hoahoa wātea.cv_autosave_err_msgKua puta he hapa i te wa tiaki-aunoa. Ka haere tonutia te hapa, whakapā atu ki te Kaiwhakahaere Pūnaha.cv_close_return_to_ext_srcKatia hoki anō ki {0}condmatch_dlg_title_lblWhakaōrite Tikanga ki ngā Pekangabranch_mapping_dlg_condition_col_lblTikangacv_eof_changes_appliedKua hōatu tika ngā whakarerekētanga.mnu_file_apply_changesHōatu Rerekētangavalidation_error_transitionNoActivityBeforeOrAfterMe noho tētehi ngohe ki mua ki muri rānei i te tauwhiro.validation_error_activityWithNoTransitionMe noho tētehi tauwhiro tāuru tāputa rānei ki te ngohe.validation_error_inputTransitionType1Kāhore te ngohe tētehi tauwhiro tāuru.validation_error_inputTransitionType2Kāore ngā ngohe i te ngaro i ngā tauwhiro tāuru.validation_error_outputTransitionType1Kāhore i tēnei ngohe tētehi tauwhiro tāputa.validation_error_outputTransitionType2Kāore ngā ngohe i te ngaro i ngā tauwhiro tāuru.cv_activity_readOnlyKāore e taea tēnei ngohe {0}.He pānui anakē tēnei Ngohecv_edit_on_fly_lblWhakatikaina Ngohecv_element_readOnly_action_delKua tangohiacv_element_readOnly_action_modWhakahōutangacv_eof_finish_invalid_msgMe whai mana te hoahoatanga kia whakaoti te whakatikatika.cv_eof_finish_modified_msgWhakatūpato: Kua whakarerekētia te hoahoa. Ka puta me te kore tiaki?cv_trans_readOnlyKāore e taea te tauwhiro {0}. He pānui anakē te tauwhiro.cancel_btn_tooltipHoki ki te aroturuki.mnu_file_finishKua Otiabout_popup_title_lblWhakamārama - {0}about_popup_trademark_lblHe moko o {0} Rōpū ( {0} ).stream_reference_lblPūnaha Akoranga ā Hikogpl_license_urlwww.gnu.org/rēhita/gpl.txtstream_urlhttp://{0}rōpū.orgbranching_act_titlePekangato_conditions_dlg_lte_lblIti rawa ōrite rāneipi_end_offsetKatiapi_start_offsetHuakinapi_definelaterTautuhia ā Muri Atupi_group_typeĀhuatanga ā rōpūpi_lbl_descĀhuatangaal_doneKua Mututo_conditions_dlg_add_btn_lbl+ Tāpirito_conditions_dlg_from_lblNā:to_conditions_dlg_to_lblKi:branch_mapping_dlg_branch_col_lblPekangabranch_mapping_dlg_group_col_lblRōpūpi_define_monitor_cb_lblTāutuhia ki Aroturukibranch_mapping_no_groups_msgKāore he Rōpū i kōwhirihia branch_mapping_dlg_branches_lst_lblPekangagroupmatch_dlg_groups_lst_lblRōpūgroupnaming_dlg_title_lblIngoa Rōpūpi_activity_type_branchingNgohe Pekangapi_branch_typeMomo Pekangapi_group_naming_btn_lblIngoa Rōpūsequence_act_titleRaupapatangato_conditions_dlg_remove_item_btn_lbl- Tangohiabranch_mapping_dlg_condition_linked_singleKo te tikanga koto_condition_untitled_item_lblIngoa Kore {0}redundant_branch_mappings_msgHe mahere pekanga wātea tō te hoahoa kei te tangohia. Ka haere tonu?cv_activityProtected_activity_remove_msgKi te tangohia whakawāteatia tēnei ngohe i te {0} cv_activityProtected_activity_link_msgKua hono tēnei {0} ki {1}cv_activityProtected_child_activity_link_msgHe honoa tamaiti tēnei {0} ki {1}pi_activity_type_sequenceNgohe Whakaraupapa (Pekanga)groupnaming_dialog_instructions_lblPāwhiria te ingoa ki te whakarerekē i te uarapi_branch_tool_acts_lblTāuru (Utauta)branch_mapping_no_branch_msgKāore te Pekanga i kōwhirihia.pi_defaultBranch_cb_lbltaunoato_conditions_dlg_clear_all_btn_lblWhakakore Katoato_conditions_dlg_range_lblWhakarite Inenga Whānui:chosen_branch_act_lblKōwhiringa Kaiakobranch_mapping_no_mapping_msgKāore he Whakamahere i kōwhirihiabranch_mapping_auto_condition_msgKa whakamaheretia ngā toenga Tikanga katoa ki te Pekanga taunoa.branch_mapping_dlg_match_dgd_lblMaheretangabranch_mapping_dlg_condition_col_valueInenga Whānui {0} ki {1}branch_mapping_dlg_condition_col_value_exactUara pū o {0}pi_mapping_btn_lblWhakarite Maheretangagroupmatch_dlg_title_lblWhakamahere Rōpū ki ngā Pekangagroup_branch_act_lblWhai Rōpūto_condition_start_valueuara timatangato_condition_end_valueuara mutungato_condition_invalid_value_rangeKāore e taea te {0} te noho ki waenga i tēnei tikanga.to_condition_invalid_value_directionKāore e taea e {0} te noho nui rawa i te {1}.is_remove_warning_msgKIA MATAARA: Kei te tango i tēnei akoranga. Ka hia koe te pūpuri i te akoranga hei akoranga {0}?al_continueHaere tonubranch_mapping_dlg_condition_linked_msgKua herenga {0} ki tētehi pekanga kē. Ka haere tonu?branch_mapping_dlg_condition_linked_allHe tikanga ōnato_conditions_dlg_title_lblWhakarite Tikanga Huaputapi_condmatch_btn_lblWhakarite Tikangatrans_btn_tooltipWhakamahia tēnei pene ki te tā tauwhiro ngohe (pēhia CTRL rānei)pi_tool_output_matching_btn_lblHono Tikanga ki Pekangacv_invalid_optional_seq_activityTangohia ngā takatau katoa {0} i mua i te whakarite hei raupapa ako kōwhiri.to_conditions_dlg_condition_items_update_defaultConditionsKei te whakahōutia e koe ngā tikanga mō ngā tāutunga huaputa. Ka whakawātea tēnei i ngā hononga ki ngā pekanga e tū nei. Ka haere tonutia?branch_mapping_dlg_condition_col_value_maxNui rawa i te {0}optional_act_btnNgoheoptional_seq_btnRaupapacv_invalid_optional_activity_no_branchesTangohia ngā pekanga i honoa {0} i mua i te whakarite ngohe kōwhiri.al_cannot_move_to_diff_opt_seqKi te nuku ngohe ki tētehi raupapa ako kē i roto i ngā Raupapa Kōwhiringa, kumea te ngohe ki waho i te wāhi Raupapa Kōwhiringa, pāwhirihia kumea hoki ki tōna wāhi hōu i roto i te Raupapa Kōwhiringa. to_conditions_dlg_lt_lblIti rawa ōrite rāneibranch_mapping_dlg_condition_col_value_minIti rawa ōrite rānei {0}pi_actNgohepi_seqRaupapa Akobranch_mapping_dlg_condtion_items_update_defaultConditions_zeroKāore e taea te whakahōutia nā te kore o ngā tikanga tāutu kaimahi. Whakaritea ēnei i te wharangi kaituhi o te taputapu.condmatch_dlg_cond_lst_lblTikangapi_optSequence_remove_msg_titleKei te Tango raupapa akopi_optSequence_remove_msgKei te tangohia te/ngā raupapa ako tērā pea he ngohe o roto. Ne, ka tangohia ēnei raupapa ako?pi_no_seq_actTau Raupapa Akolbl_num_sequences{0} - Raupapa AkoactivityDrop_optSequence_error_msgWaihōtia te ngohe ki tētehi o ngā raupapa ako.pi_runofflineWhakahaere Tuimotuto_conditions_dlg_defin_item_fn_lbl{0} ({1})sequence_act_title_new{0} {1}about_popup_copyright_lbl© 2002-2009 {0} Rōpū.groupnaming_dialog_col_groupName_lblIngoa Rōpūmnu_file_insertdesignKōkuhu/Hanumi...ws_dlg_insert_btnKōkuhubranch_mapping_dlg_branch_item_default{0} (taunoa)pi_group_matching_btn_lblHono Rōpū ki Pekangarefresh_btnTāmatahiato_conditions_dlg_defin_user_defined_typetāutu kaimahial_activity_paste_invalidKāore e taea te whakapiri tēnei āhuatanga ngohegrouping_invalid_with_common_names_msgKāore e taea te tiaki tēnei hoahoatanga ngohe '{0}' nā te tapaina rōpū ōrite. Arotakengia ngā rōpū anō mahi anō.preview_btn_tooltip_disabledKia taea te arokite raupapa, tiakina i te tuatahi, katahi ka pāwhiria te Arokite condmatch_dlg_message_lblKa taea te tīpako pekanga taunoa i te pāwhiria i te takina "taunoa" i ngā wāhi Āhuatanga o te pekanga.tool_branch_act_lblHuaputa Ākongaws_no_permissionAroha mai, kāhore i a koe te whai mana ki te tuhi ki tēnei rauemicv_invalid_trans_diff_branchesKāhore e taea te hanga tauwhiro ki waenga ngohe i ngā pekanga rerekē.pi_branch_tool_acts_default--Kōwhirihia--cv_invalid_branch_target_to_activityKua whakarite pekanga kē ki {0}.cv_invalid_branch_target_from_activityKua whakarite pekanga mai kē nō {0}.cv_invalid_trans_closed_sequenceKāhore e taea te tāpiri tauwhiro hōu ki te ngohe i mutu atu.al_group_name_invalid_blankKāore e taea ngā ingoa rōpū te noho piako.al_group_name_invalid_existingMe noho ahurei ngā ingoa rōpū.competence_editor_add_competence_btnTāpirigate_openhuakigate_closedkua katiata_iconDrop_optseq_error_msgKāore i ētahi paepae raupapa ako e whakaāheitiaact_seq_lock_chkHuakina koa ngā Raupapa Ako Kōwhiri i mua i te honoa ngohe ki te raupapa ako kōwhiri.act_lock_chkHuakina koa te paepae Ngohe Kōwhiringa i mua i te tautapa i te ngohe nei hei kōwhiringa.cv_design_export_unsavedKāore e taea te Tuku hoahoa kāore anō kia tiakina.cv_autosave_rec_msgKa tata koe te whakaora anō i tērā hoahoa ngaro, hoahoa kāore i tiakina rānei. Mā te whakaora ka whakawāteatia tō hoahoa o nāianei. Haere tonu?ccm_open_activitycontentTūwhera/Whakatika Ihirangi Ngoheal_activity_openContent_invalidAroha! Tīpakohia te ngohe i mua i te pāwhiri ki te tūemi tahua Tuwhera/Whakatika Ihirangi Ngohe ki te tahua ngohe pāwhiri matau.learner_choice_grp_lblKōwhiringa Ākongapi_equal_group_sizesRōpū Tokomaha Ōritecompetence_editor_dlgKaiwhakatika Matataucompetences_lblMatataucompetence_def_dlgKōrero Tāutu Matataucompetence_editor_warning_title_existsKua whakamahia kētia he matatau me te taitara {0} competence_editor_warning_title_blankKāore e taea te taitara matatau te noho piako.competence_editor_warning_competence_mappedKua whakamahere kētia te matatau e whakamātau ana koe ki te muku ki tētahi, ētahi ngohe rānei. Ko te muku i tēnei matatau ka muku i ana whakamaherenga katoa. Me haere tonu?map_comptence_btnWhakamaheretia ki te Matataucompetence_mappings_btnMaheretanga Matataucompetences_mapped_to_act_lblMatataumap_gate_conditions_btnTikanga Tomokanga Maheregate_mapping_auto_condition_msgKa whakamaheretia ngā tikanga e toe ana ki te tomokanga kati i kōwhirihia.al_activity_view_competence_mappings_invalidMe āta kōwhiri koe i tētehi ngohe i mua i te tiro ki ōna whakamaheretanga matatau.ws_save_title_reserved_charsKāore e taea te taitara te whai pūāhua motuhake: {0}mnu_file_import_communityKawe mai i te Hapori a LAMS \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/ms_MY_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3mnu_file_exitKeluarFile Menu Exitws_no_file_openTiada fail dijumpaiAlert message if no matching file is found to open in selected folder of Workspace.gate_btn_tooltipCipta poin berhentitool tip message for gate button in toolbarcv_readonly_lblLihat SahajaLabel for top left of canvas shown when a read-only design is open.cv_autosave_rec_titleAmaranAlert title for auto save recovery message.trans_dlg_nogateTiadaDrop down default for gate typepi_daysHariDays label in property inspector for gate toolstream_reference_lblLAMSReference label for the application stream.cancel_btnBatalToolbar - Cancel Buttonmnu_file_finishTamatMenu bar File - Finish (Edit Mode)about_popup_title_lblMengenai - {0}Title for the About Pop-up window.about_popup_version_lblVersiLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} adalah hak cipta {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.al_doneSelesaiLabel for dialog completion button.condmatch_dlg_cond_lst_lblKondisiLabel for primary list heading on Condition to Branch Matching dialog.to_conditions_dlg_add_btn_lbl+ TambahLabel for button to add a condition.branch_mapping_dlg_condition_col_lblKondisiColumn heading for showing condition description of the mapping.cv_design_export_unsavedAnda tidak boleh Eksport design yang tidak disimpanAlert message when trying to export can unsaved design.al_activity_openContent_invalidMaaf! Anda perlu memilih aktiviti sebelum klik menu Buka/Sunting Isi Aktiviti di menu klik kanan aktivitialert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasal_okOKOK on the alert dialogws_dlg_open_btnBukaWsp Dia Open Button labelapp_chk_langloadData bahasa tidak berjaya diloadmessage for unsuccessful language loadingal_cancelBatalTo Confirm title for LFErrorapp_chk_themeloadData tema tidak berjaya diloadmessage for unsuccessful theme loadingcopy_btnSalinToolbar &gt; Copy Buttoncv_show_validationIsuThe button on the confirm dialogdb_datasend_confirmTerima kasih kerana menghantar data ke serverMessage when user sucessfully dumps data to the serverdelete_btnPadamLabel for Delete buttongate_btnGateToolbar &gt; Gate Buttongroup_btnKumpulanToolbar &gt; Group Buttonld_val_activity_columnAktivitiThe heading on the activity in the ValidationIssuesDialogld_val_doneSelesaiThe button label for the dialogld_val_issue_columnIsuThe heading on the issue in the ValidationIssuesDialogmnu_editEditMenu bar Editmnu_edit_copySalinMenu bar Edit &gt; Copymnu_edit_pasteTampalMenu bar Edit &gt; Pastemnu_fileFailMenu bar Filemnu_file_closeTutupMenu bar Closemnu_file_newBaruMenu bar Newmnu_file_openBukaMenu bar Openmnu_file_saveSimpanMenu bar savemnu_file_saveasSimpan sebagai...Menu bar Save asmnu_helpTolongMenu bar Helpmnu_help_abtMengenai LAMSMenu bar Aboutmnu_toolsAlatanMenu bar Toolsnew_btnBaruToolbar &gt; New Buttonnone_act_lblTiadaNo gate activity selectedopen_btnBukaToolbar &gt; Open Buttonpaste_btnTampalToolbar &gt; Paste Buttonpi_end_offsetTutup gateEnd offset labelpi_hoursJamHours label in Property Inspectorpi_lbl_descDiskripsiDescription Label for PIpi_lbl_titleTajukTitle label for PIpi_minsMinitMins label in teh property inspectorpi_no_groupingTiadaCombo title for no groupingprefs_dlg_cancelBatal6prefs_dlg_lng_lblBahasa7prefs_dlg_okOK5prefs_dlg_theme_lblTema8random_grp_lblRawakLabel for the grouping drop down in the PropertyInspectorsave_btnSimpanToolbar &gt; Save buttontrans_dlg_cancelBatalCancel button on transition dialogtrans_dlg_gatetypecmbJenisGate type combo labeltrans_dlg_okOKOK Button on transition dialogws_RootRootRoot folder title for workspacews_dlg_cancel_buttonBatal2ws_dlg_filenameNama FailLabel for File name in workspace windowws_dlg_location_buttonLokasiWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelal_alertAwasGeneric title for Alert windowal_confirmTerimaTo Confirm title for LFErrorchosen_grp_lblPilihanLabel for the grouping drop down in the PropertyInspectorlicense_not_selectedTiada lesen dipilih - Sila pilihShown if no license is selected in the drop down in workspacemnu_edit_cutPotongMenu bar Edit &gt; Cutoptional_btnPilihanToolbar &gt; Optional Buttonperm_act_lblIzinLabel for permission gate activitypi_activity_type_gateAktiviti GetActivity type for gate in PIsys_error_msg_finishAnda mungkin perlu memulakan semula Pengarang LAMS untuk sambung. Adakah anda mahu menyimpan informasi mengenai ralat ini untuk membantu mengatasi masalah ini?Common System error message finish paragraphcv_invalid_optional_activityBuang ke dan dari peralihan dari {0} sebelum seting ia sebagai aktiviti tambahan.Alert message when user try to drop an activity with to or from transition into optional containeral_activity_copy_invalidMaaf! Anda perlu memilih aktiviti sebelum klik salin.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvaspi_max_actAktiviti TerbanyakLabel for maximum Activities or Sequencespi_min_actAktiviti TerkecilLabel for minimum Activities or Sequencespreview_btnPreviuToolbar &gt; Preview Buttonsynch_act_lblPenyelarasanUsed as a label for the Synch Gate Activity Typetrans_dlg_gateMenyelaraskanHeader for the transition props dialogtrans_dlg_titlePeralihanTitle for the transition properties dialogws_chk_overwrite_resourceAmaran: anda sedang menulis semula turutanws_click_folder_fileSila klik sama ada di Folder untuk simpan, atau Design untuk menulis semulaError msg if no folder or file is selectedws_dlg_titleRuang kerja0ws_view_license_buttonViewTo show the license to the usercopy_btn_tooltipSalin aktiviti yang dipilihtool tip message for copy button in toolbarpaste_btn_tooltipTampal salinan aktiviti yang dipilihtool tip message for paste button in toolbarccm_open_activitycontentBuka/Edit Isi AktivitiLabel for Custom Context Menuccm_copy_activitySalik AktivitiLabel for Custom Context Menuccm_paste_activityTampal AktivitiLabel for Custom Context Menucv_untitled_lblTiada tajuk - 1Label for Design Title bar on canvasal_empty_designMaaf, Anda tidak boleh simpan design kosongalert message when user want to save an empty designcv_close_return_to_ext_srcTutup dan kembali ke {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedPerubahan telah berjayaChanges have been successful applied.cv_element_readOnly_action_deldibuangAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_moddiubahAction label for read only alert message for a Canvas Transition.pi_branch_tool_acts_lblInput (Alatan)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_defaultBranch_cb_lbldefaultCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_clear_all_btn_lblBersihkan semuaLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lbl- BuangLabel for button to remove condition.to_conditions_dlg_from_lblDaripada:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblKepada:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblSet JulatHeading label for section in the dialog to set numeric condition range.branch_mapping_no_mapping_msgTiada Mapping dipilihAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgTiada Kondisi dipilihAlert message when adding a Mapping without a Condition being selected.branch_mapping_dlg_match_dgd_lblMappingHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueJulat {0} hingga {1}Value for Condition field in mapping datagrid.ccm_piInspektor Property...Label for Custom Context Menuws_dlg_save_btnSimpanWsp Dia Save Button labelws_newfolder_cancelBatalCancel on the new folder name diaws_newfolder_insSila masukkan nama folder baruInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_rename_insSila masukkan nama baruMessage of the new name for the userws_tree_mywspRuangkerja SayaThe root level of the treesys_errorSistem RalatSystem Error elert window titlelbl_num_activitiesAktivitireplacement for word activitiesal_sendKirimSend button label on the system error dialogws_license_lblLesenLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformasi Lesen TambahanLabel for Licence Comment description below license drop downmnu_file_importImportMenu bar Importmnu_file_exportExportMenu bar Exportws_click_virtual_folderTidak boleh menggunakan folder iniAlert message for trying to use a virtual folder to save/open a file.prefix_copyof_countSalinan ({0}) untukPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_entre_file_nameSila masukkan nama design, dan klik butang Simpan.Error message when user try to save a design with no file namews_dlg_descriptionDiskripsiLabel for description in Workspace dialog - Properties tabcv_activity_dbclick_readonlyAnda tidah boleh mengubah alatan untuk design bacaan sahaja. Sila simpan salinan design dan cuba lagi.Alert message when double-clicking an Activity in an open read-only designws_file_name_emptyMaaf! Anda tidak dibenarkan menyimpan design tanpa nama fail.Error message when user try to save a design with no file namevalidation_error_inputTransitionType1Aktiviti ini tidak mempunyai input peralihanThis activity has no input transitionsequence_act_titleTurutanDefault title for Sequence Activity.mnu_edit_redoUlangcaraMenu bar Edit &gt; Redomnu_edit_undoNyahcaraMenu bar Edit &gt; Undomnu_tools_optLukis TambahanMenu bar Optionalpi_num_learnersNombor pelajarPI Num learners labelpi_optional_titleAktiviti TambahanTitle for oprional activity property inspectorpi_start_offsetBuka getStart offset labelrename_btnMenamakanLabel for Rename Buttonsched_act_lblJadualLabel for schedule gate activitytk_titleKit AktivitiLabel for Activities Toolkit Paneltrans_btnPeralihanToolbar &gt; Transition Buttonopt_activity_titleAktiviti TambahanTitle for Optional Activity Containeral_cannot_move_activityMaaf anda tidak boleh mengubah aktivitiAlert message when user tries to move child activity of any parallel activitymnu_help_helpTolong Karanganlabel for menu bar Help - Authoring Help optionccm_author_activityhelpTolong Karang AktivitiLabel for Custom Context Menuws_del_confirm_msgAdakah anda pasti untuk membuang fail/folder ini?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_openSila klik pada Design untuk buka.Alert message if folder tried to be opened.cv_trans_target_act_missingAktiviti kedua Peralihan hilang.Error message when target activity for transition is missingcv_activity_copy_invalidMaaf! Anda tidak dibenarkan menyalin anak aktiviti.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidMaaf! Anda tidak dibenarkan memotong anak aktiviti.Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activityPeralihan ke {0} sudah adaError message when a transition to the activity already existcv_design_unsavedDesign di kanvas telah berubah. Sambung tanpa menyimpannya?Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltipBersihkan turutan sekarang dan reset ruangkerja sedia digunakanTool tip message for new button in toolbaropen_btn_tooltipPapar Dialog Fail untuk buka Turutan AktivitiTool tip message for open button in toolbarsave_btn_tooltipSimpanan cepat Turutan Aktiviti sekarangtool tip message for save button in toolbartrans_btn_tooltipGuna pen untuk lukis turutan diantara aktiviti (atau tekan butang CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCipta set aktiviti tambahan.tool tip message for optional button in toolbarbranch_btn_tooltipCipta cabang (sedia di LAMS v2.1)tool tip message for branch button in toolbarflow_btn_tooltipCipta kontrol aliran aktivititool tip message for flow button in toolbarvalidation_error_inputTransitionType2Tiada aktiviti hilang input peralihanNo activities are missing their input transition.preview_btn_tooltipPratonton Turutan anda sebagai yang akan dilihat pelajar Tool tip message for preview button in toolbarws_chk_overwrite_existingFolder ini sudah mempunyai fail bernama {0}Alert message when saving a design with the same filename as an existing design.branch_btnCabangLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnAliranLabel for Flow button in Toolbarpi_parallel_titleAktiviti SelariTitle for parallel activity property inspectorcv_invalid_trans_circular_sequenceAnda tidak dibenarkan untuk mempunyai turutan berulangError message when a transition from one activity to another is creating a circular loopbin_tooltipJatuhkan aktiviti di tong untuk membuangnya dari turutan aktiviti.Tool tip message for canvas bincv_gateoptional_hit_chkAnda tidak boleh menampah get aktiviti sebagai aktiviti tambahan.Error message when user drags gate activity over to optional containerws_save_folder_invalidAnda tidak boleh menyimpan design di dalam folder ini. Sila pilih sub-folder yang sah.Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activityPeralihan dari {0} sudah sedia adaError message when a transition from the activity already existcv_activity_helpURL_undefinedTidak berjaya mencari halaman untu {0}Alert message when a tool activity has no help url defined.validation_error_outputTransitionType1Aktiviti ini tidak mempunyai output peralihanThis activity has no output transitionprefs_dlg_titleKeutamaan4act_tool_titleKit alatan AktivitiTitle for Activity Toolkit Panelapp_fail_continueAplikasi tidak dapat disambung. Sila hubungi message if application cannot continue due to any errorvalidation_error_outputTransitionType2Tiada aktiviti hilang output peralihanNo activities are missing their output transition.pi_activity_type_groupingPengumpulan AktivitiActivity type for grouping in Property Inspectorprefix_copyofSalinan untukPrefix for copy paste command for canvas activitiesmnu_file_apply_changesTerap PerubahanApply Changesapply_changes_btnTerap PerubahanApply Changescv_activity_readOnlyAktiviti tidak boleh jadi {0}. Aktiviti hanya untuk dibaca sahaja.Alert message when a user performs an illegal action on a read-only transition.branching_act_titleCabanganLabel for Branching Activitypi_activity_type_sequenceTurutan Aktiviti (Cabang)Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblKlik pada nama untuk mengubah nilai.Instructions for Group Naming dialog.branch_mapping_no_branch_msgTiada Cabang dipilih.Alert message when adding a Mapping without a Branch (Sequence) being selected.condmatch_dlg_title_lblKondisi Sesuai ke CabangDialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_branch_col_lblCabangColumn heading for showing sequence name of the mapping.branch_mapping_auto_condition_msgSemua Kondisi yang tinggal akan di mapkan ke Cabang asas.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_condition_col_value_exactNilai tepat untuk {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblSetup PemetaanLabel for button to open tool output to branch(s) dialog.cv_invalid_design_on_apply_changesTidak boleh menerap perubahan. Terdapat satu atau lebih peralihan yang hilang.Cannot apply changes. There are one or more transitions missing.branch_mapping_dlg_branches_lst_lblCabanganLabel for Branches list box on Branch Matching Dialogs.apply_changes_btn_tooltipTerap perubahan ke design dan kembali ke monitor belajar.tool tip message for save button in toolbarpi_activity_type_branchingMencabangkan AktivitiActivity type for Branching in Property Inspector.pi_branch_typeJenis cabanganProperty Inspector Branching type drop down.tool_branch_act_lblOutput AlatanBranching type label for Tool output Branching.group_btn_tooltipCipta aktiviti berkumpulantool tip message for group button in toolbarbranch_mapping_dlg_group_col_lblKumpulanColumn heading for showing group name of the mapping.cv_eof_finish_invalid_msgDesign mesti sah untuk menyelesaikan suntingan.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.groupmatch_dlg_groups_lst_lblKumpulanLabel for Groups list box on Group/Branch Matching Dialog.pi_lbl_groupPerkumpulanGrouping label for PIws_tree_orgsKumpulan SayaShown in the top level of the tree in the workspacebranch_mapping_no_groups_msgTiada Kumpulan dipilihAlert message when adding a Mapping without a Group being selected.pi_num_groupsNombor kumpulanNumber of groups in Property inspectorpi_group_naming_btn_lblNama KumpulanLabel for button that opens Group Naming dialog.grouping_act_titlePengumpulanDefault title for the grouping activitygroupmatch_dlg_title_lblMap Kumpulan kepada CabangMap Groups to Branchesgroupnaming_dlg_title_lblPenamaan KumpulanTitle label for Group Naming dialog.pi_group_typeJenis PengumpulanProperty Inspector Grouping type drop downgroup_branch_act_lblAsas kumpulanBranching type label for Group-based Branching.pi_lbl_currentgroupPengumpulan SekarangCurrent grouping label for PIcv_invalid_design_savedDesign anda belum lagi sah, tetapi telah disimpan, klik 'Isu' untuk melihat ralat.Message when an invalid design has been savedcv_invalid_trans_targetAnda tidak boleh mencipta peralihan kepada objek iniError message for when transition tool is dropped outside of valid target activitycv_valid_design_savedTahniah! - Design anda sah dan telah disimpanMessage when a valid design has been savedld_val_titleIssue pengesahanThe title for the dialogmnu_tools_prefsKeutamaanMenu bar preferencesmnu_tools_transLukis PeralihanMenu bar draw transitionnew_confirm_msgAdakah anda pasti untuk memadam design anda pada skrin?Msg when user clicks new while working on the existing designpi_definelaterDefine di MonitorLabel for Define later for PIpi_titlePropertiOn the title bar of the PIproperty_inspector_titlePropertiOn the title bar of the PIws_copy_same_folderSumber dan destinasi folder adalah samaThe user has tried to drag and drop to the same placews_dlg_properties_buttonPropertiWorkspace dialogue Properties btn labelws_no_permissionMaaf, anda tidak mempunyai keizinan untuk menulis pada sumber iniMessage when user does not have write permission to complete actionact_lock_chkSila buka kunci Aktiviti Tambahan sebelum menukar aktiviti sebagai pilihanAlert Message if user drags the activity to locked optional activity container sys_error_msg_startSistem ralat telah muncul:Common System error message starting linepi_runofflineRun OfflineLabel for Run Oflinecv_autosave_err_msgRalat telah muncul semasa proses simpanan automatik design anda. Jika ralat ini berterusan sila hubungi Admin SistemAlert error message when auto-save fails.cv_eof_finish_modified_msgAmaran: Design anda telah di ubah. Adakah anda mahu menutup tanpa menyimpannya?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyPeralihan tidak boleh {0}. Target Peralihan hanya boleh dibaca.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipKembali ke monitor belajar.tool tip message for cancel button in toolbar (edit mode)to_conditions_dlg_title_lblCipta Kondisi Alat OutputDialog title for creating new tool output conditions.pi_define_monitor_cb_lblDefine di MonitorCheckbox label for option to define group to branch mappings in Monitor.cv_autosave_rec_msgAnda akan memulihkan design terakhir yang hilang atau tidak disimpan. Design sekarang anda akan dibersihkan. Teruskan?Message informing users that they have recovered data for a design.mnu_file_recoverPulih...Menu bar Recovervalidation_error_transitionNoActivityBeforeOrAfterPeralihan mesti mempunyai aktiviti sebelum atau selepas peralihanA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAktiviti mesti mempunyai input atau output peralihanAn activity must have an input or output transitioncv_edit_on_fly_lblSuntingan LiveLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.about_popup_license_lblProgram ini adalah perisian percuma; anda boleh mengagihkan ia dan/atau mengubah ia dibawah terma GNU General Public Lisense versi 2 seperti yang diumumkan oleh Free Software Foundation.Label displaying the license statement in the About dialog.pi_condmatch_btn_lblSetup Penyataan Kondisi Label for button to open dialog to create output conditions.branch_mapping_dlg_condition_linked_singleKondisi ini ialahPhrase used at start of linked conditions alert message when clearing a single entry.chosen_branch_act_lblPilihan PengajarBranching type label for Teacher choice Branching.to_condition_start_valuenilai mulaValue representing the min boundary value of the conditions range.to_condition_end_valuenilai tamatValue representing the max boundary value of the conditions value.to_condition_invalid_value_range{0} tidak boleh berada diantara jarak kondisi sekarang.Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction{0} tidak boleh melebihi {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgAMARAN: Pengajaran akan dibuang. Adakah anda mahu menyimpan pegajaran sebagai {0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueSambungContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} bersambung dengan cabang sedia ada. Anda mahu teruskan?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allTerdapat kondisiPhrase used at start of linked conditions alert message when clearing all.to_condition_untitled_item_lblUntitled {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgDesign mempunyai cabang pemetaan tidak digunakan yang akan dibuang. Adakah anda mahu teruskan?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgUntuk buang sila tidak memilih pilihan aktiviti sebagai {0}.Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg{0} bersambung dengan {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg{0} mempunyai anak bersambung dengan {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxLebih dari {0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btnAktivitiToolbar button for Optional Activity.optional_seq_btnTurutanToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipCipta set pilihan turutanTooltip for Sequences within Optionaly Activity button.about_popup_copyright_lbl© 2002-2008 {0} Foundation.Label displaying copyright statement in About dialog.pi_optSequence_remove_msg Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_optSequence_remove_msg_title Removing sequencesact_seq_lock_chkSila buka bekas Turutan Tidak Wajib sebelum menetapkan aktiviti ke turutan tidak wajib.Alert Message if user drags the activity to locked optional sequences container.pi_no_seq_actNombor TurutanLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - TurutanLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgSila letakkan aktiviti ke salah satu turutan.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesBuang dahan bersambung dari {0} sebelum menambah kedalam turutan tidak wajib.Alert message when user try to drop an activity with connected branches into optional sequences container.cv_invalid_optional_activity_no_branchesTiada turutan dibenarkan lagi pada bekas ini.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.cv_invalid_optional_seq_activityBuang ke atau dari peralihan dari {0} sebelum seting ia ke turutan tidak wajibAlert message when user try to drop an activity with to or from transition into optional sequences container.ta_iconDrop_optseq_error_msgBuang dahan bersambung dari {0} sebelum seting ia sebagai aktiviti tidak wajibAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleTurutan Tidak WajibTitle for Optional Sequences Container.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_lt_lblKurang dari atau samaLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minKurang dari atau sama {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actAktivitiMin and max label postfix when an Optional Activity is selected.pi_seqTurutanMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typejulatType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typebetul/salahType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ DefinisiHeader label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNamaColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblKondisiColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Pilihan ]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipMinimizeTooltip message for close button on Branching canvas. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/nl_BE_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3to_conditions_dlg_remove_item_btn_lbl- VerwijderenLabel for button to remove condition.pi_defaultBranch_cb_lblstandaardCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_from_lblVan:Label for start value in condition range for long or numeric output values.to_conditions_dlg_defin_item_fn_lbl{0} ({1}) Function label value for tool output definition drop-down.to_conditions_dlg_defin_long_typereeksType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typewaar:onwaarType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ Definitions ] Header label value (first index) for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNaamColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblVoorwaardeColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Options ] Header label value (first index) for tool long (range) options drop-down.close_mc_tooltipMinimaliserenTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblGroter dan of gelijk aanGreater than or equal toto_conditions_dlg_lte_lblKleiner dan of gelijk aanLess than or equal togroupnaming_dialog_col_groupName_lblGroep NaamColumn label for editable datagrid in Group Naming dialog.ws_chk_overwrite_resourcePas op : U staat op het punt om een sequentie te overschrijven !ws_tree_orgsMijn groepenShown in the top level of the tree in the workspaceal_activity_copy_invalidSorry, je moet de activiteit eerst selecteren voor je op de kopiëerknop kliktAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvascv_autosave_rec_msgU staat op het punt om het verloren gegaan of niet bewaard ontwerp terug te halen. Uw huidige ontwerp zal worden gewist. Doorgaan ?Message informing users that they have recovered data for a design.cv_invalid_design_savedUw ontwerp is nog niet geldig, maar het is bewaard, klik op ' Knelpunten ' om te zien wat er verkeerd isMessage when an invalid design has been savedmnu_help_abtMeer over LAMSMenu bar Aboutpi_no_groupingGeenCombo title for no groupingact_lock_chkOntsluit de container van optionele activiteiten voor U deze activiteit als optioneel kan aanduidenAlert Message if user drags the activity to locked optional activity container condmatch_dlg_cond_lst_lblConditiesLabel for primary list heading on Condition to Branch Matching dialog.groupmatch_dlg_title_lblGroepen op vertakkingen koppelenMap Groups to Branchesto_condition_invalid_value_rangeDe {0} mag niet in het bereik van een bestaande conditie liggen.Alert message when a submitted condition interferes with another previously submitted condition.ws_no_file_openGeen bestand gevondenAlert message if no matching file is found to open in selected folder of Workspace.pi_hoursUrenHours label in Property Inspectorpi_minsMinutenMins label in teh property inspectorsave_btn_tooltipSnel bewaren van de huidige sequentietool tip message for save button in toolbarcv_invalid_trans_target_from_activityDe overgang van {0} bestaal alError message when a transition from the activity already existtrans_btn_tooltipGebruik deze pen om overgangen tussen activiteiten te tekenen (of druk op de CTRL-toets)tool tip message for transition button in toolbaropen_btn_tooltipToon de bestands-dialoog om een activiteitensequentie te openenTool tip message for open button in toolbarcv_invalid_trans_target_to_activityDe overgang naar {0} bestaat al.Error message when a transition to the activity already existal_cannot_move_activitySorry, U kan deze activiteit niet verplaatsenAlert message when user tries to move child activity of any parallel activityws_dlg_save_btnBewaarWsp Dia Save Button labelws_dlg_ok_buttonOKWsp Dia OK Button labelcv_trans_readOnlyOvergang kan niet {0} zijn. De overgang is van het type alleen-lezen.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).tk_titleActiviteitenLabel for Activities Toolkit Panelws_dlg_cancel_buttonAnnuleren2ws_dlg_filenameBestandsnaamLabel for File name in workspace windowws_save_folder_invalidU kan geen ontwerp opslaan in deze map. Kies een geldige sub-map.Alert message if root My Workspace folder is selected to save a design in.prefix_copyof_countKopie ({0}) vanPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.cv_invalid_trans_circular_sequenceU kan geen cirkelvormige sequentie makenError message when a transition from one activity to another is creating a circular loopmnu_file_exportExporterenMenu bar Exportmnu_file_exitAfsluitenFile Menu Exitpreview_btn_tooltipZo zullen uw leerlingen uw sequentie zienTool tip message for preview button in toolbarpi_num_groupsAantal groepenNumber of groups in Property inspectorcopy_btn_tooltipKopiëer de geselecteerde activiteittool tip message for copy button in toolbargate_btn_tooltipMaak een stop-punttool tip message for gate button in toolbaroptional_btn_tooltipMaak een set optionele activiteitentool tip message for optional button in toolbarflow_btn_tooltipMaak stroom-controle activiteitentool tip message for flow button in toolbarpaste_btn_tooltipPlak een kopie van de geselecteerde activiteittool tip message for paste button in toolbaral_sendZendenSend button label on the system error dialogcv_design_unsavedHet ontwerp in de werkruimte is gewijzigd. Doorgaan zonder dit te bewaren ?Alert message when opening/importing when current design on canvas is unsaved or modified.cv_trans_target_act_missingDe tweede activiteit van de overgang ontbreekt.Error message when target activity for transition is missingcv_invalid_optional_activityVerwijder de overgangen van en naar {0} voor je deze activiteit optioneel maaktAlert message when user try to drop an activity with to or from transition into optional containerws_click_file_openKlik op een Ontwerp om te openenAlert message if folder tried to be opened.pi_group_typeGroeperingstypeProperty Inspector Grouping type drop downsys_errorSysteemfoutSystem Error elert window titlews_copy_same_folderDe bron- en bestemmingsmap zijn dezelfdeThe user has tried to drag and drop to the same placews_rename_insGeef de nieuwe naam op a.u.bMessage of the new name for the userws_dlg_properties_buttonEigenschappenWorkspace dialogue Properties btn labelsys_error_msg_startVolgende systeemfout heeft zich voorgedaan :Common System error message starting linesys_error_msg_finishHet kan nodig zijn dat U LAMS Author moet herstarten om verder te kunnen. Wil U volgende informatie aangaande deze fout opslaan om het probleem te helpen oplossen ?Common System error message finish paragraphws_click_folder_fileKlik op een map om in te bewaren, of op een Ontwerp om te overschrijvenError msg if no folder or file is selectedws_dlg_open_btnOpenWsp Dia Open Button labelws_no_permissionSorry, U mag niet naar deze bron schrijvenMessage when user does not have write permission to complete actionws_newfolder_okOKOK on the new folder name diaws_newfolder_cancelAnnuleerCancel on the new folder name diaopt_activity_titleOptionele activiteitTitle for Optional Activity Containerws_view_license_buttonToonTo show the license to the userws_license_lblLicentieLabel for Licence drop down on workspace properties tab viewws_license_comment_lblBijkomende informatie over de licentieLabel for Licence Comment description below license drop downld_val_issue_columnKnelpuntThe heading on the issue in the ValidationIssuesDialoggrouping_act_titleGroeperingDefault title for the grouping activitypi_lbl_currentgroupHuidige groeperingCurrent grouping label for PIws_dlg_location_buttonPlaatsWorkspace dialogue Location btn labelgroup_btn_tooltipMaak een groeperingsactiviteittool tip message for group button in toolbaral_cancelAnnulerenTo Confirm title for LFErroral_confirmBevestigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDe taalgegevens zijn nog niet geladenmessage for unsuccessful language loadingapp_chk_themeloadDe themagegevens zijn nog niet geladenmessage for unsuccessful theme loadingapp_fail_continueDeze toepassing kan niet verder worden uitgevoerd. Neem contact op met de helpdeskmessage if application cannot continue due to any errorchosen_grp_lblGekozenLabel for the grouping drop down in the PropertyInspectorcopy_btnKopiërenToolbar &gt; Copy Buttoncv_invalid_trans_targetU kunt aan dit object geen overgang makenError message for when transition tool is dropped outside of valid target activitycv_show_validationKnelpuntenThe button on the confirm dialogcv_valid_design_savedGelukwensen! - Uw ontwerp is geldig en is bewaardMessage when a valid design has been saveddb_datasend_confirmDank U voor het zenden van gegevens naar de serverMessage when user sucessfully dumps data to the serverdelete_btnVerwijderenLabel for Delete buttongate_btnDoorgangToolbar &gt; Gate Buttongroup_btnGroepToolbar &gt; Group Buttonld_val_activity_columnActiviteitThe heading on the activity in the ValidationIssuesDialogld_val_doneBeëindigdThe button label for the dialoglicense_not_selectedMomenteel is geen licentie geselcteerd - Kies er één a.u.b.Shown if no license is selected in the drop down in workspacemnu_editBewerkenMenu bar Editmnu_edit_copyKopiërenMenu bar Edit &gt; Copymnu_edit_cutKnippenMenu bar Edit &gt; Cutmnu_edit_pastePlakkenMenu bar Edit &gt; Pastemnu_edit_redoOpnieuwMenu bar Edit &gt; Redomnu_edit_undoOngedaan makenMenu bar Edit &gt; Undomnu_fileBestandMenu bar Filemnu_file_closeSluitenMenu bar Closemnu_file_newNieuwMenu bar Newmnu_file_openOpenMenu bar Openmnu_file_saveBewaarMenu bar savemnu_file_saveasBewaar alsMenu bar Save asmnu_helpHelpMenu bar Helpmnu_tools_optTeken OptioneelMenu bar Optionalmnu_tools_prefsVoorkeurenMenu bar preferencesmnu_tools_transTeken OvergangenMenu bar draw transitionnew_btnNieuwToolbar &gt; New Buttonnew_confirm_msgBent U zeker dat U uw ontwerp op het scherm wil wissen?Msg when user clicks new while working on the existing designnone_act_lblGeenNo gate activity selectedopen_btnOpenToolbar &gt; Open Buttonoptional_btnOptioneelToolbar &gt; Optional Buttonpaste_btnPlakkenToolbar &gt; Paste Buttonperm_act_lblToelatingLabel for permission gate activitypi_activity_type_gateDoorgangsactiviteitActivity type for gate in PIpi_activity_type_groupingGroepsactiviteitActivity type for grouping in Property Inspectorpi_definelaterBepaal laterLabel for Define later for PIpi_end_offsetDoorgang sluitenEnd offset labelpi_lbl_descBeschrijvingDescription Label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMax. ActiviteitenLabel for maximum Activities or Sequencespi_min_actMin. ActiviteitenLabel for minimum Activities or Sequencespi_num_learnersAantal deelnemersPI Num learners labelpi_optional_titleOptionele activiteitTitle for oprional activity property inspectorpi_runofflineOffline uitvoerenLabel for Run Oflinepi_start_offsetDoorgang openenStart offset labelpi_titleEigenschappenOn the title bar of the PIprefix_copyofKopie vanPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAfbreken6prefs_dlg_lng_lblTaal7prefs_dlg_okOK5prefs_dlg_theme_lblThema8prefs_dlg_titleVoorkeuren4preview_btnVoorbeeldToolbar &gt; Preview Buttonproperty_inspector_titleEigenschappenOn the title bar of the PIrandom_grp_lblWillekeurigLabel for the grouping drop down in the PropertyInspectorrename_btnHernoemenLabel for Rename Buttonsave_btnBewaarToolbar &gt; Save buttonsched_act_lblTijdschemaLabel for schedule gate activitysynch_act_lblSynchroniserenUsed as a label for the Synch Gate Activity Typetrans_btnOvergangToolbar &gt; Transition Buttontrans_dlg_gateSynchronisatieHeader for the transition props dialogtrans_dlg_gatetypecmbTypeGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleOvergangTitle for the transition properties dialogws_RootBasisRoot folder title for workspacetrans_dlg_cancelAnnulerenCancel button on transition dialogal_empty_designSorry, U kan geen leeg ontwerp bewarenalert message when user want to save an empty designcv_readonly_lblAlleen lezenLabel for top left of canvas shown when a read-only design is open.cv_activity_dbclick_readonlyU kan geen gereedschap in een alleen-lezen ontwerp bewerken. Sla een kopie van het ontwerp op en probeer opnieuwAlert message when double-clicking an Activity in an open read-only designcv_gateoptional_hit_chkU kan geen doorgangsactiviteit niet optioneel makenError message when user drags gate activity over to optional containerbin_tooltipSleep een activiteit op deze prullenbak om ze uit de sequentie te verwijderen.Tool tip message for canvas binpi_parallel_titleParallelle activiteitTitle for parallel activity property inspectorws_click_virtual_folderU kan deze map niet gebruikenAlert message for trying to use a virtual folder to save/open a file.mnu_file_importImporterenMenu bar Importflow_btnStroomLabel for Flow button in Toolbarws_chk_overwrite_existingDeze map bevat al een bestand genaamd {0}Alert message when saving a design with the same filename as an existing design.cv_design_export_unsavedU kan geen ontwerp exporteren dat niet opgeslagen werd.Alert message when trying to export can unsaved design.branch_btnVertakkingLabel for disabled Branch button shown as submenu for flow button in Toolbarnew_btn_tooltipVerwijdert de huidige sequentie en zet de werkruimte terug klaarTool tip message for new button in toolbarbranch_btn_tooltipMaak een vertakking (beschikbaar in LAMS v 2.1)tool tip message for branch button in toolbarws_dlg_titleWerkruimte0ws_tree_mywspMijn werkruimteThe root level of the treelbl_num_activitiesActiviteitenreplacement for word activitiesws_newfolder_insGeef een naam voor de nieuwe mapInstructions on the new name pop upld_val_titleValidatie knelpuntenThe title for the dialogpi_lbl_groupGroeperingGrouping label for PIcv_autosave_rec_titleWaarschuwingAlert title for auto save recovery message.cv_invalid_design_on_apply_changesKan wijzigingen niet opslaan. Er ontbreken 1 of meer overgangen.Cannot apply changes. There are one or more transitions missing.validation_error_outputTransitionType2Er zijn geen activiteiten die hun uitvoer-overgang missen.No activities are missing their output transition.validation_error_outputTransitionType1Deze activiteit heeft geen uitvoer-overgang.This activity has no output transitionact_tool_titleActiviteitenTitle for Activity Toolkit Panelmnu_toolsGereedschapMenu bar Toolscv_autosave_err_msgEr heeft zich een fout voorgedaan tijdens een poging om uw ontwerp automatisch te bewaren. Als deze fout zich blijft voordoen, neem dan contact op met uw systeembeheerderAlert error message when auto-save fails.al_alertAandachtGeneric title for Alert windowvalidation_error_inputTransitionType1Deze activiteit heeft geen invoer overgangThis activity has no input transitionvalidation_error_activityWithNoTransitionEen activiteit moet een invoer- of uitvoer-overgang hebbenAn activity must have an input or output transitionmnu_file_recoverHerstellen...Menu bar Recovervalidation_error_inputTransitionType2Er zijn geen activiteiten die hun invoer-overgang missen.No activities are missing their input transition.validation_error_transitionNoActivityBeforeOrAfterEen overgang moet een activiteit voor of na de overgang hebbenA Transition must have an activity before or after the transitionws_del_confirm_msgBen je zeker dat je dit bestand of deze map wil verwijderen ?Confirmation message when user tries to delete a file or folder in workspace dialog boxcv_activity_copy_invalidSorry, je kan deze dochter-activiteit niet kopiërenError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidSorry, je kan deze dochter-activiteit niet knippen.Error message when user try to cut child activity from either optional or parallel activity containerpi_daysDagenDays label in property inspector for gate toolbranching_act_titleZijtak(ken)Label for Branching Activitystream_urlhttp://{0}foundation.orgURL address for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_reference_lblLAMS Reference label for the application stream.about_popup_license_lblDit programma valt onder de Vrije Software; u mag het verspreiden en/of aanpassen onder de voorwarden van de GNU General Public License version 2 zoals die is gepubliceerd door de Free Software Foundation.Label displaying the license statement in the About dialog.about_popup_trademark_lbl{0} is een handelsmerk van {0} stichting ( {1} )Label displaying the trademark statement in the About dialog.about_popup_version_lblVersieLabel displaying the version no on the About dialog.about_popup_title_lblOver - {0}Title for the About Pop-up window.mnu_file_finishEindeMenu bar File - Finish (Edit Mode)cancel_btn_tooltipTerug naar de les bekijkentool tip message for cancel button in toolbar (edit mode)cv_eof_finish_modified_msgWaarschuwing: Uw ontwerp is gewijzigd. Wilt u afsluiten zonder op te slaan?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_eof_finish_invalid_msgBeeindigen niet mogelijk: het ontwerp voldoet nog niet aan de minimumeisen.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_element_readOnly_action_modgewijzigdAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_delverwijderdAction label for read only alert message for a Canvas Transition.cv_edit_on_fly_lblLive aanpassenLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_activity_readOnlyActiviteit kan niet {0} zijn. De Activiteit is van het type alleen-lezen.Alert message when a user performs an illegal action on a read-only transition.cancel_btnAnnulerenToolbar - Cancel Buttonapply_changes_btn_tooltipSla de aanpassingen op en keer terug naar 'les bekijken'.tool tip message for save button in toolbarapply_changes_btnWijzigingen toepassenApply Changesmnu_file_apply_changesWijzigingen toepassenApply Changescv_eof_changes_appliedWijzigingen zijn succesvol toegepast.Changes have been successful applied.cv_close_return_to_ext_srcAfsluiten en terug naar {0}Button label used on close and return button in save confirm message popup.cv_untitled_lblZonder titel - 1Label for Design Title bar on canvasws_file_name_emptySorry! Het is toegestaan een ontwerp op te slaan zonder bestandsnaam.Error message when user try to save a design with no file nametrans_dlg_nogateGeenDrop down default for gate typews_dlg_descriptionOmschrijvingLabel for description in Workspace dialog - Properties tabcv_activity_helpURL_undefinedKan geen help pagina vinden voor {0}Alert message when a tool activity has no help url defined.ws_entre_file_nameGeef het ontwerp een naam, en klik daarna op de knop Opslaan.Error message when user try to save a design with no file nameccm_piEigenschappen Inspecteur...Label for Custom Context Menumnu_help_helpAuteurs helplabel for menu bar Help - Authoring Help optionccm_author_activityhelpAuteurs Activiteit HelpLabel for Custom Context Menuccm_open_activitycontentOpen/Wijzig Activiteit InhoudLabel for Custom Context Menual_activity_openContent_invalidSorry! U moet een activiteit kiezen voordat u op het Open/Wijzigen Activiteit Inhoud menu item in het activiteit-rechts-klik-menu klikt.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasccm_copy_activityKopieer ActiviteitLabel for Custom Context Menuccm_paste_activityPlak ActiviteitLabel for Custom Context Menuto_condition_invalid_value_directionDe {0} kan niet groter zijn dan de {1}.Alert message when the start value is greater than end value of the submitted condition.to_conditions_dlg_range_lblStel bereik in:Heading label for section in the dialog to set numeric condition range.groupnaming_dialog_instructions_lblKlik op een naam om de waarde te wijzigen.Instructions for Group Naming dialog.branch_mapping_dlg_condition_col_lblConditieColumn heading for showing condition description of the mapping.pi_activity_type_branchingVertakkings activiteitActivity type for Branching in Property Inspector.about_popup_copyright_lbl© 2002-2008 {0} stichting.Label displaying copyright statement in About dialog.is_remove_warning_msgLet op: de les staat op het punt te worden verwijderd. Wilt u de les bewaren als {0}?Message for the alert dialog which appears following confirmation dialog for removing a lesson.branch_mapping_dlg_branch_col_lblVertakkingColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_linked_singleDeze conditie is Phrase used at start of linked conditions alert message when clearing a single entry.pi_seqSequentiesMin and max label postfix when an Optional Sequences activity is selected.pi_actActiviteitenMin and max label postfix when an Optional Activity is selected.branch_mapping_dlg_condition_col_value_minMinder of gelijk aan {0}Value for Condition field in mapping datagrid when Less than option is selected.to_conditions_dlg_lt_lblMinder dan of gelijk aanLess than option for long type conditions.opt_activity_seq_titleOptionele sequentiesTitle for Optional Sequences Container.ta_iconDrop_optseq_error_msgVerwijder alle koppelingen van {0} voor het als een optionele activiteit in te stellenAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.cv_invalid_optional_seq_activityVerwijder alle transities van {0} voor het als optionele sequentie in te stellen.Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesEr zijn geen sequenties actief voor deze container.Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.pi_no_seq_actAantal sequentiesLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - SequentiesLabel to describe the amount of sequences in the container.optional_act_btnActiviteitToolbar button for Optional Activity.branch_mapping_dlg_condition_linked_allEr zijn conditiesPhrase used at start of linked conditions alert message when clearing all.optional_seq_btnSequentieToolbar button for Sequences within Optional Activity.al_continueDoorgaanContinue button on Alert dialogcv_invalid_optional_seq_activity_no_branchesVerwijder alle koppelingen alvorens {0} toe te voegen als optionele sequentie.Alert message when user try to drop an activity with connected branches into optional sequences container.activityDrop_optSequence_error_msgLaat de activiteit op één van de sequenties vallen.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.pi_optSequence_remove_msgDe te verwijderen sequentie(s) bevat(ten) mogelijk nog activiteiten; die zullen worden verwijderd. Doorgaan?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_optSequence_remove_msg_titleSequenties verwijderenRemoving sequencesoptional_seq_btn_tooltipEen set optionele sequenties maken.Tooltip for Sequences within Optionaly Activity button.branch_mapping_dlg_condition_col_value_maxGroter dan of gelijk aan {0}Value for Condition field in mapping datagrid when Greater than option is selected.cv_activityProtected_child_activity_link_msgDeze {0} heeft een gekoppeld kind aan een {1}.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.cv_activityProtected_activity_link_msgDeze {0} is gekoppeld aan een {1}.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_activity_remove_msgDe-selecteer de activiteit als de {0} om te verwijderen.Instruction how to delete an Activity linked to a Branching Activity.group_branch_act_lblGroep-gebaseerdBranching type label for Group-based Branching.to_condition_end_valueeind waardeValue representing the max boundary value of the conditions value.to_condition_start_valuestart waardeValue representing the min boundary value of the conditions range.sequence_act_titleSequentieDefault title for Sequence Activity.to_condition_untitled_item_lblOnbenoemde {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.pi_group_naming_btn_lblGroepnamenLabel for button that opens Group Naming dialog.branch_mapping_dlg_condition_col_valueBereik {0} tot {1}Value for Condition field in mapping datagrid.branch_mapping_no_branch_msgGeen tak geselecteerd.Alert message when adding a Mapping without a Branch (Sequence) being selected.groupmatch_dlg_groups_lst_lblGroepenLabel for Groups list box on Group/Branch Matching Dialog.to_conditions_dlg_clear_all_btn_lblAlles wissenLabel for button to clear all conditions.al_doneKlaarLabel for dialog completion button.branch_mapping_dlg_group_col_lblGroepColumn heading for showing group name of the mapping.groupnaming_dlg_title_lblGroepnamenTitle label for Group Naming dialog.branch_mapping_no_groups_msgGeen groepen geselecteerd.Alert message when adding a Mapping without a Group being selected.to_conditions_dlg_add_btn_lbl+ ToevoegenLabel for button to add a condition.branch_mapping_dlg_condition_col_value_exactExtra waarde van {0}Value for Condition field in mapping datagrid when range set is only single value.branch_mapping_dlg_condition_linked_msg{0} is gekoppeld aan een bestaande tak. Willt u doorgaan?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.pi_branch_typeVertakkings-typeProperty Inspector Branching type drop down.branch_mapping_dlg_branches_lst_lblVertakkingenLabel for Branches list box on Branch Matching Dialogs.branch_mapping_no_condition_msgGeen condities geselecteerd.Alert message when adding a Mapping without a Condition being selected.to_conditions_dlg_to_lblAan:Label for end value in condition range for long or numeric output values.act_seq_lock_chkDe optionele sequentie container is nog gesloten: open die voordat u de activiteit toekent.Alert Message if user drags the activity to locked optional sequences container.redundant_branch_mappings_msgHet ontwerp bevat ongebruikte vertakking-mappings die verwijderd zullen worden. Doorgaan?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.branch_mapping_dlg_match_dgd_lblMappingsHeading label for Mapping datagrid.pi_define_monitor_cb_lblIn monitor definierenCheckbox label for option to define group to branch mappings in Monitor.branch_mapping_no_mapping_msgGeen mappings geselecteerd.Alert message when removing a Mapping without a Mapping being selected.to_conditions_dlg_title_lblNieuwe uitvoer-condities makenDialog title for creating new tool output conditions.pi_condmatch_btn_lblConditionele stellingen opstellenLabel for button to open dialog to create output conditions.tool_branch_act_lblGereedschap uitvoerBranching type label for Tool output Branching.pi_mapping_btn_lblMappings opzettenLabel for button to open tool output to branch(s) dialog.branch_mapping_auto_condition_msgAlle overblijvende condities zullen op de standaard vertakking worden gekoppeld.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.chosen_branch_act_lblDocent keuzeBranching type label for Teacher choice Branching.condmatch_dlg_title_lblCondities met vertakkingen koppelenDialog title for matching conditions to branches for Tool based Branching.pi_branch_tool_acts_lblInvoer (gereedschap)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_activity_type_sequenceActiviteit sorteren ({0})Activity type for Sequence (Branch) in Property Inspector.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/no_NO_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3validation_error_activityWithNoTransitionEn aktivitet må ha en inn- eller en utgangs-forbindelse.cv_trans_readOnlyForbindelsen kan ikke være {0}. Forbindelsens mål har kun lese rettighet.pi_tool_output_matching_btn_lblKnytt betingelser til forskjellige grenercv_design_insert_warningNår du har lagt til en ny sekvens så kan du ikke avbryte denne aksjonen - din gamle sekvens blir lagret automatisk med den nye sekvensen. or å gå tilbake til den gamle sekvensen så må du fjerne alle nye sekvenser manuelt og så lagre. For å lagre den aktive sekvensen uendret, klikk på Avbryt. Hvis ikke, klikk på OK for å velge en ny sekvens som skal legges til.act_seq_lock_chkVennligst lås opp beholderen for alternative sekvenser før du tilordner denne aktiviteten til en alternativ sekvensvalidation_error_inputTransitionType2Ingen av aktivitetene mangler inngangs-forbindelser.cv_invalid_trans_target_from_activityEn forbindelse fra {0] eksisterer allerede.cv_eof_changes_appliedEndringene er implementert korrekt.sys_error_msg_finishDu må starte om LAMS Forfatter for å fortsette. Vil du lagre informasjon om denne feilen slik at den kan bli utbedret?branch_mapping_dlg_condtion_items_update_defaultConditions_zeroKan ikke foreta oppdatering fordi det finnes ingen bruker definisjon. Du må definere dette på verktøyets forfatter side(r).al_activity_copy_invalidBeklager ! Du må velge hvilken aktivtet du skal kopiere før du klikker på kopier.al_activity_openContent_invalidBeklager ! Du må velge en aktivitet før du klikker på Åpne/Rediger ikonet.map_comptence_btnKartlegging av kompetansebranch_mapping_dlg_match_dgd_lblBetingelserpi_mapping_btn_lblDefiner betingelserbranch_mapping_no_mapping_msgIngen betingelser er valgtto_conditions_dlg_defin_item_header_lbl[Velg utgangsdata]tool_branch_act_lblStudentenes oppnådde resultatcompetences_lblKompetansesequence_act_titleSekvensto_conditions_dlg_condition_items_update_defaultConditionsDu er i ferd med å oppdatere reglene for oppnådde resultat. Dette vil fjerne alle lenker til de grener som er definert. Vil du fortsette ?pi_branch_tool_acts_lblAktivitet (verktøy)groupnaming_dialog_col_groupName_lblGruppe navnmnu_file_insertdesignSett inn/slå sammen...ws_dlg_insert_btnSett innbranch_mapping_dlg_branch_item_default{0} (standard)pi_group_matching_btn_lblKnytt grupper til forskjellige grenerrefresh_btnFrisk opp skjermbildetto_conditions_dlg_defin_user_defined_typebruker definertgrouping_invalid_with_common_names_msgKan ikke lagre designet fordi gruppe aktiviteteten '{0}' har flere grupper med samme navn. Vennligst kontroller og forsøk igjen.al_activity_paste_invalidBeklager, du kan ikke lime inn denne type aktivitetpreview_btn_tooltip_disabledFor å forhåndsvise din sekvens så må du først lagre den og deretter klikke på Forhåndsvis.condmatch_dlg_message_lblStandard gren blir valgt ved å klikke på standard i området for egenskapercompetences_mapped_to_act_lblKompetansebranch_mapping_dlg_condition_col_valueOmråde {0} til {1}branch_mapping_dlg_condition_col_value_exactEksakt verdi av {0}condmatch_dlg_title_lblKnytt betingelser til grenenepi_define_monitor_cb_lblDefineres i kontrollmodusgroupmatch_dlg_title_lblPlanlegg grupper mot forgreningerbranch_mapping_no_groups_msgIngen gruppe er valgt.group_branch_act_lblGruppebasertbranch_mapping_dlg_branches_lst_lblGrenergroupmatch_dlg_groups_lst_lblGruppergroupnaming_dlg_title_lblNavngiving av grupperpi_activity_type_branchingForgreningsaktivitetpi_branch_typeType forgreningpi_group_naming_btn_lblNavngi grupperchosen_branch_act_lblLærerens valgto_condition_start_valueStart verdito_condition_end_valueSlutt verdito_condition_invalid_value_rangeVerdien {0} kan ikke være innenfor området til et definert områdeto_condition_invalid_value_direction{0} kan ikke være større enn {1}is_remove_warning_msgMERK ! Leksjonen er i ferd med å bli slettet. Ønsker du at å lagre denne som {0}al_continueFortsettbranch_mapping_dlg_condition_linked_msg{0} er knyttet til en gren. Ønsker du å fortsette ?branch_mapping_dlg_condition_linked_allDet er satt betingelserbranch_mapping_dlg_condition_linked_singleDenne betingelsen erto_condition_untitled_item_lblUten tittel {0}redundant_branch_mappings_msgDette designet har grener som ikke er benyttet og denne vil bli fjernet. Ønsker du å fortsette ?cv_activityProtected_activity_remove_msgFor å fjerne denne aktiviteten, vennligst velg ut denne aktiviteten som {0}support_act_btnBrukerstøttesupport_act_titleAktivitet for brukerstøttesupport_msg_no_connectionAktiviteter for brukerstøtte kan ikke knyttes til andre aktivitetersupport_msg_invalid_childAktivitet av typen {0} kan ikke legges til fordi dette er brukerstøtte aktivitetsupport_msg_max_children_reachedKan ikke sette inn aktiviteten: {0} her. Aktiviteten brukerstøtte tillater maksimalt {0} tilliggende aktiviteter.support_msg_cannot_be_childKan ikke sette inn en brukerstøtte aktivitet i en annen aktivitet.support_act_btn_tooltipLage et sett av alternativ brukerstøtte.optional_act_btnAktivitetcv_activityProtected_activity_link_msgDenne {0} er forbundet med en {1}cv_activityProtected_child_activity_link_msgDenne {0} har en "child" forbundet med en {1}branch_mapping_dlg_condition_col_value_maxStørre enn eller lik {0}optional_seq_btnSekvensoptional_seq_btn_tooltipLage et antall alternative sekvenserpi_optSequence_remove_msg_titleFjerner sekvenserpi_optSequence_remove_msgSekvensen(e) som skal fjernes kan inneholde aktiviteter som vil bli slettet. Ønsker du å fjerne disse sekvensene ?pi_no_seq_actAntall sekvenserlbl_num_sequences{0} - sekvenseractivityDrop_optSequence_error_msgVennligst legg inn aktiviteten i en av sekvensenecv_invalid_optional_seq_activity_no_branchesFjern grenforbindelser fra {0} før du forbinder den til en alternativ sekvensopt_activity_seq_titleAlternative sekvenserto_conditions_dlg_lt_lblMindre enn eller likto_conditions_dlg_defin_long_typeområdeta_iconDrop_optseq_error_msgDet er ingen sekvenser i denne beholderencv_invalid_optional_seq_activityFjern til og fra forbindelser {0} før du forbinder den til en alternativ sekvenscv_invalid_optional_activity_no_branchesFjern grenforbindelser fra {0} før du forbinder den til en alternativ aktivitetbranch_mapping_dlg_condition_col_value_minMindre enn eller lik {0}pi_actAktiviteterpi_seqSekvenserto_conditions_dlg_defin_bool_typeriktig/galtto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_condition_items_name_col_lblNavnto_conditions_dlg_condition_items_value_col_lblBetingelseto_conditions_dlg_options_item_header_lbl[Alternativer]sequence_act_title_new{0} {1}close_mc_tooltipMinimerto_conditions_dlg_gte_lblStørre enn eller likto_conditions_dlg_lte_lblMindre enn eller likmnu_help_helpHjelp ccm_open_activitycontentÅpne/rediger aktivitetsinnholdccm_copy_activityKopier aktivitetccm_paste_activityLim inn aktivitetccm_piKontroll av eiendomsrett.....ccm_author_activityhelpHjelp for forfatterws_dlg_descriptionBekrivelsetrans_dlg_nogateIngenpi_daysDagercv_close_return_to_ext_srcLukk og gå til {0}mnu_file_apply_changesBruk endringenevalidation_error_transitionNoActivityBeforeOrAfterEn forbindelse må ha en aktivitet før og etter seg.validation_error_inputTransitionType1Denne aktiviteten har ingen forbindelse til inngangenvalidation_error_outputTransitionType1Denne aktiviteten har ingen forbindelse fra utgangenvalidation_error_outputTransitionType2Ingen aktiviteter mangler utgangs-forbindelser.cv_invalid_design_on_apply_changesKan ikke gjennomføre endringene. Det mangler en eller flere forbindelser.apply_changes_btnBruk endringeneapply_changes_btn_tooltipGjennomfør endringene og gå tilbake til kontroll modus.cancel_btnAvbrytcv_edit_on_fly_lblAktuell endringcv_element_readOnly_action_delfjernetcv_element_readOnly_action_modendretcv_activity_readOnlyAktiviteten kan ikke være {0}. Aktiviteten har kun leserettigheter.cv_eof_finish_invalid_msgDesignet må være gyldig for å kunne gjennomføre endringene.cv_eof_finish_modified_msgMERK ! Designet er endret. Ønsker du å avslutte uten å lagre ?cancel_btn_tooltipGå tilbake til kontroll modus.mnu_file_finishAvsluttabout_popup_title_lblOm - {0}about_popup_version_lblVersjonabout_popup_trademark_lbl{0} er varemerket til {0} stiftelsen ({1})to_conditions_dlg_add_btn_lbl+ legg tilabout_popup_license_lblDenne programvaren er en fri programmvare, du kan distribuere den videre og/eller endre denne så lenge betingelsene i GNU General Public License versjon 2, utgitt av Free Software Foundation, følges.stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_titleForgreningpi_activity_type_sequenceSekvens aktivitet ({0})groupnaming_dialog_instructions_lblKlikk på et navn for å endre dettepi_condmatch_btn_lblDefiner forutsettningeneto_conditions_dlg_title_lblDefiner utgangsparametreal_doneUtførtcondmatch_dlg_cond_lst_lblForutsettningerpi_defaultBranch_cb_lblstandardto_conditions_dlg_clear_all_btn_lblFjern altto_conditions_dlg_remove_item_btn_lblFjernto_conditions_dlg_to_lblTil:to_conditions_dlg_range_lblOmråde:branch_mapping_dlg_branch_col_lblGrenbranch_mapping_dlg_condition_col_lblForutsettningbranch_mapping_dlg_group_col_lblGruppepi_num_groupsAntall grupperbranch_mapping_no_branch_msgDet er ikke valgt en gren.branch_mapping_no_condition_msgIngen forutsettninger er valgt.branch_mapping_auto_condition_msgDe gjenstående utgangsparametre vil bli tillagt standard forgreningencv_autosave_rec_titleAdvarselpi_parallel_titleParallell aktivitetopt_activity_titleAlternativ aktivitetlbl_num_activities{0} - aktiviteteral_sendSendal_cannot_move_activityBeklager du kan ikke flytte denne aktiviteten.cv_gateoptional_hit_chkDu kan ikke legge inn en port som en alternativ aktivitet.prefix_copyof_countKopi {0} avws_save_folder_invalidDu kan ikke lagre en design i denne mappen. Vennligst velg en gyldig undermappe.ws_click_file_openVennligst klikk på et design for å åpne denne.ws_license_lblLisensws_license_comment_lblTilleggsinformasjon for lisenscv_invalid_optional_activityFjerner til og fra forbindelser fra {0} før den defineres som en tilleggs aktivitet.cv_trans_target_act_missingDen andre aktiviteten i forbindelsen mangler.cv_invalid_trans_target_to_activityEn forbindelse til {0} eksisterer allerede.branch_btnGrenflow_btnAktivitets tilgangmnu_file_importImportercv_design_export_unsavedDu kan ikke eksportere en design som ikke er lagret.cv_design_unsavedDesignet i vinduet er endret. Fortsette uten å lagre ?mnu_file_exportEksporterws_chk_overwrite_existingDenne mappen inneholder allerede en fil med navn {0}ws_click_virtual_folderDu kan ikke benytte denne mappen.mnu_file_exitGå utws_no_file_openFilen ikke funnetcv_invalid_trans_circular_sequenceDu har ikke anledning til å lage en sirkulær sekvensbin_tooltipFlytt aktiviteten til papirkurven for å fjerne den fra sekvensen.mnu_file_recoverGjenopprett...new_btn_tooltipFjerner aktiv sekvens og klargjør arbeidsområdet for ny bruk.open_btn_tooltipVis fil dialog for å åpne en aktivitets sekvenscv_untitled_lblUbestemt -1save_btn_tooltipHurtiglagre den aktive sekvensen.copy_btn_tooltipKopier den valgte aktivitetpaste_btn_tooltipLim inn en kopi av den valgte aktivitettrans_btn_tooltipBenytt denne blyanten for å tegne forbindelseslinjer mellom aktiviteter (eller trykk CTRL tast)optional_btn_tooltipLag et sett av alternative aktivitetergate_btn_tooltipLag et stopp punktbranch_btn_tooltipLag en gren flow_btn_tooltipStyre tilgang til aktivitetenegroup_btn_tooltipLag en gruppe aktivitetpreview_btn_tooltipForhåndsvis din sekvens slik studentene vil se den.cv_activity_dbclick_readonlyDu kan ikke endre en design med kun lesetilgang. Lag en kopi av designet og prøv igjen.cv_readonly_lblKun lesetilgangal_empty_designBeklager, du kan ikke lagre en design uten innholdcv_autosave_err_msgDet har oppstått en feil når automatisk lagring av ditt design foretas. Vennlist øk lagringsområdet for Flash spilleren.cv_autosave_rec_msgDu er i ferd med å gjenopprette den siste eller en design som ikke er lagret. Den nåværende design vil bli fjernet. Fortsette ?cv_activity_copy_invalidBeklager ! Du har ikke tillatelse til å kopiere denne tilleggs-aktiviteten.ws_del_confirm_msgVil du virkelig fjerne denne filen/mappen ?cv_activity_cut_invalidBeklager ! Du har ikke tillatelse til å fjerne denne tilleggs-aktiviteten.ws_file_name_emptyBeklager ! Du kan ikke lagre et design uten å ha gitt det et navn.ws_entre_file_nameSkriv design navnet og klikk på Lagre knappen.cv_activity_helpURL_undefinedFinner ikke hjelpesiden for {0}none_act_lblIngen valgtopen_btnÅpnepaste_btnLim innoptional_btnAlternativperm_act_lblTilgangpi_group_typeGrupperingstypepi_activity_type_gatePort til aktivitetpi_activity_type_groupingGrupperingsaktivitetpi_definelaterDefiner i kontrollmoduspi_end_offsetLukk portenpi_hoursTimerpi_lbl_currentgroupAktiv grupperingpi_lbl_descBeskrivelsepi_lbl_groupGrupperingpi_lbl_titleTittelpi_max_actMaks. {0}pi_min_actMin. {0}pi_minsMinutterpi_no_groupingIngenpi_num_learnersAntall studenterpi_optional_titleAlternativ aktivitetpi_runofflineOff-line aktivitetprefs_dlg_lng_lblSpråkprefs_dlg_okOKprefs_dlg_theme_lblTemapi_start_offsetÅpne portenpi_titleEgenskaperprefix_copyofKopi avprefs_dlg_cancelAvbrytprefs_dlg_titleInnstillingerpreview_btnForhåndsvisningproperty_inspector_titleEgenskaperrandom_grp_lblTilfeldigrename_btnNytt navnsave_btnLagresched_act_lblPlanleggesynch_act_lblSynkroniseretk_titleAktivitetsverktøytrans_btnForbindelsetrans_dlg_cancelAvbryttrans_dlg_gateSynkroniseringtrans_dlg_gatetypecmbTypetrans_dlg_okOKto_conditions_dlg_from_lblFra:trans_dlg_titleForbindelsews_RootRotws_chk_overwrite_resourcePass på! Du er i ferd med å overskrive denne sekvensen !ws_click_folder_fileKlikk på en mappe for å lagre i, eller en design for å overskrivews_dlg_cancel_buttonAvbrytws_copy_same_folderKilde- og målmappe er den samme ws_dlg_filenameFilnavnws_dlg_location_buttonPlasseringws_dlg_ok_buttonOKws_dlg_open_btnÅpnews_dlg_properties_buttonEgenskaperws_dlg_save_btnLagrews_dlg_titleArbeidsområdews_newfolder_cancelAvbrytws_newfolder_insVennligst skriv det nye mappe navnetws_newfolder_okOKld_val_issue_columnEmnews_no_permissionBeklager, du har ikke rett til å skrive til denne ressursenws_rename_insSkriv inn nytt navnws_tree_mywspMitt arbeidsområdews_tree_orgsMine grupperws_view_license_buttonVisact_lock_chkLås opp beholderen for alternative aktiviteter før du angir denne aktiviteten som valgfrisys_error_msg_startFølgende system feil har oppstått:sys_errorSystemfeilact_tool_titleAktivitetsverktøyal_alertVarselal_cancelAvbrytal_confirmBekreftal_okOKapp_chk_langloadSpråkdata har ikke blitt lastetapp_chk_themeloadTemadata har ikke blitt lastetapp_fail_continueApplikasjonen må avsluttes. Kontakt støttepersonellchosen_grp_lblValgtcopy_btnKopierld_val_titleGyldighetskontrollcv_invalid_design_savedDin design er ikke gyldig ennå, men den er lagret, klikk 'Resultat' for å se på feilen.cv_invalid_trans_targetDu kan ikke opprette en forbindelse til dette objektetcv_show_validationResultatercv_valid_design_savedGratulerer! - Din sekvens er gyldig og er blitt lagretdb_datasend_confirmTakk for at du sender data til serverdelete_btnSlettgate_btnPortgroup_btnGruppegrouping_act_titleGrupperingld_val_activity_columnAktivitetld_val_doneUtførtlicense_not_selectedDet er ikke valgt lisens type. Vennligst velg.mnu_editRedigermnu_edit_copyKopiermnu_edit_cutKlippmnu_edit_pasteLimmnu_edit_redoGjør ommnu_edit_undoAngremnu_fileFilmnu_file_closeLukkmnu_file_newNymnu_file_openÅpnemnu_file_saveLagremnu_file_saveasLagre som...mnu_helpHjelpmnu_help_abtOmmnu_toolsVerktøymnu_tools_optTegn alternativmnu_tools_prefsForetrukne innstillingermnu_tools_transTegn forbindelsenew_btnNynew_confirm_msgØnsker du virkelig å fjerne designen fra skjemen?pi_branch_tool_acts_default--Valg--cv_invalid_trans_diff_branchesKan ikke lage tilkoblinger mellom aktiviteter i forskjellige grener.cv_invalid_branch_target_to_activityEn gren til {0} eksisterer allerede.cv_invalid_branch_target_from_activityEn gren fra {0} eksisterer allerede.cv_invalid_trans_closed_sequenceKan ikke lage en ny tilkobling til en lukket sekvens.al_cannot_move_to_diff_opt_seqFor å flytte en aktivitet til en annen sekvens med funksjonen Alternativ Sekvens, må du først flytte aktiviteten ut av Alternativ Sekvens og deretter klikke på den og dra den inn til den nye sekvensen.al_group_name_invalid_blankGruppe navn kan ikke være tomme.al_group_name_invalid_existinggruppe navn må være unike.about_popup_copyright_lbl© 2002-2009 {0} Stiftelselearner_choice_grp_lblStudentens valgpi_equal_group_sizesGruppene skal være like storecompetence_editor_dlgKompetanse editorcompetence_editor_warning_title_existsEn kompetanse med denne tittelen {0} finnes alleredecompetence_editor_warning_title_blankTittelen til kompetanse kan ikke være tomcompetence_editor_warning_competence_mappedden kompetansen som du ønsker å fjerne er knyttet til en eller flere aktiviteter. Sletter du denne kompetansen så vil tilknyttningene til aktiviteter bli brudt. Ønsker du å fortsette ?competence_editor_add_competence_btnLegg tilcompetence_def_dlgDefinisjon av kompetansecompetence_mappings_btnKartlegging av kompetansemap_gate_conditions_btnVurder portenes tilstandgate_mapping_auto_condition_msgAlle gjenstående betingelser vil bli vurdert mot de valgte porters status .gate_openåpengate_closedlukketal_activity_view_competence_mappings_invalidVennligst kontroller at du har valgt en aktivitet før du forsøker å se på kompetanse sammenligningene.mnu_file_import_communityImport fra LAMS brukerforening....ws_dlg_date_modified_lblSist modifisert:{0}ws_save_title_reserved_charsTittel kan ikke inneholde spesielle karakterer: {0}gradebook_output_typeUtgangsdata for karakterbokview_students_before_selectionVurdere studenter før utvelgelse ?arrange_act_btnOrganisere aktivitetergrp_chk_clear_branch_mappingsMERK: Dette vil slette alle gruppe til grener forbindelser for denne gruppeaktivitet, vil du fortsette ? \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/pl_PL_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3delete_btnUsuńLabel for Delete buttonmnu_filePlikMenu bar Filegate_btnBramaToolbar &gt; Gate Buttongroup_btnGrupujToolbar &gt; Group Buttonld_val_doneZakończThe button label for the dialogld_val_issue_columnProblemThe heading on the issue in the ValidationIssuesDialoggrouping_act_titleGrupowanieDefault title for the grouping activityld_val_activity_columnAktywnośćThe heading on the activity in the ValidationIssuesDialogmnu_editEdycjaMenu bar Editld_val_titleProblemy zgodnościThe title for the dialogmnu_edit_copyKopiujMenu bar Edit &gt; Copymnu_edit_cutWytnijMenu bar Edit &gt; Cutmnu_edit_pasteWklejMenu bar Edit &gt; Pastemnu_edit_redoPonówMenu bar Edit &gt; Redomnu_edit_undoCofnijMenu bar Edit &gt; Undomnu_file_closeZamknijMenu bar Closemnu_file_newNowyMenu bar Newmnu_file_openOtwórzMenu bar Opendb_datasend_confirmDane zostały pomyślnie przesłane na serwerMessage when user sucessfully dumps data to the servermnu_file_saveZapiszMenu bar savelicense_not_selectedWybierz licencję dla tego projektuShown if no license is selected in the drop down in workspacemnu_file_saveasZapisz jako...Menu bar Save asmnu_help_abtO...Menu bar Aboutmnu_helpPomocMenu bar Helpnew_btnNowyToolbar &gt; New Buttonmnu_toolsNarzędziaMenu bar Toolsmnu_tools_optRysuj opcjonalneMenu bar Optionalmnu_tools_prefsPreferencjeMenu bar preferencesmnu_tools_transRysuj przejścieMenu bar draw transitionnone_act_lblBrakNo gate activity selectedopen_btnOtwórzToolbar &gt; Open Buttonpaste_btnWklejToolbar &gt; Paste Buttonnew_confirm_msgCzy na pewno chcesz usunąc wszystko w projekcie ?Msg when user clicks new while working on the existing designpi_lbl_descOpisDescription Label for PIoptional_btnOpcjonalneToolbar &gt; Optional Buttonpi_activity_type_gateBramaActivity type for gate in PIperm_act_lblOtwierana przez nauczycielaLabel for permission gate activitypi_activity_type_groupingRodzaj grupowaniaActivity type for grouping in Property Inspectorpi_definelaterZdefiniuj w MonitorzeLabel for Define later for PIprefs_dlg_okOK5pi_hoursGodzinyHours label in Property Inspectoral_okOKOK on the alert dialogpi_end_offsetZamknij bramęEnd offset labelpi_group_typeRodzaj grupowaniaProperty Inspector Grouping type drop downpi_lbl_currentgroupBieżące grupowanieCurrent grouping label for PIpi_lbl_groupGrupowanieGrouping label for PIpi_lbl_titleTytułTitle label for PIpi_max_actMaksimum AktywnościLabel for maximum Activities or Sequencespi_minsMinutyMins label in teh property inspectorpi_no_groupingŻadenCombo title for no groupingpi_min_actMinimum AktywnościLabel for minimum Activities or Sequencespi_num_learnersIlość studentówPI Num learners labelprefix_copyofKopia...Prefix for copy paste command for canvas activitiesprefs_dlg_cancelAnuluj6pi_optional_titleNarzędzie opcjonalneTitle for oprional activity property inspectorprefs_dlg_lng_lblJęzyk7prefs_dlg_theme_lblTemat8prefs_dlg_titlePreferencje4pi_runofflineUruchom aktywność w trybie off-lineLabel for Run Oflinepi_start_offsetOtwórz bramęStart offset labelpi_titleWłaściwościOn the title bar of the PIpreview_btnPodglądToolbar &gt; Preview Buttonproperty_inspector_titleWłaściwościOn the title bar of the PIrandom_grp_lblLosowyLabel for the grouping drop down in the PropertyInspectorcompetence_editor_warning_title_blankUprawnienie nie może być pusteWarning message when you try to define a competence with a blank competence titlecompetence_editor_warning_competence_mappedUsuwane uprawnienie jest już przypisane do aktywności. Czy kontynuować ?Warning message when you attempt to delete a competence that is mapped to one or more activities.map_comptence_btnMapowanie uprawnieńLabel for button that invokes the Competence Mappings dialogcompetence_mappings_btnMapowanie uprawnieńTitle for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lblUprawnieniaLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btnMapowanie warunków bramButton to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msgWszystkie pozostałe warunki będą zamapowane do wybranych bramWarning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_openOtwarteOpen state for gate activity, allows learners to pass through itgate_closedZamknięteClosed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalidUpewnij się że wybrałeś aktywność przed podglądem mapowania uprawnieńWarning that appears when no activity is selected when the user tries to view competence mappingsoptional_act_btnAktywnośćToolbar button for Optional Activity.optional_seq_btnSekwencjaToolbar button for Sequences within Optional Activity.optional_seq_btn_tooltipTworzy sekwencje opcjonalneTooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleUsuwanie sekwencjiRemoving sequencespi_optSequence_remove_msgUsuwana sekwencja może zawierać aktywności, które zostaną usunięte. Czy na pewno chcesz ją usunąc?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actBrak sekwencjiLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - SekwencjiLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgPrzenieś aktywność do właściwej sekwencjiAlert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.cv_invalid_optional_seq_activity_no_branchesUsuń wszystkie połączone rozgałęzienia z {0} zanim wybierzesz aktywność opcjonalnąAlert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msgW tym obiekcie nie ma aktywnych sekwencjiError message when a Template Activity icon is dropped onto a empty Optional Sequences container.act_seq_lock_chkOdblokuj przed przypisaniem aktywności do sekwencjiAlert Message if user drags the activity to locked optional sequences container.cv_invalid_optional_seq_activityUsuń wszystkie połączenia z {0} zanim wybierzesz aktywność opcjonalną. Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branchesUsuń wszystkie połączone rozgałęzienia z {0} zanim wybierzesz aktywność opcjonalnąAlert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleSekwencja opcjonalnaTitle for Optional Sequences Container.to_conditions_dlg_lt_lblMniej lub równeLess than option for long type conditions.branch_mapping_dlg_condition_col_value_minMniej lub równe {0}Value for Condition field in mapping datagrid when Less than option is selected.pi_actAktywnościMin and max label postfix when an Optional Activity is selected.pi_seqSekwencjeMin and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_typezakresType description for a long-value based ouput definition.to_conditions_dlg_defin_bool_typeprawda/fałszType description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[ Definicje ]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lblNazwaColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lblWarunekColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Opcje ]Header label value (first index) for tool long (range) options drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipMinimalizujTooltip message for close button on Branching canvas.to_conditions_dlg_gte_lblWiększy niż lub równyGreater than or equal toto_conditions_dlg_lte_lblMniejszy niż lub równyLess than or equal togroupnaming_dialog_col_groupName_lblNazwa grupyColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignWstaw...Menu item label for Inserting a Learning Design.ws_dlg_insert_btnWstawButton label on Workspace in INSERT mode.branch_mapping_dlg_branch_item_default{0} (default)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.pi_group_matching_btn_lblPrzypisz grupy do gałęziButton in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lblPrzypisz warunki do gałęziButton in author that allows you to match conditions to branches for tool-output based branchingrefresh_btnOdświeżButton label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditionsZa chwilę ualtualnisz warunki, co wykasuje połączenia z istniejącymi gałęziami. Czy chcesz kontynuować ?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zeroNie można uaktualnić. Brak zdefiniowanych warunków.Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_typeużytkownik zdefiniowanyType description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msgNie można zapisać projektu. Aktywność grupowa {0} ma dwie grupy o takiej samej nazwieAlert message displayed when the Grouping validation fails during saving a design.al_activity_paste_invalidNie można wkleić tej aktywnościAlert message when user is attempting to paste a unsupported activity type.preview_btn_tooltip_disabledAby podglądnać sekwencję, musisz ją naipierw zapisaćTool tip message for preview button in toolbar when button is disabled.condmatch_dlg_message_lblDomyslna gałąź może być wybrana poprze zaznaczenie odpowiedniej opcji we właściwościachLabel for a message in the Condition to Branch matching dialog.cv_design_insert_warningNie można cofnąć akcji po dodaniu nowej sekwencji. Stara sekwencja jest automatycznie zapisaną z nowododaną aktywnością.Warning message when merge/insertpi_branch_tool_acts_default--wybór--Default item label for Input Tool dropdown list.cv_invalid_trans_diff_branchesNie można utworzyć połączenia między aktywnościami w różnych gałęziachError message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activityGałąź od {0} juz istniejeError message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityGałąź z {0} juz istniejeError message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceNie można ustanowić nowego połączenia do zamknietej sekwencjiError message displayed after drawing a transition from an activity in a closed sequence.al_cannot_move_to_diff_opt_seqAby przesunać aktywność w Sekwencji Opcjonalnej, najpierw wyjmij aktywność na zewnątrz a nastepnie przeciągnij ją do nowej lokalizacji w Sekwencji OpcjonalnejWarning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activityal_group_name_invalid_blankNazwy grup nie mogą być pusteWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingNazwy grup muszą być unikatoweWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different grouplearner_choice_grp_lblWybór studentaA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesTaki sam rozmiar grupCheckbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgEdytor uprawnieńDialog for adding/editing/removing competencescompetences_lblUprawnieniaLabel in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btnDodajAdd competence buttoncompetence_def_dlgDefinicja uprawnieńTitle for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_existsUprawnienie o nazwie {0} już istniejeWarning message when you try to add a competence with a competence title that already existsmnu_file_finishZakończMenu bar File - Finish (Edit Mode)about_popup_title_lblO - {0}Title for the About Pop-up window.about_popup_version_lblWersjaLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0) jest znakiem firmowym {0} Fundacji ( {1} )Label displaying the trademark statement in the About dialog.about_popup_license_lblTen program jest darmowy, może być dystrybuowany i/lub modyfikowany na zasadach licencji GNU General Public License wersja 2 - Free Software FoundationLabel displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.org URL address for the application stream.branching_act_titleRozgałęzianieLabel for Branching Activitypi_activity_type_sequenceSekwencja aktywności ({0})Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblAby zmienić kliknij na nazwieInstructions for Group Naming dialog.pi_branch_tool_acts_lblNarzędzioweLabel for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.pi_condmatch_btn_lblWarunekLabel for button to open dialog to create output conditions.to_conditions_dlg_title_lblUtwórz WarunekDialog title for creating new tool output conditions.al_doneZakończLabel for dialog completion button.condmatch_dlg_cond_lst_lblWarunkiLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblUstaw warunki dla rozgałęzieńDialog title for matching conditions to branches for Tool based Branching.pi_defaultBranch_cb_lblDomyślnyCheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lblDodajLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblWyczyść wszystkieLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblUsuńLabel for button to remove condition.to_conditions_dlg_from_lblOd:Label for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblDo:Label for end value in condition range for long or numeric output values.to_conditions_dlg_range_lblZakresHeading label for section in the dialog to set numeric condition range.branch_mapping_dlg_branch_col_lblRozgałęzienieColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblWarunekColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGrupaColumn heading for showing group name of the mapping.branch_mapping_no_branch_msgNie wybrano rozgałęzieniaAlert message when adding a Mapping without a Branch (Sequence) being selected.branch_mapping_no_mapping_msgNie wybrano żadnego mapowaniaAlert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msgNie wybrano żadnego warunkuAlert message when adding a Mapping without a Condition being selected.about_popup_copyright_lbl@ 2002-2009 {0} FundacjaLabel displaying copyright statement in About dialog.branch_mapping_auto_condition_msgWszystkie pozostałe warunki zostaną dodane do rozgałęzieniaAlert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lblMapowanieHeading label for Mapping datagrid.branch_mapping_dlg_condition_col_valueZakres od {0} do {1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exactWartość {0}Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lblMapowanieLabel for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lblZdefiniuj w MoniotrzeCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblPrzypisz grupy do rozgałęzieńMap Groups to Branchesbranch_mapping_no_groups_msgNie wybrano żadnej grupyAlert message when adding a Mapping without a Group being selected.group_branch_act_lblGrupoweBranching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lblRozgałęzieniaLabel for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lblGrupyLabel for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lblNazwa grupyTitle label for Group Naming dialog.pi_activity_type_branchingRozgałęzienieActivity type for Branching in Property Inspector.pi_branch_typeTyp rozgałęzieniaProperty Inspector Branching type drop down.pi_group_naming_btn_lblNazwa grupyLabel for button that opens Group Naming dialog.sequence_act_titleSekwencjaDefault title for Sequence Activity.tool_branch_act_lblNarzędzioweBranching type label for Tool output Branching.chosen_branch_act_lblWybór nauczycielaBranching type label for Teacher choice Branching.to_condition_start_valueWartość minValue representing the min boundary value of the conditions range.to_condition_end_valueWartość maxValue representing the max boundary value of the conditions value.to_condition_invalid_value_rangeWarunek {0} pozostaje w konflikcie z innym warunkiemAlert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_directionWartość min {0} nie może być większa niż wartość max {1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msgUwaga! Lekcja zostanie usunięta. Czy chcesz zachować lekcję jako {0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continueDalejContinue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0} połączono z gałęzią. Czy chcesz kontynuować ?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_allWystępujące warunkiPhrase used at start of linked conditions alert message when clearing all.branch_mapping_dlg_condition_linked_singleWarunekPhrase used at start of linked conditions alert message when clearing a single entry.to_condition_untitled_item_lblBez nazwy {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msgProjekt zawiera nieużywane gałęzie, które zostaną usunięte. Czy chcesz kontynuować ?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_activityProtected_activity_remove_msgAby usunąć ustaw aktywność na {0}Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg{0} jest połączone z {1}Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg{0} posiada podrzędny element połączony z {1}Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_maxWiększe niż lub równe {0}Value for Condition field in mapping datagrid when Greater than option is selected.new_btn_tooltipTworzy nowy projekt. Uwaga! Bieżący projekt zostanie usunięty!Tool tip message for new button in toolbartrans_dlg_gatetypecmbTypGate type combo labelopen_btn_tooltipOtwiera nowy projektTool tip message for open button in toolbarsave_btn_tooltipZapisuje bieżący projekttool tip message for save button in toolbarcopy_btn_tooltipKopiuje zaznaczoną aktywnośćtool tip message for copy button in toolbarpaste_btn_tooltipWkleja kopię zaznaczonej aktywnościtool tip message for paste button in toolbartrans_btn_tooltipTworzy przejście pomiędzy aktywnościamitool tip message for transition button in toolbaroptional_btn_tooltipTworzy zestaw opcjonalnych aktywności.tool tip message for optional button in toolbargate_btn_tooltipTworzy punkt zatrzymaniatool tip message for gate button in toolbarbranch_btn_tooltipTworzy branch (dostępne w wersji 2.1)tool tip message for branch button in toolbarflow_btn_tooltipTworzy bramę, czyli kontrolę przejścia między aktywnościamitool tip message for flow button in toolbargroup_btn_tooltipUmożliwia Tworzenie grup i przypisanie do nich studentówtool tip message for group button in toolbarpreview_btn_tooltipPodgląd lekcjiTool tip message for preview button in toolbarcv_activity_dbclick_readonlyNie można edytować projektu tylko-do-odczytu. Zapisz kopię projektu i spróbuj ponownieAlert message when double-clicking an Activity in an open read-only designcv_readonly_lbltylko-do-odczytuLabel for top left of canvas shown when a read-only design is open.al_empty_designNie można zapisać pustego projektualert message when user want to save an empty designcv_autosave_err_msgPodczas autozapisywania projektu wystąpił błąd. W przypadku powtórzenia błędu skontaktuj się z AdministratoremAlert error message when auto-save fails.cv_autosave_rec_msgZa chwilę odzyskasz utracony i niezapisany projekt. Twój obecny projekt zostanie wyczyszczony. Kontynuować ?Message informing users that they have recovered data for a design.cv_autosave_rec_titleOstrzeżenieAlert title for auto save recovery message.mnu_file_recoverOdzyskiwanie...Menu bar Recovercv_activity_copy_invalidNie można skopiować tej aktywnościError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidNie można wyciąć tej aktywnościError message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidZaznacz aktywnośćAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidZaznacz aktywność zanim wybierzesz Otwórz/Edytuj Zawartośc Aktywności po kliknięciu prawym przyciskiem myszyalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgCzy na pewno chcesz usunąć ten plik/folderConfirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyBrak nazwy projektu. Zapis nieudanyError message when user try to save a design with no file namews_entre_file_nameWpisz nazwę projektu i wciśnij ZapiszError message when user try to save a design with no file namecv_activity_helpURL_undefinedNie można odnależć strony pomocyAlert message when a tool activity has no help url defined.cv_untitled_lblBez nazwy - 1Label for Design Title bar on canvasmnu_help_helpPomoclabel for menu bar Help - Authoring Help optionccm_open_activitycontentOtwórz/Edytuj AktywnośćLabel for Custom Context Menuccm_copy_activityKopiuj aktywnośćLabel for Custom Context Menuccm_paste_activityWklej aktywnośćLabel for Custom Context Menuccm_piWłaściwości...Label for Custom Context Menuccm_author_activityhelpPomoc dla autorówLabel for Custom Context Menuws_dlg_descriptionOpisLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateBrakDrop down default for gate typepi_daysDniDays label in property inspector for gate toolcv_close_return_to_ext_srcZamknij i powróć do {0}Button label used on close and return button in save confirm message popup.cv_eof_changes_appliedZmiany zostały zapisaneChanges have been successful applied.mnu_file_apply_changesZastosuj zmianyApply Changesvalidation_error_transitionNoActivityBeforeOrAfterPrzed lub po przejściu musi wystąpić aktywnośćA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionAktywność musi posiadać odpowiednie przejście (wejścia lub wyjścia)An activity must have an input or output transitionvalidation_error_inputTransitionType1Ta aktywność nie posiada wejściaThis activity has no input transitionvalidation_error_inputTransitionType2Wszystkie aktywności posiadają wejściaNo activities are missing their input transition.validation_error_outputTransitionType1Ta aktywność nie posiada wyjściaThis activity has no output transitionvalidation_error_outputTransitionType2Wszystkie aktywności posiadają wyjściaNo activities are missing their output transition.cv_invalid_design_on_apply_changesBrak jednego lub więcej przejścia. Zmiany nie mogą zostać zapisaneCannot apply changes. There are one or more transitions missing.apply_changes_btnZastosuj zmianyApply Changesapply_changes_btn_tooltipZastosuj zmiany i wróć do Monitoratool tip message for save button in toolbarcancel_btnAnulujToolbar - Cancel Buttoncv_activity_readOnlyAktywność nie może {0}. Aktywność jest tylko do odczytuAlert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lblEdycja na żywoLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_delUsuniętoAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modZmodyfikowanoAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgAby zakończyć edycję projekt musi być poprawnyAlert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgProjekt został zmieniony. Czy chcesz zamknąć bez zapisywania zmian ?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnlyPrzejście nie może być {0}. Przejście jest tylko do odczytuAlert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltipPowrót do Monitoratool tip message for cancel button in toolbar (edit mode)rename_btnZmień nazwęLabel for Rename Buttonsave_btnZapiszToolbar &gt; Save buttonsched_act_lblOtwierana czasowoLabel for schedule gate activitytrans_dlg_okOKOK Button on transition dialogsynch_act_lblOtwierana synchronicznieUsed as a label for the Synch Gate Activity Typeapp_chk_langloadJęzyk nie został załadowanymessage for unsuccessful language loadingapp_chk_themeloadTemat nie został załadowanymessage for unsuccessful theme loadingtk_titlePanel narzędziLabel for Activities Toolkit Paneltrans_btnPrzejścieToolbar &gt; Transition Buttontrans_dlg_cancelAnulujCancel button on transition dialogtrans_dlg_gateWybierz typ synchronizacjiHeader for the transition props dialogtrans_dlg_titlePrzejścieTitle for the transition properties dialogws_RootRootRoot folder title for workspacews_chk_overwrite_resourceUwaga! Za chwilę zastąpisz istniejący zasób!ws_click_folder_fileWybierz folder aby zapisać lub aby zastąpić projektError msg if no folder or file is selectedws_copy_same_folderŹródło i folder przeznaczenia są takie sameThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAnuluj2ws_dlg_filenameNazwa pilkuLabel for File name in workspace windowws_dlg_location_buttonŚcieżkaWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnOtwórzWsp Dia Open Button labelws_dlg_properties_buttonWłaściwościWorkspace dialogue Properties btn labelws_dlg_save_btnZapiszWsp Dia Save Button labelws_dlg_titleProjekty0ws_newfolder_cancelAnulujCancel on the new folder name diaws_newfolder_okOKOK on the new folder name diaws_newfolder_insPodaj nazwę folderaInstructions on the new name pop upws_no_permissionNie masz uprawnień do zapisu tego źródłaMessage when user does not have write permission to complete actional_alertUwagaGeneric title for Alert windowal_cancelAnulujTo Confirm title for LFErroral_confirmPokażTo Confirm title for LFErrorws_rename_insPodaj nową nazwęMessage of the new name for the userws_tree_mywspMoje projektyThe root level of the treews_tree_orgsOrganizacjeShown in the top level of the tree in the workspacews_view_license_buttonWidokTo show the license to the useract_lock_chkOdblokuj przed przypisaniem aktywności (kłódka)Alert Message if user drags the activity to locked optional activity container sys_error_msg_startWystąpił następujący błąd systemuCommon System error message starting linesys_error_msg_finishAby kontynuować uruchom ponownie moduł autora. Czy chcesz zapisać informacje o błędzie aby naprawić problem ?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titlepi_num_groupsLiczba grupNumber of groups in Property inspectorpi_parallel_titleRównoległa AktywnośćTitle for parallel activity property inspectoropt_activity_titleOpcjonalne AktywnościTitle for Optional Activity Containerlbl_num_activitiesAktywnościreplacement for word activitiesal_sendWyślijSend button label on the system error dialogal_cannot_move_activityPrzykro mi, nie możesz przenieść tej aktywności.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkNie możesz dodać bramy jako aktywności opcjonalnej.Error message when user drags gate activity over to optional containerprefix_copyof_countKopia ({0}) Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidNie możesz zapisać projektu w tym folderze. Prosze wybierz prawidłowy folder.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openProszę kliknąć na Projekt aby go otworzyćAlert message if folder tried to be opened.ws_license_lblLicencjaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblDodatkowe informacje o licencjiLabel for Licence Comment description below license drop downcv_invalid_optional_activityUsuń wszystkie przejścia {0} zanim wybierzesz aktywność opcjonalnąAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingBrak drugiej aktywności przejścia Error message when target activity for transition is missingcv_invalid_trans_target_from_activityPrzejście z {0} już istniejeError message when a transition from the activity already existcv_invalid_trans_target_to_activityPrzesunięcie do {0} już istniejeError message when a transition to the activity already existbranch_btnBranchLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnBramaLabel for Flow button in Toolbarmnu_file_importImportMenu bar Importmnu_file_exportEksportMenu bar Exportcv_design_export_unsavedNie możesz eksportować nie zapisanego projektu.Alert message when trying to export can unsaved design.cv_design_unsavedProjekt został zmieniony. Kontynuować bez zapisywania ?Alert message when opening/importing when current design on canvas is unsaved or modified.ws_chk_overwrite_existingTen folder już posiada plik o nazwie {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderNie możesz użyć tego folderuAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitWyjdźFile Menu Exitcopy_btnKopiujToolbar &gt; Copy Buttonws_no_file_openNie znaleziono plikuAlert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceNie posiadasz praw do kołowej sekwencjiError message when a transition from one activity to another is creating a circular loopbin_tooltipPrzesuń aktywność na kosz aby usunąć ją z projektuTool tip message for canvas binapp_fail_continueProgram nie może kontynuować pracy. Proszę skontaktować się z pomocą technicznąmessage if application cannot continue due to any errorchosen_grp_lblWybranyLabel for the grouping drop down in the PropertyInspectorcv_show_validationProblemyThe button on the confirm dialogcv_invalid_design_savedProjekt nie jest poprawny, ale został zapisany, wciśnij 'Pokaż' aby dowiedzieć się więcejMessage when an invalid design has been savedcv_invalid_trans_targetNie można utworzyć przejścia do tego obiektuError message for when transition tool is dropped outside of valid target activitycv_valid_design_savedGratulacje! - Twój projekt został pomyślnie zapisanyMessage when a valid design has been savedact_tool_titlePanel narzędziTitle for Activity Toolkit Panel \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/pt_BR_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleCaixa de ferramentas para atividadesTitle for Activity Toolkit Panelal_alertAlertaGeneric title for Alert windowal_cancelCancelarTo Confirm title for LFErroral_confirmConfirmarTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadO idioma não pôde ser carregadomessage for unsuccessful language loadingapp_chk_themeloadO tema não pôde ser carregadomessage for unsuccessful theme loadingapp_fail_continueA aplicação não pode continuar. Por favor, entre em contato com o suportemessage if application cannot continue due to any errorchosen_grp_lblEscolhidoLabel for the grouping drop down in the PropertyInspectorcopy_btnCopiarToolbar &gt; Copy Buttoncv_invalid_design_savedo Seu design não é valido, mas ele foi salvo, clique em 'edição' para ver o que está errado.Message when an invalid design has been savedcv_invalid_trans_targetVocê não pode criar uma transição para este objetoError message for when transition tool is dropped outside of valid target activitycv_show_validationEdiçõesThe button on the confirm dialogcv_valid_design_savedParabéns! - Seu design foi salvoMessage when a valid design has been saveddb_datasend_confirmObrigado por enviar dados para o servidorMessage when user sucessfully dumps data to the serverdelete_btnApagarLabel for Delete buttongate_btnAberturaToolbar &gt; Gate Buttongroup_btnGrupoToolbar &gt; Group Buttongrouping_act_titleAtividade em grupoDefault title for the grouping activityld_val_activity_columnAtividadeThe heading on the activity in the ValidationIssuesDialogld_val_doneConcluídoThe button label for the dialogld_val_issue_columnEdiçãoThe heading on the issue in the ValidationIssuesDialogld_val_titleValidação de ediçõesThe title for the dialoglicense_not_selectedPor favor, selecione uma licença para esse designShown if no license is selected in the drop down in workspacemnu_editEditarMenu bar Editmnu_edit_copyCopiarMenu bar Edit &gt; Copymnu_edit_cutCortarMenu bar Edit &gt; Cutmnu_edit_pasteColarMenu bar Edit &gt; Pastemnu_edit_redoRefazerMenu bar Edit &gt; Redomnu_edit_undoDesfazerMenu bar Edit &gt; Undomnu_fileArquivoMenu bar Filemnu_file_closeFecharMenu bar Closemnu_file_newNovoMenu bar Newmnu_file_openAbrirMenu bar Openmnu_file_saveSalvarMenu bar savemnu_file_saveasSalvar comoMenu bar Save asmnu_helpAjudaMenu bar Helpmnu_help_abtSobreMenu bar Aboutmnu_toolsFerramentasMenu bar Toolsmnu_tools_optDesenhar caminho opcionalMenu bar Optionalmnu_tools_prefsPreferênciasMenu bar preferencesmnu_tools_transDesenhar a transiçãoMenu bar draw transitionnew_btnNovoToolbar &gt; New Buttonnew_confirm_msgVocê tem certeza que deseja apagar o design atual?Msg when user clicks new while working on the existing designnone_act_lblNenhumaNo gate activity selectedopen_btnAbrirToolbar &gt; Open Buttonoptional_btnOpcionalToolbar &gt; Optional Buttonpaste_btnColarToolbar &gt; Paste Buttonperm_act_lblPermissãoLabel for permission gate activitypi_activity_type_gateAtividade de aberturaActivity type for gate in PIpi_activity_type_groupingAtividade em grupoActivity type for grouping in Property Inspectorpi_definelaterDefinir depoisLabel for Define later for PIpi_end_offsetFinalizar aberturaEnd offset labelpi_group_typeTipe de grupoProperty Inspector Grouping type drop downpi_hoursHorasHours label in Property Inspectorpi_lbl_currentgroupGrupo atualCurrent grouping label for PIpi_lbl_descDescriçãoDescription Label for PIpi_lbl_groupAtividade em grupoGrouping label for PIpi_lbl_titleTítuloTitle label for PIpi_max_actAtividades máximaslabel for maximum Activitiespi_min_actAtividades mínimaslabel for Minimum activitiespi_minsMinutosMins label in teh property inspectorpi_no_groupingNenhumCombo title for no groupingpi_num_learnersNúmero de alunosPI Num learners labelpi_optional_titleAtividade opcionalTitle for oprional activity property inspectorpi_runofflineExecutar offlineLabel for Run Oflinepi_start_offsetIniciar aberturaStart offset labelpi_titlePropriedadesOn the title bar of the PIprefix_copyofCopiar dePrefix for copy paste command for canvas activitiesprefs_dlg_cancelCancelar6prefs_dlg_lng_lblIdioma7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titlePreferências4preview_btnVisualizarToolbar &gt; Preview Buttonproperty_inspector_titlePropriedadesOn the title bar of the PIrandom_grp_lblAleatórioLabel for the grouping drop down in the PropertyInspectorrename_btnRenomearLabel for Rename Buttonsave_btnSalvarToolbar &gt; Save buttonsched_act_lblRelaçãoLabel for schedule gate activitysynch_act_lblSincronizarUsed as a label for the Synch Gate Activity Typetk_titleCaixa de ferramentas de atividadesLabel for Activities Toolkit Paneltrans_btnTransiçãoToolbar &gt; Transition Buttontrans_dlg_cancelCancelarCancel button on transition dialogtrans_dlg_gateSincronizaçãoHeader for the transition props dialogtrans_dlg_gatetypecmbTipoGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleTransiçãoTitle for the transition properties dialogws_RootRaizRoot folder title for workspacews_chk_overwrite_resourceAtenção, você está para sobrescrever um recurso!ws_click_folder_filePor favor, selecione uma pasta para salvá-lo dentro, ou um design para sobrescrevê-loError msg if no folder or file is selectedws_copy_same_folderAs pastas de origem e destino são as mesmasThe user has tried to drag and drop to the same placews_dlg_cancel_buttonCancelar2ws_dlg_filenameNome do arquivoLabel for File name in workspace windowws_dlg_location_buttonLocalWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnAbrirWsp Dia Open Button labelws_dlg_properties_buttonPropriedadesWorkspace dialogue Properties btn labelws_dlg_save_btnSalvarWsp Dia Save Button labelws_dlg_titleÁrea de trabalho0ws_newfolder_cancelCancelarCancel on the new folder name diaws_newfolder_insPor favor, digite um nome para a nova pastaInstructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionDesculpe, você não tem permissão para atualizar esse arquivoMessage when user does not have write permission to complete actionws_rename_insPor favor, digite um novo nomeMessage of the new name for the userws_tree_mywspMinha área de trabalhoThe root level of the treews_tree_orgsOrganizaçõesShown in the top level of the tree in the workspacews_view_license_buttonVisualizarTo show the license to the useract_lock_chkPor favor, destrave a caixa atividade opcional antes de propor essa atividade como opcionalAlert Message if user drags the activity to locked optional activity container sys_error_msg_startOcorreu o seguinte erro de sistema:Common System error message starting linesys_error_msg_finishVocê precisa reiniciar o LAMS Author para coninuar. Você gostaria de salvar as informações sobre esse erro para ajudar a corrigí-lo?Common System error message finish paragraphsys_errorErro de sistemaSystem Error elert window titlepi_num_groupsNúmero de gruposNumber of groups in Property inspectorpi_parallel_titleAtividade ParalelaTitle for parallel activity property inspectoropt_activity_titleAtividade OpcionalTitle for Optional Activity Containerlbl_num_activitiesAtividadesreplacement for word activitiesal_sendEnviarSend button label on the system error dialogal_cannot_move_activityDesculpe, você não pode mover essa atividade.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkVocê não pode adicionar uma atividade ponte como uma atividade opcional.Error message when user drags gate activity over to optional containerprefix_copyof_countCópia ({0}) dePrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidVocê não pode salvar um design nesta pasta. Favor selecionar uma sub-pasta válida.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openPor favor, clique sobre um Design para abrir.Alert message if folder tried to be opened.ws_license_lblLicençaLabel for Licence drop down on workspace properties tab viewws_license_comment_lblInformação Adicional sobre a LicençaLabel for Licence Comment description below license drop downcv_invalid_optional_activityRemover para/de transições de {0}, antes de registrá-la como uma atividade opcional.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingA segunda atividade da Transição está faltando.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityUma Transição de {0} já existeError message when a transition from the activity already existcv_invalid_trans_target_to_activityUma Transição para {0} já existeError message when a transition to the activity already existbranch_btnSeçãoLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFluxoLabel for Flow button in Toolbarmnu_file_importImportarMenu bar Importcv_design_export_unsavedVocê não pode exportar um desing antes de salvá-lo.Alert message when trying to export can unsaved design.cv_design_unsavedO design na tela mudou. Continuar sem salvar?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExportarMenu bar Exportws_chk_overwrite_existingEsta pasta já contém um arquivo chamado {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderEsta pasta não pode ser usada.Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitSairFile Menu Exitws_no_file_openArquivo não encontrado.Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceVocê não está autorizado a ter uma sequência circularError message when a transition from one activity to another is creating a circular loopbin_tooltipArraste uma atividade sobre este compartimento para removê-la da seqüência da atividade.Tool tip message for canvas binnew_btn_tooltipLimpar a seqüência atual e deixar o espaço de trabalho pronto para o usoTool tip message for new button in toolbaropen_btn_tooltipMostra a caixa de diálogo de arquivo para abrir uma Seqüência de AtividadeTool tip message for open button in toolbarsave_btn_tooltipSalvar rapidamente a Seqüência da Atividade atualtool tip message for save button in toolbarcopy_btn_tooltipCopiar a atividade selecionadatool tip message for copy button in toolbarpaste_btn_tooltipColar uma cópia da atividade selecionadatool tip message for paste button in toolbartrans_btn_tooltipUse a caneta para desenhar transições entre atividades (ou pressione a tecla CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipCriar um conjunto de atividades opcionais.tool tip message for optional button in toolbargate_btn_tooltipCriar um ponto de paradatool tip message for gate button in toolbarbranch_btn_tooltipCriar uma seção (disponível no LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltipCriar um fluxo de controle de atividadestool tip message for flow button in toolbargroup_btn_tooltipCriar um Agrupamento de atividadetool tip message for group button in toolbarpreview_btn_tooltipPré-visualizar sua seqüência como aluno.Tool tip message for preview button in toolbarcv_activity_dbclick_readonlyVocê não está habilitado a editar ferramentas de um design somente leitura. Favor salvar uma cópia do design e tentar novamente.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblSomente LeituraLabel for top left of canvas shown when a read-only design is open.al_empty_designDesculpe, você não pode salvar um design vazioalert message when user want to save an empty designcv_autosave_err_msgUm erro ocorreu durante o salvamento automático do seu design. Se o erro persistir, favor contactar o Administrador do Sistema.Alert error message when auto-save fails.cv_autosave_rec_msgVocê está para recuperar um design perdido ou não salvo. Seu design atual será limpo. Continuar?Message informing users that they have recovered data for a design.cv_autosave_rec_titleAlertaAlert title for auto save recovery message.mnu_file_recoverRecuperar...Menu bar Recovercv_activity_copy_invalidDesculpe! Você não está autorizado a copiar esta atividade.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidDesculpe! Você não está autorizado a recortar esta atividade.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidDesculpe! Você deve selecionar a atividade antes de clicar em copiarAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidDesculpe! Você deve selecionar a atividade antes de clicar no item do menu Abrir/Editar Conteúdo de Atividade.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgVocê tem certeza que deseja deletar este arquivo / pasta?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyDesculpe! Não é permitido salvar um design em atribuir um nome ao arquivo.Error message when user try to save a design with no file namews_entre_file_namePor favor, entre com o nome do design, e depois clique no botão salvar.Error message when user try to save a design with no file namecv_activity_helpURL_undefinedNão é possível encontrar a página de ajuda para {0}Alert message when a tool activity has no help url defined.cv_untitled_lblSem título - 1Label for Design Title bar on canvasmnu_help_helpAjuda Autoraçãolabel for menu bar Help - Authoring Help optionccm_open_activitycontentAbrir/Editar conteúdo de atividadeLabel for Custom Context Menuccm_copy_activityCopiar atividadeLabel for Custom Context Menuccm_paste_activityColar atividadeLabel for Custom Context Menuccm_piInspetor de propriedade...Label for Custom Context Menuccm_author_activityhelpAjuda em Autorar AtividadeLabel for Custom Context Menuws_dlg_descriptionDescriçãoLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateNenhumDrop down default for gate typepi_daysDiasDays label in property inspector for gate toolcv_close_return_to_ext_srcFeche e retorne para {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/ru_RU_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pi_optional_titleОпциональное заданиеopt_activity_titleОпциональное заданиеtk_titleИнструментарий для заданийccm_open_activitycontentОткрыть/Редактировать содержание заданияpi_num_learnersКоличество учениковws_click_virtual_folderНевозможно использовать эту директорию.group_btn_tooltipСоздать групповое заданиеpi_daysДнейcv_invalid_optional_activityПеред тем как делать это задание опциональным, удалите все переходы на него и с него.trans_btn_tooltipИспользуйте эту ручку для создания перехода между заданиями (или удерживайте клавишу CTRL)ccm_copy_activityКопировать заданиеccm_paste_activityВставить заданиеccm_piИнспектор свойств...pi_parallel_titleПараллельное заданиеws_dlg_descriptionОписаниеcv_untitled_lblБез названия - 1mnu_file_recoverВосстановление...cv_invalid_trans_target_from_activityПереход от {0} уже существуетcv_activity_helpURL_undefinedСтраница помощи для {0} не найдена ws_chk_overwrite_existingЭтот каталог уже содержит файл с именем {0}optional_btn_tooltipСоздать ряд опциональных заданий.mnu_file_apply_changesПрименить измененияapply_changes_btnПрименить измененияcancel_btnОтменитьcv_element_readOnly_action_delудаленоcv_element_readOnly_action_modизмененоmnu_file_finishЗавершитьabout_popup_title_lblО - {0}pi_start_offsetОткрыть затворpi_lbl_groupГруппировкаws_tree_orgsМои группыabout_popup_version_lblВерсияnone_act_lblНи одногоgate_btnЗатворpi_end_offsetЗакрыть затворsave_btn_tooltipБыстрое сохранение текущей последовательности заданийcopy_btn_tooltipКопировать выделенное заданиеnew_btn_tooltipОчистить текущую последовательность и восстановить рабочее пространство для дальнейшего использованияcv_trans_target_act_missingОтсутствует второе задание для перехода.ccm_author_activityhelpПомощь по Редактору заданийpaste_btn_tooltipВставить копию выделенного заданияact_tool_titleИнструментарий Заданийld_val_activity_columnЗаданиеpi_activity_type_gateЗадание затвораpi_activity_type_groupingГрупповое заданиеcv_design_export_unsavedВы не можете экспортировать не сохраненный проект.cv_activity_copy_invalidИзвините! У Вас нет прав скопировать это дочернее задание.pi_lbl_currentgroupТекущая группировкаws_chk_overwrite_resourceВнимание, Вы собираетесь перезаписать ресурс!open_btn_tooltipПоказать диалог выбора файлов для открытия последовательности заданийcv_activity_cut_invalidИзвините! У Вас нет прав вырезать это дочернее задание.al_cannot_move_activityИзвините, Вы не можете переместить это задание.pi_group_typeГруппировка типаws_click_folder_fileПожалуйста, выберите Каталог для сохранения или Проект для его перезаписиws_no_permissionЖаль, Вы не имеете прав на запись в этот ресурсtrans_dlg_titleПереходsys_error_msg_finishВы, возможно, должны перезапустить LAMS Author , чтобы продолжить. Вы хотите сохранить следующую информацию об этой ошибке, чтобы помочь установить причину этой проблемы?ws_del_confirm_msgВы уверены, что хотите удалить этот файл/папку?mnu_file_exitВыходapp_chk_langloadЯзыковые данные не были загруженыapp_fail_continueВыполнение программы не может быть продолжено. Пожалуйста свяжитесь с группой поддержкиchosen_grp_lblВыбратьcv_invalid_trans_targetВы не можете создать переход к этому объектуmnu_edit_cutВырезатьmnu_file_newНовыйnew_btnНовыйnew_confirm_msgВы уверены, что хотите заменить текущий проект пустым новым?pi_runofflineВыполнить автономноal_activity_copy_invalidИзвините! Вы должны выбрать задание, перед тем как его копироватьmnu_tools_transДобавить переходprefix_copyofКопироватьlicense_not_selectedВы не выбрали лицензии. Сделайте это, пожалуйста.mnu_tools_optСоздать контейнер опциональных заданийprefs_dlg_cancelОтменитьprefs_dlg_lng_lblЯзыкprefs_dlg_theme_lblТемаpreview_btnПредварительный просмотрproperty_inspector_titleСвойстваrandom_grp_lblСлучайноrename_btnПереименоватьsave_btnСохранитьsched_act_lblРасписаниеsynch_act_lblСинхронизироватьtrans_dlg_cancelОтменитьtrans_dlg_gateСинхронизацияtrans_dlg_gatetypecmbТипws_RootКорневой каталогact_lock_chkПеред тем как делать это задание опциональным, разблокируйте, пожалуйста, контейнер опциональных заданий.ws_copy_same_folderКаталоги Источника и Получателя совпадаютws_dlg_cancel_buttonОтменитьws_dlg_filenameИмя файлаws_dlg_location_buttonРасположениеws_dlg_open_btnОткрытьws_dlg_properties_buttonСвойстваws_dlg_save_btnСохранитьws_dlg_titleРабочая средаws_newfolder_cancelОтменитьws_newfolder_insПожалуйста введите новое имя папкиws_rename_insПожалуйста введите новое имяws_tree_mywspМоя рабочая средаws_view_license_buttonПосмотретьsys_error_msg_startПроизошла следующая ошибка системы:sys_errorСистемная ошибкаal_sendОтправитьws_license_comment_lblДополнительные сведения о лицензииmnu_help_helpСоздание помощиws_click_file_openПожалуйста нажмите на Проект, чтобы его открыть.pi_num_groupsЧисло группcv_invalid_trans_target_to_activityПереход к {0} уже существуетcv_design_unsavedПроект изменен. Продолжить без сохранения?gate_btn_tooltipСоздать точку остановкиmnu_file_exportЭкспортws_no_file_openФайлы не найдены.mnu_file_importИмпортcv_readonly_lblТолько чтениеcv_autosave_rec_titleПредупреждениеpi_lbl_titleЗаглавиеpi_minsМинутыal_alertПредупреждениеal_cancelОтменитьal_confirmПодтвердитьapp_chk_themeloadДанные темы не были загруженыcopy_btnКопироватьcv_show_validationРазрешение проблемcv_valid_design_savedПоздравления! - Ваш проект прошёл верификацию и был сохраненdb_datasend_confirmСпасибо за Отправку данных на серверdelete_btnУдалитьgroup_btnГруппаgrouping_act_titleГруппироватьld_val_doneЗакончитьld_val_issue_columnПроблемаld_val_titleКонтроль ошибокmnu_editПравкаmnu_edit_copyКопироватьmnu_edit_pasteВставитьmnu_edit_redoВернутьmnu_edit_undoОтменитьmnu_fileФайлmnu_file_closeЗакрытьal_okОКmnu_file_openОткрытьmnu_file_saveСохранитьmnu_file_saveasСохранить как...mnu_helpПомощьmnu_help_abtО LAMSmnu_toolsСервисopen_btnОткрытьoptional_btnОпцииpaste_btnВставитьperm_act_lblПраваpi_hoursЧасыpi_lbl_descОписаниеpi_no_groupingНетpi_titleСвойстваsequence_act_titleПоследовательностьpi_condmatch_btn_lblЗадать условияcondmatch_dlg_cond_lst_lblУсловияpi_defaultBranch_cb_lblпо умолчаниюto_conditions_dlg_add_btn_lbl+ Добавитьto_conditions_dlg_clear_all_btn_lblОчистить всеto_conditions_dlg_remove_item_btn_lbl - Удалитьto_conditions_dlg_from_lblотto_conditions_dlg_to_lblдоto_conditions_dlg_range_lblПромежутокbranch_mapping_dlg_condition_col_lblУсловиеbranch_mapping_dlg_group_col_lblГруппаbranch_mapping_dlg_condition_col_valueВ промежутке от {0} до {1}ws_license_lblЛицензияws_file_name_emptyИзвините! Вы не можете сохранить проект с неопределенным названием файла.al_empty_designИзвините, Вы не можете сохранить пустой проектtrans_btnПереходgroupmatch_dlg_groups_lst_lblГруппыto_condition_start_valueначальное значениеto_condition_end_valueконечно значениеal_continueПродолжитьpreview_btn_tooltipПредварительный просмотр вашей последовательности, так как это будет показано для учениковal_activity_openContent_invalidПрежде чем нажать на пункт меню Открыть/Редактировать содержание задания, Вы должны выбрать какое-нибудь задание.cv_invalid_trans_circular_sequenceНельзя создавать замкнутые последовательностиbranch_mapping_dlg_condition_linked_singleЭто условиеoptional_act_btnЗаданиеoptional_seq_btnПоследовательностьlbl_num_sequences{0} - Последовательностейpi_actЗаданияpi_seqПоследовательностиpi_max_actМаксимум {0}pi_min_actМинимум {0}ws_dlg_ok_buttonОКtrans_dlg_okОКws_newfolder_okОКprefs_dlg_okОКbranching_act_titleРазветвлениеpi_activity_type_sequenceПоследовательностьcondmatch_dlg_title_lblОпределить соотвествие ветвей условиямchosen_branch_act_lblВыбор преподавателяpi_define_monitor_cb_lblОпределить позжеgroupmatch_dlg_title_lblОпределить соотвествие групп ветвямbranch_btnРазветвлениеbranch_mapping_no_branch_msgНе была выбрана ветвь.branch_mapping_dlg_branch_col_lblВетвьbranch_mapping_auto_condition_msgВсе оставшиеся Условия будут относиться к дефолтовой Ветви.branch_mapping_dlg_branches_lst_lblВетвиsequence_act_title_new{0} {1}to_conditions_dlg_condition_items_value_col_lblУсловиеclose_mc_tooltipСвернутьws_dlg_insert_btnВставитьbranch_mapping_dlg_branch_item_default{0} (по умолчанию)refresh_btnОбновитьpi_tool_output_matching_btn_lblОпределить соотвествия условий ветвямto_conditions_dlg_defin_user_defined_typeзадано пользователемcv_autosave_rec_msgВы выбрали восстановление предыдущего или несохраненного проекта. Ваш текущий проект будет удален. Желаете продолжить?cv_close_return_to_ext_srcЗакрыть и вернуться к {0}cancel_btn_tooltipВернуться в мониторингstream_reference_lblLAMSto_conditions_dlg_defin_item_fn_lbl{0} ({1})to_conditions_dlg_lt_lblМеньше либо равноbranch_mapping_dlg_condition_col_value_minМеньше либо равно {0}to_conditions_dlg_defin_long_typeдиапазонto_conditions_dlg_defin_bool_typeправда/ложьto_conditions_dlg_options_item_header_lbl[ Условия ]to_conditions_dlg_gte_lblБольше либо равноto_conditions_dlg_lte_lblМеньше либо равноbranch_mapping_dlg_condition_col_value_maxБольше либо равно {0}lbl_num_activities{0} - Заданияcv_gateoptional_hit_chkВы не можете сделать Затвор опциональным заданиемtrans_dlg_nogateНе заданal_doneЗакончитьbranch_mapping_no_condition_msgНе было выбрано Условие.branch_mapping_dlg_condition_col_value_exactЗначение {0}branch_mapping_no_groups_msgНе была выбрана Группа.to_condition_invalid_value_direction {0} не может быть больше, чем {1}.is_remove_warning_msgВНИМАНИЕ: Урок будет удален. Вы хотите сохранить его как {0}? branch_mapping_dlg_condition_linked_allУсловияcv_activityProtected_activity_remove_msgЧтобы удалить это задание, снимите с него отметку {0}.cv_activityProtected_activity_link_msg{0} соединен с {1}.cv_activityProtected_child_activity_link_msgУ {0} существует потомок, соединенный с {1}.optional_seq_btn_tooltipСоздать ряд опциональных последовательностей.flow_btnДвижениеact_seq_lock_chkПеред тем как привязывать это задание к опциональной последовательности, разблокируйте, пожалуйста, контейнер опциональных заданий.branch_mapping_no_mapping_msgНи одного Соотвествия выбрано не было.pi_group_matching_btn_lblОпределить соотвествия групп ветвямal_activity_paste_invalidИзвините, но Вы не можете вставить задание данного типаpreview_btn_tooltip_disabledЧтобы войти в режим Предварительного просмотра Вашего проекта, Вам сначала необходимо сохранить его, а затем нажать кнопку Предварительный просмотрprefix_copyof_countКопия ({0}) ws_entre_file_nameВведите, пожалуйста, имя проекта, а затем нажмите на кнопку Сохранить.validation_error_transitionNoActivityBeforeOrAfterПереход должен иметь задание до или после себяvalidation_error_activityWithNoTransitionЗадание должно иметь входящий или исходящий переходvalidation_error_inputTransitionType1На это задание нет переходаvalidation_error_inputTransitionType2У всех заданий есть входящие переходыvalidation_error_outputTransitionType1Нет перехода из этого заданияvalidation_error_outputTransitionType2У всех заданий есть исходящие переходыcv_invalid_design_on_apply_changesНевозможно применить изменения. Отсутствует один или более переходовapply_changes_btn_tooltipПрименить изменения в проекте и вернуться в мониторингcv_activity_readOnlyЗадание не может быть {0}. Задание только для чтения.cv_eof_finish_invalid_msgЧтобы завершить редактирование, проект не должен содержать ошибокcv_eof_finish_modified_msgВаш проект был изменен. Завершить его без сохранения?cv_trans_readOnlyПереход не может быть {0}. Объект, на который осуществляется переход, только для чтения.about_popup_trademark_lbl{0} - торговая марка {0} Foundation ( {1} ).stream_urlhttp://{0}foundation.orgto_condition_untitled_item_lblБезымянный {0}pi_optSequence_remove_msg_titleУдаленные последовательностиpi_no_seq_actНомер последовательностиws_save_folder_invalidВы не можете сохранить проект в этой директории. Выберите, пожалуйста, подходящую поддиректорию.cv_activity_dbclick_readonlyВы не можете редактировать инструменты, если проект только для чтения. Сохраните, пожалуйста, копию проекта и попробуйте снова.activityDrop_optSequence_error_msgПоместите, пожалуйста, задание в одну из последовательностей.opt_activity_seq_titleКонтейнер опциональных заданийto_conditions_dlg_condition_items_name_col_lblИмяgroupnaming_dialog_col_groupName_lblИмя группыmnu_file_insertdesignВставить/Слить...redundant_branch_mappings_msgПроект содержит неиспользованные соответствия, которые будут удалены. Продолжить?pi_optSequence_remove_msgУдаляемые последовательности могут содержать задания. Эти задания также будут удалены. Все равно удалить?flow_btn_tooltipСоздать задания, управляющие движениемcv_autosave_err_msgПроизошла ошибка при попытке австосохранить Ваш проект. Увеличьте, пожалуйста, размер памяти в настройках вашего Flash Player.cv_edit_on_fly_lblРедактирование "на лету"about_popup_license_lblЭто программа является free software; Вы можете распространять и/или изменять ее при условиях соответствия GNU General Public License version 2 опубликованной Free Software Foundation. {0}gpl_license_urlwww.gnu.org/licenses/gpl.txtgroupnaming_dialog_instructions_lblЧтобы поменять имя, щекните на нем.pi_branch_tool_acts_lblИнструментgroup_branch_act_lblНа основе группgroupnaming_dlg_title_lblНазвания группpi_group_naming_btn_lblНазвания группto_condition_invalid_value_range{0} не может пересекаться с диапазоном другого Условия.ta_iconDrop_optseq_error_msgВ контейнере опциональных заданий нет последовательностей.cv_invalid_optional_seq_activityПеред тем как привязывать {0} к опциональной последовательности, удалите все переходы, связанные с ним.cv_invalid_optional_activity_no_branchesПеред тем как делать {0} опциональным заданием, удалите все разветвления, связанные с ним.pi_mapping_btn_lblЗадать соответствияto_conditions_dlg_title_lblСоздать результирующие Условияto_conditions_dlg_defin_item_header_lbl[Выберите тип результатов]tool_branch_act_lblРезультаты ученикаgrouping_invalid_with_common_names_msgВы не можете сохранить проект, так как групповое задание '{0}' содержит группы с одинаковыми именами. Переименуйте их, пожалуйста, и попробуйте снова.branch_mapping_dlg_match_dgd_lblСоотвествияbranch_mapping_dlg_condtion_items_update_defaultConditions_zeroНевозможно сохранить, так как не заданы Условия. Вам, возможно, потребcv_design_insert_warningКак только вы сольете новую последовательность со старой, у вас не будет возможности отменить это действие - так как ваша новообразованная последовательность будет тутже автоматически сохранена. Чтобы вернуться назад, вам придется удалить все новые задания вручную и затем сохранить. Нажмите кнопку Отменить - чтобы оставить вашу последовательность неизмененной. ОК - чтобы продожить слияние.pi_branch_typeРазветвляющийсяpi_activity_type_branchingРазветвляющиеся заданияcv_invalid_optional_seq_activity_no_branchesПеред тем, как добавлять {0} к опциональной последовательности, удалите все ветви, в которых оно участвует.branch_mapping_dlg_condition_linked_msg{0} соединен с уже существующей ветвью. Продолжить?condmatch_dlg_message_lblЧтобы задать ветвь "по умолчанию", щелкните на флажке "по умолчанию" в свойствах соотвествующей ветви.to_conditions_dlg_condition_items_update_defaultConditionsУсловия для выбранных результирующих определений будут сохранены. Но при этом все ссылки на существующие ветви будут удалены. Продолжить?learner_choice_grp_lblПо выбору ученикаabout_popup_copyright_lbl© 2002-2009 {0} Foundation.bin_tooltipЧтобы удалить задание из последовательности, перетащите его в корзину.cv_eof_changes_appliedИзменения успешно сохранены.competence_editor_add_competence_btnДобавитьws_dlg_date_modified_lblИзменено: {0}ws_save_title_reserved_charsЗаголовок не может содержать символы: {0}mnu_file_import_communityИмпорт из LAMS Community...view_students_before_selectionПросмотреть учеников перед выбором?arrange_act_btnВыстроить заданияsupport_act_btnВспомогательныеsupport_act_btn_tooltipСоздать набор опциональных вспомогательных заданий.support_act_titleВспомогательное заданиеsupport_msg_no_connectionВспомогательные задания не могут быть соеденены с другими заданиямиsupport_msg_invalid_childЗадания типа {0} не могут быть добавлены как вспомогательные заданияsupport_msg_max_children_reachedНе возможно перетащить задание: {0}. Вспомогательное задание позволяет максимум {1} дочерних заданий.support_msg_cannot_be_childНевозможно перетащить вспомогательное задание внутрь другого задания.pi_branch_tool_acts_default--Выбрать--cv_invalid_trans_diff_branchesНевезможно создать переход между заданиями в разных разветвлениях.cv_invalid_branch_target_to_activityРазветвление к {0} уже существует.cv_invalid_branch_target_from_activityРазветвление от {0} уже существует.cv_invalid_trans_closed_sequenceНевозможно создать новый переход к закрытой последовательности.al_group_name_invalid_blankНазвания групп не могут быть пустыми.al_group_name_invalid_existingНазвания групп должны быть уникальными.pi_equal_group_sizesРавные размеры группcompetence_editor_dlgРедактор соответствийcompetences_lblСоответствияcompetence_def_dlgДиалог определения соответствийcompetence_editor_warning_title_existsСоответствие с заголовком {0} уже существует.competence_editor_warning_title_blankЗаголовок соответствия не может быть пустым.map_comptence_btnОпределить соответствияcompetence_mappings_btnОпределения соответствийcompetences_mapped_to_act_lblСоответствияmap_gate_conditions_btnОпределить условия затвораgate_mapping_auto_condition_msgВсе оставшиеся условия будут определены к выбраным затворам с закрытым состоянием.gate_openОткрытgate_closedЗакрытgradebook_output_typeВыходные данные Журналаmnu_tools_prefsНастройкиbranch_btn_tooltipСоздать разветвленияcv_invalid_design_savedВаш проект не прошел верификацию, но он был сохранен, щелкните 'Разрешение проблем', чтобы увидеть причины этого.pi_definelaterОпределить в мониторингеprefs_dlg_titleНастройкиal_cannot_move_to_diff_opt_seqЧтобы переместить задание в другую последовательность в опциональных последовательностях, сначала перетащите задание вне поля опциональной последовательности и затем перетащите его на новое положение внутри опциональной последовательности.competence_editor_warning_competence_mappedСоответствие, которое вы пытаетесь удалить сопоставлено к одному или более заданиям. Удаление соответствия приведет к удалению сопоставления. Вы хотите продолжить?al_activity_view_competence_mappings_invalidВыберите задание, чтобы просмотреть определения соответствий.grp_chk_clear_branch_mappingsПредупреждение: Это действие очистит все существующие определения групп к ветвлениям в данном задании. Вы хотите продолжить? \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/sv_SE_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleVerktyg - aktiviteterTitle for Activity Toolkit Panelal_alertOBS!Generic title for Alert windowal_cancelAvbrytTo Confirm title for LFErroral_confirmBekräftaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSpråkdata har inte laddats inmessage for unsuccessful language loadingapp_chk_themeloadData om teman har inte laddats inmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan inte fortsätta. Var snäll och kontakta supportmessage if application cannot continue due to any errorchosen_grp_lblValdLabel for the grouping drop down in the PropertyInspectorcopy_btnKopieraToolbar &gt; Copy Buttoncv_invalid_design_savedDin design är ännu inte giltig men den har sparats. Klicka på 'Kvarvarande problem' för att se vilket felet är. Message when an invalid design has been savedcv_invalid_trans_targetDet går inte skapa en övergång till det här objektetError message for when transition tool is dropped outside of valid target activitycv_show_validationMer detaljerThe button on the confirm dialogcv_valid_design_savedGratulerar! - Din design är giltig och den har sparats.Message when a valid design has been saveddb_datasend_confirmDina data har framgångsrikt sänts till servern.Message when user sucessfully dumps data to the serverdelete_btnTa bortLabel for Delete buttongate_btnGrindToolbar &gt; Gate Buttongroup_btnGruppToolbar &gt; Group Buttongrouping_act_titleBilda grupperDefault title for the grouping activityld_val_activity_columnAktivitetThe heading on the activity in the ValidationIssuesDialogld_val_doneKlarThe button label for the dialogld_val_issue_columnDetaljThe heading on the issue in the ValidationIssuesDialogld_val_titleDetaljer angående valideringThe title for the dialoglicense_not_selectedVar snäll och välj en licens för den här designenShown if no license is selected in the drop down in workspacemnu_editRedigeraMenu bar Editmnu_edit_copyKopieraMenu bar Edit &gt; Copymnu_edit_cutKlipp utMenu bar Edit &gt; Cutmnu_edit_pasteKlistra inMenu bar Edit &gt; Pastemnu_edit_redoGör omMenu bar Edit &gt; Redomnu_edit_undoÅngraMenu bar Edit &gt; Undomnu_fileFilMenu bar Filemnu_file_closeStängMenu bar Closemnu_file_newNyMenu bar Newmnu_file_openÖppnaMenu bar Openmnu_file_saveSparaMenu bar savemnu_file_saveasSpara somMenu bar Save asmnu_helpHjälpMenu bar Helpmnu_help_abtOmMenu bar Aboutmnu_toolsVerktygMenu bar Toolsmnu_tools_optRita valfriMenu bar Optionalmnu_tools_prefsInställningarMenu bar preferencesmnu_tools_transRita övergångMenu bar draw transitionnew_btnNyToolbar &gt; New Buttonnew_confirm_msgÄr du säker på att du vill rensa bort din design från skärmen?Msg when user clicks new while working on the existing designnone_act_lblIngenNo gate activity selectedopen_btnÖppnaToolbar &gt; Open Buttonoptional_btnValfriToolbar &gt; Optional Buttonpaste_btnKlistra inToolbar &gt; Paste Buttonperm_act_lblTillståndLabel for permission gate activitypi_activity_type_gateGrind aktivitetActivity type for gate in PIpi_activity_type_groupingAktivitet för att bilda grupperActivity type for grouping in Property Inspectorpi_definelaterDefiniera senareLabel for Define later for PIpi_end_offsetStäng grindEnd offset labelpi_group_typeTyp av gruppbildningProperty Inspector Grouping type drop downpi_hoursTimmarHours label in Property Inspectorpi_lbl_currentgroupAktuell gruppbildningCurrent grouping label for PIpi_lbl_descBeskrivningDescription Label for PIpi_lbl_groupBildande av grupperGrouping label for PIpi_lbl_titleTitelTitle label for PIpi_max_actMax aktiviteterlabel for maximum Activitiespi_min_actMin aktiviteterlabel for Minimum activitiespi_minsMinuterMins label in teh property inspectorpi_no_groupingIngenCombo title for no groupingpi_num_learnersAntal lärandePI Num learners labelpi_optional_titleValfri aktivitetTitle for oprional activity property inspectorpi_runofflineArbeta offlineLabel for Run Oflinepi_start_offsetÖppna grindenStart offset labelpi_titleEgenskaperOn the title bar of the PIprefix_copyofKopiera avPrefix for copy paste command for canvas activitiesprefs_dlg_cancelAvbryt6prefs_dlg_lng_lblSpråk7prefs_dlg_okOK5prefs_dlg_theme_lblTema8prefs_dlg_titleInställningar4preview_btnFörhandsgranskaToolbar &gt; Preview Buttonproperty_inspector_titleEgenskaperOn the title bar of the PIrandom_grp_lblSlumpmässigLabel for the grouping drop down in the PropertyInspectorrename_btnByt namnLabel for Rename Buttonsave_btnSparaToolbar &gt; Save buttonsched_act_lblSchemaLabel for schedule gate activitysynch_act_lblSynkroniseraUsed as a label for the Synch Gate Activity Typetk_titleVerktyg för aktiviteterLabel for Activities Toolkit Paneltrans_btnÖvergångToolbar &gt; Transition Buttontrans_dlg_cancelAvbrytCancel button on transition dialogtrans_dlg_gateSynkroniseringHeader for the transition props dialogtrans_dlg_gatetypecmbTypGate type combo labeltrans_dlg_okOKOK Button on transition dialogtrans_dlg_titleÖvergångTitle for the transition properties dialogws_RootrotRoot folder title for workspacews_chk_overwrite_resourceOBS! Du håller på att skriva över en resurs!ws_click_folder_fileVar snäll och klicka antingen på en katalog som du vill spara i eller på en Design som du vill skriva över.Error msg if no folder or file is selectedws_copy_same_folderKäll- och målkatalogen är desammaThe user has tried to drag and drop to the same placews_dlg_cancel_buttonAvbryt2ws_dlg_filenameNamn på filLabel for File name in workspace windowws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_dlg_ok_buttonOKWsp Dia OK Button labelws_dlg_open_btnÖppnaWsp Dia Open Button labelws_dlg_properties_buttonEgenskaperWorkspace dialogue Properties btn labelws_dlg_save_btnSparaWsp Dia Save Button labelws_dlg_titleArbetsyta0ws_newfolder_cancelAvbrytCancel on the new folder name diaws_newfolder_insVar snäll och skriv in det nya namnet på katalogen.Instructions on the new name pop upws_newfolder_okOKOK on the new folder name diaws_no_permissionDu har tyvärr inte tillstånd att skriva till den här resursen.Message when user does not have write permission to complete actionws_rename_insVar snäll och skriv in det nya namnetMessage of the new name for the userws_tree_mywspMin arbetsytaThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacews_view_license_buttonVisaTo show the license to the useract_lock_chkVar snäll och lås upp den här behållaren för valfria aktiviteter innan du anger den här aktiviteten som valfri.Alert Message if user drags the activity to locked optional activity container sys_error_msg_startEtt systemfel enligt följande har inträffat:Common System error message starting linesys_error_msg_finishDu kanske måste starta om LAMS Författare för att kunna fortsätta. Vill du spara den följande informationen om detta fel för att kunna använda den för att åtgärda felet?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titlepi_num_groupsAntal grupperNumber of groups in Property inspectorpi_parallel_titleParallell aktivitetTitle for parallel activity property inspectoropt_activity_titleAlternativ aktivitetTitle for Optional Activity Containerlbl_num_activitiesAktiviteterreplacement for word activitiesal_sendSkickaSend button label on the system error dialogal_cannot_move_activityDu kan tyvärr inte flytta den här aktiviteten.Alert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkDu kan tyvärr inte lägga till en aktivitet av typ grind som en alternativ aktivitet. Error message when user drags gate activity over to optional containerprefix_copyof_countKopia ({0}) avPrefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidDu kan tyvärr inte spara en design i den här katalogen. Var snäll och välj en underkatalog.Alert message if root My Workspace folder is selected to save a design in.ws_click_file_openVar snäll och klicka på Design för att öppna.Alert message if folder tried to be opened.ws_license_lblLicensLabel for Licence drop down on workspace properties tab viewws_license_comment_lblKompletterande information om licenserLabel for Licence Comment description below license drop downcv_invalid_optional_activityFlytta övergångar till och från från {0} innan du anger detta som en alternativ aktivitet.Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingDen andra aktiviteten i övergången saknas.Error message when target activity for transition is missingcv_invalid_trans_target_from_activityDet finns redan en övergång från {0}Error message when a transition from the activity already existcv_invalid_trans_target_to_activityDet finns redan en övergång till {0}Error message when a transition to the activity already existbranch_btnFörgreningLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnFlödeLabel for Flow button in Toolbarmnu_file_importImporteraMenu bar Importcv_design_export_unsavedDet går inte att Exportera en design som du inte har sparat först. Alert message when trying to export can unsaved design.cv_design_unsavedDesignen på arbetsytan har ändrats. Vill du fortsätta utan att spara?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportExporteraMenu bar Exportws_chk_overwrite_existingDen här katalogen innehåller redan en fil som heter {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderDet går inte att använda den här katalogen. Alert message for trying to use a virtual folder to save/open a file.mnu_file_exitAvslutaFile Menu Exitws_no_file_openDet gick inte att hitta någon fil. Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceDet går tyvärr inte att ha en cirkulär sekvens.Error message when a transition from one activity to another is creating a circular loopbin_tooltipSläpp en aktivitet i den här korgen för att ta bort den från sekvensen av aktiviteter. Tool tip message for canvas binnew_btn_tooltipDetta tömmer den aktuella sekvensen och återställer arbetsytan så att du kan börja om från början.Tool tip message for new button in toolbaropen_btn_tooltipVisa dialogrutan för filer och öppna en sekvens för aktiviteter.Tool tip message for open button in toolbarsave_btn_tooltipSnabbspara den aktuella sekvensen för aktiviteter. tool tip message for save button in toolbarcopy_btn_tooltipKopiera den markerade aktiviteten. tool tip message for copy button in toolbarpaste_btn_tooltipKlistra in en kopia av den markerade aktiviteten. tool tip message for paste button in toolbartrans_btn_tooltipAnvänd den här pennan för att dra övergångar mellan aktiviteter (eller tryck på tangenten CTRL).tool tip message for transition button in toolbaroptional_btn_tooltipSkapa en uppsättning aktiviteter. tool tip message for optional button in toolbargate_btn_tooltipSkapa en slutpunkt.tool tip message for gate button in toolbarbranch_btn_tooltipSkapa en förgrening (tillgänglig i LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltipSkapa flödeskontrollerade aktivitetertool tip message for flow button in toolbargroup_btn_tooltipSkapa en aktivitet för att skapa grupper. tool tip message for group button in toolbarpreview_btn_tooltipFörhandsgranska din sekvens så att de lärande ser den. Tool tip message for preview button in toolbarcv_activity_dbclick_readonlyDet går inte att redigera verktyg som har designats som 'endast läsbart'. Var snäll och spara designen och försök igen.Alert message when double-clicking an Activity in an open read-only designcv_readonly_lblEndast läsbartLabel for top left of canvas shown when a read-only design is open.al_empty_designDet går tyvärr inte att spara en tom design. alert message when user want to save an empty designcv_autosave_err_msgEtt fel har uppstått i samband med att det gjordes ett försök att automat-spara din design. Var snäll och kontakta systemadministratören. Alert error message when auto-save fails.cv_autosave_rec_msgDu håller på att återställa en förlorad eller inte sparad design. Den design som du håller på med kommer att tömmas. Vill du fortsätta?Message informing users that they have recovered data for a design.cv_autosave_rec_titleVarningAlert title for auto save recovery message.mnu_file_recoverÅterställ...Menu bar Recovercv_activity_copy_invalidDet går tyvärr inte att kopiera den här ärvda 'barn'-aktiviteten.Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidDet går tyvärr inte att klippa ut den här ärvda 'barn'-aktiviteten.Error message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidDu måste tyvärr markera aktiviteten innan du klickar på knappen 'Kopiera' eller kopierar enheten i den meny för aktiviteter som du högerklickar fram.Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidDu måste tyvärr markera aktiviteten innan du klickar på knappen 'Kopiera' eller klickar på enheten Öppna/Redigera Innehåll i aktivitet i den meny för aktiviteter som du högerklickar fram.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgÄr du säker på att du vill ta bort den här filen/katalogen?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyDu får tyvärr inte skapa någon design utan filnamn.Error message when user try to save a design with no file namews_entre_file_nameVar snåll och skriv in namnet på designen och klicka sedan på knappen 'Spara'Error message when user try to save a design with no file namecv_activity_helpURL_undefinedDet går inte att hitta hjälpsidan för {0}Alert message when a tool activity has no help url defined.cv_untitled_lblUtan titlel -1Label for Design Title bar on canvasmnu_help_helpHjälp med pedagogisk designlabel for menu bar Help - Authoring Help optionccm_open_activitycontentÖppna/Redigera innehåll för aktivitetLabel for Custom Context Menuccm_copy_activityKopiera aktivitetLabel for Custom Context Menuccm_paste_activityKlistar in aktivitetLabel for Custom Context Menuccm_piInspektera egenskaper...Label for Custom Context Menuccm_author_activityhelpHjälp för aktiviteten pedagogisk designLabel for Custom Context Menuws_dlg_descriptionBeskrivningLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateIngenDrop down default for gate typepi_daysDagarDays label in property inspector for gate toolcv_close_return_to_ext_srcStäng och tillbaka till {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/th_TH_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/th_TH_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/th_TH_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleชุดกิจกรรมTitle for Activity Toolkit Panelal_alertแจ้งเตือนGeneric title for Alert windowal_cancelยกเลิกTo Confirm title for LFErroral_confirmยืนยันTo Confirm title for LFErroral_okตกลงOK on the alert dialogapp_chk_langloadยังไม่มีการโหลดภาษาmessage for unsuccessful language loadingapp_chk_themeloadยังไม่มีการโหลดรูปแบบทีมmessage for unsuccessful theme loadingapp_fail_continueยังไม่เปิดใช้งานระบบกรุณาติดต่อผู้ดูแลระบบmessage if application cannot continue due to any errorchosen_grp_lblเลือกLabel for the grouping drop down in the PropertyInspectorcopy_btnคัดลอกToolbar &gt; Copy Buttoncv_invalid_design_savedการออกแบบกิจกรรมยังไม่สมบูรณ์ กรุณาตรวจสอบอีกครั้งMessage when an invalid design has been savedcv_invalid_trans_targetเส้นทางกิจกรรมไม่ถูกต้องError message for when transition tool is dropped outside of valid target activitycv_show_validationIssuesThe button on the confirm dialogcv_valid_design_savedขอแสดงความยินดี! ได้บันทึกกิจกรรมนี้แล้วMessage when a valid design has been saveddb_datasend_confirmขอบคุณที่ส่งข้อมูลไปที่เซิร์ฟเวอร์Message when user sucessfully dumps data to the serverdelete_btnลบLabel for Delete buttongate_btnGate Toolbar &gt; Gate Buttongroup_btnกลุ่มToolbar &gt; Group Buttongrouping_act_titleจัดกลุ่มDefault title for the grouping activityld_val_activity_columnกิจกรรมThe heading on the activity in the ValidationIssuesDialogld_val_doneทำThe button label for the dialogld_val_issue_columnIssue The heading on the issue in the ValidationIssuesDialogld_val_titleValidation issues The title for the dialoglicense_not_selectedโปรดเลือกสิทธิ์ในการออกแบบShown if no license is selected in the drop down in workspacemnu_editแก้ไขMenu bar Editmnu_edit_copyคัดลอกMenu bar Edit &gt; Copymnu_edit_cutตัดMenu bar Edit &gt; Cutmnu_edit_pasteแปะMenu bar Edit &gt; Pastemnu_edit_redoทำซ้ำMenu bar Edit &gt; Redomnu_edit_undoยกเลิกทำMenu bar Edit &gt; Undomnu_fileไฟล์Menu bar Filemnu_file_closeปิดMenu bar Closemnu_file_newสร้างMenu bar Newmnu_file_openเปิดMenu bar Openmnu_file_revertย้อนหลังMenu bar Revertmnu_file_saveบันทึกMenu bar savemnu_file_saveasบันทึกเป็นMenu bar Save asmnu_helpช่วยเหลือMenu bar Helpmnu_help_abtเกี่ยวกับMenu bar Aboutmnu_toolsเครื่องมือMenu bar Toolsmnu_tools_optทางเลือกMenu bar Optionalmnu_tools_prefsอ้างอิงMenu bar preferencesmnu_tools_transสร้างเส้นวิถีทางMenu bar draw transitionnew_btnสร้าง Toolbar &gt; New Buttonnew_confirm_msgต้องการยกเลิกการออกแบบนี้Msg when user clicks new while working on the existing designnone_act_lblไม่ได้เลือกNo gate activity selectedopen_btnเปิดToolbar &gt; Open Buttonoptional_btnทางเลือกToolbar &gt; Optional Buttonpaste_btnแปะToolbar &gt; Paste Buttonperm_act_lblPermissionLabel for permission gate activitypi_activity_type_gateส่งกิจกรรมActivity type for gate in PIpi_activity_type_groupingกลุ่มกิจกรรมActivity type for grouping in Property Inspectorpi_definelaterเลือกทีหลัง Label for Define later for PIpi_end_offsetClose gate End offset labelpi_group_typeประเภทกลุ่มProperty Inspector Grouping type drop downpi_hoursชม.Hours label in Property Inspectorpi_lbl_currentgroupกลุ่มนี้Current grouping label for PIpi_lbl_descอธิบายDescription Label for PIpi_lbl_groupกลุ่มGrouping label for PIpi_lbl_titleTitle Title label for PIpi_max_actกิจกรรมมากสุดlabel for maximum Activitiespi_min_actกิจกรรมน้อยสุดlabel for Minimum activitiespi_minsนาทีMins label in teh property inspectorpi_no_groupingไม่มีCombo title for no groupingpi_num_learnersผู้เรียนPI Num learners labelpi_optional_titleเลือกกิจกรรมTitle for oprional activity property inspectorpi_runofflineแสดง OfflineLabel for Run Oflinepi_start_offsetเปิดStart offset labelpi_titleคุณสมบัติOn the title bar of the PIprefix_copyofบันทึกPrefix for copy paste command for canvas activitiesprefs_dlg_cancelยกเลิก6prefs_dlg_lng_lblภาษา7prefs_dlg_okตกลง5prefs_dlg_theme_lblหน้ากาก8prefs_dlg_titlePreferences 4preview_btnแสดงตัวอย่างToolbar &gt; Preview Buttonproperty_inspector_titlePropertiesOn the title bar of the PIrandom_grp_lblสุ่มเลือกLabel for the grouping drop down in the PropertyInspectorrename_btnเปลี่ยนชื่อLabel for Rename Buttonsave_btnบันทึกToolbar &gt; Save buttonsched_act_lblScheduleLabel for schedule gate activitysynch_act_lblประสานกันUsed as a label for the Synch Gate Activity Typetk_titleชุดกิจกรรมLabel for Activities Toolkit Paneltrans_btnแปลToolbar &gt; Transition Buttontrans_dlg_cancelยกเลิกCancel button on transition dialogtrans_dlg_gateการประสานHeader for the transition props dialogtrans_dlg_gatetypecmbชนิดGate type combo labeltrans_dlg_okตกลงOK Button on transition dialogtrans_dlg_titleTransition Title for the transition properties dialogws_RootรากRoot folder title for workspacews_chk_overwrite_resourceต้องการเขียนทับws_click_folder_fileโปรดเลือกโฟล์เดอร์ที่ต้องการบันทึกจัดเก็บError msg if no folder or file is selectedws_copy_same_folderกิจกรรมเหมือนกัน โปรดเลือกใหม่The user has tried to drag and drop to the same placews_dlg_cancel_buttonยกเลิก2ws_dlg_filenameชื่อไฟล์Label for File name in workspace windowws_dlg_location_buttonที่อยู่Workspace dialogue Location btn labelws_dlg_ok_buttonตกลงWsp Dia OK Button labelws_dlg_open_btnเปิดWsp Dia Open Button labelws_dlg_properties_buttonคุณสมบัติWorkspace dialogue Properties btn labelws_dlg_save_btnบันทึก Wsp Dia Save Button labelws_dlg_titleพื้นที่งาน0ws_newfolder_cancelยกเลิกCancel on the new folder name diaws_newfolder_insใส่ชื่อใหม่Instructions on the new name pop upws_newfolder_okตกลงOK on the new folder name diaws_no_permissionคุณไม่ได้รับอนุญาตให้เขียนได้Message when user does not have write permission to complete actionws_rename_insใส่ชื่อใหม่อีกครั้งMessage of the new name for the userws_tree_mywspพื้นที่งานของฉันThe root level of the treews_tree_orgsโครงงานShown in the top level of the tree in the workspacews_view_license_buttonแสดงTo show the license to the useract_lock_chkกรุณาปลดล็อกกิจกรรม ก่อนที่จะสร้างกิจกรรมAlert Message if user drags the activity to locked optional activity container sys_error_msg_startติดตามดูการทำงานระบบCommon System error message starting linesys_error_msg_finishจำเป็นต้อง re-start LAMS Author ใหม่ ต้องการบันทึกหรือไม่Common System error message finish paragraphsys_errorระบบไม่ทำงานSystem Error elert window title \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/tr_TR_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3new_btnYeniToolbar &gt; New Buttonnone_act_lblHiçbiriNo gate activity selectedpaste_btn_tooltipSeçilen etkinliğin kopyasını yapıştırtool tip message for paste button in toolbaral_confirmOnaylaTo Confirm title for LFErrorapp_chk_langloadDil verisi henüz yüklenmedimessage for unsuccessful language loadingcopy_btnKopyalaToolbar &gt; Copy Buttonld_val_activity_columnEtkinlikThe heading on the activity in the ValidationIssuesDialogmnu_editDüzenMenu bar Editmnu_edit_copyKopyalaMenu bar Edit &gt; Copymnu_edit_cutKesMenu bar Edit &gt; Cutmnu_edit_pasteYapıştırMenu bar Edit &gt; Pastemnu_edit_undoGeri AlMenu bar Edit &gt; Undomnu_fileDosyaMenu bar Filemnu_file_closeKapatMenu bar Closemnu_file_newYeniMenu bar Newmnu_file_openMenu bar Openmnu_helpYardımMenu bar Helpmnu_help_abtLAMS HakkındaMenu bar Aboutmnu_toolsAraçlarMenu bar Toolsmnu_tools_prefsSeçeneklerMenu bar preferencesopen_btnToolbar &gt; Open Buttonoptional_btnSeçmeliToolbar &gt; Optional Buttonccm_open_activitycontentEtkinlik içeriğini aç/düzenleLabel for Custom Context Menucv_close_return_to_ext_srcKapat ve {0}' a dönButton label used on close and return button in save confirm message popup.cv_readonly_lblSalt okunurLabel for top left of canvas shown when a read-only design is open.stream_reference_lblLAMS (Öğrenme Etkinliği Yönetim Sistemi)Reference label for the application stream.optional_act_btnEtkinlikToolbar button for Optional Activity.pi_actEtkinliklerMin and max label postfix when an Optional Activity is selected.to_conditions_dlg_gte_lblBüyük veya eşitGreater than or equal toto_conditions_dlg_lte_lblKüçük veya eşitLess than or equal tows_dlg_insert_btnEkleButton label on Workspace in INSERT mode.al_group_name_invalid_blankGrup isimleri boş bırakılamazWarning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existingBu grup ismi kullanılıyor, farklı bir isim giriniz.Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different groupws_save_folder_invalidBu klasöre bir tasarım kaydedemezsiniz. Lütfen geçerli bir alt-klasör seçin.Alert message if root My Workspace folder is selected to save a design in.mnu_file_saveasFarklı KaydetMenu bar Save assave_btnKaydetToolbar &gt; Save buttonws_click_folder_fileLütfen kaydetmek için bir klasöre, üzerine yazmak için Tasarıma tıklayınız.Error msg if no folder or file is selectedws_dlg_save_btnKaydetWsp Dia Save Button labelcv_design_insert_warningBir kez bir sıralama eklerseniz iptal edemezsiniz-eski sıralamanız otomatik olarak yeni sıralamayla kaydedilir. Eski sıralamanıza dönmek için yeni eklediklerinizi elle silmeli ve tekrar kaydetmelisiniz. Sıralamanızı mevcut haliyle bırakmak için İptal tuşuna basınız.Aksi takdirde eklemek istediğiniz sıralamayı seçmek için Tamam'a tıklayınız Warning message when merge/insertcv_eof_changes_appliedDeğişiklikler başarıyla uygulandıChanges have been successful applied.validation_error_transitionNoActivityBeforeOrAfterBir geçiş öncesinde veya sonrasında mutlaka bir etkinlik barındırmalıdırA Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransitionBir etkinliğin giriş veya çıkış geçişi olmalıdırAn activity must have an input or output transitionvalidation_error_inputTransitionType1Bu etkinliğin giriş geçişi yokturThis activity has no input transitionvalidation_error_outputTransitionType1Bu etkinliğin çıkış geçişi yokturThis activity has no output transitioncv_invalid_design_on_apply_changesDeğişiklikler uygulanamıyor. Bir veya fazla geçiş eksik.Cannot apply changes. There are one or more transitions missing.apply_changes_btn_tooltipDeğişiklikleri uygula ve dersi tool tip message for save button in toolbarbranch_mapping_dlg_branches_lst_lblDallanmalarLabel for Branches list box on Branch Matching Dialogs.groupnaming_dlg_title_lblGrup adlandırmaTitle label for Group Naming dialog.pi_activity_type_branchingDallanma etkinliğiActivity type for Branching in Property Inspector.pi_group_naming_btn_lblGrupları adlandırLabel for button that opens Group Naming dialog.sequence_act_titleAkış sırasıDefault title for Sequence Activity.pi_group_matching_btn_lblGrupları dallanmalarla eşleştirButton in author that allows you to allocate groups to branches for group based branchingmnu_file_saveKaydetMenu bar savecv_invalid_design_savedTasarımınız henüz geçerli değil, ancak kaydedildi, problemi görmek için "Olası sorunlar" a tıklayınızMessage when an invalid design has been savedsave_btn_tooltipEtkinlik akışını hızlı kaydettool tip message for save button in toolbardelete_btnSilLabel for Delete buttonws_del_confirm_msgBu dosya/klasörü silmek istediğinizden emin misiniz?Confirmation message when user tries to delete a file or folder in workspace dialog boxcompetence_editor_warning_competence_mappedSilmeye çalıştığınız yetki bir yada daha fazla etkinlikte kullanılmaktadır.Silerek bu kullanımlarıda kaldırmış olacaksınız. Silmek istediğinizden emin misiniz?Warning message when you attempt to delete a competence that is mapped to one or more activities.preview_btn_tooltip_disabledAkış diagramını görüntülemek için önce çalışmanızı kaydedin daha sonra önizlemeye tıklayınTool tip message for preview button in toolbar when button is disabled.cv_design_export_unsavedKaydedilmemiş bir tasarımı dışa aktaramazsınızAlert message when trying to export can unsaved design.al_empty_designÜzgünüm, boş bir tasarımı kaydedemezsiniz.alert message when user want to save an empty designcv_valid_design_savedTebrikler! - Tasarımınız oluşturuldu ve kaydedildiMessage when a valid design has been savedcv_activity_dbclick_readonlySalt okunur bir tasarımı düzenleyemezsiniz. Lütfen tasarımın bir kopyasını kaydedip yeniden deneyiniz.Alert message when double-clicking an Activity in an open read-only designws_file_name_emptyÜzgünüm! Bir tasarımı dosya ismi olmadan kaydedemezsiniz.Error message when user try to save a design with no file namecondmatch_dlg_cond_lst_lblKoşullarLabel for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lblKoşulları dallanmalarla eşleştirDialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_condition_col_lblKoşulColumn heading for showing condition description of the mapping.cv_autosave_rec_msgKaydedilmemiş veya kaybedilmiş son tasarımınızı kurtarmak üzeresiniz. Geçerli tasarımınız silinecek. Devam etmek istiyor musunuz?Message informing users that they have recovered data for a design.branch_mapping_no_condition_msgHerhangi bir koşul seçilmediAlert message when adding a Mapping without a Condition being selected.branch_mapping_dlg_condition_linked_allKoşullar varPhrase used at start of linked conditions alert message when clearing all.branch_mapping_auto_condition_msgGeriye kalan tüm durumlar varsayılan dallanma olarak haritalanacak.Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.to_condition_invalid_value_range{0} varolan bir koşulun aralığında olamazAlert message when a submitted condition interferes with another previously submitted condition.branch_mapping_dlg_condition_linked_singleKoşulPhrase used at start of linked conditions alert message when clearing a single entry.to_conditions_dlg_condition_items_value_col_lblKoşulColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_title_lblÇıktı koşulları oluşturDialog title for creating new tool output conditions.pi_condmatch_btn_lblKoşul oluşturLabel for button to open dialog to create output conditions.pi_tool_output_matching_btn_lblKoşulları dallanmalarla eşleştirButton in author that allows you to match conditions to branches for tool-output based branchinggrouping_invalid_with_common_names_msg{0} grupllama etkinliğinin birden fazla aynı ismi olması nedeniyle tasarımı kaydedemiyor. Gruplamay gözden geçirip tekrar deneyiniz.Alert message displayed when the Grouping validation fails during saving a design.map_gate_conditions_btnKapı koşulları oluştur.Button to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msg-Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stateto_conditions_dlg_condition_items_update_defaultConditionsSeçilen çıktı tanımları için durumlarınız güncellenmek üzere. Bu varolan tüm dallanmaları temizleyecektir. Devam etmek istiyor musunuz?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.ws_entre_file_nameLütfen tasarım ismini giriniz ve Kaydet butonuna tıklayınızError message when user try to save a design with no file namecv_autosave_err_msgTasarımınız otomatik kaydedilmeye çalışılırken bir hata oluştu. Lütfen Flash Player depolama ayarlarınızı yükseltiniz.Alert error message when auto-save fails.ws_newfolder_insYeni bir dosya ismi girinizInstructions on the new name pop upws_no_permissionÜzgünüm, bu kaynağa yazmak için izniniz yokMessage when user does not have write permission to complete actionws_rename_insLütfen yeni ismi girinizMessage of the new name for the userlicense_not_selectedHenüz bir lisans seçilmedi- Lütfen bir tane seçinizShown if no license is selected in the drop down in workspaceperm_act_lblİzinLabel for permission gate activityws_tree_mywspÇalışma alanımThe root level of the treews_tree_orgsGruplarımShown in the top level of the tree in the workspacesys_error_msg_startAşağıdaki hata meydana geldi:Common System error message starting linews_click_file_openAçmak için lütfen bir tasarımın üzerine tıklayınızAlert message if folder tried to be opened.copy_btn_tooltipSeçilen etkinliği kopyalatool tip message for copy button in toolbargrouping_act_titleGrup OluşturDefault title for the grouping activitybranch_mapping_dlg_condition_col_value{0} ile {1} aralığıValue for Condition field in mapping datagrid.pi_lbl_currentgroupGeçerli GruplamaCurrent grouping label for PIal_activity_view_competence_mappings_invalidYetki haritalarını görüntülemeye çalışmadan önce bir etkinlik seçtiğinizi emin olun.Warning that appears when no activity is selected when the user tries to view competence mappingspreview_btnÖnizlemeToolbar &gt; Preview Buttonpreview_btn_tooltipÖğrenenlerin göreceği biçimde akışı önizleTool tip message for preview button in toolbarws_view_license_buttonGörünümTo show the license to the userprefs_dlg_cancelİptal6trans_dlg_cancelİptalCancel button on transition dialogws_dlg_cancel_buttonİptal2ws_newfolder_cancelİptalCancel on the new folder name diaal_cancelİptalTo Confirm title for LFErrorcancel_btnİptalToolbar - Cancel Buttonsynch_act_lblSenkronize etUsed as a label for the Synch Gate Activity Typebranch_mapping_dlg_branch_col_lblDallanmaColumn heading for showing sequence name of the mapping.trans_dlg_gateSenkronize etmeHeader for the transition props dialogws_dlg_location_buttonKonumWorkspace dialogue Location btn labeloptional_seq_btnAkışToolbar button for Sequences within Optional Activity.cv_invalid_trans_target_to_activity{0} 'dan daha önce bir geçiş atanmışError message when a transition to the activity already existcv_design_unsavedTasarım değiştirildi. Kaydetmeden devam etmek istiyor musunuz?Alert message when opening/importing when current design on canvas is unsaved or modified.optional_btn_tooltipBir dizi seçmeli etkinlik oluşturur.tool tip message for optional button in toolbarbranch_btn_tooltipDallanma oluşturtool tip message for branch button in toolbargroup_btn_tooltipGrup etkinliği oluştur.tool tip message for group button in toolbaral_activity_copy_invalidÜzgünüm! Kopyalama yapmadan önce etkinliği seçmelisinizAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasccm_piÖzelliklerLabel for Custom Context Menubranch_btnDallanmaLabel for disabled Branch button shown as submenu for flow button in Toolbarcv_invalid_trans_target_from_activity{0} 'dan daha önce bir geçiş atanmışError message when a transition from the activity already existto_conditions_dlg_defin_bool_typeDoğru/YanlışType description for a lboolean-value based ouput definition.mnu_file_exportDışa aktarMenu bar Exportws_dlg_titleÇalışma Alanı0group_btnGrupToolbar &gt; Group Buttonpi_lbl_groupGruplamaGrouping label for PItrans_btnGeçişToolbar &gt; Transition Buttontrans_dlg_titleGeçişTitle for the transition properties dialogopt_activity_titleSeçmeli EtkinlikTitle for Optional Activity Containerws_license_comment_lblEk Lisans BilgisiLabel for Licence Comment description below license drop downal_cannot_move_activityÜzgünüm bu etkinliği taşıyamazsınızAlert message when user tries to move child activity of any parallel activityws_click_virtual_folderBu dizini kullanamazsınızAlert message for trying to use a virtual folder to save/open a file.prefix_copyof_countKopyası ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.cv_activity_helpURL_undefined{0} için yardım dosyasını bulamıyorAlert message when a tool activity has no help url defined.act_tool_titleEtkinlik Araç KutusuTitle for Activity Toolkit Panelapp_chk_themeloadTema verisi yüklenmedimessage for unsuccessful theme loadingapp_fail_continueUygulama tamamlanamadı. Lütfen destek için iletişime geçiniz.message if application cannot continue due to any errorcv_invalid_trans_targetBu nesne için geçiş yaratamazsınız.Error message for when transition tool is dropped outside of valid target activitydb_datasend_confirmSunucuya gönderdiğiniz veri için teşekkürlerMessage when user sucessfully dumps data to the servermnu_edit_redoİleri alMenu bar Edit &gt; Redonew_confirm_msgEkrandaki tasarımınızı silmek istediğinizden emin misiniz?Msg when user clicks new while working on the existing designpaste_btnYapıştırToolbar &gt; Paste Buttonpi_activity_type_groupingGrup EtkinliğiActivity type for grouping in Property Inspectorpi_hoursSaatlerHours label in Property Inspectorpi_lbl_titleBaşlıkTitle label for PIpi_minsDakikalarMins label in teh property inspectorpi_no_groupingHiçbiriCombo title for no groupingpi_num_learnersÖğrenen sayısıPI Num learners labelpi_optional_titleSeçmeli EtkinlikTitle for oprional activity property inspectorpi_titleÖzelliklerOn the title bar of the PIprefix_copyofKopyasıPrefix for copy paste command for canvas activitiesprefs_dlg_lng_lblDil7prefs_dlg_theme_lblTema8prefs_dlg_titleTercihler4property_inspector_titleÖzelliklerOn the title bar of the PIrandom_grp_lblRastgeleLabel for the grouping drop down in the PropertyInspectorrename_btnYeniden AdlandırLabel for Rename Buttontk_titleEtkinlik Araç KutusuLabel for Activities Toolkit Panelws_RootAna dizinRoot folder title for workspacews_chk_overwrite_resourceUyarı: Bu sıralamanın üzerine yazmak üzeresiniz!ws_copy_same_folderKaynak ve hedef dizinler aynıThe user has tried to drag and drop to the same placews_dlg_filenameDosya adıLabel for File name in workspace windowws_dlg_open_btnWsp Dia Open Button labelws_dlg_properties_buttonÖzelliklerWorkspace dialogue Properties btn labelsys_errorSistem hatasıSystem Error elert window titleal_sendGönderSend button label on the system error dialogpi_daysGünlerDays label in property inspector for gate toolws_license_lblLisansLabel for Licence drop down on workspace properties tab viewpi_num_groupsGrup sayısıNumber of groups in Property inspectorgate_btn_tooltipBitiş noktası yaratınıztool tip message for gate button in toolbarflow_btn_tooltipAkış kontrol etkinliği yaratınıztool tip message for flow button in toolbarccm_copy_activityEtkinliği KopyalaLabel for Custom Context Menuccm_paste_activityEtkinliği YapıştırLabel for Custom Context Menumnu_file_exitÇıkışFile Menu Exitws_no_file_openDosya bulunamadıAlert message if no matching file is found to open in selected folder of Workspace.flow_btnAkışLabel for Flow button in Toolbartrans_dlg_nogateHiçbiriDrop down default for gate typecv_untitled_lblBaşlıksız - 1Label for Design Title bar on canvascv_autosave_rec_titleUyarıAlert title for auto save recovery message.mnu_file_apply_changesDeğişiklikler UygulaApply Changesapply_changes_btnDeğişiklikler UygulaApply Changescv_activity_readOnlyBu etkinlik sadece okunabilirAlert message when a user performs an illegal action on a read-only transition.cv_element_readOnly_action_delKaldırıldıAction label for read only alert message for a Canvas Transition.cv_element_readOnly_action_modDeğiştirildiAction label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msgDüzenlemeyi bitirmeniz için tasarımın geçerli olması gerekmektedir.Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msgUyarı: Tasarımınız değiştirildi. Kaydetmeden kapatmak istiyor musunuz?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.mnu_file_finishBitirMenu bar File - Finish (Edit Mode)about_popup_title_lblHAkkındaTitle for the About Pop-up window.pi_activity_type_sequenceSıralı EtkinlikActivity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lblDeğerini değiştirmek istediğiniz ismin üzerine tıklayınız.Instructions for Group Naming dialog.to_conditions_dlg_add_btn_lbl+ EkleLabel for button to add a condition.to_conditions_dlg_clear_all_btn_lblHepsini TemizleLabel for button to clear all conditions.to_conditions_dlg_remove_item_btn_lblKaldırLabel for button to remove condition.to_conditions_dlg_from_lblBuradanLabel for start value in condition range for long or numeric output values.to_conditions_dlg_to_lblBurayaLabel for end value in condition range for long or numeric output values.branch_mapping_dlg_group_col_lblGrupColumn heading for showing group name of the mapping.to_conditions_dlg_defin_user_defined_typeKullanıcı tanımlıType description for a user-defined (boolean set) based ouput definition.al_alertDikkat!Generic title for Alert windowpi_defaultBranch_cb_lblVarsayılanCheckBox label for selecting the Branch as default for the BranchingActivity.chosen_branch_act_lblÖğretmen seçimiBranching type label for Teacher choice Branching.groupmatch_dlg_groups_lst_lblGruplarLabel for Groups list box on Group/Branch Matching Dialog.tool_branch_act_lblÖğrenen çıktısıBranching type label for Tool output Branching.to_condition_start_valueBaşlangıç değeriValue representing the min boundary value of the conditions range.to_condition_end_valueBitiş değeriValue representing the max boundary value of the conditions value.to_condition_invalid_value_direction{0} {1} den büyük olamazAlert message when the start value is greater than end value of the submitted condition.al_continueDevamContinue button on Alert dialogto_condition_untitled_item_lblBaşlıksız {0}The default condition name for new items added to conditions list when setting up conditions for Tool based branching.branch_mapping_dlg_condition_col_value_maxBüyük veya eşit {0}Value for Condition field in mapping datagrid when Greater than option is selected.to_conditions_dlg_lt_lblKüçük veya eşitLess than option for long type conditions.pi_max_actEn fazla {0}Label for maximum Activities or Sequencespi_min_actEn az {0}Label for minimum Activities or Sequencesto_conditions_dlg_condition_items_name_col_lblİsimColumn header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[ Seçenekler ]Header label value (first index) for tool long (range) options drop-down.groupnaming_dialog_col_groupName_lblGrup AdıColumn label for editable datagrid in Group Naming dialog.mnu_file_insertdesignEkle/BirleştirMenu item label for Inserting a Learning Design.refresh_btnYenileButton label for Refresh button on the Tool Output Conditions dialog.pi_branch_tool_acts_default--Seçin--Default item label for Input Tool dropdown list.mnu_tools_optSeçmeli çizMenu bar Optionallbl_num_activities{0} - Etkinliklerreplacement for word activitiessched_act_lblZaman çizelgesiLabel for schedule gate activityopen_btn_tooltipEtkinlik akışını açmak için dosya diyalogunu gösterTool tip message for open button in toolbarmnu_file_importİçe aktarMenu bar Importabout_popup_version_lblSürümLabel displaying the version no on the About dialog.gpl_license_url http://www.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_titleDallanmaLabel for Branching Activitybranch_mapping_no_branch_msgDallanma seçilmediAlert message when adding a Mapping without a Branch (Sequence) being selected.act_lock_chkLütfen bu etkinliği seçmeli olarak tanımlamadan önce Seçmeli Etkinlik kutusunun kilidini açınız. Alert Message if user drags the activity to locked optional activity container cv_trans_target_act_missingGeçişin ikinci etkinliği eksik.Error message when target activity for transition is missingcv_activity_copy_invalidÜzgünüm! Bu alt etkinliği kopyalama izniniz yokError message when user try to copy child activity from either optional or parallel activity containermnu_tools_transGeçiş çizMenu bar draw transitionws_chk_overwrite_existingBu klasörde {0} isimli dosya daha önceden kaydedilmiş.Alert message when saving a design with the same filename as an existing design.pi_parallel_titleParalel EtkinlikTitle for parallel activity property inspectormnu_file_recoverKurtar...Menu bar Recovercv_activity_cut_invalidÜzgünüm! Bu alt etkinliği kesmeye izniniz yok.Error message when user try to cut child activity from either optional or parallel activity containernew_btn_tooltipGeçerli sıralamayı temizlerve çalışma alanını kullanım için hazırlar.Tool tip message for new button in toolbartrans_btn_tooltipBu kalemi etkinlikler arasında geçiş oluşturmak için kullanınız. (veya CTRL tuşuna basınız.)tool tip message for transition button in toolbaral_activity_openContent_invalidÜzgünüm! Etkinlik sağ menüsündeki Etkinlik içeriği Aç/Düzenle maddesine tıklamadan önce etkinliği seçmek zorundasınız.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasabout_popup_copyright_lbl© 2002-2008 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_license_lblBu program üzretsiz bir yazılımdır; dağıtabilir ve/veya Free Softvare Foundation tarafından yayınlanan GNU General Public Licence version 2 şartları altında değiştirebilirsiniz.Label displaying the license statement in the About dialog.branch_mapping_no_groups_msgHiçbir grup seçilmedi.Alert message when adding a Mapping without a Group being selected.group_branch_act_lblGrup-tabanlıBranching type label for Group-based Branching.branch_mapping_dlg_condition_linked_msg{0} varolan bir dallanmaya bağlı. Devam etmek istiyor musunuz?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_branch_item_default{0} (varsayılan)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.cv_invalid_branch_target_to_activityDaha önce {0}'a bir dallanma oluşturulmuş.Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activityDaha önce {0}'dan bir dallanma oluşturulmuş.Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequenceKapalı bir sıralamaya yeni bir geçiş bağlayamazsınız.Error message displayed after drawing a transition from an activity in a closed sequence.is_remove_warning_msgUYARI: Bu ders kaldırılmak üzere. Bu dersi {0} olarak saklamak ister misiniz?Message for the alert dialog which appears following confirmation dialog for removing a lesson.cv_activityProtected_activity_remove_msgKaldırmak için lütfen bu etkinliğin {0} seçimini kaldırınız.Instruction how to delete an Activity linked to a Branching Activity.redundant_branch_mappings_msgBu tasarım kullanılmayan dallanma haritaları içeriyor ve kaldırılacak. Devam etmek istiyor musunuz?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.cv_invalid_trans_diff_branchesFarklı dallanmaların içindeki etkinlikler arasında geçiş oluşturamazsınız.Error message displayed after drawing a transition between activities of two different branches.gate_btnKapıToolbar &gt; Gate Buttonpi_start_offsetKapıyı açStart offset labelcv_activityProtected_activity_link_msg{0} {1}'e bağlanmıştır.Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_invalid_optional_seq_activity_no_branchesEtkinliği seçmeli sıralamaya eklemeden önce {0}'a bağlı dallanmaları kaldırınız.Alert message when user try to drop an activity with connected branches into optional sequences container.cv_invalid_optional_seq_activity{0}'ı seçmeli sıralama olarak ayarlamadan önce ona bağlı tüm geçişleri kaldırmalısınız.Alert message when user try to drop an activity with to or from transition into optional sequences container.to_conditions_dlg_defin_item_fn_lbl {0} ({1})Function label value for tool output definition drop-down.branch_mapping_dlg_condition_col_value_min{0}'dan küçük veya eşitValue for Condition field in mapping datagrid when Less than option is selected.to_conditions_dlg_defin_item_header_lbl[ Çıktı seç]Header label value (first index) for tool output definition drop-down.sequence_act_title_new{0} {1}Title for a new Sequence Activity for Optional or Branch and including count value.close_mc_tooltipSimge durumuna küçültTooltip message for close button on Branching canvas.pi_branch_tool_acts_lblGirdi (Araç)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.cv_activityProtected_child_activity_link_msg{0}'ın {1}'e bağlı bir alt etkinliği var.Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.pi_end_offsetKapıyı kapatEnd offset labelcv_invalid_optional_activity_no_branches{0}' sseçmeli etkinlik olarak ayarlamadan önce üzerinde bağlı olan dallanmaları klaldırmalısınız.Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.cancel_btn_tooltipDersi izlemeye döntool tip message for cancel button in toolbar (edit mode)to_conditions_dlg_range_lblAralıkHeading label for section in the dialog to set numeric condition range.branch_mapping_no_mapping_msgHerhangi bir harita seçilmediAlert message when removing a Mapping without a Mapping being selected.branch_mapping_dlg_match_dgd_lblHaritalamaHeading label for Mapping datagrid.to_conditions_dlg_defin_long_typearalıkType description for a long-value based ouput definition.cv_gateoptional_hit_chkKapı etkinliğini seçmeli etkinlik olarak ekleyemezsiniz.Error message when user drags gate activity over to optional containerpi_mapping_btn_lblHaritalamaLabel for button to open tool output to branch(s) dialog.cv_invalid_optional_activity{0}'ı seçmeli etkinlik olarak atamadan önce bağlı olan geçişleri kaldırınız.Alert message when user try to drop an activity with to or from transition into optional containerbin_tooltipEtkinlik akışından kaldırmak istediğiniz etkinliği bu kutuya bırakınız.Tool tip message for canvas bincv_show_validationSorunlarThe button on the confirm dialogld_val_issue_columnSorunThe heading on the issue in the ValidationIssuesDialogbranch_mapping_dlg_condition_col_value_exact{0}'ın tam değeriValue for Condition field in mapping datagrid when range set is only single value.pi_definelaterİzlemede tanımlaLabel for Define later for PIpi_seqAkışlarMin and max label postfix when an Optional Sequences activity is selected.cv_trans_readOnlyGeçiş {0} olamaz. Geçiş hedefi salt okunur.Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).condmatch_dlg_message_lblİstenen dallanma için varsayılan dallanma Özellikler alanındaki "varsayılan" onay kutusuna tıklanarak seçilebilir. Label for a message in the Condition to Branch matching dialog.pi_activity_type_gateAkışa bir kapı koyarak belirli koşullar oluşana kadar bekletme etkinliğiActivity type for gate in PIld_val_titleGeçerlemeThe title for the dialogvalidation_error_inputTransitionType2Girdi geçişinde eksik etkinlik yok.No activities are missing their input transition.validation_error_outputTransitionType2Çıktı geçişinde eksik etkinlik yok.No activities are missing their output transition.cv_invalid_trans_circular_sequenceDairesel bir akış oluşturmaya izniniz yok.Error message when a transition from one activity to another is creating a circular loopchosen_grp_lblİzlemede seçLabel for the grouping drop down in the PropertyInspectorpi_define_monitor_cb_lblİzlemede tanımlaCheckbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lblDallanmaların harita gruplarıMap Groups to Branchescv_edit_on_fly_lblÇalışırken düzenleLabel for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.learner_choice_grp_lblÖğrencinin tercihine bırakA type of grouping where the learner picks which group they'd like to be inpi_equal_group_sizesGrup büyüklükleri eşit olsun.Checkbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalcompetence_editor_dlgYetki düzenlemeDialog for adding/editing/removing competencescompetence_editor_warning_title_exists{0} başlıklı yetki zaten var.Warning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blankYetki başlığı boş bırakılamaz.Warning message when you try to define a competence with a blank competence titlecompetence_editor_add_competence_btnEkleAdd competence buttoncompetence_def_dlgYetki tanımlamaTitle for Dialog that allows you to define new or edit existing competencescompetences_mapped_to_act_lblYetkilerLabel in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_comptence_btnYetkileri haritalaLabel for button that invokes the Competence Mappings dialogcompetences_lblYetkilerLabel in Competence Editor dialog to show all the competences in the learning designcompetence_mappings_btnYetki haritalarıTitle for the dialog that allows you to map competences to an activitygate_openAçıkOpen state for gate activity, allows learners to pass through itgate_closedKapalıClosed state for gate activity, does not allow learners to pass through itpi_lbl_descAçıklamaDescription Label for PIws_dlg_descriptionAçıklamaLabel for description in Workspace dialog - Properties tabal_okTamamOK on the alert dialogprefs_dlg_okTAMAM5ws_newfolder_okTAMAMOK on the new folder name diaws_dlg_ok_buttonTAMAMWsp Dia OK Button labeltrans_dlg_okTAMAMOK Button on transition dialogpi_runofflineÇevrimdışı EtkinlikLabel for Run Oflinepi_group_typeGruplama türüProperty Inspector Grouping type drop downal_activity_paste_invalidÜzgünüm bu tür bir etkinliği kopyalayamazsınızAlert message when user is attempting to paste a unsupported activity type.pi_branch_typeDallanma türüProperty Inspector Branching type drop down.trans_dlg_gatetypecmbTürGate type combo labelld_val_doneTamamThe button label for the dialogal_doneSonlandırLabel for dialog completion button.al_cannot_move_to_diff_opt_seqBir etkinliği seçmeli etkinlikler içinde farklı bir akışa taşımak için önce etkinliği seçmeli etkinlik alanı dışına sürüklemeniz ve daha sonra seçmeli etkinlik alanında istediğiniz yere sürüklemeniz gerekmektedir.Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activityoptional_seq_btn_tooltipBir dizi seçmeli etkinlik oluşturur.Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_titleAkış şırasını kaldırRemoving sequencespi_optSequence_remove_msgKaldırılacak akış/lar etkinlikler içeriyor olabilir. Bu akışları kaldırmak istiyor musunuz?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_actAkışların numarasıLabel on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0} - AkışLabel to describe the amount of sequences in the container.activityDrop_optSequence_error_msgLütfen etkinliği akışlardan birinin üzerine bırakınız.Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.ta_iconDrop_optseq_error_msgBu kutuda kullanılabilir akışlar bulunmamaktadırError message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_titleSeçmeli AkışTitle for Optional Sequences Container.act_seq_lock_chkLütfen bu etkinliği seçmeli etkinliğe atamadan önce Seçmeli Etkinlik kutusunun kilidini açınız.Alert Message if user drags the activity to locked optional sequences container.mnu_help_helpTasarım Yardımlabel for menu bar Help - Authoring Help optionsys_error_msg_finishDevam etmek için LAMS Tasarımı yeniden başlatmalısınız. Problem belirlenmesine yardımcı olacak hata bilgisini kaydetmek istiyor musunuz?Common System error message finish paragraphccm_author_activityhelpYazarlık Etkinliği Yardım Label for Custom Context Menubranch_mapping_dlg_condtion_items_update_defaultConditions_zeroKullanıcı tanımlı bir koşul bulunamadığında güncellenemiyor. Araçlar'ın tasarım sayfalarında yapılandırmanız gerekmektedir.Alert message when the updating the conditions with a selected output definition that has no default conditions.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ws_dlg_date_modified_lblSon düzenlenme: {0}Show the last modified datetime of the selected design in the workspacews_save_title_reserved_charsBaşlık özel karakterler içeremez: {0}Error alert when trying to save with a title containing illegal characters.mnu_file_import_communityLAMS topluluğundan içe aktarFile menu item for importing a learning design from the LAMS community \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/vi_VN_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3act_tool_titleBộ công cụ hoạt độngTitle for Activity Toolkit Panelal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏTo Confirm title for LFErroral_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on the alert dialogapp_chk_langloadDữ liệu ngôn ngữ không được nạp vàomessage for unsuccessful language loadingapp_chk_themeloadDữ liệu đề tài vẫn chưa được tảimessage for unsuccessful theme loadingapp_fail_continueỨng dụng không thể tiếp tục. Hãy liên hệ hỗ trợmessage if application cannot continue due to any errorchosen_grp_lblChọn lựaLabel for the grouping drop down in the PropertyInspectorcopy_btnSao chépToolbar &gt; Copy Buttoncv_invalid_design_savedThiết kế của bạn chưa hiệu lực, nhưng đã được lưu lại, bấm'Các vấn đề' để xem sai sótMessage when an invalid design has been savedcv_invalid_trans_targetBạn không thể thiết lập chuyển tiếp với đối tượng nàyError message for when transition tool is dropped outside of valid target activitycv_show_validationCác vấn đềThe button on the confirm dialogcv_valid_design_savedChúc mừng! - Thiết kế của bạn đã có hiệu lực và đã được lưuMessage when a valid design has been saveddb_datasend_confirmCám ơn đã gửi dữ liệu tới serverMessage when user sucessfully dumps data to the serverdelete_btnXóaLabel for Delete buttongate_btnCổngToolbar &gt; Gate Buttongroup_btnNhómToolbar &gt; Group Buttongrouping_act_titleGom nhómDefault title for the grouping activityld_val_activity_columnHoạt độngThe heading on the activity in the ValidationIssuesDialogld_val_doneHoàn thànhThe button label for the dialogld_val_issue_columnVấn đềThe heading on the issue in the ValidationIssuesDialogld_val_titleCác vấn đề về hiệu lựcThe title for the dialoglicense_not_selectedSự lựa chọn không được phép - Hãy lựa chọn khácShown if no license is selected in the drop down in workspacemnu_editHiệu chỉnhMenu bar Editmnu_edit_copySao chépMenu bar Edit &gt; Copymnu_edit_cutCắtMenu bar Edit &gt; Cutmnu_edit_pasteDánMenu bar Edit &gt; Pastemnu_edit_redoLàm lạiMenu bar Edit &gt; Redomnu_edit_undoHủy thao tác vừa làmMenu bar Edit &gt; Undomnu_fileFileMenu bar Filemnu_file_closeĐóngMenu bar Closemnu_file_newMớiMenu bar Newmnu_file_openMởMenu bar Openmnu_file_saveLưuMenu bar savemnu_file_saveasLưu như...Menu bar Save asmnu_helpTrợ giúpMenu bar Helpmnu_help_abtLiên quan về LAMSMenu bar Aboutmnu_toolsCông cụMenu bar Toolsmnu_tools_optTùy chọn vẽMenu bar Optionalmnu_tools_prefsTính năngMenu bar preferencesmnu_tools_transSự chuyển tiếp vẽMenu bar draw transitionnew_btnMớiToolbar &gt; New Buttonnew_confirm_msgBạn có chắc muốn xóa các thiết kế của mình trên màn hìnhMsg when user clicks new while working on the existing designnone_act_lblKhông lựa chọnNo gate activity selectedopen_btnMở Toolbar &gt; Open Buttonoptional_btnTùy ChọnToolbar &gt; Optional Buttonpaste_btnDánToolbar &gt; Paste Buttonperm_act_lblChấp nhậnLabel for permission gate activitypi_activity_type_gateHoạt động của CổngActivity type for gate in PIpi_activity_type_groupingGom nhóm hoạt độngActivity type for grouping in Property Inspectorpi_definelaterĐịnh nghĩa sauLabel for Define later for PIpi_end_offsetĐóng CổngEnd offset labelpi_group_typeLoại nhómProperty Inspector Grouping type drop downpi_hoursGiờHours label in Property Inspectorpi_lbl_currentgroupNhóm hiện thờiCurrent grouping label for PIpi_lbl_descMô tảDescription Label for PIpi_lbl_groupGom nhómGrouping label for PIpi_lbl_titleTiêu ĐềTitle label for PIpi_max_actSố hoạt động tối đalabel for maximum Activitiespi_min_actSố hoạt động tối thiểulabel for Minimum activitiespi_minsPhútMins label in teh property inspectorpi_no_groupingĐể trốngCombo title for no groupingpi_num_learnersSố học viênPI Num learners labelpi_optional_titleHoạt động tùy chọnTitle for oprional activity property inspectorpi_runofflineChạy ngoại tuyếnLabel for Run Oflinepi_start_offsetMở cổngStart offset labelpi_titleĐặc tínhOn the title bar of the PIprefix_copyofBản saoPrefix for copy paste command for canvas activitiesprefs_dlg_cancelHủy bỏ6prefs_dlg_lng_lblNgôn Ngữ7prefs_dlg_okĐồng ý5prefs_dlg_theme_lblĐề tài8prefs_dlg_titleTùy thích4preview_btnXem trướcToolbar &gt; Preview Buttonproperty_inspector_titleĐặc tínhOn the title bar of the PIrandom_grp_lblNgẫu nhiênLabel for the grouping drop down in the PropertyInspectorrename_btnĐổi tênLabel for Rename Buttonsave_btnLưuToolbar &gt; Save buttonsched_act_lblLịch trình hoạt động của cổngLabel for schedule gate activitysynch_act_lblĐồng bộ hóaUsed as a label for the Synch Gate Activity Typetk_titleBộ công cụ hoạt độngLabel for Activities Toolkit Paneltrans_btnSự chuyển tiếpToolbar &gt; Transition Buttontrans_dlg_cancelHủy bỏCancel button on transition dialogtrans_dlg_gateSự đồng bộ hóaHeader for the transition props dialogtrans_dlg_gatetypecmbLoạiGate type combo labeltrans_dlg_okChấp nhậnOK Button on transition dialogtrans_dlg_titleSự chuyển tiếpTitle for the transition properties dialogws_RootThư mục gốcRoot folder title for workspacews_chk_overwrite_resourceCảnh báo : bạn đang ghi đè lên chuỗi này !ws_click_folder_fileHãy bấm vào một thư mục để lưu lại, hoặc ghi đè lên thiết kế khácError msg if no folder or file is selectedws_copy_same_folderThư mục nguồn và thư mục đích là mộtThe user has tried to drag and drop to the same placews_dlg_cancel_buttonHủy bỏ2ws_dlg_filenameTên FileLabel for File name in workspace windowws_dlg_location_buttonKhu vựcWorkspace dialogue Location btn labelws_dlg_ok_buttonĐồng ýWsp Dia OK Button labelws_dlg_open_btnMởWsp Dia Open Button labelws_dlg_properties_buttonĐặc tínhWorkspace dialogue Properties btn labelws_dlg_save_btnLưuWsp Dia Save Button labelws_dlg_titleKhông gian làm việc0ws_newfolder_cancelHủy bỏCancel on the new folder name diaws_newfolder_insHãy đặt tên một thư mục mớiInstructions on the new name pop upws_newfolder_okĐồng ýOK on the new folder name diaws_no_permissionXin lỗi, bạn không được phép ghi lên tài nguyên nàyMessage when user does not have write permission to complete actionws_rename_insHãy nhập tên mớiMessage of the new name for the userws_tree_mywspKhông gian làm việc của tôiThe root level of the treews_tree_orgsNhóm của tôiShown in the top level of the tree in the workspacews_view_license_buttonXemTo show the license to the useract_lock_chkHãy mở khóa chứa đựng hoạt động tùy chọn trước khi gán cho hoạt động các tùy chọnAlert Message if user drags the activity to locked optional activity container sys_error_msg_startLỗi hệ thống này đã được tìm thấyCommon System error message starting linesys_error_msg_finishBạn cần phải khởi động lại tính năng Soạn bài của LAMS để tiếp tục. Bạn có muốn lưu các thông tin về lỗi này để giúp sửa lỗi ?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titlepi_num_groupsSố lượng nhómNumber of groups in Property inspectorpi_parallel_titleHoạt động đồng thờiTitle for parallel activity property inspectoropt_activity_titleHoạt động tùy chọnTitle for Optional Activity Containerlbl_num_activitiesHoạt Độngreplacement for word activitiesal_sendGửiSend button label on the system error dialogal_cannot_move_activityXin lỗi, ban không thể thay đổi hoạt động nàyAlert message when user tries to move child activity of any parallel activitycv_gateoptional_hit_chkBạn không thể thêm cổng hoạt động như là một hoạt động tùy chọnError message when user drags gate activity over to optional containerprefix_copyof_countBản sao ({0})Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalidBạn không thể lưu thiết kế trong thư mục này. Hãy chọn một thư mục con có hiệu lựcAlert message if root My Workspace folder is selected to save a design in.ws_click_file_openHãy bấm vào một thiết kế để mở ra.Alert message if folder tried to be opened.ws_license_lblBản quyềnLabel for Licence drop down on workspace properties tab viewws_license_comment_lblThông tin bản quyền thêm vàoLabel for Licence Comment description below license drop downcv_invalid_optional_activityĐổi chỗ và rời sự chuyển tiếp từ {0} trước khi thiết lập nó thành hoạt động tùy chọnAlert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missingHoạt động thứ hai của sự chuyển tiếp đang thất lạcError message when target activity for transition is missingcv_invalid_trans_target_from_activitySự chuyển tiếp từ {0} đã tồn tạiError message when a transition from the activity already existcv_invalid_trans_target_to_activitySự chuyển tiếp đến {0} đã tồn tạiError message when a transition to the activity already existbranch_btnNhánhLabel for disabled Branch button shown as submenu for flow button in Toolbarflow_btnLuồngLabel for Flow button in Toolbarmnu_file_importNhập vàoMenu bar Importcv_design_export_unsavedBạn không thể xuất ra một thiết kế chưa được lưuAlert message when trying to export can unsaved design.cv_design_unsavedThiết kế trên nền đã thay đổi.Bạn có muốn tiếp tục mà không cần lưu?Alert message when opening/importing when current design on canvas is unsaved or modified.mnu_file_exportXuất raMenu bar Exportws_chk_overwrite_existingThư mục này đã chứa tên tệp tin {0}.Alert message when saving a design with the same filename as an existing design.ws_click_virtual_folderKhông thể sử dụng thư mục nàyAlert message for trying to use a virtual folder to save/open a file.mnu_file_exitThoátFile Menu Exitws_no_file_openKhông tìm thấy Alert message if no matching file is found to open in selected folder of Workspace.cv_invalid_trans_circular_sequenceBạn không được phép có vòng lặpError message when a transition from one activity to another is creating a circular loopbin_tooltipThả vào thùng rác một hoạt động để gỡ bỏ nó khỏi vòng hoạt độngTool tip message for canvas binnew_btn_tooltipXóa bỏ kết quả hiện tại và lập lại không gian làm việc sẵn sàng cho sử dụngTool tip message for new button in toolbaropen_btn_tooltipHiển thị tệp Tool tip message for open button in toolbarsave_btn_tooltipLưu nhanh kết quả hoạt động hiện tạitool tip message for save button in toolbarcopy_btn_tooltipSao chép hoạt động được chọntool tip message for copy button in toolbarpaste_btn_tooltipDán bản sao của hoạt động được lựa chọntool tip message for paste button in toolbartrans_btn_tooltipSử dụng bút để thể hiện liên kết giữa các hoạt động (hoặc bấm phím CTRL)tool tip message for transition button in toolbaroptional_btn_tooltipKhởi tạo một bộ các hoạt động tùy chọntool tip message for optional button in toolbargate_btn_tooltipTạo điểm dừngtool tip message for gate button in toolbarbranch_btn_tooltipTạo nhánh (chỉ có thể ở LAMS phiên bản 2.1)tool tip message for branch button in toolbarflow_btn_tooltipTạo luồng điều khiển các hoạt độngtool tip message for flow button in toolbargroup_btn_tooltipTạo hoạt động nhómtool tip message for group button in toolbarpreview_btn_tooltipXem trước bài học như học viên sẽ được xemTool tip message for preview button in toolbarcv_activity_dbclick_readonlyBạn không thể sửa các công cụ của thiết kế chỉ đươc đọc.Hãy lưu bản sao của thiết kế và thử lại sauAlert message when double-clicking an Activity in an open read-only designcv_readonly_lblChỉ đọcLabel for top left of canvas shown when a read-only design is open.al_empty_designXin lỗi, Bạn không thể lưu một thiết kế rỗngalert message when user want to save an empty designcv_autosave_err_msgMột lỗi đã được phát hiện khi tự động lưu thiết kế của bạn.Nếu lỗi này vẫn còn xin hãy liên hệ với quản trị hệ thốngAlert error message when auto-save fails.cv_autosave_rec_msgBạn sắp khôi phục lại mất mát gần đây hoặc thiết kế chưa lưu.Message informing users that they have recovered data for a design.cv_autosave_rec_titleCảnh báoAlert title for auto save recovery message.mnu_file_recoverKhôi phục lại ...Menu bar Recovercv_activity_copy_invalidXin lỗi.! Bạn không được phép sao chép kết quả hoạt động nàyError message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalidXin lỗi.! Bạn không được cắt bỏ kết quả hoạt động nàyError message when user try to cut child activity from either optional or parallel activity containeral_activity_copy_invalidXin lỗi! Bạn phải chọn hoạt động trước khi sao chépAlert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasal_activity_openContent_invalidXin lỗi! Bạn phải chọn hoạt động trước khi Mở/Sửa danh mục nội dung hoạt động khi bấm chuoalert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasws_del_confirm_msgBạn có chắc là muốn xóa tệp tin/ thư mục này không?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_file_name_emptyXin lỗi! Bạn không thể lưu thiết kế mà không đặt tênError message when user try to save a design with no file namews_entre_file_nameHãy nhập tên thiết kế,và sau đó bấm nút lưuError message when user try to save a design with no file namecv_activity_helpURL_undefinedKhông thể tìm thấy trang trợ giúp cho {0}Alert message when a tool activity has no help url defined.cv_untitled_lblKhông tiêu đề - 1Label for Design Title bar on canvasmnu_help_helpGiúp soạn giảlabel for menu bar Help - Authoring Help optionccm_open_activitycontentMở/Sửa nội dung hoạt độngLabel for Custom Context Menuccm_copy_activitySao chép hoạt độngLabel for Custom Context Menuccm_paste_activityDán hoạt độngLabel for Custom Context Menuccm_piTính năng kiểm tra...Label for Custom Context Menuccm_author_activityhelpGiúp soạn bàiLabel for Custom Context Menuws_dlg_descriptionMô tảLabel for description in Workspace dialog - Properties tabtrans_dlg_nogateKhôngDrop down default for gate typepi_daysNgàyDays label in property inspector for gate toolcv_close_return_to_ext_srcĐóng và quay trở lại {0}Button label used on close and return button in save confirm message popup. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/zh_CN_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_autosave_rec_msg你将要恢复上一个丢失的或没保存的设计。你的当前设计会被清除。继续吗?chosen_grp_lbl在监视器中选择to_conditions_dlg_range_lbl范围sched_act_lbl计划cv_autosave_rec_title警告synch_act_lbl同步mnu_file_recover恢复tk_title活动工具箱act_tool_title活动工具箱al_alert提示al_cancel取消al_confirm确认al_ok确定cv_invalid_design_saved虽然已被保存,但设计不再有效,请点击“潜在问题”查看是什么错了?app_chk_themeload主题还没有被加载app_fail_continue程序无法继续。请联系技术支持人员license_not_selected当前没有选择许可证-请选一个。copy_btn复制pi_min_act最小{0}cv_invalid_trans_target您不能创建到该对象的链接cv_show_validation问题pi_runoffline离线活动db_datasend_confirm感谢您发送数据到服务器delete_btn删除gate_btngroup_btngrouping_act_title分组ld_val_activity_column活动ld_val_done完成ld_val_issue_column问题ld_val_title验证问题ws_chk_overwrite_resource警告:您正试图改写这个序列!mnu_edit编辑mnu_edit_copy复制mnu_edit_cut剪切mnu_edit_paste粘贴mnu_edit_redo重做mnu_edit_undo回退mnu_file文件mnu_file_close关闭mnu_file_new新建mnu_file_open打开mnu_file_save保存ws_tree_orgs我的组mnu_help帮助to_conditions_dlg_defin_item_header_lbl[选择输出] mnu_tools工具mnu_tools_opt创建可选活动mnu_tools_prefs偏好mnu_tools_trans创建链接new_btn新建new_confirm_msg您确定要清除屏幕上的设计吗?none_act_lblopen_btn打开optional_btn可选活动paste_btn粘贴perm_act_lbl权限pi_activity_type_gate门活动pi_activity_type_grouping分组活动to_conditions_dlg_from_lbl起始值pi_end_offset关闭门pi_group_type分组类型pi_hours小时pi_lbl_currentgroup当前分组pi_lbl_desc描述pi_lbl_group分组pi_lbl_title标题to_conditions_dlg_to_lbl结束值al_group_name_invalid_existing组名必须唯一pi_mins分钟cv_autosave_err_msg试图自动保存你的设计时发生了一个错误。请增加Flash Player存储设置。app_chk_langload语言数据没有加载pi_optional_title可选活动cv_valid_design_saved祝贺! -设计有效并且已被保存。pi_start_offset打开门pi_title属性prefix_copyof副本prefs_dlg_cancel取消prefs_dlg_lng_lbl语言prefs_dlg_ok确定prefs_dlg_theme_lbl主题prefs_dlg_title偏好preview_btn预览property_inspector_title属性random_grp_lbl随机rename_btn重命名save_btn保存trans_btn链接trans_dlg_cancel取消trans_dlg_gate同步trans_dlg_gatetypecmb类型trans_dlg_ok确定trans_dlg_title链接ws_Rootws_click_folder_file请选择文件夹保存,或者一个设计去覆盖它ws_copy_same_folder源和目标文件夹相同ws_dlg_cancel_button取消ws_dlg_filename文件名ws_dlg_location_button位置ws_dlg_ok_button确定ws_dlg_open_btn打开ws_dlg_properties_button属性ws_dlg_save_btn保存ws_dlg_title工作空间ws_newfolder_cancel取消ws_newfolder_ins请输入新文件夹名ws_newfolder_ok确定ws_no_permission对不起,您没有权限写入该资源ws_rename_ins请输入新名称ws_tree_mywsp我的工作空间mnu_help_abt关于LAMSws_view_license_button视图pi_definelater在监视器中定义sys_error_msg_start系统错误如下:sys_error_msg_finish您可能需要重新启动LAMS设计面板。您想保存下面的信息来帮助解决问题吗?sys_error系统错误al_send发送al_activity_copy_invalid对不起!在点击复制按钮前,你必需选中这个活动。opt_activity_title可选活动ws_license_lbl许可证ws_license_comment_lbl附加的许可证信息al_cannot_move_activity对不起,您不能移动该活动prefix_copyof_count({0})的复制ws_save_folder_invalid您不能把设计保存在该文件夹,请选择子文件夹ws_click_file_open请点击要打开的设计cv_invalid_optional_activity在设置它为可选活动前,移除它前后的连接cv_trans_target_act_missing该连接缺少后置活动pi_num_groups组数cv_gateoptional_hit_chk您可以把门活动设为一个可选活动cv_invalid_trans_target_from_activity从{0}开始的连接已经存在cv_invalid_trans_target_to_activity到达{0}的连接已经存在cv_design_unsaved画布上的设计已经改变。不保存而继续吗?mnu_file_exit退出cv_design_export_unsaved您必须先保存再导出mnu_file_export导出ws_chk_overwrite_existing该文件夹已经包含一个名为{0}的文件ws_no_file_open找不到文件branch_btn分支flow_btnmnu_file_import导入ws_click_virtual_folder无法使用该文件夹pi_parallel_title并行活动cv_invalid_trans_circular_sequence设计中不允许存在环路cv_activity_cut_invalid对不起!你不允许剪切这个子活动。mnu_file_saveas另存为...to_conditions_dlg_title_lbl创建输出条件ws_del_confirm_msg你确信你想删除这个文件/文件夹吗?cv_activity_copy_invalid对不起!你不允许复制这个子活动。al_activity_openContent_invalid对不起!在你点击活动右键菜单中的打开/编辑活动内容选项之前,你必需选中这个活动。close_mc_tooltip最小new_btn_tooltip清除当前序列,重置工作空间以供使用copy_btn_tooltip复制选定的活动paste_btn_tooltip粘贴选定的活动trans_btn_tooltip用这个钢笔图标来创建活动之间的链接(或按CTRL键)optional_btn_tooltip创建一组可选择的活动branch_btn_tooltip创建一个分支(在LAMS v 2.1版本中可用)group_btn_tooltip创建一个分组活动bin_tooltip将一个活动拖到这个垃圾箱,从而将它从活动序列中移除cv_activity_dbclick_readonly你不能编辑只读设计的工具。请保存设计的复本后再试。cv_readonly_lbl只读open_btn_tooltip显示文件对话框,打开一个活动序列save_btn_tooltip快速保存当前活动序列gate_btn_tooltip创建一个停止点flow_btn_tooltip创建流式控制活动preview_btn_tooltip预览你的序列,就象学习者将看到的样子al_empty_design对不起,你不能保存一个空的设计。ws_entre_file_name请输入该设计的名称,然后点击“保存”按钮。cv_activity_helpURL_undefined不能找到关于{0}的帮助页面cv_untitled_lbl无标题-1ws_file_name_empty对不起!你不能保存一个没有文件名的设计。pi_days日期mnu_help_help创建者帮助ccm_author_activityhelp创建活动帮助ccm_open_activitycontent打开/编辑活动内容ccm_copy_activity复制活动ccm_paste_activity粘贴活动ccm_pi属性检查者...ws_dlg_description描述trans_dlg_nogatecv_close_return_to_ext_src关闭并回到 {0}cv_eof_changes_applied更改成功.mnu_file_apply_changes应用所做的更改validation_error_transitionNoActivityBeforeOrAfter连接之前或之后必须要有一个活动validation_error_activityWithNoTransition一个活动必须要有一个输入或输出连接validation_error_inputTransitionType1该活动没有输入连接validation_error_inputTransitionType2没有活动正在丢失他们的输入连接.validation_error_outputTransitionType1该活动没有输出连接validation_error_outputTransitionType2没有活动正在丢失他们的输出连接。cv_invalid_design_on_apply_changes不能应用更改. 一个或多个连接丢失。apply_changes_btn应用更改apply_changes_btn_tooltip将更改应用到设计并回到监视课程。cancel_btn取消cv_activity_readOnly活动不能为{0}. 该活动是只读的。cv_edit_on_fly_lbl灵活编辑cv_element_readOnly_action_del移去cv_element_readOnly_action_mod修改cv_eof_finish_invalid_msg为了完成编辑,设计必须是有效的。cv_eof_finish_modified_msg警告:您的设计已经修改了,是否不保存而直接关闭?cv_trans_readOnly连接不能为{0}. 连接目标是只读的。cancel_btn_tooltip回到监视课程。mnu_file_finish完成about_popup_title_lbl关于 - {0}about_popup_version_lbl版本branch_mapping_dlg_condition_col_value_max大于或等于{0}about_popup_license_lbl该软件是一个自由软件; 您可以重新发布并/或修改它,前提是您必须遵守自由软件组织发布的准则。stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgbranching_act_title分支tool_branch_act_lbl学习者的输出groupnaming_dialog_instructions_lbl点击一个名称来改变其值。pi_branch_tool_acts_lbl输入branch_mapping_no_branch_msg没有被选择的分支。al_done完成condmatch_dlg_cond_lst_lbl条件condmatch_dlg_title_lbl分支的匹配条件pi_defaultBranch_cb_lbl默认to_conditions_dlg_add_btn_lbl+增加to_conditions_dlg_clear_all_btn_lbl全部清除to_conditions_dlg_remove_item_btn_lbl—移去branch_mapping_dlg_branch_col_lbl分支branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblbranch_mapping_no_mapping_msg没有选择图。branch_mapping_no_condition_msg没有选择条件。branch_mapping_auto_condition_msg所有现存的条件将会出现在默认的分支上。branch_mapping_dlg_match_dgd_lblbranch_mapping_dlg_condition_col_value范围{0}到{1}branch_mapping_dlg_condition_col_value_exact{0}的精确值pi_mapping_btn_lbl安装图pi_define_monitor_cb_lbl在监视器中定义groupmatch_dlg_title_lbl分支的图组branch_mapping_no_groups_msg没有选择组。group_branch_act_lbl基于组branch_mapping_dlg_branches_lst_lbl分支groupmatch_dlg_groups_lst_lblgroupnaming_dlg_title_lbl组命名pi_activity_type_branching分支活动pi_branch_type分支类型pi_group_naming_btn_lbl名称组sequence_act_title序列chosen_branch_act_lbl教师选择to_condition_start_value开始值to_condition_end_value结束值to_condition_invalid_value_range{0}不在目前条件下的范围中。to_condition_invalid_value_direction{0}不能大于{1}。is_remove_warning_msg警告:该课程将要被移去。您想把该课程保留为{0}吗?al_continue继续branch_mapping_dlg_condition_linked_msg{0}链接到一个已经存在的分支上,您要继续吗?branch_mapping_dlg_condition_linked_all有条件的branch_mapping_dlg_condition_linked_single此条件是opt_activity_seq_title可选序列act_seq_lock_chk在将该活动加入到可选序列之前,请将该可选序列解锁。to_condition_untitled_item_lbl无标题{0}redundant_branch_mappings_msg该设计包含将要被移去的未知的分支图,您想要继续吗?cv_activityProtected_activity_remove_msg要移去请不要将活动选择为{0}。pi_optSequence_remove_msg移去序列有可能会删除一些活动。您确信要移去这些序列吗?pi_no_seq_act无序列lbl_num_sequences{0}-序列activityDrop_optSequence_error_msg请将此活动移到某个序列中。cv_invalid_optional_seq_activity_no_branches在将{0}添加到一个可选序列之前,请移去与{0}相连的任何分支。ta_iconDrop_optseq_error_msg此容器中没有活动的序列。cv_invalid_optional_seq_activity在将{0}放到一个可选序列之前,请移去所有和{0}相连的链接。cv_invalid_optional_activity_no_branches在将{0}放到一个可选序列之前,请移去所有和{0}相连的分支。cv_activityProtected_activity_link_msg{0}链接到{1}上。cv_activityProtected_child_activity_link_msg{0}有一个链接到{1}的子链。optional_act_btn活动optional_seq_btn序列optional_seq_btn_tooltip创建一组可选序列。pi_optSequence_remove_msg_title正在移去序列。to_conditions_dlg_lt_lbl小于或等于branch_mapping_dlg_condition_col_value_min小于或等于{0}pi_act活动pi_seq序列about_popup_copyright_lbl© 2002-2008 {0} 基金。to_conditions_dlg_defin_item_fn_lbl{0} ({1})sequence_act_title_new{0} {1}to_conditions_dlg_defin_long_type范围to_conditions_dlg_defin_bool_type正确/错误to_conditions_dlg_condition_items_name_col_lbl名称to_conditions_dlg_condition_items_value_col_lbl条件to_conditions_dlg_options_item_header_lbl【选项】to_conditions_dlg_gte_lbl大于或等于to_conditions_dlg_lte_lbl小于或等于groupnaming_dialog_col_groupName_lbl组名称mnu_file_insertdesign插入/合并ws_dlg_insert_btn插入branch_mapping_dlg_branch_item_default{0}(默认)pi_group_matching_btn_lbl把组匹配到分支refresh_btn刷新pi_tool_output_matching_btn_lbl把条件匹配到分支al_activity_paste_invalid对不起,您不能粘贴这种类型的活动。to_conditions_dlg_condition_items_update_defaultConditions您将要更新您选定的输出定义的条件,这将要清除所有现存分支的链接,是否继续?branch_mapping_dlg_condtion_items_update_defaultConditions_zero因为没有发现用户定义条件,无法更新。可能需要在工具编写页面给予定义。to_conditions_dlg_defin_user_defined_type用户定义pi_branch_tool_acts_default--选项-- grouping_invalid_with_common_names_msg不能保存设计,因为组活动'{0}'有多于一组带有相同名字,请检查组后再试。preview_btn_tooltip_disabled要“预览”序列,需要先保存,然后点击“预览”condmatch_dlg_message_lbl通过点击期望分支属性区“默认”复选框,默认分支能被选中。cv_invalid_trans_diff_branches在不同分支上的活动之间不能创建过渡。cv_invalid_branch_target_to_activity到{0}的分支已经存在。cv_invalid_branch_target_from_activity从{0}发出的分支已经存在。cv_invalid_trans_closed_sequence不能连接一个新的过渡到封闭序列上。al_group_name_invalid_blank组名不能为空。al_cannot_move_to_diff_opt_seq在可选序列中移动的一个活动到不同序列,首先把活动拖出可选序列区,然后点击并拖动该活动到可选序列的新位置。cv_design_insert_warning一旦插入另一个序列后就无法取消这个行为——老序列在新序列插入式自动保存了。要回到老序列,需要先手工删除全部新序列活动,然后保存。要保留当前序列不变,点击“取消”。否则,点击“确定”选择一个序列插入。pi_max_act最大{0}pi_no_grouping无分组act_lock_chk在设定这个活动为可选之前,请先解除这个可选活动容器的锁定。lbl_num_activities{0} -活动pi_activity_type_sequence序列活动({0}) pi_condmatch_btn_lbl创建条件about_popup_trademark_lbl{0}是{0}基金( {1} )的注册商标。pi_num_learners学习者编号learner_choice_grp_lbl学习者的选择pi_equal_group_sizes组大小相同competence_editor_dlg权限编辑competences_lbl权限competence_editor_add_competence_btn添加权限competence_def_dlg权限定义对话框competence_editor_warning_title_exists该名称的权限已经存在competence_editor_warning_title_blank权限名称不能为空competence_editor_warning_competence_mapped你试图删除的权限目前正被映射到一个或多个活动。删除这个权限将会移除它的映射。你确定要继续吗?map_comptence_btn权限映射competence_mappings_btn权限——活动competences_mapped_to_act_lbl映射到一个活动的所有权限map_gate_conditions_btn条件——闸门状态(开/关)gate_mapping_auto_condition_msg剩下的所有条件将被映射到选定的关闭状态的闸门gate_open开门gate_closed关门al_activity_view_competence_mappings_invalid请确定您在查看权限映射之前已经选定了一个活动ws_dlg_date_modified_lbl最后修改时间ws_save_title_reserved_chars标题中不能含有特殊字符mnu_file_import_community从LAMS社区输入support_act_btn支持arrange_act_btn安排活动support_act_title支持活动view_students_before_selection在选择之前浏览学习者support_act_btn_tooltip创建可选择的支持活动的集合gradebook_output_type成绩册输出support_msg_no_connection支持的此活动与其它活动没有联系support_msg_invalid_child次活动类型{0}不能被添加为所支持的活动support_msg_max_children_reached不能从{0}删除活动。此支持的活动允许最大数量的{1}子活动support_msg_cannot_be_child不能删除一个支持的活动,如果此活动已经包含在另外一个活动中grp_chk_clear_branch_mappings警告:此操作将会清除已经存在的、与此组活动有关在分支地图的所有组,确定要继续吗? \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/authoring/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/authoring/Attic/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/authoring/zh_TW_dictionary.xml 12 Jan 2010 01:20:18 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3cv_invalid_optional_seq_activity_no_branches在將{0}添加到一個可選編程之前,請移除與{0}相連的任何分支Alert message when user try to drop an activity with connected branches into optional sequences container.ta_iconDrop_optseq_error_msg此內容中沒有活動的編程Error message when a Template Activity icon is dropped onto a empty Optional Sequences container.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_copyright_lbl2002-2009{0}基金會Label displaying copyright statement in About dialog.cv_invalid_optional_seq_activity將{0}放到一個選澤編程之前,請移去所有和{0}相連的鏈結。Alert message when user try to drop an activity with to or from transition into optional sequences container.cv_invalid_optional_activity_no_branches將{0}放到一個選澤編程之前,請移去所有和{0}相連的分支。Alert message when a Template Activity icon is dropped onto a empty Optional Sequences container.opt_activity_seq_title選擇編程Title for Optional Sequences Container.to_conditions_dlg_lt_lbl小於或等於Less than option for long type conditions.branch_mapping_dlg_condition_col_value_min小於或等於{0}Value for Condition field in mapping datagrid when Less than option is selected.pi_act活動Min and max label postfix when an Optional Activity is selected.pi_seq編程Min and max label postfix when an Optional Sequences activity is selected.to_conditions_dlg_defin_long_type範圍Type description for a long-value based ouput definition.to_conditions_dlg_defin_bool_type真/假Type description for a lboolean-value based ouput definition.to_conditions_dlg_defin_item_header_lbl[選擇輸出]Header label value (first index) for tool output definition drop-down.to_conditions_dlg_defin_item_fn_lbl{0} ({1})Function label value for tool output definition drop-down.to_conditions_dlg_condition_items_name_col_lbl名稱Column header for the Condition Item(s) datagrid column.to_conditions_dlg_condition_items_value_col_lbl狀態Column header for the Condition Item(s) datagrid column.to_conditions_dlg_options_item_header_lbl[選項]Header label value (first index) for tool long (range) options drop-down.about_popup_trademark_lbl{0}是{0}基金會的註冊商標({1})Label displaying the trademark statement in the About dialog.sequence_act_title_new{0} {1} Title for a new Sequence Activity for Optional or Branch and including count value.ws_dlg_insert_btn插入Button label on Workspace in INSERT mode.close_mc_tooltip最小化Tooltip message for close button on Branching canvas.to_conditions_dlg_gte_lbl大於或等於Greater than or equal toto_conditions_dlg_lte_lbl小於或等於Less than or equal togroupnaming_dialog_col_groupName_lbl群組名稱Column label for editable datagrid in Group Naming dialog.mnu_file_insertdesign插入/合併Menu item label for Inserting a Learning Design.branch_mapping_dlg_branch_item_default{0}(預設)Item value displayed in the Branches list (Tool Conditions mapping dialog) for the default branch.ld_val_activity_column活動The heading on the activity in the ValidationIssuesDialogpi_group_matching_btn_lbl分配群組到分支Button in author that allows you to allocate groups to branches for group based branchingpi_tool_output_matching_btn_lbl分配狀態到分支Button in author that allows you to match conditions to branches for tool-output based branchingrefresh_btn重新整理Button label for Refresh button on the Tool Output Conditions dialog.to_conditions_dlg_condition_items_update_defaultConditions您將要更新您選定的輸出定義的條件,這將要清除所有現存分支的鏈結,是否繼續?Confirm message for alert dialog when refreshing the default conditions for a selected definition in the Tool Output Conditions dialog.branch_mapping_dlg_condtion_items_update_defaultConditions_zero因為沒有發現使用者定義條件,無法更新。可能需要在工具編寫頁面給予定義。Alert message when the updating the conditions with a selected output definition that has no default conditions.to_conditions_dlg_defin_user_defined_type使用者定義Type description for a user-defined (boolean set) based ouput definition.grouping_invalid_with_common_names_msg不能保存設計,因為組活動'{0}'有多於一組帶有相同名字,請檢查組後再試。Alert message displayed when the Grouping validation fails during saving a design.trans_dlg_title鏈接Title for the transition properties dialogact_tool_title活動工具箱Title for Activity Toolkit Panelal_alert提示Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm確認To Confirm title for LFErroral_ok確定OK on the alert dialogapp_chk_langload語言資料尚未載入message for unsuccessful language loadingapp_chk_themeload主題資料尚未載入message for unsuccessful theme loadingapp_fail_continue應用程式無法繼續,請聯繫支援窗口message if application cannot continue due to any errorcopy_btn複製Toolbar &gt; Copy Buttoncv_invalid_trans_target您不能建立轉移於這個物件Error message for when transition tool is dropped outside of valid target activitycv_show_validation議題The button on the confirm dialogdb_datasend_confirm謝謝傳送資料至伺服器Message when user sucessfully dumps data to the serverdelete_btn刪除Label for Delete buttongate_btnToolbar &gt; Gate Buttongroup_btn小組Toolbar &gt; Group Buttongrouping_act_title分組Default title for the grouping activityld_val_done完成The button label for the dialogld_val_issue_column議題The heading on the issue in the ValidationIssuesDialoglicense_not_selected目前沒有選定任何授權 - 請選擇一項Shown if no license is selected in the drop down in workspacemnu_edit編輯Menu bar Editmnu_edit_copy複製Menu bar Edit &gt; Copymnu_edit_paste貼上Menu bar Edit &gt; Pastemnu_edit_redo取消(復原)Menu bar Edit &gt; Redomnu_edit_undo復原Menu bar Edit &gt; Undomnu_file檔案Menu bar Filemnu_file_close關閉Menu bar Closemnu_file_new新增Menu bar Newmnu_file_open開啟Menu bar Openmnu_file_save儲存Menu bar savemnu_file_saveas另存新檔Menu bar Save asmnu_help求助Menu bar Helpmnu_help_abt關於LAMSMenu bar Aboutmnu_tools工具Menu bar Toolsmnu_tools_opt建立選項Menu bar Optionalmnu_tools_trans建立鏈接Menu bar draw transitionnew_btn新增Toolbar &gt; New Buttonnew_confirm_msg您確定要清除螢幕上的設計?Msg when user clicks new while working on the existing designnone_act_lblNo gate activity selectedopen_btn開啟Toolbar &gt; Open Buttonoptional_btn選項Toolbar &gt; Optional Buttonpaste_btn貼上Toolbar &gt; Paste Buttonperm_act_lbl許可Label for permission gate activitypi_activity_type_gate門活動Activity type for gate in PIpi_activity_type_grouping分組活動Activity type for grouping in Property Inspectorpi_end_offset關閉門End offset labelpi_group_type分組類型Property Inspector Grouping type drop downpi_hours小時Hours label in Property Inspectorpi_lbl_currentgroup目前分組Current grouping label for PIpi_lbl_desc描述Description Label for PIpi_lbl_group分組Grouping label for PIpi_lbl_title標題Title label for PIld_val_title確認議題The title for the dialogmnu_edit_cut剪下Menu bar Edit &gt; Cutcv_valid_design_saved恭喜!您的設計是有效的,而且已經儲存好了。Message when a valid design has been savedsave_btn_tooltip快速儲存目前的活動序列tool tip message for save button in toolbarcopy_btn_tooltip複製已選定的活動tool tip message for copy button in toolbarpaste_btn_tooltip貼上已複製的選定活動tool tip message for paste button in toolbartrans_btn_tooltip利用這枝筆在活動之間劃過渡符號(或按CTRL鍵)tool tip message for transition button in toolbaroptional_btn_tooltip建立一組選擇性活動tool tip message for optional button in toolbargate_btn_tooltip建立一個停止點tool tip message for gate button in toolbarbranch_btn_tooltip建立一個分支(限於LAMS v 2.1)tool tip message for branch button in toolbarflow_btn_tooltip建立流程控制活動tool tip message for flow button in toolbargroup_btn_tooltip建立一個分組活動tool tip message for group button in toolbarpreview_btn_tooltip以學習者身份預覽活動序列時將看到它Tool tip message for preview button in toolbaral_activity_copy_invalid抱歉!您必須先點選活動名稱,再按〈複製〉鈕Alert message when user select copy activity in context menu or clicks copy button in the menu before selecting any activity on the canvasccm_open_activitycontent開啟/編輯活動內容Label for Custom Context Menuccm_copy_activity複製活動Label for Custom Context Menuccm_paste_activity貼上活動Label for Custom Context Menuccm_pi屬性檢閱Label for Custom Context Menumnu_file_exit結束File Menu Exital_activity_openContent_invalid抱歉!您必須先選擇活動,才能按開啟/編輯活動內容功能alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvascv_design_export_unsaved您不能匯出為儲存的設計Alert message when trying to export can unsaved design.mnu_file_export匯出Menu bar Exportcv_close_return_to_ext_src關閉並回到 {0}Button label used on close and return button in save confirm message popup.pi_mins分鐘Mins label in teh property inspectorpi_no_groupingCombo title for no groupingpi_optional_title選擇性活動Title for oprional activity property inspectorpi_start_offset開啟門Start offset labelpi_title屬性On the title bar of the PIprefix_copyof副本Prefix for copy paste command for canvas activitiesprefs_dlg_cancel取消6prefs_dlg_lng_lbl語言7prefs_dlg_ok確定5prefs_dlg_theme_lbl主題8preview_btn預覽Toolbar &gt; Preview Buttonproperty_inspector_title屬性On the title bar of the PIrandom_grp_lbl隨機Label for the grouping drop down in the PropertyInspectorrename_btn重新命名Label for Rename Buttonsave_btn儲存Toolbar &gt; Save buttonsched_act_lbl時程Label for schedule gate activitysynch_act_lbl同步化Used as a label for the Synch Gate Activity Typetk_title活動工具箱Label for Activities Toolkit Paneltrans_btn鏈接Toolbar &gt; Transition Buttontrans_dlg_cancel取消Cancel button on transition dialogtrans_dlg_gate同步Header for the transition props dialogtrans_dlg_gatetypecmb類型Gate type combo labeltrans_dlg_ok確定OK Button on transition dialogws_Root根目錄Root folder title for workspacews_chk_overwrite_resource警告:您正要覆寫此系列ws_click_folder_file請點選一個要儲存的檔案夾,或欲覆寫的設計Error msg if no folder or file is selectedws_copy_same_folder來源與目的檔案夾相同The user has tried to drag and drop to the same placews_dlg_cancel_button取消2ws_dlg_filename檔案名稱Label for File name in workspace windowws_dlg_location_button位置Workspace dialogue Location btn labelws_dlg_ok_button確定Wsp Dia OK Button labelws_dlg_open_btn開啟Wsp Dia Open Button labelws_dlg_properties_button屬性Workspace dialogue Properties btn labelws_dlg_save_btn儲存Wsp Dia Save Button labelws_dlg_title工作空間0ws_newfolder_cancel取消Cancel on the new folder name diaws_newfolder_ins請輸入新的檔案夾名稱Instructions on the new name pop upws_newfolder_ok確定OK on the new folder name diaws_no_permission抱歉!您沒有寫入許可Message when user does not have write permission to complete actionws_rename_ins請輸入新的名稱Message of the new name for the userws_tree_mywsp我的工作空間The root level of the treews_tree_orgs我的小組Shown in the top level of the tree in the workspacews_view_license_button檢視To show the license to the usersys_error_msg_start發生以下系統錯誤Common System error message starting linesys_error_msg_finish您可能需要重新啟動LAMS Author 繼續編寫工作。您是否要儲存以下關於錯誤的訊息以幫助解決這個問題Common System error message finish paragraphsys_error系統錯誤System Error elert window titleal_send送出Send button label on the system error dialogpi_daysDays label in property inspector for gate toolopt_activity_title選擇性活動Title for Optional Activity Containerws_license_lbl授權Label for Licence drop down on workspace properties tab viewws_license_comment_lbl額外的授權資訊Label for Licence Comment description below license drop downal_cannot_move_activity抱歉!您不能移動這個活動Alert message when user tries to move child activity of any parallel activitymnu_help_help編寫說明label for menu bar Help - Authoring Help optionccm_author_activityhelp編寫活動說明Label for Custom Context Menuws_del_confirm_msg您真的要刪除這個檔案/檔案夾?Confirmation message when user tries to delete a file or folder in workspace dialog boxws_click_file_open請點選欲開啟的活動Alert message if folder tried to be opened.cv_invalid_optional_activity設定為選擇性活動之前,要先移除{0} 的過渡Alert message when user try to drop an activity with to or from transition into optional containercv_trans_target_act_missing過渡的第二個活動不見了Error message when target activity for transition is missingpi_num_groups小組數目Number of groups in Property inspectorcv_activity_copy_invalid抱歉,您不能複製這個子活動Error message when user try to copy child activity from either optional or parallel activity containercv_activity_cut_invalid抱歉!您不能剪去這個子活動Error message when user try to cut child activity from either optional or parallel activity containercv_invalid_trans_target_to_activity過渡到{0} 已經存在Error message when a transition to the activity already existcv_design_unsaved畫布上的設計已經改變。不儲存而繼續嗎? Alert message when opening/importing when current design on canvas is unsaved or modified.new_btn_tooltip清除目前序列,重設工作空間備用Tool tip message for new button in toolbaropen_btn_tooltip顯示檔案對話框以開啟活動序列Tool tip message for open button in toolbarws_chk_overwrite_existing這個檔案夾已經包含一個稱為{0}的檔案Alert message when saving a design with the same filename as an existing design.ws_no_file_open找不到檔案Alert message if no matching file is found to open in selected folder of Workspace.branch_btn分支Label for disabled Branch button shown as submenu for flow button in Toolbarflow_btn流程Label for Flow button in Toolbarmnu_file_import匯入Menu bar Importws_click_virtual_folder不能使用這個檔案夾Alert message for trying to use a virtual folder to save/open a file.pi_parallel_title平行活動Title for parallel activity property inspectorcv_invalid_trans_circular_sequence不允許有迴圈存在 Error message when a transition from one activity to another is creating a circular loopbin_tooltip將一個活動拖到這個垃圾箱,從而將它從活動序列中移除 Tool tip message for canvas bincv_gateoptional_hit_chk您不能加入一個門活動當作選擇性活動Error message when user drags gate activity over to optional containerprefix_copyof_count({0}) 的副本Prefix for copy paste command for canvas activities when copied activity is pasted multiple times.ws_save_folder_invalid您不能儲存設計於這個檔案夾,請選擇一個合法的次檔案夾Alert message if root My Workspace folder is selected to save a design in.cv_invalid_trans_target_from_activity從{0}的過渡已經存在Error message when a transition from the activity already existws_entre_file_name請輸入設計名稱,然後按〈儲存〉鈕Error message when user try to save a design with no file namecv_activity_helpURL_undefined找不到{0}的求助網頁Alert message when a tool activity has no help url defined.ws_dlg_description描述Label for description in Workspace dialog - Properties tabtrans_dlg_nogateDrop down default for gate typecv_activity_dbclick_readonly您不能編輯唯讀設計的工具,請儲存一份設計副本再嘗試看看!Alert message when double-clicking an Activity in an open read-only designcv_readonly_lbl唯讀Label for top left of canvas shown when a read-only design is open.ws_file_name_empty抱歉!您不能儲存設計如果沒有檔案名稱Error message when user try to save a design with no file namecv_untitled_lbl無標題-1Label for Design Title bar on canvasal_empty_design抱歉!您不能儲存空的設計alert message when user want to save an empty designcv_autosave_rec_msg您只能恢復最後失掉或未儲存設計,您目前的設計將被清除,要繼續?Message informing users that they have recovered data for a design.cv_autosave_rec_title警告Alert title for auto save recovery message.mnu_file_recover恢復Menu bar Recoveral_activity_paste_invalid你無法貼上這類的活動Alert message when user is attempting to paste a unsupported activity type.to_conditions_dlg_from_lblLabel for start value in condition range for long or numeric output values.about_popup_license_lbl這個軟體是自由軟體;在自由軟體基金會GNU一般公共授權版本2的規範下,你可以分送或修改。Label displaying the license statement in the About dialog.preview_btn_tooltip_disabled要預覽序列,需要先保存,然後按下預覽Tool tip message for preview button in toolbar when button is disabled.stream_reference_lbl學習活動管理系統Reference label for the application stream.gpl_license_url www.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.branching_act_title分支Label for Branching Activityto_conditions_dlg_to_lblLabel for end value in condition range for long or numeric output values.cv_activityProtected_activity_remove_msg要移除請取消選取這個活動如{0}Instruction how to delete an Activity linked to a Branching Activity.cv_activityProtected_activity_link_msg這個{0}連結到一個{1}Alert message when removing a Tool or Grouping Activity that is linked to a Branching Activity on the canvas.cv_activityProtected_child_activity_link_msg這個{0}有個子項連結到{1}Alert message when removing a Complex Activity whose child is linked to a Branching Activity on the canvas.branch_mapping_dlg_condition_col_value_max大於或等於{0}Value for Condition field in mapping datagrid when Greater than option is selected.optional_act_btn活動Toolbar button for Optional Activity.optional_seq_btn編程Toolbar button for Sequences within Optional Activity.mnu_file_apply_changes使用改變參數Apply Changesoptional_seq_btn_tooltip建立一套選擇性編程Tooltip for Sequences within Optionaly Activity button.pi_optSequence_remove_msg_title移除編程Removing sequencespi_optSequence_remove_msg移除的編程包含活動將被刪除。你要移除編程嗎?Confirmation message when user is removing optional sequences (Optional Sequences) that contain activities.pi_no_seq_act編成的號碼Label on the Property Inspector for a numeric stepper where the value is the no of sequences in an Optional Activity.lbl_num_sequences{0}-編程Label to describe the amount of sequences in the container.activityDrop_optSequence_error_msg請將此活動移至其中ㄧ個編程Alert message when user drops an activity onto the Optional Sequences container but not on a contained Sequence Activity.condmatch_dlg_message_lbl通過點擊分支屬性區“預設"選取方塊,預設分支可被選中Label for a message in the Condition to Branch matching dialog.cv_design_insert_warning一旦插入另一個編程後就無法取消——舊編程在新編程插入時自動保存了。要回到舊編程,需要先手動刪除全部新編程活動,然後保存。要保留當前編程不變,按下“取消”。否則,點擊“確定”選擇一個編程插入。Warning message when merge/insertpi_defaultBranch_cb_lbl預設CheckBox label for selecting the Branch as default for the BranchingActivity.to_conditions_dlg_add_btn_lbl+ 增加Label for button to add a condition.to_conditions_dlg_clear_all_btn_lbl清除全部Label for button to clear all conditions.act_seq_lock_chk在指定活動給選擇編程前請先解除操作編程內容Alert Message if user drags the activity to locked optional sequences container.branch_mapping_dlg_condition_linked_single這個狀況是Phrase used at start of linked conditions alert message when clearing a single entry.cv_eof_changes_applied更改已成功設定Changes have been successful applied.validation_error_transitionNoActivityBeforeOrAfter轉場之間必須要有一個活動事件A Transition must have an activity before or after the transitionvalidation_error_activityWithNoTransition一個活動事件必須要有一個輸入或輸出的轉場An activity must have an input or output transitionvalidation_error_inputTransitionType1這個活動事件沒有輸入轉場This activity has no input transitionvalidation_error_inputTransitionType2沒有任何活動事件遺漏輸入轉場No activities are missing their input transition.validation_error_outputTransitionType1這個活動事件沒有輸入轉場This activity has no output transitionvalidation_error_outputTransitionType2沒有任何活動事件遺漏輸出轉場No activities are missing their output transition.cv_invalid_design_on_apply_changes無法更改。一個或多個轉場遺漏Cannot apply changes. There are one or more transitions missing.apply_changes_btn套用更改Apply Changesapply_changes_btn_tooltip套用設計更改並回到監督課程tool tip message for save button in toolbarcancel_btn取消Toolbar - Cancel Buttoncv_activity_readOnly活動事件不可為{0}。這個活動事件為唯讀。 Alert message when a user performs an illegal action on a read-only transition.cv_edit_on_fly_lbl即時編輯Label for canvas lip (where design title is displayed) when in Edit-On-The-Fly mode.cv_element_readOnly_action_del移除Action label for read only alert message for a Canvas Transition.cv_element_readOnly_action_mod修改Action label for read only alert message for a Canvas Transition.cv_eof_finish_invalid_msg設計必須有效以便完成編輯Alert dialog message when attempting to finish Edit on the Fly when the design is invalid.cv_eof_finish_modified_msg警告:你的設計已經被更改,你要放棄儲存並關閉嗎?Alert dialog message when attempting to finish Edit-on-the-Fly when the design is unsaved.cv_trans_readOnly轉場不能為{0}。轉場目標為唯讀。Alert message when a user performs an illegal action on a read-only canvas element (transition or activity).cancel_btn_tooltip回到監督課程tool tip message for cancel button in toolbar (edit mode)mnu_file_finish完成Menu bar File - Finish (Edit Mode)about_popup_title_lbl關於-{0}Title for the About Pop-up window.pi_activity_type_sequence編程活動({0})Activity type for Sequence (Branch) in Property Inspector.groupnaming_dialog_instructions_lbl按其中ㄧ個名字去更改它的值Instructions for Group Naming dialog.pi_branch_tool_acts_lbl輸入(工具)Label for Tool Activity selection (combo box) for Tool-based Branching on the Property Inspector.branch_mapping_no_branch_msg未選取分支Alert message when adding a Mapping without a Branch (Sequence) being selected.al_done完成Label for dialog completion button.to_conditions_dlg_remove_item_btn_lbl移除Label for button to remove condition.to_conditions_dlg_range_lbl範圍Heading label for section in the dialog to set numeric condition range.pi_condmatch_btn_lbl建立狀態Label for button to open dialog to create output conditions.to_conditions_dlg_title_lbl建立輸出狀態Dialog title for creating new tool output conditions.condmatch_dlg_cond_lst_lbl狀態Label for primary list heading on Condition to Branch Matching dialog.condmatch_dlg_title_lbl配對狀態到分支Dialog title for matching conditions to branches for Tool based Branching.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl狀態Column heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lbl群組Column heading for showing group name of the mapping.branch_mapping_no_mapping_msg沒有選擇映圖Alert message when removing a Mapping without a Mapping being selected.branch_mapping_no_condition_msg沒有選擇狀態Alert message when adding a Mapping without a Condition being selected.branch_mapping_auto_condition_msg所有剩下的狀態將會映圖到預設的分支Alert message for notifying the user that the unmapped Conditions will be mapped to the default Branch.branch_mapping_dlg_match_dgd_lbl映圖Heading label for Mapping datagrid.branch_mapping_dlg_condition_col_value範圍{0}到{1}Value for Condition field in mapping datagrid.branch_mapping_dlg_condition_col_value_exact{0}的正確值Value for Condition field in mapping datagrid when range set is only single value.pi_mapping_btn_lbl設定映圖Label for button to open tool output to branch(s) dialog.pi_define_monitor_cb_lbl定義在監督畫面Checkbox label for option to define group to branch mappings in Monitor.groupmatch_dlg_title_lbl對應群組到分支Map Groups to Branchesbranch_mapping_no_groups_msg沒有選擇群組Alert message when adding a Mapping without a Group being selected.group_branch_act_lbl群組基礎Branching type label for Group-based Branching.branch_mapping_dlg_branches_lst_lbl分支Label for Branches list box on Branch Matching Dialogs.groupmatch_dlg_groups_lst_lbl群組Label for Groups list box on Group/Branch Matching Dialog.groupnaming_dlg_title_lbl群組命名Title label for Group Naming dialog.pi_activity_type_branching分支活動Activity type for Branching in Property Inspector.pi_branch_type分支類別Property Inspector Branching type drop down.pi_group_naming_btn_lbl命名群組Label for button that opens Group Naming dialog.sequence_act_title編序Default title for Sequence Activity.tool_branch_act_lbl學習者輸出Branching type label for Tool output Branching.chosen_branch_act_lbl教師選擇Branching type label for Teacher choice Branching.to_condition_start_value起始值Value representing the min boundary value of the conditions range.to_condition_end_value結束值Value representing the max boundary value of the conditions value.to_condition_invalid_value_range這項{0}不可在已存在狀況的範圍內Alert message when a submitted condition interferes with another previously submitted condition.to_condition_invalid_value_direction這個{0}不可大於{1}Alert message when the start value is greater than end value of the submitted condition.is_remove_warning_msg警告:這個課程將移除。你是否要保留課程為{0}Message for the alert dialog which appears following confirmation dialog for removing a lesson.al_continue繼續Continue button on Alert dialogbranch_mapping_dlg_condition_linked_msg{0}連結到既有的分支。你要繼續嗎?Alert message when performing an action which clears the current list of conditions when one or more is connected to a Branch Mapping.branch_mapping_dlg_condition_linked_all有些狀態Phrase used at start of linked conditions alert message when clearing all.pi_branch_tool_acts_default--選項-- Default item label for Input Tool dropdown list.cv_invalid_trans_diff_branches無法在不同分支活動間建立轉場Error message displayed after drawing a transition between activities of two different branches.cv_invalid_branch_target_to_activity分支到{0}已經存在Error message displayed after drawing a branch to an activity that has an existing connected branch.cv_invalid_branch_target_from_activity分支從{0}已經存在Error message displayed after drawing a branch from an activity that has an existing connected branch.cv_invalid_trans_closed_sequence無法連接到新的轉場道已經關閉的編程Error message displayed after drawing a transition from an activity in a closed sequence.al_group_name_invalid_blank群組名稱不可為空白Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an empty group name to a groupal_group_name_invalid_existing群組名稱必須為不同Warning message to be displayed in Author for the Group Naming dialog when the user tries to assign an already existing group name to a different grouplearner_choice_grp_lbl學習者的選擇A type of grouping where the learner picks which group they'd like to be incompetence_editor_dlg能力編輯Dialog for adding/editing/removing competencescompetences_lbl能力Label in Competence Editor dialog to show all the competences in the learning designcompetence_editor_add_competence_btn加入Add competence buttoncompetence_def_dlg能力定義對話框Title for Dialog that allows you to define new or edit existing competencescompetence_editor_warning_title_exists含有標題的能力{0}已經存在Warning message when you try to add a competence with a competence title that already existscompetence_editor_warning_title_blank此能力標題不可為空白Warning message when you try to define a competence with a blank competence titlemap_comptence_btn映圖到能力Label for button that invokes the Competence Mappings dialogcompetence_mappings_btn能力映圖Title for the dialog that allows you to map competences to an activitycompetences_mapped_to_act_lbl能力Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentmap_gate_conditions_btn映圖入口情形Button to allow the user to map conditions to a gate state (open/closed)gate_mapping_auto_condition_msg所有其他的狀態將會映圖到選取的入口關閉狀況Warning that appears when the user clicks close on the Map Gate Conditions Dialog and they have not mapped all conditions to a gate stategate_open開啟Open state for gate activity, allows learners to pass through itgate_closed關閉Closed state for gate activity, does not allow learners to pass through ital_activity_view_competence_mappings_invalid再檢視完整映圖前請確認你已經選取一項活動Warning that appears when no activity is selected when the user tries to view competence mappingsws_dlg_date_modified_lbl最後更正:{0}Show the last modified datetime of the selected design in the workspacews_save_title_reserved_chars標題不可包含特殊字元Error alert when trying to save with a title containing illegal characters.pi_equal_group_sizes群組大小相同Checkbox label for Learner's choice grouping. Allows teachers to choose whether or not the group sizes should be equalal_cannot_move_to_diff_opt_seq在可選編程中移動的一個活動到不同編程,首先把活動拖出可選編程區,然後按下並拖動該活動到可選編程的新位置。Warning message to be displayed in Author when the user tries to move a child activity of an Optional Sequence to a different sequence within that same Optional Sequence without first dragging it outside of the Optional Sequence activitycompetence_editor_warning_competence_mapped你試圖刪除的許可權目前正被映射到一個或多個活動。刪除這個許可權將會移除它的映射。你確定要繼續嗎?Warning message when you attempt to delete a competence that is mapped to one or more activities.act_lock_chk請先打開選擇性活動容器,才能將活動設為選擇性活動Alert Message if user drags the activity to locked optional activity container cv_invalid_design_saved您的設計尚未有效,但已經儲存,請按'議題'鈕查明錯誤處Message when an invalid design has been savedmnu_tools_prefs偏好Menu bar preferenceschosen_grp_lbl選擇被監視中Label for the grouping drop down in the PropertyInspectorlbl_num_activities{0}-活動replacement for word activitiespi_definelater之後再定義Label for Define later for PIpi_min_act最小活動或編程{0}Label for minimum Activities or Sequencesprefs_dlg_title偏好4pi_max_act最大活動數{0}Label for maximum Activities or Sequencesto_condition_untitled_item_lbl未命名The default condition name for new items added to conditions list when setting up conditions for Tool based branching.redundant_branch_mappings_msg將會移除設計中未使用的分支映圖。你要繼續嗎?Alert confirmation message displayed when the user is saving the design and redundant or unused branch mappings exist in the design.pi_num_learners學習者數目PI Num learners labelpi_runoffline離線活動Label for Run Oflinecv_autosave_err_msg自動儲存設計時發生錯誤,如果錯誤一直發生,請增加你的Flash播放器的儲存設定。Alert error message when auto-save fails. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/ar_JO_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sp_save_lblاحفظLabel for Save buttonsp_view_tooltipاعرض جميع مدخلات دفتر الملاحظاتtool tip message for view all buttonsp_save_tooltipاحفظ مدخلات دفتر ملاحظاتكtool tip message for save buttonsp_title_lblالعنوانLabel for title field of scratchpad (notebook)sp_panel_lblدفتر الملاحظاتLabel for panel title of scratchpad (notebook)hd_resume_lblتابعLabel for Resume buttonhd_exit_lblخروجLabel for Exit buttonln_export_btnتصديرLabel for Export buttonsys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج الى اعاده بدء نافذه المتصفح للمواصله. هل ترغب بلحفض المعلومات التاليه عن الخطا لمساعدتنا في تحديد المشكله؟ Common System error message finish paragraphsys_errorخطأ في النظامSystem Error alert window titleal_alertتحذيرGeneric title for Alert windowal_cancelالغاءCancel on alert dialogal_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on alert dialogal_validation_act_unreachedلم تصل لهذا النشاط لتفتحهAlert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipاقفز لنشاطك التاليtool tip message for resume buttonhd_exit_tooltipاغلق بيئة المتعلم و نافذة المتصفحtool tip message for exit buttonln_export_tooltipصدر اضافاتك إلى لتصميمtool tip message for export buttoncompleted_act_tooltipانقر مرتين لمراجعة النشاط الكاملtool tip message for completed activity iconcurrent_act_tooltipانقر مرتين للمشاركة في النشاط الحالي tool tip message for current activity iconal_doubleclick_todoactivityعفوا،لم تصل الى هذا النشاط بعدalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblاعرض الكل Label for View All button \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/cy_GB_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblAil-ddechrauLabel for Resume buttonhd_exit_lblGadaelLabel for Exit buttonln_export_btnAllforioLabel for Export buttonsys_error_msg_startMae’r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd angen i chi ail-ddechrau ffenestr y porwr i barhau. Ydych chi eisiau cadw’r wybodaeth ganlynol am y gwall hwn i ddatrys y broblem hon?Common System error message finish paragraphsys_errorGwall SystemSystem Error alert window titleal_alertRhybuddGeneric title for Alert windowal_cancelCansloCancel on alert dialogal_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on alert dialogal_validation_act_unreachedNi allwch agor y Gweithgaredd oherwydd nad ydych wedi ei gyrraedd eto.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipNeidio i’ch gweithgaredd cyfredoltool tip message for resume buttonhd_exit_tooltipGadael Amgylchedd y Dysgwr a chau ffenestr y porwrtool tip message for exit buttonln_export_tooltipAllforio’ch cyfraniadau i’r wers hontool tip message for export buttoncompleted_act_tooltipClicio dwywaith i adolygu’r gweithgaredd gorffenedig hwntool tip message for completed activity iconcurrent_act_tooltipClicio dwywaith i gymryd rhan yn y gweithgaredd cyfredoltool tip message for current activity iconal_doubleclick_todoactivityNid ydych wedi cyrraedd y gweithgaredd hwn etoalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblGweld PopethLabel for View All buttonsp_save_lblCadwLabel for Save buttonsp_view_tooltipGweld pob cofnod nodfwrddtool tip message for view all buttonsp_save_tooltipCadw’ch cofnod nodfwrddtool tip message for save buttonsp_title_lblTeitlLabel for title field of scratchpad (notebook)sp_panel_lblNodfwrddLabel for panel title of scratchpad (notebook)al_timeoutRhybudd! Ni ellir cymhwyso data cynnydd nes bod y llwytho wedi gorffen. Cliciwch Iawn i barhau i lwytho.Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/da_DK_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblFortsætLabel for Resume buttonhd_exit_lblExitLabel for Exit buttonln_export_btnEksportérLabel for Export buttonsys_error_msg_startFølgende systemfejl er opstået:Common System error message starting linesys_error_msg_finishDu skal genstarte browseren for at fortsætte. Ønsker du at gemme følgende information om fejlen med henblik på at løse problemet?Common System error message finish paragraphsys_errorSystem fejlSystem Error alert window titleal_alertNB!Generic title for Alert windowal_cancelAnnullérCancel on alert dialogal_confirmBekræftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedDu kan ikke åbne aktiviteten, da du ikke er nået til den endnu.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipGå til din igangværende aktivitettool tip message for resume buttonhd_exit_tooltipForlad brugerområdet og luk browservinduettool tip message for exit buttonln_export_tooltipEksportér dit bidrag til denne lektiontool tip message for export buttoncompleted_act_tooltipDobbeltklik for at se den gennemførte aktivitettool tip message for completed activity iconcurrent_act_tooltipDobbelklik for at deltage i den igangværende aktivitettool tip message for current activity iconal_doubleclick_todoactivityBeklager, du er ikke nået til denne aktivitet endnualert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVis alleLabel for View All buttonsp_save_lblGemLabel for Save buttonsp_view_tooltipVis alle notertool tip message for view all buttonsp_save_tooltipGem din notetool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotesbogLabel for panel title of scratchpad (notebook)al_timeoutAdvarsel! Yderligere data kan ikke tilføjes før indlæsning er færdig. Klik på "OK" for at fortsætte indlæsningAlert message for timeout error when loading learning design.al_sendSendSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/de_DE_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblWeiterLabel for Resume buttonhd_exit_lblBeendenLabel for Exit buttonln_export_btnExportLabel for Export buttonsys_error_msg_startEs ist ein Systemfehler aufgetreten:Common System error message starting linesys_error_msg_finishStarten Sie den Browser neu, um fortzusetzen. Wollen Sie eine Information über den aufgetretenen Fehler speichern, damit das Problem behoben werden kann?Common System error message finish paragraphsys_errorSystemfehlerSystem Error alert window titleal_alertWarnung, HinweisGeneric title for Alert windowal_cancelAbbrechenCancel on alert dialogal_confirmBestätigenTo Confirm title for LFErroral_okOKOK on alert dialoghd_resume_tooltipDirekt zur derzeitigen Aktivitättool tip message for resume buttonhd_exit_tooltipLernumgebung verlassen und Browserfenster schließentool tip message for exit buttonln_export_tooltipExport Ihrer Beiträge in dieser Lektiontool tip message for export buttoncompleted_act_tooltipDoppelklick für Rückblick auf diese abgeschlossene Aktivitättool tip message for completed activity iconcurrent_act_tooltipDoppelklick zur Teilnahme an der derzeitigen Aktivitättool tip message for current activity iconal_doubleclick_todoactivitySorry, Sie haben diese Aktivität noch nicht erreicht.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblAlle ansehenLabel for View All buttonsp_save_lblSpeichernLabel for Save buttonsp_view_tooltipAlle Notizbucheinträge ansehentool tip message for view all buttonsp_save_tooltipNotizbucheintrag speicherntool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotizbuchLabel for panel title of scratchpad (notebook)al_timeoutHinweis: Die Fortschrittsdaten können nicht angezeigt werden, bevor die Daten verarbeitet wurden. Klicken Sie auf OK um fortzustezen.Alert message for timeout error when loading learning design.al_validation_act_unreachedDiese Aktivität können Sie erst später nutzen.Alert message when clicking on an unreached activity in the progess bar.al_sendSendenSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/el_GR_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_act_reached_maxΟ μέγιστος αριθμός προαιρετικών δραστηριοτήτων έχει ήδη επιτευχθεί.pres_dataproviderloading_lblΦόρτωση παρουσίας ...al_timeoutΠροειδοποίηση!Η πρόοδος των δεδομένων δεν μπορεί να εφαρμοστεί μέχρις ότου να τελειώσει η φόρτωση. Κάντε κλικ στο ΟΚ για να συνεχιστεί η φόρτωσηsp_save_lblΑποθήκευσηhd_resume_lblΕπανάληψηhd_exit_lblΈξοδοςln_export_btnΕξαγωγήal_cancelΑκύρωσηal_confirmΕπιβεβαίωσηal_okΟΚsp_panel_lblΣημειωματάριοal_doubleclick_todoactivityΛυπούμαστε, δεν έχετε τελείωσατε τη δραστηριότητα ακόμηcurrent_act_tooltipΔιπλό κλικ για να συμμετάσχετε στην τρέχουσα δραστηριότηταcompleted_act_tooltipΔιπλο κλικ για την ανασκόπηση αυτης της συμπληρωμένης δραστηριότηταςln_export_tooltipΕξαγωγή της συνεισφοράς σας στο μάθημα αυτόsys_error_msg_startένα ακόλουθο λάθος συστήματος έχει συμβείsys_error_msg_finishΜπορεί να χρειαστείτε επαννεκίνηση του παραθύρου του φυλλομετρητή γαι να συνεχίσετε. Θέλετε να αποθηκεύσετε τις ακόλουθες πληροφορίες για το λάθος αυτό έτσι ώστε α βοηθηθείτε στην επίλυση του προβλήματος;sys_errorΛάθος συστήματοςal_validation_act_unreachedΔεν μπορείτε να ανοίξετε τη Δραστηριότητα αφού δεν έχετε φθάσει ακόμηal_sendΑποστολήsynchronise_gate_tooltipΑυτή η Πόρτα θα ανοίξει μόνο όταν όλοι εκπαιδευόμενοι φθάσουν σε αυτό το σημείο. hd_exit_tooltipΈξοδος από το Περιβάλλον του Εκπαιδευόμενου και κλείσιμο του παραθύρου του φυλλομετρητή ιστού.pres_colnamelearners_lblΕκπαιδευόμενοιsp_view_lblΠροβολή όλωνhd_resume_tooltipΜετάβαση στην τρέχουσα δραστηριότητά σαςschedule_gate_tooltipΑυτή η Πόρτα θα ανοίξει σε {0}.not_attempted_act_tooltipΧρειάζεται να συμπληρώσετε τις δραστηριότητες πριν από αυτή τη δραστηριότητα για να έχετε πρόσβαση σε αυτή. al_alertΕιδοποίησηpermission_gate_tooltipΔεν μπορείτε να περάσετε αυτή την Πόρτα μέχρι να σας αφήσει ο καθηγητής σας. pres_panel_lblΠαρουσίαsp_title_lblΤίτλοςsupport_acts_titleΔραστηριότητες Υποστήριξηςsupport_act_tooltipΚάντε διπλό κλικ για να συμμετάσχετε σε αυτή τη δραστηριότητα υποστήριξηςsp_view_tooltipΠροβολή όλων των καταχωρήσεων του σημειωματαρίουsp_save_tooltipΑποθήκευση της καταχώρησης του σημειωματαρίου σας. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/en_AU_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumehd_exit_lblExitln_export_btnExportal_validation_act_unreachedYou can't open the Activity as you haven't reached it yet.sys_error_msg_startA following system error has occurred:sys_errorSystem Erroral_alertAlertal_cancelCancelal_confirmConfirmal_okOKsys_error_msg_finishYou may need to re-start this browser window to continue. Do you want to save the following information about this error to help fix this problem?hd_resume_tooltipJump to your current activityhd_exit_tooltipExit the Learner Environment and close the browser windowln_export_tooltipExport your contributions to this lessoncompleted_act_tooltipDouble click to review this completed activitycurrent_act_tooltipDouble click to participate in the current activityal_doubleclick_todoactivitySorry, you have not reached this activity yetsp_save_tooltipSave your notebook entrysp_title_lblTitlesp_view_lblView Allsp_save_lblSavesp_view_tooltipView all notebook entriessp_panel_lblNotebooksupport_acts_titleSupport Activitiessupport_act_tooltipDouble click to participate in this support activityal_timeoutWarning! Progress data cannot be applied until loading has finished. Click OK to continue loadingal_sendSendpermission_gate_tooltipYou can't move past this Gate until the teacher releases it.schedule_gate_tooltipThis Gate will be opened on {0}.synchronise_gate_tooltipThis Gate will only be released once all learners reach this point.not_attempted_act_tooltipYou need to complete the activities before this activity to access it.al_act_reached_maxThe maximum number optional activities has already been reached.pres_panel_lblPresencepres_colnamelearners_lblLearnerspres_dataproviderloading_lblLoading presence... \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/en_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumehd_exit_lblExitln_export_btnExportal_validation_act_unreachedYou can't open the Activity as you haven't reached it yet.sys_error_msg_startA following system error has occurred:sys_errorSystem Erroral_alertAlertal_cancelCancelal_confirmConfirmal_okOKsys_error_msg_finishYou may need to re-start this browser window to continue. Do you want to save the following information about this error to help fix this problem?hd_resume_tooltipJump to your current activityhd_exit_tooltipExit the Learner Environment and close the browser windowln_export_tooltipExport your contributions to this lessoncompleted_act_tooltipDouble click to review this completed activitycurrent_act_tooltipDouble click to participate in the current activityal_doubleclick_todoactivitySorry, you have not reached this activity yetsp_save_tooltipSave your notebook entrysp_title_lblTitlesp_view_lblView Allsp_save_lblSavesp_view_tooltipView all notebook entriessp_panel_lblNotebooksupport_acts_titleSupport Activitiessupport_act_tooltipDouble click to participate in this support activityal_timeoutWarning! Progress data cannot be applied until loading has finished. Click OK to continue loadingal_sendSendpermission_gate_tooltipYou can't move past this Gate until the teacher releases it.schedule_gate_tooltipThis Gate will be opened on {0}.synchronise_gate_tooltipThis Gate will only be released once all learners reach this point.not_attempted_act_tooltipYou need to complete the activities before this activity to access it.al_act_reached_maxThe maximum number optional activities has already been reached.pres_panel_lblPresencepres_colnamelearners_lblLearnerspres_dataproviderloading_lblLoading presence... \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/es_ES_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeout¡Atención!: El procesamiento no puede realizarse hasta que la ejecución no haya finalizado. Pulse OK para continuar con la ejecución.al_validation_act_unreachedNo puede acceder a esta actividad ya que todavía no ha llegado a la misma.sys_error_msg_finishNecesita reiniciar esta ventana para continuar. ¿Desea salvar la siguiente información sobre este error para ayudar a resolver este problema?hd_resume_lblContinuarhd_exit_lblSalirln_export_btnExportarsys_error_msg_startEl siguiente error de sistema ha ocurrido:sys_errorError de Sistemaal_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okOKhd_resume_tooltipVolver a la actividad actualcompleted_act_tooltipDoble click para revisitar actividad current_act_tooltipDoble click para participar en actividadhd_exit_tooltipSalir de la lección y cerrar ventanasupport_acts_titleActividades de Soportesupport_act_tooltipPresione dos veces para entrar en esta actividadal_doubleclick_todoactivityTodavía no ha llegado a esta actividadsp_save_lblGuardarsp_view_tooltipVer todas las notassp_save_tooltipGuardar tu notasp_title_lblTítulosp_view_lblVer Todossp_panel_lblAnotacionesal_sendEnviarln_export_tooltipExportar Portfolio de esta lecciónpres_panel_lblAlumnos onlinepermission_gate_tooltipNo puede avanzar hasta que el profesor asi lo disponga.schedule_gate_tooltipEsta puerta se abrirá el {0}.not_attempted_act_tooltipDebe completar las actividades anteriores a esta actividad para poder acceder esta.al_act_reached_maxYa se ha alcanzado el número máximo de actividades opcionales.pres_colnamelearners_lblAlumnospres_dataproviderloading_lblCargando alumnos online...synchronise_gate_tooltipEsta puerta se abrirá cuando todos los estudiantes hayan llegado hasta este punto. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/fr_FR_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3pres_panel_lblPrésencepres_colnamelearners_lblApprenantspres_dataproviderloading_lblChargement de présence ...not_attempted_act_tooltipVous devez compléter toutes les activités antérieures avant de pouvoir accéder à cette activitésupport_act_tooltipDouble clic pour participer dans cette activité de soutienhd_resume_tooltipRetour à l'activité en coursal_validation_act_unreachedVous ne pouvez pas ouvrir cette activité car vous n'y êtes pas encore arrivé.al_doubleclick_todoactivityVous n'avez pas encore atteint cette activité...current_act_tooltipDouble-cliquez pour participer à l'activité en courssupport_acts_titleActivités de soutiencompleted_act_tooltipDouble-cliquez pour revoir cette activité terminéesp_view_lblAfficher toutsp_view_tooltipAfficher toutes les entrées du calepinhd_resume_lblRevenirhd_exit_lblSortirln_export_btnExportersys_error_msg_startL'erreur système s'est produite:sys_errorErreur systèmeal_alertAlerteal_cancelAbandonal_confirmConfirmeral_okOKhd_exit_tooltipQuitter l'environnement Apprenant et fermer la fenêtre du navigateurln_export_tooltipExporter vos contributions à cette leçonsp_title_lblTitreal_timeoutAttention! Les données de progression ne peuvent pas être appliquées avant la fin du chargement. Cliquez Ok pour continuer le chargemental_sendEnvoyerschedule_gate_tooltipCette porte va s'ouvir le {0}synchronise_gate_tooltipCette porte va s'ouvrir seulement lorsque tous les apprenants arrivent ici.sp_panel_lblCalepinsp_save_tooltipEnregistrer votre note du calepinpermission_gate_tooltipVous ne pouvez pas rentrer avant que l'enseignant vous autorise.al_act_reached_maxLe nombre maximal d'activités optionnelles à été atteintsys_error_msg_finishIl se peut que vous deviez ré-ouvrir ce navigateur pour continuer. Voulez-vous sauvegarder les informations suivantes concernant cette erreur pour aider à la résoudre?sp_save_lblEnregistrer \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/hu_HU_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblFolytatásLabel for Resume buttonhd_exit_lblKilépésLabel for Exit buttonln_export_btnExportálásLabel for Export buttonsys_error_msg_startA következő hiba történt: Common System error message starting linesys_errorRendszerhibaSystem Error alert window titleal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseCancel on alert dialogal_confirmJóváhagyásTo Confirm title for LFErroral_okOKOK on alert dialoghd_resume_tooltipUgrás az aktuális tevékenységretool tip message for resume buttonhd_exit_tooltipKilépés a tanulási környezetből és a böngésző bezárásatool tip message for exit buttoncurrent_act_tooltipKattintson duplán a tevékenységben való részvételheztool tip message for current activity iconsp_save_lblMentésLabel for Save buttonsp_view_tooltipAz összes jegyzetfüzet bejegyzés megjelenítésetool tip message for view all buttonsp_save_tooltipJegyzettömb bejegyzés mentésetool tip message for save buttonsp_title_lblCímLabel for title field of scratchpad (notebook)sp_panel_lblJegyzetfüzetLabel for panel title of scratchpad (notebook)al_doubleclick_todoactivitySajnálom, még nem érkezett el ehhez a tevékenységhez.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblMindent mutatLabel for View All buttonal_timeoutFigyelem! Nem használhatja az épp toltődő adatokat, amíg teljesen be nem töltődtek. Kattintson az OK gombra a betöltés folytatásához!Alert message for timeout error when loading learning design.al_sendKüldésSend button label on the system error dialogsys_error_msg_finishA folytatáshoz újra kellene indítania ezt a böngésző-ablakot. El szeretné menteni az alábbi tájékoztatást erről a hibáról a probléma megoldásának érdekében?Common System error message finish paragraphal_validation_act_unreachedNem nyithatja meg a tevékenységet, mivel még nem érkezett el ideAlert message when clicking on an unreached activity in the progess bar.ln_export_tooltipExportálja a hozzájárulásait ehhez a leckéheztool tip message for export buttoncompleted_act_tooltipDupla kattintással újra megnézheti ezt a befejezett tevékenységettool tip message for completed activity icon \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/it_IT_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutAttenzione! Devi attendere che finisca il caricamento. Clicca su OK per continuare.Alert message for timeout error when loading learning design.sys_error_msg_finishPotete avere bisogno di riavviare il browser per continuare. Desiderate conservare le seguenti informazioni su questo errore per contribuire a riparare questo problema?Common System error message finish paragraphsp_save_lblSalvaLabel for Save buttonal_okOKOK on alert dialoghd_resume_tooltipPassate alla vostra attività correntetool tip message for resume buttonhd_exit_tooltipUscire dalla Gestione Studenti e chiudere la finestra di browsertool tip message for exit buttonhd_resume_lblRiassuntoLabel for Resume buttonhd_exit_lblEsciLabel for Exit buttonln_export_btnEsportaLabel for Export buttonsp_title_lblTitoloLabel for title field of scratchpad (notebook)sys_errorErrore di SistemaSystem Error alert window titleal_alertAttenzioneGeneric title for Alert windowal_cancelCancellaCancel on alert dialogal_confirmConfermaTo Confirm title for LFErroral_validation_act_unreachedNon potete aprire l'attività poichè non la avete raggiunta ancora.Alert message when clicking on an unreached activity in the progess bar.sp_view_lblControlla tuttoLabel for View All buttonal_doubleclick_todoactivitySpiacente, non sei arrivato ancora a questa attivitàalert message when user double click on the todo activity in the sequence in learner progresscurrent_act_tooltipDoppio click per partecipare all'attività correntetool tip message for current activity iconln_export_tooltipEsporta il tuo contributo a questa Lezionetool tip message for export buttoncompleted_act_tooltipDoppio click per rivedere questa attività completamentetool tip message for completed activity iconsys_error_msg_startE' accaduto il seguente errore di sistema:Common System error message starting lineal_sendInviaSend button label on the system error dialogsynchronise_gate_tooltipQuesta barriera sarà aperta soltanto quando tutti gli studenti avranno raggiunto questo punto.Tooltip for synchronise gate in learner progress barsp_save_tooltipSalva i tuoi appuntitool tip message for save buttonsp_view_tooltipVisualizza tutte le voci del Blocco Notetool tip message for view all buttonsp_panel_lblBlocco NoteLabel for panel title of scratchpad (notebook)permission_gate_tooltipNon puoi passare oltre questa barriera fino a quando il docente non l'abbia aperta. Tooltip for permission gate in learner progress barschedule_gate_tooltipQuesta barriera sarà aperta su {0}.Tooltip for schedule gate in learner progress barnot_attempted_act_tooltipDevi completare le attività prima di questa per potervi accedere.Tooltip for not yet attempted activities in the learner progress baral_act_reached_maxIl numero massimo di attività opzionali è già stato raggiunto.al_act_reached_maxpres_panel_lblPresenzaPresence panel labelpres_colnamelearners_lblStudentiPresence datagrid learners columnpres_dataproviderloading_lblCaricamento presenza...Presence datagrid learning loading alert \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/ja_JP_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startシステムエラーが発生しました:sys_errorシステムエラーal_cancelキャンセルal_confirm確認al_okOKal_validation_act_unreachedまだそのアクティビティに到達していないため、開けません。hd_resume_tooltip現在のアクティビティにジャンプします。hd_exit_tooltip学習者用システムを終了し、Web ブラウザのウィンドウを閉じますln_export_tooltipこのレッスンの進捗をエクスポートしますcompleted_act_tooltipダブルクリックで、この完了したアクティビティをチェックしますcurrent_act_tooltipダブルクリックで、現在のアクティビティに参加しますal_doubleclick_todoactivityまだこのアクティビティに到達していませんsp_view_lblすべて表示sp_save_lbl保存sp_title_lblタイトルal_timeout警告!読み込みが終了するまで進捗データを適用することはできません。OK をクリックすると読み込みを続行しますal_send送信hd_resume_lbl再開hd_exit_lbl終了ln_export_btnエクスポートpres_panel_lbl出席pres_dataproviderloading_lbl出席の読み込み中...support_acts_titleサポート・アクティビティsupport_act_tooltipダブルクリックで、現在のサポート・アクティビティに参加しますsp_save_tooltipあなたのノートブックの項目を保存しますsp_view_tooltipノートブックの項目をすべて表示しますsp_panel_lblノートブックsys_error_msg_finish続行するためにはこの Web ブラウザを再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?schedule_gate_tooltipこのゲートは {0} に開きます。synchronise_gate_tooltipすべての学習者がここに到達するとゲートが開きます。not_attempted_act_tooltipこのアクティビティにアクセスするには、その前にあるアクティビティを完了する必要があります。pres_colnamelearners_lbl学習者al_act_reached_max最大選択枠アクティビティ数に達しました。al_alert通知permission_gate_tooltip先生がゲートを開くまで、ゲートを通過することはできません。 \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/ko_KR_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeout경고! 로딩이 완료되기까지 프로그레스 데이터가 적용될 수 없습니다. 로딩을 계속하기 위해서는 확인을 클릭하십시요.Alert message for timeout error when loading learning design.hd_resume_lbl다시 계속하기Label for Resume buttonln_export_btn내보내기Label for Export buttonsys_error_msg_start다음 시스템 오류가 발생하였습니다:Common System error message starting linesys_error_msg_finish계속하기 위해서는 브라우저 창을 다시 시작하는 것이 필요할 수도 있습니다. 이 문제를 고치기 위해서 이 오류에 대한 다음 정보를 저장하기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error alert window titleal_alert경고Generic title for Alert windowal_cancel취소Cancel on alert dialogal_confirm확인To Confirm title for LFErroral_validation_act_unreached당신은 다다르지 못한 활동을 열 수 없습니다.Alert message when clicking on an unreached activity in the progess bar.hd_exit_tooltip학습자 환경에서 나와 브라우저 창을 닫음tool tip message for exit buttonhd_resume_tooltip현재 활동으로 점프tool tip message for resume buttonln_export_tooltip당신의 기여를 이 강의로 내보내기tool tip message for export buttoncompleted_act_tooltip완료한 활동을 검토하기 위해 더블 클릭하세요.tool tip message for completed activity iconcurrent_act_tooltip현재 활동에 참여하기 위해 더블클릭하세요.tool tip message for current activity iconal_doubleclick_todoactivity죄송합니다. 아직 당신은 이 활동에 도달하지 못하였습니다.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lbl모두 보기Label for View All buttonsp_save_lbl저장Label for Save buttonsp_title_lbl제목Label for title field of scratchpad (notebook)hd_exit_lbl나가기Label for Exit buttonsp_panel_lbl노트북Label for panel title of scratchpad (notebook)sp_view_tooltip모든 노트북 항목 보기tool tip message for view all buttonsp_save_tooltip당신의 노트북 항목을 저장하시요.tool tip message for save buttonal_ok확인OK on alert dialogal_send보내기Send button label on the system error dialogpermission_gate_tooltip교수자가 해제하기전에는 이 관문을 통과해서 지나갈 수 없습니다.Tooltip for permission gate in learner progress barschedule_gate_tooltip이 관문은 {0}에 열릴 것입니다.Tooltip for schedule gate in learner progress barsynchronise_gate_tooltip이 관문은 모든 학습자가 이 지점에 도달해야 해제됩니다.Tooltip for synchronise gate in learner progress barnot_attempted_act_tooltip이 활동을 하기 위해서는 이전 활동들을 완료해야 합니다.Tooltip for not yet attempted activities in the learner progress bar \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/mi_NZ_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀEal_confirmWhakatūturutiasp_view_tooltipTirohia ngā tāurunga pukatuhi katoasp_panel_lblPukatuhial_cancelWhakakorehd_resume_lblHaere Anōln_export_btnKawea Atusys_error_msg_startI puta mai tēnei hapa pūnaha:sys_error_msg_finishTērā pea me tīmata anō e koe tēnei matapihi pūtirotiro kia hāere tonu ai ō mahi. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?sys_errorHapa Pūnahaal_alertKia Matohial_validation_act_unreachedKāore e taea e koe te Ngohe te huaki, nō te mea kāhore anō koe kia tae atu.hd_resume_tooltipHūpeke atu ki tō ngohe o nāianeihd_exit_tooltipWaiho te Wāhi Akoranga, ka kati ai i te matapihi pūtirotiroln_export_tooltipTukuna atu koe ō tākoha ki tēnei akorangacompleted_act_tooltipKia rua ngā pāwhiringa hei arotake i tēnei ngohe oti current_act_tooltipKia rua ngā pāwhiringa hei whai wāhi ki te ngohe o nāianeial_doubleclick_todoactivityAroha mai, kāhore anō koe kia tae atu ki tēnei ngohesp_view_lblTirohia te Katoasp_save_lblTiakisp_title_lblTaitarasp_save_tooltipTiaki tōu tāurunga pukatuhial_timeoutKia Tūpato! Kaore e taea te tāpiri raraunga kaneke kia mutu rā anō te uta. Pāwhiria ĀE ki te haere tonu. hd_exit_lblPutangasupport_acts_titleNgohe Āwhinasupport_act_tooltipPāwhiria kia uru ki tēnei ngohe āwhinaal_sendTukunanot_attempted_act_tooltipWhakaotia ngā ngohe o mua ki te uru mai ki tēnei ngohe.permission_gate_tooltipKāhore e taea te haere ki tua o tēnei tomokanga tae ki te wā i whakawātea te kaiako.schedule_gate_tooltipKa tūwheratia te tomokanga hei te {0}.synchronise_gate_tooltipKa tūwheratia te Tomokanga hei te taenga mai o ngā ākonga katoa.pres_colnamelearners_lblĀkongaal_act_reached_maxKua tae kē ki te mōrahi o ngā ngohe kōwhiringa.pres_panel_lblKo wai i tuihono maipres_dataproviderloading_lblKa utaina tuihonotia mai ... \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/ms_MY_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblSambungLabel for Resume buttonhd_exit_lblKeluarLabel for Exit buttonln_export_btnEksportLabel for Export buttonsys_error_msg_startRalat sistem ini telah berlaku:Common System error message starting linesys_error_msg_finishAnda mungkin perlu memulakan semula tetingkap pelayar untuk sambung. Adakah anda mahu menyimpan ralat ini untuk membantu menyelesaikan masalah ini?Common System error message finish paragraphsys_errorRalat SistemSystem Error alert window titleal_alertAletGeneric title for Alert windowal_cancelBatalCancel on alert dialogal_confirmSahTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedAnda tidak boleh membuka Aktiviti kerana anda tidak sampai aktiviti ini lagi.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipLompat ke aktiviti sekarangtool tip message for resume buttonhd_exit_tooltipKeluar Persekitaran Pelajaran dan tutup tetingkap pelayartool tip message for exit buttonln_export_tooltipEksport kontribusi anda ke pelajaran initool tip message for export buttoncompleted_act_tooltipKlik dua kali untuk reviu aktiviti yang telah lengkap initool tip message for completed activity iconcurrent_act_tooltipKlik dua kali untuk menyertai aktiviti sekarangtool tip message for current activity iconal_doubleclick_todoactivityMaaf, anda tidak mencapai aktiviti ini lagialert message when user double click on the todo activity in the sequence in learner progresssp_view_lblPapar SemuaLabel for View All buttonsp_save_lblSimpanLabel for Save buttonsp_view_tooltipPapar semua entri buku notatool tip message for view all buttonsp_save_tooltipSimpan entri buku nota andatool tip message for save buttonsp_title_lblTajukLabel for title field of scratchpad (notebook)sp_panel_lblBuku notaLabel for panel title of scratchpad (notebook)al_timeoutAmaran! Perkembangan data tidak boleh digunakan sehingga ia tamat dipindahkan. Klik OK untuk sambung pindahanAlert message for timeout error when loading learning design.al_sendHantarSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/nl_BE_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblHervattenLabel for Resume buttonhd_exit_lblEindeLabel for Exit buttonln_export_btnExporterenLabel for Export buttonsys_error_msg_startVolgende fout heeft zich voorgedaan:Common System error message starting linesys_error_msg_finishMogelijk dien je je browservenster te herstarten om verder te gaan. Wil je volgende informatie over deze fout opslaan om het probleem te helpen oplossen ?Common System error message finish paragraphsys_errorSysteemfoutSystem Error alert window titleal_alertWaarschuwingGeneric title for Alert windowal_cancelAnnulerenCancel on alert dialogal_confirmBevestigenTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedJe kan deze activiteit nog niet openen; je hebt ze nog niet bereikt in het verloop van de les.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipGa naar de volgende activiteittool tip message for resume buttonhd_exit_tooltipVerlaat de leeromgeving en sluit het venster.tool tip message for exit buttonln_export_tooltipExporteer uw bijdragen aan deze lestool tip message for export buttoncompleted_act_tooltipDubbelklik om deze voltooide activiteit te overzien.tool tip message for completed activity iconcurrent_act_tooltipDubbelklik om deel te nemen aan deze activiteittool tip message for current activity iconal_doubleclick_todoactivitySorry, je hebt deze activiteit nog niet bereikt.alert message when user double click on the todo activity in the sequence in learner progresssp_view_lblAlles bekijkenLabel for View All buttonsp_save_lblBewaarLabel for Save buttonsp_view_tooltipBekijk alle notities.tool tip message for view all buttonsp_save_tooltipBewaar je notitietool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblNotietiesLabel for panel title of scratchpad (notebook)al_sendVerzendenSend button label on the system error dialogal_timeoutWaarschuwing! Voortgang kan niet worden berekend totdat het laden gereed is. Klik op OK om door te gaan met ladenAlert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/no_NO_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3not_attempted_act_tooltipDu må ferdigstille de foregående aktivitetene før du kan begynne med denne aktiviteten.sys_error_msg_finishDu må starte nettleseren på nytt for å kunne fortsette. Ønsker du å lagre info. om denne feilen for å hjelpe oss å rette problemet ?sp_panel_lblNotatbokhd_resume_tooltipGå til din aktive aktivitethd_exit_tooltipGå ut av studentmiljøet og steng av nettleserenln_export_tooltipEksporter ditt bidrag til denne leksjonencurrent_act_tooltipDobbeltklikk for å delta i den aktive aktivitetenal_doubleclick_todoactivityBeklager, du har ikke kommet fram til denne aktiviteten endasp_view_lblVis allesp_save_lblLagresp_view_tooltipVis alle notatersp_save_tooltipLagre dine notatersp_title_lblTittelhd_resume_lblFortsettehd_exit_lblGå utln_export_btnEksportersys_error_msg_startFølgende system feil har oppstått:sys_errorSystem feilal_cancelAngreal_confirmBekreftal_okOKal_validation_act_unreachedDu kan ikke åpne en aktivitet du ikke har kommet fram til enda.support_acts_titleBrukerstøtte aktivitetsupport_act_tooltipDobbeltklikk for å delta i denne brukerstøtte aktivitetenal_sendSendal_timeoutAdvarsel ! Data for fremdrift kan ikke benyttes før nedlasting er ferdig. Klikk på OK for å fortsette nedlastingen.al_alertVarselcompleted_act_tooltipDobbeltklikk for å vurdere den ferdigstillte aktivitetenpermission_gate_tooltipDu kan ikke fortsette forbi denne porten før foreleseren åpner denne.schedule_gate_tooltipDenne porten vil åpnes {0}.synchronise_gate_tooltipDenne porten vil bli åpnet med en gang alle studenter når denne.al_act_reached_maxMaksimalt antall tilleggsaktiviteter er nådd.pres_panel_lblAudienspres_colnamelearners_lblStudenterpres_dataproviderloading_lblLast inn audiense..... \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/pl_PL_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutOstrzeżenie! Ładowanie danych musi zostać zakończone. Kliknij OKAlert message for timeout error when loading learning design.hd_exit_lblWyjścieLabel for Exit buttonln_export_btnEksportLabel for Export buttonsys_error_msg_startWystąpił następujący błąd systemu:Common System error message starting linesys_error_msg_finishAby kontynuować należy ponownie uruchomić przeglądarkę. Czy chcesz zapisać informacje o błędzie aby naprawić ten problem?Common System error message finish paragraphsys_errorBłąd SystemuSystem Error alert window titleal_alertUwagaGeneric title for Alert windowal_cancelAnulujCancel on alert dialogal_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedNie możesz otworzyć Aktywności jeśli do niej nie dotarłeśAlert message when clicking on an unreached activity in the progess bar.hd_exit_tooltipOpuść moduł Studenta i zamknij okno przeglądarkitool tip message for exit buttonln_export_tooltipEksportuj twoje uwagi do tej lekcjitool tip message for export buttoncompleted_act_tooltipKliknij dwa razy aby podejrzeć zakończoną aktywnośćtool tip message for completed activity iconcurrent_act_tooltipKliknij dwa razy aby uczestniczyć w obecnej aktywnościtool tip message for current activity iconal_doubleclick_todoactivityNie dotarłeś jeszcze do tej aktywności alert message when user double click on the todo activity in the sequence in learner progresssp_save_lblZapiszLabel for Save buttonsp_view_tooltipPokaż wszystkie wpisy do notatnikatool tip message for view all buttonsp_save_tooltipZapisz swój wpis do notatnikatool tip message for save buttonsp_title_lblTytułLabel for title field of scratchpad (notebook)sp_panel_lblNotatnikLabel for panel title of scratchpad (notebook)hd_resume_lblDalejLabel for Resume buttonhd_resume_tooltipPrzejdź do właściwej aktywnościtool tip message for resume buttonsp_view_lblWszystkieLabel for View All buttonal_sendWysłanoSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/pt_BR_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResumirLabel for Resume buttonhd_exit_lblSairLabel for Exit buttonln_export_btnExportarLabel for Export buttonsys_error_msg_startUm erro de sistema de segmento ocorreu:Common System error message starting linesys_error_msg_finishVocê talvez necessite reiniciar esta janela do navegador para continuar. Você deseja salvar a informação vinda deste erro para ajudar a solucionar este problema?Common System error message finish paragraphsys_errorErro do SistemaSystem Error alert window titleal_alertAlertaGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedVocê não pode abrir a Atividade que você ainda não alcançouAlert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipPular para a atividade atualtool tip message for resume buttonhd_exit_tooltipSair do ambiente Aluno e fechar a janela do navegadortool tip message for exit buttonln_export_tooltipExportar suas contribuições para esta liçãotool tip message for export buttoncompleted_act_tooltipClicar duas vezes para rever a atividade finalizadatool tip message for completed activity iconcurrent_act_tooltipClicar duas vezes para participar da atividade atualtool tip message for current activity iconal_doubleclick_todoactivityDesculpe, você não alcançou está atividade aindaalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVisualizar todasLabel for View All buttonsp_save_lblSalvarLabel for Save buttonsp_view_tooltipVisualizar todas as entradas no caderno de notastool tip message for view all buttonsp_save_tooltipSalvar sua entrada no caderno de notastool tip message for save buttonsp_title_lblTítuloLabel for title field of scratchpad (notebook)sp_panel_lblCaderno de NotasLabel for panel title of scratchpad (notebook)al_timeoutcuidado! O progresso dos dados não pode ser aplicado enquanto não terminar de carregar. Clique em OK para continuar carregando.Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/ru_RU_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3current_act_tooltipСделайте двойной щелчок, чтобы принять участие в текущем заданииln_export_tooltipЭкспорт Ваших вкладов в этот урокhd_resume_tooltipПерейти к Вашему текущему заданию.completed_act_tooltipСделайте двойной щелчок, чтобы просмотреть это завершённое заданиеal_doubleclick_todoactivityИзвините, Вы ещё не достигли этого заданияhd_exit_lblВыйтиsys_error_msg_finishВы, возможно, должны перезагрузить это окно браузера, чтобы продолжить. Хотите ли Вы сохранить следующую информацию об этой ошибке, чтобы помочь установить причину этой проблемы?al_validation_act_unreachedВы не можете открыть задание, поскольку Вы еще его не достигли.hd_resume_lblВозобновитьln_export_btnЭкспортsys_error_msg_startПроизошла следующая ошибка системыsys_errorСистемная ошибкаal_alertИзвещениеal_cancelОтменитьal_confirmПодтвердитьhd_exit_tooltipВыйдите из среды обучения и закройте окно браузераsp_view_lblПросмотреть всёsp_save_lblСохранитьsp_view_tooltipПросмотреть все записи в тетрадиsp_save_tooltipСвохранить Ваши записи в тетрадиsp_title_lblЗаголовокsp_panel_lblТетрадьal_okОКal_sendОтправитьal_timeoutВнимание! Невозможно производить изменения до того, как закончится загрузка. Нажмите ОК, чтобы ее продолжитьpermission_gate_tooltipВы не можете пройти дальше этого затвора до тех пор пока преподаватель откроет его.schedule_gate_tooltipЭтот затвор будет открыт {0}synchronise_gate_tooltipЗатвор будет открыт, когда все ученики достигнут этого этапа.not_attempted_act_tooltipВам нужно выполнить другие задания прежде чем перейти к этому.al_act_reached_maxМаксимальное количество вспомогательных заданий уже было достигнуто.pres_panel_lblПрисутствиеpres_colnamelearners_lblУченикиpres_dataproviderloading_lblЗагружается присутствие...support_acts_titleВспомогательные заданияsupport_act_tooltipЩелкните два раза, чтобы участвовать в этом вспомогательном задании \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/sv_SE_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_resume_lblResuméLabel for Resume buttonhd_exit_lblAvslutaLabel for Exit buttonln_export_btnExporteraLabel for Export buttonsys_error_msg_startDet följande systemfelet har inträffat:Common System error message starting linesys_error_msg_finishDu kanske måste starta om detta webbläsarfönster. Vill du spara följande information om detta fel i syfte att hjälpa till att lösa problemet?Common System error message finish paragraphsys_errorSystemfelSystem Error alert window titleal_alertVarningGeneric title for Alert windowal_cancelAvbrytCancel on alert dialogal_confirmBekräftaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_act_unreachedDu kan öppna aktiviteten eftersom du inte har nått den ännu.Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipHoppa till din aktuella aktivitettool tip message for resume buttonhd_exit_tooltipLämna den lärandes miljö och stäng webbläsarfönstret. tool tip message for exit buttonln_export_tooltipExportera dina bidrag till den här lektionentool tip message for export buttoncompleted_act_tooltipDubbelklicka för att granska den här fullföljda aktivitetentool tip message for completed activity iconcurrent_act_tooltipDubbelklicka för att delta i den aktuella aktivitetentool tip message for current activity iconal_doubleclick_todoactivityDu har tyvärr inte nått den här aktiviteten ännualert message when user double click on the todo activity in the sequence in learner progresssp_view_lblVisa allaLabel for View All buttonsp_save_lblSparaLabel for Save buttonsp_view_tooltipVisa alla inlägg i Anteckningartool tip message for view all buttonsp_save_tooltipSpara ditt inlägg i Anteckningar tool tip message for save buttonsp_title_lblTitelLabel for title field of scratchpad (notebook)sp_panel_lblAnteckningarLabel for panel title of scratchpad (notebook)al_timeoutVarning! Det går inte att använda data under behandling förrän laddningen är avslutad. Klicka på OK för att fortsätta laddningen. Alert message for timeout error when loading learning design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/tr_TR_dictionary.xml 12 Jan 2010 01:19:48 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3hd_exit_tooltipÖğrenme ortamından çıkar ve tarayıcı pencersini kapatır.tool tip message for exit buttonschedule_gate_tooltipKapı {0}'da açılacak.Tooltip for schedule gate in learner progress barln_export_tooltipBu derse yaptığınız katkıyı dışa aktarır.tool tip message for export buttonln_export_btnDışa AktarLabel for Export buttoncurrent_act_tooltipŞuan yaptığınız etkinliğiğe katılmak için çift tıklayınız.tool tip message for current activity iconsynchronise_gate_tooltipBu kapı tüm öğrenciler bu noktaya ulaştığında açılacaktır.Tooltip for synchronise gate in learner progress baral_validation_act_unreachedHenüz gelmediğiniz bir etkinliği açamazsınız.Alert message when clicking on an unreached activity in the progess bar.al_doubleclick_todoactivityÜzgünüm, henüz bu etkinliğe gelmediniz.alert message when user double click on the todo activity in the sequence in learner progresshd_resume_tooltipŞuan yapmakta olduğunuz etkinliğe devam eder.tool tip message for resume buttonhd_exit_lblÇıkışLabel for Exit buttonsys_error_msg_startAşağıdaki sistem hatası oluştu.Common System error message starting linesys_errorSistem HatasıSystem Error alert window titleal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorsp_title_lblBaşlıkLabel for title field of scratchpad (notebook)al_sendGönderSend button label on the system error dialoghd_resume_lblDevam EtLabel for Resume buttonnot_attempted_act_tooltipBu etkinleğe erişmeden önce diğer etkinlikleri tamamlamalısınız.Tooltip for not yet attempted activities in the learner progress barpermission_gate_tooltipÖğretmen izin verene kadar bu kapıdan geçemezsiniz.Tooltip for permission gate in learner progress barsp_panel_lblNot DefteriLabel for panel title of scratchpad (notebook)al_act_reached_maxMaksimum seçmeli etkinlik sayısına erişildi.al_act_reached_maxpres_colnamelearners_lblÖğrencilerPresence datagrid learners columnpres_panel_lblGörünümPresence panel labelpres_dataproviderloading_lblGörünüm yükleniyorPresence datagrid learning loading alertal_timeoutUyarı! Yükleme bitmeden süreç verisi uygulanamaz. Yüklemeye devam etmek için Tamam'a tıklayınız.Alert message for timeout error when loading learning design.al_okTamamOK on alert dialogal_cancelİptalCancel on alert dialogcompleted_act_tooltipTamamlanmış etkinliği incelemek için çift tıklayınız.tool tip message for completed activity iconsp_view_lblTümünü gösterLabel for View All buttonsp_view_tooltipTüm not defteri girişlerini görüntüler.tool tip message for view all buttonsys_error_msg_finishDevam etmek için tarayıcıyı kapatıp tekrar açmalısınız. Bu problemin giderilmesine yardımcı olmak için hata bilgisini kaydetmek istiyor musunuz?Common System error message finish paragraphsp_save_tooltipNot defteritool tip message for save buttonsp_save_lblKaydetLabel for Save button \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/vi_VN_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_timeoutCảnh báo ! Dữ liệu tiến trình chỉ được chấp nhật khi kết thúc quá trình đăng tải. Kích nút Đồng ý để tiếp tục đăng tải.Alert message for timeout error when loading learning design.hd_exit_lblThoát Label for Exit buttonln_export_btnĐưa raLabel for Export buttonsys_error_msg_startĐã phát hiện thấy lỗi hệ thốngCommon System error message starting linesys_error_msg_finishBạn cần phải khởi động lại cửa trình duyệt để tiếp tục. Bạn có muốn lưu những thông tin về lỗi này để giúp sửa lỗi không?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error alert window titleal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏCancel on alert dialogal_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on alert dialogal_validation_act_unreachedBạn không thể mở hoạt động vì bạn vẫn chưa chỉ vào Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltipTới hoạt động hiện thời của bạntool tip message for resume buttonhd_exit_tooltipThoát khỏi môi trường của học viên và đóng cửa sổ trình duyệttool tip message for exit buttonln_export_tooltipĐưa ra các đóng góp của bạn về bài học nàytool tip message for export buttoncompleted_act_tooltipNháy kép để xem lại hoạt động đã được hoàn tấttool tip message for completed activity iconcurrent_act_tooltipNháy kép để tham gia hoạt động hiện thờitool tip message for current activity iconal_doubleclick_todoactivityXin lỗi, bạn vẫn chưa chỉ tới hoạt độngalert message when user double click on the todo activity in the sequence in learner progresssp_view_lblXem tất cảLabel for View All buttonsp_save_lblLưuLabel for Save buttonsp_view_tooltipXem tất cả các ghi chép sổ taytool tip message for view all buttonsp_save_tooltipLưu ghi chép sổ tay của bạntool tip message for save buttonsp_title_lblTiêu đềLabel for title field of scratchpad (notebook)sp_panel_lblSổ tayLabel for panel title of scratchpad (notebook)hd_resume_lblHồi phụcLabel for Resume buttonal_sendGửiSend button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/zh_CN_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sp_view_tooltip观看所有的笔记条目tool tip message for view all buttonsp_save_tooltip保存你的笔记条目tool tip message for save buttonsp_title_lbl标题Label for title field of scratchpad (notebook)sp_panel_lbl笔记本Label for panel title of scratchpad (notebook)sp_view_lbl观看所有的Label for View All buttonsp_save_lbl保存Label for Save buttonhd_resume_lbl重新开始Label for Resume buttonhd_exit_lbl退出Label for Exit buttonln_export_btn导出Label for Export buttonsys_error_msg_start发生了一个系统错误Common System error message starting linesys_error_msg_finish你需要重新启动这个浏览器窗口来继续。你想保存关于这个错误的下列信息来帮助解决这个问题吗?Common System error message finish paragraphsys_error系统错误System Error alert window titleal_alert警惕Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm确认To Confirm title for LFErroral_okOK on alert dialogal_validation_act_unreached你不能打开这个活动,因为你还没有到达它。Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltip跳转到你的当前活动tool tip message for resume buttonhd_exit_tooltip退出学习者环境,关闭浏览器窗口tool tip message for exit buttonln_export_tooltip导出对这个课程的你的贡献tool tip message for export buttoncompleted_act_tooltip双击,回顾这个已完成的活动tool tip message for completed activity iconcurrent_act_tooltip双击,参加到当前活动tool tip message for current activity iconal_doubleclick_todoactivity对不起,你还没有到达这个活动alert message when user double click on the todo activity in the sequence in learner progressal_timeout警告!只有加载完成时数据才能被应用,点击确定以继续加载Alert message for timeout error when loading learning design.al_send发送Send button label on the system error dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/learner/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/learner/Attic/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/learner/zh_TW_dictionary.xml 12 Jan 2010 01:19:47 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_start系統發生錯誤Common System error message starting linesys_error_msg_finish您需要重新啟動這個瀏覽器視窗才能繼續。您想要保存這個錯誤的資訊,來幫助解決問題嗎?Common System error message finish paragraphsp_view_tooltip檢視所有筆記條目tool tip message for view all buttonsp_save_tooltip儲存您的筆記條目tool tip message for save buttonhd_exit_lbl離開Label for Exit buttonln_export_btn匯出Label for Export buttonhd_resume_lbl重新開始Label for Resume buttonsys_error系統錯誤System Error alert window titleal_alert警告Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOK on alert dialogal_doubleclick_todoactivity對不起,您尚未到達這個活動alert message when user double click on the todo activity in the sequence in learner progresssp_view_lbl觀看全部Label for View All buttonsp_save_lbl儲存Label for Save buttonsp_title_lbl標題Label for title field of scratchpad (notebook)sp_panel_lbl筆記本Label for panel title of scratchpad (notebook)al_send送出Send button label on the system error dialogschedule_gate_tooltip這個閘門將開啟於{0}. Tooltip for schedule gate in learner progress barsynchronise_gate_tooltip這個閘門將被釋放一旦所有學習者到達這個點Tooltip for synchronise gate in learner progress barpres_panel_lbl呈現Presence panel labelpres_colnamelearners_lbl學習者Presence datagrid learners columnpres_dataproviderloading_lbl下載呈現...Presence datagrid learning loading alertal_validation_act_unreached你無法開啟此活動因你還未達到Alert message when clicking on an unreached activity in the progess bar.hd_resume_tooltip跳到你目前的活動tool tip message for resume buttonhd_exit_tooltip離開學習者環境並關閉瀏覽視窗tool tip message for exit buttonln_export_tooltip輸出你的貢獻到此課程tool tip message for export buttoncompleted_act_tooltip按兩下去看完成的活動tool tip message for completed activity iconcurrent_act_tooltip按兩下去參加目前的活動tool tip message for current activity iconal_timeout警告!進行中的資料無法套用直到下再完成前,請按好去繼續下載Alert message for timeout error when loading learning design.permission_gate_tooltip直到敎師釋放前,你無法移動此閘門Tooltip for permission gate in learner progress barnot_attempted_act_tooltip你必須在此活動前完成所有活動,才可進行Tooltip for not yet attempted activities in the learner progress baral_act_reached_max選擇性活動的最大數已經達到al_act_reached_max \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ar_JO_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertتحذيرGeneric title for Alert windowal_cancelإلغاءTo Confirm title for LFErroral_confirmتأكيدTo Confirm title for LFErroral_okنعمOK on the alert dialogapp_chk_langloadبيانات اللغة قد حملتmessage for unsuccessful language loadingapp_chk_themeloadبيانات المحمول لم تحمل بعدmessage for unsuccessful theme loadingapp_fail_continueالبرنامج لا يمكنه الاستمرار الرجاء الاتصال بالدعم الفنيmessage if application cannot continue due to any errordb_datasend_confirmشكرا على ارسال البيانات الى الخادمMessage when user sucessfully dumps data to the servermnu_editتعديلMenu bar Editmnu_edit_copyنسخMenu bar Edit &gt; Copymnu_edit_cutقصMenu bar Edit &gt; Cutmnu_edit_pasteلصقMenu bar Edit &gt; Pastemnu_fileملفMenu bar Filemnu_file_refreshانعاشMenu bar Refreshmnu_file_editclassتعديل الصفMenu bar Edit Classmnu_file_startتشغيلMenu bar Startmnu_helpمساعدةMenu bar Helpmnu_help_abtعنMenu bar Aboutperm_act_lblاذنLabel for permission gate activitysched_act_lblجدولLabel for schedule gate activitysynch_act_lblزامن Used as a label for the Synch Gate Activity Typews_Rootمجلد رئيسيRoot folder title for workspacews_dlg_cancel_buttonالغاء2ws_dlg_location_buttonموقعWorkspace dialogue Location btn labelws_tree_mywspمساحة عمليThe root level of the treews_tree_orgsمؤسساتShown in the top level of the tree in the workspacesys_error_msg_startحدث الخطأ التالي في النظامCommon System error message starting linesys_error_msg_finishقد تحتاج لاعادة تشغيل النظام للاستمرار،هل تريد حفظ المعلومات التالية حول هذا الخطأ لحل المشكلة؟Common System error message finish paragraphsys_errorخطأ نظامSystem Error elert window titlemnu_file_scheduleجدولMenu bar Schedulemnu_file_exitخروجMenu bar Exitmnu_view_learnersتلاميذMenu bar Learnersmnu_goانطلقMenu bar Gomnu_go_lessonدرسMenu bar Go to Lesson Tabmnu_go_scheduleجدولMenu bar Go to Schedule Tabmnu_go_learnersتلاميذMenu bar Go to Learners Tabmnu_go_todoما يجب القيام به Menu bar Todomnu_help_helpمساعدةMenu bar Help itemrefresh_btnانعاشRefresh buttonhelp_btnمساعدةHelp buttonmtab_lessonدرسMonitor Lesson details tabmtab_seqسلسلةMonitor Sequence tabmtab_learnersتلاميذMonitor Learners tabmtab_todoما يجب القيام به Monitor Todo tabls_status_lblالوضع الحاليStatus label - Lesson detailsls_learners_lblتلاميذLearner label - Lesson detailsls_class_lblصفClass label - Lesson detailsls_manage_class_lblصفClass managing label - Lesson detailsls_manage_status_lblالوضع الحاليStatus managing label - Lesson detailsls_manage_start_lblابدأStart managing label - Lesson detailsls_manage_learners_btnعرض الطلابView learners button - Lesson details (manage section)ls_manage_editclass_btnتعديل الصفEdit class button - Lesson details (manage section)ls_manage_apply_btnيطبقStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnجدولSchedule start button - Lesson details (manage section)ls_manage_start_btnشغل الآنStart immediately button - Lesson details (manage section)ls_manage_date_lblتاريخDate field title - Lesson details (manage section)ls_duration_lblانقضت المدةElapsed duration of lesson - Lesson detailsls_manage_status_cmbاختر الوضع الحاليStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateتشغيلLesson status option - Activatels_status_cmb_disableيضعفLesson status option - Disable (suspend)ls_status_cmb_enableنشطLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveارشيفLesson status option - Archivels_status_active_lblنشطCurrent status description if active (enabled)ls_status_disabled_lblمعلقCurrent status description if suspended (disabled)ls_status_archived_lblحفظ بالرشيفCurrent status description if archviedls_status_started_lblبدأCurrent status description if started (enabled)ls_win_editclass_titleتعديل الصفEdit class window titlels_win_learners_titleعرض الطلابView learners window titlemnu_viewعرضMenu bar Viewls_win_editclass_save_btnحفظSave button on Edit Class popupls_win_editclass_cancel_btnالغاءCancel button on Edit Class popupls_win_learners_close_btnاغلاقClose button on View Learners popupls_win_editclass_organisation_lblمنظمةHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblموظفينHeading for Staff list on Edit Class popupls_win_editclass_learners_lblتلاميذHeading for Learners list on the Edit Class popupls_win_learners_heading_lblتلاميذ في الصفHeading on View Learners window panel.td_desc_headingضوابط متقدمةTodo tab description headingtd_desc_textلا يجب استخدام شريط ما يجب القيام به لاتمام السلسة. انظر التعليمات لمزيد من المعلومات. <br><br>هذه الميزه اصبحت الآن متوفرة بالكامل. Todo tab descriptionopt_activity_titleنشاط اختياريTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesنشاطات الاطفالNumber of child activities for Complex activity shown on canvas.ls_of_textمنi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtتنظيم الدرسHeading for Management section of Lesson Tabls_tasks_txtوظائف مطلوبةHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnانطلقGo button on contribute entry itemlearner_exportPortfolio_btnتصدير المعلومات الشخصيةLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivityهل انت متأكد من انك تريد إجبار الطالب '{0}' في النشاط '{1}' ؟Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityلقد قمت بإستثناء الطالب '{0}' من النشاط الحالي أو النشاط المستكمل '{1}' Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishهل انت متأكد من انك تريد إجبار الطالب '{0}' لانهاء الدرس؟Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetالرجاء اسقاط الطالب'{0}' في نشاط أو في نهاية الدرس. Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateالطلاب المنتهيينTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_status_scheduled_lblمجدولLesson status option - Scheduled (Not Started)goContribute_btn_tooltipاكمل المهمه الآنtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipمساعدةtool tip message for help button in toolbarrefresh_btn_tooltipاعد تحميل احدث البيانات عن تقدم الطلابtool tip message for the refresh buttonls_manage_editclass_btn_tooltipعدل قائمة الطلاب و المعلمين المكلفين اهذا الدرسtool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipاعرض جميع الطلاب المكلفين لهذا الدرسtool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipغير حالة هذا النشاط بناءً على خيار القائمةtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipصدر المعلومات الشخصية للحصة و احفظها في الكمبيوتر لغايات مستقبليةtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipصدر المعلومات الشخصية للطالب و احفظها في الكمبيوتر لغايات مستقبليةtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipابدأ الدرس الآنtool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipجدول الحصة لتبدأ في وقت لاحقtool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipانقر نقرا مزدوجا لاستعراض مساهمات الطلاب في النشاط الحاليtool tip message for current activity iconcompleted_act_tooltip انقر نقرا مزدوجا لاستعراض مساهمات الطلاب في النشاط المستكملtool tip message for completed activity iconal_doubleclick_todoactivityعفوا ،الطالب: {0} لم يصل للنشاط: {1} بعدalert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartلم يتم إختيار تاريخ. الرجاء إختيار تاريخ ووقت.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblالوقت (ساعات : دقائق)Time fields title - Lesson details (manage section)al_validation_schtimeالرجاء إدخال تاريخ صحيح.Alert message when user enters an invalid time for schedule startccm_monitor_activityفتح مراقب نشاطLabel for Custom Context Monitor Activityccm_monitor_activityhelpتعليمات مراقبة النشاطLabel for Custom Context Monitor Activity Helpfinish_learner_tooltipلاجبار طالب على انهاء الدرس، اسحب ايقونة الطالب فوق هذا الشريط وافلتRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnيومياتLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipاستعرض كل اليوميات tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/cy_GB_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertRhybuddGeneric title for Alert windowal_cancelCansloTo Confirm title for LFErroral_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on the alert dialogapp_chk_langloadNid yw'r data iaith wedi cael eu llwythomessage for unsuccessful language loadingapp_chk_themeloadNid yw'r data thema wedi cael eu llwythomessage for unsuccessful theme loadingapp_fail_continueNi all y rhaglen barhau. Cysylltwch â'r tîm cymorthmessage if application cannot continue due to any errordb_datasend_confirmDiolch am anfon data i'r gweinyddMessage when user sucessfully dumps data to the servermnu_editGolyguMenu bar Editmnu_edit_copyCopïoMenu bar Edit &gt; Copymnu_edit_cutTorriMenu bar Edit &gt; Cutmnu_edit_pasteGludoMenu bar Edit &gt; Pastemnu_fileFfeilMenu bar Filemnu_file_refreshAdnewydduMenu bar Refreshmnu_file_editclassGolygu DosbarthMenu bar Edit Classmnu_file_startDechrauMenu bar Startmnu_helpCymorthMenu bar Helpmnu_help_abtAmMenu bar Aboutperm_act_lblCaniatâdLabel for permission gate activitysched_act_lblTrefnlenLabel for schedule gate activitysynch_act_lblSyncroneiddioUsed as a label for the Synch Gate Activity Typews_RootGwreiddynRoot folder title for workspacews_dlg_cancel_buttonCanslo2ws_dlg_location_buttonLleoliadWorkspace dialogue Location btn labelws_tree_mywspFy Lle GwaithThe root level of the treews_tree_orgsSefydliadauShown in the top level of the tree in the workspacesys_error_msg_startMae'r gwall system canlynol wedi digwydd:Common System error message starting linesys_error_msg_finishEfallai y bydd rhaid i chi ailddechrau LAMS Author er mwyn parhau. Ydych chi eisiau cadw'r wybodaeth ganlynol am y gwall hwn i helpu datrys y broblem hon?Common System error message finish paragraphsys_errorGwall SystemSystem Error elert window titlemnu_file_scheduleTrefnlenMenu bar Schedulemnu_file_exitGadaelMenu bar Exitmnu_view_learnersDysgwyr...Menu bar Learnersmnu_goEwchMenu bar Gomnu_go_lessonGwersMenu bar Go to Lesson Tabmnu_go_scheduleTrefnlenMenu bar Go to Schedule Tabmnu_go_learnersDysgwyrMenu bar Go to Learners Tabmnu_go_todoI'w wneudMenu bar Todomnu_help_helpCymorth MonitroMenu bar Help itemrefresh_btnAdnewydduRefresh buttonhelp_btnCymorthHelp buttonmtab_lessonGwersMonitor Lesson details tabmtab_seqDilyniantMonitor Sequence tabmtab_learnersDysgwyrMonitor Learners tabmtab_todoI'w wneudMonitor Todo tabls_status_lblStatws:Status label - Lesson detailsls_learners_lblDysgwyr:Learner label - Lesson detailsls_class_lblDosbarth:Class label - Lesson detailsls_manage_class_lblDosbarth:Class managing label - Lesson detailsls_manage_status_lblNewid Statws:Status managing label - Lesson detailsls_manage_start_lblDechrau:Start managing label - Lesson detailsls_manage_learners_btnGweld y DysgwyrView learners button - Lesson details (manage section)ls_manage_editclass_btnGolygu DosbarthEdit class button - Lesson details (manage section)ls_manage_apply_btnGweithreduStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnTrefnlenSchedule start button - Lesson details (manage section)ls_manage_start_btnDechrau NawrStart immediately button - Lesson details (manage section)ls_manage_date_lblDyddiadDate field title - Lesson details (manage section)ls_duration_lblAmser a aeth heibio:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbDewis statws:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateGweithreduLesson status option - Activatels_status_cmb_disableAnalluogiLesson status option - Disable (suspend)ls_status_cmb_enableGweithredolLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchifoLesson status option - Archivels_status_active_lblWedi'i greu ond heb ei gychwynCurrent status description if active (enabled)ls_status_disabled_lblWedi'i atalCurrent status description if suspended (disabled)ls_status_archived_lblWedi'i archifoCurrent status description if archviedls_status_started_lblWedi cychwynCurrent status description if started (enabled)ls_win_editclass_titleGolygu DosbarthEdit class window titlels_win_learners_titleGweld y DysgwyrView learners window titlemnu_viewGweldMenu bar Viewls_win_editclass_save_btnCadwSave button on Edit Class popupls_win_editclass_cancel_btnCansloCancel button on Edit Class popupls_win_learners_close_btnCauClose button on View Learners popupls_win_editclass_organisation_lblSefydliadHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStaffHeading for Staff list on Edit Class popupls_win_editclass_learners_lblDysgwyrHeading for Learners list on the Edit Class popupls_win_learners_heading_lblDysgwyr yn y dosbarth:Heading on View Learners window panel.td_desc_headingUwch Reolyddion:Todo tab description headingtd_desc_textNid oes angen defnyddio'r Tab I'w Wneud hwn er mwyn cwblhau'r dilyniant. Gweler y dudalen cymorth am fwy o wybodaeth. .&lt;br&gt;&lt;br&gt; Mae'r nodwedd hon yn weithredol nawr.Todo tab descriptionopt_activity_titleGweithgaredd DewisolTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesgweithgareddau plantNumber of child activities for Complex activity shown on canvas.ls_of_textoi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtRheoli GwersHeading for Management section of Lesson Tabls_tasks_txtTasgau GofynnolHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnEwchGo button on contribute entry itemlearner_exportPortfolio_btnAllforio PortffolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblWedi'i drefnuLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityYdych chi'n siŵr eich bod chi eisiau gorfodi dysgwr '{0}' i gwblhau i Weithgaredd '{1}'? Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityRydych wedi gollwng dysgwr '{0}' ar naill ai ei weithgaredd cyfredol neu ei weithgaredd wedi'i gwblhau'{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishYdych chi'n siŵr eich bod chi eisiau gorfodi dysgwr '{0}' i gwblhau i ddiwedd y wers? Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetGollyngwch ddysgwr '{0}' ar weithgaredd neu ddiwedd y wers.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateDysgwyr sydd wedi Gorffen:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipCwblhewch y dasg hon nawrtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipCymorthtool tip message for help button in toolbarrefresh_btn_tooltipAil-lwythwch y data cynnydd diweddaraf ar gyfer y dysgwyrtool tip message for the refresh buttonls_manage_editclass_btn_tooltipGolygwch restr y dysgwyr a'r staff a neilltuwyd ar gyfer y wers hontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipYn dangos yr holl ddysgwyr sydd wedi'u neilltuo ar gyfer y wers hontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipNewidiwch statws y wers hon yn seiliedig ar y dewisiadau ar y gwymplentool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipAllforiwch y portffolio dosbarth a'i gadw ar eich cyfrifiadur i'w gyfeirio ato yn y dyfodoltool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipAllforiwch y portffolio dysgwr hwn a'i gadw ar eich cyfrifiadur i'w gyfeirio ato yn y dyfodoltool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipDechreuwch y wers ar unwaithtool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipTrefnwch i'r wers ddechrau yn y dyfodoltool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipCliciwch ddwywaith i weld cyfraniad sydd ar y gweill ar gyfer gweithgaredd cyfredol y dysgwrtool tip message for current activity iconcompleted_act_tooltipCliciwch ddwywaith i weld y cyfraniad ar gyfer gweithgaredd y dysgwr sydd wedi'i gwblhautool tip message for completed activity iconal_doubleclick_todoactivityNid yw dysgwr: {0} wedi cyrraedd gweithgaredd: {1}, eto.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartDim dyddiad wedi'i ddewis. Dewiswch ddyddiad ac amser.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblAmser (Oriau : Munudau)Time fields title - Lesson details (manage section)al_validation_schtimeRhowch amser dilys.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipEr mwyn gorfodi dysgwr i gwblhau'r wers, llusgwch eicon y dysgwr i'r bar hwn a rhyddhau’r eiconRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityAgor Gweithgaredd MonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpCymorth Gweithgaredd MonitorLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnCofnod DyddlyfrLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipGweld pob Cofnod Dyddlyfr wedi'i gadw gan y Dysgwyrtool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblDysgwr URL:Learner URL:ls_manage_learnerExpp_lblGalluogi allforio portffolio ar gyfer y dysgwrLabel for Enable export portfolio for Learnerls_confirm_expp_enabledAllforio Portffolio wedi'i alluogi ar gyfer y dysgwyrConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledAllforio Portffolio wedi'i analluogi ar gyfer y dysgwyrConfirmation message on disabling export portfolio for learnersls_remove_confirm_msgRydych chi wedi dewis Dileu'r wers hon. Nid oes modd adfer gwersi sydd wedi'u dileu. Parhau?remove confirm msgls_status_cmb_removeDileuLesson status option - Removels_status_removed_lblWedi’i ddileuCurrent status description if deleted (removed) lesson.al_yesIeYes on the alert dialogal_noNa'No' on the alert dialogls_remove_warning_msgRHYBUDD: Mae’r wers ar fin gael ei dileu. Ydych chi eisiau cadw’r wers hon fel archif?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} dysgwyrGroup name for the class's learners group.staff_group_name{0} staffGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/da_DK_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_manage_learnerExpp_lblSlå "Eksportér portfolio for bruger" tilLabel for Enable export portfolio for Learnerls_confirm_expp_enabled"Eksportér portfolio" er nu slået til for brugereConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabled"Eksportér portfolio" er nu slået fra for brugereConfirmation message on disabling export portfolio for learnerscontinue_btnFortsætContinue button labelcheck_avail_btnCheck tilgængelighedCheck Availability button labells_continue_lblHej {1}! Du er ikke færdig med at redigere [0}.Continue message labells_sequence_live_edit_btnLive EditLive Edit buttonls_sequence_live_edit_btn_tooltipRedigér det aktuelle design for denne session.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblUndersøger...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblIkke tilgængelig, prøv igen.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblBeklager, {0} redigeres i øjeblikket af {1}.Warning message on Monitor locked screen.ls_learnerURL_lblBruger URLLearner URL:learner_viewJournals_btn Journal indlægLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipSe alle journalindlæg fra brugeretool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_status_active_lblOprettet men endnu ikke startetCurrent status description if active (enabled)mnu_help_helpHjælp til MonitoreringMenu bar Help itemls_manage_status_lblÆndr statusStatus managing label - Lesson detailsls_manage_start_btnStart nuStart immediately button - Lesson details (manage section)about_popup_version_lblVersionLabel displaying the version no on the About dialog.al_confirm_live_editDu er ved at åbne Live Edit. Ønsker du at fortsætte?Confirm warning (dialog) message displayed when opening Live Edit.al_sendSendSend button label on the system error dialogabout_popup_title_lblOm - {0}Title for the About Pop-up window.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} er registreret varmærke for {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDette program er freeware; du må videreformidle og/eller ændre det på de betingelser, som er angivet i GNU General Public License version 2, publiceret af Free Software Foundation.Label displaying the license statement in the About dialog.learners_group_name{0} brugereGroup name for the class's learners group.ls_remove_confirm_msgDu har valgt at fjerne denne lektion. Fjernede lektioner kan ikke hentes frem igen. Vil du fortsætte?remove confirm msgls_status_cmb_removeFjernLesson status option - Removels_status_removed_lblFjernetCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNej'No' on the alert dialogls_remove_warning_msgLektionen er ved at blive fjernet. Ønsker du at beholde den i arkivet?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} stabGroup name for the class's staff group.al_cancelAnnullérTo Confirm title for LFErrorls_manage_schedule_btnTidsplanSchedule start button - Lesson details (manage section)ls_win_editclass_cancel_btnAnnullérCancel button on Edit Class popupsched_act_lblTidsplanLabel for schedule gate activityws_RootRodRoot folder title for workspacemnu_file_scheduleTidsplanMenu bar Schedulemnu_go_scheduleTidsplanMenu bar Go to Schedule Tabws_dlg_cancel_buttonAnnullér2ccm_monitor_activityÅbn aktivitetsmonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpHjælp til monitoraktivitetLabel for Custom Context Monitor Activity Helptd_desc_textBrug af denne "At gøre" funktion er ikke nødvendig for at gennemføre sekvensen. Se hjælpesiden for mere information. <br><br>Denne funktion er nu i funktion.Todo tab descriptionopt_activity_titleValgfri aktivitetTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesUnderaktivitetNumber of child activities for Complex activity shown on canvas.ls_of_textafi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtHåndtér lektionHeading for Management section of Lesson Tabls_tasks_txtObligatoriske opgaverHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGå tilGo button on contribute entry itemlearner_exportPortfolio_btnEksportér portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_validation_schstartIngen dato blev valgt. Vælg dato og tidspunkt.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityEr du sikker på at du vil tvinge brugeren '{0}' til Aktivitet '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityDu har placeret brugeren '{0}' enten på hans/hendes aktuelle eller afsluttede Aktivitet '{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishEr du sikker på, at du vil tvinge brugeren {0} til slutningen af lektionen?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetPlacér venligst brugeren {0} på en aktivitet eller afslutningen af en lektion.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateFærdige brugereTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblTid (Timer : Minutter)Time fields title - Lesson details (manage section)ls_status_scheduled_lblFastsat tilLesson status option - Scheduled (Not Started)goContribute_btn_tooltipFærdiggør denne opgave nutool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHjælptool tip message for help button in toolbarrefresh_btn_tooltipGenindlæs de seneste progressionsdata for brugernetool tip message for the refresh buttonls_manage_editclass_btn_tooltipRedigér listen med brugere og instruktører, som er indskrevet til denne lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipVis alle brugere, som er indskrevet til denne lektiontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipSkift status for denne lektion baseret på drop down menuentool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksportér klasseportfolioen og gem den på din computere til senere brugtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksportér denne brugerportfolio og gem den på din computer til senere brugtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipStart lektionen nutool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipFastsæt lektionen til at starte på et senere tidspunkttool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDobbelklik for at se igangværende bidrag til brugernes aktuelle aktivitetertool tip message for current activity iconcompleted_act_tooltipDobbeltklik for at se bidrag til brugernes afsluttede aktivitetertool tip message for completed activity iconal_validation_schtimeAngiv et gyldigt tidspunktAlert message when user enters an invalid time for schedule startfinish_learner_tooltipFor at tvinge en bruger til at afslutte lektionen, træk brugerens ikon over til denne bjælke og slip detRollover message when user moves their mouse over the end gate bar in monitor tab viewal_doubleclick_todoactivityBeklager, bruger: {0} er ikke nået til denne aktivitet: {1} endnu.alert message when user double click on the todo activity in the sequence under learner tabal_alertNB!Generic title for Alert windowal_confirmBekræftTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSprogindstillingerne er ikke indlæstmessage for unsuccessful language loadingapp_chk_themeloadTemaindstillingerne er ikke indlæstmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan ikke fortsætte. Konkakt supportmessage if application cannot continue due to any errordb_datasend_confirmTak for at sende oplysninger til serverenMessage when user sucessfully dumps data to the servermnu_editRedigérMenu bar Editmnu_edit_copyKopiérMenu bar Edit &gt; Copymnu_edit_cutKlipMenu bar Edit &gt; Cutmnu_edit_pasteSæt indMenu bar Edit &gt; Pastemnu_fileFilMenu bar Filemnu_file_refreshGenindlæsMenu bar Refreshmnu_file_editclassRedigér klasseMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHjælpMenu bar Helpmnu_help_abtOmMenu bar Aboutperm_act_lblRettighederLabel for permission gate activitysynch_act_lblSynkronisérUsed as a label for the Synch Gate Activity Typews_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_tree_mywspMit arbejdsområdeThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacesys_error_msg_startFølgende fejl er opstået:Common System error message starting linesys_error_msg_finishDu er nødt til at genstarte LAMS Forfatter for at fortsætte. Ønsker du at gemme følgende information om fejlen med henblik på at afhjælpe problemet?Common System error message finish paragraphsys_errorSystem fejlSystem Error elert window titlemnu_file_exitExitMenu bar Exitmnu_view_learnersBrugereMenu bar Learnersmnu_goGå tilMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_learnersBrugereMenu bar Go to Learners Tabmnu_go_todoAt gøreMenu bar Todorefresh_btnGenindlæsRefresh buttonhelp_btnHjælpHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSekvensMonitor Sequence tabmtab_learnersBrugereMonitor Learners tabmtab_todoAt gøreMonitor Todo tabls_status_lblStatusStatus label - Lesson detailsls_learners_lblBrugereLearner label - Lesson detailsls_class_lblKlasseClass label - Lesson detailsls_manage_class_lblKlasseClass managing label - Lesson detailsls_manage_start_lblStartStart managing label - Lesson detailsls_manage_learners_btnVis brugereView learners button - Lesson details (manage section)ls_manage_editclass_btnRedigér klasseEdit class button - Lesson details (manage section)ls_manage_apply_btnAnvendStatus Apply button - Lesson details (manage section)ls_manage_date_lblDatoDate field title - Lesson details (manage section)ls_duration_lblTid gåetElapsed duration of lesson - Lesson detailsls_manage_status_cmbVælg statusStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktivérLesson status option - Activatels_status_cmb_disableDeaktivérLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkivLesson status option - Archivels_status_disabled_lblSuspenderetCurrent status description if suspended (disabled)ls_status_archived_lblArkiveretCurrent status description if archviedls_status_started_lblStartetCurrent status description if started (enabled)ls_win_editclass_titleRedigér klasseEdit class window titlels_win_learners_titleVis brugereView learners window titlemnu_viewVisMenu bar Viewls_win_editclass_save_btnGemSave button on Edit Class popupls_win_learners_close_btnLukClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblInstruktørerHeading for Staff list on Edit Class popupls_win_editclass_learners_lblBrugereHeading for Learners list on the Edit Class popupls_win_learners_heading_lblBrugere i klassenHeading on View Learners window panel.td_desc_headingAvancerede indstillingerTodo tab description headingls_continue_action_lblKlik på {0] for at fortsætte.Action label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/de_DE_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_status_disabled_lblVerschobenCurrent status description if suspended (disabled)ls_status_archived_lblArchiviertCurrent status description if archviedls_status_started_lblBegonnenCurrent status description if started (enabled)ls_win_editclass_titleKlasse bearbeitenEdit class window titlels_win_learners_titleTeilnehmer/innen anzeigenView learners window titlemnu_viewAnzeigenMenu bar Viewls_win_editclass_save_btnSpeichernSave button on Edit Class popupls_win_editclass_cancel_btnAbbrechenCancel button on Edit Class popupls_win_learners_close_btnBeendenClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblTrainer/innenHeading for Staff list on Edit Class popupls_win_editclass_learners_lblTeilnehmer/innenHeading for Learners list on the Edit Class popupls_win_learners_heading_lblTeilnehmer/innen in Klasse:Heading on View Learners window panel.td_desc_headingErweiterte Kontrollen:Todo tab description headingtd_desc_textDie Bearbeitung des Todo-Tab ist nicht notwendig, um die Sequenz abzuschließen. Weitere Informationenn auf der Hilfeseite. <br><br> Diese Funktion steht jetzt vollständig zur Verfügung. Todo tab descriptionopt_activity_titleOptionale AktivitätTitle for Optional Activity on canvas (monitoring)ls_of_textvoni.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLektion verwaltenHeading for Management section of Lesson Tabls_tasks_txtErforderliche AufgabenHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnStartGo button on contribute entry itemlearner_exportPortfolio_btnPortfolio exportierenLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_validation_schstartEs wurde noch kein datum eingetragen. Wählen Sie Datum und Zeit aus.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityWollen Sie Teilnehmer/in {0} wirklich dazu zwingen Aktivität '{1}' abzuschließen?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivitySie haben Teilnehmer/in {0} von der aktuellen oder der abgeschlossenen Aktivität '{1}' abgewählt. Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishSind Sie sicher, dass Sie Teilnehmer/in {0} zwingen wollen die Lektion bis zum Ende abzuschließen?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetBitte wählen Sie Teilnehmer/in {0} für eine Aktivität oder bis zum Ende der Lektion ab.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateFertige Teilnehmer/innen:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblZeit (Stunden:Minuten)Time fields title - Lesson details (manage section)ls_status_scheduled_lblGeplantLesson status option - Scheduled (Not Started)goContribute_btn_tooltipBeendenSie diese Aufgabe jetzttool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHilfetool tip message for help button in toolbarrefresh_btn_tooltipAktualisieren Sie die Lernfortschrittsdaten jetzt.tool tip message for the refresh buttonls_manage_editclass_btn_tooltipBearbeiten Sie die Liste der Teilnehmer/inenn und Trainer/innen für diese Lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipAlle Teilnehmer/innen dieser Lektion anzeigentool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipÄndern Sie den Status der Lektion (Dropdown-Auswahl)tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExport des Portfolios der Klasse auf Ihren Computer für spätere Auswertungen.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExport des Portfolios der Teilnehmer/innen auf Ihren Computer für spätere Auswertungen.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipLektion direkt startentool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipGeplante Lektion für späteren Beginntool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDoppelklick für Rückblick auf Teilnehmerbeiträge in derzeitiger Aktivitättool tip message for current activity iconcompleted_act_tooltipDoppelklick für Rückblick auf Teilnehmerbeiträge in abgeschlossenen Aktivitätentool tip message for completed activity iconal_validation_schtimeGeben Sie eine gültige Zeit ein.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipUm den/die Teilnehmer/in an das Ende der Lektion zu verschieben, ziehen Sie sein/ihr Icon an die entsprechende Stelle.Rollover message when user moves their mouse over the end gate bar in monitor tab viewal_doubleclick_todoactivitySorry, Teilnehmer/in {0} hat die Aktivität {1} noch nicht erreicht.alert message when user double click on the todo activity in the sequence under learner tabal_alertWarnungGeneric title for Alert windowal_cancelAbbrechenTo Confirm title for LFErroral_confirmBestätigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDie Sprachdateien wurden nicht geladenmessage for unsuccessful language loadingapp_chk_themeloadDie Themedateien wurden nicht geladenmessage for unsuccessful theme loadingapp_fail_continueDie Anwendung kann nicht fortgesetzt werden. Bitte kontakten Sie den Support.message if application cannot continue due to any errordb_datasend_confirmVielen Dank für die Übermittlung Ihrer Daten.Message when user sucessfully dumps data to the servermnu_editBearbeitenMenu bar Editmnu_edit_copyKopierenMenu bar Edit &gt; Copymnu_edit_cutAusschneidenMenu bar Edit &gt; Cutmnu_edit_pasteEinfügenMenu bar Edit &gt; Pastemnu_fileDateiMenu bar Filemnu_file_refreshAktualisierenMenu bar Refreshmnu_file_editclassKlasse bearbeitenMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHilfeMenu bar Helpmnu_help_abtÜberMenu bar Aboutperm_act_lblRechteLabel for permission gate activitysched_act_lblAblaufLabel for schedule gate activitysynch_act_lblSynchronisierenUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAbbrechen2ws_dlg_location_buttonOrtWorkspace dialogue Location btn labelws_tree_mywspMein ArtbeitsplatzThe root level of the treews_tree_orgsOrganisationenShown in the top level of the tree in the workspacesys_error_msg_startDieser Systemfehler ist auftgetreten:Common System error message starting linesys_error_msg_finishSie müssen den LAMS Monitor nun noch einmal starten. Wollen Sie Informationen über den aufgetretenen Fehler speichern, um sie weiter zu geben?Common System error message finish paragraphsys_errorSystemfehlerSystem Error elert window titlemnu_file_scheduleAblaufMenu bar Schedulemnu_file_exitAusgangMenu bar Exitmnu_view_learnersTeilnehmer/innen...Menu bar Learnersmnu_goGoMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_scheduleAblaufMenu bar Go to Schedule Tabmnu_go_learnersTeilnehmer/innenMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todorefresh_btnAktualisierenRefresh buttonhelp_btnHilfeHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSequenzMonitor Sequence tabmtab_learnersTeilnehmer/innenMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblTeilnehmer/innen:Learner label - Lesson detailsls_class_lblKlasse:Class label - Lesson detailsls_manage_class_lblKlasse:Class managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnTeilnehmer anzeigenView learners button - Lesson details (manage section)ls_manage_editclass_btnKlase bearbeitenEdit class button - Lesson details (manage section)ls_manage_apply_btnAusführenStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnAblaufSchedule start button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblAbgelaufene Zeit:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbAusgewählter Status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktivierenLesson status option - Activatels_status_cmb_disableDeaktivierenLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchivLesson status option - Archivels_manage_status_lblBearbeitungsstatus:Status managing label - Lesson detailslbl_num_activitiesTeilaktivitätenNumber of child activities for Complex activity shown on canvas.ls_manage_learnerExpp_lblPortfolioexport für Teilnehmer/innen aktivierenLabel for Enable export portfolio for Learnerls_confirm_expp_enabledPortfolioexport für Teilnehmer/innen ist jetzt aktivConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledPortfolioexport für Teilnehmer/innen ist jetzt gesperrtConfirmation message on disabling export portfolio for learnersccm_monitor_activityAktivitätenbeobachtung öffnenLabel for Custom Context Monitor Activityccm_monitor_activityhelpHilfe zur AktivitätenbeobachtungLabel for Custom Context Monitor Activity Helpls_learnerURL_lblTeilnehmer/innen URLLearner URL:learner_viewJournals_btnJournaleinträgeLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipAlle von Teilnehmer/innen gespeicherte Jouraleinträge ansehentool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.learners_group_name{0} Teilnehmer/innenGroup name for the class's learners group.ls_remove_confirm_msgSie haben das Löschen der Lektion gewählt. Gelöschte Lektionen könenn nicht wieder hergestellt werden. Wollen Sie fortfahren?remove confirm msgls_status_cmb_removeLöschenLesson status option - Removels_status_removed_lblGelöschtCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNein'No' on the alert dialogls_remove_warning_msgHinweis: Diese Lektion soll gelöscht werden. Soll sie statt dessen archiviert werden?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} Trainer/innenGroup name for the class's staff group.check_avail_btnVerfügbakeit prüfenCheck Availability button labelcontinue_btnWeiterContinue button labells_continue_lblHallo {1}, Sie haben die Bearbeitung von {0} abgeschlossen.Continue message labells_sequence_live_edit_btnLaufende Lektion bearbeitenLive Edit buttonls_sequence_live_edit_btn_tooltipDas Design der aktuellen Lektion bearbeitenTool tip message for Live Edit buttonmsg_bubble_check_action_lblPrüfung...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNicht verfügbar. Noch einmal probieren.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSorry, {0} wird zur Zeit von {1} bearbeitet.Warning message on Monitor locked screen.al_confirm_live_editSie versuchen gerade eine laufende Lektion zu bearbeiten. Wollen siefortsetzenConfirm warning (dialog) message displayed when opening Live Edit.al_sendSendenSend button label on the system error dialogabout_popup_title_lblÜber - {0}Title for the About Pop-up window.about_popup_version_lblVersionLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 {0} Foundation.Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} ist ein geschütztes Markenzeichen der {0} Foundation ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDieses Program mit freie Software. Unter den Bedingungen der GNU General Public License Version 2 (veröffentlicht durch die Free Software Foundation) kann es weiter verbreitet und/oder bearbeitet werden.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.mnu_help_helpHilfe zur BeobachtungMenu bar Help itemls_manage_start_btnJetzt beginnenStart immediately button - Lesson details (manage section)ls_status_active_lblAngelegt, aber noch nicht begonnenCurrent status description if active (enabled)ls_continue_action_lblKlick {0}, zum fortsetzenAction label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/el_GR_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgfinish_learner_tooltipΓια την Υποχρεωτική Προώθηση ενός εκπαιδευόμενου στο τέλος του μαθήματος, σύρετε το εικονίδιο του πάνω από τη μπάρα αυτή κι αφήστε το.mnu_view_learnersΕκπαιδευομένων ... view_act_mapped_competencesΠροβολή Συνδεδεμένων Ικανοτήτωνabout_popup_title_lblΠερί - {0}about_popup_version_lblΈκδοση staff_group_name{0} επόπτες al_confirm_forcecomplete_to_end_of_branching_seqΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο {0} στο τέλος του κλάδου αυτής της ακολουθίας;al_confirm_forcecomplete_toactivityΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο '{0}' στη Δραστηριότητα '{1}'; al_confirm_forcecomplete_tofinishΕίστε βέβαιοι ότι θέλετε να προωθήσετε υποχρεωτικά τον εκπαιδευόμενο'{0}' στο τέλος του μαθήματος; al_activity_view_competence_mappings_invalidΠαρακαλώ σιγουρευτείτε ότι είναι επιλεγμένη μία δραστηριότητα πρίν προσπαθείτε να δείτε τις συνδέσεις ικανοτήτωνbranch_mapping_dlg_conditions_dgd_lblΣυνδέσειςlearner_exportPortfolio_btn_tooltipΕξαγωγή του φακέλου εργασιών του εκπαιδευόμενου και αποθήκευση στον ΗΥ σας για μελλοντική αναφορά. class_exportPortfolio_btn_tooltipΕξαγωγή του φακέλου εργασιών της τάξης και αποθήκευση στον ΗΥ σας για μελλοντική αναφορά.ls_win_editclass_save_btnΑποθήκευσηls_win_editclass_staff_lblΕπόπτεςclose_mc_tooltipΕλαχιστοποίησηlbl_num_sequences{0} - Ακολουθίεςmv_search_not_found_msg{0} δεν είχαν βρεθεί.mv_search_current_page_lblΣελίδα {0} από {1}al_cancelΑκύρωσηal_confirmΕπιβεβαίωσηal_okΟΚmnu_edit_copyΑντιγραφήmnu_edit_cutΑποκοπήmnu_edit_pasteΕπικόλλησηmnu_fileΑρχείοmnu_file_refreshΑνανέωσηmnu_helpΒοήθειαmnu_help_abtΣχετικά perm_act_lblΆδειαws_RootΡίζαws_dlg_cancel_buttonΑκύρωσηws_dlg_location_buttonΤοποθεσίαmv_search_go_btn_lblΠήγαινεmnu_file_exitΈξοδοςmnu_go_todoΓια να κάνετεrefresh_btnΑνανέωσηhelp_btnΒοήθειαmtab_seqΑκολουθίαmtab_todoΓια να κάνετεls_status_lblΚατάστασηls_class_lblΤάξηls_manage_class_lblΤάξηls_status_started_lblΈχουν αρχίσειls_win_editclass_cancel_btnΑκύρωσηopt_activity_titleΠροαιρετική δραστηριότηταlbl_num_activitiesπαιδικές δραστηριότητεςls_of_textαπόcv_activity_helpURL_undefinedΔεν μπορώ να βρω τη σελίδα βοήθεια για {0}ls_status_cmb_disableΑπενεργοποίησηls_manage_start_lblΈναρξηws_tree_orgsΟργανισμοίls_status_cmb_enableΕνεργοποίησεls_confirm_expp_enabledΗ Εξαγωγή του φακέλου εργασιών είναι ενεργοποιημένη τώρα για τους εκπαιδευόμενουςls_status_cmb_activateΕνεργοποίησεls_remove_confirm_msgΕχετε επιλέξει να Διαγράψετε το μάθημα. Διαγραμμένα μαθήματα δε μπορούν να ανακληθούν. Θέλετε να συνεχίσετε;ls_status_removed_lblΔιαγραμμένοls_remove_warning_msgΠΡΟΣΟΧΗ: Το μάθημα πρόκειται να διαγραφεί. Θέλετε να κρατήσετε αυτό το μάθημα σαν αρχειοθετημένο;ws_tree_mywspΟ χώρος εργασίας μουls_status_active_lblΔημιουργήθηκε αλλά δεν εκκινήθηκεabout_popup_copyright_lbl© 2002-2008 Ίδρυμα {0}.al_validation_schtimeΠαρακαλώ εισάγετε μια έγκυρη ώρα.ls_status_scheduled_lblΠρογραμματισμένοsynch_act_lblΣυγχρονισμόςsys_error_msg_startΈνα επόμενο λάθος συστήματος συνέβηls_seq_status_synch_gateΠύλη συγχρονισμούls_seq_status_choose_groupingΕπέλεξε ομάδαls_seq_status_system_gateΠύλη Συστήματοςls_seq_status_not_setΔεν έχει ακόμα οριστείls_seq_status_sched_gateΗμερολόγιο Πύληςbranch_mapping_dlg_group_col_lblΟμάδαccm_monitor_view_group_mappingsΠροβολή Ομάδων Κλάδωνsched_act_lblΠρογραμματισμόςal_validation_schstartΔεν επιλέχθηκε ημερομηνία. Παρακαλώ επιλέξτε μια μέρα και ώραmsg_bubble_failed_action_lblΜη διαθέσιμο, Προσπαθήστε πάλι.goContribute_btn_tooltipΣυμπληρώστε αυτο το στόχο τώρα.ls_locked_msg_lblΣυγνώμη, {0} επεξεργάζεται αυτήν την περίοδο από τον/την {1}.app_chk_langloadΤα δεδομένα ης Γλώσσας δεν έχουν φορτωθείls_confirm_expp_disabledΗ Εξαγωγή του Φακέλου Εργασιών είναι απενεργοποιημένη τώρα για τους εκπαιδευόμενους ls_sequence_live_edit_btn_tooltipΕπεξεργαστείτε το τρέχον σχέδιο για αυτό το μάθημα.sys_error_msg_finishΜπορεί να χρειάζεται να επανεκκινήσετε LAMS Συγγραφέα για να ξεκινήσετε. Θέλετε να αποθηκεύσετε τις επόμενες πληροφορίες σχετικά μ αυτό το λάθοςtd_desc_textΗ χρήση αυτής της ετικέττας Να Κάνετε δεν απαιτείται να ολοκληρώσετε την ακολουθία. Δείτε τη σελίδα βοήθειας για περισσότερες πληροφορίες. Αυτό το χαρακτηριστικό γνώρισμα είναι τώρα πλήρως λειτουργικό.ls_win_editclass_organisation_lblΟργανισμόςls_win_learners_close_btnΚλείσιμοls_status_archived_lblΑρχειοθετημέναls_duration_lblΠαρερχόμενη Διάρκειαls_manage_date_lblΗμερομηνίαls_manage_schedule_btnΠρογραμματισμόςmtab_lessonΜάθημαmnu_go_scheduleΠρογραμματισμόςmnu_go_lessonΜάθημαmnu_file_scheduleΠρογραμματισμόςsys_errorΛάθος Συστήματοςdb_datasend_confirmΕυχαριστούμε για την αποστολή δεδομένων στον εξυπηρετητή.app_fail_continueΗ αίτημα δεν μπορεί να συνεχιστεί. Παρακαλώ επικοινωνήστε με την υποστήριξηapp_chk_themeloadΤα δεδομένα του θέματος δεν έχουν φορτωθείmv_search_invalid_input_msgΟ αριθμός σελίδων πρέπει να είναι μεταξύ 1 και {0}mv_search_error_msgΠαρακλώ εισαγάγετε ένα ερώτημα ή τον αριθμό σελίδας μεταξύ 1 και {0}mv_search_default_txtΕισαγάγετε την ερώτηση που ζητάτε ή τον αριθμό σελίδαςls_manage_apply_btn_tooltipΑλλαγή της κατάστασης του μαθήματος με βάση την επιλογή.al_error_forcecomplete_to_different_seq{0} δεν μπορεί να μετακινηθεί σε μία δραστηριότητα που βρίσκεται σε διαφορετικό κλάδο ή ακολουθία.competence_desc_lblΠεριγραφήls_learnerURL_lblURL Εκπαιδευόμενου: view_competences_dlgΠροβολή Ικανοτήτωνls_manage_time_lblΧρόνος (Ώρες:Λεπτά)help_btn_tooltipΒοήθειαorder_learners_by_completion_lblΤαξινόμηση ως προς ολοκλήρωσηls_confirm_presence_disabledΤώρα οι Εκπαιδευόμενοι δεν μπορούν να βλέπουν ποιοι είναι είναι σε απευθείας Σύνδεση (on line)ls_status_cmb_removeΔιαγραφήal_yesΝαιal_noΟχιls_win_learners_heading_lblΕκπαιδευόμενοι στην τάξη:ls_learners_lblΕκπαιδευόμενοι: ls_manage_presenceEnabled_lblΕπιτρέπεται οι Εκπαιδευόμενοι να βλέπουν ποιοι είναι σε απευθείας Σύνδεση (on line)ls_seq_status_moderationΔιαχειριστής Εποπτώνcontinue_btnΣυνεχιστείτε mnu_help_helpΒοήθεια Εποπτείαςal_sendΑποστολήccm_monitor_activityΆνοιγμα Εποπτείας Δραστηριότηταςccm_monitor_activityhelpΒοήθεια Δραστηριότητα Εποπτείαςmtab_learnersΕκπαιδευόμενοι mnu_editΕπεξεργασίαls_confirm_presence_enabledΤώρα οι Εκπαιδευόμενοι μπορούν να βλέπουν ποιοι είναι είναι σε απευθείας Σύνδεση (on line)mnu_file_editclassΕπεξεργασία Τάξηςtd_goContribute_btnGols_manage_status_lblΑλλαγή Κατάστ.ls_continue_lblΓεια {1}, δεν έχετε τελειώσει την επεξεργασία του {0}.mnu_go_learnersΕκπαιδευόμενοι ls_win_editclass_titleΕπεξεργασία Τάξηςls_sequence_live_edit_btnΖωντανή Επεξ.ls_manage_editclass_btnΕπεξεργασία Τάξηςal_activity_openContent_invalidΣυγνώμη! Απαιτείται η επιλογή μιας δραστηριότητας πριν επιλέξετε Άνοιγμα/Επεξεργασία από το μενού του δεξιού πλήκτρου.ls_continue_action_lblΚάντε κλικ στο {0} για να συνεχίσει. ls_manage_learnerExpp_lblΕνεργοποίηση Εξαγωγής Φακέλου Εργασιών για τους Εκπαιδευόμενουςls_manage_start_btnΈναρξη Τώραview_competences_in_ld_lblΙκανότητες στο σχεδιασμό μάθησης: {0}ls_manage_start_btn_tooltipΈναρξη μαθήματος τώρα.learners_group_name{0} εκπαιδευόμενοι ls_win_learners_titleΠροβολή Εκπαιδευόμενων ls_seq_status_define_laterΟρίστε Αργότεραls_seq_status_contributionΣυνεισφοράal_confirm_live_editΕίστε έτοιμοι να κάνετε "ζωντανή" επεξεργασία μιας δραστηριότητας ενώ εκπονείται. Θέλετε να συνεχιστείτε;ls_seq_status_perm_gateΆδεια Πύλης ls_win_editclass_learners_lblΕκπαιδευόμενοιlearner_viewJournals_btnΠεριοδικό Κατ.mnu_go_sequenceΑκολουθίαccm_monitor_view_condition_mappingsΠροβολή Συνθηκών Κλάδωνmv_search_index_view_btn_lblΠροβολή Ευρετηρίουbranch_mapping_dlg_branch_col_lblΚλάδοςbranch_mapping_dlg_condition_col_lblΣυνθήκηmnu_viewΠροβολή ls_manage_learners_btnΕκπαιδευόμενοιrefresh_btn_tooltipΞανακατεβάστε τα τελευταία δεδομένα προόδου για τους εκπαιδευόμενους current_act_tooltipΔιπλό κλικ για την ανασκόπηση της προόδου συμβολής του εκπαιδευόμενου στη συμπλήρωση της δραστηριότητας. learner_viewJournals_btn_tooltipΠροβολή όλων των Άρθρων του Περιοδικού με τις Εγγραφές Ημερολογίου τους που δημοσιεύθηκαν από τους Εκπαιδευόμενους.mnu_goΜετάβασηcompleted_act_tooltipΔιπλό κλικ για την ανασκόπηση της συμβολής του εκπαιδευόμενου στην συμπλήρωση της δραστηριότητας.ls_manage_learners_btn_tooltipΔείχνει όλους τους εκπαιδευόμενους που έχουν οριστεί στο μάθημα αυτό.al_doubleclick_todoactivityΛυπούμαστε, εκπαιδευόμενος: {0} δεν έχει προσεγγίσει ακόμη τη δραστηριότητα: {1}.about_popup_trademark_lbl{0} είναι ένα εμπορικό σήμα {του ιδρύματος 0} ({1}).al_error_forcecomplete_invalidactivityΤοποθετήσατε τον εκπαιδευόμενο '{0}' στην τρέχουσα ή στην πλήρη δραστηριότητα '{1}' al_error_forcecomplete_notargetΠαρακαλώ τοπηθετήστε τον εκπαιδευόμενο '{0}' σε μια δραστηριότητα ή τέλος μαθήματος.title_sequencetab_endGateΧρήστες που τελείωσαν.ls_manage_schedule_btn_tooltipΠρογραμματισμός μαθήματος για έναρξη σε μελλοντικό χρόνο.learner_exportPortfolio_btnΕξαγ. Φακ. Εργασιώνmnu_file_startΈναρξηcheck_avail_btnΈλεγχος Διαθεσιμότηταςmsg_bubble_check_action_lblΈλεγχος . . .ls_status_disabled_lblΥπό Αναστολήls_status_cmb_archiveΑρχειοθέτησηls_manage_apply_btnΕφαρμογήls_manage_txtΔιαχείριση Μαθήματοςls_tasks_txtΑπαιτούμενες Εργασίεςal_alertΕιδοποίησηls_seq_status_teacher_branchingΚλάδος επιλεγόμενος από τον Καθηγητήςcompetences_mapped_to_act_lblΣυνδεδεμένες Ικανότητες στο {0}mapped_competences_lblΣυνδεδεμένες Ικανότητεςmsg_no_learners_in_lessonΈνας ή περισσότεροι εκπαιδευόμενοι πρέπει να είναι επιλεγμένοιcompetence_title_lblΤίτλοςlabel.grouping.general.instructions.branchingΔεν μπορείτε να προσθέσετε ή να αφαιρέσετε ομάδες σε αυτή την ομαδοποίηση αφού χρησιμοποιείται για διακλάδωση διότι η προσθήκη και η αφαίρεση των ομάδων θα είχαν επιπτώσεις στην οργάνωση της διακλάδωσης. Μπορείτε μόνο να προσθέσετε/απομακρύνετε τους χρήστες στις υπάρχουσες ομάδες.cv_design_unsaved_live_editΟι αλλαγές που δεν έχουν αποθηκευθεί θα σωθούν αυτόματα. Θέλετε να συνεχίσετε την εισαγωγή/(συν)ένωση;ls_manage_status_cmbΕπιλ. Κατάστασηview_time_chart_btn_tooltipΔείτε ένα διάγραμμα με την πρόοδο τους ως προς το χρόνο των επιλεγμένων εκπαιδευομένων για κάθε δραστηριότηταls_manage_editclass_btn_tooltipΕπεξεργασία λίστας Εκπαιδευόμενων και Εποπτών που έχουν οριστεί για αυτό το μάθημα.about_popup_license_lblΑυτό το πρόγραμμα είναι ελεύθερο λογισμικό μπορείτε να το διανείμετε ή/και να το τροποποιήσετε υπό τους όρους της άδειας GNU όπως δημοσιεύονται από το Ίδρυμα Ελεύθερο Λογισμικού.td_desc_headingΠροχωρημένοι έλεγχοιls_win_learners_heading_class_lblΤάξηls_win_learners_heading_activity_lblΔραστηριότηταlearner_plus_tooltip (0) εκπαιδευόμενοι. Κάντε διπλό κλικ για να δείτε την πλήρη λίστα. view_time_graph_btnΠροβολή Γραφήματος Χρόνουview_time_graph_btn_tooltipΔείτε ένα διάγραμμα των εκπαιδευμένων και της προόδοτ τους στο χρόνο για κάθε δραστηριότηταview_time_chart_btnΠροβολή Διαγράματος Χρόνουsupport_act_titleΔραστηριότητα Υποστήριξηςal_error_forcecomplete_support_actΔεν μπορείτε να υποχρεώσετε ένα εκπαιδευόμενο να ολοκληρώσει μια δραστηριότητα υποστήριξηςls_confirm_presence_im_enabledΤα Άμεσσα Μηνύματα είναι ενεργάls_confirm_presence_im_disabledΤα Άμεσσα Μηνύματα είναι ανενεργάls_manage_presenceImEnabled_lblΕνεργοποίηση Άμεσων Μηνυμάτων \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/en_AU_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} cannot be dropped on an activity that is in a different branch or sequence.mnu_go_sequenceSequenceal_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportdb_datasend_confirmThanks for Sending data to servermnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_fileFilemnu_file_refreshRefreshmnu_file_editclassEdit Classmnu_file_startStartmnu_helpHelpmnu_help_abtAboutperm_act_lblPermissionsched_act_lblSchedulesynch_act_lblSynchronisews_RootRootws_dlg_cancel_buttonCancelws_dlg_location_buttonLocationws_tree_mywspMy Workspacews_tree_orgsOrganisationssys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errormnu_file_scheduleSchedulemnu_file_exitExitmnu_view_learnersLearners...mnu_goGomnu_go_lessonLessonmnu_go_scheduleSchedulemnu_go_learnersLearnersmnu_go_todoTodorefresh_btnRefreshhelp_btnHelpmtab_lessonLessonmtab_seqSequencemtab_learnersLearnersmtab_todoTodols_status_lblStatus:ls_learners_lblLearners:ls_class_lblClass:ls_manage_class_lblClass:ls_manage_start_lblStart:ls_manage_learners_btnView Learnersls_manage_editclass_btnEdit Classls_manage_apply_btnApplyls_manage_schedule_btnSchedulels_manage_date_lblDatels_duration_lblElapsed Duration:ls_manage_status_cmbSelect status:ls_status_cmb_activateActivatels_status_cmb_disableDisablels_status_cmb_enableActivels_status_cmb_archiveArchivels_status_archived_lblArchivedls_status_started_lblStartedls_win_editclass_titleEdit Classls_win_learners_titleView Learnersmnu_viewViewls_win_editclass_save_btnSavels_win_editclass_cancel_btnCancells_win_learners_close_btnClosels_win_editclass_organisation_lblOrganisationls_win_editclass_learners_lblLearnerstd_desc_headingAdvanced Controls:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.&lt;br&gt;&lt;br&gt;This feature is now fully functional.opt_activity_titleOptional Activityls_of_textofls_manage_txtManage Lessonls_tasks_txtRequired Taskstd_goContribute_btnGols_status_disabled_lblDisabledlearner_exportPortfolio_btnExport Portfoliols_status_scheduled_lblScheduledal_error_forcecomplete_invalidactivityYou have dropped the learner '{0}' on either its current or on its completed activity '{1}'al_error_forcecomplete_notargetPlease drop the learner '{0}' on an activity or end of lesson.title_sequencetab_endGateFinished Learners:al_confirm_forcecomplete_toactivityAre you sure you want to force complete learner '{0}' to Activity '{1}'?al_confirm_forcecomplete_tofinishAre you sure you want to force complete learner '{0}' to the end of lesson?ls_manage_learnerExpp_lblEnable export portfolio for learnerls_confirm_expp_enabledExport Portfolio is now enabled for learnersls_confirm_expp_disabledExport Portfolio is now disabled for learnersrefresh_btn_tooltipReload the latest progress data for the learners ls_manage_schedule_btn_tooltipSchedule lesson to start in a future timecurrent_act_tooltipDouble click to review in-progress contribution for learner's current activitycompleted_act_tooltipDouble click to review the contribution for learner's completed activityls_learnerURL_lblLearner URL:ls_manage_status_lblChange Status:al_validation_schstartNo date was selected. Please select a date and time.ls_manage_time_lblTime (Hours : Minutes)ls_manage_learners_btn_tooltipShows all the learners assigned to this lessonls_manage_apply_btn_tooltipChange the status of this lesson based on the drop down selectionls_manage_start_btn_tooltipStart the lesson immediatelygoContribute_btn_tooltipComplete this task nowhelp_btn_tooltipHelpls_manage_start_btnStart Nowls_status_active_lblCreated but not startedal_doubleclick_todoactivitySorry, learner: {0} has not reached the activity: {1}, yet.ls_confirm_presence_enabledNow learners can see who is onlinels_confirm_presence_disabledNow learners cannot see who is onlinelearner_viewJournals_btnJournal Entrieslearner_viewJournals_btn_tooltipView all Journal Entries saved by Learnerslabel.grouping.general.instructions.branchingYou cannot add or remove groups for this grouping as it is used for Branching and adding and removing groups would affect the group to branch setup. You can only add/remove users to the existing groups.mv_search_default_txtEnter search query or page numberbranch_mapping_dlg_conditions_dgd_lblMappingsal_validation_schtimePlease enter a valid time.ccm_monitor_activityOpen Activity Monitorccm_monitor_activityhelpMonitor Activity Helpmnu_help_helpMonitoring Helpsupport_act_titleSupport Activityal_error_forcecomplete_support_actCannot force complete a learner to a support activityfinish_learner_tooltipTo force complete a learner to the end of lesson, drag the learner icon over to this bar and release the iconabout_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} learnersls_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson?ls_remove_confirm_msgYou have selected to Remove this lesson. Removed lessons cannot be retrieved again. Continue?ls_status_cmb_removeRemovels_status_removed_lblRemovedal_yesYesal_noNoal_confirm_live_editYou are about to open Live Edit. Do you wish to continue?al_sendSendcheck_avail_btnCheck Availabilitycontinue_btnContinuels_continue_lblHi {1}, you haven't finished editing <b>{0}</b>.ls_sequence_live_edit_btnLive Editls_sequence_live_edit_btn_tooltipEdit the current design for this lesson.msg_bubble_check_action_lblChecking ...msg_bubble_failed_action_lblUnavailable, Try Again.ls_locked_msg_lblSorry, <b>{0}</b> is currently being edited by {1}.ls_continue_action_lblClick {0} to proceed.mv_search_error_msgPlease enter a search query or page number between 1 and {0}about_popup_copyright_lbl© 2002-2009 {0} Foundation. mv_search_invalid_input_msgThe page number must be between 1 and {0}lbl_num_sequences{0} - Sequencesal_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.lbl_num_activities{0} - Activitiesls_win_learners_heading_activity_lblActivityls_win_editclass_staff_lblMonitorsls_manage_editclass_btn_tooltipEdit the list of learners and monitors assigned to this lessonstaff_group_name{0} monitorsmv_search_not_found_msg{0} was not found.mv_search_current_page_lblPage {0} of {1}mv_search_go_btn_lblGomv_search_index_view_btn_lblIndex Viewclose_mc_tooltipMinimizels_seq_status_moderationModerationls_seq_status_define_laterDefine Laterls_seq_status_perm_gatePermission Gatels_seq_status_synch_gateSynchronise Gatels_seq_status_choose_groupingChoose Groupingls_seq_status_contributionContributionls_seq_status_system_gateSystem Gatels_seq_status_teacher_branchingTeacher Chosen Branchingls_seq_status_not_setNot yet setls_seq_status_sched_gateSchedule Gateapp_chk_langloadThe language data has not been loadedbranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionccm_monitor_view_group_mappingsView Groups to Branchesccm_monitor_view_condition_mappingsView Conditions to Branchesbranch_mapping_dlg_group_col_lblGroupcv_activity_helpURL_undefinedCannot find help page for {0}cv_design_unsaved_live_editUnsaved changes will be automatically saved. Do you wish to continue with insert/merge? ls_win_learners_heading_class_lblClassmapped_competences_lblMapped Competenciescompetences_mapped_to_act_lblCompetencies mapped to {0}competence_title_lblTitlecompetence_desc_lblDescriptionview_competences_dlgView Competenciesview_competences_in_ld_lblCompetencies in learning design: {0}view_act_mapped_competencesView Mapped Competenciesls_manage_presenceEnabled_lblAllow Learners to see who is onlineal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.order_learners_by_completion_lblOrder by completional_confirm_forcecomplete_to_end_of_branching_seqAre you sure you want to force complete learner {0} to the end of this branching sequence?learner_plus_tooltip{0} learners. Double-click to see the full list.ls_win_learners_heading_lblLearners in {0}: {1}class_exportPortfolio_btn_tooltipExport the class portfolio and save it on you computer for future referencelearner_exportPortfolio_btn_tooltipExport this learner portfolio and save it on you computer for future referenceview_time_graph_btnView Time Graphview_time_graph_btn_tooltipView a graph of student progress against time for each activityview_time_chart_btnView Time Chartview_time_chart_btn_tooltipView a chart of the selected student's progress against time for each activitymsg_no_learners_in_lessonOne or more learners must be selectedls_manage_presenceImEnabled_lblEnable Instant Messaging ls_confirm_presence_im_enabledInstant Messaging is now enabledls_confirm_presence_im_disabledInstant Messaging is now disabled \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/en_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} cannot be dropped on an activity that is in a different branch or sequence.mnu_go_sequenceSequenceal_alertAlertal_cancelCancelal_confirmConfirmal_okOKapp_chk_themeloadThe theme data has not been loadedapp_fail_continueThe application cannot continue. Please contact supportdb_datasend_confirmThanks for Sending data to servermnu_editEditmnu_edit_copyCopymnu_edit_cutCutmnu_edit_pastePastemnu_fileFilemnu_file_refreshRefreshmnu_file_editclassEdit Classmnu_file_startStartmnu_helpHelpmnu_help_abtAboutperm_act_lblPermissionsched_act_lblSchedulesynch_act_lblSynchronisews_RootRootws_dlg_cancel_buttonCancelws_dlg_location_buttonLocationws_tree_mywspMy Workspacews_tree_orgsOrganisationssys_error_msg_startA following system error has occurred:sys_error_msg_finishYou may need to re-start LAMS Author to continue. Do you want to save the following information about this error to help fix this problem?sys_errorSystem Errormnu_file_scheduleSchedulemnu_file_exitExitmnu_view_learnersLearners...mnu_goGomnu_go_lessonLessonmnu_go_scheduleSchedulemnu_go_learnersLearnersmnu_go_todoTodorefresh_btnRefreshhelp_btnHelpmtab_lessonLessonmtab_seqSequencemtab_learnersLearnersmtab_todoTodols_status_lblStatus:ls_learners_lblLearners:ls_class_lblClass:ls_manage_class_lblClass:ls_manage_start_lblStart:ls_manage_learners_btnView Learnersls_manage_editclass_btnEdit Classls_manage_apply_btnApplyls_manage_schedule_btnSchedulels_manage_date_lblDatels_duration_lblElapsed Duration:ls_manage_status_cmbSelect status:ls_status_cmb_activateActivatels_status_cmb_disableDisablels_status_cmb_enableActivels_status_cmb_archiveArchivels_status_archived_lblArchivedls_status_started_lblStartedls_win_editclass_titleEdit Classls_win_learners_titleView Learnersmnu_viewViewls_win_editclass_save_btnSavels_win_editclass_cancel_btnCancells_win_learners_close_btnClosels_win_editclass_organisation_lblOrganisationls_win_editclass_learners_lblLearnerstd_desc_headingAdvanced Controls:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.&lt;br&gt;&lt;br&gt;This feature is now fully functional.opt_activity_titleOptional Activityls_of_textofls_manage_txtManage Lessonls_tasks_txtRequired Taskstd_goContribute_btnGols_status_disabled_lblDisabledlearner_exportPortfolio_btnExport Portfoliols_status_scheduled_lblScheduledal_error_forcecomplete_invalidactivityYou have dropped the learner '{0}' on either its current or on its completed activity '{1}'al_error_forcecomplete_notargetPlease drop the learner '{0}' on an activity or end of lesson.title_sequencetab_endGateFinished Learners:al_confirm_forcecomplete_toactivityAre you sure you want to force complete learner '{0}' to Activity '{1}'?al_confirm_forcecomplete_tofinishAre you sure you want to force complete learner '{0}' to the end of lesson?ls_manage_learnerExpp_lblEnable export portfolio for learnerls_confirm_expp_enabledExport Portfolio is now enabled for learnersls_confirm_expp_disabledExport Portfolio is now disabled for learnersrefresh_btn_tooltipReload the latest progress data for the learners ls_manage_schedule_btn_tooltipSchedule lesson to start in a future timecurrent_act_tooltipDouble click to review in-progress contribution for learner's current activitycompleted_act_tooltipDouble click to review the contribution for learner's completed activityls_learnerURL_lblLearner URL:ls_manage_status_lblChange Status:al_validation_schstartNo date was selected. Please select a date and time.ls_manage_time_lblTime (Hours : Minutes)ls_manage_learners_btn_tooltipShows all the learners assigned to this lessonls_manage_apply_btn_tooltipChange the status of this lesson based on the drop down selectionls_manage_start_btn_tooltipStart the lesson immediatelygoContribute_btn_tooltipComplete this task nowhelp_btn_tooltipHelpls_manage_start_btnStart Nowls_status_active_lblCreated but not startedal_doubleclick_todoactivitySorry, learner: {0} has not reached the activity: {1}, yet.ls_confirm_presence_enabledNow learners can see who is onlinels_confirm_presence_disabledNow learners cannot see who is onlinelearner_viewJournals_btnJournal Entrieslearner_viewJournals_btn_tooltipView all Journal Entries saved by Learnerslabel.grouping.general.instructions.branchingYou cannot add or remove groups for this grouping as it is used for Branching and adding and removing groups would affect the group to branch setup. You can only add/remove users to the existing groups.mv_search_default_txtEnter search query or page numberbranch_mapping_dlg_conditions_dgd_lblMappingsal_validation_schtimePlease enter a valid time.ccm_monitor_activityOpen Activity Monitorccm_monitor_activityhelpMonitor Activity Helpmnu_help_helpMonitoring Helpsupport_act_titleSupport Activityal_error_forcecomplete_support_actCannot force complete a learner to a support activityfinish_learner_tooltipTo force complete a learner to the end of lesson, drag the learner icon over to this bar and release the iconabout_popup_title_lblAbout - {0}about_popup_version_lblVersion about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). about_popup_license_lbl<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. <br><br>{0}</p>stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} learnersls_remove_warning_msgWARNING: The lesson is about to be removed. Do you want it keep this lesson?ls_remove_confirm_msgYou have selected to Remove this lesson. Removed lessons cannot be retrieved again. Continue?ls_status_cmb_removeRemovels_status_removed_lblRemovedal_yesYesal_noNoal_confirm_live_editYou are about to open Live Edit. Do you wish to continue?al_sendSendcheck_avail_btnCheck Availabilitycontinue_btnContinuels_continue_lblHi {1}, you haven't finished editing <b>{0}</b>.ls_sequence_live_edit_btnLive Editls_sequence_live_edit_btn_tooltipEdit the current design for this lesson.msg_bubble_check_action_lblChecking ...msg_bubble_failed_action_lblUnavailable, Try Again.ls_locked_msg_lblSorry, <b>{0}</b> is currently being edited by {1}.ls_continue_action_lblClick {0} to proceed.mv_search_error_msgPlease enter a search query or page number between 1 and {0}about_popup_copyright_lbl© 2002-2009 {0} Foundation. mv_search_invalid_input_msgThe page number must be between 1 and {0}lbl_num_sequences{0} - Sequencesal_activity_openContent_invalidSorry! You are required to select the activity before you click on the Open/Edit Activity Content menu item in activity right click menu.lbl_num_activities{0} - Activitiesls_win_learners_heading_activity_lblActivityls_win_editclass_staff_lblMonitorsls_manage_editclass_btn_tooltipEdit the list of learners and monitors assigned to this lessonstaff_group_name{0} monitorsmv_search_not_found_msg{0} was not found.mv_search_current_page_lblPage {0} of {1}mv_search_go_btn_lblGomv_search_index_view_btn_lblIndex Viewclose_mc_tooltipMinimizels_seq_status_moderationModerationls_seq_status_define_laterDefine Laterls_seq_status_perm_gatePermission Gatels_seq_status_synch_gateSynchronise Gatels_seq_status_choose_groupingChoose Groupingls_seq_status_contributionContributionls_seq_status_system_gateSystem Gatels_seq_status_teacher_branchingTeacher Chosen Branchingls_seq_status_not_setNot yet setls_seq_status_sched_gateSchedule Gateapp_chk_langloadThe language data has not been loadedbranch_mapping_dlg_branch_col_lblBranchbranch_mapping_dlg_condition_col_lblConditionccm_monitor_view_group_mappingsView Groups to Branchesccm_monitor_view_condition_mappingsView Conditions to Branchesbranch_mapping_dlg_group_col_lblGroupcv_activity_helpURL_undefinedCannot find help page for {0}cv_design_unsaved_live_editUnsaved changes will be automatically saved. Do you wish to continue with insert/merge? ls_win_learners_heading_class_lblClassmapped_competences_lblMapped Competenciescompetences_mapped_to_act_lblCompetencies mapped to {0}competence_title_lblTitlecompetence_desc_lblDescriptionview_competences_dlgView Competenciesview_competences_in_ld_lblCompetencies in learning design: {0}view_act_mapped_competencesView Mapped Competenciesls_manage_presenceEnabled_lblAllow Learners to see who is onlineal_activity_view_competence_mappings_invalidPlease make sure you have an activity selected before trying to view its competence mappings.order_learners_by_completion_lblOrder by completional_confirm_forcecomplete_to_end_of_branching_seqAre you sure you want to force complete learner {0} to the end of this branching sequence?learner_plus_tooltip{0} learners. Double-click to see the full list.ls_win_learners_heading_lblLearners in {0}: {1}class_exportPortfolio_btn_tooltipExport the class portfolio and save it on you computer for future referencelearner_exportPortfolio_btn_tooltipExport this learner portfolio and save it on you computer for future referenceview_time_graph_btnView Time Graphview_time_graph_btn_tooltipView a graph of student progress against time for each activityview_time_chart_btnView Time Chartview_time_chart_btn_tooltipView a chart of the selected student's progress against time for each activitymsg_no_learners_in_lessonOne or more learners must be selectedls_manage_presenceImEnabled_lblEnable Instant Messaging ls_confirm_presence_im_enabledInstant Messaging is now enabledls_confirm_presence_im_disabledInstant Messaging is now disabled \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/es_ES_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_manage_status_lblCambiar Status:ls_manage_start_btnComenzar Ahorals_status_active_lblCreado pero no iniciadols_confirm_presence_enabledEstudiantes pueden ver quien esta onlineclose_mc_tooltipMinimizaral_alertAtenciónal_cancelCancelaral_confirmConfirmaral_okOKapp_chk_themeloadLa información de plantilla no ha sido cargadaapp_fail_continueLa aplicación no puede continuar. Contacte al administrador de sistema.db_datasend_confirmLa información de fallo ha sido enviada al servidor. Gracias.mnu_editEditarmnu_edit_copyCopiarmnu_edit_cutCortarmnu_edit_pastePegarmnu_fileArchivomnu_file_refreshRefrescarmnu_file_editclassEditar Clasemnu_file_startComenzarmnu_helpAyudamnu_help_abtAcerca deperm_act_lblPermisosched_act_lblTiempows_RootRaízws_dlg_cancel_buttonCancelarws_dlg_location_buttonLocalizaciónws_tree_mywspMi Espacio de Trabajows_tree_orgsOrganizacionessys_error_msg_startHa ocurrido un error de sistema.sys_error_msg_finishTiene que recomenzar sys_errorError de sistemamnu_file_scheduleTiempomnu_file_exitSalirmnu_view_learnersEstudiantes...mnu_goIrmnu_go_lessonLecciónmnu_go_scheduleTiempomnu_go_learnersEstudiantesmnu_go_todoPara hacerrefresh_btnRefrescarhelp_btnAyudamtab_lessonLecciónmtab_learnersEstudiantesmtab_todoPara hacerls_status_lblStatusls_learners_lblEstudiantesls_class_lblClasels_manage_class_lblClasels_manage_start_lblComenzarls_manage_learners_btnVer Estudiantesls_manage_editclass_btnEditar Clasels_manage_apply_btnAplicar cambiosls_manage_schedule_btnTiempols_manage_date_lblFechals_duration_lblDuración:ls_manage_status_cmbSeleccione statusls_status_cmb_activateActivarls_status_cmb_disableDeshabilitarls_status_cmb_enableActivols_status_cmb_archiveArchivarls_status_disabled_lblSuspendidols_status_archived_lblArchivadols_status_started_lblComenzadols_win_editclass_titleEditar Clasels_win_learners_titleVer Estudiantesmnu_viewVerls_win_editclass_save_btnGuardarls_win_editclass_cancel_btnCancelarls_win_learners_close_btnCerrarls_win_editclass_organisation_lblOrganizaciónls_win_editclass_staff_lblTutoresls_win_editclass_learners_lblEstudiantesls_win_learners_heading_lblEstudiantes en Clasetd_desc_headingControles avanzadosopt_activity_titleActividades Opcionaleslbl_num_activitiesSubactividadesls_of_textdels_manage_txtAdministrar lecciónls_tasks_txtTareas Requeridastd_goContribute_btnIrmnu_go_sequenceSecuenciaal_confirm_forcecomplete_toactivity¿Está seguro que desea mover al estudiante '{0}' a la Actividad '{1}'?synch_act_lblSincronizarccm_monitor_activityAbrir Seguimiento para Actividadlearner_exportPortfolio_btnExportar Portfolioal_error_forcecomplete_invalidactivitySe ha tratado de mover el estudiante '{0}' a la misma actividad o a otra actividad que ya ha sido completada '{1}'.al_confirm_forcecomplete_tofinish¿Esta seguro de mover el estudiante '{0}' hasta el final de la lección?al_error_forcecomplete_notargetTiene que mover al estudiante '{0}' a una actividad o a el final de la lección.title_sequencetab_endGateEstudiantes que han terminado la lección:ls_status_scheduled_lblProgramadaal_confirm_forcecomplete_to_end_of_branching_seq¿Esta seguro que desea adelantar al estudiante {0} hasta el final de esta rama?al_error_forcecomplete_to_different_seq{0} no puede ser movido a una actividad que no pertenece a la secuencia a la que está asignado.lbl_num_sequences{0} - Secuenciasls_manage_learnerExpp_lblActivar Portfolio Export para estudiantesls_confirm_expp_enabledPortfolio Export esta activo para estudiantesls_confirm_expp_disabledPortfolio Export esta desactivado para estudianteshelp_btn_tooltipAyudarefresh_btn_tooltipActualizar la información de estudiantesls_manage_apply_btn_tooltipCambiar el estado de esta leccióncompleted_act_tooltipDoble click para ver la contribución de este estudiante a esta actividadls_learnerURL_lblAcceso directo URL:support_act_titleActividades de Soporteal_validation_schstartNo se ha seleccionado fecha. Por favor seleccione fechar y hora para continuar.ls_manage_time_lblHora (Horas : Minutos)goContribute_btn_tooltipCompletar esta tarea ahorals_manage_editclass_btn_tooltipEditar la lista de estudiantes para esta lecciónls_manage_learners_btn_tooltipLista de estudiantes registrados en esta lecciónclass_exportPortfolio_btn_tooltipExportar el portfolio de toda la claselearner_exportPortfolio_btn_tooltipExportar el portfolio para este estudiantels_manage_start_btn_tooltipComenzar esta lección inmediatamentels_manage_schedule_btn_tooltipAgendar el comienzo de esta leccióncurrent_act_tooltipDoble click para ver el progreso de este estudiante en esta actividadal_error_forcecomplete_support_actNo se puede poner un estudiante en una actividad de soporteal_doubleclick_todoactivity{0} no ha alcanzado actividad {1} todavíalearner_viewJournals_btnAnotacioneslearner_viewJournals_btn_tooltipVer todas las anotaciones de los estudiantesal_yesSimv_search_default_txtBuscar o páginaal_noNoal_validation_schtimeLa hora entrada no es válida.finish_learner_tooltipPara mover a un estudiante hasta el final de la lección, seleccione al estudiante y arrastre hasta esta barra. check_avail_btnVerificar disponibilidadcontinue_btnContinuarls_continue_lblHola {1}, usted no ha terminado de editar esta lección {0}.ls_sequence_live_edit_btnEdición en Vivols_sequence_live_edit_btn_tooltipEditar esta leccionmsg_bubble_check_action_lblValidando ...msg_bubble_failed_action_lblNo esta disponible, Pruebe nuevamentels_locked_msg_lblAtención: {0} esta siendo editada por {1}. al_confirm_live_editUsted esta apunto de Editar esta lección. ¿Desea continuar?al_sendEnviarabout_popup_title_lblAcerca de {0}about_popup_version_lblVersiónabout_popup_trademark_lbl{0} es marca registrada de {0} Foundation ( {1} ). about_popup_license_lblEste programa es de software libre. Usted puede distribuirlo y/o modificarlo bajo los terminos de la GNU General Public License versión 2 como está publicada por la Free Software Foudantion. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orglearners_group_name{0} estudiantesstaff_group_name{0} tutoresls_remove_confirm_msgHa seleccionado un diseño para borrar. Note que no puede recuperar diseños despues de esta acción. ¿Desea continuar?ls_status_cmb_removeBorrarls_status_removed_lblBorradols_remove_warning_msgAtención: Esta lección esta por ser borrada. ¿Desea mantener la lección?ls_continue_action_lblPresione {0} para continuartd_desc_textEl uso de esta pestaña no es requerido para completar esta lección. Vea la página de informacion para más detalles. mtab_seqSecuenciaal_activity_view_competence_mappings_invalidAsegúrese que tiene una actividad seleccionada para poder ver sus competenciasal_activity_openContent_invalidAtención: Usted debe seleccionar una actividad antes de elegir la opción de Abrir o Editar Contenido.mv_search_error_msgIngrese un vocablo a buscar o el número de página entre 1 y {0}mv_search_invalid_input_msgEl número de página debe ser entre 1 y {0}mv_search_not_found_msgNo se encontro {0}mv_search_current_page_lblPágina {0} de {1}mv_search_go_btn_lblIrmv_search_index_view_btn_lblVolver al índiceabout_popup_copyright_lbl© 2002-2009 Fundación {0}. ccm_monitor_activityhelpAyuda para Seguimiento de Actividadmnu_help_helpAyuda de Seguimientols_seq_status_moderationModeraciónls_seq_status_define_laterDefinir en Seguimientols_seq_status_perm_gatePuerta de permisols_seq_status_synch_gatePuerta de Sincronizaciónls_seq_status_choose_groupingAsignar gruposls_seq_status_contributionContribucciónls_seq_status_system_gatePuerta de sistemals_seq_status_teacher_branchingAsignación de estudiantes a ramasls_seq_status_not_setNo ha sido asignado todavíals_seq_status_sched_gatePuerta por tiempoapp_chk_langloadLa información de lenguaje no ha sido cargadabranch_mapping_dlg_conditions_dgd_lblRamas y Condicionesbranch_mapping_dlg_branch_col_lblRamabranch_mapping_dlg_condition_col_lblCondiciónccm_monitor_view_group_mappingsMostrar Grupos y Ramasccm_monitor_view_condition_mappingsMostrar Condiciones y Ramasbranch_mapping_dlg_group_col_lblGruposcv_activity_helpURL_undefinedNo se puede encontrar la página de {0}cv_design_unsaved_live_editLos cambios relizados hasta ahora deben ser guardados. ¿Desea continuar con Insertar?label.grouping.general.instructions.branchingNo se puede remover o añadir grupos porque están siendo usados para una o más actividades de ramificación. Se puede solo añadir o remover usuarios a grupos pre-existentes.mapped_competences_lblConección de Objectivos y Actividadescompetences_mapped_to_act_lblObjetivos conectados a {0} competence_title_lblTítulocompetence_desc_lblDescripción view_competences_dlgVer Objetivosview_competences_in_ld_lblObjetivos en diseño: {0} view_act_mapped_competencesVer conección de objetivos y actividadesls_manage_presenceEnabled_lblPermitir ver que estudiantes estan online order_learners_by_completion_lblOrderar por completiciónls_confirm_presence_disabledEstudiantes no pueden ver quien esta onlinels_win_learners_heading_class_lblClasels_win_learners_heading_activity_lblActividadlearner_plus_tooltip{0} alumnos. Pulse dos veces para ver la lista completa.view_time_graph_btnVer gráfico de tiemposview_time_graph_btn_tooltipVer gráfico del tiempo que le ha tomado a cada estudiante realizar cada actividad.view_time_chart_btnVer gráfico de tortaview_time_chart_btn_tooltipVer gráfico que muestra el tiempo de un usuario en particular para cada actividad.msg_no_learners_in_lessonAl menos un estudiante debe ser seleccionadols_manage_presenceImEnabled_lblActivar mensajes instantaneosls_confirm_presence_im_enabledSe han activado mensajes instantaneosls_confirm_presence_im_disabledSe han desactivado mensajes instantaneos \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/fr_FR_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3support_act_titleActivité de soutienal_error_forcecomplete_to_different_seq{0} ne peut pas être ajouté à une activité qui se situe dans une branche ou une séquence différente. al_error_forcecomplete_invalidactivityVous avez sorti l'apprenant '{0}' de son activité courante ou de son activité terminée '{1}'al_error_forcecomplete_notargetVeuillez sortir l'apprenant '{0}' sur une activité ou à la fin de la leçon.al_confirm_forcecomplete_toactivityVoulez-vous vraiment terminer de force l'activité '{1}' pour l'apprenant '{0}'?al_activity_openContent_invalidDésolé! Vous essayez de sélectionner l'activité avant d'avoir cliqué sur ouvrir/modifier un contenu d'activité dans le menu (clic droit pour l'ouvrir).ccm_monitor_activityOuvrir l'outil de suivi pour les activitésccm_monitor_activityhelpAide pour l'outil de suivils_win_learners_heading_activity_lblActivitéal_doubleclick_todoactivityDésolé, l'étudiant: {0} n'a pas encore atteint l'activité: {1}.al_error_forcecomplete_support_actImpossible de forcer qu'un apprenant finisse une activité de soutienapp_fail_continueL'application ne peut pas continuer. Veuillez contacter votre contact locallearner_viewJournals_btn_tooltipAfficher toutes les entrées du calepin enregistrés par les apprenantsccm_monitor_view_group_mappingsAfficher groupes vers branchescurrent_act_tooltipDouble-cliquer pour voir l'avancement de la contribution de l'apprenant dans l'activité en coursal_activity_view_competence_mappings_invalidVeuillez vous assurer que vous avez sélectionné une activité avant d'essayer d'afficher le mappage des compétences.mnu_viewAfficherls_win_learners_titleAfficher les apprenantsls_manage_learners_btnAfficher les apprenantscompleted_act_tooltipDouble-cliqueer pour afficher la contribution de l'apprenant pour l'activité terminéeview_time_graph_btnAfficher graphique chronologiquemv_search_index_view_btn_lblRetourner à l'indexccm_monitor_view_condition_mappingsAfficher conditions vers branchesview_time_chart_btn_tooltipAfficher un graphique chronologique de progression pour l'apprenant choisi pour chaque activité.view_time_graph_btn_tooltipAfficher un graphique chronologique de progression de l'apprenant pour chaque activité.view_act_mapped_competencesAfficherr les compétences mises en correspondanceview_competences_dlgAfficher les compétencesview_time_chart_btnAfficher graphique chronologiqueal_sendEnvoyermsg_no_learners_in_lessonUn ou plusieurs apprenants doivent être sélectionnésls_manage_presenceImEnabled_lblActiver la messagerie instantanée ls_confirm_presence_im_enabledLa messagerie instantanée est maintenant activéels_confirm_presence_im_disabledLa messagerie instantanée est maintenant desactivéeabout_popup_title_lblAu sujet:al_confirm_live_editVous êtes sur le point d'ouvrir l'édition en direct. Voulez-vous continuer?about_popup_version_lblVersionabout_popup_copyright_lbl2002-2009 {0} Foundation.about_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ).about_popup_license_lblCe programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier, selon les termes de la version 2 de la licence générale publique GNU tel qu'elle est publiée par la "Free Software Foundation".stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgls_continue_action_lblCliquez sur {0} pour effectuer.lbl_num_sequences{0} - séquencesmv_search_not_found_msg{0} n'a pas été trouvé.mv_search_current_page_lblPage {0} sur {1}mv_search_go_btn_lblAller àclose_mc_tooltipRéduireal_confirm_forcecomplete_to_end_of_branching_seqEtes-vous sûr de vouloir forcer l'apprenant {0} de compléter jusqu'à la fin de cette séquence?ls_seq_status_moderationModérationls_seq_status_define_laterDéfinir plus tardls_seq_status_perm_gatePermission Portels_seq_status_synch_gateSynchroniser portels_seq_status_choose_groupingChoisir regroupementls_seq_status_contributionContributionls_seq_status_system_gatePorte systèmels_seq_status_not_setPas encore définils_seq_status_sched_gatePorte horairebranch_mapping_dlg_conditions_dgd_lblMise en correspondance (mappage)branch_mapping_dlg_branch_col_lblBranchebranch_mapping_dlg_condition_col_lblConditionbranch_mapping_dlg_group_col_lblGroupemnu_go_sequenceSéquencecv_activity_helpURL_undefinedLa page d'aide pour {0} est introuvablelabel.grouping.general.instructions.branchingVous ne pouvez pas ajouter ou enlever des groupes de ce regroupement puisque ce dernier est utilisé pour des branchements. Vous pouvez seulement ajouter/enlever des utilisateurs pour des groupes qui existentview_competences_in_ld_lblCompétences pour le design d'apprentissage: {0}mapped_competences_lblCompétences mises en correspondancecompetences_mapped_to_act_lblCompétences mises en correspondance avec {0}competence_title_lblTitrecompetence_desc_lblDescriptionorder_learners_by_completion_lblOrdre d'achèvementls_manage_presenceEnabled_lblPermettre aux apprenants de voir qui est en lignels_confirm_presence_enabledLes apprenants peuvent voir qui est en lignels_confirm_presence_disabledLes apprenants ne peuvent pas voir qui est en lignels_win_learners_heading_class_lblClasselearner_plus_tooltip{0} apprenants. Double-cliquez pour voir la liste complètetd_desc_headingContrôles avancéstd_desc_textL'utilisation de cet onglet "A faire" n'est pas indispensable pour finir la sequence. Voir la page d'aide pour plus d'informations. <br><br> Cette fonctionnalité est maintenant disponible.lbl_num_activities{0} - activités ls_of_textdels_manage_txtGérer la leçonls_tasks_txtTâches obligatoirestd_goContribute_btnAllerlearner_exportPortfolio_btnExporter le Portfoliols_status_scheduled_lblPlanifiéal_confirm_forcecomplete_tofinishVoulez-vous vraiment terminer de force la leçon pour l'apprenant '{0}'?title_sequencetab_endGateApprenants ayant terminé:goContribute_btn_tooltipTerminer cette tâche maintenanthelp_btn_tooltipAiderefresh_btn_tooltipRecharger les dernières données sur la progression des apprenantsls_manage_editclass_btn_tooltipModifier la liste des apprenants et enseignants assignés à cette leçonls_manage_learners_btn_tooltipMontrer tous les apprenants assignés à cette leçonls_manage_apply_btn_tooltipChanger l'état de cette leçon selon le menu déroulantls_manage_start_btn_tooltipCommencer la leçon immédiatementls_manage_schedule_btn_tooltipPlanifier le moment du début de la leçon al_validation_schstartAucune date n'a été sélectionnée. Veuillez choisir une date et une heure.ls_manage_time_lblTemps (Heures : Minutes)al_validation_schtimeVeuillez entrer une heure valide.mtab_learnersApprenantsfinish_learner_tooltipPour forcer un apprenant à terminer la leçon, glissez l'icône de l'apprenant par dessus cette barre et relâchez-làlearner_viewJournals_btnEntrées du calepinls_learnerURL_lblURL de l'apprenant:ls_manage_learnerExpp_lblAutorise l'exportation de portfolio pour l'apprenantls_confirm_expp_enabledL'exportation de portfolio est maintenant autorisée pour les étudiantsls_confirm_expp_disabledL'exporation de portfolio est maintenant désactivée pour les étudiantsls_remove_confirm_msgVous avez choisi de supprimer cette leçon, les leçons supprimées le sont définitivement, souhaitez vous continuer?ls_status_cmb_removeSupprimerls_status_removed_lblsuppriméeal_yesOuial_noNonls_remove_warning_msgATTENTION : Cette leçon va être supprimée, souhaitez vous la conserver?learners_group_name{0} apprenant(s)staff_group_name{0} moniteurscheck_avail_btnVérifier la disponibilitécontinue_btnContinuerls_continue_lblBonjour {1}, vous n'avez pas fini d'éditer {0}.ls_sequence_live_edit_btnEdition en directls_sequence_live_edit_btn_tooltipEditer le design actuel de cette leçon.msg_bubble_check_action_lblVérification...msg_bubble_failed_action_lblIndisponible, essayer encore.ls_locked_msg_lblDésolé, {0} est en cours d'édition par {1}.opt_activity_titleActivité en optionapp_chk_langloadLes données de langue n'ont pas été chargéesapp_chk_themeloadLes données du thème n'ont pas été chargéesdb_datasend_confirmMerci pour votre envoi de données au serveurmnu_editModifiermnu_edit_copyCopiermnu_edit_cutCoupermnu_edit_pasteCollermnu_file_refreshRafraîchirmnu_file_editclassModifier la classemnu_file_startCommencermnu_helpAidemnu_help_abtA propos deperm_act_lblPermissionsched_act_lblHorairesynch_act_lblSynchroniserws_RootRacinews_dlg_cancel_buttonAbandonnerws_dlg_location_buttonLieuws_tree_mywspMon Espace de travailws_tree_orgsInstitutionssys_error_msg_startL'erreur système suivante s'est produite:sys_errorErreur systèmemnu_file_scheduleHorairemnu_file_exitSortirmnu_view_learnersApprenants...mnu_goAllermnu_go_lessonLeçonmnu_go_scheduleHorairemnu_go_learnersApprenantsmnu_go_todoA fairerefresh_btnRafraîchirhelp_btnAidemtab_lessonLeçonmtab_seqSéquencemtab_todoA fairels_status_lblEtat:ls_learners_lblApprenants:ls_class_lblClasse:ls_manage_class_lblClasse:ls_manage_status_lblEtat du changement:ls_manage_start_lblDébut:ls_manage_editclass_btnModifier la classels_manage_apply_btnAppliquerls_manage_schedule_btnHorairels_manage_start_btnCommencer maintenantls_manage_date_lblDatels_duration_lblDurée écoulée:ls_manage_status_cmbChoisir l'état:ls_status_cmb_activateActiverls_status_cmb_disableDésactiverls_status_cmb_enableActifls_status_cmb_archiveArchivels_status_active_lblCréée mais inactivels_status_disabled_lblSuspenduls_status_archived_lblArchivéls_status_started_lblCommencéls_win_editclass_titleModifier la classels_win_editclass_cancel_btnAbandonnerls_win_learners_close_btnFermerls_win_editclass_organisation_lblInstitutionls_win_editclass_staff_lblMoniteursls_win_editclass_learners_lblApprenantsls_win_learners_heading_lblApprenants dans {0}:{1}al_alertAlerteal_cancelAbandonneral_confirmConfirmeral_okOKls_seq_status_teacher_branchingBranchement choisi par l'enseignantmnu_help_helpAide pour la supervisionmv_search_default_txtEntrer la requête de recherche ou le numéro de pagemv_search_invalid_input_msgLe numéro de page doit être compris entre 1 et {0}mv_search_error_msgEntrer la requête de recherche ou un numéro de page compris entre 1 et {0}mnu_fileFichiercv_design_unsaved_live_editLes changement pas enregistrés vont être enregistrés automatiquement. Voulez-vous continuer avec insertion/fusionsys_error_msg_finishVous devez peut-être redémarrer LAMS Auteur pour continuer. Voulez-vous sauvegarder l'information suivante à propose de cette erreur pour aide à régler le problème?ls_win_editclass_save_btnEnregistrerclass_exportPortfolio_btn_tooltipExporter le portfolio de la classe sur votre ordinateur pour usage ultérieurlearner_exportPortfolio_btn_tooltipExporter le portfolio de cet apprenant et le sauvegarder sur votre ordinateur pour usage ultérieur \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/hu_HU_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_confirm_forcecomplete_tofinishBiztos benne, hogy kényszeríti a '{0}' tanulót a lecke befejezésére?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_status_archived_lblArchíváltCurrent status description if archviedls_status_started_lblElindítottCurrent status description if started (enabled)ls_win_editclass_titleOsztály szerkesztéseEdit class window titlels_win_learners_titleTanulókView learners window titlemnu_viewNézetMenu bar Viewls_win_editclass_save_btnMentésSave button on Edit Class popupls_win_editclass_cancel_btnMégseCancel button on Edit Class popupls_win_learners_close_btnBezárásClose button on View Learners popupls_win_editclass_organisation_lblSzervezésHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblSzemélyekHeading for Staff list on Edit Class popupls_win_editclass_learners_lblTanulókHeading for Learners list on the Edit Class popupls_win_learners_heading_lblAz osztály tanulóiHeading on View Learners window panel.td_desc_headingSpeciális szabályokTodo tab description headinglbl_num_activitiesalárendelt tevékenységekNumber of child activities for Complex activity shown on canvas.ls_of_text:i.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLecke menedzseléseHeading for Management section of Lesson Tablearner_exportPortfolio_btnPortfólió exportálásaLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_sendKüldésSend button label on the system error dialogccm_monitor_activityTevékenység Monitor megnyitásaLabel for Custom Context Monitor Activityal_validation_schstartNem választott dátumot. Kérem, válasszon egy dátumot és időt!Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblIdő (óra : perc)Time fields title - Lesson details (manage section)ls_status_scheduled_lblÜtemezettLesson status option - Scheduled (Not Started)help_btn_tooltipSúgótool tip message for help button in toolbarls_manage_editclass_btn_tooltipA leckéhez kapcsolódó tanulók és munkatársak listájának szerkesztésetool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMegmutatja a leckéhez kapcsolódó összes tanulóttool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_start_btn_tooltipAzonnal elindítja a leckéttool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonal_validation_schtimeKérem, adja meg a helyes időt!Alert message when user enters an invalid time for schedule startlearner_viewJournals_btnNapló bejegyzésekLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learners_group_name{0} tanulóGroup name for the class's learners group.ls_status_cmb_removeTörlésLesson status option - Removels_status_removed_lblTörölveCurrent status description if deleted (removed) lesson.al_yesIgenYes on the alert dialogal_noNem'No' on the alert dialogcontinue_btnTovábbContinue button labelmsg_bubble_check_action_lblEllenőrzés ...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblPróbálja újra!Label displayed when check failed i.e. lesson is still locked.about_popup_version_lblVerzióLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} a {0} Alapítvány védjegye ( {1} )Label displaying the trademark statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.org URL address for the application stream.al_error_forcecomplete_to_different_seqNem küldheti a {0} tanulót olyan tevékenységhez, amely másik elágazásban vagy folyamatban van.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequenceal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseTo Confirm title for LFErroral_confirmMegerősítésTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadA nyelvi adatok nem töltődtek be.message for unsuccessful language loadingmnu_editSzerkesztésMenu bar Editmnu_edit_copyMásolásMenu bar Edit &gt; Copymnu_edit_cutKivágásMenu bar Edit &gt; Cutmnu_edit_pasteBeillesztésMenu bar Edit &gt; Pastemnu_fileFájlMenu bar Filemnu_file_refreshFrissítésMenu bar Refreshmnu_file_editclassOsztály szerkesztéseMenu bar Edit Classmnu_file_startKezdésMenu bar Startmnu_helpSúgóMenu bar Helpmnu_help_abtNévjegyMenu bar Aboutsched_act_lblÜtemtervLabel for schedule gate activitysynch_act_lblSzinkronizálásUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonMégse2ws_dlg_location_buttonElérési útWorkspace dialogue Location btn labelws_tree_mywspAz én munkaterületemThe root level of the treews_tree_orgsSzervezésShown in the top level of the tree in the workspacels_manage_learners_btnTanulók megjelenítéseView learners button - Lesson details (manage section)sys_error_msg_startA következő rendszerhiba történt:Common System error message starting linesys_errorRendszerhibaSystem Error elert window titlemnu_file_scheduleÜtemezésMenu bar Schedulemnu_file_exitKilépésMenu bar Exitmnu_view_learnersTanulókMenu bar Learnersmnu_go_lessonLeckeMenu bar Go to Lesson Tabmnu_go_scheduleÜtemezésMenu bar Go to Schedule Tabmnu_go_learnersTanulókMenu bar Go to Learners Tabmnu_help_helpSúgóMenu bar Help itemrefresh_btnFrissítésRefresh buttonhelp_btnSúgóHelp buttonmtab_lessonLeckeMonitor Lesson details tabmtab_learnersTanulókMonitor Learners tabls_status_lblÁllapot:Status label - Lesson detailsls_learners_lblTanulók:Learner label - Lesson detailsls_class_lblOsztály:Class label - Lesson detailsls_manage_class_lblOsztály:Class managing label - Lesson detailsls_manage_status_lblÁllapot változása:Status managing label - Lesson detailsls_manage_start_lblKezdés:Start managing label - Lesson detailsls_manage_editclass_btnOsztály szerkesztéseEdit class button - Lesson details (manage section)ls_manage_apply_btnAlkalmazStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblPortfolió exportálásának engedélyezése tanulók számáraLabel for Enable export portfolio for Learnerls_confirm_expp_enabledA portfolió exportálása engedélyezett ranulók számára.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledA portfolió exportálása nem engedélyezett ranulók számára.Confirmation message on disabling export portfolio for learnersls_manage_schedule_btnÜtemezésSchedule start button - Lesson details (manage section)ls_manage_start_btnKezdés mostStart immediately button - Lesson details (manage section)ls_manage_date_lblDátumDate field title - Lesson details (manage section)ls_duration_lblEltelt idő:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbÁllapotválasztás:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktíválásLesson status option - Activatels_status_cmb_disableLetiltvaLesson status option - Disable (suspend)ls_status_cmb_enableAktívLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiveLesson status option - Archivels_status_active_lblAktívCurrent status description if active (enabled)ls_status_disabled_lblFelfüggesztettCurrent status description if suspended (disabled)sys_error_msg_finishA folytatáshoz újra kellene indítania a LAMS Szerzőt. Szeretné menteni az alábbi információt erről a hibáról a probléma kijavításának érdekében?Common System error message finish paragraphtitle_sequencetab_endGateAz elkészült tanulókTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipAzonnal befejezi a feladatottool tip message for go button in required tasks list in lesson tabrefresh_btn_tooltipÚjratölti a legfrissebb adatokat a tanuló előmenetelérőltool tip message for the refresh buttonmv_search_default_txtAdjon meg keresőfeltételt vagy oldalszámot!The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_not_found_msgA {0} nem találhatóThis message appears when the search does not find any learners whose names contain the search parameter.ls_tasks_txtKötelező feladatokHeading for Required Tasks (todo section of Lesson tab)ccm_monitor_activityhelpA Figyelő tevékenység súgójaLabel for Custom Context Monitor Activity Helpal_confirm_forcecomplete_toactivityBiztos benne, hogy kényszeríti a '{0}' tanulót a '{1}' tevékenység befejezésére?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedls_manage_schedule_btn_tooltipEgy későbbi időpontban történő indításra ütemezi a leckéttool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timeabout_popup_copyright_lbl© 2002-2008 {0} Alapítvány.Label displaying copyright statement in About dialog.ls_seq_status_sched_gateÜtemező kapuA type of Gate Activity where progress depends on time (start time and/or end time)app_chk_themeloadA téma adatai nem töltőftek bemessage for unsuccessful theme loadingapp_fail_continueAz alkalmazást nem folytatható. Kérem, keresse fel a technikai segítséget!message if application cannot continue due to any errorperm_act_lblTiltásLabel for permission gate activitymnu_goIndításMenu bar Gomnu_go_todoElvégzendőMenu bar Todomtab_seqJelenetMonitor Sequence tabmtab_todoElvégzendőMonitor Todo tabopt_activity_titleVálasztható tevékenységTitle for Optional Activity on canvas (monitoring)td_goContribute_btnIndításGo button on contribute entry itemls_learnerURL_lblA tanuló URL-je:Learner URL:mv_search_current_page_lblOldal: {0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblIndításIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.ls_seq_status_perm_gateTiltó kapuA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_system_gateRendszer-kapuA System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_not_setMég nincs beállítvaThe value of the sequence's status is not setdb_datasend_confirmKöszönöm, hogy feltöltötte az adatokat a szerverre.Message when user sucessfully dumps data to the serverls_remove_confirm_msgA lecke eltávolítását választotta. Az eltávolított leckéket nem hozhatja többé vissza. Folytatja?remove confirm msgls_remove_warning_msgFigyelem: Eltávolítani készül ezt a leckét. Meg szeretné tartani inkább?Message for the alert dialog which appears following confirmation dialog for removing a lesson.check_avail_btnA tevékenység ellenőrzéseCheck Availability button labells_continue_lblSzia {1}! Nem fejezte be a {0} szerkesztését.Continue message labells_locked_msg_lblSajnálom, ezt: {0} éppen {1} szerkeszti.Warning message on Monitor locked screen.about_popup_title_lblTájékoztató - {0}Title for the About Pop-up window.about_popup_license_lblEz a program szabad szoftver. Továbbadhatja, és/vagy módosíthatja a Free Software Foundation (Szabad Szoftver Alapítvány) 2-es verziójú GNU General Public Licence (Általános Nyilvános Licensz) feltételei mellett.Label displaying the license statement in the About dialog.ls_seq_status_contributionKözreműködésAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingA tanár által választott elágazásA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_synch_gateSzinkronizáló kapuA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_moderationModerálásDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_choose_groupingCsoportosítás választásaAllows the Teacher to add the learners to chosen groupstd_desc_textAz Elvégzendő fül használata nem szükséges a folyamat befejezéséhez. További információkért nézze meg a súgót! <br><br>Ez a lehetőség már teljesen működőképes.Todo tab descriptionls_manage_apply_btn_tooltipMegváltoztatja a lecke állapotát, attól függően, mit választunk legördülő menüből. tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportálja az osztláy portfólióját, és elmenti az ön gépére, egy későbbi tájékoztatás céljáratool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportálja ennek a tanulónak a portfólióját, és elmenti az ön gépére, egy későbbi tájékoztatás céljáratool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referenceal_doubleclick_todoactivitySajnálom, a {0} tanuló még nem ért el a(z) {1} tevékenységhez.alert message when user double click on the todo activity in the sequence under learner tabstaff_group_name{0} megfigyelésGroup name for the class's staff group.ls_sequence_live_edit_btnKözvetlen szerkesztésLive Edit buttonls_sequence_live_edit_btn_tooltipSzerkeszti ennek a leckének a jelenlegi tervét.Tool tip message for Live Edit buttonal_confirm_live_editA Közvetlen Szerkesztést készül megnyitni.Folytassuk?Confirm warning (dialog) message displayed when opening Live Edit.ls_continue_action_lblKattintson erre: {0} a folytatáshoz!Action label displayed when a user can proceed to Live Edit.close_mc_tooltipLekicsinyítTooltip message for close button on Branching canvas.lbl_num_sequences{0} - Folyamat(ok)Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidSajnálom, választania kell egy tevékenységet, mielőtt rákattint az alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgKérem, adja meg a keresési feltételt, vagy egy 1 és {0} közötti oldalszámot!This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgAz oldalszámnak 1 és {0} között kell lennieThis error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_index_view_btn_lblIndex nézetWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.current_act_tooltipDupla kattintással áttekintheti a folyamatban lévő közreműködéseket a tanulók jelenlegi tevékenységéheztool tip message for current activity iconcompleted_act_tooltipDupla kattintással áttekintheti a folyamatban lévő közreműködéseket a tanulók befejezett tevékenységéheztool tip message for completed activity iconfinish_learner_tooltipHa a befejezéshez a lecke végére akarja kényszeríteni a tanulót, húzza a tanuló ikonját erre a sávra, majd eressze el!Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btn_tooltipMegjeleníti a tanulók átal mentett összes naplótételttool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_confirm_forcecomplete_to_end_of_branching_seqBiztos benne, hogy kényszeríteni akarja a {0} tanulót, hogy az elágazás végén befejezze ezt a folyamatot?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_seq_status_define_laterKésőbb definiálOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authoral_error_forcecomplete_invalidactivityA '{0}' tanulót egy folyamatban lévő, vagy a már befejezett '{1}' tevékenységhez küldteError message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_notargetKérem, küldje a '{0}' tanulót egy tevékenységhez, vagy a lecke végére!Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasbranch_mapping_dlg_conditions_dgd_lblLeképezésekHeading label for Mapping datagrid.branch_mapping_dlg_branch_col_lblElágazásColumn heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lblFeltételColumn heading for showing condition description of the mapping.ccm_monitor_view_group_mappingsMegjeleníti az elágazásokhoz rendelt csoportokatLabel for Custom Context View Group Mappingsccm_monitor_view_condition_mappingsMegjeleníti az elágazásokhoz rendelt feltételeketLabel for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lblCsoportColumn heading for showing group name of the mapping.mnu_go_sequenceJelenetMenu bar Go to Sequence Tabcv_activity_helpURL_undefinedNem található súgó ehhez: {0}Alert message when a tool activity has no help url defined.cv_design_unsaved_live_editA nem mentett változásokat automatikusan menteni fogjuk. Folytatni szeretné a beszúrást/összefűzést?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/it_IT_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3refresh_btn_tooltipRicarica gli ultimi dati sulla progressione degli studentitool tip message for the refresh buttonls_seq_status_define_laterDefinisci in seguitoOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_choose_groupingScegli i gruppiAllows the Teacher to add the learners to chosen groupsls_seq_status_contributionContributoAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingSezione scelta dal docenteA type of branching where the Teacher chooses which learners to add to each branchal_cancelAnnullaTo Confirm title for LFErroral_confirmConfermaTo Confirm title for LFErrorls_seq_status_not_setNon ancora stabilitoThe value of the sequence's status is not setapp_chk_themeloadI dati del Tema non sono stati caricatimessage for unsuccessful theme loadingapp_fail_continueL'applicazione non può continuare. Per favore, contatta il supporto tecnico.message if application cannot continue due to any errordb_datasend_confirmGrazie per l'invio dei dati al serverMessage when user sucessfully dumps data to the servermnu_editModificaMenu bar Editmnu_edit_copyCopiaMenu bar Edit &gt; Copymnu_edit_cutTagliaMenu bar Edit &gt; Cutmnu_edit_pasteIncollaMenu bar Edit &gt; Pastemnu_fileFileMenu bar Filemnu_file_editclassModifica ClasseMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpAiutoMenu bar Helpmnu_help_abtSu LAMSMenu bar Aboutperm_act_lblPermessoLabel for permission gate activitysched_act_lblProgrammaLabel for schedule gate activitysynch_act_lblSincronizzaUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnnulla2ws_dlg_location_buttonPosizioneWorkspace dialogue Location btn labelws_tree_mywspLa mia area di lavoroThe root level of the treews_tree_orgsOrganizzazioniShown in the top level of the tree in the workspacesys_errorErrore di sistemaSystem Error elert window titlemnu_file_scheduleProgrammaMenu bar Schedulels_win_learners_heading_lblStudenti nella classeHeading on View Learners window panel.mnu_view_learnersStudenti...Menu bar Learnersmnu_goVaiMenu bar Gomnu_go_lessonLezioneMenu bar Go to Lesson Tabmnu_go_scheduleProgrammaMenu bar Go to Schedule Tabmnu_go_learnersStudentiMenu bar Go to Learners Tabmnu_go_todoDa fareMenu bar Todohelp_btnAiutoHelp buttonmtab_lessonLezioneMonitor Lesson details tabmtab_seqSequenzaMonitor Sequence tabmtab_learnersStudentiMonitor Learners tabmtab_todoDa fareMonitor Todo tabls_status_lblStatusStatus label - Lesson detailsal_alertAlertGeneric title for Alert windowmv_search_index_view_btn_lblIndiceWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.ls_win_editclass_titleModifica ClasseEdit class window titlesys_error_msg_finishDevi far ripartire LAMS Author per continuare. Vuoi salvare le seguenti informazioni sull'errore per contribuire a risolvere questo problema?Common System error message finish paragraphabout_popup_trademark_lbl{0} è un marchio di {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ls_win_editclass_save_btnSalvaSave button on Edit Class popupls_win_editclass_cancel_btnAnnullaCancel button on Edit Class popupls_win_learners_close_btnChiudiClose button on View Learners popupls_win_editclass_organisation_lblOrganizzazioneHeading for Organisation tree on Edit Class popupls_win_editclass_learners_lblStudentiHeading for Learners list on the Edit Class popuptd_desc_headingControlli avanzatiTodo tab description headingopt_activity_titleAttività opzionaleTitle for Optional Activity on canvas (monitoring)ls_learners_lblStudentiLearner label - Lesson detailsls_class_lblClasseClass label - Lesson detailsls_manage_class_lblClasseClass managing label - Lesson detailsls_manage_start_lblStartStart managing label - Lesson detailsls_manage_learners_btnVista StudentiView learners button - Lesson details (manage section)ls_manage_editclass_btnModifica ClasseEdit class button - Lesson details (manage section)ls_manage_apply_btnApplicaStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnProgrammaSchedule start button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblTempo trascorsoElapsed duration of lesson - Lesson detailsls_manage_status_cmbScegli statusStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAttivaLesson status option - Activatels_status_cmb_disableDisabilitaLesson status option - Disable (suspend)ls_status_cmb_enableAttivoLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchivioLesson status option - Archivels_status_disabled_lblSospesoCurrent status description if suspended (disabled)ls_status_archived_lblArchiviatoCurrent status description if archviedls_status_started_lblIniziatoCurrent status description if started (enabled)mnu_file_exitEsciMenu bar Exitls_seq_status_moderationModeratoreDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_of_textdii.e. 1 of 10 Used for showing how many learners have startedls_manage_txtGestisci la LezioneHeading for Management section of Lesson Tabls_tasks_txtCompiti richiestiHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnVaiGo button on contribute entry itemlearner_exportPortfolio_btnEsporta PortfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivitySei sicuro di voler forzare per lo studente '{0}' il completamento dell'attività '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityHai posto lo studente '{0}' o sulla sua attività corrente o sulla sua attività '{1}'già completataError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishSei sicuro di voler forzare lo studente '{0}' a terminare la lezione?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_win_learners_titleMostra StudentiView learners window titlemnu_viewMostraMenu bar Viewal_error_forcecomplete_notargetPer favore, colloca lo studente '{0}' su un'attività o sulla fine della lezione.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasls_status_scheduled_lblPianificatoLesson status option - Scheduled (Not Started)goContribute_btn_tooltipCompleta questo compito adessotool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipAiutotool tip message for help button in toolbarls_manage_editclass_btn_tooltipModifica la lista degli studenti e dello staff assegnati a questa lezionetool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMostra tutti gli studenti assegnati a questa lezionetool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipCambia lo status di questa lezione dal menu a cascatatool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEsporta il portfolio di classe e salvalo sul tuo computer per consultarlo in seguitotool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEsporta il portfolio di questo studente e salvalo sul tuo computer per consultarlo in seguitotool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipInizia questa lezione immediatamentetool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipProgramma una lezione da iniziare successivamente tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDoppio click per correggere in progress il contributo degli studenti per la corrente attivitàtool tip message for current activity iconcompleted_act_tooltipDoppio click per correggere il contributo degli studenti per l' attività completatatool tip message for completed activity iconal_doubleclick_todoactivitySpiacente, lo studente {0} non è ancora giunto all'attività {1}.alert message when user double click on the todo activity in the sequence under learner tabmnu_file_refreshAggiornaMenu bar Refreshccm_monitor_activityApri Attività di MonitorLabel for Custom Context Monitor Activityccm_monitor_activityhelpAiuto per Attività di MonitorLabel for Custom Context Monitor Activity Helpls_learnerURL_lblURL StudenteLearner URL:finish_learner_tooltipPer forzare il completamento della lezione da parte di uno studente, trascina l'icona dello studente sopra questa barra, quindi rilascia l'icona.Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnInserimenti DiarioLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVedi tutti gli inserimenti nel Diario salvati dagli Studenti.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_manage_learnerExpp_lblConsenti export portfolio per gli studentiLabel for Enable export portfolio for Learnerls_confirm_expp_enabledExport Porfolio è ora abilitato per gli studentiConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledExport Porfolio è ora disabilitato per gli studentiConfirmation message on disabling export portfolio for learnersmnu_help_helpAiuto per MonitoringMenu bar Help itemls_manage_status_lblModifica StatusStatus managing label - Lesson detailsls_manage_start_btnInizia oraStart immediately button - Lesson details (manage section)ls_status_active_lblCreato ma non iniziatoCurrent status description if active (enabled)learners_group_name{0} studentiGroup name for the class's learners group.al_yesSiYes on the alert dialogal_noNo'No' on the alert dialogstaff_group_name{0} staffGroup name for the class's staff group.ls_status_cmb_removeRimuoviLesson status option - Removels_status_removed_lblRimossoCurrent status description if deleted (removed) lesson.sys_error_msg_startSi è verificato il seguente errore di sistemaCommon System error message starting lineal_validation_schstartNessuna data selezionata. Scegli data e ora, prego.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTempo (Ore : Minuti)Time fields title - Lesson details (manage section)al_validation_schtimeInserisci un valore valido, per favore. Alert message when user enters an invalid time for schedule startls_remove_confirm_msgHai scelto di rimuovere questa lezione. Le lezioni rimosse non possono essere poi recuperate. Continuare?remove confirm msgcheck_avail_btnControlla disponibilitàCheck Availability button labelcontinue_btnContinuaContinue button labells_continue_lblCiao {1}, non hai finito di modificare {0}.Continue message labells_sequence_live_edit_btnModifica LiveLive Edit buttonls_sequence_live_edit_btn_tooltipModifica il progetto attuale per questa lezione.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblControllando...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNon disponibile. Prova ancora.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSpiacente, {0} è attualmente in via di modifica da {1}.Warning message on Monitor locked screen.al_confirm_live_editStai per aprire Live Edit. Vuoi continuare?Confirm warning (dialog) message displayed when opening Live Edit.al_sendInviaSend button label on the system error dialogabout_popup_title_lblSu - {}Title for the About Pop-up window.about_popup_version_lblVersioneLabel displaying the version no on the About dialog.about_popup_license_lblQuesto programma è free software; puoi redistribuirlo e/o modificarlo a termini della GNU General Public License version 2 come pubblicato dalla Free Software Foundation. {0}Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblClicca {0} per procedere.Action label displayed when a user can proceed to Live Edit.al_okOKOK on the alert dialogapp_chk_langloadI dati relativi alla lingua non sono stati caricatimessage for unsuccessful language loadinglbl_num_activitiesAttivitàNumber of child activities for Complex activity shown on canvas.ls_remove_warning_msgATTENZIONE: La lezione stà per essere rimossa. Desideri conservare questa lezione?Message for the alert dialog which appears following confirmation dialog for removing a lesson.close_mc_tooltipRiduciTooltip message for close button on Branching canvas.mv_search_default_txtImmetti termine di ricerca o numero di paginaThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequencesSequenzeNumber of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidAttento! Devi selezionare un'attività prima di cliccare su Apri/Modifica Contenuto Attività nel menu Attività alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgPerfavore immetti un termine di ricerca o un numero di pagina compreso tra 1 e [0]This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgIl numero di pagina deve essere compreso tra 1 e [0]This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg[0] non è stato trovatoThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblPagina [0] di [1]{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblCercaIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.refresh_btnAggiornaRefresh buttonal_confirm_forcecomplete_to_end_of_branching_seqSiete sicuri di voler spostare lo studente "0" al termine di questa sequenza?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq"0" non può essere spostato su un'attività che si trova su un diverso ramo/sequenza.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencebranch_mapping_dlg_condition_col_lblCondizioniColumn heading for showing condition description of the mapping.branch_mapping_dlg_group_col_lblGruppoColumn heading for showing group name of the mapping.ls_seq_status_perm_gatePorta di permessoA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gatePorta di sincronizzazioneA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_system_gatePorta di sistemaA System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_sched_gatePorta di tempoA type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_branch_col_lblRamiColumn heading for showing sequence name of the mapping.ccm_monitor_view_group_mappingsVisualizza gruppi e ramiLabel for Custom Context View Group Mappingsccm_monitor_view_condition_mappingsVisualizza condizioni e ramiLabel for Custom Context View Condition Mappingsls_win_editclass_staff_lblStaffHeading for Staff list on Edit Class popupbranch_mapping_dlg_conditions_dgd_lblMappingHeading label for Mapping datagrid.title_sequencetab_endGateStudenti che hanno completatoTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonmnu_go_sequenceSequenzaMenu bar Go to Sequence Tabcv_activity_helpURL_undefinedImpossibile trovare la pagina di Aiuto per (0)Alert message when a tool activity has no help url defined.cv_design_unsaved_live_editLe modifiche non salvate saranno automaticamente salvate. Desiderate continuare con l'inserimento/unione?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching Impossibile aggiungere o rimuovere gruppi; è possibile solo aggiungere/rimuovere utenti dai gruppi esistenti.Third instructions paragraph on the chosen branching screen.about_popup_copyright_lbl© 2002-2009 {0} Foundation.Label displaying copyright statement in About dialog.ls_confirm_presence_disabledOra gli studenti non possono vedere chi è on linels_confirm_presence_disabledls_confirm_presence_enabledOra gli studenti possono vedere chi è on linels_confirm_presence_enabledview_competences_dlgVedi CompetenzeAllows you to view all the competences within a learning designview_competences_in_ld_lblCompetenze nel progetto di e-learning: {0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentview_act_mapped_competencesVedi le competenze pianificateAllows you to view competences mapped to a particular activitymapped_competences_lblPiano delle competenzeTitle for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lblCompetenze programmate per {0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lblTitoloCompetence Title label in Mapped Competences dialogcompetence_desc_lblDescrizioneCompetence Description label in Mapped Competences dialogorder_learners_by_completion_lblOrdine di completamentoLabel for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lblConsenti agli studenti di vedere chi è onlinels_manage_presenceEnabled_lblal_activity_view_competence_mappings_invalidAssicurati di aver selezionato un'attività prima di tentare di vedere il suo piano delle competenze.Warning that appears when no activity is selected when the user tries to view competence mappingstd_desc_textQuesto non è necessario per completare la sequenza. Vedi la pagina di aiuto per maggiori informazioni.Todo tab descriptionls_win_learners_heading_class_lblClasseHeading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lblAttivitàHeading on View Learners window panel (learners at activity).learner_plus_tooltip{0} studenti. Doppio click per vedere l'elenco completo.Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ja_JP_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3td_desc_heading拡張コントロール:view_competences_in_ld_lbl学習デザインにおける権限: {0}ls_continue_lbl{1} さん、<b>{0}</b> の編集が終了していません。ls_manage_status_cmb選択されたステータス: sys_error_msg_finish作業を続けるためには LAMS 教材作成を再起動する必要があるかもしれません。このエラーの問題解決を助けるために、以下の情報を保存しますか?stream_reference_lblLAMSls_manage_learnerExpp_lbl学習者によるポートフォリオのエクスポートを許可しますls_manage_presenceEnabled_lbl学習者が他ユーザーのオンライン状況を見ることを許可するal_activity_openContent_invalidアクティビティのコンテキストメニューで 開く/編集 をクリックする前に、アクティビティを選択する必要があります。about_popup_copyright_lbl© 2002-2009 {0} Foundation.about_popup_trademark_lbl{0} は {0} Foundation ( {1} ) の商標です。ls_sequence_live_edit_btn_tooltipレッスンの現在のデザインを編集します。msg_bubble_check_action_lblチェック中...msg_bubble_failed_action_lblレッスンが正しい形式ではありません。再編集してください。label.grouping.general.instructions.branchingこのグループ分けは、分岐で使用されています。グループの追加や削除は、分岐の設定に影響を与えますので、このグループ分けからグループを追加したり削除したりすることはできません。既存のグループからユーザを追加 / 削除することは可能です。al_confirm_live_editライブ編集を中止します。続行しますか?al_send送信about_popup_title_lbl{0} についてstream_urlhttp://{0}foundation.orggpl_license_urlwww.gnu.org/licenses/gpl.txt ls_continue_action_lbl{0} をクリックして次に進みます。lbl_num_sequences{0} - シーケンスmv_search_not_found_msg{0} は見つかりませんでした。ls_of_text / mv_search_go_btn_lblGomv_search_index_view_btn_lblインデックスの表示close_mc_tooltip最小化al_error_forcecomplete_to_different_seq{0} を、異なる分岐、またはシーケンスのアクティビティにドロップすることはできません。ls_seq_status_moderation評価ls_seq_status_define_later後で定義するls_seq_status_perm_gateゲートの設定ls_seq_status_synch_gate同期ゲートls_seq_status_choose_groupingグループ分けls_seq_status_contribution進捗ls_seq_status_system_gateシステムゲートls_seq_status_not_setまだ設定されていませんls_seq_status_sched_gateスケジュールゲートbranch_mapping_dlg_branch_col_lbl分岐branch_mapping_dlg_condition_col_lbl条件branch_mapping_dlg_group_col_lblグループmnu_go_sequenceシーケンスcv_activity_helpURL_undefined{0}のヘルプは見つかりませんでしたtd_desc_textToDo タブはシーケンスが完了していなくても使用できます。詳細はヘルプをご覧ください。<br><br>この特徴は現在、完全に動作しています。opt_activity_title選択枠アクティビティlbl_num_activities{0} - アクティビティls_manage_txtレッスン管理ls_tasks_txt必要なタスクtd_goContribute_btnGolearner_exportPortfolio_btnエクスポートls_status_scheduled_lblスケジュール済みal_confirm_forcecomplete_toactivity学習者 "{0}" にアクティビティ "{1}" の完了を強制しますか?al_error_forcecomplete_invalidactivity学習者 "{0}" を、学習中もしくは完了したアクティビティ "{1}" にドロップしました。al_confirm_forcecomplete_tofinish学習者 "{0}" にレッスンの最後までの完了を強制しますか?al_error_forcecomplete_notarget学習者 "{0}" をアクティビティもしくはレッスン修了にドロップしてください。title_sequencetab_endGate終了した学習者:help_btn_tooltipヘルプrefresh_btn_tooltip学習者用の最新の進行データを再読込しますls_manage_learners_btn_tooltipこのレッスンに所属する全学習者を閲覧しますls_manage_apply_btn_tooltipレッスンの状態を、ドロップダウンリストの内容に変更しますls_manage_start_btn_tooltip今すぐレッスンを開始しますcurrent_act_tooltipダブルクリックで、学習者の現在のアクティビティに対する進捗状況をチェックしますcompleted_act_tooltipダブルクリックで、学習者の完了したアクティビティに対する状況をチェックしますal_doubleclick_todoactivity学習者 {0} は アクティビティ {1} に到達していません。finish_learner_tooltip学習者アイコンをこのバーにドロップすると、レッスン修了までの完了を強制しますccm_monitor_activityhelpヘルプlearner_viewJournals_btnジャーナルエントリlearner_viewJournals_btn_tooltip学習者が保存した全てのジャーナルエントリを表示しますls_learnerURL_lbl学習者 URL:ls_confirm_expp_enabled学習者によるポートフォリオのエクスポートを有効にしました。ls_confirm_expp_disabled学習者によるポートフォリオのエクスポートを無効にしました。ls_remove_confirm_msg学習履歴の削除 が選択されました。削除された学習履歴は復元できません。続けますか?ls_status_cmb_remove学習履歴の削除ls_status_removed_lbl削除されましたal_yesはいal_noいいえls_remove_warning_msg警告: 学習履歴を削除しようとしています。このレッスンを残しておきますか?learners_group_name{0} 学習者ls_win_editclass_staff_lblモニターcheck_avail_btn正規性チェックcontinue_btn続行ls_sequence_live_edit_btnライブ編集mnu_edit編集mnu_edit_copyコピーmnu_edit_cut切り取りmnu_edit_paste貼り付けmnu_fileファイルmnu_file_refresh更新mnu_file_editclassクラスを編集mnu_file_startスタートmnu_helpヘルプmnu_help_abtAboutperm_act_lbl手動で開くsched_act_lblタイマーで設定synch_act_lbl全員を待つws_Rootルートws_dlg_cancel_buttonキャンセルws_dlg_location_button場所ws_tree_mywspワークスペースws_tree_orgs組織sys_error_msg_startシステムエラーが発生しました:sys_errorシステムエラーmnu_file_scheduleスケジュールmnu_file_exit終了mnu_view_learners学習者...mnu_goGomnu_go_lessonレッスンmnu_go_scheduleスケジュールmnu_go_learners学習者mnu_go_todoToDomnu_help_helpヘルプrefresh_btn更新help_btnヘルプmtab_lessonレッスンmtab_seqシーケンスmtab_learners学習者mtab_todoToDols_status_lblステータス:ls_learners_lbl学習者:ls_class_lblクラス:ls_manage_class_lblクラス:ls_manage_status_lblステータス変更:ls_manage_start_lbl開始:ls_manage_learners_btn学習者を表示ls_manage_editclass_btnクラスを編集ls_manage_apply_btn適用ls_manage_schedule_btnスケジュールls_manage_start_btnすぐに開始ls_manage_date_lbl日付ls_duration_lbl経過期間:ls_status_cmb_activate再開ls_status_cmb_disable中断ls_status_cmb_enable再開ls_status_cmb_archiveアーカイブ保存ls_status_active_lbl有効ls_status_disabled_lbl無効ls_status_archived_lblアーカイブls_status_started_lbl開始ls_win_editclass_titleクラスを編集ls_win_learners_title学習者を表示ls_win_editclass_save_btn保存ls_win_editclass_cancel_btnキャンセルls_win_learners_close_btn閉じるls_win_editclass_organisation_lbl組織ls_win_editclass_learners_lbl学習者ls_manage_editclass_btn_tooltipこのレッスンに割り当てられる学習者とモニターのリストを編集しますstaff_group_name{0} モニターccm_monitor_activityアクティビティ モニターbranch_mapping_dlg_conditions_dgd_lbl割り当てcompetences_mapped_to_act_lbl権限を {0} にマップしました。mapped_competences_lbl権限の割り当てal_activity_view_competence_mappings_invalid権限の割り当てを表示する前にアクティビティを選択してください。view_act_mapped_competences権限の割り当てを表示al_cancelキャンセルal_confirm確認al_okOKapp_chk_langload言語データはロードされませんでしたapp_chk_themeloadテーマはロードされませんでしたapp_fail_continueアプリケーションは作業を続行できません。サポートに連絡してくださいdb_datasend_confirmデータをサーバに送信しましたccm_monitor_view_group_mappings分岐のグループを表示ccm_monitor_view_condition_mappings分岐の条件を表示goContribute_btn_tooltipこのタスクの実行画面へ移動するmv_search_invalid_input_msgページ番号は 1 から {0} の間ですmv_search_current_page_lblページ {0} / {1}mv_search_default_txt検索する文字列かページ番号を入力してくださいls_seq_status_teacher_branching先生が分岐を選択al_confirm_forcecomplete_to_end_of_branching_seq学習者 {0} に、この分岐シーケンスの最後までの完了を強制しますか?class_exportPortfolio_btn_tooltipクラスのポートフォリオをエクスポートし、今後参照するためにこのコンピュータに保存しますlearner_exportPortfolio_btn_tooltip学習者のポートフォリオをエクスポートし、今後参照するためにこのコンピュータに保存しますls_win_learners_heading_lbl{0} の学習者: {1}mv_search_error_msg検索する文字列かページ番号 (1-{0}) を入力してくださいls_locked_msg_lbl<b>{0}</b> はユーザー {1} が編集中です。competence_title_lblタイトルcompetence_desc_lbl説明view_competences_dlg権限の表示order_learners_by_completion_lbl完了順ls_win_learners_heading_class_lblクラスls_win_learners_heading_activity_lblアクティビティlearner_plus_tooltip学習者 {0}ダブルクリックで全リストが見れます。ls_confirm_presence_enabled現在、学習者は他ユーザーのオンライン状況を見ることができますls_confirm_presence_disabled現在、学習者は他ユーザーのオンライン状況を見ることができませんls_manage_presenceImEnabled_lblインスタント・メッセージを有効にするsupport_act_titleサポート・アクティビティal_error_forcecomplete_support_act強制的に学習者がサポート・アクティビティを完了させることはできませんmsg_no_learners_in_lesson1 人以上の学習者が選択しなければいけませんls_confirm_presence_im_enabledインスタント・メッセージは有効ですls_confirm_presence_im_disabledインスタント・メッセージは無効ですal_alert通知ls_manage_schedule_btn_tooltipレッスンの開始予定時刻を設定しますal_validation_schstart日付が選択されていません。日付と時刻を選択してください。ls_manage_time_lbl時刻 (時 : 分)al_validation_schtime正しい時刻を入力してください。view_time_graph_btn_tooltipアクティビティごとの進捗状況のグラフの表示view_time_chart_btn学習時間グラフの表示cv_design_unsaved_live_edit保存されていない変更は自動的に保存されます。挿入/統合を続けますか?view_time_chart_btn_tooltipアクティビティごとの進捗状況のグラフの表示view_time_graph_btn学習時間グラフの表示mnu_view表示about_popup_version_lblバージョンabout_popup_license_lbl<p>このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行された GNU 一般公衆利用許諾契約書 バージョン 2 の定める条件の下で再頒布または改変することができます。<br><br>{0}</p> \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ko_KR_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_seq_status_moderation중재Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later추후 정의Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate허가 관문A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate관문 동기화A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping모둠 선택Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution기여Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate시스템 관문A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_teacher_branching교수자가 선택한 갈래A type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_set아직 미설정The value of the sequence's status is not setls_seq_status_sched_gate예약 관문A type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_conditions_dgd_lbl매핑Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl갈래Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl조건Column heading for showing condition description of the mapping.ccm_monitor_view_group_mappings갈래 모둠 보기Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings갈래 조건 보기Label for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lbl모둠Column heading for showing group name of the mapping.mnu_go_sequence순차학습Menu bar Go to Sequence Tabcv_activity_helpURL_undefined{0}에 대한 도움말 페이지를 찾을 수 없습니다.Alert message when a tool activity has no help url defined.al_confirm_forcecomplete_to_end_of_branching_seq모든 학습자들을 이 갈래 순차학습 끝으로 보내기를 원하십니까?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq{0}는 순차학습의 다른 갈래에 있는 활동위에 놓여질 수 없습니다.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencecv_design_unsaved_live_edit저장되지 않은 변경은 자동으로 저장될 것입니다. 삽입/통합으로 계속하기를 원하십니까?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching모둠이 갈래에서 사용중이므로 이 모둠무리에 대해 모둠을 추가하거나 제거할 수 없습니다. 모둠을 추가하거나 제거하는 것은 갈래 모둠 설정에 영향을 줍니다. 기존 모둠에 사용자를 추가하거나 제거할 수 있습니다.Third instructions paragraph on the chosen branching screen.al_alert주의Generic title for Alert windowal_cancel취소To Confirm title for LFErroral_confirm확인To Confirm title for LFErrorapp_chk_langload언어 데이터가 올려지지 않았습니다.message for unsuccessful language loadingapp_chk_themeload주제 데이터가 올려지지 않았습니다.message for unsuccessful theme loadingapp_fail_continue응용프로그램이 계속할 수 없습니다. 지원팀에게 문의하십시요message if application cannot continue due to any errordb_datasend_confirm서버에 자료를 올려주어서 감사합니다.Message when user sucessfully dumps data to the servermnu_edit편집Menu bar Editmnu_edit_copy복사Menu bar Edit &gt; Copymnu_edit_cut자르기Menu bar Edit &gt; Cutmnu_edit_paste붙이기Menu bar Edit &gt; Pastemnu_file파일Menu bar Filemnu_file_refresh새로고침Menu bar Refreshmnu_file_editclass분반 편집Menu bar Edit Classmnu_file_start시작Menu bar Startmnu_help도움말Menu bar Helpmnu_help_abt정보Menu bar Aboutperm_act_lbl허가Label for permission gate activitysched_act_lbl일정Label for schedule gate activitysynch_act_lbl동기화Used as a label for the Synch Gate Activity Typews_Root최상위 폴더Root folder title for workspacews_dlg_cancel_button취소2ws_dlg_location_button위치Workspace dialogue Location btn labelws_tree_mywsp내 작업공간The root level of the treews_tree_orgs조직Shown in the top level of the tree in the workspacesys_error_msg_start다음 시스템오류가 발생하였습니다.Common System error message starting linesys_error_msg_finish계속하기 위해서는 LAMS 저작을 다시 시작해야 합니다. 이문제를 고치는데 도움을 주기 위해서 이 오류에 대한 다음 정보를 저장하기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error elert window titlemnu_file_schedule일정Menu bar Schedulemnu_file_exit나감Menu bar Exitmnu_view_learners학습자들Menu bar Learnersmnu_go진행Menu bar Gomnu_go_schedule일정Menu bar Go to Schedule Tabmnu_go_learners학습자들Menu bar Go to Learners Tabmnu_go_todo할일Menu bar Todorefresh_btn새로고침Refresh buttonhelp_btn도움말Help buttonmtab_seq순차학습Monitor Sequence tabmtab_learners학습자들Monitor Learners tabmtab_todo할일Monitor Todo tabls_status_lbl상태Status label - Lesson detailsls_learners_lbl학습자들Learner label - Lesson detailsls_class_lbl분반Class label - Lesson detailsls_manage_class_lbl분반Class managing label - Lesson detailsls_manage_start_lbl시작Start managing label - Lesson detailsls_manage_learners_btn학습자 보기View learners button - Lesson details (manage section)ls_manage_editclass_btn분반 편집Edit class button - Lesson details (manage section)ls_manage_apply_btn적용Status Apply button - Lesson details (manage section)ls_manage_schedule_btn일정Schedule start button - Lesson details (manage section)ls_manage_date_lbl일자Date field title - Lesson details (manage section)ls_duration_lbl경과시간Elapsed duration of lesson - Lesson detailsls_manage_status_cmb상태 선택Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activate활성화Lesson status option - Activatels_status_cmb_disable비활성화Lesson status option - Disable (suspend)ls_status_cmb_enable활성화Lesson status option - Enable (make active/unsuspend)ls_status_cmb_archive저장소Lesson status option - Archivels_status_disabled_lbl비활성화됨Current status description if suspended (disabled)ls_status_archived_lbl저장됨Current status description if archviedls_status_started_lbl시작됨Current status description if started (enabled)ls_win_editclass_title분반 편집Edit class window titlels_win_learners_title학습자 보기View learners window titlemnu_view보기Menu bar Viewls_win_editclass_save_btn저장Save button on Edit Class popupls_win_editclass_cancel_btn취소Cancel button on Edit Class popupls_win_learners_close_btn닫기Close button on View Learners popupls_win_editclass_organisation_lbl조직Heading for Organisation tree on Edit Class popupls_win_editclass_staff_lbl관리자Heading for Staff list on Edit Class popupls_win_editclass_learners_lbl학습자Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl과목의 학습자 수Heading on View Learners window panel.td_desc_heading고급 제어Todo tab description headingtd_desc_text순차학습을 마치기 위해서 할일 탭을 사용할 필요가 없습니다. 더 많은 정보를 위해서 도움말 페이지를 보기바랍니다. Todo tab descriptionopt_activity_title선택 활동Title for Optional Activity on canvas (monitoring)lbl_num_activities하위 활동Number of child activities for Complex activity shown on canvas.ls_of_text/i.e. 1 of 10 Used for showing how many learners have startedls_manage_txt강좌 관리Heading for Management section of Lesson Tabls_tasks_txt필요작업Heading for Required Tasks (todo section of Lesson tab)td_goContribute_btn진행Go button on contribute entry itemlearner_exportPortfolio_btn포트폴리오 내보내기Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lbl예정됨Lesson status option - Scheduled (Not Started)ls_manage_learnerExpp_lbl학습자에 대한 포트폴리오 내보내기 활성화Label for Enable export portfolio for Learnerls_confirm_expp_enabled학습자에 대한 포트폴리오 내보내기가 활성화 되었습니다.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled학습자에 대한 포트폴리오 내보내기가 비 활성화되었습니다.Confirmation message on disabling export portfolio for learnersal_confirm_forcecomplete_toactivity당신은 학습자 '{0}'가 '{1}' 활동을 강제 완료하기를 원하십니까?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivity학습자의 현재 또는 완료한 활동'{1}'에서 학습자 '{0}'를 제거하였습니다.Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinish학습자 '{0}'를 강좌 끝에서 강제 완료하기를 원하십니까?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notarget학습자 '{0}'를 활동 혹은 강좌의 끝에 있게 하십시요.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate완료한 학습자들Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_learnerURL_lbl학습자 URLLearner URL:refresh_btn_tooltip학습자들에 대한 최근의 진도 자료 다시 올리기tool tip message for the refresh buttonls_manage_apply_btn_tooltip드롭 다운 선택에 의한 강의 상태 변경tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statuscompleted_act_tooltip학습자가 완료한 활동에 대한 기여를 검토하기 위해서 더블클릭하새요.tool tip message for completed activity iconlearner_exportPortfolio_btn_tooltip학습자의 포트폴리오를 내보내기 하여 추후 참조를 위해 당신의 컴퓨터에 저장하십시요.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn지금 시작Start immediately button - Lesson details (manage section)ls_status_active_lbl생성되었지만 아직 시작되지 않음Current status description if active (enabled)ls_manage_status_lbl상태 변경Status managing label - Lesson detailsgoContribute_btn_tooltip이 일을 지금 하세요.tool tip message for go button in required tasks list in lesson tabhelp_btn_tooltip도움말tool tip message for help button in toolbarls_manage_editclass_btn_tooltip이 강의에 할당된 학습자 및 관리자 목록 편집 tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltip이 강의에 할당된 모든 학습자 보기 tool tip message for the view learners button in lesson tab under manage lesson sectionclass_exportPortfolio_btn_tooltip강좌 포트폴리오를 내보내기 하고 추후 참조를 위해 당신의 컴퓨터에 저장하십시요.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerls_manage_start_btn_tooltip지금 강좌를 시작tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessoncurrent_act_tooltip학습자의 현재 활동에 대한 진행중인 기여를 검토하기 위해 더블클릭하십시요.tool tip message for current activity iconls_manage_schedule_btn_tooltip추후에 시작할 수 있도록 강좌를 예약tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timeal_doubleclick_todoactivity죄송합니다. 학습자 {0} 가 아직 활동 {1}에 도달하지 못하였습니다.alert message when user double click on the todo activity in the sequence under learner tablearner_viewJournals_btn저널 항목Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip학습자에 의해 저장된 모든 저널 항목 보기tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.mtab_lesson학습Monitor Lesson details tabmnu_go_lesson학습Menu bar Go to Lesson Tabmnu_help_help학습자 관찰 도움말Menu bar Help itemccm_monitor_activity활동 관찰 열기Label for Custom Context Monitor Activityccm_monitor_activityhelp관찰 활동 도움말Label for Custom Context Monitor Activity Helplearners_group_name{0} 학습자들Group name for the class's learners group.staff_group_name{0} 스태프Group name for the class's staff group.al_validation_schstart날짜가 선택되지 않았습니다. 날짜와 시간을 선택하여 주십시요.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl시간(시간:분)Time fields title - Lesson details (manage section)al_ok확인OK on the alert dialogal_validation_schtime올바른 시간을 입력하세요.Alert message when user enters an invalid time for schedule startfinish_learner_tooltip학습자를 강의의 마지막부분으로 강제 종료하고자 하기 위해서는 학습자 아이콘을 이 막대 다음으로 드래그 한 다음 놓으십시요.Rollover message when user moves their mouse over the end gate bar in monitor tab viewal_no아니오'No' on the alert dialogls_remove_warning_msg학습이 제거되려고 합니다. 이 학습이 보관되기를 원하십니까?Message for the alert dialog which appears following confirmation dialog for removing a lesson.ls_remove_confirm_msg당신은 이 학습을 제거하는 것을 선택하였습니다. 제거된 학습은 다시 복원될 수 없습니다. 계속하시겠습니까? remove confirm msgls_status_cmb_remove제거Lesson status option - Removels_status_removed_lbl제거됨Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_send보내기Send button label on the system error dialogcontinue_btn계속Continue button labells_sequence_live_edit_btn라이브 편집Live Edit buttonls_continue_action_lbl계속하기 위해서 {0}를 클릭하세요Action label displayed when a user can proceed to Live Edit.stream_reference_lbl람스Reference label for the application stream.check_avail_btn사용가능 확인Check Availability button labelmsg_bubble_failed_action_lbl사용불가, 다시시도 하세요Label displayed when check failed i.e. lesson is still locked.msg_bubble_check_action_lbl확인중...Label displayed when checking availability of lesson.about_popup_license_lbl이 프로그램은 프리소프트웨어 입니다; Free Software Foundationd 에 의해 발간된 GNU General Public Licence version2의 조건에 한해서 재배포하거나 수정할 수 있습니다. Label displaying the license statement in the About dialog.about_popup_trademark_lbl{0}는 {0} 재단의 등록상표입니다. ({1}).Label displaying the trademark statement in the About dialog.al_confirm_live_edit라이브편집을 열려고 합니다. 계속하시겠습니까?Confirm warning (dialog) message displayed when opening Live Edit.ls_continue_lbl안녕하세요{1}, 아직 {0}를 편집하는 것을 마치지 않았습니다.Continue message labells_sequence_live_edit_btn_tooltip이 학습에 대한 설계를 편집Tool tip message for Live Edit buttonabout_popup_version_lbl버전Label displaying the version no on the About dialog.about_popup_title_lbl{0} 정보Title for the About Pop-up window.stream_urlhttp://{0}foundation.org URL address for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.ls_locked_msg_lbl죄송합니다. {0}은 {1}에 의해 편집 중입니다.Warning message on Monitor locked screen.about_popup_copyright_lbl© 2002-2008 {0} 재단Label displaying copyright statement in About dialog.close_mc_tooltip최소화Tooltip message for close button on Branching canvas.mv_search_default_txt검색 쿼리나 페이지 번호를 입력하세요The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequences{0}-순차학습Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalid죄송합니다. 활동의 오른쪽 클릭 메뉴의 활동 콘텐츠 메뉴 열기/편집을 클릭하기전에 활동을 선택하여야 합니다.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msg검색 쿼리나 1과 {0} 사이의 페이지 번호를 입력하세요This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg페이지 번호는 1에서 {0} 사이 이어야 합니다.This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0} 을 찾을 수 없습니다.This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl{1} 중 {0} 페이지{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl진행If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl인덱스 보기When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/mi_NZ_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀElearners_group_name{0} ākongaccm_monitor_activityTuwhera Aroturuki Ngoheccm_monitor_activityhelpĀwhina Aroturuki Ngoheal_validation_schtimeTāpiritia he wā whai mana.learner_viewJournals_btnTāuru Hautaka learner_viewJournals_btn_tooltipTirohia ngā Tāuru Hautaka i tiakina e ngā Ākongaal_doubleclick_todoactivityAroha, kāhore anō tēnei akonga: {0} kia tae atu ki te ngohe: {1}.about_popup_license_lbl<p> He kore utu tēnei papatono; ka taea te tohatoha me te whakahōu i raro i ngā tikanga o te GNU ahua2 pērā i ngā putanga o te Free Software Foundation. <br><br>{0}</p>about_popup_version_lblTe ĀhuagoContribute_btn_tooltipWhakaotia tēnei tūmahi ināianeirefresh_btn_tooltipTīkina ake anō ngā raraunga kaneke hōu tonu mō ngā ākongals_manage_editclass_btn_tooltipWhakatikaina te rārangi ākonga, kaiako hoki kua tautapatia ki tēnei akoranga ls_manage_learners_btn_tooltipKa whakaatu i ngā ākonga katoa kua tautapatia ki tēnei akorangals_manage_apply_btn_tooltipHurihia te tūnga o te akoranga e ai ki te kōwhiringa taka-iho ls_manage_start_btn_tooltipTīmataria te ākoranga ināia tonu neils_manage_schedule_btn_tooltipWhakaritea kia tīmata te akoranga ā tētehi wā o muri current_act_tooltipKia rua ngā pāwhiringa hei arotake i ngā takoha kei te haere mō tā te ākonga ngohe o nāianei completed_act_tooltipKia rua ngā pāwhiringa hei arotake i ngā takoha kei te haere mō te ngohe kua oti nei i te ākongals_duration_lblTe Wā kua Haere:class_exportPortfolio_btn_tooltipKawea atu te kōpaki akomanga, ka tiaki ki tāu rorohiko hei tohutoro māu ā muri atual_confirmWhakatūturutiaapp_chk_langloadKāhore anō kia utaina ngā raraunga reoapp_chk_themeloadKāhore ngā raraunga kaupapa kia utainaapp_fail_continueKāhore te Taupānga e taea te haere tonu. Whakapā atu ki te Kaiwhakahaeredb_datasend_confirmNgā mihi mō te tuku raraunga ki te tūmau mnu_help_abtWhakamāramaws_dlg_location_buttonŪngasys_error_msg_finishTērā pea me tīmata anō koe i te Pūnaha Akoranga ā Hiko. Kei te pīrangi tiaki koe i ēnei pārongo mō te hapa nei hei āwhina ki te whakatika i te raru nei?al_cancelWhakakorels_win_editclass_cancel_btnWhakakorews_dlg_cancel_buttonWhakakorews_RootWhaiaronga Iomatuals_manage_apply_btnHōatuls_manage_schedule_btnWhakaritengals_manage_date_lblTe Rāls_status_archived_lblPūrangals_status_started_lblKua timatals_learnerURL_lblĀkonga URLls_class_lblTaipitopitomnu_viewTirohials_win_editclass_save_btnTiakils_win_learners_close_btnKatials_win_editclass_organisation_lblWhakahaerels_win_editclass_staff_lblKaiakols_win_editclass_learners_lblĀkongaopt_activity_titleNgohe Whiringalbl_num_activitiesNgohe Tamarikils_of_textotd_goContribute_btnHaeretitle_sequencetab_endGateĀkonga i mutuls_status_scheduled_lblKua Whakariteahelp_btn_tooltipĀwhinamnu_file_refreshTāmatatiarefresh_btnTāmatatiasys_error_msg_startKua puta tēnei hapa pūnaha:ls_status_cmb_activateWhakahoheals_status_cmb_disableMonokials_status_cmb_enableHohels_status_cmb_archivePūrangals_status_disabled_lblTāherels_win_learners_heading_lblNgā ākonga kei te akomanga:td_desc_headingArā atu Mana Anō:td_desc_textUse of this Todo Tab is not required to complete the sequence. See the help page for more information.ls_manage_txtWhakahaere Akorangals_tasks_txtTūmahi Kia Mahiaal_confirm_forcecomplete_toactivityMe āta whai koe ki te uruhi i te otinga o te ākonga '{0} ki te ngohe {1}?al_error_forcecomplete_invalidactivityKua waiho e koe te ākonga ‘{0}’ i tāna mahi o nāianei, i tāna ngohe oti rānei ‘{1}’al_confirm_forcecomplete_tofinishMe āta whai koe ki te uruhi i te otinga o te ākonga ‘{0}’ ki te mutunga o te akoranga?al_error_forcecomplete_notargetWaiho koa te ākonga ‘{0}’ ki tētehi ngohe, ki te mutunga o te akoranga rānei. ls_manage_time_lblTe Wā (Haora : Miniti)mnu_help_helpĀwhinals_manage_start_btnTīmatariaal_alertKia Matohimnu_editWhakatikatikamnu_edit_copyTāruatiamnu_edit_cutWhakakoreamnu_edit_pasteTāpiamnu_fileKōnaemnu_file_editclassWhakatikatika Akomangamnu_file_startTīmatariamnu_helpĀwhinaperm_act_lblWhakaaetangasched_act_lblWhakaritengasynch_act_lblTukutahiws_tree_mywspTaku Papamahiws_tree_orgsWhakahaeresys_errorHapa Pūnahamnu_file_scheduleWhakaritengamnu_file_exitPutangamnu_view_learnersĀkonga....mnu_goHaeremnu_go_lessonAkorangamnu_go_scheduleWhakaritengamnu_go_learnersĀkongamnu_go_todoHei Mahihelp_btnĀwhinamtab_lessonAkorangamtab_seqRaupapamtab_learnersĀkongamtab_todoHei Mahils_status_lblTūngals_learners_lblĀkongals_manage_class_lblAkorangals_win_learners_titleTirohials_manage_start_lblTīmatarials_manage_editclass_btnWhakatikatika akomangaclose_mc_tooltipWhakaitils_status_active_lblKua hangaia ēngari kāore anō kia tīmatariamv_search_go_btn_lblRapumv_search_default_txtTuhi rapu ui tau wharangi rāneimv_search_error_msgTuhi rapu ui tau wharangi rānei mai 1 me {0}mv_search_invalid_input_msgKo te tau wharangi mai 1 me {0}mv_search_not_found_msgKāore te {0} i rapumv_search_current_page_lblWharangi {0} ki {1}ls_seq_status_contributionTākohamv_search_index_view_btn_lblTirohanga Matuals_seq_status_moderationAroturukiview_time_chart_btn_tooltipTirohia ki tētehi tūtohinga kia kite i te kāneke o te ākonga ki te wā mō ia ngohe.support_act_titleNgohe Āwhinaal_error_forcecomplete_support_actKāore e taea te whakaotia i te ākonga mō te ngohe āwhina.view_time_graph_btn_tooltipTirohia ki tētehi kauwhata kia kite i te kāneke o te ākonga ki te wā mō ia ngohe.ls_seq_status_define_laterTautu a muri atuls_seq_status_perm_gateTomokanga Whakaaeal_validation_schstartKāore i kōwhiria te rā. Kōwhirihia te rā me te wā.finish_learner_tooltipE uruhina ai te ākonga ki te whakaoti tae noa ki te mutunga o te akoranga, tōia te ata ākonga ki te pae nei, ka wete.ls_remove_confirm_msgKua kōwhiria e koe te Tango tēnei akoranga. Kāore e taea te whakahokia mai anō ngā akoranga i tango. Haere tonu?ls_status_cmb_removeTangohials_status_removed_lblKua Tangohiaal_yesĀeal_noKāolearner_exportPortfolio_btn_tooltipKawea atu te kōpaki ākonga, ka tiaki ki tāu rorohiko hei tohutoro māu ā muri atual_sendTukunacheck_avail_btnTirohiacontinue_btnHaere tonuls_continue_lblKia ora {0}, kāhore anō koe kia mutu te whakatikatika {0}.ls_sequence_live_edit_btn_tooltipWhakatikaina tēnei hoahoatanga mō tēnei ngohe.msg_bubble_check_action_lblKei te tirohia...ls_locked_msg_lblAroha, {0} kei te whakatikaina e {1}.about_popup_title_lblWhakamārama - {0}about_popup_trademark_lblHe moko o {0} Rōpū {1}.stream_reference_lblPūnaha Akoranga ā Hikogpl_license_urlwww.gnu.org/rēhita/gpl.txtstream_urlhttp://{0}rōpū.orgls_continue_action_lblPāwhirihia {0} kia haere tonu.ls_sequence_live_edit_btnWhakatikaina Ngohemsg_bubble_failed_action_lblKāore e taea, me mahi anō.al_confirm_live_editKei te tūwhera koe i te Whakatikaina Ngohe. Ka hiahia koe te haere tonu?ls_manage_learners_btnTirohials_manage_status_lblTūngals_manage_status_cmbKōwhiria:ls_win_editclass_titleWhakatikatikals_seq_status_synch_gateTomokanga Tukutahils_seq_status_choose_groupingKōwhiri Whakarōpūlbl_num_sequences{0} - Raupapa Akols_remove_warning_msgKia Mataara: Kei te tango akoranga. Ka pirangi te mau tēnei akoranga?view_time_graph_btnTirohia Kauwhata Wāls_seq_status_system_gateTomokanga Pūnahaabout_popup_copyright_lbl© 2002-2009 {0} Rōpū.branch_mapping_dlg_condition_col_lblTikangaccm_monitor_view_condition_mappingsTirohia Tikanga ki Rōpūal_error_forcecomplete_to_different_seq{0} kāore e taea te whakakore ngohe kei tētehi atu pekanga raupapa ako rānei.label.grouping.general.instructions.branchingKāore e taea te tāpiri tangohia rānei mō tēnei whakarōpūtanga nā te whakaritenga pekanga. Ka taea te tāpiri/tango kaimahi anakē ki ngā rōpū e tū nei.ls_seq_status_teacher_branchingPekanga Kaiako i Kōwhirihials_seq_status_not_setKāhore anō i Whakatauls_seq_status_sched_gateTomokanga Wābranch_mapping_dlg_conditions_dgd_lblMāheretangabranch_mapping_dlg_branch_col_lblPekangaccm_monitor_view_group_mappingsTirohia Rōpū ki Pekangabranch_mapping_dlg_group_col_lblRōpūmnu_go_sequenceRaupapa Akocv_activity_helpURL_undefinedKāore i kimi te wharangi āwhi mō {0}al_confirm_forcecomplete_to_end_of_branching_seqMe āta whai koe ki te uruhi i te otinga o te ākonga '{0} ki te mutunga o tēnei raupapa pekanga?view_time_chart_btnTirohia Tūtohinga Wācompetence_title_lblTaitaracompetence_desc_lblWhakamāramals_manage_learnerExpp_lblWhakahohe te tuku kōpaki mō te ākongalearner_exportPortfolio_btnKawe Kōpaki Atuls_confirm_expp_disabledKua monokia te kawe kōpaki mo ngā ākongals_confirm_expp_enabledKua whakahohetia te kawe kōpaki mō ngā ākongacv_design_unsaved_live_editKa tiaki aunoa ngā rerekētanga kāore i tiaki. Haere tonutia te kōkuhu/hanumi?al_activity_openContent_invalidAroha! Tīpakohia tētehi ngohe i mua i te pāwhiri i te Huakina/Whakatikatika i te papatono Ihirangi Ngohe ki te taha matau. view_competences_dlgTirohia Matatauview_competences_in_ld_lblMatatau hoahoa ako: {0}view_act_mapped_competencesTirohia ngā Matatau kua Whakamaheretiamapped_competences_lblMatatau kua Whakamaheretiacompetences_mapped_to_act_lblMatatau kua Whakamaheretia ki {0}al_activity_view_competence_mappings_invalidMe āta kōwhiri koe i tētehi ngohe i mua i te tiro ki ōna matatau kua whakamaheretia.order_learners_by_completion_lblRaupapa mā te mahi otils_manage_presenceEnabled_lblTukuna ngā ākonga kia kite ko wai kua tuihono mails_confirm_presence_enabledKa taea e ngā ākonga te kite ko wai kua tuihono mai ināianei.ls_confirm_presence_disabledKāore e taea e ngā ākonga te kite ko wai kua tuihono mai ināianeils_win_learners_heading_class_lblAkomangals_win_learners_heading_activity_lblNgohelearner_plus_tooltip{0} Ākonga. Pāwhirihia kia kite te rārangi katoa.staff_group_name{0} kaiako aroturuki \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ms_MY_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertAletGeneric title for Alert windowal_cancelBatalTo Confirm title for LFErroral_confirmSahTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadData Bahasa tidak berjaya diloadmessage for unsuccessful language loadingapp_chk_themeloadData tema tidak berjaya diloadmessage for unsuccessful theme loadingapp_fail_continueAplikasi tidak berjaya diteruskan. Sila hubungi kumpulan sokonganmessage if application cannot continue due to any errordb_datasend_confirmTerima kasih kerana menghantar data ke pelayanMessage when user sucessfully dumps data to the servermnu_editSuntingMenu bar Editmnu_edit_copySalinMenu bar Edit &gt; Copymnu_edit_cutPotongMenu bar Edit &gt; Cutmnu_edit_pasteTampalMenu bar Edit &gt; Pastemnu_fileFailMenu bar Filemnu_file_refreshRefreshMenu bar Refreshmnu_file_editclassSunting KelasMenu bar Edit Classmnu_file_startMulaMenu bar Startmnu_helpBantuMenu bar Helpmnu_help_abtTentangMenu bar Aboutperm_act_lblKeizinanLabel for permission gate activitysched_act_lblJadualLabel for schedule gate activitysynch_act_lblSynchroniseUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonBatal2ws_dlg_location_buttonLokasiWorkspace dialogue Location btn labelws_tree_mywspRuang Kerja SayaThe root level of the treews_tree_orgsOrganisasiShown in the top level of the tree in the workspacesys_error_msg_startRalat sistem ini telah muncul:Common System error message starting linesys_error_msg_finishAnda mungkin perlu memulakan semula LAMS untuk sambung. Adakah anda mahu menyimpan ralat untuk membantu menyelesaikan masalah ini?Common System error message finish paragraphsys_errorRalat SistemSystem Error elert window titlemnu_file_scheduleJadualMenu bar Schedulemnu_file_exitKeluarMenu bar Exitmnu_view_learnersPelajar...Menu bar Learnersmnu_goPergiMenu bar Gomnu_go_lessonPelajaranMenu bar Go to Lesson Tabmnu_go_scheduleJadualMenu bar Go to Schedule Tabmnu_go_learnersPelajarMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpAwasi BantuanMenu bar Help itemrefresh_btnRefreshRefresh buttonhelp_btnBantuHelp buttonmtab_lessonPelajaranMonitor Lesson details tabmtab_seqTurutanMonitor Sequence tabmtab_learnersPelajarMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblPelajar:Learner label - Lesson detailsls_class_lblKelas:Class label - Lesson detailsls_manage_class_lblKelas:Class managing label - Lesson detailsls_manage_status_lblTukar Status:Status managing label - Lesson detailsls_manage_start_lblMula:Start managing label - Lesson detailsls_manage_learners_btnPapar PelajarView learners button - Lesson details (manage section)ls_manage_editclass_btnSunting KelasEdit class button - Lesson details (manage section)ls_manage_apply_btnPohonStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnJadualSchedule start button - Lesson details (manage section)ls_manage_start_btnMula SekarangStart immediately button - Lesson details (manage section)ls_manage_date_lblTarikhDate field title - Lesson details (manage section)ls_duration_lblDurasi TinggalElapsed duration of lesson - Lesson detailsls_manage_status_cmbPilih status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktifkanLesson status option - Activatels_status_cmb_enableAktifLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkibLesson status option - Archivels_status_archived_lblArkibCurrent status description if archviedls_win_editclass_titleSunting KelasEdit class window titlels_win_learners_titlePapar PelajarView learners window titlemnu_viewPaparMenu bar Viewls_win_editclass_save_btnSimpanSave button on Edit Class popupls_win_editclass_cancel_btnBatalCancel button on Edit Class popupls_win_learners_close_btnTutupClose button on View Learners popupls_win_editclass_organisation_lblOrganisasiHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStafHeading for Staff list on Edit Class popupls_win_editclass_learners_lblPelajarHeading for Learners list on the Edit Class popupls_win_learners_heading_lblPelajar dalam kelas:Heading on View Learners window panel.td_desc_headingKontrol AdvanTodo tab description headingtd_desc_textGuna Tab Todo tidak diperlukan untuk menyempurnakan turutan. Sila lihat laman bantuan untuk maklumat lanjut <br> <br>Fitur ini telah berfungsi dengan penuh sekarang.Todo tab descriptionopt_activity_titleAktiviti PilihanTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesanak aktivitiNumber of child activities for Complex activity shown on canvas.ls_of_textdarii.e. 1 of 10 Used for showing how many learners have startedls_manage_txtUrus PelajaranHeading for Management section of Lesson Tabls_tasks_txtTugas DiperlukanHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnPergiGo button on contribute entry itemlearner_exportPortfolio_btnEksport PorfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblJadualLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityAdakah anda pasti untuk memaksa pelajar '{0}' yang telah selesai ke Aktiviti '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityAnda telah menjatuhkan pelajar '{0}' pada aktiviti sekarang atau aktviti '{1}' yang telah selesaiError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishAdakah anda pasti untuk memaksa pelajar '{0}' yang telah selesai untuk menamatkan pelajaran?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetSila jatuhkan pelajar '{0}' ke aktiviti atau tamatkan pelajaran.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGatePelajar Selesai:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipLengkapkan tugas ini sekarangtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipBantuantool tip message for help button in toolbarrefresh_btn_tooltipRelod data perkembangan terbaru untuk pelajartool tip message for the refresh buttonls_manage_editclass_btn_tooltipSunting senarai pelajar dan staf yang ditetapkan untuk pelajaran initool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipPapar semua pelajar yang ditetapkan untuk pelajaran initool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipUbah status pelajaran mengikut pilihan drop downtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksport portfolio kelas dan simpan di dalam komputer anda untuk rujukan masa depantool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksport portfolio pelajar dan simpan di dalam komputer anda untuk rujukan masa depantool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipMula pelajaran dengan segeratool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipJadualkan pelajaran untuk mula pada masa depantool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipKlik dua kali untuk reviu kontribusi dalam progres untuk aktiviti pelajar sekarangtool tip message for current activity iconcompleted_act_tooltipKlik dua kali untuk reviu kontribusi pelajar dalam aktiviti yang telah selesaitool tip message for completed activity iconal_doubleclick_todoactivityMaaf, pelajar: {0} tidak mencapai aktiviti: {1}, lagi.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartTiada tarikh dipilih. Sila pilih tarikh dan masa.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblMasa (Jam : Minit)Time fields title - Lesson details (manage section)al_validation_schtimeSila masukkan masa yang betul.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipUntuk memaksa pelajar yang telah selesai menamatkan pelajaran, tarik ikon pelajar ke bar ini dan lepaskan ikon tersebutRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityBuka Paparan AktivitiLabel for Custom Context Monitor Activityccm_monitor_activityhelpAwasi Bantuan AktivitiLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnEntri JurnalLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipPapar semua simpanan Entri Jurnal oleh pelajartool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL Pelajar:Learner URL:ls_manage_learnerExpp_lblBenarkan eksport portfolio untuk pelajarLabel for Enable export portfolio for Learnerls_confirm_expp_enabledEksport Portfolio telah dibenarkan untuk pelajar.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledEksport Portfolio telah dihilangkan untuk pelajar.Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgAnda telah memilih untuk Membuang pelajaran ini. Pelajaran yang telah dibuang tidak boleh diambil kembali. Sambung?remove confirm msgls_status_cmb_removeBuangLesson status option - Removels_status_removed_lblDibuangCurrent status description if deleted (removed) lesson.al_yesYaYes on the alert dialogal_noTidak'No' on the alert dialogls_remove_warning_msgAMARAN: Pelajaran ini akan dibuang. Adakah anda mahu teruskan?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} pelajarGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.check_avail_btnPeriksa KesediaanCheck Availability button labelcontinue_btnSambungContinue button labells_continue_lblHi {1}, anda tidak selesai menyunting {0}.Continue message labells_sequence_live_edit_btnSunting HidupLive Edit buttonls_sequence_live_edit_btn_tooltipSunting desain untuk pelajaran ini.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblPeriksa ...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblTiada, Cuba Lagi.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblMaaf, {0} sedan disunting oleh {1}.Warning message on Monitor locked screen.al_confirm_live_editAnda akan membuka Suntingan Hidup. Adakah anda mahu teruskan?Confirm warning (dialog) message displayed when opening Live Edit.al_sendHantarSend button label on the system error dialogabout_popup_title_lblTentang - {0}Title for the About Pop-up window.about_popup_version_lblVersiLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} adalah hakcipta Yayasan {0} ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblProgram ini adalah perisian percuma; anda boleh mengagihkan ia dan/atau mengubahnya dibawah terma GNU General Public License Versi 2 seperti yang diterbitkan oleh Free Software Foundation.Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKlik {0} untuk teruskan.Action label displayed when a user can proceed to Live Edit.ls_status_active_lblDicipta tetapi tidak dimulakan lagiCurrent status description if active (enabled)ls_status_disabled_lblDigantungCurrent status description if suspended (disabled)ls_status_started_lblDimulakanCurrent status description if started (enabled)ls_status_cmb_disableHilangkanLesson status option - Disable (suspend)about_popup_copyright_lbl© 2002-2008 Yayasan {0}.Label displaying copyright statement in About dialog.mv_search_default_txtMasukkan query carian atau nombor halamanThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.lbl_num_sequences{0} - TurutanNumber of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalidMaaf! Anda perlu memilih aktiviti sebelum anda klik menu Buka/Sunting Isi Aktiviti pada menu klik kanan aktiviti.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_error_msgSila masukkan query carian atau nombor halaman diantara 1 dengan {0}This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgNombor halaman mesti diantara 1 dan {0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0} tidak dijumpaiThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblHalaman {0} dari {1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblPergiIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lblPandangan IndexWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.close_mc_tooltipMinimizeTooltip message for close button on Branching canvas. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/nl_BE_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_manage_editclass_btn_tooltipDe lijst met de aan deze lijst toegewezen cursisten en medewerkers aanpasentool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipToont alle cursisten die aan deze les zijn toegewezentool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipVerander de status van deze les op basis van de selectie uit de lijsttool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusal_alertOpgeletGeneric title for Alert windowal_cancelAnnulerenTo Confirm title for LFErroral_confirmBevestigenTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDe taal-gegevens zijn niet geladenmessage for unsuccessful language loadingapp_chk_themeloadDe thema-gegevens zijn niet geladenmessage for unsuccessful theme loadingapp_fail_continueHet programma kan niet verder werken. Waarschuw ondersteuning/de helpdeskmessage if application cannot continue due to any errordb_datasend_confirmDank voor het naar de server sturen van gegevensMessage when user sucessfully dumps data to the servermnu_editWijzigenMenu bar Editmnu_edit_copyKopieerenMenu bar Edit &gt; Copymnu_edit_cutKnippenMenu bar Edit &gt; Cutmnu_edit_pastePlakkenMenu bar Edit &gt; Pastemnu_fileBestandMenu bar Filemnu_file_refreshVernieuwenMenu bar Refreshmnu_file_editclassCategorie aanpassenMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpHelpMenu bar Helpmnu_help_abtOverMenu bar Aboutperm_act_lblToestemmingLabel for permission gate activitysched_act_lblRoosterLabel for schedule gate activitysynch_act_lblSynchroniserenUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnnuleren2ws_dlg_location_buttonLokatieWorkspace dialogue Location btn labelws_tree_mywspMijn WerkplekThe root level of the treews_tree_orgsOrganisatiesShown in the top level of the tree in the workspacesys_error_msg_startDe volgens systeemfout is opgetreden:Common System error message starting linesys_error_msg_finishMogelijk moet u LAMS opnieuw opstarten voordat u door kunt. Wilt u de volgende informatie opslaan zodat wij de oorzaak van de fout kunnen proberen op te zoeken?Common System error message finish paragraphsys_errorSysteemfoutSystem Error elert window titlemnu_file_scheduleRoosterMenu bar Schedulemnu_file_exitAfsluitenMenu bar Exitmnu_view_learnersCursisten...Menu bar Learnersmnu_goGaanMenu bar Gomnu_go_lessonLesMenu bar Go to Lesson Tabmnu_go_scheduleRoosterMenu bar Go to Schedule Tabmnu_go_learnersCursistenMenu bar Go to Learners Tabmnu_go_todoTe doenMenu bar Todomnu_help_helpBewaak-hulpMenu bar Help itemrefresh_btnVernieuwenRefresh buttonhelp_btnHelpHelp buttonmtab_lessonLesMonitor Lesson details tabmtab_seqOpeenvolgingMonitor Sequence tabmtab_learnersCursistenMonitor Learners tabmtab_todoTe doenMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblCursisten:Learner label - Lesson detailsls_class_lblCategorie:Class label - Lesson detailsls_manage_class_lblCategorie:Class managing label - Lesson detailsls_manage_status_lblStatus wijzigen:Status managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnCursisten bekijkenView learners button - Lesson details (manage section)ls_manage_editclass_btnCategorie wijzigenEdit class button - Lesson details (manage section)ls_manage_apply_btnToepassenStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblCursist toestaan portfolio te exporterenLabel for Enable export portfolio for Learnerls_confirm_expp_enabledCursisten kunnen hun portfolio nu exporterenConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledCursisten kunnen hun portfolio nu NIET exporterenConfirmation message on disabling export portfolio for learnersls_manage_schedule_btnRoosterSchedule start button - Lesson details (manage section)ls_manage_start_btnNu startenStart immediately button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblVerstreken periode:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbStatus selecteren:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateActiverenLesson status option - Activatels_status_cmb_disableUitschakelenLesson status option - Disable (suspend)ls_status_cmb_enableActiefLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiefLesson status option - Archivels_status_active_lblAangemaakt maar nog niet gestartCurrent status description if active (enabled)ls_status_disabled_lblBevrorenCurrent status description if suspended (disabled)ls_status_archived_lblGearchiveerdCurrent status description if archviedls_status_started_lblGestartCurrent status description if started (enabled)ls_win_editclass_titleCategorie wijzigenEdit class window titlels_win_learners_titleCursisten bekijkenView learners window titlemnu_viewBeeldMenu bar Viewls_win_editclass_save_btnOpslaanSave button on Edit Class popupls_win_editclass_cancel_btnAnnulerenCancel button on Edit Class popupls_win_learners_close_btnAfsluitenClose button on View Learners popupls_win_editclass_organisation_lblOrganisatieHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblStafledenHeading for Staff list on Edit Class popupls_win_editclass_learners_lblCursistenHeading for Learners list on the Edit Class popupls_win_learners_heading_lblCursisten in de klas:Heading on View Learners window panel.td_desc_headingGeavanceerde opties:Todo tab description headingtd_desc_textHet gebruik van deze TeDoen-tab is niet nodig om de reeks af te maken. Zie de helppagina voor meer informatie. <br><br>Deze optie is nu volledig bruikbaar.Todo tab descriptionopt_activity_titleOptionele activiteitTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesOnderliggende activiteitenNumber of child activities for Complex activity shown on canvas.ls_of_textvan dei.e. 1 of 10 Used for showing how many learners have startedls_manage_txtLes beherenHeading for Management section of Lesson Tabls_tasks_txtBenodigde takenHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnUitvoerenGo button on contribute entry itemlearner_exportPortfolio_btnPortfolio exporterenLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_sendVerzendenSend button label on the system error dialogccm_monitor_activityActiviteitenmonitor openenLabel for Custom Context Monitor Activityccm_monitor_activityhelpActiviteitenbeheer helpLabel for Custom Context Monitor Activity Helpal_validation_schstartEr is geen datum gekozen. Selecteer een datum en tijd.Message when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityWeet u zeker dat u cursist '{0}' wil verplichten activiteit '{1}' te maken?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityU heeft cursist '{0}' op zijn huidige of afgemaakt activiteit '{1} laten vallen.'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishWeet u zeker dat u cursist '{0}' naar het eind van de les wil forceren?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetLaat cursist '{0}' op een activiteit of eind van de les vallen.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateCursisten die klaar zijn:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblTijd (Uren : Minuten)Time fields title - Lesson details (manage section)ls_learnerURL_lblURL van de cursist:Learner URL:ls_status_scheduled_lblGeplandLesson status option - Scheduled (Not Started)goContribute_btn_tooltipDeze taak nu afmakentool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHelptool tip message for help button in toolbarrefresh_btn_tooltipDe gegevens over voortgang van de cursisten actualiserentool tip message for the refresh buttonclass_exportPortfolio_btn_tooltipExporteer de portfolio van de klas en sla de gegevens op op uw eigen computer, zodat u er later gebruik van kunt makentool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExporteer de portfolio van de cursist en sla de gegevens op op uw eigen computer, zodat u er later gebruik van kunt makentool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipDe les direct startentool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipBepalen op welke datum/tijd de les moet startentool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDubbelklik om de actuele bijdrages van de cursist te bekijkentool tip message for current activity iconcompleted_act_tooltipDubbelklik om de afgeronde activiteiten van de cursist te bekijkentool tip message for completed activity iconal_validation_schtimeVoer een geldige tijd in.Alert message when user enters an invalid time for schedule startfinish_learner_tooltipOm een cursist naar het eind van een les te forceren, sleept u het cursist-icoon naar deze balk en laat u de muisknop losRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnLogboekLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipLogboeken van alle cursisten bekijkentool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_doubleclick_todoactivitySorry, cursist: {0} heeft activitei: {1}, nog niet bereikt.alert message when user double click on the todo activity in the sequence under learner tablearners_group_name{0} cursistenGroup name for the class's learners group.ls_remove_confirm_msgU heeft ervoor gekozen deze les te verwijderen. Verwijderde lessen kunnen niet terug gehaald worden. Doorgaan?remove confirm msgls_status_cmb_removeVerwijderenLesson status option - Removels_status_removed_lblVerwijderdCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNee'No' on the alert dialogls_remove_warning_msgWAARSCHUWING: de les gaat verwijderd worden. Wilt u hem in het archief opslaan?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_name{0} medewerkersGroup name for the class's staff group.check_avail_btnBeschikbaarheid controlerenCheck Availability button labelcontinue_btnDoorgaanContinue button labells_continue_lblBeste {1}, je bent nog niet klaar met het wijzigen van {0}.Continue message labells_sequence_live_edit_btnRealtime wijzigenLive Edit buttonls_sequence_live_edit_btn_tooltipHet ontwerp van de les wijzigen.Tool tip message for Live Edit buttonmsg_bubble_check_action_lblControle loopt...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblOnbeschikbaar. Probeer het nogmaals.Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblSorry, {0} wordt momenteel bewerkt door {1}.Warning message on Monitor locked screen.al_confirm_live_editU staat op het punt realtime te gaan wijzigen. Doorgaan?Confirm warning (dialog) message displayed when opening Live Edit.about_popup_title_lblOver - {0}Title for the About Pop-up window.about_popup_version_lblVersieLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2007 Stichting {0} .Label displaying copyright statement in About dialog.about_popup_trademark_lbl{0} is een handelsmerk van {0} stichting ( {1} ).Label displaying the trademark statement in the About dialog.about_popup_license_lblDit programma valt onder de Vrije Software; u mag het verspreiden en/of aanpassen onder de voorwaarden van de GNU General Public License versie 2 zoals gepubliceerd door de Free Software Foundation. <br><br> {0}Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKlik {0} om door te gaan.Action label displayed when a user can proceed to Live Edit. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/no_NO_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_error_forcecomplete_to_different_seq{0} kan ikke bli overført til en aktivitet som er i en annen gren eller sekvenslearner_viewJournals_btn_tooltipSe på alle journaler som er skrevet av studenteneabout_popup_trademark_lbl{0} er varemerket til {0} Stiftelse ({1}).ls_seq_status_perm_gateTilgangs port. Åpnes av foreleser.mv_search_error_msgVennligst start et søke eller sett inn et sidenummer med en tallverdi mellom 1 og {0}ls_seq_status_sched_gateTidsstyrt portsys_error_msg_finishDu må kanskje starte om LAMS forfatter for å fortsette. Ønsker du å lagre informasjon om dette problemet for å hjelpe oss å rette feilen ?al_activity_openContent_invalidBeklager ! Du må velge en aktivitet før du velger Åpne/Rediger Aktivitets Innhold meny punktet.mnu_go_sequenceSekvensls_manage_learnerExpp_lblKoble til eksport av mapper for studentenorder_learners_by_completion_lblList opp etter ferdigstillelsels_manage_apply_btnBruklearners_group_name{0} studenterls_learnerURL_lblStudentens URL:ls_status_active_lblUtarbeidet, men ikke startetls_manage_status_lblEndre status:ls_manage_start_btnStart nålbl_num_activities{0} - aktiviteterlearner_viewJournals_btnJournaleral_validation_schtimeVennligst angi et gyldig tidspunkt.mnu_editRedigermnu_file_editclassRediger klassels_win_editclass_titleRediger klassels_manage_editclass_btn_tooltipRediger listen for studenter og forelesere for denne aktivitetenls_win_editclass_staff_lblForeleserestaff_group_name{0} forelesere i kontroll modusbranch_mapping_dlg_conditions_dgd_lblBetingelseropt_activity_titleAlternativ aktivitetls_of_textavls_manage_txtAdministrer leksjonls_tasks_txtPålagte oppgavertd_goContribute_btnStartlearner_exportPortfolio_btnEksporter mappeal_validation_schstartDet er ikke angitt noen dato. Vennligst velg dato og tidspunkt.al_confirm_forcecomplete_toactivityEr du sikker på at du ønsker å flytte studenten '{0}' til aktivitet '{1}' ?al_error_forcecomplete_invalidactivityDu har flyttet studenten '{0}' til enten den nåværende eller til den ferdige aktiviteten'{1}'al_confirm_forcecomplete_tofinishEr du sikker på at du ønsker å flytte studenten '{0}' til slutten av leksjonen ?al_error_forcecomplete_notargetVenligst flytt studenten '{0}' til en aktivitet eller på slutten av leksjonen.title_sequencetab_endGateFerdige studenter:ls_manage_time_lblTid (Timer:Minutter)ls_status_scheduled_lblPlanlagt tidgoContribute_btn_tooltipFullfør denne oppgaven nåhelp_btn_tooltipHjelprefresh_btn_tooltipLast inn de siste fremdriftsdata for studentenels_manage_learners_btn_tooltipViser alle studenter som er knyttet til denne leksjonenls_manage_apply_btn_tooltipEndre status for denne leksjonen med informasjon fra menyenclass_exportPortfolio_btn_tooltipEksporter klassens mappe og lagre den på din datamaskin for senere referanselearner_exportPortfolio_btn_tooltipEksporter elevens mappe og lagre den på din datamaskin for senere referansels_manage_start_btn_tooltipStart leksjonen omgåendels_manage_schedule_btn_tooltipPlanlegg at leksjonen skal starte senerecurrent_act_tooltipDobbeltklikk for å se fremdriften for studentens nåværende aktivitetcompleted_act_tooltipDobbeltklikk for å se innholdet i studentens ferdigstilte aktivitetal_doubleclick_todoactivityBeklager, studenten {0} har ikke nådd fram til aktiviteten: {1} enda.al_cancelAvbrytal_confirmBekreftal_okOKapp_chk_themeloadTema data er ikke lastet inn.app_fail_continueProgrammet kan ikke fortsette. Vennligst kontakt brukerstøtten.db_datasend_confirmTakk for at data er sendt til server.mnu_edit_copyKopiermnu_edit_cutKlipp utmnu_edit_pasteLim innmnu_fileFilmnu_file_refreshFrisk oppmnu_file_startStartmnu_helpHjelpmnu_help_abtOmperm_act_lblTilgangsched_act_lblTidsplansynch_act_lblSynkroniserws_RootRotws_dlg_cancel_buttonAvbrytws_dlg_location_buttonStedws_tree_mywspMitt arbeidsområdews_tree_orgsOrganisasjonersys_error_msg_startDen følgende system feilen har oppstått:sys_errorSystem feilmnu_file_scheduleTidsplanmnu_file_exitGå utmnu_view_learnersStudenter...mnu_goStartmnu_go_lessonLeksjonmnu_go_scheduleTidsplanmnu_go_learnersStudentermnu_go_todoMå gjøresmnu_help_helpHjelprefresh_btnFrisk opphelp_btnHjelpmtab_lessonLeksjonmtab_seqSekvensmtab_learnersStudentermtab_todoHuskelistels_status_lblStatus:ls_learners_lblStudenter:ls_class_lblKlasse:ls_manage_class_lblKlasse:ls_manage_start_lblStart:ls_manage_learners_btnSe på studenterls_manage_schedule_btnTidsplanls_manage_date_lblDatols_duration_lblMedgått tid:ls_manage_status_cmbVelg status:ls_status_cmb_activateAktiverls_status_cmb_disableKoble frals_status_cmb_enableAktivls_status_cmb_archiveArkiverls_status_disabled_lblKoblet frals_status_archived_lblArkivertls_status_started_lblStartetls_win_learners_titleSe på studentermnu_viewSe påls_win_editclass_save_btnLagrels_win_editclass_cancel_btnAngrels_win_learners_close_btnLukkls_win_editclass_organisation_lblOrganisasjonls_win_editclass_learners_lblStudenterls_win_learners_heading_lblStudenter i klassen:td_desc_headingAvanserte kontroller:td_desc_textDet er ikke behov for å benytte denne huskelisten for å gjøre ferdig sekvensen. Konferer hjelpesidene for mer informasjon.<br><br>. Denne egenskapen er nå i funksjon.ccm_monitor_activityÅpne kontroll modusccm_monitor_activityhelpHjelpls_manage_editclass_btnRediger klassels_continue_lblOoops ! {1}, du har ikke gjort deg ferdig med å redigere {0}.ls_sequence_live_edit_btn_tooltipRediger dette designet for denne leksjonen.support_act_titleBrukerstøtte aktivitetal_error_forcecomplete_support_actKan ikke tvinge en student til en brukerstøtte aktivitetfinish_learner_tooltipFor å kunne flytte en student til siste del av leksjonen, så flytt student ikonet over dette skillet.about_popup_title_lblOM - {0}about_popup_version_lblVersjonstream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txtstream_urlhttp://{0}foundation.orgabout_popup_license_lblDenne programvaren er en fri programmvare, du kan distribuere den videre og/eller endre denne så lenge betingelsene i GNU General Public License versjon 2, utgitt av Free Software Foundation, følges.ls_remove_confirm_msgDu har valgt å slette denne leksjonen. Slettede leksjoner kan ikke hentes inn igjen. Vil du fortsette ?ls_status_cmb_removeFjernls_status_removed_lblFjernetal_yesJaal_noNeicheck_avail_btnKontroller tilgjengelighetcontinue_btnFortsettls_sequence_live_edit_btnAktuell endringmsg_bubble_check_action_lblKontrollerer....msg_bubble_failed_action_lblIkke tilgjengelig, forsøk igjen.ls_locked_msg_lblBeklager {0} er i ferd med å bli endret av {1}.al_confirm_live_editDu er i ferd med å åpne for endringer. Ønsker du å fortsette ?al_sendSendls_continue_action_lblKlikk på {0} for å fortsette.app_chk_langloadSpråkdata er ikke lastet inn.competences_mapped_to_act_lblKompetanse som er tilknyttet {0}mv_search_default_txtStart et søk eller sett inn et sidenummermv_search_invalid_input_msgSidenummeret må være mellom 1 og {0}mv_search_not_found_msg{0} ble ikke funnetmv_search_current_page_lblSide {0} av {1}lbl_num_sequences{0} sekvensermv_search_go_btn_lblStart søkmv_search_index_view_btn_lblOversiktclose_mc_tooltipMinimerls_seq_status_moderationOrdstyrerls_seq_status_define_laterDefineres senerels_seq_status_choose_groupingVelg grupperingls_seq_status_contributionBidragls_seq_status_system_gateStopp punktls_seq_status_not_setIkke bestemt endabranch_mapping_dlg_branch_col_lblGrenbranch_mapping_dlg_condition_col_lblForutsettningerbranch_mapping_dlg_group_col_lblGruppeccm_monitor_view_group_mappingsSe på grupper og grenerccm_monitor_view_condition_mappingsSe på forutsettningene for grenercv_activity_helpURL_undefinedFinner ikke hjelpesiden for {0}cv_design_unsaved_live_editEndringer som ikke er lagret vil bli lagret automatisk. Ønsker du å fortsette med å sette inn ?label.grouping.general.instructions.branchingDu kan ikke legge til eller fjerne grupper her fordi den inngår i en grenaktivitet. Du kan kun endre antall brukere i gruppene.al_alertVarsells_remove_warning_msgAdvarsel ! Leksjonen er i ferd med å bli fjernet. Vil du beholde denne ?ls_seq_status_synch_gateSynkroniserings portls_seq_status_teacher_branchingValg av gren. Utføres av foreleserabout_popup_copyright_lbl© 2002-2009 {0} Stiftelse.competence_title_lblTittelcompetence_desc_lblBeskrivelsels_confirm_expp_enabledEksport av mapper er nå tilkoblet for studentenels_confirm_expp_disabledEksport av mapper er frakoblet for studenteneal_activity_view_competence_mappings_invalidVennligst kontroller at du har valgt en aktivitet før du forsøker å se på kompetanse sammenligningene. ls_manage_presenceEnabled_lblTillat studentene å se hva som er on-linels_confirm_presence_enabledStudentene kan se hvem som er on-linels_confirm_presence_disabledStudentene kan ikke se hvem som er on-lineview_competences_dlgSe kompetanse al_confirm_forcecomplete_to_end_of_branching_seqEr du sikker på at du vil overføre studenten {0} til slutten av denne gren-sekvensen ?view_act_mapped_competencesSe på kompetanse som er tilordnet aktiviteterview_competences_in_ld_lblKompetanse som er tilknyttet designet {0}mapped_competences_lblKompetanse tilknyttet aktiviteterls_win_learners_heading_class_lblKlassels_win_learners_heading_activity_lblAktivitetlearner_plus_tooltip{0} studenter. Dobbeltklikk for å se hele listen.view_time_graph_btnSe tidsplanview_time_graph_btn_tooltipSe på en graf som viser studentens fremdrift i henhold til tidsplanview_time_chart_btnSe tidsplanview_time_chart_btn_tooltipSe en graf som viser studentens fremdrift i henhold til planlagt tidsplan for hver aktivitet.msg_no_learners_in_lessonDet må velges en eller flere studenter.ls_manage_presenceImEnabled_lblKoble til meldingstjenestels_confirm_presence_im_enabledMeldingstjenesten er tilkobletls_confirm_presence_im_disabledMeldingstjenesten er frakoblet \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/pl_PL_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertUwagaGeneric title for Alert windowal_cancelAnulujTo Confirm title for LFErroral_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadDane językowe nie zostały załadowanemessage for unsuccessful language loadingapp_chk_themeloadTemat nie został załadowanymessage for unsuccessful theme loadingapp_fail_continueProgram nie może kontynuuować. Skontaktuje się z administratoremmessage if application cannot continue due to any errordb_datasend_confirmDane zostały wysłaneMessage when user sucessfully dumps data to the servermnu_editEdycjaMenu bar Editmnu_edit_copyKopiujMenu bar Edit &gt; Copymnu_edit_cutWytnijMenu bar Edit &gt; Cutmnu_edit_pasteWklejMenu bar Edit &gt; Pastemnu_filePlikMenu bar Filemnu_file_refreshOdświeżMenu bar Refreshmnu_file_editclassEdytuj klasęMenu bar Edit Classmnu_file_startStartMenu bar Startmnu_helpPomocMenu bar Helpmnu_help_abtO...Menu bar Aboutperm_act_lblPozwolenieLabel for permission gate activitysched_act_lblPlanLabel for schedule gate activitysynch_act_lblSynchronizujUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAnuluj2ws_dlg_location_buttonLokalizacjaWorkspace dialogue Location btn labelws_tree_mywspMoje ProjektyThe root level of the treews_tree_orgsOrganizacjeShown in the top level of the tree in the workspacesys_error_msg_startWystąpił następujący bład systemuCommon System error message starting linesys_error_msg_finishMusisz ponownie uruchomić moduł Autora systemu LAMS. Czy chcesz zapisać informacje na temat błedu aby go naprawić ?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titlemnu_file_schedulePlanMenu bar Schedulemnu_file_exitWyjścieMenu bar Exitmnu_view_learnersStudenci...Menu bar Learnersmnu_goIdź doMenu bar Gomnu_go_lessonLekcjaMenu bar Go to Lesson Tabmnu_go_scheduleSekwencjaMenu bar Go to Schedule Tabmnu_go_learnersPostępMenu bar Go to Learners Tabmnu_go_todoDo zrobieniaMenu bar Todomnu_help_helpPomocMenu bar Help itemrefresh_btnOdświeżRefresh buttonhelp_btnPomocHelp buttonmtab_lessonLekcjaMonitor Lesson details tabmtab_seqSekwencjaMonitor Sequence tabmtab_learnersPostępMonitor Learners tabmtab_todoDo zrobieniaMonitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblStudenci:Learner label - Lesson detailsls_class_lblKlasa:Class label - Lesson detailsls_manage_class_lblKlasa:Class managing label - Lesson detailsls_manage_status_lblStatus:Status managing label - Lesson detailsls_manage_start_lblStart:Start managing label - Lesson detailsls_manage_learners_btnPokaż studentówView learners button - Lesson details (manage section)ls_manage_editclass_btnEdytuj klasęEdit class button - Lesson details (manage section)ls_manage_apply_btnPotwierdźStatus Apply button - Lesson details (manage section)ls_manage_learnerExpp_lblUmożliwia eksport portfolio studentaLabel for Enable export portfolio for Learnerls_confirm_expp_enabledEksport portfolio został włączony dla studentówConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledEksport portfolio został wyłączony dla studentówConfirmation message on disabling export portfolio for learnersls_manage_schedule_btnPlanSchedule start button - Lesson details (manage section)ls_manage_start_btnUruchomStart immediately button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblCzas trwania:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbWybierz:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktywujLesson status option - Activatels_status_cmb_disableZatrzymajLesson status option - Disable (suspend)ls_status_cmb_enableUruchomLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArchiwizujLesson status option - Archivels_status_active_lblAktywnaCurrent status description if active (enabled)ls_status_disabled_lblZawieszonaCurrent status description if suspended (disabled)ls_status_archived_lblArchilwalnaCurrent status description if archviedls_status_started_lblUruchomionaCurrent status description if started (enabled)ls_win_editclass_titleEdycja klasyEdit class window titlels_win_learners_titleWidok studentówView learners window titlemnu_viewWidokMenu bar Viewls_win_editclass_save_btnZapiszSave button on Edit Class popupls_win_editclass_cancel_btnAnulujCancel button on Edit Class popupls_win_learners_close_btnZamknijClose button on View Learners popupls_win_editclass_organisation_lblOrganizacjaHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblPracownicyHeading for Staff list on Edit Class popupls_win_editclass_learners_lblStudenciHeading for Learners list on the Edit Class popupls_win_learners_heading_lblStudenci w klasie:Heading on View Learners window panel.td_desc_headingOpcje zaawansowaneTodo tab description headingtd_desc_textAby zakończyć sekwencję nie trzeba używać zakładki Do Zrobienia. Aby uzyskać więcej informacji zobacz pomocTodo tab descriptionopt_activity_titleAktywność opcjonalnaTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesAktywności podrzędneNumber of child activities for Complex activity shown on canvas.ls_of_textzi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtOpcje lekcjiHeading for Management section of Lesson Tabls_tasks_txtWymagane zadaniaHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnIdźGo button on contribute entry itemlearner_exportPortfolio_btnEksport portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataccm_monitor_activityMonitoruj aktywnośćLabel for Custom Context Monitor Activityccm_monitor_activityhelpPomoc dla monitoringu aktywnościLabel for Custom Context Monitor Activity Helpal_validation_schstartNie wybrano daty. Wybierz datę i czasMessage when no date is selected for starting a lesson by schedule.al_confirm_forcecomplete_toactivityCzy na pewno chcesz zmusić studenta '{0}' do zakończenia aktywności '{1}' ?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityPrzesunałęś studenta '{0}' albo na aktywność bieżącą albo na aktywność '{1}' którą już zakończyłError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishCzy na pewno chcesz zmusić studenta '{0}' do zakończenia lekcji ?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetPrzesuń studenta '{0}' na aktywność lub zakończ lekcjęError Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateStudenci którza zakończyli pracęTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_manage_time_lblCzas (Godziny : Minuty)Time fields title - Lesson details (manage section)ls_learnerURL_lblURL studentaLearner URL:ls_status_scheduled_lblZaplanowanaLesson status option - Scheduled (Not Started)goContribute_btn_tooltipZakończ natychmiast zadanietool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipPomoctool tip message for help button in toolbarrefresh_btn_tooltipZaładuj ponownie ostatnie dane postępu dla studentówtool tip message for the refresh buttonls_manage_editclass_btn_tooltipEdycja listy studentów i pracowników przypisanych do lekcjitool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipPokaż wszystkich studentów przypisanych do tej lekcjitool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipZmień status lekcji korzystając z listy rozwijanejtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipEksportuj portfolio klasy i zapisz je na swoim kompuerze w celu ponownego użycia w przyszłościtool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipEksportuj portfolio studenta i zapisz je na swoim kompuerze w celu ponownego użycia w przyszłościtool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipUruchom natychmiast lekcję tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipPlan lekcji do uruchomienia w przyszłościtool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipPodwójne kliknięcie aby zobaczyć postępy studenta dla danej aktywnościtool tip message for current activity iconcompleted_act_tooltipPodwójne kliknięcie aby zobaczyć postępy studenta dla zakończonej aktywnościtool tip message for completed activity iconal_validation_schtimeWprowadź poprawny format czasuAlert message when user enters an invalid time for schedule startfinish_learner_tooltipAby zmusić studenta do zakończenia lekcji, przeciągnij i upuść ikonę studenta na tą belkęRollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btnWpisy do dziennikaLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipPokaż wszystkie wpisy do dziennikatool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.al_doubleclick_todoactivityStudent: {0} nie osiągnął jeszcze aktywności: {1}alert message when user double click on the todo activity in the sequence under learner tablearners_group_nameStudenci {0}Group name for the class's learners group.ls_remove_confirm_msgCzy chcesz usunąć zaznaczoną lekcję ? Lekcja zostanie utracona bezpowrotnieremove confirm msgls_status_cmb_removeUsuńLesson status option - Removels_status_removed_lblUsuniętaCurrent status description if deleted (removed) lesson.al_yesTakYes on the alert dialogal_noNie'No' on the alert dialogls_remove_warning_msgUwaga! Lekcja zostanie usunięta. Czy chcesz przechować ją w archiwum ?Message for the alert dialog which appears following confirmation dialog for removing a lesson.staff_group_nameKadra {0}Group name for the class's staff group.check_avail_btnSprawdź dostępnośćCheck Availability button labelcontinue_btnDalejContinue button labells_continue_lblHej {1}, nie zakończono edycji {0}Continue message labells_sequence_live_edit_btnEdycja na żywoLive Edit buttonls_sequence_live_edit_btn_tooltipEdycja projektu dla tej lekcjiTool tip message for Live Edit buttonmsg_bubble_check_action_lblSprawdzanie...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblNiedostępne, Spróbuj ponownieLabel displayed when check failed i.e. lesson is still locked.ls_locked_msg_lblNiestety, {0} jest właśnie edytowane przez {1}Warning message on Monitor locked screen.al_confirm_live_editZa chwilę rozpoczniesz Edycję na żywo. Czy chesz kontynuować ?Confirm warning (dialog) message displayed when opening Live Edit.al_sendWysłanoSend button label on the system error dialogabout_popup_title_lblO - {0}Title for the About Pop-up window.about_popup_version_lblWersjaLabel displaying the version no on the About dialog.about_popup_trademark_lbl{0} jest znakiem firmowym {0} Fundacji ( {1} )Label displaying the trademark statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.gpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_urlhttp://{0}foundation.orgURL address for the application stream.ls_continue_action_lblKliknij {0} aby kontynuowaćAction label displayed when a user can proceed to Live Edit.about_popup_license_lblTen program jest darmowy, może być dystrybuowany i/lub modyfikowany na zasadach licencji GNU General Public License wersja 2 - Free Software Foundation Label displaying the license statement in the About dialog.al_confirm_forcecomplete_to_end_of_branching_seqCzy na pewno chcesz zakończyć sekwencje studenta {0} ?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.about_popup_copyright_lbl@ 2002-2008 {0} FundacjaLabel displaying copyright statement in About dialog.close_mc_tooltipMinimalizujTooltip message for close button on Branching canvas.mv_search_current_page_lblStrona {0} z {1}{0} is the page we are on now and {1} is the number of pagesmv_search_not_found_msg{0} nie znaleziono.This message appears when the search does not find any learners whose names contain the search parameter.mv_search_index_view_btn_lblIndeksWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.lbl_num_sequences{0} - SekwencjiNumber of child sequence or Optional Sequences activity shown on canvas.mv_search_invalid_input_msgZakres stron musi być z przedziału od 1 do {0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_default_txtWpisz szukaną frazę lub numer stronyThe text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msgProszę podać szukaną frazę lub numer strony z zakresu od 1 do {0}This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_go_btn_lblSzukajIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.al_activity_openContent_invalidPrzed wybraniem polecenia Otwórz/Edycja należy zaznaczyć właściwą aktywność. Menu aktywności po kliknięciu prawym przyciskiem myszy na aktywności.alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasal_error_forcecomplete_to_different_seqStudent {0} nie może zostać przeniosiony na aktywność (inna gałąź lub inna sekwencja)This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderationModeracjaDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_laterZdefiniuj późniejOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_synch_gateOtwierana synchronicznieA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_perm_gateOtwierana przez nauczycielaA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_choose_groupingWybierz grupowanieAllows the Teacher to add the learners to chosen groupsls_seq_status_contributionDodatkiAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_teacher_branchingWybierana przez nauczycielaA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_setBrak ustawieńThe value of the sequence's status is not setls_seq_status_sched_gateOtwierana czasowoA type of Gate Activity where progress depends on time (start time and/or end time)ls_seq_status_system_gateBrama systemowaA System Gate is a stop point that can be controlled by time setting or user control \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/pt_BR_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertAlertaGeneric title for Alert windowal_cancelCancelarTo Confirm title for LFErroral_confirmConfirmarTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadOs dado do idioma não foram carregadosmessage for unsuccessful language loadingapp_chk_themeloadOs dados do tema não foram carregadosmessage for unsuccessful theme loadingapp_fail_continueA aplicação não pode continar. Favor contactar o suportemessage if application cannot continue due to any errordb_datasend_confirmObrigado por enviar dados para o servidorMessage when user sucessfully dumps data to the servermnu_editEditarMenu bar Editmnu_edit_copyCopiarMenu bar Edit &gt; Copymnu_edit_cutRecortarMenu bar Edit &gt; Cutmnu_edit_pasteColarMenu bar Edit &gt; Pastemnu_fileArquivoMenu bar Filemnu_file_refreshAtualizarMenu bar Refreshmnu_file_editclassEditar ClasseMenu bar Edit Classmnu_file_startIniciarMenu bar Startmnu_helpAjudaMenu bar Helpmnu_help_abtSobreMenu bar Aboutperm_act_lblPermissãoLabel for permission gate activitysched_act_lblAgendaLabel for schedule gate activitysynch_act_lblSincronizarUsed as a label for the Synch Gate Activity Typews_RootRaizRoot folder title for workspacews_dlg_cancel_buttonCancelar2ws_dlg_location_buttonLocalWorkspace dialogue Location btn labelws_tree_mywspMeus Espaço de TrabalhoThe root level of the treews_tree_orgsOrganizaçõesShown in the top level of the tree in the workspacesys_error_msg_startO seguinte erro de sistem ocorreu:Common System error message starting linesys_error_msg_finishVocê talvez necessite reiniciar esta janela do navegador para continuar. Você deseja salvar a informação vinda deste erro para ajudar a solucionar este problema?Common System error message finish paragraphsys_errorErro de SistemaSystem Error elert window titlemnu_file_scheduleAgendaMenu bar Schedulemnu_file_exitSairMenu bar Exitmnu_view_learnersAlunos...Menu bar Learnersmnu_goIrMenu bar Gomnu_go_lessonLiçãoMenu bar Go to Lesson Tabmnu_go_scheduleAgendaMenu bar Go to Schedule Tabmnu_go_learnersAlunosMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpAjudaMenu bar Help itemrefresh_btnAtualizaRefresh buttonhelp_btnAjudaHelp buttonmtab_lessonLiçãoMonitor Lesson details tabmtab_seqSeqüênciaMonitor Sequence tabmtab_learnersAlunosMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblEstadoStatus label - Lesson detailsls_learners_lblAlunos:Learner label - Lesson detailsls_class_lblClasse:Class label - Lesson detailsls_manage_class_lblClasse:Class managing label - Lesson detailsls_manage_status_lblEstado:Status managing label - Lesson detailsls_manage_start_lblInício:Start managing label - Lesson detailsls_manage_learners_btnVisualizar Alunos:View learners button - Lesson details (manage section)ls_manage_editclass_btnEditar ClasseEdit class button - Lesson details (manage section)ls_manage_apply_btnAplicarStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnAgendaSchedule start button - Lesson details (manage section)ls_manage_start_btnIniciar agoraStart immediately button - Lesson details (manage section)ls_manage_date_lblDataDate field title - Lesson details (manage section)ls_duration_lblTempo decorridoElapsed duration of lesson - Lesson detailsls_manage_status_cmbSeleciona estadoStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAtivadoLesson status option - Activatels_status_cmb_disableDesativadoLesson status option - Disable (suspend)ls_status_cmb_enableAtivoLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArquivoLesson status option - Archivels_status_active_lblAtivoCurrent status description if active (enabled)ls_status_disabled_lblSuspensoCurrent status description if suspended (disabled)ls_status_archived_lblArquivoCurrent status description if archviedls_status_started_lblComeçadoCurrent status description if started (enabled)ls_win_editclass_titleEditar ClasseEdit class window titlels_win_learners_titleVisualizar AlunosView learners window titlemnu_viewVisualizarMenu bar Viewls_win_editclass_save_btnSalvarSave button on Edit Class popupls_win_editclass_cancel_btnCancelarCancel button on Edit Class popupls_win_learners_close_btnFecharClose button on View Learners popupls_win_editclass_organisation_lblOrganizaçãoHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblDocenteHeading for Staff list on Edit Class popupls_win_editclass_learners_lblAlunosHeading for Learners list on the Edit Class popupls_win_learners_heading_lblAlunos na classe:Heading on View Learners window panel.td_desc_headingControles Avançados:Todo tab description headingtd_desc_textO uso da Aba Todo não é necessário para completar a seqüência. Veja a página de ajuda para maiores informações.<br><br>Esta opção agora é totalmente funcional.Todo tab descriptionopt_activity_titleAtividade OpcionalTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesatividades filhasNumber of child activities for Complex activity shown on canvas.ls_of_textdei.e. 1 of 10 Used for showing how many learners have startedls_manage_txtGerenciar LiçãoHeading for Management section of Lesson Tabls_tasks_txtTarefas NecessáriasHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnIrGo button on contribute entry itemlearner_exportPortfolio_btnExportar PortfólioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblAgendaLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityVocê tem certeza que você quer forçar o aluno a completar '{0}' para a Atividade '{1}'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityVocê soltou o aluno '{0}' na atividade atual ou na atividade completadaError message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishVocê tem certeza que você quer forçar o aluno a completar '{0}' para o fim da lição? Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetFavor arrastar e soltar o aluno '{0}' sobre a atividade ou sobre o fim da lição.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateAluno que terminaramTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipCompletar esta tarefa agoratool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipAjudatool tip message for help button in toolbarrefresh_btn_tooltipRecarregar os dados de progresso mais recentes dos alunostool tip message for the refresh buttonls_manage_editclass_btn_tooltipEditar a lista de alunos e docentes designados para esta liçãotool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipMostra todos os alunos designados para esta liçãotool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipMuda o estado desta lição com base na seleção do menu suspensotool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportar este portfólio da classe e salvar no computador para referência futuratool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportar este portfólio do aluno e salvar no computador para referência futuratool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipIniciar a lição imediatamentetool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipAgendar uma lição para iniciar no futurotool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipClicar duas vezes para rever o progresso da contribuição para o aluno da atividade atualtool tip message for current activity iconcompleted_act_tooltipClicar duas vezes para rever a contribuição para o aluno da atividade completadatool tip message for completed activity iconal_doubleclick_todoactivityDesculpe aluno: {0} não alcançou a atividade: {1} ainda.alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartNenhuma data foi selecionada. Favor selecionar a data e a hora.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTempo (Horas : Minutos)Time fields title - Lesson details (manage section)al_validation_schtimeFavor digitar um valor (tempo) válido.Alert message when user enters an invalid time for schedule startfinish_learner_tooltippara forçar o aluno a completar a lição até o final, arraste e solte o ícone do aluno sobre esta barra Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityAtividade de monitoração abertaLabel for Custom Context Monitor Activityccm_monitor_activityhelpAjuda da atividade monitoradaLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnEntradas de jornaisLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVer todos os Jornais salvos pelos alunostool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL do alunoLearner URL:ls_manage_learnerExpp_lblHabilita exportar Portfólio para alunoLabel for Enable export portfolio for Learnerls_confirm_expp_enabledExportar Portfólio para aluno está agora habilitado Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledExportar Portfólio para aprendiz está agora desabilitado Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgVocê selecionou esta lição para Remover. Lições removidas não podem ser recuperadas novamente. Continuar?remove confirm msgls_status_cmb_removeremoverLesson status option - Removels_status_removed_lblRemovidoCurrent status description if deleted (removed) lesson.al_yesSimYes on the alert dialogal_noNão'No' on the alert dialogls_remove_warning_msgCuidado: A lição está para ser removida. Você quer arquivá-la?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} alunosGroup name for the class's learners group.staff_group_name{0} pessoalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/ru_RU_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_noНетstaff_group_name{0} сотрудниковls_win_editclass_cancel_btnОтменитьcheck_avail_btnПроверить доступностьls_sequence_live_edit_btn_tooltipРедактировать проект этого урокаls_learnerURL_lblСсылка для ученика:continue_btnПродолжитьmv_search_not_found_msg{0} не найдено.mv_search_go_btn_lblПерейти кls_win_learners_close_btnЗакрытьmv_search_current_page_lblСтраница {0} из {1}ls_manage_learners_btn_tooltipПоказать всех уччеников, крикрепленных к этому урокуls_manage_apply_btn_tooltipИзменить статус урока, основываясь на выборе в выпадающем менюls_seq_status_system_gateСистемный затворmnu_go_todoСписок заданийmtab_todoСписок заданийtd_desc_textИспользование Списка заданий необязательно для выполнения этой последовательности. Обратите в раздел помощь за соотвествующей информацией.<br><br> Эта функция теперь доступна в полном объеме.al_error_forcecomplete_invalidactivityВы перетащили пользователя '{0}' на его текущее или уже выполненное задание '{1}'ccm_monitor_activityhelpПомощь по мониторингу заданийal_validation_schstartВы не выбрали дату. Выберите, пожалуйста, дату и время.al_confirm_forcecomplete_toactivityДействительно ли вы желаете принудительно завершить задания у ученика '{0}' вплоть до '{1}'?ls_seq_status_not_setЕще не заданls_sequence_live_edit_btnРедактирование "на лету"about_popup_license_lblЭто программа является free software; Вы можете распространять и/или изменять ее при условиях соответствия GNU General Public License version 2 опубликованной Free Software Foundation. {0}stream_reference_lblLAMSgpl_license_urlwww.gnu.org/licenses/gpl.txt stream_urlhttp://{0}foundation.orgal_okОКclose_mc_tooltipСвернутьls_tasks_txtОбязательные заданияls_manage_time_lblВремя (Часы : Минуты)ls_continue_lblЗдравствуйте, {1}, вы не закончили редактирование {0}.al_confirm_forcecomplete_tofinishДействительно ли вы желаете принудительно завершить урок у ученика '{0}'?competences_mapped_to_act_lblЗнания определены к {0}ls_status_cmb_removeУдалитьls_status_removed_lblУдаленныйal_yesДаls_continue_action_lblНажмите {0}, чтобы продолжить. mv_search_default_txtВведите поисковый запрос или номер страницыbranch_mapping_dlg_conditions_dgd_lblСоотвествияlbl_num_sequences{0} - Последовательностейal_activity_openContent_invalidИзвините! Перед тем как нажать пункт меню Открыть/Редактировать Задание, Вы должны выбрать задание.mv_search_error_msgВведите, пожалуйста, поисковый запрос или номер страницы между 1 и {0}mv_search_invalid_input_msgНомер страницы должен быть между 1 и {0}ls_seq_status_sched_gateЗатвор, работающий по времениbranch_mapping_dlg_branch_col_lblРазветвлениеfinish_learner_tooltipЧтобы принудительно завершить урок у ученика, перетащите его иконку ну эту панель.mnu_help_helpПомощь по мониторингуls_manage_status_lblИзменить статус:ls_manage_learners_btnПросмотр учениковls_manage_learnerExpp_lblРазрешить ученикам экспортировать портфолиоls_confirm_expp_enabledЭкспорт портфолио разрешен для учениковls_confirm_expp_disabledЭкспорт портфолио запрещен для учениковls_duration_lblОжидаемая продолжительность:td_desc_headingРасширенное управлениеopt_activity_titleОпциональное заданиеlbl_num_activities{0} - Заданияls_of_textизls_manage_txtУправление урокомtd_goContribute_btnПерейти кlearner_exportPortfolio_btnЭкспорт портфолиоal_sendОтправитьls_status_scheduled_lblЗапланированоеgoContribute_btn_tooltipЗавершить это задание сейчасhelp_btn_tooltipПомощьls_manage_start_btn_tooltipНачать урок незамедлительноmsg_bubble_check_action_lblПроверка...msg_bubble_failed_action_lblНедостуно, попробуйте еще раз.ls_locked_msg_lblИзвините, но {0} сейчас редактируется {1}.al_confirm_live_editРедактирование "на лету" будет открыто. Желаете продолжить?about_popup_title_lblО программе - {0}about_popup_version_lblВерсияabout_popup_copyright_lbl© 2002-2008 {0} Foundation.about_popup_trademark_lbl{0} является торговой маркой {0} Foundation ( {1} ).branch_mapping_dlg_condition_col_lblУсловиеal_error_forcecomplete_to_different_seqВы не можете перетащить {0} на задание из другой ветви или последовательности.al_error_forcecomplete_notargetПожалуйста, перетащите пользователя '{0}' на задание либо конец урока.ls_win_editclass_organisation_lblОрганизацияmnu_file_startСтартmnu_helpПомощьmnu_help_abtО программеperm_act_lblРазрешениеsched_act_lblРасписаниеsynch_act_lblСинхронизированныйws_RootКореньws_dlg_cancel_buttonОтменитьws_dlg_location_buttonРасположениеws_tree_mywspМоя рабочая средаws_tree_orgsОрганизацииsys_error_msg_startПроизошла следующая системная ошибка:sys_errorСистемная ошибкаmnu_file_scheduleРасписаниеmnu_file_exitВыходmnu_view_learnersУченики...mnu_goПерейти кmnu_go_lessonУрокmnu_go_scheduleРасписаниеmnu_go_learnersУченикиrefresh_btnОбновитьhelp_btnПомощьrefresh_btn_tooltipОбновить пользовательскую информацию.al_alertПредупреждениеal_cancelОтменитьal_confirmПодтвердитьapp_chk_langloadЯзыковые данные загружены неудачноapp_chk_themeloadДанные для темы загружены неудачноapp_fail_continueПрограмма завершит работу. Пожалуйста, свяжитесь со службой поддержки.db_datasend_confirmСпасибо за то, что послали данные на серверmnu_editРедактироватьmnu_edit_copyКопироватьmnu_edit_cutВырезатьmnu_edit_pasteВставитьmnu_fileФайлmnu_file_refreshОбновитьmnu_file_editclassРедактировать классbranch_mapping_dlg_group_col_lblГруппаmnu_go_sequenceПоследовательностьcv_activity_helpURL_undefinedНет справки для {0}cv_design_unsaved_live_editНесохраненные изменения будут автоматически сохранены. Желаете ли вы продолжить вставку/слияние?mtab_lessonУрокmtab_seqПоследовательностьmtab_learnersУченикиls_status_lblСтатус:ls_learners_lblУченики:ls_class_lblКласс:ls_manage_class_lblКласс:ls_manage_editclass_btnРедактировать классls_manage_apply_btnПрименитьls_manage_schedule_btnРасписаниеls_manage_start_btnСтартовать сейчасls_manage_date_lblДатаls_manage_status_cmbВыберите статус:ls_status_cmb_activateАктивироватьls_status_cmb_disableДеактивироватьls_status_cmb_enableАктивноls_status_cmb_archiveАрхивls_status_active_lblСоздано, но еще запущенls_status_disabled_lblНеактивноls_status_archived_lblАрхивныйls_status_started_lblЗапущенныйls_win_editclass_titleРедактировать классls_win_learners_titleПросмотр учениковmnu_viewВидls_win_editclass_save_btnСохранитьls_win_editclass_staff_lblСотрудникиls_win_editclass_learners_lblУченикиls_win_learners_heading_lblУченики в классе:sys_error_msg_finishЧтобы продолжить работу, перезапустите, пожалуйста, Редактор заданий. Желаете ли Вы сохранить информацию о произошедщей ошибке, чтобы помочь решить ее в будущем?ccm_monitor_activityОткрыть мониторинг заданияccm_monitor_view_condition_mappingsПосмотреть соотвествия Ветвей Условиямccm_monitor_view_group_mappingsПосмотреть соотвествия Ветвей Группамtitle_sequencetab_endGateЗавершили:ls_seq_status_perm_gateРазрешение учителяls_seq_status_synch_gateСинхронизацияal_doubleclick_todoactivityИзвините, но ученик {0} еще не достиг {1} заданияls_remove_confirm_msgВы нажали Удалить этот урок. Удаленные уроки не могут быть восстановлены. Продолжить?ls_remove_warning_msgВНИМАНИЕ: Урок будет удален. Желаете ли вы сохранить его?mv_search_index_view_btn_lblИндекс страницls_seq_status_moderationАрбитражls_seq_status_define_laterОпределить позжеls_seq_status_choose_groupingРаспределить по группамls_seq_status_contributionСделатьls_seq_status_teacher_branchingОснованное на решении учителяls_manage_schedule_btn_tooltipЗапланировать старт урока на заданное времяcurrent_act_tooltipДважды нажмите мышью, чтобы посмотреть текущее состояние задания у пользователяcompleted_act_tooltipДважды нажмите мышью, чтобы посмотреть завершенные задания у пользователяal_validation_schtimeВведите, пожалуйста, правильное время.learner_viewJournals_btnЗаписиlearner_viewJournals_btn_tooltipПросмотреть все записи, сделанные пользователемlearner_exportPortfolio_btn_tooltipЭкспортировать и сохранить портфолио пользователя для дальнейщих обращений к немуls_manage_editclass_btn_tooltipРедактировать список пользователей и сотрудников, прикрепленных к этому уроку.label.grouping.general.instructions.branchingВы не можете добавлять или удалять группы в это групповое задание, так как оно используется в Разветвлении, а добавление или удаление новых групп повлечет за собой изменение настроек соотвествий ветвей группам. Вы можете только добавлять или удалять пользователей в уже существующие группы.al_activity_view_competence_mappings_invalidПожалуйста, убедитесь, что вы выбрали задание перед просмотром знаний.order_learners_by_completion_lblУпорядочить по факту завершенияlearners_group_name{0} ученикиls_manage_start_lblСтарт:view_competences_dlgПросмотреть знанияview_competences_in_ld_lblЗнания в учебных шаблонах: {0}view_act_mapped_competencesПросмотреть определенные знанияmapped_competences_lblОпределенные знанияcompetence_title_lblЗаголовокcompetence_desc_lblОписаниеls_manage_presenceEnabled_lblРазрешить ученикам видеть кто находится онлайнls_confirm_presence_enabledС данного момента ученики могут видеть кто находится онлайнls_confirm_presence_disabledС данного момента ученики не могут видеть кто находится онлайнls_win_learners_heading_class_lblКлассls_win_learners_heading_activity_lblЗаданиеlearner_plus_tooltip{0} учеников. Щелкните два раза для просмотра полного списка.view_time_graph_btnПросмотр временного графикаview_time_graph_btn_tooltipПросмотреть график успеваемости выбранных студентов по времени, потраченном на каждое заданиеview_time_chart_btnПросмотр временной диаграммыview_time_chart_btn_tooltipПросмотреть диаграмму успеваемости выбранных студентов по времени, потраченном на каждое заданиеclass_exportPortfolio_btn_tooltipЭкспортировать и сохранить портфолио всего класса для дальнейщих обращений к немуal_confirm_forcecomplete_to_end_of_branching_seqВы желаете принудительно завершить эту разветвляющуюся последовательность у ученика '{0}'?support_act_titleВспомогательное заданиеal_error_forcecomplete_support_actНевозможно принудительно завершить вспомогательные задания у ученикаmsg_no_learners_in_lessonОдин или более учеников должны быть отмеченыls_manage_presenceImEnabled_lblРазрешить обмен сообщениямиls_confirm_presence_im_enabledОбмен сообщениями включенls_confirm_presence_im_disabledОбмен сообщениями отключен \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/sv_SE_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertPåminnelseGeneric title for Alert windowal_cancelAvbrytTo Confirm title for LFErroral_confirmBekräftaTo Confirm title for LFErroral_okOKOK on the alert dialogapp_chk_langloadSpråkdata har inte laddats inmessage for unsuccessful language loadingapp_chk_themeloadTemadata har inte laddats inmessage for unsuccessful theme loadingapp_fail_continueProgrammet kan inte fortsätta. Var snäll och kontakta supporten. message if application cannot continue due to any errordb_datasend_confirmTack för att du skickar data till servern. Message when user sucessfully dumps data to the servermnu_editRedigeraMenu bar Editmnu_edit_copyKopieraMenu bar Edit &gt; Copymnu_edit_cutKlippMenu bar Edit &gt; Cutmnu_edit_pasteKlistraMenu bar Edit &gt; Pastemnu_fileFilMenu bar Filemnu_file_refreshÅterställMenu bar Refreshmnu_file_editclassRedigera klassMenu bar Edit Classmnu_file_startStartaMenu bar Startmnu_helpHjälpMenu bar Helpmnu_help_abtOmMenu bar Aboutperm_act_lblTillståndLabel for permission gate activitysched_act_lblSchemaläggLabel for schedule gate activitysynch_act_lblSynkroniseraUsed as a label for the Synch Gate Activity Typews_RootRootRoot folder title for workspacews_dlg_cancel_buttonAvbryt2ws_dlg_location_buttonPlaceringWorkspace dialogue Location btn labelws_tree_mywspMin arbetsytaThe root level of the treews_tree_orgsOrganisationerShown in the top level of the tree in the workspacesys_error_msg_startFöljande systemfel har inträffat:Common System error message starting linesys_error_msg_finishDet kan bli nödvändigt att starta om LAMS Författare för stt det ska gå att fortsätta. Vill du spara den följande informationen om detta fel i syfte att hjälpa till att åtgärda det?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titlemnu_file_scheduleSchemaMenu bar Schedulemnu_file_exitAvslutaMenu bar Exitmnu_view_learnersLärande...Menu bar Learnersmnu_goMenu bar Gomnu_go_lessonLektionMenu bar Go to Lesson Tabmnu_go_scheduleSchemaMenu bar Go to Schedule Tabmnu_go_learnersLärandeMenu bar Go to Learners Tabmnu_go_todoAtt göraMenu bar Todomnu_help_helpHjälpMenu bar Help itemrefresh_btnÅterställRefresh buttonhelp_btnHjälpHelp buttonmtab_lessonLektionMonitor Lesson details tabmtab_seqSekvensMonitor Sequence tabmtab_learnersLärandeMonitor Learners tabmtab_todoAtt göra Monitor Todo tabls_status_lblStatus:Status label - Lesson detailsls_learners_lblLärande:Learner label - Lesson detailsls_class_lblKlass:Class label - Lesson detailsls_manage_class_lblKlass:Class managing label - Lesson detailsls_manage_status_lblStatus:Status managing label - Lesson detailsls_manage_start_lblStarta:Start managing label - Lesson detailsls_manage_learners_btnVisa lärandeView learners button - Lesson details (manage section)ls_manage_editclass_btnRedigera klassEdit class button - Lesson details (manage section)ls_manage_apply_btnTillämpaStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnSchemaSchedule start button - Lesson details (manage section)ls_manage_start_btnStarta nuStart immediately button - Lesson details (manage section)ls_manage_date_lblDatumDate field title - Lesson details (manage section)ls_duration_lblHar pågått under:Elapsed duration of lesson - Lesson detailsls_manage_status_cmbVälj status:Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activateAktiveraLesson status option - Activatels_status_cmb_disableAvaktiveraLesson status option - Disable (suspend)ls_status_cmb_enableAktivLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArkivLesson status option - Archivels_status_active_lblAktivCurrent status description if active (enabled)ls_status_disabled_lblAvbrutenCurrent status description if suspended (disabled)ls_status_archived_lblArkiveradCurrent status description if archviedls_status_started_lblStartadCurrent status description if started (enabled)ls_win_editclass_titleRedigera klassEdit class window titlels_win_learners_titleVisa lärandeView learners window titlemnu_viewVisaMenu bar Viewls_win_editclass_save_btnSparaSave button on Edit Class popupls_win_editclass_cancel_btnAvbrytCancel button on Edit Class popupls_win_learners_close_btnStängClose button on View Learners popupls_win_editclass_organisation_lblOrganisationHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblPersonalHeading for Staff list on Edit Class popupls_win_editclass_learners_lblLärandeHeading for Learners list on the Edit Class popupls_win_learners_heading_lblLärande i klassen:Heading on View Learners window panel.td_desc_headingAvancerade kontroller:Todo tab description headingtd_desc_textAnvänd den här fliken 'Att göra' för att fullfölja sekvensen. Se hjälpsidan för mer info.<br /><br />Den här egenskapen är nu fullt fungerande. Todo tab descriptionopt_activity_titleValfri aktivitetTitle for Optional Activity on canvas (monitoring)lbl_num_activities'barn'-aktiviteterNumber of child activities for Complex activity shown on canvas.ls_of_textavi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtAdministrera lektionHeading for Management section of Lesson Tabls_tasks_txtObligatoriska uppgifterHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGo button on contribute entry itemlearner_exportPortfolio_btnExportera portfolioLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblSchemalagdLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityÄr du säker på att du vill tvinga lärande '{0}' vidare till aktivitet '{1]'?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityDu har 'släppt' lärande '{0}' antingen på dennes aktuella eller dennes fullföljda aktivitet. Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishÄr du säker på att du vill tvinga lärande '{0}' till lektionens slut?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetVar snäll och 'släpp' lärande '{0}' på en aktivitet eller i slutet på en lektion. Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateLärande som har avslutat:Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipFullfölj den här uppgiften nutool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipHjälptool tip message for help button in toolbarrefresh_btn_tooltipLadda om de senaste datana för de lärandes progressiontool tip message for the refresh buttonls_manage_editclass_btn_tooltipRedigera listan över de lärande och den personal som har tilldelats denna lektiontool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipVisa alla de lärande som har tilldelats denna lektiontool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipÄndra status på den här lektionen baserat på urvalet för 'nedsläpp'.tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipExportera klassens portfolio och spara den på din dator för framtida referens.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipExportera den här portfolion för lärande och spara den på din dator för framtida referens.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipStarta lektionen omedelbarttool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipSchemalägg lektionen så att den ska starta vid ett tillfälle i framtidentool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipDubbelklicka för att granska de bidrag som är på gång i den lärandes aktuella aktivitettool tip message for current activity iconcompleted_act_tooltipDubbelklicka för att granska bidragen i den lärandes fullföljda aktivitet. tool tip message for completed activity iconal_doubleclick_todoactivityLärande: {0} har tyvärr inte nått aktivitet: {1}, ännu. alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartInget datum sparades. Var snäll och välj ett datum och en tid.Message when no date is selected for starting a lesson by schedule.ls_manage_time_lblTid (timmar : minuter)Time fields title - Lesson details (manage section)al_validation_schtimeVar snäll och mata in en giltig tidAlert message when user enters an invalid time for schedule startfinish_learner_tooltipFör att tvinga en lärande att fullfölja och gå till lektionens slut så ska Du dra den lärandes ikon över till den här raden och sedan släpper Du ikonen. Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityÖppna monitorering av aktivetetLabel for Custom Context Monitor Activityccm_monitor_activityhelpHjälp för monitorering av aktivetetLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnInlägg i journalenLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipVisa alla de inlägg i journalerna som de lärande har sparat.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblLärande URL:Learner URL:ls_manage_learnerExpp_lblAktivera export av portfolio för lärande.Label for Enable export portfolio for Learnerls_confirm_expp_enabled Export av portfolio för lärande har nu aktiverats. Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled Export av portfolio för lärande har nu avaktiverats. Confirmation message on disabling export portfolio for learnersls_remove_confirm_msgDu har valt att 'Ta bort' den här lektionen. Det går inte att återställa borttagna lektioner. Vill du fortsätta?remove confirm msgls_status_cmb_removeTa bortLesson status option - Removels_status_removed_lblBorttagenCurrent status description if deleted (removed) lesson.al_yesJaYes on the alert dialogal_noNej'No' on the alert dialogls_remove_warning_msgVarning! Du håller på att ta bort lektionen, Vill du behålla och arkivera den?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} lärandeGroup name for the class's learners group.staff_group_name{0} personalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/tr_TR_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_win_editclass_save_btnKaydetSave button on Edit Class popupabout_popup_license_lblBu program üzretsiz bir yazılımdır; dağıtabilir ve/veya Free Softvare Foundation tarafından yayınlanan GNU General Public Licence version 2 şartları altında değiştirebilirsiniz. Label displaying the license statement in the About dialog.stream_urlhttp://{0}foundation.orgURL address for the application stream.learner_viewJournals_btn_tooltipÖğrencilerin kaydettiği günlük mesajlarının tümünü göster.tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.branch_mapping_dlg_condition_col_lblKoşulColumn heading for showing condition description of the mapping.learner_exportPortfolio_btn_tooltipBu öğrencinin portfolyosunu dışa aktarıp bilgisayarınıza kaydeder.tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referenceclass_exportPortfolio_btn_tooltipDersin portfolyosunu dışa aktarır ve ileride kullanılmak üzere bilgisayarınıza kaydeder.tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computercv_design_unsaved_live_editKaydedilmeyen değişiklikler otomatik olarak kaydedilecek. Ekle/birleştir ile devam etmek istiyor musunuz?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.al_validation_schtimeLütfen geçerli bir zaman giriniz.Alert message when user enters an invalid time for schedule startview_competences_dlgYetkileri görüntüleAllows you to view all the competences within a learning designview_act_mapped_competencesHaritalanmış yetkileri görüntüleAllows you to view competences mapped to a particular activityccm_monitor_view_condition_mappingsKoşullara olan dallanmaları gösterLabel for Custom Context View Condition Mappingsccm_monitor_view_group_mappingsGrup dallanmalarını gösterLabel for Custom Context View Group Mappingsls_manage_learners_btnÖğrenci görüntüleView learners button - Lesson details (manage section)ls_win_learners_titleÖğrenenleri görüntüleView learners window titlemnu_viewGörünümMenu bar Viewmv_search_index_view_btn_lblDizin görünümüWhen the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.al_activity_view_competence_mappings_invalidYetkileri gmrüntülemeden önce bir etkinlik seçtiğinizden emin olunuz.Warning that appears when no activity is selected when the user tries to view competence mappingscurrent_act_tooltipÖğrencinin şimdiki etkinliğine katılımını gözlemek için çift tıklayınız.tool tip message for current activity iconcompleted_act_tooltipÖğrencilerin tamamladığı etkinlikleri görmek için çift tıklayınız.tool tip message for completed activity iconal_cancelİptalTo Confirm title for LFErrorws_dlg_cancel_buttonİptal2learner_exportPortfolio_btnPortfolyo kaydetLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_manage_learnerExpp_lblÖğrenci için portfolyo dışa aktarmayı etkinleştirLabel for Enable export portfolio for Learnerls_confirm_expp_enabledPortfolyo dışa aktarma etkinleştirildi.Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabledPortfolyo dışa aktarmayı devreden çıkarConfirmation message on disabling export portfolio for learnersls_win_editclass_organisation_lblOrganizasyonHeading for Organisation tree on Edit Class popupal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorapp_chk_langloadDil bileşenleri yüklenmedimessage for unsuccessful language loadingapp_chk_themeloadTema bileşenleri yüklenmedimessage for unsuccessful theme loadingapp_fail_continueUygulamaya devam edilemiyor. Destek için iletişime geçiniz.message if application cannot continue due to any errordb_datasend_confirmSunucuya gönderdiğiniz veri için teşekkürler.Message when user sucessfully dumps data to the servermnu_editDüzenleMenu bar Editmnu_edit_copyKopyalaMenu bar Edit &gt; Copymnu_edit_cutKesMenu bar Edit &gt; Cutmnu_edit_pasteYapıştırMenu bar Edit &gt; Pastemnu_fileDosyaMenu bar Filemnu_file_refreshYenileMenu bar Refreshmnu_file_editclassDers düzenleMenu bar Edit Classmnu_file_startBaşlaMenu bar Startmnu_helpYardımMenu bar Helpmnu_help_abtHakkındaMenu bar Aboutperm_act_lblİzinLabel for permission gate activitymv_search_not_found_msg{0} bulunamadıThis message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lblSayfa {0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lblGitIf the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.ls_seq_status_moderationEtkinlik yönetDisplayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_perm_gateİzin kapısıA type of Gate Activity where progress depends on permission from a Teacherls_seq_status_choose_groupingGruplamayı seçAllows the Teacher to add the learners to chosen groupsls_seq_status_system_gateSistem kapısıA System Gate is a stop point that can be controlled by time setting or user controlws_RootAna dizinRoot folder title for workspacews_tree_mywspÇalışma AlanımThe root level of the treesys_error_msg_startBir sistem hatası oluştu.Common System error message starting linesys_errorSistem hatasıSystem Error elert window titlemnu_file_exitÇıkışMenu bar Exitmnu_goGitMenu bar Gomnu_go_lessonDersMenu bar Go to Lesson Tabrefresh_btnYenileRefresh buttonhelp_btnYardımHelp buttonmtab_lessonDersMonitor Lesson details tabmtab_seqSıralamaMonitor Sequence tabls_status_lblDurumStatus label - Lesson detailsls_manage_start_lblBaşlaStart managing label - Lesson detailsls_manage_editclass_btnSınıfı düzenleEdit class button - Lesson details (manage section)ls_manage_apply_btnUygulaStatus Apply button - Lesson details (manage section)ls_manage_start_btnŞimdi başlaStart immediately button - Lesson details (manage section)ls_manage_date_lblTarihDate field title - Lesson details (manage section)ls_manage_status_cmbDurum seçStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateEtkinleştirLesson status option - Activatels_status_cmb_disablePasifLesson status option - Disable (suspend)ls_status_cmb_enableAktifLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveArşivLesson status option - Archivels_status_active_lblOluşturuldu ancak başlatılmadıCurrent status description if active (enabled)ls_status_disabled_lblPasifCurrent status description if suspended (disabled)ls_status_archived_lblArşivlendiCurrent status description if archviedls_status_started_lblBaşladıCurrent status description if started (enabled)ls_win_editclass_titleSınıfı düzenleEdit class window titlels_win_learners_close_btnKapatClose button on View Learners popupls_win_editclass_learners_lblÖğrencilerHeading for Learners list on the Edit Class popupls_win_learners_heading_lblSınıftaki öğrencilerHeading on View Learners window panel.td_desc_headingGelişmiş kontrollerTodo tab description headingopt_activity_titleSeçmeli EtkinlikTitle for Optional Activity on canvas (monitoring)lbl_num_activities{0} - EtkinliklerNumber of child activities for Complex activity shown on canvas.ls_manage_txtDersi yönetHeading for Management section of Lesson Tabls_tasks_txtYapılması gereken görevlerHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGitGo button on contribute entry itemal_sendGönderSend button label on the system error dialogal_validation_schstartTarih seçilmedi. Lütfen tarih ve zaman seçiniz.Message when no date is selected for starting a lesson by schedule.title_sequencetab_endGateBitiren öğrencilerTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonls_learnerURL_lblÖğrenci URL'siLearner URL:goContribute_btn_tooltipBu görevi şimdi tamamlatool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipYardımtool tip message for help button in toolbarls_manage_editclass_btn_tooltipBu derse kayırlı öğrencileri düzenler ve izler.tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipBu derse kayıtlı öğrencileri gösterir.tool tip message for the view learners button in lesson tab under manage lesson sectionls_class_lblSınıfClass label - Lesson detailsls_manage_class_lblSınıfClass managing label - Lesson detailsls_manage_status_lblDurum değiştirStatus managing label - Lesson detailsls_win_editclass_cancel_btnİptalCancel button on Edit Class popupls_duration_lblGeçen zamanElapsed duration of lesson - Lesson detailsccm_monitor_activityhelpEtkinlik yardımını izleLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnGünlük mesajlarıLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learners_group_name{0} öğrenciGroup name for the class's learners group.ls_remove_confirm_msgBu dersi kaldırmayı seçtiniz. Bu işlemi tekrar geri lamazsınız. devam etmek istiyor musunuz?remove confirm msgcontinue_btnDevam etContinue button labelmsg_bubble_check_action_lblKontrol ediliyor...Label displayed when checking availability of lesson.msg_bubble_failed_action_lblGerçekleştirilemedi, tekrar deneyiniz.Label displayed when check failed i.e. lesson is still locked.branch_mapping_dlg_branch_col_lblDallanmaColumn heading for showing sequence name of the mapping.branch_mapping_dlg_group_col_lblGrupColumn heading for showing group name of the mapping.mnu_go_sequenceSıralamaMenu bar Go to Sequence Tabcv_activity_helpURL_undefined{0}'ın yardım sayfası bulunamıyor.Alert message when a tool activity has no help url defined.al_doubleclick_todoactivityÜzgünüm, öğrenci {0} henüz etkinliğe erişmedialert message when user double click on the todo activity in the sequence under learner tabls_status_cmb_removeKaldırLesson status option - Removels_status_removed_lblKaldırıldıCurrent status description if deleted (removed) lesson.al_yesEvetYes on the alert dialogal_noHayır'No' on the alert dialogls_remove_warning_msgUYARI: Ders kaldırılmak üzere. Bu dersi saklamak istiyor musunuz?Message for the alert dialog which appears following confirmation dialog for removing a lesson.check_avail_btnKullanılabilirliğini kontrol et.Check Availability button labelabout_popup_title_lbl{0} hakkındaTitle for the About Pop-up window.about_popup_version_lblSürümLabel displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2008 {0} Foundation. Label displaying copyright statement in About dialog.ls_manage_start_btn_tooltipDersi hemen başlattool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessongpl_license_urlwww.gnu.org/licenses/gpl.txtURL address for GPL licence.mtab_learnersÖğrencilerMonitor Learners tabls_learners_lblÖğrencilerLearner label - Lesson detailsls_of_textin i.e. 1 of 10 Used for showing how many learners have startedccm_monitor_activityEtkinlik izlemeyi açLabel for Custom Context Monitor Activityclose_mc_tooltipSimge durumuna küçültTooltip message for close button on Branching canvas.ls_seq_status_define_laterDaha sonra tanımlaOf an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_continue_lblHi {1}, düzenlemeyi bitirmediniz.Continue message labelstream_reference_lblLAMSReference label for the application stream.mv_search_default_txtAnahtar kelime veya sayfa numarası giriniz.The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.ls_manage_time_lblZaman (Saat:dakika)Time fields title - Lesson details (manage section)ls_seq_status_teacher_branchingÖğretmen seçimli dallanmaA type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_setHenüz kurulmadıThe value of the sequence's status is not setal_activity_openContent_invalidÜzgünüm! Etkinlik sağ menüsündeki Etkinlik içeriği Aç/Düzenle maddesine tıklamadan önce etkinliği seçmek zorundasınız. alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvassched_act_lblTakvimLabel for schedule gate activitymnu_file_scheduleTakvimMenu bar Schedulemnu_go_scheduleTakvimMenu bar Go to Schedule Tabmnu_go_learnersÖğrencilerMenu bar Go to Learners Tabls_manage_schedule_btnTakvimSchedule start button - Lesson details (manage section)synch_act_lblSenkronize etUsed as a label for the Synch Gate Activity Typews_dlg_location_buttonKonumWorkspace dialogue Location btn labelmnu_view_learnersÖğrenciler..Menu bar Learnersls_locked_msg_lblÜzgünüm, {0} şuan {1} tarafından düzenleniyor.Warning message on Monitor locked screen.ls_continue_action_lblDevam etmek için {0}'a tıklayınız.Action label displayed when a user can proceed to Live Edit.ls_manage_apply_btn_tooltipAçılır menü ile bu dersin durumunu değiştirir.tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statustd_desc_textBu sekmenin kullanımı akışı tamamlamanızı gerektirmez. Daha fazla bilgi için yardım sayfasına bakınız. Bu özellik tüm işlevleriyle çalışıyor.Todo tab descriptional_confirm_forcecomplete_to_end_of_branching_seqÖğrenci {0}'ı dallanma sıralamasını sonuna göndermek istediğinizden emin misiniz?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_manage_schedule_btn_tooltipDersi belirlenen tarihte başlatmak üzere takvim oluşturur.tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timemnu_help_helpİzleme yardımMenu bar Help itemws_tree_orgsOrganizasyonShown in the top level of the tree in the workspacestaff_group_name{0} izleyiciGroup name for the class's staff group.al_confirm_live_editÇalışırken düzenle'yi açmak üzeresiniz. Devam etmek istiyor musunuz?Confirm warning (dialog) message displayed when opening Live Edit.mnu_go_todoYapMenu bar Todomtab_todoYapMonitor Todo tabal_error_forcecomplete_notargetLütfen öğrenci {0}'ı bir etkinliğin üzerine veya dersin sonuna bırakınız.Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvasrefresh_btn_tooltipÖğrenciler için son değişimleri yüklertool tip message for the refresh buttonbranch_mapping_dlg_conditions_dgd_lblHaritalamaHeading label for Mapping datagrid.mv_search_error_msgLütfen 1 ve {0} arasında bir sayfa sayısı veya anahtar kelime girerek sorgulama yapınız.This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msgSayfa numarası 1 ile {0} arasında olmalıdır.This error message appears if the number entered by the user lies outside the range of viewable pages.al_confirm_forcecomplete_toactivityÖğrenci '{0}' ı Etkinlik {1}'i yapmaya zorlamak istediğinizden emin misiniz?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityÖğrenci {0}'ı şuanki etkinliğine veya tamamladığı etkinlik {1}'e bıraktınız.Error message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_to_different_seq{0} farklı bir sıralama veya dallanmadaki etkinliğe bırakılamaz.This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_win_editclass_staff_lblİzlemeHeading for Staff list on Edit Class popupls_seq_status_contributionKatılımAny 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.finish_learner_tooltipÖğrenciyi dersi tamamlamaya zorlamak için öğrenci simgesini bu çubuğa sürükleyiniz ve bırakınız.Rollover message when user moves their mouse over the end gate bar in monitor tab viewlabel.grouping.general.instructions.branchingGrubun dallanmasını etkileyeceğinden bu gruplamaya grup ekleyip kaldıramazsınız. Sadece varolan gruplara kullanıcıekleyip kaldırabilirsiniz.Third instructions paragraph on the chosen branching screen.ls_sequence_live_edit_btn_tooltipBu ders için geçerli tasarımı düzenler.Tool tip message for Live Edit buttonls_sequence_live_edit_btnCanlı düzenleLive Edit buttonls_seq_status_sched_gateKapıyı programlaA type of Gate Activity where progress depends on time (start time and/or end time)ls_seq_status_synch_gateSenkronize kapısıA type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_status_scheduled_lblZaman çizelgesi oluşturuldu.Lesson status option - Scheduled (Not Started)mapped_competences_lblHaritalanmış yetkikerTitle for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lblYetkiler {0}'a haritalandı.Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lblBaşlıkCompetence Title label in Mapped Competences dialogview_competences_in_ld_lblÖğrenme tasarımındaki yetkiler: {0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentcompetence_desc_lblAçıklamaCompetence Description label in Mapped Competences dialogal_okTamamOK on the alert dialogorder_learners_by_completion_lblDersi tamamlama sürecini öğrenciye göster.Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lblÖğrencilerin çevrimiçi kişileri görmesine izin ver.ls_manage_presenceEnabled_lblls_confirm_presence_enabledÖğrencileri çevrimiçi kişileri göremeyecekler.ls_confirm_presence_enabledls_confirm_presence_disabledÖğrencileri çevrimiçi kişileri görebilecekler.ls_confirm_presence_disabledal_confirm_forcecomplete_tofinishÖğrenci {0}'ı dersi bitirmeye zorlamak istediğinizden emin misiniz?Message to get confirmation from user before sending data to server for force complete to the end of lessonlbl_num_sequences{0} - AkışlarNumber of child sequence or Optional Sequences activity shown on canvas.sys_error_msg_finishDevam etmek için LAMS tasarımı yeniden başlatmalısınız. Problemin giderilmesinde yardımcı olmak için hata bilgisini kaydetmek ister misiniz?Common System error message finish paragraphabout_popup_trademark_lbl{0} is a trademark of {0} Foundation ( {1} ). Label displaying the trademark statement in the About dialog.ls_win_learners_heading_class_lblSınıfHeading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lblEtkinlikHeading on View Learners window panel (learners at activity).learner_plus_tooltip{0} öğrenci. Tüm listeyi görmek için çift tıklayınız.Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/vi_VN_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alertCảnh báoGeneric title for Alert windowal_cancelHủyTo Confirm title for LFErroral_confirmXác nhậnTo Confirm title for LFErroral_okChấp nhậnOK on the alert dialogapp_chk_langloadDữ liệu ngôn ngữ không được đưa lênmessage for unsuccessful language loadingapp_chk_themeloadTodomessage for unsuccessful theme loadingapp_fail_continueChương trình không thể tiếp tục. Hãy liên hệ hỗ trợmessage if application cannot continue due to any errordb_datasend_confirmCảm ơn đã gửi dữ liệu tới máy chủMessage when user sucessfully dumps data to the servermnu_editSửaMenu bar Editmnu_edit_copySao chépMenu bar Edit &gt; Copymnu_edit_cutCắtMenu bar Edit &gt; Cutmnu_edit_pasteDánMenu bar Edit &gt; Pastemnu_fileTệp tinMenu bar Filemnu_file_refreshHồi phụcMenu bar Refreshmnu_file_editclassĐiều chỉnh lớpMenu bar Edit Classmnu_file_startBắt đầuMenu bar Startmnu_helpTrợ giúpMenu bar Helpmnu_help_abtGần nhưMenu bar Aboutperm_act_lblCho phépLabel for permission gate activitysched_act_lblThời gian biểuLabel for schedule gate activitysynch_act_lblĐồng bộUsed as a label for the Synch Gate Activity Typews_RootGốcRoot folder title for workspacews_dlg_cancel_buttonHủy2ws_dlg_location_buttonVị tríWorkspace dialogue Location btn labelws_tree_mywspKhông gian làm việc của tôiThe root level of the treews_tree_orgsTổ chứcShown in the top level of the tree in the workspacesys_error_msg_startĐã xảy ra lỗi hệ thống sauCommon System error message starting linesys_error_msg_finishBạn có thể phải khởi động lại Module soạn giảng của LAMS để tiếp tục. Bạn có muốn lưu thông tin dưới đây về lỗi này để trợ giúp khắc phục lỗi này?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titlemnu_file_scheduleThời gian biểuMenu bar Schedulemnu_file_exitKết thúcMenu bar Exitmnu_view_learnersNgười họcMenu bar Learnersmnu_goTiếp tụcMenu bar Gomnu_go_lessonBài họcMenu bar Go to Lesson Tabmnu_go_scheduleThời gian biểuMenu bar Go to Schedule Tabmnu_go_learnersNgười họcMenu bar Go to Learners Tabmnu_go_todoTodoMenu bar Todomnu_help_helpTrợ giúp theo dõiMenu bar Help itemrefresh_btnPhục hồiRefresh buttonhelp_btnTrợ giúpHelp buttonmtab_lessonbài họcMonitor Lesson details tabmtab_seqChuỗiMonitor Sequence tabmtab_learnersNgười họcMonitor Learners tabmtab_todoTodoMonitor Todo tabls_status_lblTrạng tháiStatus label - Lesson detailsls_learners_lblNgười họcLearner label - Lesson detailsls_class_lblLớp họcClass label - Lesson detailsls_manage_class_lblLớp họcClass managing label - Lesson detailsls_manage_status_lblThay đổi trạng tháiStatus managing label - Lesson detailsls_manage_start_lblBắt đầuStart managing label - Lesson detailsls_manage_learners_btnXem người họcView learners button - Lesson details (manage section)ls_manage_editclass_btnĐiều chỉnh lớp họcEdit class button - Lesson details (manage section)ls_manage_apply_btnĐăng kýStatus Apply button - Lesson details (manage section)ls_manage_schedule_btnThời gian biểuSchedule start button - Lesson details (manage section)ls_manage_start_btnBắt đầu Start immediately button - Lesson details (manage section)ls_manage_date_lblNgàyDate field title - Lesson details (manage section)ls_duration_lblKhoảng thời gian mà hoạt động đã diễn raElapsed duration of lesson - Lesson detailsls_manage_status_cmbLựa chọn trạng tháiStatus combo top (index) item - Lesson details (manage section)ls_status_cmb_activateTrạng thái hoạt độngLesson status option - Activatels_status_cmb_disableVô hiệu hóaLesson status option - Disable (suspend)ls_status_cmb_enableHoạt độngLesson status option - Enable (make active/unsuspend)ls_status_cmb_archiveLưu trữLesson status option - Archivels_status_active_lblTạo nhưng không bắt đầuCurrent status description if active (enabled)ls_status_disabled_lblHoãnCurrent status description if suspended (disabled)ls_status_archived_lblLưu trữCurrent status description if archviedls_status_started_lblBắt đầuCurrent status description if started (enabled)ls_win_editclass_titleĐiều chỉnh lớp họcEdit class window titlels_win_learners_titleXem người họcView learners window titlemnu_viewXem Menu bar Viewls_win_editclass_save_btnLưuSave button on Edit Class popupls_win_editclass_cancel_btnHủyCancel button on Edit Class popupls_win_learners_close_btnĐóngClose button on View Learners popupls_win_editclass_organisation_lblTổ chứcHeading for Organisation tree on Edit Class popupls_win_editclass_staff_lblNhân viênHeading for Staff list on Edit Class popupls_win_editclass_learners_lblNgười họcHeading for Learners list on the Edit Class popupls_win_learners_heading_lblHọc viên trong lớpHeading on View Learners window panel.td_desc_headingKiểm soát nâng caoTodo tab description headingtd_desc_textTab Todo không được yêu cầu để hoàn thành chuỗi này. Xem trợ giúpTodo tab descriptionopt_activity_titleHoạt động tùy chọnTitle for Optional Activity on canvas (monitoring)lbl_num_activitiesHoạt động conNumber of child activities for Complex activity shown on canvas.ls_of_textThuộc vềi.e. 1 of 10 Used for showing how many learners have startedls_manage_txtQuản lý bài họcHeading for Management section of Lesson Tabls_tasks_txtNhiệm vụ yêu cầuHeading for Required Tasks (todo section of Lesson tab)td_goContribute_btnTiếp tụcGo button on contribute entry itemlearner_exportPortfolio_btnXuất kết quả học tậpLabel for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lblThời gian biểuLesson status option - Scheduled (Not Started)al_confirm_forcecomplete_toactivityBạn có chắc chắn muốn sắp xếp những học viên hoàn thành '{0}' vào hành động '{1}' ? Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivityBạn muốn đặt học viên '{0}' tại hoạt động hiện tại hay lên hoạt động đã hoàn thành '{1}'Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinishBạn có chắc chắn muốn sắp xếp học viên hoàn tất bài học '{0}' về cuối bài họcMessage to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notargetHãy đặt học viên '{0}' lên 1 hoạt động hoặc về cuối bài họcError Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGateNhững người học đã kết thúcTitle for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltipHoàn tất nhiệm vụtool tip message for go button in required tasks list in lesson tabhelp_btn_tooltipTrợ giúptool tip message for help button in toolbarrefresh_btn_tooltipNạp lại dữ liệu mới nhất cho người họctool tip message for the refresh buttonls_manage_editclass_btn_tooltipĐiều chỉnh danh sách học viên và nhân viên được gán cho lớp học nàytool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltipHiển thị tất cả học viên gán cho lớp học nàytool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltipThay đổi trạng thái bài học dựa trên sự lựa chọn giảm xuốngtool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusclass_exportPortfolio_btn_tooltipXuất kết quả học tập của lớp học và lưu nó trên máy tính của bạn để xem sautool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltipXuất kết quả học tập của học viên này và lưu nó trên máy tính của bạn để xem sautool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltipBắt đầu bài học này ngaytool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltipLịch bài giảng sautool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltipKichk đúp để xem trước quá trình cung cấp cho hoạt động hiện tại của học viêntool tip message for current activity iconcompleted_act_tooltipKích đúp để xem trước sự cung cấp đối với các họat động hoàn thành cảu học viêntool tip message for completed activity iconal_doubleclick_todoactivityXin lỗi, học viên: {0} đã không đi đến hoạt động {1}alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstartBạn chưa lựa chọn ngày. Hãy chọn 1 ngày và thời gianMessage when no date is selected for starting a lesson by schedule.ls_manage_time_lblThời gian (Giờ: Phút)Time fields title - Lesson details (manage section)al_validation_schtimeHãy nhập vào thời gian hợp lýAlert message when user enters an invalid time for schedule startfinish_learner_tooltipĐể hoàn tất việc sắp xếp học viên tới cuối bài học, kéo biểu tượng học viên qua thanh này và thả biểu tượng đóRollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activityMở hoạt động theo dõiLabel for Custom Context Monitor Activityccm_monitor_activityhelpTrợ giúp hoạt động theo dõiLabel for Custom Context Monitor Activity Helplearner_viewJournals_btnNhật ký đăng nhậpLabel for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltipXem tất cả nhật ký đăng nhập được lưu bởi học viêntool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lblURL của học viênLearner URL:ls_manage_learnerExpp_lblCó thể xuất kết quả học tập cho học viênLabel for Enable export portfolio for Learnerls_confirm_expp_enabledBây giờ có thể xuất kết quả học tập cho học viênConfirmation message on enabling export portfolio for learnersls_confirm_expp_disabledBây giờ không thể xuất kết quả học tập cho học viênConfirmation message on disabling export portfolio for learnersls_remove_confirm_msgBạn vừa chọn bỏ đi bài học này. Bài học được bỏ đi sẽ không thể lấy lại được. Tiếp tục?remove confirm msgls_status_cmb_removeGõ bỏLesson status option - Removels_status_removed_lblĐã gỡ bỏCurrent status description if deleted (removed) lesson.al_yesYes on the alert dialogal_noKhông'No' on the alert dialogls_remove_warning_msgCảnh báo : Bài học sẽ được bỏ đi. Bạn có muốn giữ bài học này dưới dạng văn thư không?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0} Học viênGroup name for the class's learners group.staff_group_name{0} Giảng viênGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/zh_CN_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_alert警惕Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm确定To Confirm title for LFErroral_okOK on the alert dialogapp_chk_langload语言数据没有被装载message for unsuccessful language loadingapp_chk_themeload题目数据没有被装载message for unsuccessful theme loadingapp_fail_continue请求不能继续。请联系技术支持。message if application cannot continue due to any errordb_datasend_confirm谢谢您向服务器传送数据Message when user sucessfully dumps data to the servermnu_edit编辑Menu bar Editmnu_edit_copy复制Menu bar Edit &gt; Copymnu_edit_cut剪切Menu bar Edit &gt; Cutmnu_edit_paste粘贴Menu bar Edit &gt; Pastemnu_file文件Menu bar Filemnu_file_refresh刷新Menu bar Refreshmnu_file_editclass编辑类Menu bar Edit Classmnu_file_start开始Menu bar Startmnu_help帮助Menu bar Helpmnu_help_abt关于Menu bar Aboutperm_act_lbl允许Label for permission gate activitysched_act_lbl时间表Label for schedule gate activitysynch_act_lbl同步Used as a label for the Synch Gate Activity Typews_RootRoot folder title for workspacews_dlg_cancel_button取消2ws_dlg_location_button位置Workspace dialogue Location btn labelws_tree_mywsp我的工作空间The root level of the treews_tree_orgs组织Shown in the top level of the tree in the workspacesys_error_msg_start发生了一个系统错误Common System error message starting linesys_error_msg_finish你需要重新启动LAMS设计来继续。你向保存下列有关这个错误的信息来帮助解决这个问题吗?Common System error message finish paragraphsys_error系统错误System Error elert window titlemnu_file_schedule时间表Menu bar Schedulemnu_file_exit退出Menu bar Exitmnu_view_learners学习者Menu bar Learnersmnu_go前进Menu bar Gomnu_go_lesson课程Menu bar Go to Lesson Tabmnu_go_schedule时间表Menu bar Go to Schedule Tabmnu_go_learners学习者Menu bar Go to Learners Tabmnu_go_todo去做Menu bar Todols_manage_editclass_btn编辑班级Edit class button - Lesson details (manage section)ls_manage_apply_btn申请Status Apply button - Lesson details (manage section)ls_manage_schedule_btn时间表Schedule start button - Lesson details (manage section)ls_manage_start_btn立即开始Start immediately button - Lesson details (manage section)ls_status_cmb_disable不可用Lesson status option - Disable (suspend)ls_status_cmb_enable活动的Lesson status option - Enable (make active/unsuspend)ls_status_disabled_lbl暂停的Current status description if suspended (disabled)ls_status_archived_lbl存档的Current status description if archviedls_win_learners_title观看学习者View learners window titlemnu_view观看Menu bar Viewls_win_editclass_save_btn保存Save button on Edit Class popupls_win_editclass_learners_lbl学习者Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl班级中的学习者Heading on View Learners window panel.opt_activity_title可选活动Title for Optional Activity on canvas (monitoring)lbl_num_activities子活动Number of child activities for Complex activity shown on canvas.ls_tasks_txt必需的任务Heading for Required Tasks (todo section of Lesson tab)td_goContribute_btnGo button on contribute entry itemal_confirm_forcecomplete_tofinish你确信你想强迫完成学习者'{0}'到课程结尾吗?Message to get confirmation from user before sending data to server for force complete to the end of lessonls_status_scheduled_lbl预定的Lesson status option - Scheduled (Not Started)goContribute_btn_tooltip现在完成这个任务tool tip message for go button in required tasks list in lesson tabrefresh_btn_tooltip重载学习者的最近进展数据tool tip message for the refresh buttonls_manage_learners_btn_tooltip显示所有分配给这个课程的学习者tool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltip在向下移动选择的基础上改变这个课程的状态tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusls_manage_status_cmb选择状态Status combo top (index) item - Lesson details (manage section)ls_manage_learners_btn观看学习者View learners button - Lesson details (manage section)ls_manage_date_lbl日期Date field title - Lesson details (manage section)ls_duration_lbl消逝的持续时间Elapsed duration of lesson - Lesson detailsls_status_cmb_activate使活动Lesson status option - Activatels_status_cmb_archive存档Lesson status option - Archivels_status_started_lbl开始的Current status description if started (enabled)ls_win_editclass_title编辑班级Edit class window titlels_win_editclass_cancel_btn取消Cancel button on Edit Class popupls_win_learners_close_btn关闭Close button on View Learners popupls_win_editclass_organisation_lbl组织Heading for Organisation tree on Edit Class popuptd_desc_heading高级控制Todo tab description headingtd_desc_text使用这个Todo标签不是完成序列所必需的。更多信息请看帮助页面。这个特征已完全功能化。Todo tab descriptionls_of_texti.e. 1 of 10 Used for showing how many learners have startedls_manage_txt管理课程Heading for Management section of Lesson Tablearner_exportPortfolio_btn导出公文包Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class dataal_confirm_forcecomplete_toactivity你确信你想强迫学习者'{0}'完成活动'{1}'吗?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedal_error_forcecomplete_invalidactivity你已经将学习者'{0}'置于当前或已完成的活动'{1}'中了。Error message when learner has been dropped on its previous or on its current activityal_error_forcecomplete_notarget请将学习者'{0}'置于活动中或课程的结尾。Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate已完成的学习者Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessonhelp_btn_tooltip帮助tool tip message for help button in toolbarls_manage_schedule_btn_tooltip确定课程将来开始的时间tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltip双击,为学习者的当前活动回顾发展中的贡献tool tip message for current activity iconal_doubleclick_todoactivity对不起,学习者'{0}'还没有到达活动'{1}'。alert message when user double click on the todo activity in the sequence under learner tabrefresh_btn刷新Refresh buttonhelp_btn帮助Help buttonmtab_lesson课程Monitor Lesson details tabmtab_seq序列Monitor Sequence tabmtab_learners学习者Monitor Learners tabmtab_todo去做Monitor Todo tabls_learners_lbl学习者Learner label - Lesson detailsls_class_lbl班级Class label - Lesson detailsls_manage_class_lbl班级Class managing label - Lesson detailsls_manage_start_lbl开始Start managing label - Lesson detailsls_status_lbl状态Status label - Lesson detailsclass_exportPortfolio_btn_tooltip导出课程公文包,为了将来的参考,在你的计算机上保存它。tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerlearner_exportPortfolio_btn_tooltip导出这个学习者公文包,为了将来的参考,在你的计算机上保存它。tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencels_manage_start_btn_tooltip立即开始课程tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessoncompleted_act_tooltip双击,回顾学习者已完成活动的贡献tool tip message for completed activity iconal_validation_schstart没有日期被选定。请选择一个日期和时间。Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl时间(小时:分钟)Time fields title - Lesson details (manage section)al_validation_schtime请输入一个有效的时间。Alert message when user enters an invalid time for schedule startls_manage_learnerExpp_lbl学习者允许导出的导出文件夹Label for Enable export portfolio for Learnerls_confirm_expp_enabled学习者现在可以导出文件夹Confirmation message on enabling export portfolio for learnersls_confirm_expp_disabled学习者现在不允许导出文件夹Confirmation message on disabling export portfolio for learnersal_send发送Send button label on the system error dialogccm_monitor_activity打开活动监视器Label for Custom Context Monitor Activityccm_monitor_activityhelp监视活动帮助Label for Custom Context Monitor Activity Helpls_learnerURL_lbl学习者 URL:Learner URL:finish_learner_tooltip要强制使一个学生结束课程,请将该学生的图标拖到此栏并释放该图标Rollover message when user moves their mouse over the end gate bar in monitor tab viewlearner_viewJournals_btn日志入口Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip查看学习者保存的日志入口tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.learners_group_name{0}-学习者Group name for the class's learners group.ls_remove_confirm_msg您已经选择移去该课程,移去的课程将不能再获取,继续吗?remove confirm msgls_status_cmb_remove移去Lesson status option - Removels_status_removed_lbl移去的Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_no'No' on the alert dialogcheck_avail_btn检查可用性Check Availability button labelcontinue_btn继续Continue button labells_continue_lbl您好{0},您还没有完成编辑{0}。Continue message labells_sequence_live_edit_btn灵活编辑Live Edit buttonls_sequence_live_edit_btn_tooltip为该课程编辑目前的设计。Tool tip message for Live Edit buttonmsg_bubble_check_action_lbl检查中...Label displayed when checking availability of lesson.msg_bubble_failed_action_lbl不可用,重试。Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lbl对不起,{0}目前正在被{1}编辑。Warning message on Monitor locked screen.al_confirm_live_edit您将打开灵活编辑,继续吗?Confirm warning (dialog) message displayed when opening Live Edit.about_popup_title_lbl关于-{0}Title for the About Pop-up window.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_trademark_lbl{0} 是一个商标。Label displaying the trademark statement in the About dialog.about_popup_license_lbl该软件是一个自由软件; 您可以重新发布并/或修改它,前提是您必须遵守自由软件组织发布的准则。Label displaying the license statement in the About dialog.stream_reference_lbl LAMS Reference label for the application stream.gpl_license_url www.gnu.org/licenses/gpl.txt URL address for GPL licence.stream_url http://{0}foundation.org URL address for the application stream.ls_continue_action_lbl点击{0}以继续。Action label displayed when a user can proceed to Live Edit.about_popup_copyright_lbl © 2002-2008 {0} 基金。Label displaying copyright statement in About dialog.lbl_num_sequences{0}—序列Number of child sequence or Optional Sequences activity shown on canvas.al_activity_openContent_invalid对不起,在您右击鼠标选择打开/编辑活动菜单之前,请选择该活动。alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasclose_mc_tooltip最小Tooltip message for close button on Branching canvas.mv_search_default_txt输入搜索查询或页面号码The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msg请输入搜索查询或范围在1到{0}直接的页面号码This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg页面号码必须在1和{0}之间This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0}没有找到。This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl页面{0}/{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl开始If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl索引视图When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.al_confirm_forcecomplete_to_end_of_branching_seq你确定要强制学习者{0}结束该分支流程吗?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.ls_seq_status_teacher_branching教师A type of branching where the Teacher chooses which learners to add to each branchls_seq_status_not_set还没有设置The value of the sequence's status is not setbranch_mapping_dlg_conditions_dgd_lbl映射Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_condition_col_lbl条件Column heading for showing condition description of the mapping.ccm_monitor_view_group_mappings查看分支的分组Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings查看分支的条件Label for Custom Context View Condition Mappingsbranch_mapping_dlg_group_col_lblColumn heading for showing group name of the mapping.mnu_go_sequence流程Menu bar Go to Sequence Tabcv_activity_helpURL_undefined找不到{0}的帮助页面Alert message when a tool activity has no help url defined.view_competences_dlg查看映射Allows you to view all the competences within a learning designview_competences_in_ld_lbl学习设计中的权限:{0}Label for dialog that shows all the competences in a learning design with a name specified by the argumentview_act_mapped_competences查看权限映射Allows you to view competences mapped to a particular activitymapped_competences_lbl已映射的权限Title for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lbl权限映射到{0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lbl标题Competence Title label in Mapped Competences dialogcompetence_desc_lbl描述Competence Description label in Mapped Competences dialogal_activity_view_competence_mappings_invalid请确定在查看权限映射前已选定一个活动。Warning that appears when no activity is selected when the user tries to view competence mappingsal_error_forcecomplete_to_different_seq{0}不能被强制拖到不同分支或流程中的活动中This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderation延迟Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later稍后定义Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate许可闸门A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate同步闸门A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping选择小组Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution贡献Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate系统闸门A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_sched_gate时间闸门A type of Gate Activity where progress depends on time (start time and/or end time)cv_design_unsaved_live_edit未保存的修改将被自动保存,你想继续插入/合并吗?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching您不能添加或移除分组中的小组,因为它正在被分支流程使用;并且添加或移除小组将影响到分支设置的分组。您只能在现有的小组中添加或移除用户。Third instructions paragraph on the chosen branching screen.ls_win_editclass_staff_lbl监控者Heading for Staff list on Edit Class popupmnu_help_help监控帮助Menu bar Help itemls_status_active_lbl已创建但还不开始Current status description if active (enabled)ls_manage_editclass_btn_tooltip编辑分配给这个课程的学习者和监控者列表tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_status_lbl改变状态Status managing label - Lesson detailsorder_learners_by_completion_lbl通过完成活动来命令学生Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonstaff_group_name{0}-监控者Group name for the class's staff group.ls_remove_warning_msg警告:该课程将被移去,您想保留该课程吗?Message for the alert dialog which appears following confirmation dialog for removing a lesson. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/monitoring/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/monitoring/Attic/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/monitoring/zh_TW_dictionary.xml 12 Jan 2010 01:20:20 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3ls_seq_status_not_set尚未設定The value of the sequence's status is not setbranch_mapping_dlg_condition_col_lbl狀態Column heading for showing condition description of the mapping.ls_seq_status_sched_gate時程閘門A type of Gate Activity where progress depends on time (start time and/or end time)branch_mapping_dlg_conditions_dgd_lbl映圖Heading label for Mapping datagrid.branch_mapping_dlg_branch_col_lbl分支Column heading for showing sequence name of the mapping.branch_mapping_dlg_group_col_lbl群組Column heading for showing group name of the mapping.ccm_monitor_view_group_mappings檢視群組到分支Label for Custom Context View Group Mappingsccm_monitor_view_condition_mappings檢視Label for Custom Context View Condition Mappingsmnu_go_sequence編程Menu bar Go to Sequence Tabview_competences_in_ld_lbl設計中的能力Label for dialog that shows all the competences in a learning design with a name specified by the argumentmtab_lesson課程Monitor Lesson details tabmtab_seq順序Monitor Sequence tabls_status_lbl狀態Status label - Lesson detailssys_error系統錯誤System Error elert window titlemnu_file_schedule時程表Menu bar Schedulemnu_file_exit離開Menu bar Exitmnu_go_lesson課程Menu bar Go to Lesson Tabmnu_go_schedule時程表Menu bar Go to Schedule Tabrefresh_btn重新整理Refresh buttonhelp_btn輔助Help buttoncv_activity_helpURL_undefined無法找到{0}的幫助頁面Alert message when a tool activity has no help url defined.cv_design_unsaved_live_edit未保存的修改將被自動保存,您想要繼續插入/合併嗎?Confirm alert message displayed when doing an insert/merge to a modified design in Live Edit.label.grouping.general.instructions.branching您不能添加或移除分組中的小組,因為它正在被分支流程使用;並且添加或移除小組將影響到分支設置的分組。您只能在現有的小組中添加或移除使用者。Third instructions paragraph on the chosen branching screen.view_competences_dlg檢視能力Allows you to view all the competences within a learning designview_act_mapped_competences檢視映圖能力Allows you to view competences mapped to a particular activitymapped_competences_lbl映圖能力Title for the dialog that shows all competences mapped to an activitycompetences_mapped_to_act_lbl能力硬圖到{0}Label in the Competence Mappings dialog to show all the competences mapped to an activity who's name is given by the argumentcompetence_title_lbl標題Competence Title label in Mapped Competences dialogcompetence_desc_lbl描述Competence Description label in Mapped Competences dialogal_activity_view_competence_mappings_invalid請確定在查看能力硬圖前已選定一個活動。Warning that appears when no activity is selected when the user tries to view competence mappingsorder_learners_by_completion_lbl按完成排序Label for checkbox in index bar in the learners tab to order learners based how far they've progressed through the lessonls_manage_presenceEnabled_lbl允許學習者查看誰在線上ls_manage_presenceEnabled_lblls_confirm_presence_enabled現在學習者可以看誰在線上ls_confirm_presence_enabledls_confirm_presence_disabled學習者無法看到誰在線上ls_confirm_presence_disabledls_win_learners_heading_class_lbl課程Heading on View Learners window panel (learners of the class).ls_win_learners_heading_activity_lbl活動Heading on View Learners window panel (learners at activity).learner_plus_tooltip{0}學習者。按兩下去看完整的名單Tooltip message displayed when mouse-over the cross icon, displayed when there is a large amount of users at an activity.al_alert注意Generic title for Alert windowal_cancel取消To Confirm title for LFErroral_confirm確認To Confirm title for LFErroral_okOK on the alert dialogapp_chk_langload語言資料還未被載入message for unsuccessful language loadingapp_chk_themeload主題資料還未被載入message for unsuccessful theme loadingapp_fail_continue應用程式無法繼續。請聯絡技術支援message if application cannot continue due to any errordb_datasend_confirm謝謝您傳送資料到伺服器Message when user sucessfully dumps data to the servermnu_edit編輯Menu bar Editmnu_edit_copy拷貝Menu bar Edit &gt; Copymnu_edit_cut剪下Menu bar Edit &gt; Cutmnu_edit_paste貼上Menu bar Edit &gt; Pastemnu_file檔案Menu bar Filemnu_file_refresh重新整理Menu bar Refreshmnu_file_editclass編輯Menu bar Edit Classmnu_file_start開始Menu bar Startmnu_help幫助Menu bar Helpmnu_help_abt有關Menu bar Aboutperm_act_lbl允許Label for permission gate activitysched_act_lbl行程Label for schedule gate activitysynch_act_lbl同步Used as a label for the Synch Gate Activity Typews_Root根目錄Root folder title for workspacews_dlg_cancel_button取消2ws_dlg_location_button地點Workspace dialogue Location btn labelws_tree_mywsp我的工作空間The root level of the treews_tree_orgs組織Shown in the top level of the tree in the workspacesys_error_msg_start系統錯誤發生Common System error message starting linemnu_view_learners學習者...Menu bar Learnersmnu_go啟用Menu bar Gomnu_go_learners學習者Menu bar Go to Learners Tabmnu_go_todo執行Menu bar Todomnu_help_help監視Menu bar Help itemmtab_learners學習者Monitor Learners tabmtab_todo執行Monitor Todo tabls_learners_lbl學習者Learner label - Lesson detailsls_class_lbl課程Class label - Lesson detailssys_error_msg_finish你需要重新啟動LAMS設計來繼續。你想保留下列有關這個錯誤的資訊來幫助解決這個問題嗎?Common System error message finish paragraphal_validation_schtime請輸入一個有效的時間Alert message when user enters an invalid time for schedule startfinish_learner_tooltip要強制一位學習者結束課程,請將該學習者的圖示拖到此欄並釋放該圖示Rollover message when user moves their mouse over the end gate bar in monitor tab viewccm_monitor_activity開啟活動監視器Label for Custom Context Monitor Activityccm_monitor_activityhelp監視活動輔助Label for Custom Context Monitor Activity Helplearner_viewJournals_btn日記記錄Label for Journal Entries button used on Learners tab to view all journal entires for the lesson.learner_viewJournals_btn_tooltip檢視學習者所有儲存的日記記錄tool tip message for Journal Entries button used on Learner tab to view all journal entires for the lesson.ls_learnerURL_lbl壆習者URL:Learner URL:ls_remove_confirm_msg您已經選擇移除該課程,移除的課程將不能再獲取,繼續嗎?remove confirm msgls_status_cmb_remove移除Lesson status option - Removels_status_removed_lbl已移除Current status description if deleted (removed) lesson.al_yesYes on the alert dialogal_no'No' on the alert dialogls_remove_warning_msg警告:此課程將被移除。你要保存此課程嗎?Message for the alert dialog which appears following confirmation dialog for removing a lesson.learners_group_name{0}學習者Group name for the class's learners group.staff_group_name{0}監視Group name for the class's staff group.check_avail_btn檢查可使用的標示Check Availability button labelcontinue_btn繼續Continue button labells_continue_lbl嗨{1},你尚未完成編輯{0}Continue message labells_sequence_live_edit_btn即時編輯Live Edit buttonls_sequence_live_edit_btn_tooltip編輯此課程的設計Tool tip message for Live Edit buttonmsg_bubble_check_action_lbl檢查...Label displayed when checking availability of lesson.msg_bubble_failed_action_lbl不可用,請再試ㄧ次Label displayed when check failed i.e. lesson is still locked.ls_locked_msg_lbl抱歉,{0}目前被{1}編輯中Warning message on Monitor locked screen.al_confirm_live_edit你將開啟即時編輯,你想繼續嗎?Confirm warning (dialog) message displayed when opening Live Edit.al_send送出Send button label on the system error dialogabout_popup_title_lbl有關- {0}Title for the About Pop-up window.about_popup_version_lbl版本Label displaying the version no on the About dialog.about_popup_copyright_lbl© 2002-2009 {0} 基金會Label displaying copyright statement in About dialog.about_popup_trademark_lbl {0} 是{0}基金會( {1} )的註冊商標Label displaying the trademark statement in the About dialog.about_popup_license_lbl該軟體是一個自由軟體; 您可以重新發佈並/或修改它,前提是您必須遵守自由軟體組織發佈的準則。Label displaying the license statement in the About dialog.stream_reference_lblLAMSReference label for the application stream.ls_manage_class_lbl課程:Class managing label - Lesson detailsls_manage_status_lbl改變狀態:Status managing label - Lesson detailsls_manage_start_lbl開始:Start managing label - Lesson detailsls_manage_learners_btn檢視使用者View learners button - Lesson details (manage section)ls_manage_editclass_btn編輯課程Edit class button - Lesson details (manage section)ls_manage_apply_btn套用Status Apply button - Lesson details (manage section)ls_manage_schedule_btn行程Schedule start button - Lesson details (manage section)ls_manage_start_btn現在開始Start immediately button - Lesson details (manage section)ls_manage_date_lbl日期Date field title - Lesson details (manage section)ls_duration_lbl持續時間Elapsed duration of lesson - Lesson detailsls_manage_status_cmb選擇狀態Status combo top (index) item - Lesson details (manage section)ls_status_cmb_activate啟用Lesson status option - Activatels_status_cmb_disable關閉Lesson status option - Disable (suspend)ls_status_cmb_enable啟用Lesson status option - Enable (make active/unsuspend)ls_status_cmb_archive檔案櫃Lesson status option - Archivels_status_active_lbl已建立但尚未啟用Current status description if active (enabled)ls_status_disabled_lbl已經關閉Current status description if suspended (disabled)ls_status_archived_lbl已歸檔Current status description if archviedls_status_started_lbl已經啟用Current status description if started (enabled)ls_win_editclass_title編輯課程Edit class window titlels_win_learners_title檢視學習者View learners window titlemnu_view檢視Menu bar Viewls_win_editclass_save_btn儲存Save button on Edit Class popupls_win_editclass_cancel_btn取消Cancel button on Edit Class popupls_win_learners_close_btn結束Close button on View Learners popupls_win_editclass_organisation_lbl組織Heading for Organisation tree on Edit Class popupls_win_editclass_staff_lbl監視Heading for Staff list on Edit Class popupls_win_editclass_learners_lbl學習者Heading for Learners list on the Edit Class popupls_win_learners_heading_lbl學習者於{0}: {1} Heading on View Learners window panel.td_desc_heading進階控制Todo tab description headingopt_activity_title選擇性活動Title for Optional Activity on canvas (monitoring)lbl_num_activities{0} - 活動Number of child activities for Complex activity shown on canvas.ls_of_texti.e. 1 of 10 Used for showing how many learners have startedls_manage_txt管理課程Heading for Management section of Lesson Tabgpl_license_urlwww.gnu.org/licenses/gpl.txt URL address for GPL licence.td_goContribute_btn執行Go button on contribute entry itemlearner_exportPortfolio_btn輸出檔案Label for Export Portfolio used both on learners tab to export learner data and monitor tab to export class datals_status_scheduled_lbl已排定時程Lesson status option - Scheduled (Not Started)stream_urlhttp://{0}foundation.org URL address for the application stream.ls_manage_learnerExpp_lbl啟動給學習者的檔案夾Label for Enable export portfolio for Learnerls_confirm_expp_enabled輸出檔案夾已經啟動給學習者Confirmation message on enabling export portfolio for learnersal_confirm_forcecomplete_toactivity你確認要強迫學習者'{0}'完活動'{1}'嗎?Message to get confirmation from user before send data to server for force complete a learner to the activity it has been droppedls_tasks_txt必要的工作項目Heading for Required Tasks (todo section of Lesson tab)ls_confirm_expp_disabled對學習者的輸出檔案夾已經關閉Confirmation message on disabling export portfolio for learnerstd_desc_text使用這個Todo標籤不是完編程列所必需的。更多資訊請看幫助頁面。這個特徵已完全功能化。Todo tab descriptional_error_forcecomplete_invalidactivity你已經將學習者'{0}'置於當前或已完成的活動'{1}'中了Error message when learner has been dropped on its previous or on its current activityal_confirm_forcecomplete_tofinish你確信你想強迫完成學習者'{0}'到課程結尾嗎?Message to get confirmation from user before sending data to server for force complete to the end of lessonal_error_forcecomplete_notarget請安置學習者{0}瑜課程結束的活動中Error Message when learner has been dropped outside of an activity or end of lesson bar at the bottom on the canvastitle_sequencetab_endGate已完成的學習者Title for end gate bar shown at the bottom of monitor tab where user can drop a learner to force complete to the end of lessongoContribute_btn_tooltip現在完成這個項目tool tip message for go button in required tasks list in lesson tabhelp_btn_tooltip幫助tool tip message for help button in toolbarrefresh_btn_tooltip重新載入最近的進度資料給學習者tool tip message for the refresh buttonls_manage_editclass_btn_tooltip編輯學習者的名單與此課程的監視視窗tool tip message for the edit class button in lesson tab under manage lesson sectionls_manage_learners_btn_tooltip顯示此課程所有的學習者tool tip message for the view learners button in lesson tab under manage lesson sectionls_manage_apply_btn_tooltip根據下拉的選項改變課程的狀態tool tip message for the apply button in lesson tab under manage lesson section to change the lesson statusls_continue_action_lbl按下{0}去進行Action label displayed when a user can proceed to Live Edit.learner_exportPortfolio_btn_tooltip輸出此學習者的檔案夾並儲存於電腦中以未來參考tool tip message for exportportfolio button for individual learner to export portfolio for the respective learner and save to it in on user computer for future referencelbl_num_sequences{0} - 編程Number of child sequence or Optional Sequences activity shown on canvas.class_exportPortfolio_btn_tooltip輸出此課程的檔案夾並儲存於電腦中以供未來參考tool tip message for exportportfolio button next to refresh button to export class portfolio and save in on user computerls_manage_start_btn_tooltip送出tool tip message for the start now button in lesson tab under manage lesson section when staff has not yet started the lesson while creating a lessonls_manage_schedule_btn_tooltip安排課程起始在一個未來的時間tool tip message for the schedule button in lesson tab under manage lesson section to shedule the lesson to start of selected date and timecurrent_act_tooltip請按兩下去檢視進行中的學習者的現在活動付出tool tip message for current activity iconcompleted_act_tooltip請按兩下去檢視學習者的完成活動進行中的付出tool tip message for completed activity iconal_doubleclick_todoactivity抱歉,學習者:{0}尚未達到這項活動:{1}alert message when user double click on the todo activity in the sequence under learner tabal_validation_schstart日期未選定,請選擇一個日期與時間Message when no date is selected for starting a lesson by schedule.ls_manage_time_lbl時間(小時:分)Time fields title - Lesson details (manage section)al_activity_openContent_invalid對不起,在您右擊滑鼠選擇打開/編輯活動功能表之前,請選擇該活動。alert message when user click Open/Edit Activity Content menu item in context menu before selecting any activity on the canvasmv_search_default_txt輸入搜尋字串或頁碼The text that is initially displayed in the search/index text field. Search query corresponds to all or part of a learners' name and page number corresponds to a specific page of learners. The user will enter something and then click on the 'Go' button, after which the results will be displayed.mv_search_error_msg請輸入搜尋字串或介於1和{0}頁碼This error message appears if the search/index field is blank when the user clicks the 'Go' button.mv_search_invalid_input_msg頁碼必須介於1和{0}This error message appears if the number entered by the user lies outside the range of viewable pages.mv_search_not_found_msg{0}沒有找到This message appears when the search does not find any learners whose names contain the search parameter.mv_search_current_page_lbl頁面{0}的{1}{0} is the page we are on now and {1} is the number of pagesmv_search_go_btn_lbl啟動If the learner entered text into the index/search field, clicking this button will search all started learners names for the text they entered, otherwise if they entered a number and clicked go. It will show the contents of the page, whose number they entered.mv_search_index_view_btn_lbl目錄檢視When the user clicks this button, they will be returning from the search view to the index view. It will once again allow them to view all the available pages, and navigate to them directly. This button is only visible when the user is in the search view.close_mc_tooltip最小話Tooltip message for close button on Branching canvas.al_confirm_forcecomplete_to_end_of_branching_seq你確定要強制學習者{0}結束該分支流程嗎?This confirmation dialog appears after a learner icon has been dropped on the finish door within the branching view.al_error_forcecomplete_to_different_seq{0}不能被強制拖到不同分支或流程的活動中This alert appears when either: The learner is in a branching sequence and the monitor tries to force complete them to an activity in a different branching sequence, or: the learner is in an optional sequence and the monitor tries to force complete them to an activity in a different optional sequencels_seq_status_moderation主導Displayed when we want the Teacher to moderate an activitiy (for example a chat room)ls_seq_status_define_later稍後定義Of an Activity: when the content for the Activity must defined in the Lesson (via Monitoring) rather than by the Authorls_seq_status_perm_gate許可閘門A type of Gate Activity where progress depends on permission from a Teacherls_seq_status_synch_gate同步閘門A type of Gate Activity where progress depends on all Learners in the Class or Group reaching the activityls_seq_status_choose_grouping選擇群組Allows the Teacher to add the learners to chosen groupsls_seq_status_contribution付出Any 'Contributions' to be made by a monitor, such as editing text for 'Define in Monitor' tasks, marking essay/reports, releasing stop points, etc.ls_seq_status_system_gate系統閘門A System Gate is a stop point that can be controlled by time setting or user controlls_seq_status_teacher_branching敎師選則分支A type of branching where the Teacher chooses which learners to add to each branch \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/ar_JO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/ar_JO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/ar_JO_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizardDesc_1_lblالدليل ادناه يحتوي تصاميم لانشاء الدرس. اختر احداها والنقر عل زر التالي للاستمرار. Step 1 descriptioncancel_btnإلغاءCancel button to exit wizardal_cancelإلغاءCancel on alert dialogconfirmMsg_1_txt{0} لقد بدأ.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} قد جدول لـ {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} تم انشاءه و لكن لم يتم تشغيلهConclusion screen description if lesson created but not startedsummery_design_lblسلسلة:Label for summery heading of selected design field.al_validation_schstartلم يتم اختيار التاريخ،من فضلك اختر الوقت و التاريخ ،و انقر ابدأMessage when no date is selected starting a lesson by schedule.summery_title_lblعنوان:Label for summery heading of defined title.summery_desc_lblوصف:Label for summery heading of defined description.summery_course_lblمجموعة:Label for summery heading of selected course field.summery_class_lblمجموعة فرعية:Label for summery heading of selected class field.summery_staff_lblالموظفونLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblمتعلمون:Label for summery heading of number of selected learners in the lesson class.al_sendارسلOK on system error dialogal_validation_schtimeالرجاء إدخال وقت مقبولAlert message when user enters an invalid time for schedule startdate_lblالتاريخLabel for Schedule Date fieldtime_lblالوقت (الساعات : الدقائق)Label for Schedule Time fieldwizard_selAll_cb_lblإختر الكلّLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} متعلّمونGroup name for the class's learners group.wizard_learner_expp_cb_lblمكّن تصدير المعلومات الشخصية للمتعلّمLabel for Enable export portfolio for Learnerstaff_group_name{0} مراقبونGroup name for the class's staff group.addmore_btnأضف درسا آخراButton to add another lesson, return to first step.sys_error_msg_startلم تكن قادرا على إنشاء الدّرس.Common System error message starting linesys_error_msg_finishهل تريد ارسال تقرير بالخطأ ؟Common System error message finish paragraphsys_errorخطأ النظامSystem Error elert window titleprev_btn< سابقPrevious step buttonnext_btnتالي >Next step buttonfinish_btnالنهايةFinish button to complete wizardclose_btnاغلقClose button to close windowstart_btnإبدأ الآنStart button to start new lessontitle_lblالعنوانNew Lesson titledesc_lblالوصفNew Lesson descriptionlearner_lblمتعلمونHeading for list of class learnersstaff_lblمراقبونHeading for list of class staffschedule_cb_lblالجدولLabel for schedule checkboxsummery_lblالخلاصةHeading for summery outlinews_Rootالمجلد الرئيسيRoot folder title for workspacews_tree_mywspمساحة العملThe root level of the workspace treewizardTitle_1_lblاختر التصميمStep 1 screen titlewizardTitle_2_lblتفاصيل الدّرسStep 2 screen titlewizardTitle_3_lblخطوة 2 من 3: إختر المتعلّمين و المراقبينStep 3 screen titlewizardTitle_4_lblخطوة 3 من 3: أكّد تفاصيل الدّرسStep 4 screen titlewizardTitle_x_lblدرس: {0}Confirmation screen titleal_alertانذارGeneric title for Alert windowal_confirmأكّدTo Confirm title for LFErroral_okموافقOK on alert dialogal_validation_msg1يجب اختيار تصميم صحيحMessage when no design is selected on step 1al_validation_msg2العنوان حقل اجباري Message when title field is empty on Step 2al_validation_msg3_1لم يتم اختبار مادة أو درسMessage when no course/class is selected in Step 3al_validation_msg3_2يجب اختيار على الاقل طالب و مدرس Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblيمكنك اضافة الاسم و الوصف الذي تريد الطلاب أن يروه لهذه المادةStep 2 descriptionwizardDesc_3_lblيمكنك عدم اختيار الطلاب و الموظفين من الصف بعدم نقر المربع الملاصق لأسمائهمStep 3 descriptionwizardDesc_4_lblبالضغط على زر التشغيل يمكنك بدأ الدرس فورا وبرمجة الدرس ليبدأ في وقت و زمن محددين Step 4 description \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/cy_GB_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/cy_GB_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/cy_GB_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startNid oeddech yn gallu creu gwers.Common System error message starting linesys_error_msg_finishYdych chi eisiau anfon adroddiad gwall?Common System error message finish paragraphsys_errorGwall SystemSystem Error elert window titleprev_btn&lt; BlaenorolPrevious step buttonnext_btnNesaf &gt;Next step buttonfinish_btnDechrau yn y MonitorFinish button to complete wizardcancel_btnCansloCancel button to exit wizardclose_btnCauClose button to close windowstart_btnDechrau NawrStart button to start new lessontitle_lblTeitlNew Lesson titledesc_lblDisgrifiadNew Lesson descriptionlearner_lblDysgwyrHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblTrefnlenLabel for schedule checkboxsummery_lblCrynodebHeading for summery outlinews_RootGwraiddRoot folder title for workspacews_tree_mywspFy Lle GwaithThe root level of the workspace treewizardTitle_1_lblDewiswch y DilyniantStep 1 screen titlewizardTitle_2_lblManylion y WersStep 2 screen titlewizardTitle_3_lblDewiswch Fyfyrwyr a StaffStep 3 screen titlewizardTitle_4_lblCadarnhewch Fanylion y WersStep 4 screen titlewizardTitle_x_lblGwers: {0}Confirmation screen titleal_alertRhybuddGeneric title for Alert windowal_cancelCansloCancel on alert dialogal_confirmCadarnhauTo Confirm title for LFErroral_okIawnOK on alert dialogal_validation_msg1Rhaid dewis dilyniant dilys.Message when no design is selected on step 1al_validation_msg2Teitl yn faes gofynnol.Message when title field is empty on Step 2al_validation_msg3_1Dim cwrs neu ddosbarth wedi'i ddewis.Message when no course/class is selected in Step 3al_validation_msg3_2Rhaid cael o leiaf 1 aelod staff a dysgwr wedi'i ddewis.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblMae'r strwythur cyfeiriadur isod yn cynnwys y dilyniannu y gallwch eu creu ar gyfer gwers. Dewiswch un a chliciwch ar y botwm nesaf i barhau.Step 1 descriptionwizardDesc_2_lblGallwch ychwanegu'r enw a'r disgrifiad yr hoffech i'r myfyrwyr ei weld ar gyfer y wers hon.Step 2 descriptionwizardDesc_3_lblGallwch ddewis dad-ddewis myfyrwyr a staff o'r dosbarth hwn trwy ddad-dicio'r blwch wrth ochr eu henwau.Step 3 descriptionwizardDesc_4_lblTrwy wasgu ar y botwm Dechrau gallwch ddechrau’r wers yn syth. Hefyd, gallwch drefnu i'r wers ddechrau ar ddyddiad ac amser arbennig.Step 4 descriptionconfirmMsg_1_txt{0} wedi dechrau.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} wedi cael ei drefnu ar gyfer {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} wedi cael ei greu ond heb ei ddechrau eto.Conclusion screen description if lesson created but not startedal_validation_schstartDim dyddiad wedi'i ddewis. Dewiswch ddyddiad ac amser, yna cliciwch ar y botwm Trefnlen.Message when no date is selected starting a lesson by schedule.summery_design_lblDilyniant:Label for summery heading of selected design field.summery_title_lblTeitl:Label for summery heading of defined title.summery_desc_lblDisgrifiad:Label for summery heading of defined description.summery_course_lblGrŵp:Label for summery heading of selected course field.summery_class_lblIs-grŵp:Label for summery heading of selected class field.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblDysgwyr:Label for summery heading of number of selected learners in the lesson class.al_sendAnfonOK on system error dialogal_validation_schtimeRhowch amser dilys.Alert message when user enters an invalid time for schedule startdate_lblDyddiadLabel for Schedule Date fieldtime_lblAmser (Awr : Munud)Label for Schedule Time fieldwizard_selAll_cb_lblDewis PopethLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblGalluogi allforio portffolio i'r dysgwrLabel for Enable export portfolio for Learnerlearners_group_name{0} dysgwyrGroup name for the class's learners group.staff_group_name{0} staffGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/da_DK_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/da_DK_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/da_DK_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startDet lykkedes dig ikke at oprette en lektion.Common System error message starting linesys_error_msg_finishØnsker du at sende en fejlrapport?Common System error message finish paragraphsys_errorSystemfejlSystem Error elert window titleprev_btn< ForrigePrevious step buttonnext_btn> NæsteNext step buttonfinish_btnStart i MonitorFinish button to complete wizardcancel_btnAnnullérCancel button to exit wizardclose_btnLukClose button to close windowstart_btnStart nuStart button to start new lessontitle_lblTitelNew Lesson titledesc_lblBeskrivelseNew Lesson descriptionlearner_lblBrugereHeading for list of class learnersstaff_lblInstruktørerHeading for list of class staffschedule_cb_lblTidsplanLabel for schedule checkboxsummery_lblResuméHeading for summery outlinews_RootRodRoot folder title for workspacews_tree_mywspMit arbejdsområdeThe root level of the workspace treewizardTitle_1_lblVælg sekvensStep 1 screen titlewizardTitle_2_lblLektionsdetaljerStep 2 screen titlewizardTitle_3_lblVælg brugere og instruktørerStep 3 screen titlewizardTitle_4_lblBekræft lektionsdetaljerStep 4 screen titlewizardTitle_x_lbl{0}Confirmation screen titleal_alertNB!Generic title for Alert windowal_cancelAnnullérCancel on alert dialogal_confirmBekræftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Vælg et gyldigt designMessage when no design is selected on step 1al_validation_msg2Du skal skrive en titelMessage when title field is empty on Step 2al_validation_msg3_1Intet kursus og ingen klasse blev valgtMessage when no course/class is selected in Step 3al_validation_msg3_2Der skal vælges mindst én bruger og én instruktørMessage when either no staff/learner users are selected in Step 3.wizardDesc_1_lblMappestrukturen nedenfor indeholder de sekvenser, som du kan oprette lektioner med. Vælg ét og klik på "Næste" for at fortsætte.Step 1 descriptionwizardDesc_2_lblDu kan tilføje det navn og den beskrivelse, du ønsker brugerne skal se for denne lektion.Step 2 descriptionwizardDesc_3_lblDu kan fravælge brugere og instruktører fra denne klasse ved at fjerne markeringen i boksen ud for deres navne.Step 3 descriptionwizardDesc_4_lblVed at klikke på knappen "Start" kan du aktivere lektionen med det samme. Du kan også sætte lektionen til at starte på en bestemt dato og et bestemt tidspunkt.Step 4 descriptionconfirmMsg_1_txt{0} er startet.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} er fastsat til at starte {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} er oprettet, men er ikke startet endnu.Conclusion screen description if lesson created but not startedal_validation_schstartIngen dato blev valgt. Vælg en dato og et tidspunkt, og klik derefter på knappen "Skema".Message when no date is selected starting a lesson by schedule.summery_design_lblSekvensLabel for summery heading of selected design field.summery_title_lblTitelLabel for summery heading of defined title.summery_desc_lblBeskrivelseLabel for summery heading of defined description.summery_course_lblGruppeLabel for summery heading of selected course field.summery_class_lblUndergruppeLabel for summery heading of selected class field.summery_staff_lblInstruktørerLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblBrugereLabel for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogal_validation_schtimeAngiv et gyldigt tidspunktAlert message when user enters an invalid time for schedule startdate_lblDatoLabel for Schedule Date fieldtime_lblTid (timer : minutter)Label for Schedule Time fieldwizard_selAll_cb_lblVælg alleLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblSlå "Eksportér portfolio" til for brugereLabel for Enable export portfolio for Learnerlearners_group_name{0} brugereGroup name for the class's learners group.staff_group_name{0} stabGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/de_DE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/de_DE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/de_DE_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startSie sind nicht berechtigt, eine Lektion anzulegen.Common System error message starting linesys_error_msg_finishWollen sie einen Fehlerbericht versenden?Common System error message finish paragraphsys_errorSystemfehlerSystem Error elert window titleprev_btn< ZurückPrevious step buttonnext_btnWeiter >Next step buttoncancel_btnAbbrechenCancel button to exit wizardclose_btnSchließenClose button to close windowtitle_lblTitelNew Lesson titledesc_lblBeschreibungNew Lesson descriptionlearner_lblTeilnehmer/innenHeading for list of class learnersstaff_lblTrainer/innenHeading for list of class staffschedule_cb_lblTerminLabel for schedule checkboxsummery_lblZusammenfassungHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMein ArbeitsplatzThe root level of the workspace treewizardTitle_2_lblDetails der LektionStep 2 screen titlewizardTitle_3_lblTeilnehmer/innen undf Trainer/innen auswählenStep 3 screen titlewizardTitle_4_lblDetails bestätigenStep 4 screen titlewizardTitle_x_lblLektion: {0}Confirmation screen titleal_alertHinweisGeneric title for Alert windowal_cancelAbbrechenCancel on alert dialogal_confirmBestätigenTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Titel ist ein Pflichtfeld.Message when title field is empty on Step 2al_validation_msg3_1Es wurde keine Klasse oder Kurs ausgewählt.Message when no course/class is selected in Step 3al_validation_msg3_2Es muß mindestens je ein/e Trainer/in und ein/e Teilnehmer/in ausgewählt werden.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblGeben Sie einen Namen und eine Beschreibung ein, die die Teilnehmer/innen sehen können.Step 2 descriptionwizardDesc_3_lblKlicken Sie auf die Box, um die jeweiligen Personen abzuwählen.Step 3 descriptionwizardDesc_4_lblMit dem Klick auf den Start-Button beginnen Sie die Lektion sofort. Sie können jedoch auch einen Termin für den Beginn festlegen.Step 4 descriptionconfirmMsg_1_txt{0} hat begonnen.Conclusion screen description if lesson startedconfirmMsg_2_txtDer Beginn von '{0}' wurde auf {1} festsetzt.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} wurde angelegt, aber noch nicht gestartet.Conclusion screen description if lesson created but not startedal_validation_schstartBisher wurde kein Termin ausgewählt. Tragen sie nun einen Termin ein und klicken Sie dann auf den 'Termin'-Button.Message when no date is selected starting a lesson by schedule.summery_title_lblTitel:Label for summery heading of defined title.summery_desc_lblBeschreibung:Label for summery heading of defined description.summery_staff_lblTrainer/innen:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblTeilnehmer/innen:Label for summery heading of number of selected learners in the lesson class.al_sendSendenOK on system error dialogdate_lblDatumLabel for Schedule Date fieldtime_lblZeit (Stunden:Minuten)Label for Schedule Time fieldal_validation_schtimeGeben Sie bitte eine gültige Zeit ein.Alert message when user enters an invalid time for schedule startwizardDesc_1_lblIn den Verzeichnissen sind Design enthalten, die Sie für eine Lektion verwenden können. Wählen Sie eine aus und klicken Sie auf den Button 'Weiter'.Step 1 descriptionsummery_design_lblSequenz:Label for summery heading of selected design field.summery_course_lblGruppe:Label for summery heading of selected course field.finish_btnBeobachtung startenFinish button to complete wizardstart_btnJetzt startenStart button to start new lessonwizardTitle_1_lblSequenz auswählenStep 1 screen titleal_validation_msg1Ein gültiges Design muß ausgewählt werden.Message when no design is selected on step 1summery_class_lblUntergruppe:Label for summery heading of selected class field.wizard_learner_expp_cb_lblPortfolioexport für Teilnehmer/innen deaktivierenLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblAlle auswählenLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} Teilnehmer/innenGroup name for the class's learners group.staff_group_name{0} Trainer/innenGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/el_GR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/el_GR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/el_GR_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizard_selAll_cb_lblΕπιλογή όλωνLabel for select all check box used to select all staff or learner users in list.wizardTitle_3_lblΕπιλέξτε Εκπαιδευόμενους και ΕπόπτεςStep 3 screen titlestaff_lblΕπόπτεςHeading for list of class stafffinish_btnΕκκίνηση σε ΕποπτείαFinish button to complete wizardstart_btnΈναρξη ΤώραStart button to start new lessonconfirmMsg_1_txt{0} έχει αρχίσει.Conclusion screen description if lesson startedsummery_desc_lblΠεριγραφή:Label for summery heading of defined description.al_sendΑποστολήOK on system error dialogcancel_btnΑκύρωσηCancel button to exit wizarddesc_lblΠεριγραφήNew Lesson descriptional_cancelΑκύρωσηCancel on alert dialogal_confirmΕπιβεβαίωσηTo Confirm title for LFErroral_okΟΚOK on alert dialogwizard_learner_expp_cb_lblΕνεργ. Εξαγ. Φακ. Εργασ. ΕκπαιδευόμενωνLabel for Enable export portfolio for Learnerwizard_learner_enLiveEdit_cb_lblΕνεργοποίηση "Ζωντανής" Επεξεργασίαςwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblΜπορείτε να προσθέσετε το όνομα και την περιγραφή του μαθήματος που θα θέλατε να δουν οι σπουδαστές για το μάθημα αυτό. Step 2 descriptionwizardDesc_3_lblΜπορείτε να επιλέξετε/απο-επιλέξετε Εκπαιδευόμενους και Επόπτες από αυτή την τάξη επιλέγοντας/αποεπιλέγοντας το αντίστοιχο πλαίσιο δίπλα από τα ονόματά τους. Step 3 descriptionwizard_learner_enpres_cb_lblΠροβ. Συνδεδεμένων σε Εκπ.Checkbox label for presenceal_validation_schtimeΠαρακαλώ εισαγάγετε έναν έγκυρο χρόνο. Alert message when user enters an invalid time for schedule starttime_lblΧρόνος (Ώρες : Λεπτά)Label for Schedule Time fieldsummery_staff_lblΠροσωπικό: Label for summery heading of number of selected staff in the lesson class.ws_RootΡίζαRoot folder title for workspacesummery_design_lblΑκολουθία: Label for summery heading of selected design field.close_btnΚλείσιμοClose button to close windowwizardDesc_1_lblΗ παρακάτω δομή καταλόγου περιέχει τις ακολουθίες με τις οποίες μπορείτε να δημιουργήσετε ένα μάθημα. Επιλέξτε μία και πατήστε στο κουμπί "Επόμενο" για να συνεχίσετε. Step 1 descriptional_validation_msg3_2Πρέπει να είναι επιλεγμένοι τουλάχιστον ένα μέλος διδακτικού προσωπικού και ένας εκπαιδευόμενος. Message when either no staff/learner users are selected in Step 3.al_validation_msg2Ο Τίτλος είναι απαιτούμενο πεδίο.Message when title field is empty on Step 2staff_group_name{0} προσωπικόGroup name for the class's staff group.wizardTitle_2_lblΛεπτομέρειες μαθήματοςStep 2 screen titlewizardTitle_4_lblΕπιβεβαιώστε τις λεπτομέρειες του μαθήματοςStep 4 screen titlenext_btnΕπόμενο >Next step buttonsys_error_msg_finishΘέλετε να στείλετε μια αναφορά με τα λάθη;Common System error message finish paragraphws_tree_mywspΟ χώρος εργασίας μουThe root level of the workspace treesummery_class_lblΥποομάδα: Label for summery heading of selected class field.wizardTitle_1_lblΕπιλέξτε μία ακολουθίαStep 1 screen titlesys_error_msg_startΔεν μπορείτε να δημιουργήσετε ένα μάθημα. Common System error message starting lineconfirmMsg_3_txt{0} έχει δημιουργθεί αλλά δεν έχει αρχίσει ακόμη. Conclusion screen description if lesson created but not startedal_validation_msg1Πρέπει να επιλεχθεί μία έγκυρη σχεδίαση. Message when no design is selected on step 1summery_course_lblΟμάδα: Label for summery heading of selected course field.confirmMsg_2_txt{0} έχει προγραμματιστεί για {1}. Conclusion screen description if lesson scheduledal_validation_schstartΚαμία ημερομηνία δεν έχει επιλεγεί. Παρακαλώ επιλέξτε ημερομηνία και ώρα, και μετά πατήστε "Αρχή"Message when no date is selected starting a lesson by schedule.date_lblΗμερομηνίαLabel for Schedule Date fieldsys_errorΛάθος ΣυστήματοςSystem Error elert window titleprev_btn< ΠροηγούμενοPrevious step buttonwizardTitle_x_lblΜάθημα: {0}Confirmation screen titlesummery_learners_lblΕκπαιδευόμενοι: Label for summery heading of number of selected learners in the lesson class.al_validation_msg3_1Κανένα μάθημα ή τάξη δεν έχει επιλεgεί.Message when no course/class is selected in Step 3learners_group_name{0} εκπαιδευόμενοιGroup name for the class's learners group.title_lblΤίτλοςNew Lesson titlesummery_title_lblΤίτλος: Label for summery heading of defined title.learner_lblΕκπαιδευόμενοιHeading for list of class learnerswizardDesc_4_lblΜε το πάτημα του κουμπιού "ΈναρξηΤώρα" μπορείτε να αρχίσετε το μάθημα αμέσως. Μπορείτε επίσης να προγραμματίσετε την εκκίνηση του μαθήματος σε συγκεκριμένη ημερομηνία και ώρα. Step 4 descriptionwizard_splitLearners_LearnersPerLesson_lblΕκπαιδευόμενοι ανά μάθημαwizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_leanersInGroup_lblΕκπαιδευόμενοι σε αυτη την ομάδαwizard_splitLearners_leanersInGroup_lblal_alertΕιδοποίησηGeneric title for Alert windowwizard_splitLearners_splitSumShort{0} περιπτώσεις αυτού του μαθήματος με {1} εκπαιδευόμενους κατανεμημένους σε κάθε ένα από αυτά.Shorter split learners summarywizard_splitLearners_splitSum{0} περιπτώσεις αυτού του μαθήματος θα δημιουργηθούν και περίπου {1} εκπαιδευόμενοι θα κατανεμηθούν σε κάθε μάθημα.Split learners summaryconfirmMsg_4_txt{0} περιπτώσεις {1} έχουν αρχίσει. Conclusion screen description if starting several lessonssummery_lblΣύνοψηHeading for summery outlineaddmore_btnΠροσθήκη άλλου ΜαθήματοςButton to add another lesson, return to first step.schedule_cb_lblΠρογραμματισμός ΈναρξηςLabel for schedule checkboxwizard_splitLearners_cb_lblΘέλετε να χωρίσετε τους εκπαιδευόμενους σε ξεχωριστά αντίγραφα του μαθήματος;wizard_splitLearners_cb_lblwizard_wkspc_date_modified_lblΤελευταία τροποποίηση: (0)Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/en_AU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/en_AU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/en_AU_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startYou were unable to create a lesson.Common System error message starting linesys_error_msg_finishDo you want to send an error report?Common System error message finish paragraphsys_errorSystem ErrorSystem Error elert window titleprev_btn&lt; PrevPrevious step buttonnext_btnNext &gt;Next step buttoncancel_btnCancelCancel button to exit wizardclose_btnCloseClose button to close windowtitle_lblTitleNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblLearnersHeading for list of class learnersschedule_cb_lblScheduleLabel for schedule checkboxws_RootRootRoot folder title for workspacews_tree_mywspMy WorkspaceThe root level of the workspace treewizardTitle_2_lblLesson DetailsStep 2 screen titlewizardTitle_x_lblLesson: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelCancelCancel on alert dialogal_confirmConfirmTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Title is a required field. Message when title field is empty on Step 2al_validation_msg3_1No course or class was selected. Message when no course/class is selected in Step 3confirmMsg_1_txt{0} has been started.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} has been created but has not been started yet.Conclusion screen description if lesson created but not startedsummery_title_lblTitle:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_learners_lblLearners:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogwizard_learner_expp_cb_lblEnable export portfolio for learnerLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSelect AllLabel for select all check box used to select all staff or learner users in list.al_validation_msg1A valid sequence must be selected.Message when no design is selected on step 1summery_design_lblSequence:Label for summery heading of selected design field.summery_course_lblGroup:Label for summery heading of selected course field.summery_class_lblSubgroup:Label for summery heading of selected class field.finish_btnStart in MonitorFinish button to complete wizardstart_btnStart NowStart button to start new lessonal_validation_schtimePlease enter a valid time.Alert message when user enters an invalid time for schedule startdate_lblDateLabel for Schedule Date fieldtime_lblTime (Hours : Minutes)Label for Schedule Time fieldal_validation_schstartNo date was selected. Please select a date and time, and then click Schedule button.Message when no date is selected starting a lesson by schedule.learners_group_name{0} learnersGroup name for the class's learners group.wizardDesc_1_lblClick on a folder below to open it to view available sequences. Select one and click on the Next button to continue.Step 1 descriptionwizardTitle_3_lblStep 2 of 3: Select Learners and MonitorsStep 3 screen titlewizardDesc_3_lblYou can select/unselect Learners and Monitors from this class by checking/unchecking the box next to their names.Step 3 descriptionwizardTitle_4_lblStep 3 of 3: Confirm Lesson detailsStep 4 screen titlewizardDesc_4_lblBy clicking on Start you can begin the lesson immediately. You can also schedule it to start at a particular date and time.Step 4 descriptionconfirmMsg_2_txt{0} has been scheduled to start on {1}.Conclusion screen description if lesson scheduledwizardTitle_1_lblStep 1 of 3: Select your SequenceStep 1 screen titlestaff_lblMonitorsHeading for list of class staffal_validation_msg3_2There must be at least 1 monitor member and learner selected.Message when either no staff/learner users are selected in Step 3.summery_staff_lblMonitors:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} monitorsGroup name for the class's staff group.addmore_btnAdd Another LessonButton to add another lesson, return to first step.summery_lblSummaryHeading for summery outlinewizard_splitLearners_leanersInGroup_lblLearners in this group:wizard_splitLearners_leanersInGroup_lblconfirmMsg_4_txt{0} instances of {1} have been started.Conclusion screen description if starting several lessonswizard_splitLearners_splitSum{0} instances of this lesson will be created and approximately {1} learners will be allocated to each lesson.Split learners summarywizard_splitLearners_splitSumShort{0} instances of this lesson with {1} learners allocated to eachShorter split learners summarywizard_splitLearners_LearnersPerLesson_lblLearners per lesson:wizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_cb_lblDo you want to split these learners into separate copies of this lesson? wizard_splitLearners_cb_lblwizard_learner_enLiveEdit_cb_lblEnable Live Editwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblYou can add the name and description you would like the learners to see for this lesson.Step 2 descriptionwizard_learner_enpres_cb_lblAllow Learners to see who is onlineCheckbox label for presencewizard_wkspc_date_modified_lblLast modified: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/en_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/en_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/en_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startYou were unable to create a lesson.Common System error message starting linesys_error_msg_finishDo you want to send an error report?Common System error message finish paragraphsys_errorSystem ErrorSystem Error elert window titleprev_btn&lt; PrevPrevious step buttonnext_btnNext &gt;Next step buttoncancel_btnCancelCancel button to exit wizardclose_btnCloseClose button to close windowtitle_lblTitleNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblLearnersHeading for list of class learnersschedule_cb_lblScheduleLabel for schedule checkboxws_RootRootRoot folder title for workspacews_tree_mywspMy WorkspaceThe root level of the workspace treewizardTitle_2_lblLesson DetailsStep 2 screen titlewizardTitle_x_lblLesson: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelCancelCancel on alert dialogal_confirmConfirmTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Title is a required field. Message when title field is empty on Step 2al_validation_msg3_1No course or class was selected. Message when no course/class is selected in Step 3confirmMsg_1_txt{0} has been started.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} has been created but has not been started yet.Conclusion screen description if lesson created but not startedsummery_title_lblTitle:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_learners_lblLearners:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogwizard_learner_expp_cb_lblEnable export portfolio for learnerLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSelect AllLabel for select all check box used to select all staff or learner users in list.al_validation_msg1A valid sequence must be selected.Message when no design is selected on step 1summery_design_lblSequence:Label for summery heading of selected design field.summery_course_lblGroup:Label for summery heading of selected course field.summery_class_lblSubgroup:Label for summery heading of selected class field.finish_btnStart in MonitorFinish button to complete wizardstart_btnStart NowStart button to start new lessonal_validation_schtimePlease enter a valid time.Alert message when user enters an invalid time for schedule startdate_lblDateLabel for Schedule Date fieldtime_lblTime (Hours : Minutes)Label for Schedule Time fieldal_validation_schstartNo date was selected. Please select a date and time, and then click Schedule button.Message when no date is selected starting a lesson by schedule.learners_group_name{0} learnersGroup name for the class's learners group.wizardDesc_1_lblClick on a folder below to open it to view available sequences. Select one and click on the Next button to continue.Step 1 descriptionwizardTitle_3_lblStep 2 of 3: Select Learners and MonitorsStep 3 screen titlewizardDesc_3_lblYou can select/unselect Learners and Monitors from this class by checking/unchecking the box next to their names.Step 3 descriptionwizardTitle_4_lblStep 3 of 3: Confirm Lesson detailsStep 4 screen titlewizardDesc_4_lblBy clicking on Start you can begin the lesson immediately. You can also schedule it to start at a particular date and time.Step 4 descriptionconfirmMsg_2_txt{0} has been scheduled to start on {1}.Conclusion screen description if lesson scheduledwizardTitle_1_lblStep 1 of 3: Select your SequenceStep 1 screen titlestaff_lblMonitorsHeading for list of class staffal_validation_msg3_2There must be at least 1 monitor member and learner selected.Message when either no staff/learner users are selected in Step 3.summery_staff_lblMonitors:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} monitorsGroup name for the class's staff group.addmore_btnAdd Another LessonButton to add another lesson, return to first step.summery_lblSummaryHeading for summery outlinewizard_splitLearners_leanersInGroup_lblLearners in this group:wizard_splitLearners_leanersInGroup_lblconfirmMsg_4_txt{0} instances of {1} have been started.Conclusion screen description if starting several lessonswizard_splitLearners_splitSum{0} instances of this lesson will be created and approximately {1} learners will be allocated to each lesson.Split learners summarywizard_splitLearners_splitSumShort{0} instances of this lesson with {1} learners allocated to eachShorter split learners summarywizard_splitLearners_LearnersPerLesson_lblLearners per lesson:wizard_splitLearners_LearnersPerLesson_lblwizard_splitLearners_cb_lblDo you want to split these learners into separate copies of this lesson? wizard_splitLearners_cb_lblwizard_learner_enLiveEdit_cb_lblEnable Live Editwizard_learner_enLiveEdit_cb_lblwizardDesc_2_lblYou can add the name and description you would like the learners to see for this lesson.Step 2 descriptionwizard_learner_enpres_cb_lblAllow Learners to see who is onlineCheckbox label for presencewizard_wkspc_date_modified_lblLast modified: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/es_ES_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/es_ES_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/es_ES_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3start_btnComenzar ahoraStart button to start new lessonsummery_design_lblSecuencia: Label for summery heading of selected design field.summery_course_lblGrupo:Label for summery heading of selected course field.sys_error_msg_startNo se pudo crear una lección.Common System error message starting linesys_error_msg_finish¿Desea enviar un reporte de error al servidor? Este reporte ayudará a los programadores a determinar el error.Common System error message finish paragraphsys_errorError de sistemaSystem Error elert window titleprev_btn< AnteriorPrevious step buttonnext_btnContinuar >Next step buttonsummery_class_lblSubgrupoLabel for summery heading of selected class field.cancel_btnCancelarCancel button to exit wizardclose_btnCerrarClose button to close windowtitle_lblTítuloNew Lesson titledesc_lblDescripciónNew Lesson descriptionlearner_lblEstudiantesHeading for list of class learnersstaff_lblTutoresHeading for list of class staffsummery_lblResúmenHeading for summery outlinews_RootRaizRoot folder title for workspacews_tree_mywspMi Espacio de TrabajoThe root level of the workspace treewizardTitle_2_lblDetalles de la LecciónStep 2 screen titlewizardTitle_3_lblSeleccione Estudiantes y TutoresStep 3 screen titlewizardTitle_4_lblConfirmar Detalles de LecciónStep 4 screen titlewizardTitle_x_lblLección: {0}Confirmation screen titleal_alertAtenciónGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2El título de la lección es necesario.Message when title field is empty on Step 2al_validation_msg3_1No se ha seleccionado curso o clase.Message when no course/class is selected in Step 3al_validation_msg3_2Debe haber por lo menos un tutor y estudiante seleccionadoMessage when either no staff/learner users are selected in Step 3.wizardDesc_2_lblAgrege el nombre y descripción deseado para esta lección. Este nombre será usado por los estudiantes para seleccionar la lección.Step 2 descriptionwizardDesc_3_lblDes-seleccionar a los estudiantes y tutores que no quiera incluir en esta lección.Step 3 descriptionwizardDesc_4_lblPuede empezar su lección en un tiempo determinado o presione en Comenzar para empezar su lección ahora mismo.Step 4 descriptionconfirmMsg_1_txtLa lección {0} ha sido iniciada. Conclusion screen description if lesson startedconfirmMsg_2_txtLa lección {0} comenzará en {1}. Conclusion screen description if lesson scheduledconfirmMsg_3_txtLa lección {0} ha sido creada pero no ha comenzado todavía. Conclusion screen description if lesson created but not startedsummery_title_lblTítulo: Label for summery heading of defined title.summery_desc_lblDescripción: Label for summery heading of defined description.al_validation_schstartNo se ha seleccionado fecha. Por favor seleccione la fecha y la hora, luego pulse el botón PlanMessage when no date is selected starting a lesson by schedule.summery_staff_lblTutores:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblEstudiantes:Label for summery heading of number of selected learners in the lesson class.al_sendEnviarOK on system error dialogwizardTitle_1_lblSeleccione la secuenciaStep 1 screen titleal_validation_msg1Se debe seleccionar una secuencia válidaMessage when no design is selected on step 1wizardDesc_1_lblLa estructura de directorios contiene las secuencias que usted puede utilizar para crear una lección. Seleccione una y pulse en el siguiente botón para continuar.Step 1 descriptionwizard_learner_expp_cb_lblActivar Portfolio Export para estudiantesLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblSeleccionar todosLabel for select all check box used to select all staff or learner users in list.al_validation_schtimeLa hora entrada no es válida.Alert message when user enters an invalid time for schedule startdate_lblFechaLabel for Schedule Date fieldtime_lblHora (horas : minutos)Label for Schedule Time fieldlearners_group_name{0} estudiantesGroup name for the class's learners group.staff_group_name{0} tutoresGroup name for the class's staff group.addmore_btnAgregar una nueva lecciónButton to add another lesson, return to first step.finish_btnEmpezar en SeguimientoFinish button to complete wizardwizard_learner_enpres_cb_lblPermitir ver que alumnos estan onlineCheckbox label for presencewizard_splitLearners_splitSum{0} copias de esta lección serán creadas y aproximadamente {1} estudiantes serán incluidos en cada lección.Split learners summarywizard_splitLearners_splitSumShort{0} copias de la lección con {1} estudiantes en cada unaShorter split learners summaryconfirmMsg_4_txt{0} copias de {1} has sido comenzadas.Conclusion screen description if starting several lessonswizard_splitLearners_cb_lbl¿Desea dividir a los estudiantes generando varias copiasde la misma lección?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblEstudiantes en este grupowizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblEstudiantes por lecciónwizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblHabilitar Edición en Vivowizard_learner_enLiveEdit_cb_lblschedule_cb_lblComenzar en fecha específicaLabel for schedule checkboxwizard_wkspc_date_modified_lblÚltimo cambio: {0} Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/fr_FR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/fr_FR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/fr_FR_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3start_btnCommencer maintenantStart button to start new lessonwizardTitle_1_lblChoisir la séquenceStep 1 screen titleal_validation_msg1Une séquence valide doit être sélectionnée.Message when no design is selected on step 1wizardDesc_1_lblLa structure des dossiers ci-dessous contient les séquences pour lesquelles vous pouvez créer une leçon. Choisissez-en un et cliquez sut le bouton Suivant pour continuer.Step 1 descriptionfinish_btnDébuter en mode supervisionFinish button to complete wizardsummery_design_lblSéquence:Label for summery heading of selected design field.summery_course_lblGroupe:Label for summery heading of selected course field.summery_class_lblSousgroupe:Label for summery heading of selected class field.learners_group_nameapprenantsGroup name for the class's learners group.wizard_selAll_cb_lblSélectionner toutLabel for select all check box used to select all staff or learner users in list.staff_group_nameencadrantsGroup name for the class's staff group.wizard_learner_expp_cb_lblAutorise l'exportation pour l'apprenantLabel for Enable export portfolio for LearnerwizardDesc_2_lblVous pouvez ajouter le nom et la description que les étudiants verront pour cette leçon.Step 2 descriptionaddmore_btnAjouter une leçonButton to add another lesson, return to first step.confirmMsg_1_txt{0} a commencé.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} a été planifié pour {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} a été créé but n'a pas encore commencé.Conclusion screen description if lesson created but not startedsummery_title_lblTitre:Label for summery heading of defined title.summery_desc_lblDescription:Label for summery heading of defined description.summery_staff_lblEnseignant(s):Label for summery heading of number of selected staff in the lesson class.summery_learners_lblApprenants:Label for summery heading of number of selected learners in the lesson class.al_sendEnvoyerOK on system error dialogdate_lblDateLabel for Schedule Date fieldtime_lblTemps (Heures : Minutes)Label for Schedule Time fieldal_validation_schtimeVeuillez entrer une heure valide.Alert message when user enters an invalid time for schedule startwizardDesc_4_lblVous pouvez commencer la leçon tout de suite en cliquant sur le bouton Début. Vous pouvez aussi planifier une heure de début pour cette leçon.Step 4 descriptional_validation_schstartAucune date sélectionnée. Veuillez choisir un jour et une heure, puis cliquer sur le bouton HoraireMessage when no date is selected starting a lesson by schedule.sys_error_msg_startIl n'a pas été possible de créer la leçon.Common System error message starting linesys_error_msg_finishVoulez-vous envoyer un rapport d'erreur?Common System error message finish paragraphsys_errorErreur systèmeSystem Error elert window titleprev_btn< Préc.Previous step buttonnext_btnSuiv. >Next step buttoncancel_btnAbandonnerCancel button to exit wizardclose_btnFermerClose button to close windowtitle_lblTitreNew Lesson titledesc_lblDescriptionNew Lesson descriptionlearner_lblApprenantsHeading for list of class learnersstaff_lblEnseignantsHeading for list of class staffschedule_cb_lblHoraireLabel for schedule checkboxsummery_lblRésuméHeading for summery outlinews_RootRacineRoot folder title for workspacews_tree_mywspMon Espace de travailThe root level of the workspace treewizardTitle_2_lblDétails de la leçonStep 2 screen titlewizardTitle_4_lblConfirmez les détails de la leçonStep 4 screen titlewizardTitle_x_lblLeçon: {0}Confirmation screen titleal_alertAvertissementGeneric title for Alert windowal_cancelAbandonnerCancel on alert dialogal_confirmConfirmerTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Le titre est un champ obligatoire.Message when title field is empty on Step 2al_validation_msg3_1Ni classe ni cours n'ont été sélectionnés.Message when no course/class is selected in Step 3wizard_learner_enpres_cb_lblActiver le contrôle de présenceCheckbox label for presencewizardTitle_3_lblChoisissez les étudiants et les moniteurs (superviseurs)Step 3 screen titleal_validation_msg3_2Il doit y avoir au moins un moniteur (superviseur) et un apprenant sélectionnés.Message when either no staff/learner users are selected in Step 3.wizardDesc_3_lblVous pouvez choisir de désélectionner étudiants et moniteurs de cette classe en décochant les boîtes près de leur nom.Step 3 description \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/hu_HU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/hu_HU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/hu_HU_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3desc_lblLeírásNew Lesson descriptionsummery_design_lblTervezés:Label for summery heading of selected design field.summery_title_lblCím:Label for summery heading of defined title.summery_desc_lblLeírás:Label for summery heading of defined description.summery_course_lblKurzus:Label for summery heading of selected course field.summery_class_lblOsztály:Label for summery heading of selected class field.summery_staff_lblMunkatársak:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblTamulók:Label for summery heading of number of selected learners in the lesson class.al_sendKüldésOK on system error dialogdate_lblDátumLabel for Schedule Date fieldtime_lblIdő (óra : perc)Label for Schedule Time fieldal_validation_schtimeKérem, írja be az érvényes időt!Alert message when user enters an invalid time for schedule startlearner_lblTanulókHeading for list of class learnerssys_error_msg_finishKívánja elküldeni a hibajelentést?Common System error message finish paragraphsys_errorRendszerhibaSystem Error elert window titleprev_btn< ElőzőPrevious step buttonnext_btnKövetkező >Next step buttonfinish_btnVégeFinish button to complete wizardcancel_btnMégseCancel button to exit wizardclose_btnBezárásClose button to close windowstart_btnKezdés és befejezésStart button to start new lessontitle_lblCímNew Lesson titlestaff_lblSzemélyekHeading for list of class staffschedule_cb_lblÜtemezésLabel for schedule checkboxsummery_lblÖsszefoglalóHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspAz én munkaterületemThe root level of the workspace treewizardTitle_2_lblA lecke részleteiStep 2 screen titlewizardTitle_3_lblHallgatók és személyek kiválasztásaStep 3 screen titlewizardTitle_4_lblA lecke részleteinek jóváhagyásaStep 4 screen titlewizardTitle_x_lblLecke {0}Confirmation screen titleal_alertFigyelmeztetésGeneric title for Alert windowal_cancelMégseCancel on alert dialogal_confirmJóváhagyásTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2A cím kötelező mezőMessage when title field is empty on Step 2confirmMsg_1_txt{0} elindultConclusion screen description if lesson startedwizard_learner_expp_cb_lblEngedélyezi a diák portfóloójának exportálásátLabel for Enable export portfolio for Learnersys_error_msg_startNem tudta létrerhozni a leckét.Common System error message starting lineal_validation_msg3_1Nem választott kurzust vagy osztályt.Message when no course/class is selected in Step 3al_validation_msg3_2Legalább egy munkatársat és egy tanulót kell választania.Message when either no staff/learner users are selected in Step 3.wizardTitle_1_lblVálasszon jelenetet!Step 1 screen titleal_validation_msg1Egy érvényes jelenetet kell választania.Message when no design is selected on step 1wizardDesc_1_lblAz alábbi könyvtárszerkezet tartalmazza azokat a jeleneteket, melyekhez leckét készíthet. Válasszon egyet közülük, majd a folytatáshoz kattintson a Tovább gombra!Step 1 descriptionwizardDesc_2_lbl Ha szeretné, hogy a diákok nevet és leírást lássanak ehhez a leckéhez, itt megadhatja ezeket.Step 2 descriptionwizardDesc_3_lblTörölheti diákok vagy munkatársak kiválasztását ennél az osztálynál, ha üresen hagyja a nevük melletti jelölőnégyzetet.Step 3 descriptionwizardDesc_4_lblA Start gomb lenyomásával azonnal elindíthatja ezt a leckét. Ütemezheti is a leckét, hogy egy bizonyos dátum adott időpontjában induljon.Step 4 descriptionconfirmMsg_2_txtA {0} ütemezése ekkorra: {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txtA {0} létrehozása megtörtént, de elindítva még nincs.Conclusion screen description if lesson created but not startedal_validation_schstartNem választott dátumot. Kérem, válasszon dátumot és időpontot, mielőtt az Ütemezés gombra kattint!Message when no date is selected starting a lesson by schedule.wizard_selAll_cb_lblMindent kiválasztLabel for select all check box used to select all staff or learner users in list.learners_group_nameA tanulók száma: {0}Group name for the class's learners group.staff_group_nameA munkatársak száma: {0}Group name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/it_IT_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/it_IT_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/it_IT_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3finish_btnInizia in MonitorFinish button to complete wizardal_validation_msg1Occorre selezionare una sequenza valida.Message when no design is selected on step 1summery_design_lblSequenza:Label for summery heading of selected design field.summery_course_lblGruppo:Label for summery heading of selected course field.summery_class_lblSottogruppo:Label for summery heading of selected class field.wizard_selAll_cb_lblSeleziona TuttoLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblConsenti Esporta Portfolio per lo studenteLabel for Enable export portfolio for Learnerstart_btnInizia oraStart button to start new lessonwizardTitle_1_lblSeleziona la sequenzaStep 1 screen titleal_validation_schstartNessuna data è stata selezionata. Scegli la data e l'ora, quindi clicca su Programma.Message when no date is selected starting a lesson by schedule.staff_group_name{0} staffGroup name for the class's staff group.wizardTitle_4_lblConferma dettagli lezioneStep 4 screen titleal_validation_msg2Occorre inserire il Titolo della lezione.Message when title field is empty on Step 2sys_error_msg_startNon è stato possibile creare una lezione.Common System error message starting linesys_error_msg_finishVuoi inviare un report di questo errore?Common System error message finish paragraphsys_errorErrore di SistemaSystem Error elert window titleprev_btn<PrecedentePrevious step buttonnext_btnSuccessivo>Next step buttoncancel_btnAnnullaCancel button to exit wizardclose_btnChiudiClose button to close windowtitle_lblTitoloNew Lesson titledesc_lblDescrizioneNew Lesson descriptionlearner_lblStudentiHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblProgrammaLabel for schedule checkboxsummery_lblSommarioHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspLa mia Area di lavoroThe root level of the workspace treewizardTitle_2_lblDettagli sulla LezioneStep 2 screen titlewizardTitle_3_lblScegli Studenti e StaffStep 3 screen titlewizardTitle_x_lblLezione: {0}Confirmation screen titleal_alertAlertGeneric title for Alert windowal_cancelAnnullaCancel on alert dialogal_confirmConfermaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg3_1Non è stato scelto alcun corso o classe.Message when no course/class is selected in Step 3al_validation_msg3_2Occorre scegliere almeno un membro di staff e uno studente.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblPuoi aggiungere il nome e la descrizione che gli studenti utilizzeranno per questa lezione.Step 2 descriptionwizardDesc_3_lblDeseleziona studenti e staff che non vuoi includere in questa lezione.Step 3 descriptionwizardDesc_4_lblPremendo il pulsante Inizia puoi cominciare subito la lezione. Puoi anche programmare l'inizio della lezione per una particolare data e ora.Step 4 descriptionconfirmMsg_1_txt{0} è iniziataConclusion screen description if lesson startedconfirmMsg_2_txt{0} è stata programmata per {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}è stata creata ma non è ancora iniziata.Conclusion screen description if lesson created but not startedsummery_title_lblTitolo:Label for summery heading of defined title.summery_desc_lblDescrizione:Label for summery heading of defined description.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblStudenti:Label for summery heading of number of selected learners in the lesson class.al_sendInviaOK on system error dialoglearners_group_name{0} studentiGroup name for the class's learners group.wizardDesc_1_lblLa seguente directory contiene le sequenze per le quali puoi creare una lezione. Scegline una e clicca sul pulsante Successivo per continuare.Step 1 descriptiondate_lblDataLabel for Schedule Date fieldtime_lblTempo (Ore : Minuti)Label for Schedule Time fieldal_validation_schtimeInserisci un valore valido per il tempo, prego.Alert message when user enters an invalid time for schedule startaddmore_btnAggiungi un'altra lezioneButton to add another lesson, return to first step.wizard_learner_enpres_cb_lblConsenti agli studenti di vedere chi è on lineCheckbox label for presencewizard_splitLearners_cb_lblVuoi dividere questi studenti in copie separate di questa lezione?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblStudenti in questo gruppo:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblStudenti per lezione:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblAbilita modifica livewizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSumSaranno create {0} istanze di questa lezione e circa {1} studenti saranno assegnati a ogni lezione. Split learners summarywizard_splitLearners_splitSumShort{0} istanze di questa lezione con {1} studenti assegnati a ciascunaShorter split learners summaryconfirmMsg_4_txt{0} istanze di {1} sono cominciate.Conclusion screen description if starting several lessons \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/ja_JP_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/ja_JP_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/ja_JP_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3summery_learners_lbl学習者:Label for summery heading of number of selected learners in the lesson class.al_send送信OK on system error dialogal_validation_schtime正しい時刻を入力してください。Alert message when user enters an invalid time for schedule startdate_lbl日付Label for Schedule Date fieldtime_lbl時刻 (時 : 分)Label for Schedule Time fieldwizard_selAll_cb_lblすべて選択Label for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl学習者によるポートフォリオのエクスポートを許可しますLabel for Enable export portfolio for Learnerlearners_group_name{0} 学習者Group name for the class's learners group.al_validation_msg2タイトルが必要です。Message when title field is empty on Step 2sys_error_msg_startレッスンの作成に失敗しました。Common System error message starting linesys_error_msg_finishエラーレポートを送信しますか?Common System error message finish paragraphsys_errorシステムエラーSystem Error elert window titleprev_btn< 前へPrevious step buttonnext_btn次へ >Next step buttonfinish_btnモニタの開始Finish button to complete wizardcancel_btnキャンセルCancel button to exit wizardclose_btn閉じるClose button to close windowstart_btnすぐに開始Start button to start new lessontitle_lblタイトルNew Lesson titledesc_lbl説明New Lesson descriptionlearner_lbl学習者Heading for list of class learnersschedule_cb_lblスケジュールLabel for schedule checkboxsummery_lbl要約Heading for summery outlinews_RootルートRoot folder title for workspacews_tree_mywspワークスペースThe root level of the workspace treewizardTitle_1_lblシーケンス選択Step 1 screen titlewizardTitle_2_lblレッスンの詳細Step 2 screen titlewizardTitle_3_lbl学習者とスタッフの選択Step 3 screen titlewizardTitle_4_lblレッスンの詳細確認Step 4 screen titlewizardTitle_x_lblレッスン: {0}Confirmation screen titleal_alert警告Generic title for Alert windowal_cancelキャンセルCancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1有効なシーケンスを選択してください。Message when no design is selected on step 1al_validation_msg3_1コースかグループが選択されていません。Message when no course/class is selected in Step 3al_validation_msg3_2スタッフか学習者を、少なくとも 1 人は選択する必要があります。Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lbl下のディレクトリにはレッスンの作成に利用できるシーケンスが存在します。1 つ選択して 次へ をクリックしてください。Step 1 descriptionwizardDesc_2_lbl学習者に参照して欲しいレッスン名と説明をつけ加えることができます。Step 2 descriptionwizardDesc_3_lbl学習者やスタッフの名前の横にあるチェックを消すと、このクラスから外すことができます。Step 3 descriptionconfirmMsg_1_txt{0} は開始されました。Conclusion screen description if lesson startedconfirmMsg_3_txt{0} は作成されましたが、まだ開始していません。Conclusion screen description if lesson created but not startedal_validation_schstart日付が選択されていません。日時を指定して スケジュール ボタンをクリックしてください。Message when no date is selected starting a lesson by schedule.summery_design_lblシーケンス:Label for summery heading of selected design field.summery_title_lblタイトル:Label for summery heading of defined title.summery_desc_lbl説明:Label for summery heading of defined description.summery_course_lblグループ:Label for summery heading of selected course field.summery_class_lblサブグループ:Label for summery heading of selected class field.summery_staff_lblスタッフ:Label for summery heading of number of selected staff in the lesson class.staff_group_name{0} スタッフGroup name for the class's staff group.staff_lblスタッフHeading for list of class staffconfirmMsg_2_txt{0} は {1} に開始する予定です。Conclusion screen description if lesson scheduledwizardDesc_4_lbl開始 ボタンをクリックすると、すぐにレッスンを開始できます。もしくは、レッスン開始日時を指定して実行することもできます。Step 4 descriptionaddmore_btn別のレッスンを追加Button to add another lesson, return to first step. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/ko_KR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/ko_KR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/ko_KR_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3addmore_btn레슨 추가Button to add another lesson, return to first step.sys_error_msg_start당신은 강좌를 생성할 수 없습니다.Common System error message starting linesys_error_msg_finish오류 보고서를 보내기를 원하십니까?Common System error message finish paragraphsys_error시스템 오류System Error elert window titleprev_btn<이전Previous step buttonnext_btn다음>Next step buttoncancel_btn취소Cancel button to exit wizardclose_btn닫기Close button to close windowtitle_lbl제목`New Lesson titledesc_lbl설명New Lesson descriptionlearner_lbl학습자들Heading for list of class learnersstaff_lbl교수자Heading for list of class staffschedule_cb_lbl일정Label for schedule checkboxsummery_lbl요약Heading for summery outlinews_Root최상위 폴더Root folder title for workspacews_tree_mywsp내 작업공간The root level of the workspace treewizardTitle_2_lbl과목 상세Step 2 screen titlewizardTitle_3_lbl학습자과 교수자 선택Step 3 screen titlewizardTitle_4_lbl과정 상세 확인Step 4 screen titlewizardTitle_x_lbl과정:{0}Confirmation screen titleal_alert주의Generic title for Alert windowal_cancel취소Cancel on alert dialogal_confirm확인To Confirm title for LFErroral_validation_msg2제목은 필요한 항목입니다.Message when title field is empty on Step 2al_validation_msg3_1과정 혹은 분반이 선택되지 않았습니다.Message when no course/class is selected in Step 3al_validation_msg3_2최소한 1명의 교수자와 학습자가 선택되어야만 합니다.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lbl이 강좌에서 학습자들이 볼 수 있도록 이름과 설명을 추가할 수 있습니다.Step 2 descriptionwizardDesc_3_lbl당신은 학습자나 교수자의 이름 옆에 있는 박스에 채크를 해지 함으로써 이 분반에서 학습자나 교수자를 선택해제 할수 있습니다.Step 3 descriptionwizardDesc_4_lbl시작버튼을 클릭해서 강좌를 시작할 수 있습니다. 또는 정해진 일시에 강좌가 시작될 수 있도록 일정을 잡을 수 있습니다.Step 4 descriptionconfirmMsg_1_txt{0} 가 시작되었습니다.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} 은 {1}로 일정이 정해져 있습니다.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}은 생성되었지만 시작되지 않았습니다.Conclusion screen description if lesson created but not startedsummery_title_lbl제목Label for summery heading of defined title.summery_desc_lbl설명Label for summery heading of defined description.summery_staff_lbl교수자Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl학습자Label for summery heading of number of selected learners in the lesson class.al_send보내기OK on system error dialogwizard_learner_expp_cb_lbl학습자에 대한 포트폴리오 내보내기 활성화Label for Enable export portfolio for LearnerwizardDesc_1_lbl다음 디렉토리 구조는 학습을 위해서 생성할 수 있는 학습설계를 포함하고 있습니다. 계속하기 위해서는 하나를 선택한 후 다음버튼을 클릭하세요.Step 1 descriptional_validation_schstart아무 날짜가 선택되지 않았습니다. 날짜와 시간을 선택한 다음 예약일정버튼을 클릭하세요.Message when no date is selected starting a lesson by schedule.summery_design_lbl시퀀스Label for summery heading of selected design field.summery_course_lbl그룹Label for summery heading of selected course field.summery_class_lbl하위그룹Label for summery heading of selected class field.wizard_selAll_cb_lbl모두 선택Label for select all check box used to select all staff or learner users in list.finish_btn모니터에서 시작Finish button to complete wizardstart_btn지금 시작Start button to start new lessonwizardTitle_1_lbl시퀀스 선택Step 1 screen titleal_validation_msg1올바른 시퀀스를 선택해야 합니다.Message when no design is selected on step 1learners_group_name{0} 학습자들Group name for the class's learners group.staff_group_name{0} 스태프Group name for the class's staff group.al_ok확인OK on alert dialogal_validation_schtime올바른 시간을 입력하세요.Alert message when user enters an invalid time for schedule startdate_lbl날짜Label for Schedule Date fieldtime_lbl시간(시:분)Label for Schedule Time field \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/mi_NZ_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/mi_NZ_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/mi_NZ_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_okĀEOK on alert dialogal_cancelWhakakoreCancel on alert dialogcancel_btnWhakakoreCancel button to exit wizardlearners_group_name{0} ākongaGroup name for the class's learners group.staff_group_name{0} kaiakoGroup name for the class's staff group.summery_class_lblRōpū ā-Roto:Label for summery heading of selected class field.wizard_selAll_cb_lblTīpako te KatoaLabel for select all check box used to select all staff or learner users in list.ws_RootWhaiaronga IomatuaRoot folder title for workspacesummery_title_lblTaitaraLabel for summery heading of defined title.summery_desc_lblWhakamāramaLabel for summery heading of defined description.summery_course_lblRōpūLabel for summery heading of selected course field.summery_learners_lblĀkongaLabel for summery heading of number of selected learners in the lesson class.al_sendTukunaOK on system error dialogdate_lblTe RāLabel for Schedule Date fieldtime_lblTe Wā (Hāora: Miniti)Label for Schedule Time fieldal_validation_schtimeTapiritia te wā.Alert message when user enters an invalid time for schedule startsys_error_msg_startKāore i tāea e koe te whakarite akoranga.Common System error message starting linesys_error_msg_finishKei te pīrangi ki te tuku pūrongo hapa?Common System error message finish paragraphsys_errorHapa PūnahaSystem Error elert window titleprev_btn< ki muriPrevious step buttonfinish_btnTimataria ki AroturukiFinish button to complete wizardclose_btnKatiaClose button to close windowstart_btnTimatariaStart button to start new lessontitle_lblTaitaraNew Lesson titledesc_lblWhakamāramaNew Lesson descriptionlearner_lblĀkongaHeading for list of class learnersstaff_lblKaiakoHeading for list of class staffschedule_cb_lblWhakaritengaLabel for schedule checkboxsummery_lblWhakarāpopotongaHeading for summery outlinews_tree_mywspTāku PapamahiThe root level of the workspace treewizardTitle_1_lblKōwhiria te AkorangaStep 1 screen titlewizardTitle_2_lblTaipitopito AkorangaStep 2 screen titlewizardTitle_3_lblKōwhiria ngā Ākonga me ngā KaiakoStep 3 screen titlewizardTitle_4_lblWhakatūturutia ngā Taipitopito AkorangaStep 4 screen titlewizardTitle_x_lblAkoranga: {0}Confirmation screen titleal_alertKia MatohiGeneric title for Alert windowal_confirmWhakatūturutiaTo Confirm title for LFErroral_validation_msg1Kōwhiria he hoahoatanga tūturu.Message when no design is selected on step 1al_validation_msg2He pūmautanga tō te āpure Taitara.Message when title field is empty on Step 2al_validation_msg3_1Kāhore i kōwhiri akoranga, ākonga rānei.Message when no course/class is selected in Step 3wizardDesc_2_lblKa taea te tāpiri i te ingoa me te whakaahuatanga o te akoranga e hiahia ana koe kia kite ngā ākonga. Step 2 descriptionwizardDesc_4_lblMā te pāwhiri i te pātene Tīmata ka timata wawe tonu te akoranga. Ka taea hoki te whakarite kia tīmataria te akoranga i tētehi rā, i tētahi wā ake hoki.Step 4 descriptionconfirmMsg_1_txt{0} i tīmatariaConclusion screen description if lesson startedconfirmMsg_2_txt{0} i whakaritea mō {1}Conclusion screen description if lesson scheduledal_validation_schstartKāore tētehi rā i kōwhiria. Kōwhiria koa tētehi rā me tētehi wā, ka pāwhiri ai i te Tīmata. Message when no date is selected starting a lesson by schedule.summery_design_lblAkorangaLabel for summery heading of selected design field.wizard_wkspc_date_modified_lblkētanga mutunga: {0}Shows the last modified datetime for a Learning Design.addmore_btnTāpiri AkorangaButton to add another lesson, return to first step.al_validation_msg3_2Kōwhiria kia kotahi te kaiako, ākonga hoki i te itinga rawa.Message when either no staff/learner users are selected in Step 3.wizard_learner_expp_cb_lblWhakaaetia te kawe kōpaki atu mō ngā ākongaLabel for Enable export portfolio for LearnerconfirmMsg_3_txt{0} i hangaia ēngari kāhore anō kia tīmatariaConclusion screen description if lesson created but not startednext_btnki mua >Next step buttonwizardDesc_3_lblKa taea te whakakore ākonga me ngā kaiako i tēnei akoranga mā te whakawātea i te pouaka taki i te taha o ngā ingoa.Step 3 descriptionwizardDesc_1_lblKa noho ngā hoahoatanga hei hanga akoranga ki te hanganga whaiaronga i raro nei. Kōwhiria tētehi, ka pāwhiri ai i te patene ka whai ake kia haere tonu atu.Step 1 descriptionsummery_staff_lblAroturuki:Label for summery heading of number of selected staff in the lesson class.wizard_learner_enpres_cb_lblTukuna ngā ākonga kia kite ko wai kua tuihono maiCheckbox label for presencewizard_splitLearners_cb_lblKa tino pīrangi ki te wehewehe i ēnei ākonga ki ngā tāruatanga motuahake o tēnei akoranga?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblĀkonga i roto i tēnei rōpū:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblTapeke ākonga i tēnei akoranga:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblWhakahohe Whakatikanga i Tēnei Wā Tonuwizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSumka hangaia {0} ngā tauira o tēnei akoranga me te tohatoha pea i te {1} ākonga ki ia akoranga Split learners summarywizard_splitLearners_splitSumShortka hangaia {0} ngā tauira o tēnei akoranga me te tohatoha i te {1} ākonga ki ia akoranga Shorter split learners summaryconfirmMsg_4_txtkua tīmataria {0} ngā tauira o te {1}. Conclusion screen description if starting several lessons \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/ms_MY_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/ms_MY_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/ms_MY_dictionary.xml 12 Jan 2010 01:20:17 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startAnda tidak boleh mencipta kelasCommon System error message starting linesys_error_msg_finishAdakah anda mahu menghantar laporan ralat?Common System error message finish paragraphsys_errorRalat SistemSystem Error elert window titleprev_btn< BelakangPrevious step buttonnext_btnHapadan >Next step buttonfinish_btnMula di PaparanFinish button to complete wizardcancel_btnBatalCancel button to exit wizardclose_btnTutupClose button to close windowstart_btnMula SekarangStart button to start new lessontitle_lblTajukNew Lesson titledesc_lblDeskripsiNew Lesson descriptionlearner_lblPelajarHeading for list of class learnersstaff_lblStafHeading for list of class staffschedule_cb_lblJadualLabel for schedule checkboxsummery_lblRingkasanHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspRuang kerja SayaThe root level of the workspace treewizardTitle_1_lblPilih TurutanStep 1 screen titlewizardTitle_2_lblPerincian KelasStep 2 screen titlewizardTitle_3_lblPilih Pelajar dan StafStep 3 screen titlewizardTitle_4_lblSahkan Perincian KelasStep 4 screen titlewizardTitle_x_lblKelas {0}Confirmation screen titleal_alertAletGeneric title for Alert windowal_cancelBatalCancel on alert dialogal_confirmTerimaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Turutan sah mesti dipilihMessage when no design is selected on step 1al_validation_msg2Tajuk adalah ruangan perluMessage when title field is empty on Step 2al_validation_msg3_1Tiada kursus atau kelas dipilih.Message when no course/class is selected in Step 3al_validation_msg3_2Mesti terdapat sekurang-kurangnya 1 ahli staf dan pelajar dipilih.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblAnda boleh menambah nama dan diskripsi yang mahu dipaparkan kepada pelajar untuk kelasi ini.Step 2 descriptionwizardDesc_3_lblAnda boleh memilih untuk tidak memilih pelajar dan staf dari kelas ini dengan tidak menanda box di sebelah nama mereka.Step 3 descriptionconfirmMsg_1_txt{0} telah bermula.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} telah di jadualkan untuk {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} telah di cipta tetapi belum bermula lagi.Conclusion screen description if lesson created but not startedal_validation_schstartTiada tarik dipilih. Sila pilih tarikh dan masa, dan klik butang Jadual.Message when no date is selected starting a lesson by schedule.summery_design_lblTurutan:Label for summery heading of selected design field.summery_title_lblTajuk:Label for summery heading of defined title.summery_desc_lblDiskripsi:Label for summery heading of defined description.summery_course_lblKumpulan:Label for summery heading of selected course field.summery_class_lblSub kumpulan:Label for summery heading of selected class field.summery_staff_lblStaf:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblPelajar:Label for summery heading of number of selected learners in the lesson class.al_sendKirimOK on system error dialogal_validation_schtimeSila masukkan masa yang sah.Alert message when user enters an invalid time for schedule startdate_lblTarikhLabel for Schedule Date fieldtime_lblMasa (Jam : Minit)Label for Schedule Time fieldwizard_selAll_cb_lblPilih SemuaLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblBenarkan eksport portfolio untuk pelajarLabel for Enable export portfolio for Learnerlearners_group_name{0} pelajarGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.wizardDesc_4_lblDengan menekan butang Mula anda boleh terus memulakan kelas. Anda juga boleh menjadualkan kelas untuk bermula pada tarikh dan masa tertentu.Step 4 descriptionwizardDesc_1_lblStruktur direktori di bawah mengandungi turutan yang membenarkan anda membuat kelas. Pilih satu dan klik pada butang hadapan untuk sambung.Step 1 description \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/nl_BE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/nl_BE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/nl_BE_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startHet is niet gelukt om een les te creëren.Common System error message starting linesys_error_msg_finishWil je een foutenrapport verzenden ?Common System error message finish paragraphsys_errorSteemfoutSystem Error elert window titleprev_btn< VorigePrevious step buttonnext_btnVolgende >Next step buttoncancel_btnAnnuleerCancel button to exit wizardclose_btnSluitenClose button to close windowtitle_lblTitelNew Lesson titledesc_lblOmschrijvingNew Lesson descriptionlearner_lblLeerlingenHeading for list of class learnersstaff_lblStaffHeading for list of class staffschedule_cb_lblSchemaLabel for schedule checkboxsummery_lblSamenvattingHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMijn WerkruimteThe root level of the workspace treewizardTitle_2_lblDetails van de lesStep 2 screen titlewizardTitle_3_lblKies leerlingen en staffStep 3 screen titlewizardTitle_4_lblBevestig details van de lesStep 4 screen titlewizardTitle_x_lblLes {0}Confirmation screen titleal_alertWaarschuwingGeneric title for Alert windowal_cancelAnnuleerCancel on alert dialogal_confirmBevestigTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Titel is een verplicht veld.Message when title field is empty on Step 2al_validation_msg3_1Er werd geen cursus of klas aangeduid.Message when no course/class is selected in Step 3al_validation_msg3_2Er moet ten minste 1 stafflid en leerling worden aangeduid.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblJe kan een naam en omschrijving toevoegen die de leerlingen voor deze les te zien krijgen.Step 2 descriptionwizardDesc_3_lblJe kan leerlingen en staff uit deze klas verwijderen de checkbox bij hun naam leeg te maken.Step 3 descriptionwizardDesc_4_lblDoor op de startknop te drukken kan je deze les nu beginnen. Je kan ook plannen om de les te starten op bepaalde dag en tijd.Step 4 descriptionconfirmMsg_1_txt{0} is gestart.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} is gepland voor {1} .Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} werd aangemaakt, maar is nog niet gestart.Conclusion screen description if lesson created but not startedal_validation_schstartEr werd nog geen tijdstip aangeduid. Kies een datum en tijd, en klik op start.Message when no date is selected starting a lesson by schedule.summery_design_lblOntwerp:Label for summery heading of selected design field.summery_title_lblTital:Label for summery heading of defined title.summery_desc_lblOmschrijving:Label for summery heading of defined description.summery_staff_lblStaff:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblLeerlingen:Label for summery heading of number of selected learners in the lesson class.al_sendVerzendenOK on system error dialogfinish_btnStart in monitorFinish button to complete wizardstart_btnNu startenStart button to start new lessonwizardTitle_1_lblKies een sequentieStep 1 screen titleal_validation_msg1Kies een geldige sequentie.Message when no design is selected on step 1wizardDesc_1_lblDe mappenstructuur hieronder bevat de sequenties waarvan je een les kan maken. Kies er een en klik op "volgende" om verder te gaan.Step 1 descriptionwizard_learner_expp_cb_lblExport van student-portfolio mogelijk makenLabel for Enable export portfolio for Learnerwizard_selAll_cb_lblAlles selecterenLabel for select all check box used to select all staff or learner users in list.date_lblDatumLabel for Schedule Date fieldtime_lblTijd (uren : minuten)Label for Schedule Time fieldal_validation_schtimeVoer een geldige tijd in.Alert message when user enters an invalid time for schedule startlearners_group_name{0} studentenGroup name for the class's learners group.staff_group_name{0} stafGroup name for the class's staff group.summery_course_lblGroep:Label for summery heading of selected course field.summery_class_lblSubgroep:Label for summery heading of selected class field. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/no_NO_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/no_NO_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/no_NO_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3wizardTitle_1_lblSteg 1 av 3: Velg leksjonStep 1 screen titlewizard_learner_expp_cb_lblTilkobl eksport av mapper for studentenLabel for Enable export portfolio for Learnersummery_design_lblSekvens:Label for summery heading of selected design field.summery_course_lblGruppe:Label for summery heading of selected course field.wizardTitle_4_lblSteg 3 av 3: Bekreft detaljene til denne leksjonenStep 4 screen titlestart_btnStart nåStart button to start new lessonwizard_selAll_cb_lblVelg alleLabel for select all check box used to select all staff or learner users in list.learners_group_name{0} studenterGroup name for the class's learners group.al_validation_msg1En gyldig sekvens må velges.Message when no design is selected on step 1summery_class_lblUndergruppe:Label for summery heading of selected class field.confirmMsg_2_txt{0} har blitt planlagt for å starte den {1}.Conclusion screen description if lesson scheduledal_validation_schtimeVennligst angi et gyldig tidspunkt.Alert message when user enters an invalid time for schedule startwizardTitle_x_lblLeksjon: {0}Confirmation screen titleconfirmMsg_1_txt{0} har blitt startet.Conclusion screen description if lesson startedwizardTitle_3_lblSteg 2 av 3: Velg studenter og forelesereStep 3 screen titlefinish_btnStart i kontrollmodusFinish button to complete wizardwizardDesc_1_lblKlikk på en mappe for å se på innholdet. Velg en sekvens og klikk på "Neste" for å fortsette.Step 1 descriptional_validation_msg3_2Det må minimum velges en foreleser og en student.Message when either no staff/learner users are selected in Step 3.wizardDesc_3_lblDu kan velge å legge til/fjerne studenter og forelesere fra denne klassen ved å klikke i ruten ved siden av navnet deres.Step 3 descriptionwizardDesc_2_lblDu kan legge til navn og beskrivelse av den leksjon som du ønsker at studentene skal se.Step 2 descriptionwizardDesc_4_lblVelger du start knappen så starter leksjonen umiddelbart. Du kan også starte leksjonen på et bestemt tidspunkt. Step 4 descriptionconfirmMsg_3_txt{0} har blitt opprettet, men ennå ikke startet.Conclusion screen description if lesson created but not startedal_validation_schstartDet er ikke valgt en dato. Vennligst velg dato og tid og klikk deretter på start.Message when no date is selected starting a lesson by schedule.summery_title_lblTittel:Label for summery heading of defined title.summery_desc_lblBeskrivelse:Label for summery heading of defined description.summery_learners_lblStudenter:Label for summery heading of number of selected learners in the lesson class.al_sendSendOK on system error dialogdate_lblDatoLabel for Schedule Date fieldtime_lblTidspunkt (Timer:Minutter)Label for Schedule Time fieldsys_error_msg_startDu klarte ikke å lage en leksjon.Common System error message starting linesys_error_msg_finishØnsker du å sende en feilrapport ?Common System error message finish paragraphsys_errorFeilSystem Error elert window titleprev_btn<ForrigePrevious step buttonnext_btnNeste>Next step buttoncancel_btnAngreCancel button to exit wizardclose_btnStengClose button to close windowtitle_lblTittelNew Lesson titledesc_lblBeskrivelseNew Lesson descriptionlearner_lblStudenter:Heading for list of class learnersschedule_cb_lblTidsplanLabel for schedule checkboxsummery_lblOppsummeringHeading for summery outlinews_RootRotRoot folder title for workspacews_tree_mywspMitt arbeidsområdeThe root level of the workspace treewizardTitle_2_lblLeksjon detaljerStep 2 screen titleal_cancelAngreCancel on alert dialogal_confirmBekreftTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg2Tittel må fylles ut.Message when title field is empty on Step 2al_validation_msg3_1Ingen kurs eller klasse er valgt.Message when no course/class is selected in Step 3staff_group_name{0} forelesereGroup name for the class's staff group.summery_staff_lblForelesere:Label for summery heading of number of selected staff in the lesson class.staff_lblForelesereHeading for list of class staffal_alertVarselGeneric title for Alert windowaddmore_btnLegg til en ny leksjonButton to add another lesson, return to first step.wizard_learner_enpres_cb_lblKobl til leksjonCheckbox label for presencewizard_splitLearners_cb_lblVil du dele studente inn til egne kopier av leksjonen ?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lblStudenter i denne gruppenwizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblStudenter pr leksjonwizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblKoble inn aktiv redigeringwizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSum{0}tilfelle av denne leksjonen vil bli opprettet og omtrent {1}studenter vil bli tilordnet til hver leksjon.Split learners summarywizard_splitLearners_splitSumShort{0} tilfelle av denne leksjonen med {1} studenter tilordnet til hverShorter split learners summaryconfirmMsg_4_txt{0} tilfelle av {1} har blitt startet.Conclusion screen description if starting several lessonswizard_wkspc_date_modified_lblSist modifisert: {0}Shows the last modified datetime for a Learning Design. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/pl_PL_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/pl_PL_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/pl_PL_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startNie udało się utworzyć lekcji.Common System error message starting linesys_error_msg_finishCzy chcesz wysłać raport o błędach?Common System error message finish paragraphsys_errorBłąd systemuSystem Error elert window titleprev_btnWsteczPrevious step buttonnext_btnDalejNext step buttonfinish_btnStartFinish button to complete wizardcancel_btnAnulujCancel button to exit wizardclose_btnZakończClose button to close windowstart_btnStartStart button to start new lessontitle_lblTytułNew Lesson titledesc_lblOpisNew Lesson descriptionlearner_lblStudenciHeading for list of class learnersstaff_lblProwadzącyHeading for list of class staffschedule_cb_lblPlan zajęćLabel for schedule checkboxsummery_lblPodsumowanieHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMoje ProjektyThe root level of the workspace treewizardTitle_1_lblWybierz projektStep 1 screen titlewizardTitle_2_lblSzczegóły lekcjiStep 2 screen titlewizardTitle_3_lblWybierz studentów i prowadzącychStep 3 screen titlewizardTitle_4_lblPotwierdź szczegóły lekcjiStep 4 screen titlewizardTitle_x_lblLekcja: {0}Confirmation screen titleal_alertUwagaGeneric title for Alert windowal_cancelAnulujCancel on alert dialogal_confirmPotwierdźTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Należy wybrać prawidłowy projektMessage when no design is selected on step 1al_validation_msg2Wymagane jest pole tytułuMessage when title field is empty on Step 2al_validation_msg3_1Żaden kurs ani klasa nie zostały wybraneMessage when no course/class is selected in Step 3al_validation_msg3_2Musi być przynajmniej jeden prowadzący i student wybrany.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblKatalogi zawierają projekty, z których możesz utworzyć lekcję. Wybierz projekt i wciśnij Dalej aby kontynuowaćStep 1 descriptionwizardDesc_2_lblMożesz dodać nazwę i opis lekcji, które bedą widoczne dla studentówStep 2 descriptionwizardDesc_3_lblMożesz wyłączyć studentów i prowadzących klikając na pola wyboru obok ich nazwiskStep 3 descriptionwizardDesc_4_lblMożesz uruchomić lekcję natychmiast poprzez wciśnięcie przysisku Start. Możesz także wybrać dokładną date i godzinę rozpoczęcia lekcjiStep 4 descriptionconfirmMsg_1_txt{0} została uruchomionaConclusion screen description if lesson startedconfirmMsg_2_txt{0} została zaplanowana na {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} została utworzona ale nie uruchomionaConclusion screen description if lesson created but not startedal_validation_schstartNie została wybrana żadna data. Proszę wybierz date i czas, następnie naciśnij start.Message when no date is selected starting a lesson by schedule.summery_design_lblProjektLabel for summery heading of selected design field.summery_title_lblTytuł:Label for summery heading of defined title.summery_desc_lblOpis:Label for summery heading of defined description.summery_course_lblKurs:Label for summery heading of selected course field.summery_class_lblKlasa:Label for summery heading of selected class field.summery_staff_lblProwadzący:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblStudenci:Label for summery heading of number of selected learners in the lesson class.al_sendWysłaneOK on system error dialogal_validation_schtimeWprowadź poprawny forma czasuAlert message when user enters an invalid time for schedule startdate_lblDataLabel for Schedule Date fieldtime_lblCzas (Godziny : Minuty)Label for Schedule Time fieldwizard_selAll_cb_lblZaznacz wszystkoLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblUmożliwia studentom eksport portfolioLabel for Enable export portfolio for Learnerlearners_group_name{0} studentówGroup name for the class's learners group.staff_group_name{0} kadraGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/pt_BR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/pt_BR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/pt_BR_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startVocê não está habilitado para criar a lição.Common System error message starting linesys_error_msg_finishVocê quer enviar um relatório de erro?Common System error message finish paragraphsys_errorErro de sistemaSystem Error elert window titleprev_btn&lt; AnteriorPrevious step buttonnext_btnPróximo &gt;Next step buttonfinish_btnTerminarFinish button to complete wizardcancel_btnCancelarCancel button to exit wizardclose_btnFecharClose button to close windowstart_btnIniciar agoraStart button to start new lessontitle_lblTítuloNew Lesson titledesc_lblDescriçãoNew Lesson descriptionlearner_lblAlunosHeading for list of class learnersstaff_lblCorpo DocenteHeading for list of class staffschedule_cb_lblAgendaLabel for schedule checkboxsummery_lblSumárioHeading for summery outlinews_RootRaizRoot folder title for workspacews_tree_mywspMeu Espaço de TrabalhoThe root level of the workspace treewizardTitle_1_lblSelecione a sequênciaStep 1 screen titlewizardTitle_2_lblDetalhes da LiçãoStep 2 screen titlewizardTitle_3_lblSelecione os Alunos e Corpo DocenteStep 3 screen titlewizardTitle_4_lblConfirme os Detalhes da LiçãoStep 4 screen titlewizardTitle_x_lblLição: {0}Confirmation screen titleal_alertAlertaGeneric title for Alert windowal_cancelCancelarCancel on alert dialogal_confirmConfirmarTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Uma sequência válida deve ser selecionadaMessage when no design is selected on step 1al_validation_msg2Título é um campo obrigatórioMessage when title field is empty on Step 2al_validation_msg3_1Nenhum curso ou classe foram selecionados.Message when no course/class is selected in Step 3al_validation_msg3_2Deve haver pelo menos 1 membro do corpo docente e um aluno selecionado.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblA estrutura de pastas abaixo contém as sequências que você pode criar para uma lição. Selecione uma e clique no botão próximo para continuar.Step 1 descriptionwizardDesc_2_lblVocê pode adicionar o nome e a descrição que você que os estudantes vejam para essa lição.Step 2 descriptionwizardDesc_3_lblVocê pode tirar a seleção dos estudantes e docentes desta classe clicando no box próximo aos seus respectivos nomes.Step 3 descriptionwizardDesc_4_lblPressionando o botão Iniciar você pode começar a lição imediatamente. Você também pode agendar a lição para iniciar em uma data e horário em particular.Step 4 descriptionconfirmMsg_1_txt{0} foi iniciada.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} foi agendada para {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} foi criada, mas ainda não foi iniciada.Conclusion screen description if lesson created but not startedal_validation_schstartNenhuma data foi selecionada. Favor selecionar a data e o tempo, e então clicar no botão Agenda.Message when no date is selected starting a lesson by schedule.summery_design_lblSequência:Label for summery heading of selected design field.summery_title_lblTítuloLabel for summery heading of defined title.summery_desc_lblDescriçãoLabel for summery heading of defined description.summery_course_lblGrupo:Label for summery heading of selected course field.summery_class_lblSub-grupoLabel for summery heading of selected class field.summery_staff_lblCorpo DocenteLabel for summery heading of number of selected staff in the lesson class.summery_learners_lblEstudantesLabel for summery heading of number of selected learners in the lesson class.al_sendEnviarOK on system error dialogal_validation_schtimeFavor digitar um valor (tempo) válido.Alert message when user enters an invalid time for schedule startdate_lblDataLabel for Schedule Date fieldtime_lblTempo (Horas : Minutos)Label for Schedule Time fieldwizard_selAll_cb_lblSelecionar todosLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblhabilita exportação do portfólio para alunosLabel for Enable export portfolio for Learnerlearners_group_name{0} alunosGroup name for the class's learners group.staff_group_name{0} pessoalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/ru_RU_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/ru_RU_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/ru_RU_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3finish_btnНачать в режиме "Монитор"Finish button to complete wizardsummery_class_lblПодгруппа:Label for summery heading of selected class field.summery_course_lblГруппа:Label for summery heading of selected course field.summery_design_lblПоследовательность:Label for summery heading of selected design field.start_btnНачать сейчасStart button to start new lessonwizardTitle_x_lblУрок: {0}Confirmation screen titleal_alertОповещениеGeneric title for Alert windowal_cancelОтменитьCancel on alert dialogal_confirmПодтвердитьTo Confirm title for LFErroral_validation_msg2Название необходимого поля.Message when title field is empty on Step 2confirmMsg_1_txt{0} был начат.Conclusion screen description if lesson startedconfirmMsg_3_txt{0} был создан, но ещё не начат.Conclusion screen description if lesson created but not startedsummery_title_lblЗаголовок:Label for summery heading of defined title.summery_desc_lblОписание:Label for summery heading of defined description.summery_learners_lblСтуденты:Label for summery heading of number of selected learners in the lesson class.al_sendОтправитьOK on system error dialogdate_lblДатаLabel for Schedule Date fieldtime_lblВремя (Часы : Минуты)Label for Schedule Time fieldal_validation_schtimeПожалуйста введите корректное время.Alert message when user enters an invalid time for schedule startnext_btnДалее &qt;Next step buttonprev_btn&lt; НазадPrevious step buttonsys_errorСистемная ошибкаSystem Error elert window titlecancel_btnОтменитьCancel button to exit wizardclose_btnЗакрытьClose button to close windowtitle_lblЗаголовокNew Lesson titledesc_lblОписаниеNew Lesson descriptionlearner_lblУченикиHeading for list of class learnersschedule_cb_lblРасписаниеLabel for schedule checkboxsummery_lblЛетоHeading for summery outlinews_RootКорневая директорияRoot folder title for workspacews_tree_mywspМоя рабочая областьThe root level of the workspace treewizardTitle_2_lblДетали урокаStep 2 screen titleal_validation_msg1Должна быть выбрана доступная последовательность.Message when no design is selected on step 1wizard_selAll_cb_lblВыбрать всёLabel for select all check box used to select all staff or learner users in list.wizardDesc_1_lblДревовидная структура ниже содержит проекты, для которых Вы можете создать урок. Выберите один из них и нажмите "Далее", для продолжения.Step 1 descriptionwizardTitle_3_lblВыберите студентов и сотрудниковStep 3 screen titleal_validation_msg3_1Не были выбраны курсы или классы.Message when no course/class is selected in Step 3al_validation_msg3_2Должен быть выбран по крайней мере один сотрудник и ученик.Message when either no staff/learner users are selected in Step 3.wizardDesc_2_lblВы можете добавить название и описание для этого урока, те, которые Вы хотели бы, чтобы видели студенты.Step 2 descriptionwizardDesc_3_lblВы можете исключить студентов и сотрудников из этого класса, убрав отменку о их включении рядом с их именами.Step 3 descriptionwizardDesc_4_lblНажав на кнопке "Начать" Вы можете начать урок немедленно. Вы можете также создать расписание, чтобы начать урок в конкретное число и время.Step 4 descriptional_validation_schstartНе была выбрана дата. Пожалуйста выберите дату и время, а затем нажмите кнопку "Расписание".Message when no date is selected starting a lesson by schedule.sys_error_msg_startВы не могли создать урок.Common System error message starting linesys_error_msg_finishВы хотите отправить сообщение об ошибке?Common System error message finish paragraphwizardTitle_1_lblВыберите последовательностьStep 1 screen titlewizard_learner_expp_cb_lblРазрешить ученикам экпорт портфолиоLabel for Enable export portfolio for Learnerlearners_group_name{0} учениковGroup name for the class's learners group.staff_group_name{0} сотрудниковGroup name for the class's staff group.summery_staff_lblСотрудники:Label for summery heading of number of selected staff in the lesson class.staff_lblСотрудникиHeading for list of class staffwizardTitle_4_lblПодтвердите детали урокаStep 4 screen titleconfirmMsg_2_txt{0} было запланировано на {1}.Conclusion screen description if lesson scheduledal_okОКOK on alert dialog \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/sv_SE_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/sv_SE_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/sv_SE_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startDu kunde inte skapa någon lektion.Common System error message starting linesys_error_msg_finishVill du skicka en felrapport?Common System error message finish paragraphsys_errorSystemfelSystem Error elert window titleprev_btn<FöregåendePrevious step buttonnext_btnNästa>Next step buttonfinish_btnAvslutaFinish button to complete wizardcancel_btnAvbrytCancel button to exit wizardclose_btnStängClose button to close windowstart_btnStarta och avslutaStart button to start new lessontitle_lblTitelNew Lesson titledesc_lblBeskrivningNew Lesson descriptionlearner_lblLärandeHeading for list of class learnersstaff_lblPersonalHeading for list of class staffschedule_cb_lblSchemaLabel for schedule checkboxsummery_lblSammanfattningHeading for summery outlinews_RootRootRoot folder title for workspacews_tree_mywspMin arbetsytaThe root level of the workspace treewizardTitle_1_lblVälj designStep 1 screen titlewizardTitle_2_lblDetaljer om lektionStep 2 screen titlewizardTitle_3_lblVälj lärande och personalStep 3 screen titlewizardTitle_4_lblBekräfta detaljer om lektionStep 4 screen titlewizardTitle_x_lblLektion {0}Confirmation screen titleal_alertPåminnelseGeneric title for Alert windowal_cancelAvbrytCancel on alert dialogal_confirmBekräftaTo Confirm title for LFErroral_okOKOK on alert dialogal_validation_msg1Du måste välja en giltig design. Message when no design is selected on step 1al_validation_msg2Titel är ett obligatoriskt fält.Message when title field is empty on Step 2al_validation_msg3_1Ingen kurs eller klass har valts. Message when no course/class is selected in Step 3al_validation_msg3_2Du måste välja åtminstone en medlem av personalen och en lärande. Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblDen nedanstående strukturen för katalog innehåller de designer som du kan använda för att skapa en lektion. Välj en och klicka på knappen Nästa för att fortsätta. Step 1 descriptionwizardDesc_2_lblDu kan lägga till det namn och den beskrivning för den här lektionen som du vill att de lärande ska se. Step 2 descriptionwizardDesc_3_lblDu kan välja att ta bort lärande och personal från den här klassen genom att avmarkera rutan intill deras namn. Step 3 descriptionwizardDesc_4_lblGenom att trycka på knappen Start kan du påbörja lektionen genast. Du kan också schemalägga lektionen så att den ska starta på ett specifikt datum och tid. Step 4 descriptionconfirmMsg_1_txt{0} har påbörjats.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} har schemalagts för {1}Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} har skapats med har inte påbörjats ännu.Conclusion screen description if lesson created but not startedal_validation_schstartDu valde inget datum. Var snäll och välj ett datum och en tid, klicka sedan på start. Message when no date is selected starting a lesson by schedule.summery_design_lblDesign:Label for summery heading of selected design field.summery_title_lblTitel:Label for summery heading of defined title.summery_desc_lblBeskrivning:Label for summery heading of defined description.summery_course_lblKurs:Label for summery heading of selected course field.summery_class_lblKlass:Label for summery heading of selected class field.summery_staff_lblPersonal:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblLärande:Label for summery heading of number of selected learners in the lesson class.al_sendSkickaOK on system error dialogal_validation_schtimeVar snäll och mata in en giltig tidAlert message when user enters an invalid time for schedule startdate_lblDatumLabel for Schedule Date fieldtime_lblTid (Timmar: Minuter)Label for Schedule Time fieldwizard_selAll_cb_lblMarkera alltLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl Aktivera export av portfolio för lärandeLabel for Enable export portfolio for Learnerlearners_group_name{0} lärandeGroup name for the class's learners group.staff_group_name{0} personalGroup name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/tr_TR_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/tr_TR_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/tr_TR_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3al_cancelİptalCancel on alert dialogwizardTitle_1_lblBasamak 1/3: Sıralamanızı seçinStep 1 screen titlewizardTitle_2_lblDers ayrıntılarıStep 2 screen titlewizardTitle_3_lblBasamak 2/3: Öğrencileri ve izlemeyi seçStep 3 screen titlewizardTitle_4_lblBasamak 3/3: Ders ayrıntılarını onaylaStep 4 screen titlewizardTitle_x_lblDers: {0}Confirmation screen titleal_validation_msg1Geçerli bir sıralama seçilmelidir.Message when no design is selected on step 1wizardDesc_3_lblİzleyici ve öğrencilerin adlarının yanında bulunan seçim kutularını işaretleyerek seçebilir veya işareti kaldırarak seçimi kaldırabilirsiniz.Step 3 descriptional_validation_msg2Başlık doldurulması gereken alanlardandır.Message when title field is empty on Step 2wizard_learner_expp_cb_lblPortfolyo dışa aktarmayı etkinleştir.Label for Enable export portfolio for Learnersys_error_msg_startDers yaratma işlemi başarılamadı.Common System error message starting linesys_error_msg_finishHata raporu göndermek istiyor musunuz?Common System error message finish paragraphsys_errorSistem hatasıSystem Error elert window titleprev_btn<ÖncekiPrevious step buttonnext_btnSonraki>Next step buttonclose_btnKapatClose button to close windowstart_btnŞİmdi başlatStart button to start new lessontitle_lblBaşlıkNew Lesson titlelearner_lblÖğrencilerHeading for list of class learnersschedule_cb_lblTakvimLabel for schedule checkboxws_tree_mywspÇalışma alanımThe root level of the workspace treeal_alertUyarıGeneric title for Alert windowal_confirmOnaylaTo Confirm title for LFErrorsummery_course_lblGrupLabel for summery heading of selected course field.summery_class_lblAlt grupLabel for summery heading of selected class field.summery_learners_lblÖğrencilerLabel for summery heading of number of selected learners in the lesson class.al_sendGönderOK on system error dialogdate_lblTarihLabel for Schedule Date fieldwizard_selAll_cb_lblTümünü seçLabel for select all check box used to select all staff or learner users in list.ws_RootAna dizinRoot folder title for workspacecancel_btnİptalCancel button to exit wizardal_validation_msg3_1Herhangi bir ders veya sınıf seçilmedi.Message when no course/class is selected in Step 3confirmMsg_1_txt{0} başlatıldı.Conclusion screen description if lesson startedconfirmMsg_2_txt{0} {1} tarihinde başlatılmak üzere ayarlandı.Conclusion screen description if lesson scheduledsummery_design_lblSıralamaLabel for summery heading of selected design field.summery_title_lblBaşlıkLabel for summery heading of defined title.time_lblZaman (Saat: Dakika)Label for Schedule Time fieldal_validation_schtimeLütfen geçerli bir zaman giriniz.Alert message when user enters an invalid time for schedule startlearners_group_name{0} öğrenciGroup name for the class's learners group.addmore_btnBaşka bir ders ekleButton to add another lesson, return to first step.al_validation_msg3_2En az 1 izleme üyesi ve öğrenci seçilmeliMessage when either no staff/learner users are selected in Step 3.summery_staff_lblİzleyenlerLabel for summery heading of number of selected staff in the lesson class.staff_group_name{0} izleyiciGroup name for the class's staff group.confirmMsg_3_txt{0} oluşturuldu ancak henüz başlatılmadıConclusion screen description if lesson created but not startedwizardDesc_4_lblBaşlat butonuna basarak dersi hemen başlatabilirsiniz. Ayrıca dersi belirlenen zamanda başlatmak için takvimi ayarlayabilirsiniz.Step 4 descriptional_validation_schstartTarih seçilmedi. Lütfen tarih ve zaman seçiniz ve Takvim butonuna tıklayınız.Message when no date is selected starting a lesson by schedule.staff_lblİzleyenlerHeading for list of class staffsummery_lblÖzetHeading for summery outlinefinish_btnBaşlatFinish button to complete wizardal_okTamamOK on alert dialogdesc_lblAçıklamaNew Lesson descriptionwizardDesc_2_lblBu dersi görecek öğrenciler için bir isim ve açıklama ekleyebilirsiniz.Step 2 descriptionsummery_desc_lblAçıklamaLabel for summery heading of defined description.wizard_learner_enpres_cb_lblÖğrencilerin çevrimiçi kişileri görmesine izin ver.Checkbox label for presencewizard_splitLearners_leanersInGroup_lblBu gruptaki öğrencileri:wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lblDers başına düşen öğrenci:wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lblGerçek zamanlı düzenlemeyi geçerli kıl.wizard_learner_enLiveEdit_cb_lblwizard_splitLearners_cb_lblÖğrencilerin dersin farklı kopyalarına bölmek istiyor musunuz?wizard_splitLearners_cb_lblconfirmMsg_4_txt-Conclusion screen description if starting several lessonswizard_splitLearners_splitSum-Split learners summarywizard_splitLearners_splitSumShort-Shorter split learners summarywizardDesc_1_lblMevcut akışları açmak ve görüntülemek için aşağıdaki dosyayı tıklayınız. Birini seçip devam etmek için ileri butonuna tıklayınız.Step 1 description \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/vi_VN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/vi_VN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/vi_VN_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_startBạn không thể tạo bài họcCommon System error message starting linesys_error_msg_finishBạn có muốn gửi báo cáo lỗi không?Common System error message finish paragraphsys_errorLỗi hệ thốngSystem Error elert window titleprev_btn< TrướcPrevious step buttonnext_btnSau >Next step buttonfinish_btnBắt đầu màn hìnhFinish button to complete wizardcancel_btnHủy bỏCancel button to exit wizardclose_btnĐóngClose button to close windowstart_btnBắt đầuStart button to start new lessontitle_lblTiêu đềNew Lesson titledesc_lblMô tảNew Lesson descriptionlearner_lblCác học viênHeading for list of class learnersstaff_lblGiáo viênHeading for list of class staffschedule_cb_lblBảng kế hoạchLabel for schedule checkboxsummery_lblMùa hèHeading for summery outlinews_RootGốcRoot folder title for workspacews_tree_mywspKhông gian làm việc của tôiThe root level of the workspace treewizardTitle_1_lblLựa chọn bối cảnhStep 1 screen titlewizardTitle_2_lblChi tiết bài họcStep 2 screen titlewizardTitle_3_lblLựa chọn sinh viên và giáo viênStep 3 screen titlewizardTitle_4_lblXác nhận chi tiết bài họcStep 4 screen titlewizardTitle_x_lblBài học: {0} Confirmation screen titleal_alertCảnh báoGeneric title for Alert windowal_cancelHủy bỏCancel on alert dialogal_confirmXác nhậnTo Confirm title for LFErroral_okĐồng ýOK on alert dialogal_validation_msg1Bố cảnh có hiệu lực phải được lựa chọn.Message when no design is selected on step 1al_validation_msg2Yêu cầu tiêu đề.Message when title field is empty on Step 2al_validation_msg3_1Không có khoá học hay lớp được lựa chọn.Message when no course/class is selected in Step 3al_validation_msg3_2Ít nhât phải có một cán bộ và học viên được lựa chọn.Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lblCấu trúc thư mục dưới bao gồm các bối cảnh mà bạn tạo cho một bài học. Chọn một hoặc bấm vào nút tiếp theo để tiếp tục.Step 1 descriptionwizardDesc_2_lblBạn có thể đặt tên và định nghĩa mà bạn muốn cho học viên thấy về bài học.Step 2 descriptionwizardDesc_3_lblBạn có thể hủy chọn sinh viên hoặc cán bộ ơ lớp này bằng cách bỏ tích vào ô cạnh tên của họ.Step 3 descriptionwizardDesc_4_lblBằng cách bấm nút bắt đầu bạn có thể bắt đầu bài học ngay. Bạn còn có thể lên lịch cho bài học bắt đầu bằng ngày giờ cụ thểStep 4 descriptionconfirmMsg_1_txt{0} đã bắt đầuConclusion screen description if lesson startedconfirmMsg_2_txt{0} đã lên lịch cho {1}.Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0} đã được tạo nhưng chưa bắt đầuConclusion screen description if lesson created but not startedal_validation_schstartChưa chọn ngày tháng. Xin hãy chọn ngày tháng, và bấm nút kế hoạchMessage when no date is selected starting a lesson by schedule.summery_design_lblBối cảnh:Label for summery heading of selected design field.summery_title_lblTiêu đề:Label for summery heading of defined title.summery_desc_lblĐịnh nghĩa:Label for summery heading of defined description.summery_course_lblNhóm:Label for summery heading of selected course field.summery_class_lblNhóm con:Label for summery heading of selected class field.summery_staff_lblGiáo viên:Label for summery heading of number of selected staff in the lesson class.summery_learners_lblHọc viênLabel for summery heading of number of selected learners in the lesson class.al_sendGửiOK on system error dialogal_validation_schtimeHãy nhập thời gian bắt đầu hiệu lựcAlert message when user enters an invalid time for schedule startdate_lblNgàyLabel for Schedule Date fieldtime_lblGiờ (giờ :phút)Label for Schedule Time fieldwizard_selAll_cb_lblChọn tất cảLabel for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lblCho phép học viết xuất ra tài liệuLabel for Enable export portfolio for Learnerlearners_group_nameHọc viên {0}Group name for the class's learners group.staff_group_nameGiảng viên {0}Group name for the class's staff group. \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/zh_CN_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/zh_CN_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/zh_CN_dictionary.xml 12 Jan 2010 01:20:16 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3sys_error_msg_start你不能创建一个课程Common System error message starting linesys_error_msg_finish你想发送一个错误报告吗?Common System error message finish paragraphsys_error系统错误System Error elert window titleprev_btn<前一步Previous step buttonnext_btn下一步>Next step buttoncancel_btn取消Cancel button to exit wizardclose_btn关闭Close button to close windowtitle_lbl标题New Lesson titledesc_lbl描述New Lesson descriptionlearner_lbl学习者Heading for list of class learnersschedule_cb_lbl时间表Label for schedule checkboxsummery_lbl摘要Heading for summery outlinews_RootRoot folder title for workspacews_tree_mywsp我的工作空间The root level of the workspace treewizardTitle_2_lbl课程详情Step 2 screen titlewizardTitle_4_lbl确认课程详情Step 4 screen titlewizardTitle_x_lbl课程:{0}Confirmation screen titleal_alert警惕Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm确认To Confirm title for LFErroral_okOK on alert dialogal_validation_msg1必需选择一个有效的设计。Message when no design is selected on step 1al_validation_msg2必需有标题。Message when title field is empty on Step 2al_validation_msg3_1没有课程或班级被选中。Message when no course/class is selected in Step 3al_validation_msg3_2必需有至少1个人员和学习者被选中。Message when either no staff/learner users are selected in Step 3.wizardDesc_1_lbl下面的目录结构包含你创建课程所需的设计。选中一个,点击“下一步”按钮继续。Step 1 descriptionwizardDesc_2_lbl你可以为这个课程添加你想让学生看见的课程名称和描述。Step 2 descriptionwizardDesc_3_lbl你可以通过不在他们名字旁边的方框打勾,从而不从这个班级选中学生和人员。Step 3 descriptionwizardDesc_4_lbl通过按“开始”按钮,你可以直接开始课程。你也可以确定课程的时间,在特定的日期和时间开始。Step 4 descriptionconfirmMsg_1_txt{0}已经开始。Conclusion screen description if lesson startedconfirmMsg_2_txt{0}已经为{1}确定了时间。Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}已经创建但还没有开始。Conclusion screen description if lesson created but not startedal_validation_schstart没有日期被选中。请选择日期和时间,然后点击“开始”。Message when no date is selected starting a lesson by schedule.summery_design_lbl设计Label for summery heading of selected design field.summery_title_lbl标题Label for summery heading of defined title.summery_desc_lbl描述Label for summery heading of defined description.summery_course_lbl课程Label for summery heading of selected course field.summery_class_lbl班级Label for summery heading of selected class field.summery_staff_lbl全体人员Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl学习者Label for summery heading of number of selected learners in the lesson class.al_send发送OK on system error dialogdate_lbl日期Label for Schedule Date fieldtime_lbl时间(小时:分钟)Label for Schedule Time fieldal_validation_schtime请输入一个有效的时间。Alert message when user enters an invalid time for schedule startwizard_selAll_cb_lbl全部选择Label for select all check box used to select all staff or learner users in list.wizard_learner_expp_cb_lbl学习者可以导出的文件Label for Enable export portfolio for Learnerlearners_group_name{0}学习者Group name for the class's learners group.staff_group_name{0}全体Group name for the class's staff group.addmore_btn添加新课程Button to add another lesson, return to first step.wizard_learner_enpres_cb_lbl使课程可用Checkbox label for presencewizardTitle_3_lbl选择学习者和监控人员Step 3 screen titlewizard_splitLearners_cb_lbl你想将这些学习者分到不同的课程副本中去吗?wizard_splitLearners_cb_lblwizard_splitLearners_leanersInGroup_lbl该组中的学习者wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lbl每门课的学习者wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lbl使实时编辑可用wizard_learner_enLiveEdit_cb_lblwizard_splitLearners_splitSum该课程中将要创建{0}个实例,并且将给每个课程安排大约{1}个学习者。Split learners summarywizard_splitLearners_splitSumShort该课程有{0}个实例,每个实例都安排了{1}个学习者Shorter split learners summaryconfirmMsg_4_txt{1}个实例中的{0}个已经开始运行Conclusion screen description if starting several lessonsfinish_btn在监控环境中开始Finish button to complete wizardstaff_lbl监控者Heading for list of class staffwizardTitle_1_lbl步骤1/3:选择你的流程Step 1 screen titlestart_btn现在开始Start button to start new lesson \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/flashxml/wizard/zh_TW_dictionary.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/flashxml/wizard/Attic/zh_TW_dictionary.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/flashxml/wizard/zh_TW_dictionary.xml 12 Jan 2010 01:20:15 -0000 1.1 @@ -0,0 +1 @@ +
getDictionary3date_lbl日期Label for Schedule Date fieldtime_lbl時間(小時:分)Label for Schedule Time fieldwizard_selAll_cb_lbl選擇所有Label for select all check box used to select all staff or learner users in list.learners_group_name{0}學習者Group name for the class's learners group.staff_group_name{0}監視者Group name for the class's staff group.addmore_btn加入另一個課程Button to add another lesson, return to first step.wizard_learner_enpres_cb_lbl讓學習者看到誰在線上Checkbox label for presencewizard_splitLearners_leanersInGroup_lbl此群組的學習者wizard_splitLearners_leanersInGroup_lblwizard_splitLearners_LearnersPerLesson_lbl每一個課程的學習者wizard_splitLearners_LearnersPerLesson_lblwizard_learner_enLiveEdit_cb_lbl啟動即時編輯wizard_learner_enLiveEdit_cb_lblconfirmMsg_4_txt{0}事件的{1}已經開始Conclusion screen description if starting several lessonswizard_wkspc_date_modified_lbl最後修訂:{0}Shows the last modified datetime for a Learning Design.wizardDesc_1_lbl下面的資料夾包含課程所需的編程。選中一個,按“下一步”按鈕繼續。Step 1 descriptionwizardDesc_2_lbl你可以為這個課程添加你想讓學習者看見的課程名稱和描述。Step 2 descriptionwizard_splitLearners_splitSum該課程中將要創立{0}個事件,並且將給每個課程安排大約{1}個學習者。Split learners summarywizardDesc_3_lbl你可以通過不在他們名字旁邊的方框打勾,從而不從這個班級選擇學習者和堅督者。Step 3 descriptionwizard_splitLearners_splitSumShort該課程有{0}個事件,每個實例都安排了{1}個學習者Shorter split learners summarywizardDesc_4_lbl通過按“開始”按鈕,你可以直接開始課程。你也可以確定課程的時間,並在特定的日期和時間開始。Step 4 descriptionsys_error_msg_start你無法建立一個課程Common System error message starting linewizard_learner_expp_cb_lbl啟動輸出的資料夾給學習者Label for Enable export portfolio for Learnerwizard_splitLearners_cb_lbl你想將這些學習者分到不同的課程副本中去嗎?wizard_splitLearners_cb_lblsys_error_msg_finish你想要傳送ㄧ份錯誤報告嗎?Common System error message finish paragraphsys_error系統錯誤System Error elert window titleprev_btn< 前ㄧ步Previous step buttonnext_btn下一步 >Next step buttonfinish_btn在監視器中開始Finish button to complete wizardcancel_btn取消Cancel button to exit wizardclose_btn關閉Close button to close windowstart_btn現在開始Start button to start new lessontitle_lbl標題New Lesson titledesc_lbl描述New Lesson descriptionlearner_lbl學習者Heading for list of class learnersstaff_lbl監視Heading for list of class staffschedule_cb_lbl行程Label for schedule checkboxsummery_lbl總結Heading for summery outlinews_Root根目錄Root folder title for workspacews_tree_mywsp我的工作空間The root level of the workspace treewizardTitle_1_lbl步驟1之3:選擇你的編程Step 1 screen titlewizardTitle_2_lbl課程細節Step 2 screen titlewizardTitle_3_lbl步驟2之3:選擇你的學習者與監視Step 3 screen titlewizardTitle_4_lbl步驟3之3:確認課程細節Step 4 screen titlewizardTitle_x_lbl課程:{0}Confirmation screen titleal_alert注意Generic title for Alert windowal_cancel取消Cancel on alert dialogal_confirm確認To Confirm title for LFErroral_okOK on alert dialogal_validation_msg1一個有效的編程必須選擇Message when no design is selected on step 1al_validation_msg2標題是必須填的Message when title field is empty on Step 2al_validation_msg3_1沒有課程或班級被選擇Message when no course/class is selected in Step 3al_validation_msg3_2至少要選定一位監督者與學習者Message when either no staff/learner users are selected in Step 3.confirmMsg_1_txt{0}已經開始Conclusion screen description if lesson startedconfirmMsg_2_txt{0}已經排定開始於{1}。Conclusion screen description if lesson scheduledconfirmMsg_3_txt{0}已經建立但尚未開始Conclusion screen description if lesson created but not startedal_validation_schstart沒有選定日期。請選擇一個日期與時間,然後按下行程按鈕。Message when no date is selected starting a lesson by schedule.summery_design_lbl編程Label for summery heading of selected design field.summery_title_lbl標題Label for summery heading of defined title.summery_desc_lbl描述Label for summery heading of defined description.summery_course_lbl群組Label for summery heading of selected course field.summery_class_lbl子群組Label for summery heading of selected class field.summery_staff_lbl監視Label for summery heading of number of selected staff in the lesson class.summery_learners_lbl學習者Label for summery heading of number of selected learners in the lesson class.al_send送出OK on system error dialogal_validation_schtime請輸入一個有效的名稱Alert message when user enters an invalid time for schedule start \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/test/default/learningLibraryDetails.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/default/learningLibraryDetails.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/test/default/learningLibraryDetails.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1,3559 @@ + + +
+ + + + getAllLearningLibraryDetails + + + 3.0 + + + + + + 2009-8-28T12:1:39+10:0 + + + + Forum, also known Message Board + + + + 1.0 + + + + + + 2.0 + + + 1.0 + + + Forum + + + 1.0 + + + + + + + tool/lafrum11/authoring.do + + + + + 2009-8-28T12:1:39+10:0 + + + + + + + + Online threaded discussion + tool (asynchronous). + + + + 2.0 + + + + Discussion tool useful for + long running collaborations + and situations where + learners are not all on line + at the same time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + + + + + + + + + + + + + + + + + + + + + 1.0 + + + Forum Tool + + + 1.0 + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + lafrum11 + + + + + + Forum + + + + + + + + 2009-8-28T12:1:47+10:0 + + + Displays a Noticeboard + + + 2.0 + + + + + + 4.0 + + + 2.0 + + + Noticeboard + + + 1.0 + + + + + + + tool/lanb11/authoring.do + + + + + 2009-8-28T12:1:47+10:0 + + + + + + + + Tool for displaying HTML + content including external + sources such as images and + other media. + + + + 2.0 + + + + Displays formatted text and + links to external sources on + a read only page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + + org.lamsfoundation.lams.tool.noticeboard.ApplicationResources + + + + 2.0 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + + + + + + + + + + + + + + + + + + + + + + 2.0 + + + + Noticeboard Tool + + + + 2.0 + + + + org.lamsfoundation.lams.tool.noticeboard.ApplicationResources + + + + lanb11 + + + + + + Noticeboard + + + + + + + + 2009-8-28T12:1:51+10:0 + + + + Question and Answer Learning Library + Description + + + + 3.0 + + + + + + 6.0 + + + 3.0 + + + Q &amp; A + + + 1.0 + + + + tool/laqa11/laqa11admin.do + + + + + + + + tool/laqa11/authoringStarter.do + + + + + 2009-8-28T12:1:51+10:0 + + + + + + + + Each learner answers + question(s) and then sees + answers from all learners + collated on the next page. + + + + 2.0 + + + + Each learner answers one or + more questions in short + answer format and then sees + answers from all learners + collated on the next page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + org.lamsfoundation.lams.tool.qa.ApplicationResources + + + + 3.0 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + + + + + + + + + + + + + + + + + + + + + + 3.0 + + + + Question &amp; Answer + Tool + + + + 3.0 + + + + org.lamsfoundation.lams.tool.qa.ApplicationResources + + + + laqa11 + + + + + + Question and Answer + + + + + + + + 2009-8-28T12:1:59+10:0 + + + + Uploading of files by learners, for + review by teachers. + + + + 4.0 + + + + + + 3.0 + + + 4.0 + + + Submit Files + + + 1.0 + + + + + + + tool/lasbmt11/authoring.do + + + + + 2009-8-28T12:1:59+10:0 + + + + + + + + Learners submit files for + assessment by the teacher. + Scores and comments may be + exported as a spreadsheet. + + + + 2.0 + + + + Learners submit files for + assessment by the teacher. + Scores and comments for each + learner are recorded and may + be exported as a + spreadsheet. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + + org.lamsfoundation.lams.tool.sbmt.ApplicationResources + + + + 4.0 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + + + + + + + + + + + + + + + + + + + + + + 4.0 + + + + Submit Files Tool + + + + 4.0 + + + + org.lamsfoundation.lams.tool.sbmt.ApplicationResources + + + + lasbmt11 + + + + + + Submit file + + + + + + + + 2009-8-28T12:2:8+10:0 + + + Chat Tool + + + 5.0 + + + + + + 2.0 + + + 5.0 + + + Chat + + + 1.0 + + + + + + + tool/lachat11/authoring.do + + + + + 2009-8-28T12:2:8+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + 5.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + + + + + + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + lachat11 + + + + + + Chat + + + + + + + + 2009-8-28T12:2:19+10:0 + + + Share resources + + + 6.0 + + + + + + 4.0 + + + 6.0 + + + Share Resources + + + 1.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + 2009-8-28T12:2:19+10:0 + + + + + + + + Sharing resources with + others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + + + + + + + + + + + + + + + + + + + + + 6.0 + + + + Share Resources Tool + + + + 6.0 + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + larsrc11 + + + + + + Share resources + + + + + + + + 2009-8-28T12:2:27+10:0 + + + + Voting Learning Library Description + + + + 7.0 + + + + + + 6.0 + + + 7.0 + + + Voting + + + 1.0 + + + + + + + tool/lavote11/authoringStarter.do + + + + + 2009-8-28T12:2:27+10:0 + + + + + + + + Allows voting format + + + + 2.0 + + + + Voting help text + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lavote11 + + + + + org.lamsfoundation.lams.tool.vote.ApplicationResources + + + + 7.0 + + + + tool/lavote11/images/icon_ranking.swf + + + + + + + + + + + + + + + + + + + + + + + + + 7.0 + + + Voting + + + 7.0 + + + + org.lamsfoundation.lams.tool.vote.ApplicationResources + + + + lavote11 + + + + + + Voting + + + + + + + + 2009-8-28T12:2:37+10:0 + + + Notebook Tool + + + 8.0 + + + + + + 6.0 + + + 8.0 + + + Notebook + + + 1.0 + + + + + + + tool/lantbk11/authoring.do + + + + + 2009-8-28T12:2:37+10:0 + + + + + + + Notebook Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + + org.lamsfoundation.lams.tool.notebook.ApplicationResources + + + + 8.0 + + + + tool/lantbk11/images/icon_notebook.swf + + + + + + + + + + + + + + + + + + + + + + + + + 8.0 + + + Notebook + + + 8.0 + + + + org.lamsfoundation.lams.tool.notebook.ApplicationResources + + + + lantbk11 + + + + + + Notebook + + + + + + + + 2009-8-28T12:2:46+10:0 + + + Survey + + + 9.0 + + + + + + 6.0 + + + 9.0 + + + Survey + + + 1.0 + + + + + + + tool/lasurv11/authoring/start.do + + + + + 2009-8-28T12:2:46+10:0 + + + + + + + + Tool to create Surveys + + + + 2.0 + + + Answer surveys. + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasurv11 + + + + + org.lamsfoundation.lams.tool.survey.ApplicationResources + + + + 9.0 + + + + tool/lasurv11/images/icon_survey.swf + + + + + + + + + + + + + + + + + + + + + + + + + 9.0 + + + Survey Tool + + + 9.0 + + + + org.lamsfoundation.lams.tool.survey.ApplicationResources + + + + lasurv11 + + + + + + Survey + + + + + + + + 2009-8-28T12:3:7+10:0 + + + Share taskList + + + 11.0 + + + + + + 4.0 + + + 11.0 + + + Task List + + + 1.0 + + + + + + + tool/latask10/authoring/start.do + + + + + 2009-8-28T12:3:7+10:0 + + + + + + + Task List. + + + 2.0 + + + + Going through list of tasks. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/latask10 + + + + + org.lamsfoundation.lams.tool.taskList.ApplicationResources + + + + 11.0 + + + + tool/latask10/images/icon_taskList.swf + + + + + + + + + + + + + + + + + + + + + + + + + 11.0 + + + Task List Tool + + + 11.0 + + + + org.lamsfoundation.lams.tool.taskList.ApplicationResources + + + + latask10 + + + + + + Share taskList + + + + + + + + 2009-8-28T12:3:18+10:0 + + + Gmap Tool + + + 12.0 + + + + + + 2.0 + + + 12.0 + + + Gmap + + + 1.0 + + + + tool/lagmap10/lagmap10admin.do + + + + + + + + tool/lagmap10/authoring.do + + + + + 2009-8-28T12:3:18+10:0 + + + + + + + + Google Mapping Tool + + + + 2.0 + + + + Gmap for marking world map + points + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lagmap10 + + + + + org.lamsfoundation.lams.tool.gmap.ApplicationResources + + + + 12.0 + + + + tool/lagmap10/images/icon_gmap.swf + + + + + + + + + + + + + + + + + + + + + + + + + 12.0 + + + Gmap + + + 12.0 + + + + org.lamsfoundation.lams.tool.gmap.ApplicationResources + + + + lagmap10 + + + + + + Gmap + + + + + + + + 2009-8-28T12:3:28+10:0 + + + Spreadsheet Tool + + + 13.0 + + + + + + 4.0 + + + 13.0 + + + Spreadsheet + + + 1.0 + + + + + + + tool/lasprd10/authoring/start.do + + + + + 2009-8-28T12:3:28+10:0 + + + + + + + Spreadsheet. + + + 2.0 + + + + Spreadsheet Tool. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasprd10 + + + + + org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources + + + + 13.0 + + + + tool/lasprd10/images/icon_spreadsheet.swf + + + + + + + + + + + + + + + + + + + + + + + + + 13.0 + + + + Spreadsheet Tool + + + + 13.0 + + + + org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources + + + + lasprd10 + + + + + + Spreadsheet + + + + + + + + 2009-8-28T12:3:37+10:0 + + + + Collecting data with custom structure. + + + + 14.0 + + + + + + 6.0 + + + 14.0 + + + Data Collection + + + 1.0 + + + + + + + tool/ladaco10/authoring/start.do + + + + + 2009-8-28T12:3:37+10:0 + + + + + + + + Collecting data with custom + structure. + + + + 2.0 + + + + Asking questions with + custom, limited answers. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + org.lamsfoundation.lams.tool.daco.ApplicationResources + + + + 14.0 + + + + tool/ladaco10/images/icon_daco.swf + + + + + + + + + + + + + + + + + + + + + + + + + 14.0 + + + + Data Collection Tool + + + + 14.0 + + + + org.lamsfoundation.lams.tool.daco.ApplicationResources + + + + ladaco10 + + + + + + Data Collection + + + + + + + + 2009-8-28T12:3:50+10:0 + + + Wiki Tool + + + 15.0 + + + + + + 2.0 + + + 15.0 + + + Wiki + + + 1.0 + + + + + + + tool/lawiki10/authoring.do + + + + + 2009-8-28T12:3:50+10:0 + + + + + + + Wiki Tool + + + 2.0 + + + + Wiki tool for creating wiki + pages + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lawiki10 + + + + + org.lamsfoundation.lams.tool.wiki.ApplicationResources + + + + 15.0 + + + + tool/lawiki10/images/icon_wiki.swf + + + + + + + + + + + + + + + + + + + + + + + + + 15.0 + + + Wiki + + + 15.0 + + + + org.lamsfoundation.lams.tool.wiki.ApplicationResources + + + + lawiki10 + + + + + + Wiki + + + + + + + + 2009-8-28T12:4:3+10:0 + + + Share imageGallery + + + 16.0 + + + + + + 4.0 + + + 16.0 + + + Image Gallery + + + 1.0 + + + + tool/laimag10/laimag10admin/start.do + + + + + + + + tool/laimag10/authoring/start.do + + + + + 2009-8-28T12:4:3+10:0 + + + + + + + + Gallery to share images with + others. + + + + 2.0 + + + + Uploading your images to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laimag10 + + + + + org.lamsfoundation.lams.tool.imageGallery.ApplicationResources + + + + 16.0 + + + + tool/laimag10/images/icon_imageGallery.swf + + + + + + + + + + + + + + + + + + + + + + + + + 16.0 + + + + Image Gallery Tool + + + + 16.0 + + + + org.lamsfoundation.lams.tool.imageGallery.ApplicationResources + + + + laimag10 + + + + + + Share imageGallery + + + + + + + + 2009-8-28T12:4:13+10:0 + + + Dimdim Tool + + + 17.0 + + + + + + 2.0 + + + 17.0 + + + Dimdim + + + 1.0 + + + + tool/laddim10/admin/view.do + + + + + + + + tool/laddim10/authoring.do + + + + + 2009-8-28T12:4:13+10:0 + + + + + + + Dimdim Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laddim10 + + + + + org.lamsfoundation.lams.tool.dimdim.ApplicationResources + + + + 17.0 + + + + tool/laddim10/images/icon_dimdim.swf + + + + + + + + + + + + + + + + + + + + + + + + + 17.0 + + + Dimdim + + + 17.0 + + + + org.lamsfoundation.lams.tool.dimdim.ApplicationResources + + + + laddim10 + + + + + + Dimdim + + + + + + + + 2009-8-28T12:4:25+10:0 + + + VideoRecorder Tool + + + 18.0 + + + + + + 6.0 + + + 18.0 + + + Video Recorder + + + 1.0 + + + + + + + tool/lavidr10/authoring.do + + + + + 2009-8-28T12:4:25+10:0 + + + + + + + + Video Recorder Tool + + + + 2.0 + + + + Tool that allows audio and + video to be recorded via a + webcam + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lavidr10 + + + + + org.lamsfoundation.lams.tool.videoRecorder.ApplicationResources + + + + 18.0 + + + + tool/lavidr10/images/icon_videoRecorder.swf + + + + + + + + + + + + + + + + + + + + + + + + + 18.0 + + + Video Recorder + + + 18.0 + + + + org.lamsfoundation.lams.tool.videoRecorder.ApplicationResources + + + + lavidr10 + + + + + + VideoRecorder + + + + + + + + 2009-8-28T12:4:35+10:0 + + + Mindmap Tool + + + 19.0 + + + + + + 6.0 + + + 19.0 + + + Mindmap + + + 1.0 + + + + + + + tool/lamind10/authoring.do + + + + + 2009-8-28T12:4:35+10:0 + + + + + + + Mindmap Tool + + + 2.0 + + + + Mindmap for making mindmaps + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + + org.lamsfoundation.lams.tool.mindmap.ApplicationResources + + + + 19.0 + + + + tool/lamind10/images/icon_mindmap.swf + + + + + + + + + + + + + + + + + + + + + + + + + 19.0 + + + Mindmap + + + 19.0 + + + + org.lamsfoundation.lams.tool.mindmap.ApplicationResources + + + + lamind10 + + + + + + Mindmap + + + + + + + + 2009-8-28T12:4:47+10:0 + + + Assessment + + + 20.0 + + + + + + 3.0 + + + 20.0 + + + Assessment + + + 1.0 + + + + + + + tool/laasse10/authoring/start.do + + + + + 2009-8-28T12:4:47+10:0 + + + + + + + + Tool for assessing learners + + + + 2.0 + + + + Create questions to assess + learners. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + org.lamsfoundation.lams.tool.assessment.ApplicationResources + + + + 20.0 + + + + tool/laasse10/images/icon_assessment.swf + + + + + + + + + + + + + + + + + + + + + + + + + 20.0 + + + Assessment Tool + + + 20.0 + + + + org.lamsfoundation.lams.tool.assessment.ApplicationResources + + + + laasse10 + + + + + + Assessment + + + + + + + + 2009-8-28T12:4:58+10:0 + + + Pixlr Tool + + + 21.0 + + + + + + 4.0 + + + 21.0 + + + Pixlr + + + 1.0 + + + + tool/lapixl10/lapixl10admin.do + + + + + + + + tool/lapixl10/authoring.do + + + + + 2009-8-28T12:4:58+10:0 + + + + + + + + Pixlr Image Editing Tool + + + + 2.0 + + + + Edit images in Pixlr image + editor + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lapixl10 + + + + + org.lamsfoundation.lams.tool.pixlr.ApplicationResources + + + + 21.0 + + + + tool/lapixl10/images/icon_pixlr.swf + + + + + + + + + + + + + + + + + + + + + + + + + 21.0 + + + Pixlr + + + 21.0 + + + + org.lamsfoundation.lams.tool.pixlr.ApplicationResources + + + + lapixl10 + + + + + + Pixlr + + + + + + + + 2009-8-28T12:5:4+10:0 + + + + MCQ Learning Library Description + + + + 22.0 + + + + + + 3.0 + + + 22.0 + + + Multiple Choice + + + 1.0 + + + + + + + tool/lamc11/authoringStarter.do + + + + + 2009-8-28T12:5:4+10:0 + + + + + + + + Creates automated assessment + questions. e.g. Multiple + choice and true/false + questions. Can provide + feedback and scores. + + + + 2.0 + + + + Learner answers a series of + automated assessment + questions. e.g. Multiple + choice and true/false + questions. Optional features + include feedback on each + question and scoring. + Questions are weighted for + scoring. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + org.lamsfoundation.lams.tool.mc.ApplicationResources + + + + 22.0 + + + + tool/lamc11/images/icon_mcq.swf + + + + + + + + + + + + + + + + + + + + + + + + + 22.0 + + + + Multiple Choice Tool + + + + 22.0 + + + + org.lamsfoundation.lams.tool.mc.ApplicationResources + + + + lamc11 + + + + + + MCQ + + + + + + + + 2009-8-28T12:5:6+10:0 + + + Shared Resources and Forum + + + 23.0 + + + + + + 5.0 + + + 23.0 + + + + Resources&amp;Forum + + + + 6.0 + + + + + + + 2009-8-28T12:5:6+10:0 + + + + + + + + Combined Share Resources and + Forum + + + + 2.0 + + + + The top window has a Share + Resources area and the + bottom window has a forum + for learners to discuss + items they have view via the + Share Resources area. + + + + + org.lamsfoundation.lams.library.llid23.ApplicationResources + + + + 23.0 + + + + images/icon_urlcontentmessageboard.swf + + + + + + + + + 4.0 + + + 24.0 + + + Share Resources + + + 1.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + 2009-8-28T12:5:6+10:0 + + + + + + + + Sharing resources with + others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + + + 23.0 + + + + + + + + + + + + + + + + + + + + + 6.0 + + + + Share Resources Tool + + + + 6.0 + + + + org.lamsfoundation.lams.tool.rsrc.ApplicationResources + + + + larsrc11 + + + + + 2.0 + + + 25.0 + + + Forum + + + 1.0 + + + + + + + tool/lafrum11/authoring.do + + + + + 2009-8-28T12:5:6+10:0 + + + + + + + + Online threaded discussion + tool (asynchronous). + + + + 2.0 + + + + Discussion tool useful for + long running collaborations + and situations where + learners are not all on line + at the same time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + + tool/lafrum11/images/icon_forum.swf + + + + + + + 23.0 + + + + + + + + + + + + + + + + + + + + + 1.0 + + + Forum Tool + + + 1.0 + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + lafrum11 + + + + + + Resources and Forum + + + + + + + + 2009-8-28T12:5:7+10:0 + + + Chat and Scribe + + + 24.0 + + + + + + 5.0 + + + 26.0 + + + Chat and Scribe + + + 6.0 + + + + + + + 2009-8-28T12:5:7+10:0 + + + + + + + + Combined Chat and Scribe + + + + 2.0 + + + + The top window has a Chat + area and the bottom window + has a Scribe area for + learners to create their + group reports. + + + + + org.lamsfoundation.lams.library.llid24.ApplicationResources + + + + 24.0 + + + + images/icon_groupreporting.swf + + + + + + + + + 2.0 + + + 27.0 + + + Chat + + + 1.0 + + + + + + + tool/lachat11/authoring.do + + + + + 2009-8-28T12:5:7+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + + tool/lachat11/images/icon_chat.swf + + + + + + + 26.0 + + + + + + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + + org.lamsfoundation.lams.tool.chat.ApplicationResources + + + + lachat11 + + + + + 2.0 + + + 28.0 + + + Scribe + + + 1.0 + + + + + + + tool/lascrb11/authoring.do + + + + + 2009-8-28T12:5:7+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + + tool/lascrb11/images/icon_scribe.swf + + + + + + + 26.0 + + + + + + + + + + + + + + + + + + + + + 10.0 + + + Scribe + + + 10.0 + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + lascrb11 + + + + + + Chat and Scribe + + + + + + + + 2009-8-28T12:5:8+10:0 + + + Forum and Scribe + + + 25.0 + + + + + + 5.0 + + + 29.0 + + + + Forum &amp; Scribe + + + + 6.0 + + + + + + + 2009-8-28T12:5:9+10:0 + + + + + + + + Combined Forum and Scribe + + + + 2.0 + + + + The top window has a Forum + area and the bottom window + has a Scribe area for + learners to create their + group reports. + + + + + org.lamsfoundation.lams.library.llid25.ApplicationResources + + + + 25.0 + + + + images/icon_forum_and_scribe.swf + + + + + + + + + 2.0 + + + 30.0 + + + Forum + + + 1.0 + + + + + + + tool/lafrum11/authoring.do + + + + + 2009-8-28T12:5:9+10:0 + + + + + + + + Online threaded discussion + tool (asynchronous). + + + + 2.0 + + + + Discussion tool useful for + long running collaborations + and situations where + learners are not all on line + at the same time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + + tool/lafrum11/images/icon_forum.swf + + + + + + + 29.0 + + + + + + + + + + + + + + + + + + + + + 1.0 + + + Forum Tool + + + 1.0 + + + + org.lamsfoundation.lams.tool.forum.ApplicationResources + + + + lafrum11 + + + + + 2.0 + + + 31.0 + + + Scribe + + + 1.0 + + + + + + + tool/lascrb11/authoring.do + + + + + 2009-8-28T12:5:9+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + + tool/lascrb11/images/icon_scribe.swf + + + + + + + 29.0 + + + + + + + + + + + + + + + + + + + + + 10.0 + + + Scribe + + + 10.0 + + + + org.lamsfoundation.lams.tool.scribe.ApplicationResources + + + + lascrb11 + + + + + + Forum and Scribe + + + + + + + + + + Index: lams_flex/LamsAuthor/src/assets/test/default/openLearningDesign.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/default/openLearningDesign.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/test/default/openLearningDesign.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1,3613 @@ + +
+ + + + getLearningDesignDetails + + + 3.0 + + + + + + + + 3.0 + + + + + learner.total.score + + + + + 32.0 + + + Assessment + + + 1.0 + + + 1.0 + + + + + + + tool/laasse10/authoring/start.do + + + + + + + + tool/laasse10/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + + Tool for assessing learners + + + + 2.0 + + + + Create questions to assess + learners. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + + + + + + 1.0 + + + 20.0 + + + + tool/laasse10/images/icon_assessment.swf + + + + + tool/laasse10/moderate.do + + + + + tool/laasse10/monitoring/summary.do + + + + + + + + + + + + + + + + 20.0 + + + Assessment + + + 20.0 + + + laasse10 + + + 20090612 + + + 41.0 + + + 51.0 + + + + + 2.0 + + + + + + 33.0 + + + Chat + + + 1.0 + + + 2.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + 5.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 209.0 + + + 47.0 + + + + + 2.0 + + + + + + 34.0 + + + Chat + + + 1.0 + + + 4.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + 1.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 23.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 8.0 + + + 45.0 + + + + + 5.0 + + + 36.0 + + + Chat and Scribe + + + 6.0 + + + 3.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Combined Chat and Scribe + + + + 2.0 + + + + The top window has a Chat area + and the bottom window has a + Scribe area for learners to + create their group reports. + + + + + + + + + + 1.0 + + + 24.0 + + + + images/icon_groupreporting.swf + + + + + + + + + + + + + 437.0 + + + 2.0 + + + + + 6.0 + + + + + + 37.0 + + + Data Collection + + + 1.0 + + + 6.0 + + + + + + + tool/ladaco10/authoring/start.do + + + + + + + + tool/ladaco10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Collecting data with custom + structure. + + + + 2.0 + + + + Asking questions with custom, + limited answers. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + + + + + + 1.0 + + + 14.0 + + + + tool/ladaco10/images/icon_daco.swf + + + + + tool/ladaco10/moderate.do + + + + + tool/ladaco10/monitoring/summary.do + + + + + + + + + + + + + + + + 14.0 + + + Data Collection + + + 14.0 + + + ladaco10 + + + 20090326 + + + 636.0 + + + 73.0 + + + + + 2.0 + + + + + + 38.0 + + + Forum + + + 1.0 + + + 7.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 19.0 + + + 205.0 + + + + + 2.0 + + + + + + 39.0 + + + Forum + + + 1.0 + + + 9.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 1.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 25.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 45.0 + + + + + 5.0 + + + 41.0 + + + + Forum &amp; Scribe + + + + 6.0 + + + 8.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Combined Forum and Scribe + + + + 2.0 + + + + The top window has a Forum area + and the bottom window has a + Scribe area for learners to + create their group reports. + + + + + + + + + + 1.0 + + + 25.0 + + + + images/icon_forum_and_scribe.swf + + + + + + + + + + + + + 216.0 + + + 198.0 + + + + + 1.0 + + + 42.0 + + + Optional Activity + + + 7.0 + + + 11.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 2.0 + + + + + + + + + 1.0 + + + + + + + + + + + + 391.0 + + + 196.0 + + + + + 6.0 + + + + + + 43.0 + + + Mindmap + + + 1.0 + + + 12.0 + + + + + + + tool/lamind10/authoring.do + + + + + + + + tool/lamind10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Mindmap Tool + + + 2.0 + + + + Mindmap for making mindmaps + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + + + + + + + 1.0 + + + 19.0 + + + + tool/lamind10/images/icon_mindmap.swf + + + + + tool/lamind10/moderate.do + + + + + tool/lamind10/monitoring.do + + + + 1.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 19.0 + + + Mindmap + + + 19.0 + + + lamind10 + + + 20090202 + + + 8.0 + + + 57.0 + + + + + 3.0 + + + + learner.mark + + + + 45.0 + + + Multiple Choice + + + 1.0 + + + 20.0 + + + + + + + tool/lamc11/authoringStarter.do + + + + + + + + tool/lamc11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Creates automated assessment + questions. e.g. Multiple choice + and true/false questions. Can + provide feedback and scores. + + + + 2.0 + + + + Learner answers a series of + automated assessment questions. + e.g. Multiple choice and + true/false questions. Optional + features include feedback on + each question and scoring. + Questions are weighted for + scoring. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + + + + + + 1.0 + + + 22.0 + + + + tool/lamc11/images/icon_mcq.swf + + + + + tool/lamc11/monitoringStarter.do + + + + + tool/lamc11/monitoringStarter.do + + + + + + + + + + + + + + + + 22.0 + + + MCQ + + + 22.0 + + + lamc11 + + + 20081127 + + + 552.0 + + + 227.0 + + + + + 1.0 + + + 46.0 + + + Branching + + + 12.0 + + + 22.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 40.0 + + + + + + 729.0 + + + 244.0 + + + 2.0 + + + + + + + 20.0 + + + + 1.0 + + + + + + + + + 25.0 + + + 244.0 + + + + + + 20.0 + + + 568.0 + + + 315.0 + + + + + 1.0 + + + 47.0 + + + Grouping + + + 2.0 + + + 25.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 1.0 + + + 24.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + + + + + + + + + + 582.0 + + + 456.0 + + + + + 1.0 + + + 48.0 + + + Sequence 1 + + + 8.0 + + + 29.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 33.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + 1.0 + + + 50.0 + + + 28.0 + + + + + + + + + + + + 4.0 + + + 48.0 + + + + + 1.0 + + + 50.0 + + + Optional Sequences + + + 13.0 + + + 28.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 2.0 + + + + + + + + + 1.0 + + + + + + + + + + + + 204.0 + + + 401.0 + + + + + 1.0 + + + 51.0 + + + Support Activity + + + 15.0 + + + 31.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 1.0 + + + + + + + + + 1.0 + + + 6.0 + + + + + + + + + + + + 30.0 + + + 390.0 + + + + + 4.0 + + + + + + 52.0 + + + Noticeboard + + + 1.0 + + + 33.0 + + + + + + + tool/lanb11/authoring.do + + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Tool for displaying HTML content + including external sources such + as images and other media. + + + + 2.0 + + + + Displays formatted text and + links to external sources on a + read only page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + + + + + + + 1.0 + + + 2.0 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + + tool/lanb11/monitoring.do + + + + 1.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 2.0 + + + NoticeboardX + + + 2.0 + + + lanb11 + + + 20081209 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 53.0 + + + Notebook + + + 1.0 + + + 34.0 + + + + + + + tool/lantbk11/authoring.do + + + + + + + + tool/lantbk11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Notebook Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + + + + + + + 1.0 + + + 8.0 + + + + tool/lantbk11/images/icon_notebook.swf + + + + + tool/lantbk11/moderate.do + + + + + tool/lantbk11/monitoring.do + + + + 1.0 + + + 49.0 + + + 30.0 + + + + + + + + + + + + + + + 8.0 + + + Notebook + + + 8.0 + + + lantbk11 + + + 20081118 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 55.0 + + + Q &amp; A + + + 1.0 + + + 37.0 + + + + tool/laqa11/laqa11admin.do + + + + + + + + tool/laqa11/authoringStarter.do + + + + + + + + tool/laqa11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Each learner answers question(s) + and then sees answers from all + learners collated on the next + page. + + + + 2.0 + + + + Each learner answers one or more + questions in short answer format + and then sees answers from all + learners collated on the next + page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + + + + + + 1.0 + + + 3.0 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + + tool/laqa11/monitoringStarter.do + + + + + tool/laqa11/monitoringStarter.do + + + + + + + + + + + + + + + + 3.0 + + + Question and Answer + + + 3.0 + + + laqa11 + + + 20081126 + + + 406.0 + + + 450.0 + + + + + 1.0 + + + 56.0 + + + Branch 1 + + + 8.0 + + + 40.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + 2.0 + + + + + + + + + 1.0 + + + 1.0 + + + 46.0 + + + 22.0 + + + + + + + + + + + + + + 3.0 + + + + + + 58.0 + + + Submit Files + + + 1.0 + + + 43.0 + + + + + + + tool/lasbmt11/authoring.do + + + + + + + + tool/lasbmt11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Learners submit files for + assessment by the teacher. + Scores and comments may be + exported as a spreadsheet. + + + + 2.0 + + + + Learners submit files for + assessment by the teacher. + Scores and comments for each + learner are recorded and may be + exported as a spreadsheet. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + + + + + + + 1.0 + + + 4.0 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + + tool/lasbmt11/moderation.do + + + + + tool/lasbmt11/monitoring.do + + + + 1.0 + + + 57.0 + + + 42.0 + + + + + + + + + + + + + + + 4.0 + + + Submit File + + + 4.0 + + + lasbmt11 + + + 20091028 + + + 305.0 + + + 96.0 + + + + + 4.0 + + + + + + 59.0 + + + Share Resources + + + 1.0 + + + 52.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 1.0 + + + 51.0 + + + 31.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 8.0 + + + 57.0 + + + + + 2.0 + + + + + + 35.0 + + + Scribe + + + 1.0 + + + 5.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 24.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 2.0 + + + + + + 40.0 + + + Scribe + + + 1.0 + + + 10.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 26.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 2.0 + + + + + + 44.0 + + + Forum + + + 1.0 + + + 13.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 2.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 117.0 + + + + + 1.0 + + + 49.0 + + + Sequence 2 + + + 8.0 + + + 30.0 + + + + + + + 2009-12-17T16:23:31+10:0 + + + + 34.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + 2.0 + + + 50.0 + + + 28.0 + + + + + + + + + + + + 4.0 + + + 105.0 + + + + + 4.0 + + + + + + 54.0 + + + Share Resources + + + 1.0 + + + 35.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 2.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 65.0 + + + 5.0 + + + + + 1.0 + + + 57.0 + + + Branch 2 + + + 8.0 + + + 42.0 + + + + + + + 2009-12-17T16:23:32+10:0 + + + + 43.0 + + + + + + 2.0 + + + + + + + + + 1.0 + + + 2.0 + + + 46.0 + + + 22.0 + + + + + + + + + + + + + + + + + + 22.0 + + + + + + + 4.0 + + + + 48.0 + + + + + All Correct + + + + + true + + + + + learner.all.correct + + + + 1.0 + + + + OUTPUT_BOOLEAN + + + + + + 4.0 + + + 48.0 + + + All Correct + + + true + + + + learner.all.correct + + + + 1.0 + + + 20.0 + + + + OUTPUT_BOOLEAN + + + + + + 1.0 + + + 50.0 + + + 40.0 + + + + + 22.0 + + + + + + + 5.0 + + + + 49.0 + + + + + Not All Correct + + + + + false + + + + + learner.all.correct + + + + 2.0 + + + + OUTPUT_BOOLEAN + + + + + + 5.0 + + + 49.0 + + + + Not All Correct + + + + false + + + + learner.all.correct + + + + 2.0 + + + 20.0 + + + + OUTPUT_BOOLEAN + + + + + + 2.0 + + + 51.0 + + + 42.0 + + + + + + + + + + 2c94e45c259b0d1401259b0f05ce0004 + + + + 1.0 + + + 2009-12-17T16:23:30+10:0 + + + 1.0 + + + + + + 32.0 + + + 1.0 + + + 32.0 + + + 31.0 + + + + + + 1.0 + + + 1.0 + + + 24.0 + + + + + + 2.0 + + + Group 1 + + + 26.0 + + + 0.0 + + + + + + + + 1.0 + + + Group 2 + + + 27.0 + + + 1.0 + + + + + + + + + 2.0 + + + + + + 2009-12-17T16:23:30+10:0 + + + 1.0 + + + 52.0 + + + + + + xxx + + + + + + + 2009-12-17T16:23:32+10:0 + + + + 47.0 + + + 25.0 + + + 1.0 + + + 55.0 + + + 37.0 + + + 10.0 + + + 38.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 37.0 + + + 6.0 + + + 1.0 + + + 38.0 + + + 7.0 + + + 4.0 + + + 17.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 41.0 + + + 8.0 + + + 1.0 + + + 42.0 + + + 11.0 + + + 6.0 + + + 19.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 45.0 + + + 20.0 + + + 1.0 + + + 46.0 + + + 22.0 + + + 8.0 + + + 23.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 36.0 + + + 3.0 + + + 1.0 + + + 37.0 + + + 6.0 + + + 3.0 + + + 16.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 32.0 + + + 1.0 + + + 1.0 + + + 33.0 + + + 2.0 + + + 1.0 + + + 14.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 38.0 + + + 7.0 + + + 1.0 + + + 41.0 + + + 8.0 + + + 5.0 + + + 18.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 55.0 + + + 37.0 + + + 1.0 + + + 50.0 + + + 28.0 + + + 11.0 + + + 39.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 52.0 + + + 33.0 + + + 1.0 + + + 54.0 + + + 35.0 + + + 9.0 + + + 36.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 42.0 + + + 11.0 + + + 1.0 + + + 45.0 + + + 20.0 + + + 7.0 + + + 21.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 33.0 + + + 2.0 + + + 1.0 + + + 36.0 + + + 3.0 + + + 2.0 + + + 15.0 + + + + + + 2009-12-17T16:23:32+10:0 + + + + 46.0 + + + 22.0 + + + 1.0 + + + 47.0 + + + 25.0 + + + 12.0 + + + 47.0 + + + + + + 5.0 + + + + + + 2.3.3.200910300000 + + + 5.0 + + + + + + Index: lams_flex/LamsAuthor/src/assets/test/default/outputDefinitions.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/default/outputDefinitions.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/test/default/outputDefinitions.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1,39 @@ + +
+ + + + getToolOutputDefinitions + + + 3.0 + + + + + + Number of ideas + + + + + + number.of.nodes + + + + + + 0 + + + OUTPUT_LONG + + + + + + + \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/test/default/storeLearningDesign.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/default/storeLearningDesign.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/test/default/storeLearningDesign.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1,2833 @@ + +
+ + + + + + + + + + + + true + + + string_null_value + + + string_null_value + + + OUTPUT_BOOLEAN + + + All Correct + + + learner.all.correct + + + 1 + + + 48 + + + + + 22 + + + 40 + + + 50 + + + + + + + false + + + string_null_value + + + string_null_value + + + OUTPUT_BOOLEAN + + + Not All Correct + + + learner.all.correct + + + 2 + + + 49 + + + + + 22 + + + 42 + + + 51 + + + + + + + + + + + + Group 1 + + + 26 + + + + + 1 + + + Group 2 + + + 27 + + + + + + -111111 + + + boolean_null_value + + + boolean_null_value + + + -111111 + + + 2 + + + 1 + + + 24 + + + + + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 2 + + + -111111 + + + 1 + + + -111111 + + + 14 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 3 + + + -111111 + + + 2 + + + -111111 + + + 15 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 6 + + + -111111 + + + 3 + + + -111111 + + + 16 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 7 + + + -111111 + + + 6 + + + -111111 + + + 17 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 8 + + + -111111 + + + 7 + + + -111111 + + + 18 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 11 + + + -111111 + + + 8 + + + -111111 + + + 19 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 20 + + + -111111 + + + 11 + + + -111111 + + + 21 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 22 + + + -111111 + + + 20 + + + -111111 + + + 23 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 35 + + + -111111 + + + 33 + + + -111111 + + + 36 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 37 + + + -111111 + + + 25 + + + -111111 + + + 38 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 28 + + + -111111 + + + 37 + + + -111111 + + + 39 + + + -111111 + + + + + -111111 + + + 1970-1-1T11:0:0+11:0 + + + string_null_value + + + string_null_value + + + 25 + + + -111111 + + + 22 + + + -111111 + + + 47 + + + -111111 + + + + + + + + + + + + learner.total.score + + + string_null_value + + + 20 + + + 20 + + + laasse10 + + + Assessment Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + tool/laasse10/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:9:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/laasse10/images/icon_assessment.swf + + + + 41 + + + 51 + + + + Create questions to assess learners. + + + + Tool for assessing learners + + + Assessment + + + 20 + + + 1 + + + 3 + + + 20 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 5 + + + 5 + + + lachat11 + + + Chat + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + tool/lachat11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/lachat11/images/icon_chat.swf + + + + 209 + + + 47 + + + Syncronous Chat tool + + + Chat Tool + + + Chat + + + 5 + + + 2 + + + 2 + + + 5 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 5 + + + 23 + + + lachat11 + + + Chat + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + tool/lachat11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 26 + + + 3 + + + + tool/lachat11/images/icon_chat.swf + + + + 8 + + + 45 + + + Syncronous Chat tool + + + Chat Tool + + + Chat + + + 1 + + + 4 + + + 2 + + + 27 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 10 + + + 24 + + + lascrb11 + + + Scribe + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + tool/lascrb11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 26 + + + 3 + + + + tool/lascrb11/images/icon_scribe.swf + + + + 8 + + + 108 + + + Syncronous Scribe tool + + + Scribe Tool + + + Scribe + + + 2 + + + 5 + + + 2 + + + 28 + + + 1 + + + + + -111111 + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + + images/icon_groupreporting.swf + + + + 437 + + + 2 + + + + The top window has a Chat area and the + bottom window has a Scribe area for + learners to create their group reports. + + + + Combined Chat and Scribe + + + Chat and Scribe + + + 24 + + + 3 + + + 5 + + + 26 + + + 6 + + + + + + + + string_null_value + + + string_null_value + + + 14 + + + 14 + + + ladaco10 + + + Data Collection Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + tool/ladaco10/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:8:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/ladaco10/images/icon_daco.swf + + + + 636 + + + 73 + + + + Asking questions with custom, limited + answers. + + + + + Collecting data with custom structure. + + + + Data Collection + + + 14 + + + 6 + + + 6 + + + 14 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 1 + + + 1 + + + lafrum11 + + + Forum Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + tool/lafrum11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/lafrum11/images/icon_forum.swf + + + + 19 + + + 205 + + + + Discussion tool useful for long running + collaborations and situations where + learners are not all on line at the same + time. + + + + + Online threaded discussion tool + (asynchronous). + + + + Forum + + + 1 + + + 7 + + + 2 + + + 1 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 1 + + + 25 + + + lafrum11 + + + Forum Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + tool/lafrum11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 29 + + + 8 + + + + tool/lafrum11/images/icon_forum.swf + + + + 8 + + + 45 + + + + Discussion tool useful for long running + collaborations and situations where + learners are not all on line at the same + time. + + + + + Online threaded discussion tool + (asynchronous). + + + + Forum + + + 1 + + + 9 + + + 2 + + + 30 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 10 + + + 26 + + + lascrb11 + + + Scribe + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + tool/lascrb11/authoring.do + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + 29 + + + 8 + + + + tool/lascrb11/images/icon_scribe.swf + + + + 8 + + + 108 + + + Syncronous Scribe tool + + + Scribe Tool + + + Scribe + + + 2 + + + 10 + + + 2 + + + 31 + + + 1 + + + + + -111111 + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + + images/icon_forum_and_scribe.swf + + + + 216 + + + 198 + + + + The top window has a Forum area and the + bottom window has a Scribe area for + learners to create their group reports. + + + + Combined Forum and Scribe + + + Forum &amp; Scribe + + + 25 + + + 8 + + + 5 + + + 29 + + + 6 + + + + + -111111 + + + -111111 + + + -111111 + + + + + + 2 + + + + 2009-12-17T16:15:39+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 391 + + + 196 + + + Optional Activity + + + 11 + + + 1 + + + 7 + + + + + + + + string_null_value + + + string_null_value + + + 19 + + + 19 + + + lamind10 + + + Mindmap + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + tool/lamind10/authoring.do + + + + + + 2 + + + 2009-12-17T17:9:31+11:0 + + + + + + + + + + + + -111111 + + + 11 + + + + tool/lamind10/images/icon_mindmap.swf + + + + 8 + + + 57 + + + Mindmap for making mindmaps + + + Mindmap Tool + + + Mindmap + + + 1 + + + 19 + + + 12 + + + 6 + + + 19 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 1 + + + 1 + + + lafrum11 + + + Forum Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + tool/lafrum11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 11 + + + + tool/lafrum11/images/icon_forum.swf + + + + 8 + + + 117 + + + + Discussion tool useful for long running + collaborations and situations where + learners are not all on line at the same + time. + + + + + Online threaded discussion tool + (asynchronous). + + + + Forum + + + 2 + + + 1 + + + 13 + + + 2 + + + 1 + + + 1 + + + + + + + + learner.mark + + + string_null_value + + + 22 + + + 22 + + + lamc11 + + + Multiple Choice Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + tool/lamc11/authoringStarter.do + + + + + + + 2 + + + + 2009-12-17T17:10:31+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/lamc11/images/icon_mcq.swf + + + + 552 + + + 227 + + + + Learner answers a series of automated + assessment questions. e.g. Multiple + choice and true/false questions. + Optional features include feedback on + each question and scoring. Questions are + weighted for scoring. + + + + + Creates automated assessment questions. + e.g. Multiple choice and true/false + questions. Can provide feedback and + scores. + + + + Multiple Choice + + + 22 + + + 20 + + + 3 + + + 22 + + + 1 + + + + + 20 + + + 244 + + + 729 + + + 244 + + + 25 + + + 40 + + + + + + 2 + + + + 2009-12-17T16:16:33+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 568 + + + 315 + + + Branching + + + 22 + + + 1 + + + 12 + + + + + 24 + + + + + + 2 + + + + 2009-12-17T16:16:42+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 582 + + + 456 + + + Grouping + + + 25 + + + 1 + + + 2 + + + + + 33 + + + + + + 2 + + + + 2009-12-17T16:16:45+11:0 + + + + + + + + + + + + + -111111 + + + 28 + + + 4 + + + 48 + + + Sequence 1 + + + 1 + + + 29 + + + 1 + + + 8 + + + + + 34 + + + + + + 2 + + + + 2009-12-17T16:16:45+11:0 + + + + + + + + + + + + + -111111 + + + 28 + + + 4 + + + 105 + + + Sequence 2 + + + 2 + + + 30 + + + 1 + + + 8 + + + + + -111111 + + + -111111 + + + -111111 + + + + + + 2 + + + + 2009-12-17T16:16:45+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 204 + + + 401 + + + Optional Sequences + + + 28 + + + 1 + + + 13 + + + + + -111111 + + + 6 + + + + + + 1 + + + + 2009-12-17T16:16:48+11:0 + + + + + + + + + + + + + -111111 + + + -111111 + + + 30 + + + 390 + + + Support Activity + + + 31 + + + 1 + + + 15 + + + + + + + + string_null_value + + + string_null_value + + + 2 + + + 2 + + + lanb11 + + + Noticeboard Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + tool/lanb11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 29 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + 5 + + + 5 + + + + Displays formatted text and links to + external sources on a read only page. + + + + + Tool for displaying HTML content + including external sources such as + images and other media. + + + + Noticeboard + + + 1 + + + 2 + + + 33 + + + 4 + + + 2 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 8 + + + 8 + + + lantbk11 + + + Notebook + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + tool/lantbk11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 30 + + + + tool/lantbk11/images/icon_notebook.swf + + + + 5 + + + 5 + + + + Notebook for notes and reflections + + + + Notebook Tool + + + Notebook + + + 1 + + + 8 + + + 34 + + + 6 + + + 8 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 6 + + + 6 + + + larsrc11 + + + Share Resources Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + tool/larsrc11/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 29 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + 65 + + + 5 + + + + Uploading your resources to share with + others. + + + + + Sharing resources with others. + + + + Share Resources + + + 2 + + + 6 + + + 35 + + + 4 + + + 6 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 3 + + + 3 + + + laqa11 + + + + Question &amp; Answer Tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + tool/laqa11/authoringStarter.do + + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + -111111 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + 406 + + + 450 + + + + Each learner answers one or more + questions in short answer format and + then sees answers from all learners + collated on the next page. + + + + + Each learner answers question(s) and + then sees answers from all learners + collated on the next page. + + + + Q &amp; A + + + 3 + + + 37 + + + 6 + + + 3 + + + 1 + + + + + -111111 + + + + + + 2 + + + + 2009-12-17T16:17:37+11:0 + + + + + + + + + + + + + -111111 + + + 22 + + + Branch 1 + + + 1 + + + 40 + + + 1 + + + 8 + + + + + 43 + + + + + + 2 + + + + 2009-12-17T16:17:45+11:0 + + + + + + + + + + + + + -111111 + + + 22 + + + Branch 2 + + + 2 + + + 42 + + + 1 + + + 8 + + + + + + + + string_null_value + + + string_null_value + + + 4 + + + 4 + + + lasbmt11 + + + Submit Files Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + tool/lasbmt11/authoring.do + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 42 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + 305 + + + 96 + + + + Learners submit files for assessment by + the teacher. Scores and comments for + each learner are recorded and may be + exported as a spreadsheet. + + + + + Learners submit files for assessment by + the teacher. Scores and comments may be + exported as a spreadsheet. + + + + Submit Files + + + 1 + + + 4 + + + 43 + + + 3 + + + 4 + + + 1 + + + + + + + + string_null_value + + + string_null_value + + + 6 + + + 6 + + + larsrc11 + + + Share Resources Tool + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + tool/larsrc11/authoring/start.do + + + + + + + 2 + + + 2009-12-17T17:7:31+11:0 + + + + + + + + + + + + -111111 + + + 31 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + 8 + + + 57 + + + + Uploading your resources to share with + others. + + + + + Sharing resources with others. + + + + Share Resources + + + 1 + + + 6 + + + 52 + + + 4 + + + 6 + + + 1 + + + + + + 2c94e45c259b0d1401259b0f05ce0004 + + + 2009-12-17T16:19:24+11:0 + + + 5 + + + 52 + + + 0 + + + + + + + + + 5 + + + xxx + + + -111111 + + + 1 + + + + Index: lams_flex/LamsAuthor/src/assets/test/default/storeLearningDesignReturn.xml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/default/storeLearningDesignReturn.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/assets/test/default/storeLearningDesignReturn.xml 12 Jan 2010 01:20:11 -0000 1.1 @@ -0,0 +1,2245 @@ + +
+ + + + storeLearningDesignDetails + + + 3.0 + + + + + + + + 3.0 + + + + + learner.total.score + + + + + 32.0 + + + Assessment + + + 1.0 + + + 1.0 + + + + + + + tool/laasse10/authoring/start.do + + + + + + + + tool/laasse10/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + + Tool for assessing learners + + + + 2.0 + + + + Create questions to assess + learners. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laasse10 + + + + + + + + + + 1.0 + + + 20.0 + + + + tool/laasse10/images/icon_assessment.swf + + + + + tool/laasse10/moderate.do + + + + + tool/laasse10/monitoring/summary.do + + + + + + + + + + + + + + + + 20.0 + + + Assessment + + + 20.0 + + + laasse10 + + + 20090612 + + + 41.0 + + + 51.0 + + + + + 2.0 + + + + + + 33.0 + + + Chat + + + 1.0 + + + 2.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:30+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + 5.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + + + + + + + + + + + + + 5.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 209.0 + + + 47.0 + + + + + 2.0 + + + + + + 34.0 + + + Chat + + + 1.0 + + + 4.0 + + + + + + + tool/lachat11/authoring.do + + + + + + + + tool/lachat11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Chat Tool + + + 2.0 + + + + Syncronous Chat tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lachat11 + + + + + + + + + + 1.0 + + + + tool/lachat11/images/icon_chat.swf + + + + + tool/lachat11/moderate.do + + + + + tool/lachat11/monitoring.do + + + + 1.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 23.0 + + + Chat + + + 5.0 + + + lachat11 + + + 20081125 + + + 8.0 + + + 45.0 + + + + + 2.0 + + + + + + 35.0 + + + Scribe + + + 1.0 + + + 5.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 36.0 + + + 3.0 + + + + + + + + + + + + + + + 24.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 6.0 + + + + + + 37.0 + + + Data Collection + + + 1.0 + + + 6.0 + + + + + + + tool/ladaco10/authoring/start.do + + + + + + + + tool/ladaco10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Collecting data with custom + structure. + + + + 2.0 + + + + Asking questions with custom, + limited answers. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10 + + + + + + + + + + 1.0 + + + 14.0 + + + + tool/ladaco10/images/icon_daco.swf + + + + + tool/ladaco10/moderate.do + + + + + tool/ladaco10/monitoring/summary.do + + + + + + + + + + + + + + + + 14.0 + + + Data Collection + + + 14.0 + + + ladaco10 + + + 20090326 + + + 636.0 + + + 73.0 + + + + + 2.0 + + + + + + 38.0 + + + Forum + + + 1.0 + + + 7.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 19.0 + + + 205.0 + + + + + 2.0 + + + + + + 39.0 + + + Forum + + + 1.0 + + + 9.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 1.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 25.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 45.0 + + + + + 6.0 + + + + + + 43.0 + + + Mindmap + + + 1.0 + + + 12.0 + + + + + + + tool/lamind10/authoring.do + + + + + + + + tool/lamind10/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Mindmap Tool + + + 2.0 + + + + Mindmap for making mindmaps + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamind10 + + + + + + + + + + 1.0 + + + 19.0 + + + + tool/lamind10/images/icon_mindmap.swf + + + + + tool/lamind10/moderate.do + + + + + tool/lamind10/monitoring.do + + + + 1.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 19.0 + + + Mindmap + + + 19.0 + + + lamind10 + + + 20090202 + + + 8.0 + + + 57.0 + + + + + 2.0 + + + + + + 40.0 + + + Scribe + + + 1.0 + + + 10.0 + + + + + + + tool/lascrb11/authoring.do + + + + + + + + tool/lascrb11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Scribe Tool + + + 2.0 + + + + Syncronous Scribe tool + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11 + + + + + + + + + + 1.0 + + + + tool/lascrb11/images/icon_scribe.swf + + + + + tool/lascrb11/moderate.do + + + + + tool/lascrb11/monitoring.do + + + + 2.0 + + + 41.0 + + + 8.0 + + + + + + + + + + + + + + + 26.0 + + + Scribe + + + 10.0 + + + lascrb11 + + + 20090226 + + + 8.0 + + + 108.0 + + + + + 2.0 + + + + + + 44.0 + + + Forum + + + 1.0 + + + 13.0 + + + + + + + tool/lafrum11/authoring.do + + + + + + + + tool/lafrum11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Online threaded discussion tool + (asynchronous). + + + + 2.0 + + + + Discussion tool useful for long + running collaborations and + situations where learners are + not all on line at the same + time. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11 + + + + + + + + + + 1.0 + + + 1.0 + + + + tool/lafrum11/images/icon_forum.swf + + + + + tool/lafrum11/moderate.do + + + + + tool/lafrum11/monitoring.do + + + + 2.0 + + + 42.0 + + + 11.0 + + + + + + + + + + + + + + + 1.0 + + + Forum + + + 1.0 + + + lafrum11 + + + 20081118 + + + 8.0 + + + 117.0 + + + + + 3.0 + + + + learner.mark + + + + 45.0 + + + Multiple Choice + + + 1.0 + + + 20.0 + + + + + + + tool/lamc11/authoringStarter.do + + + + + + + + tool/lamc11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Creates automated assessment + questions. e.g. Multiple choice + and true/false questions. Can + provide feedback and scores. + + + + 2.0 + + + + Learner answers a series of + automated assessment questions. + e.g. Multiple choice and + true/false questions. Optional + features include feedback on + each question and scoring. + Questions are weighted for + scoring. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lamc11 + + + + + + + + + + 1.0 + + + 22.0 + + + + tool/lamc11/images/icon_mcq.swf + + + + + tool/lamc11/monitoringStarter.do + + + + + tool/lamc11/monitoringStarter.do + + + + + + + + + + + + + + + + 22.0 + + + MCQ + + + 22.0 + + + lamc11 + + + 20081127 + + + 552.0 + + + 227.0 + + + + + 4.0 + + + + + + 52.0 + + + Noticeboard + + + 1.0 + + + 33.0 + + + + + + + tool/lanb11/authoring.do + + + + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Tool for displaying HTML content + including external sources such + as images and other media. + + + + 2.0 + + + + Displays formatted text and + links to external sources on a + read only page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lanb11 + + + + + + + + + + 1.0 + + + 2.0 + + + + tool/lanb11/images/icon_htmlnb.swf + + + + + tool/lanb11/monitoring.do + + + + 1.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 2.0 + + + NoticeboardX + + + 2.0 + + + lanb11 + + + 20081209 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 53.0 + + + Notebook + + + 1.0 + + + 34.0 + + + + + + + tool/lantbk11/authoring.do + + + + + + + + tool/lantbk11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + Notebook Tool + + + 2.0 + + + + Notebook for notes and + reflections + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11 + + + + + + + + + + 1.0 + + + 8.0 + + + + tool/lantbk11/images/icon_notebook.swf + + + + + tool/lantbk11/moderate.do + + + + + tool/lantbk11/monitoring.do + + + + 1.0 + + + 49.0 + + + 30.0 + + + + + + + + + + + + + + + 8.0 + + + Notebook + + + 8.0 + + + lantbk11 + + + 20081118 + + + 5.0 + + + 5.0 + + + + + 6.0 + + + + + + 55.0 + + + Q &amp; A + + + 1.0 + + + 37.0 + + + + tool/laqa11/laqa11admin.do + + + + + + + + tool/laqa11/authoringStarter.do + + + + + + + + tool/laqa11/monitoringStarter.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Each learner answers question(s) + and then sees answers from all + learners collated on the next + page. + + + + 2.0 + + + + Each learner answers one or more + questions in short answer format + and then sees answers from all + learners collated on the next + page. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/laqa11 + + + + + + + + + + 1.0 + + + 3.0 + + + + tool/laqa11/images/icon_questionanswer.swf + + + + + tool/laqa11/monitoringStarter.do + + + + + tool/laqa11/monitoringStarter.do + + + + + + + + + + + + + + + + 3.0 + + + Question and Answer + + + 3.0 + + + laqa11 + + + 20081126 + + + 406.0 + + + 450.0 + + + + + 3.0 + + + + + + 58.0 + + + Submit Files + + + 1.0 + + + 43.0 + + + + + + + tool/lasbmt11/authoring.do + + + + + + + + tool/lasbmt11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Learners submit files for + assessment by the teacher. + Scores and comments may be + exported as a spreadsheet. + + + + 2.0 + + + + Learners submit files for + assessment by the teacher. + Scores and comments for each + learner are recorded and may be + exported as a spreadsheet. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11 + + + + + + + + + + 1.0 + + + 4.0 + + + + tool/lasbmt11/images/icon_reportsubmission.swf + + + + + tool/lasbmt11/moderation.do + + + + + tool/lasbmt11/monitoring.do + + + + 1.0 + + + 57.0 + + + 42.0 + + + + + + + + + + + + + + + 4.0 + + + Submit File + + + 4.0 + + + lasbmt11 + + + 20091028 + + + 305.0 + + + 96.0 + + + + + 4.0 + + + + + + 59.0 + + + Share Resources + + + 1.0 + + + 52.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:32+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 1.0 + + + 51.0 + + + 31.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 8.0 + + + 57.0 + + + + + 4.0 + + + + + + 54.0 + + + Share Resources + + + 1.0 + + + 35.0 + + + + + + + tool/larsrc11/authoring/start.do + + + + + + + + tool/larsrc11/contribute.do + + + + + 2009-12-17T16:23:31+10:0 + + + + + + + + Sharing resources with others. + + + + 2.0 + + + + Uploading your resources to + share with others. + + + + + http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11 + + + + + + + + + + 1.0 + + + 6.0 + + + + tool/larsrc11/images/icon_rsrc.swf + + + + + tool/larsrc11/moderate.do + + + + + tool/larsrc11/monitoring/summary.do + + + + 2.0 + + + 48.0 + + + 29.0 + + + + + + + + + + + + + + + 6.0 + + + Shared Resources + + + 6.0 + + + larsrc11 + + + 20090115 + + + 65.0 + + + 5.0 + + + + + + 1.0 + + + + + + + + + \ No newline at end of file Index: lams_flex/LamsAuthor/src/assets/test/default/tool_image.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/default/tool_image.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_assessment.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_assessment.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_chat.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_chat.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_chat_and_scribe_notebook.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_chat_and_scribe_notebook.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_daco.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_daco.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_dimdim.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_dimdim.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_forum.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_forum.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_forum_and_scribe.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_forum_and_scribe.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_gmap.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_gmap.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_groupreporting.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_groupreporting.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_htmlnb.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_htmlnb.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_imageGallery.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_imageGallery.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_mcq.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_mcq.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_mindmap.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_mindmap.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_notebook.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_notebook.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_noticeboard.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_noticeboard.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_pixlr.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_pixlr.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_questionanswer.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_questionanswer.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_ranking.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_ranking.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_reportsubmission.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_reportsubmission.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_rsrc.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_rsrc.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_scribe.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_scribe.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_spreadsheet.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_spreadsheet.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_survey.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_survey.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_taskList.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_taskList.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_urlcontentmessageboard.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_urlcontentmessageboard.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_videoRecorder.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_videoRecorder.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/assets/test/toolimages/icon_wiki.swf =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/assets/test/toolimages/icon_wiki.swf,v diff -u Binary files differ Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/CanvasArea.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/CanvasArea.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/CanvasArea.mxml 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,137 @@ + + + + + "; + } + } + + // The dragEnter event handler for the Canvas container + // enables dropping. + private function dragEnterHandler(event:DragEvent):void { + if (event.dragSource.hasFormat("img")) + { + DragManager.acceptDragDrop(Canvas(event.currentTarget)); + } + } + + // The dragDrop event handler for the Canvas container + // sets the Image control's position by + // "dropping" it in its new location. + private function dragDropHandler(event:DragEvent):void { + + var image:Image; + + if (event.dragInitiator is ActivityComponent) { + var activityComponent:ActivityComponent; + activityComponent = event.dragInitiator as ActivityComponent; + activityComponent.x = UIComponent(event.currentTarget).mouseX - 10; + activityComponent.y = UIComponent(event.currentTarget).mouseY - 10; + } else { + var learningLibraryComponent:LearningLibraryEntryComponent = event.dragInitiator as LearningLibraryEntryComponent; + + if (learningLibraryComponent.learningLibraryEntry.isCombined) { + var combinedActivityComponent:CombinedActivityComponent = new CombinedActivityComponent(); + combinedActivityComponent.learningLibraryEntry = learningLibraryComponent.learningLibraryEntry; + combinedActivityComponent.load() + combinedActivityComponent.x = UIComponent(event.currentTarget).mouseX; + combinedActivityComponent.y = UIComponent(event.currentTarget).mouseY; + canvasBox.addChild(combinedActivityComponent); + } else { + var toolActivityComponent:ToolActivityComponent = new ToolActivityComponent(); + toolActivityComponent.tool = learningLibraryComponent.learningLibraryEntry.toolTemplates[0]; + toolActivityComponent.load() + toolActivityComponent.x = UIComponent(event.currentTarget).mouseX; + toolActivityComponent.y = UIComponent(event.currentTarget).mouseY; + canvasBox.addChild(toolActivityComponent); + } + } + } + ]]> + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/ControlPanel.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/ControlPanel.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/ControlPanel.mxml 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,7 @@ + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/LearningLibrary.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/LearningLibrary.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/LearningLibrary.mxml 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/LearningLibrary2.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/Attic/LearningLibrary2.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/LearningLibrary2.mxml 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/ActivityComponent.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/Attic/ActivityComponent.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/ActivityComponent.as 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,39 @@ +package org.lamsfoundation.lams.author.components.activity +{ + import flash.events.MouseEvent; + + import mx.containers.VBox; + import mx.controls.Label; + import mx.core.DragSource; + import mx.managers.DragManager; + + public class ActivityComponent extends VBox + { + public var xpos:int; + public var ypos:int; + public var title:Label; + + public function ActivityComponent() { + + } + + // The mouseMove event handler for the Image control + // initiates the drag-and-drop operation. + public function mouseMoveHandler(event:MouseEvent):void + { + var activityComponent:ActivityComponent = event.currentTarget as ActivityComponent; + var ds:DragSource = new DragSource(); + ds.addData(activityComponent, "img"); + + DragManager.doDrag(activityComponent, ds, event); + + } + + public function load():void { + + } + + } + + +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/CombinedActivityComponent.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/CombinedActivityComponent.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/CombinedActivityComponent.mxml 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,69 @@ + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/LearningLibraryEntryComponent.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/Attic/LearningLibraryEntryComponent.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/LearningLibraryEntryComponent.mxml 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,61 @@ + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/LearningLibraryEntryComponent2.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/Attic/LearningLibraryEntryComponent2.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/LearningLibraryEntryComponent2.mxml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,107 @@ + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/ToolActivityComponent.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/ToolActivityComponent.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/components/activity/ToolActivityComponent.mxml 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,66 @@ + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/controller/AuthorController.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/controller/AuthorController.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/controller/AuthorController.as 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,37 @@ +package org.lamsfoundation.lams.author.controller +{ + import flash.utils.Dictionary; + import mx.collections.ArrayCollection; + import mx.core.Application; + + import org.lamsfoundation.lams.author.model.learninglibrary.LearningLibraryEntry; + + public class AuthorController + { + + public function AuthorController() + { + } + + + public function setLearningLibrary(learningLibraryIn:ArrayCollection):void { + + var learningLibrary:Dictionary = new Dictionary(); + + for each(var learningLibraryEntryObj:Object in learningLibraryIn) { + var learningLibraryEntry:LearningLibraryEntry = new LearningLibraryEntry(learningLibraryEntryObj); + learningLibrary[learningLibraryEntry.learningLibraryID] = learningLibraryEntry; + + } + + + // Set the application learning library + Application.application.learningLibrary = learningLibrary; + Application.application.canvasArea.compLearningLibrary.loadLearningLibrary(); + Application.application.canvasArea.compLearningLibrary2.loadLearningLibrary(); + + } + + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/events/AuthorEvent.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/events/AuthorEvent.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/events/AuthorEvent.as 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,15 @@ +package org.lamsfoundation.lams.author.events +{ + import flash.events.Event; + + public class AuthorEvent extends Event + { + public static const INIT_DATA_EVENT:String = "initDataEvent"; + + public function AuthorEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) + { + super(type, bubbles, cancelable); + } + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/maps/MainEventMap.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/maps/MainEventMap.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/maps/MainEventMap.mxml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/maps/ModelMap.mxml =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/maps/ModelMap.mxml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/maps/ModelMap.mxml 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/Activity.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/Attic/Activity.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/Activity.as 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,77 @@ +package org.lamsfoundation.lams.author.model +{ + public class Activity + { + // Activity types + public static var TOOL_ACTIVITY_TYPE:Number = 1; + public static var GROUPING_ACTIVITY_TYPE:Number = 2; + public static var NO_GATE_ACTIVITY_TYPE:Number = 30 + public static var SYNCH_GATE_ACTIVITY_TYPE:Number = 3; + public static var SCHEDULE_GATE_ACTIVITY_TYPE:Number = 4; + public static var PERMISSION_GATE_ACTIVITY_TYPE:Number = 5; + public static var PARALLEL_ACTIVITY_TYPE:Number = 6; + public static var OPTIONAL_ACTIVITY_TYPE:Number = 7; + public static var SEQUENCE_ACTIVITY_TYPE:Number = 8; + public static var SYSTEM_GATE_ACTIVITY_TYPE:Number = 9; + public static var CHOSEN_BRANCHING_ACTIVITY_TYPE:Number = 10; + public static var GROUP_BRANCHING_ACTIVITY_TYPE:Number = 11; + public static var TOOL_BRANCHING_ACTIVITY_TYPE:Number = 12; + public static var OPTIONS_WITH_SEQUENCES_TYPE:Number = 13; + public static var CONDITION_GATE_ACTIVITY_TYPE:Number = 14; + public static var REFERENCE_ACTIVITY_TYPE:Number = 15; + + // Activity categories + public static var CATEGORYSYSTEM:Number = 1; + public static var CATEGORYCOLLABORATION:Number = 2; + public static var CATEGORYASSESSMENT:Number = 3; + public static var CATEGORYCONTENT:Number = 4; + public static var CATEGORYSPLIT:Number = 5; + + // Grouping support types + public static var GROUPINGSUPPORTNONE:Number = 1; + public static var GROUPINGSUPPORTOPTIONAL:Number = 2; + public static var GROUPINGSUPPORTREQUIRED:Number = 3; + + // Activity Properties + public var activityID:Number; + public var activityUIID:Number; + public var activityCategoryID:Number; + public var activityTypeID:Number; + public var learningLibraryID:Number; + public var learningDesignID:Number; + public var parentActivityID:Number; + public var parentUIID:Number; + public var orderID:Number; + public var groupingID:Number; + public var groupingUIID:Number; + public var title:String; + public var description:String; + public var helpText:String; + public var xCoord:Number; + public var yCoord:Number; + public var libraryActivityUIImage:String; // Possibly not needed because of Tool object + public var createDateTime:Date; + public var groupingSupportType:Number; // Possibly not needed because of Tool object + + // Activity state + public var runOffline:Boolean; + public var applyGrouping:Boolean; + public var stopAfterActivity:Boolean; + public var readOnly:Boolean; + public var defineLater:Boolean; + public var isActivitySelected:String // Not found in wddx xml + + + // Not found in wddx xml + public var objectType:String; + public var libraryActivityID:Number; + public var activityToolContentID:Number; + public var viewID:Boolean; + //public var branchView:CanvasBranchView; + public var i18nActivityTypeString:String; + + function Activity(activityUIID:Number){ + } + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/ActivityContainer.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/Attic/ActivityContainer.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/ActivityContainer.as 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,12 @@ +package org.lamsfoundation.lams.author.model +{ + public class ActivityContainer extends Activity + { + private activities + + public function ActivityContainer() + { + } + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/ComplexActivity.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/Attic/ComplexActivity.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/ComplexActivity.as 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,22 @@ +package org.lamsfoundation.lams.author.model.LearningLibrary +{ + class ComplexActivity extends Activity { + + private var maxOptions:Number; + private var minOptions:Number; + + //For Reference Activities + private var minActivities:Number; + private var maxActivities:Number; + + private var optionsInstructions:String; + + private var firstActivityUIID:Number; + + private var noSequences:Number; + + function ComplexActivity(){ + } + } +} + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/LearningDesign.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/LearningDesign.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/LearningDesign.as 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,67 @@ +package org.lamsfoundation.lams.author.model +{ + public class LearningDesign + { + public static var COPY_TYPE_ID_AUTHORING:Number = 1; + public static var COPY_TYPE_ID_RUN:Number = 2; + public static var COPY_TYPE_ID_PREVIEW:Number = 3; + + // Learning design properties + private var learningDesignID:Number; + private var title:String; + private var contentFolderID:String; + private var userID:Number; + private var workspaceFolderID:Number; + private var lastModifiedDateTime:Date; + private var designVersion:Number; + + private var copyTypeID:Number; + private var version:String; + private var designVersion:Number; + private var createDateTime:Date; + private var lastModifiedDateTime:Date; + + // Learning Design state + private var readOnly:Boolean; + private var editOverrideLock:Boolean + private var maxID:Number; + private var validDesign:Boolean; + private var saveMode:Number; // Not found in wddx xml + private var autoSaved:Boolean; // Not found in wddx xml + private var modified:Boolean; // Not found in wddx xml + + // First activity + private var firstActivityID:Number; + private var firstActivityUIID:Number; + + // Floating activity + private var floatingActivityUIID:Number; + private var floatingActivityID:Number; + + // Collections + private var branchMappings:Hashtable; + private var competences:Hashtable; + private var groupings:Hashtable; + private var activities:Hashtable; + private var transitions:Hashtable; + private var outputConditions:Hashtable; // Not obvious in wddx xml + private var branches:Hashtable; // Not obvious in wddx xml + + // Not found in wddx xml + private var objectType:String; + private var prevLearningDesignID:Number; + private var helpText:String; + private var editOverrideUserID:Number; + private var editOverrideUserFullName:String; + private var duration:Number; + private var parentLearningDesignID:Number; + private var licenseID:Number; + private var licenseText:String; + private var dateReadOnly:Date; + + public function LearningDesign() + { + } + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/ToolActivity.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/Attic/ToolActivity.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/ToolActivity.as 12 Jan 2010 01:19:30 -0000 1.1 @@ -0,0 +1,20 @@ + +package org.lamsfoundation.lams.author.model +{ + class ToolActivity extends Activity { + private var toolID:Number; + private var toolContentID:Number; //generated by the LAMS server, has to do a round trip to populate them + private var gradebookToolOutputDefinitionName:String; + + private var activityEvaluations:ArrayCollection; + private var competenceMappings:ArrayCollection; // competences to which this activity is mapped + + private var useDefaultToolOutput:Boolean; + + function ToolActivity(){ + } + + + } +} + Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/learninglibrary/LearningLibraryEntry.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/learninglibrary/LearningLibraryEntry.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/learninglibrary/LearningLibraryEntry.as 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,59 @@ +package org.lamsfoundation.lams.author.model.learninglibrary +{ + import mx.collections.ArrayCollection; + import mx.core.Application; + + public class LearningLibraryEntry + { + public var learningLibraryID:int; + public var title:String; + public var validFlag:Boolean; + public var toolTemplates:ArrayCollection; + public var category:int; + public var icon:String; + + // For combined tools + public var isCombined:Boolean; + public var subIcon1:String; + public var subIcon2:String; + public var subTitle1:String; + public var subTitle2:String; + + public function LearningLibraryEntry(dto:Object) + { + this.learningLibraryID = parseInt(dto.learningLibraryID); + this.title = dto.title; + this.validFlag = Boolean(dto.validFlag); + toolTemplates = new ArrayCollection(); + + for each(var toolDTO:Object in dto.templateActivities) { + var tool:Tool = new Tool(toolDTO, learningLibraryID); + this.category = tool.activityCategoryID; + toolTemplates.addItem(tool); + } + + if (toolTemplates.getItemAt(0) != null){ + this.title = toolTemplates.getItemAt(0).toolName; + this.icon = toolTemplates.getItemAt(0).libraryActivityUIImage; + } + + if (toolTemplates.length == 3) { + this.subIcon1 = toolTemplates.getItemAt(1).libraryActivityUIImage; + this.subIcon2 = toolTemplates.getItemAt(2).libraryActivityUIImage; + + this.subTitle1 = toolTemplates.getItemAt(1).toolName; + this.subTitle2 = toolTemplates.getItemAt(2).toolName; + + if (Application.application.TESTING && Application.application.TESTING_LOCAL) { + subIcon1 = "assets/test/toolimages" + subIcon1.substring(subIcon1.lastIndexOf("/")); + subIcon2 = "assets/test/toolimages" + subIcon2.substring(subIcon2.lastIndexOf("/")); + } else { + subIcon1 = Application.application.lamsURL + subIcon1; + subIcon2 = Application.application.lamsURL + subIcon2; + } + this.isCombined = true; + } + } + + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/learninglibrary/Tool.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/learninglibrary/Tool.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/model/learninglibrary/Tool.as 12 Jan 2010 01:20:21 -0000 1.1 @@ -0,0 +1,79 @@ +package org.lamsfoundation.lams.author.model.learninglibrary +{ + import mx.collections.ArrayCollection; + import mx.core.Application; + + + /** + * This class contains the information for each tool so it doesnt need to be stored + * inside the ToolActivity class for each activity. + * + * This information will be held in one global hashmap with the tool id as a key, + * and each tool activity will have a reference to it via the id. + * + */ + public class Tool + { + public var toolID:int; + public var toolName:String; + public var toolDisplayName:String; + public var toolSignature:String; + public var activityCategoryID:int; + public var description:String; + public var authoringURL:String; + public var monitoringURL:String; + public var contributeURL:String; + public var helpURL:String; + public var supportsContribute:Boolean; + public var supportsDefineLater:Boolean; + public var supportsModeration:Boolean; + public var supportsRunOffline:Boolean; + public var supportsOutputs:Boolean; + public var valid:Boolean; + public var groupingSupportType:int; + public var libraryActivityUIImage:String; + public var toolOutputDefinitions:ArrayCollection; + + // For tool adapter tools + public var mappedServers:ArrayCollection; // List of allowable servers to show this tool for + public var extLmsId:String; // External LMS id for tool adapter tools + + // Convenience property + public var learningLibraryID:int; + + public function Tool(dto:Object, learningLibraryIDIn:int) + { + this.toolID = parseInt(dto.toolID); + this.toolName = dto.activityTitle; + this.toolDisplayName = dto.toolDisplayName; + this.toolSignature = dto.toolSignature; + this.activityCategoryID = parseInt(dto.activityCategoryID); + this.description = dto.description; + this.authoringURL = dto.authoringURL; + this.monitoringURL = dto.monitoringURL; + this.contributeURL = dto.contributeURL; + this.helpURL = dto.helpURL; + this.supportsContribute = Boolean(dto.supporstBoolean); + this.supportsDefineLater = Boolean(dto.supportsDefineLater); + this.supportsModeration = Boolean(dto.supportsModeration); + this.supportsRunOffline = Boolean(dto.supportsRunOffline); + this.supportsOutputs = Boolean(dto.supportsOutputs); + this.valid = Boolean(dto.valid); + this.groupingSupportType = parseInt(dto.groupingSupportType); + this.libraryActivityUIImage = dto.libraryActivityUIImage; + + toolOutputDefinitions = new ArrayCollection(); + + mappedServers = dto.mappedServers; + this.extLmsId = dto.extLmsId; + + this.learningLibraryID = learningLibraryIDIn; + + if (Application.application.TESTING && Application.application.TESTING_LOCAL) { + libraryActivityUIImage = "assets/test/toolimages" + libraryActivityUIImage.substring(libraryActivityUIImage.lastIndexOf("/")); + } else { + libraryActivityUIImage = Application.application.lamsURL + libraryActivityUIImage; + } + } + } +} \ No newline at end of file Index: lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/util/Constants.as =================================================================== RCS file: /usr/local/cvsroot/lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/util/Constants.as,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_flex/LamsAuthor/src/org/lamsfoundation/lams/author/util/Constants.as 12 Jan 2010 01:20:22 -0000 1.1 @@ -0,0 +1,17 @@ +package org.lamsfoundation.lams.author.util +{ + public class Constants + { + + public function Constants(){} + + public static const TOOL_CATEGORY_SYSTEM:int = 1; + public static const TOOL_CATEGORY_COLLABORATIVE:int = 2; + public static const TOOL_CATEGORY_ASSESSMENT:int = 3; + public static const TOOL_CATEGORY_INFORMATIVE:int = 4; + public static const TOOL_CATEGORY_SPLIT:int = 5; + public static const TOOL_CATEGORY_REFLECTIVE:int = 6; + + + } +} \ No newline at end of file