skala
Juan Carlos Raña 16 years ago
commit 0a914619ea
  1. 67
      main/exercice/exercice_submit.php
  2. 9
      main/exercice/exercise.class.php
  3. 74
      main/exercice/exercise_result.php
  4. 2
      main/exercice/exercise_show.php
  5. 42
      main/inc/lib/events.lib.inc.php
  6. 6
      main/lang/english/admin.inc.php
  7. 1
      main/lang/english/create_course.inc.php
  8. 1
      main/lang/english/index.inc.php
  9. 6
      main/lang/english/trad4all.inc.php
  10. 39
      main/lang/english/userInfo.inc.php
  11. 4
      main/lang/english/work.inc.php
  12. 53
      main/lang/french/admin.inc.php
  13. 4
      main/lang/french/course_home.inc.php
  14. 2
      main/lang/french/create_course.inc.php
  15. 5
      main/lang/french/exercice.inc.php
  16. 2
      main/lang/french/glossary.inc.php
  17. 3
      main/lang/french/gradebook.inc.php
  18. 4
      main/lang/french/index.inc.php
  19. 1
      main/lang/french/registration.inc.php
  20. 2
      main/lang/french/slideshow.inc.php
  21. 2
      main/lang/french/tracking.inc.php
  22. 10
      main/lang/french/trad4all.inc.php
  23. 83
      main/lang/french/userInfo.inc.php
  24. 4
      main/lang/french/work.inc.php
  25. 4
      main/lang/italian/admin.inc.php
  26. 1
      main/lang/italian/create_course.inc.php
  27. 4
      main/lang/italian/index.inc.php
  28. 60
      main/lang/italian/userInfo.inc.php
  29. 1
      main/lang/serbian/admin.inc.php
  30. 1
      main/lang/serbian/index.inc.php
  31. 1
      main/lang/serbian/link.inc.php
  32. 5
      main/lang/serbian/work.inc.php
  33. 4
      main/lang/spanish/admin.inc.php
  34. 1
      main/lang/spanish/create_course.inc.php
  35. 1
      main/lang/spanish/index.inc.php
  36. 1
      main/lang/spanish/userInfo.inc.php
  37. 1
      main/lang/spanish_latin/userInfo.inc.php

@ -278,7 +278,7 @@ if ($exercise_row['expired_time'] != 0) { //Sends the exercice form when the exp
</script>";
}
if ($_configuration['live_exercise_tracking'] == true && $exerciseType == 2 && $exerciseFeedbackType != 1) {
if ($_configuration['live_exercise_tracking'] == true && $exerciseType == ONE_PER_PAGE && $exerciseFeedbackType != EXERCISE_FEEDBACK_TYPE_DIRECT) {
$query = 'SELECT * FROM ' . $stat_table . $condition;
$result_select = Database::query($query, __FILE__, __LINE__);
if (Database :: num_rows($result_select) > 0) {
@ -293,7 +293,7 @@ if ($_configuration['live_exercise_tracking'] == true && $exerciseType == 2 && $
$recorded['exerciseResult'][$row['question_id']] = 1;
}
$exerciseResult = $_SESSION['exerciseResult'] = $recorded['exerciseResult'];
$exerciseType = 2;
$exerciseType = ONE_PER_PAGE;
$questionNum = count($recorded['exerciseResult']);
$questionNum++;
$questionList = $_SESSION['questionList'] = $recorded['questionList'];
@ -328,8 +328,7 @@ if ($formSent) {
echo str_repeat('&nbsp;', 0) . '$choice is an array' . "<br />\n";
}
if ($exerciseType == 1)
{
if ($exerciseType == ALL_ON_ONE_PAGE) {
// $exerciseResult receives the content of the form.
// Each choice of the student is stored into the array $choice
$exerciseResult = $choice;
@ -351,7 +350,7 @@ if ($formSent) {
$exerciseResult[$key] = $choice[$key];
//saving each question
if ($_configuration['live_exercise_tracking'] == true && $exerciseType == 2 && $exerciseFeedbackType != 1) {
if ($_configuration['live_exercise_tracking'] == true && $exerciseType == ONE_PER_PAGE && $exerciseFeedbackType != EXERCISE_FEEDBACK_TYPE_DIRECT) {
$nro_question = $questionNum; // - 1;
@ -402,29 +401,23 @@ if ($formSent) {
$answerComment = $objAnswerTmp->selectComment($answerId);
$answerCorrect = $objAnswerTmp->isCorrect($answerId);
$answerWeighting = $objAnswerTmp->selectWeighting($answerId);
$numAnswer=$objAnswerTmp->selectAutoId($answerId);
switch ($answerType) {
// for unique answer
case UNIQUE_ANSWER :
$studentChoice = ($choice == $answerId) ? 1 : 0;
$studentChoice=($choice == $numAnswer)?1:0;
if ($studentChoice) {
$questionScore += $answerWeighting;
$totalScore += $answerWeighting;
$questionScore+=$answerWeighting;
$totalScore+=$answerWeighting;
}
break;
// for multiple answers
case MULTIPLE_ANSWER :
$studentChoice = $choice[$answerId];
$studentChoice=$choice[$numAnswer];
if ($studentChoice) {
$questionScore += $answerWeighting;
$totalScore += $answerWeighting;
}
break;
$questionScore+=$answerWeighting;
$totalScore+=$answerWeighting;
} break;
// for fill in the blanks
case FILL_IN_BLANKS :
@ -578,7 +571,6 @@ if ($formSent) {
case MATCHING :
$numAnswer=$objAnswerTmp->selectAutoId($answerId);
if ($answerCorrect) {
if ($answerCorrect == $choice[$numAnswer]) {
$questionScore+=$answerWeighting;
@ -590,7 +582,6 @@ if ($formSent) {
// for hotspot with no order
case HOT_SPOT :
$studentChoice = $choice[$answerId];
if ($studentChoice) {
$questionScore += $answerWeighting;
$totalScore += $answerWeighting;
@ -639,7 +630,7 @@ if ($formSent) {
}
elseif ($answerType == MATCHING) {
foreach ($matching as $j => $val) {
foreach ($matching as $j => $val) {
exercise_attempt($questionScore, $val, $quesId, $exeId, $j);
}
@ -652,7 +643,7 @@ if ($formSent) {
} elseif ($answerType == HOT_SPOT) {
exercise_attempt($questionScore, $answer, $quesId, $exeId, 0);
if (is_array($exerciseResultCoordinates[$key])) {
foreach($exerciseResultCoordinates[$key] as $idx => $val) {
foreach($exerciseResultCoordinates[$key] as $idx => $val) {
exercise_attempt_hotspot($exeId,$quesId,$idx,$choice[$idx],$val);
}
}
@ -662,9 +653,8 @@ if ($formSent) {
}
}
// end huge foreach() block that loops over all questions
//at loops over all questions
if (isset($exe_id)) {
if (isset($exe_id)) {
$sql_update = 'UPDATE ' . $stat_table . ' SET exe_result = exe_result + ' . (int) $totalScore . ',exe_weighting = exe_weighting + ' . (int) $totalWeighting . ' WHERE exe_id = ' . Database::escape_string($exe_id);
Database::query($sql_update, __FILE__, __LINE__);
}
@ -683,9 +673,7 @@ if ($formSent) {
// the script "exercise_result.php" will take the variable $exerciseResult from the session
api_session_register('exerciseResult');
api_session_register('exerciseResultCoordinates');
define('ALL_ON_ONE_PAGE',1);
define('ONE_PER_PAGE',2);
// if all questions on one page OR if it is the last question (only for an exercise with one question per page)
if ($exerciseType == ALL_ON_ONE_PAGE || $questionNum >= $nbrQuestions) {
@ -696,7 +684,7 @@ if ($formSent) {
if ( api_is_allowed_to_session_edit() ) {
// goes to the script that will show the result of the exercise
if ($exerciseType == ALL_ON_ONE_PAGE) {
header("Location: exercise_result.php?id=$exe_id&exerciseType=$exerciseType&origin=$origin&learnpath_id=$learnpath_id&learnpath_item_id=$learnpath_item_id");
header("Location: exercise_result.php?exerciseType=$exerciseType&origin=$origin&learnpath_id=$learnpath_id&learnpath_item_id=$learnpath_item_id");
} else {
if ($exe_id != '') {
//Verify if the current test is fraudulent
@ -1074,7 +1062,7 @@ if (!empty ($error)) {
$i++;
$objQuestionTmp = Question :: read($questionId);
// for sequential exercises
if ($exerciseType == 2) {
if ($exerciseType == ONE_PER_PAGE) {
// if it is not the right question, goes to the next loop iteration
if ($questionNum != $i) {
continue;
@ -1097,7 +1085,7 @@ if (!empty ($error)) {
}
$s = "<p>$exerciseDescription</p>";
if ($exerciseType == 2)
if ($exerciseType == ONE_PER_PAGE)
{
$s2 = "&exerciseId=" . $exerciseId;
}
@ -1120,13 +1108,13 @@ if (!empty ($error)) {
$i = 1;
foreach ($questionList as $questionId) {
// for sequential exercises
if ($exerciseType == 2) {
if ($exerciseType == ONE_PER_PAGE) {
// if it is not the right question, goes to the next loop iteration
if ($questionNum != $i) {
$i++;
continue;
} else {
if ($exerciseFeedbackType != 1) {
if ($exerciseFeedbackType != EXERCISE_FEEDBACK_TYPE_DIRECT) {
// if the user has already answered this question
if (isset ($exerciseResult[$questionId])) {
// construction of the Question object
@ -1146,7 +1134,7 @@ if (!empty ($error)) {
showQuestion($questionId, false, $origin, $i, $nbrQuestions);
$i++;
// for sequential exercises
if ($exerciseType == 2) {
if ($exerciseType == ONE_PER_PAGE) {
// quits the loop
break;
}
@ -1171,7 +1159,7 @@ if (!empty ($error)) {
} else {
if (api_is_allowed_to_session_edit() ) {
if ($exerciseType == 1 || $nbrQuestions == $questionNum) {
if ($exerciseType == ALL_ON_ONE_PAGE || $nbrQuestions == $questionNum) {
$submit_btn .= get_lang('ValidateAnswer');
$name_btn = get_lang('ValidateAnswer');
} else {
@ -1198,8 +1186,8 @@ if (!empty ($error)) {
}
echo '</div>';
if ($_configuration['live_exercise_tracking'] == true && $exerciseFeedbackType != 1) {
//if($questionNum < 2){
if ($_configuration['live_exercise_tracking'] == true && $exerciseFeedbackType != EXERCISE_FEEDBACK_TYPE_DIRECT) {
if ($table_recorded_not_exist) { //$table_recorded_not_exist
if ($exercise_row['expired_time'] != 0) {
$sql_fields = "expired_time_control, ";
@ -1209,15 +1197,14 @@ if ($_configuration['live_exercise_tracking'] == true && $exerciseFeedbackType !
$sql_fields_values = "";
}
if ($exerciseType == 2) {
if ($exerciseType == ONE_PER_PAGE) {
$sql = "INSERT INTO $stat_table($sql_fields exe_exo_id,exe_user_id,exe_cours_id,status,session_id,data_tracking,start_date,orig_lp_id,orig_lp_item_id)
VALUES($sql_fields_values '$exerciseId','" . api_get_user_id() . "','" . $_course['id'] . "','incomplete','" . api_get_session_id() . "','" . implode(',', $questionList) . "','" . date('Y-m-d H:i:s') . "',$safe_lp_id,$safe_lp_item_id)";
Database::query($sql, __FILE__, __LINE__);
} else {
$sql = "INSERT INTO $stat_table ($sql_fields exe_exo_id,exe_user_id,exe_cours_id,status,session_id,start_date,orig_lp_id,orig_lp_item_id)
echo $sql = "INSERT INTO $stat_table ($sql_fields exe_exo_id,exe_user_id,exe_cours_id,status,session_id,start_date,orig_lp_id,orig_lp_item_id)
VALUES($sql_fields_values '$exerciseId','" . api_get_user_id() . "','" . $_course['id'] . "','incomplete','" . api_get_session_id() . "','" . date('Y-m-d H:i:s') . "',$safe_lp_id,$safe_lp_item_id)";
Database::query($sql, __FILE__, __LINE__);
}

@ -8,6 +8,11 @@
* @version $Id: exercise.class.php 22046 2009-07-14 01:45:19Z ivantcholakov $
*/
define('ALL_ON_ONE_PAGE',1);
define('ONE_PER_PAGE',2);
define('EXERCISE_FEEDBACK_TYPE_END',0);
define('EXERCISE_FEEDBACK_TYPE_DIRECT',1);
define('EXERCISE_FEEDBACK_TYPE_EXAM',2);
if(!class_exists('Exercise')):
@ -238,7 +243,7 @@ class Exercise
/**
* returns random answers status.
*
* @author - Juan Carlos Raña
* @author - Juan Carlos Ra<EFBFBD>a
*/
function selectRandomAnswers()
{
@ -483,7 +488,7 @@ class Exercise
/**
* sets to 0 if answers are not selected randomly
* if answers are selected randomly
* @author - Juan Carlos Raña
* @author - Juan Carlos Ra<EFBFBD>a
* @param - integer $random_answers - random answers
*/
function updateRandomAnswers($random_answers)

@ -158,7 +158,7 @@ $exerciseTitle=$objExercise->selectTitle();
$exerciseDescription=$objExercise->selectDescription();
$gradebook = '';
if (isset($_SESSION['gradebook'])){
if (isset($_SESSION['gradebook'])) {
$gradebook= $_SESSION['gradebook'];
}
@ -594,6 +594,7 @@ foreach ($questionList as $questionId) {
}
// construction of the Answer object
$user_answer = '';
$objAnswerTmp=new Answer($questionId);
$nbrAnswers=$objAnswerTmp->selectNbrAnswers();
$questionScore=0;
@ -601,6 +602,14 @@ foreach ($questionList as $questionId) {
$nbrAnswers = 1;
}
// get answer list for matching
$sql_answer = 'SELECT id, answer FROM '.$table_ans.' WHERE question_id="'.Database::escape_string($questionId).'" ';
$res_answer = Database::query($sql_answer, __FILE__, __LINE__);
$answer_matching =array();
while ($real_answer = Database::fetch_array($res_answer)) {
$answer_matching[$real_answer['id']]= $real_answer['answer'];
}
// We're inside *one* question. Go through each possible answer for this question
for ($answerId=1;$answerId <= $nbrAnswers;$answerId++) {
@ -725,8 +734,7 @@ foreach ($questionList as $questionId) {
$chosen_list=array();
for($i=0;$i<count($real_correct_tags);$i++) {
if ($i==0)
{
if ($i==0) {
$answer.=$real_text[0];
}
@ -796,20 +804,17 @@ foreach ($questionList as $questionId) {
break;
// for matching TODO: replace $answerId id by $numAnswer
// for matching
case MATCHING :
if ($answerCorrect) {
if ($answerCorrect == $choice[$numAnswer]) {
if ($answerCorrect) {
if ($answerCorrect == $choice[$numAnswer]) {
$questionScore+=$answerWeighting;
$totalScore+=$answerWeighting;
$choice[$numAnswer]=$matching[$choice[$numAnswer]];
} elseif(!$choice[$numAnswer]) {
$choice[$numAnswer]='&nbsp;&nbsp;&nbsp;';
$totalScore+=$answerWeighting;
$user_answer = '<span>'.$answer_matching[$choice[$numAnswer]].'</span>';
} else {
$choice[$numAnswer]='<font color="red"><s>'.$matching[$choice[$numAnswer]].'</s></font>';
}
} else {
$matching[$answerId]=$answer;
$user_answer = '<span style="color: #FF0000; text-decoration: line-through;">'.$answer_matching[$choice[$numAnswer]].'</span>';
}
$matching[$numAnswer] = $choice[$numAnswer];
}
break;
// for hotspot with no order
@ -898,24 +903,12 @@ foreach ($questionList as $questionId) {
{
display_hotspot_order_answer($answerId, $answer, $studentChoice, $answerComment);
}
else
elseif($answerType==MATCHING)
{
if ($origin != 'learnpath') {
?>
<tr>
<td width="50%">
<?php
$answer=api_parse_tex($answer);
echo $answer; ?>
</td>
<td width="50%">
<?php echo $choice[$numAnswer]; ?> / <font color="green"><b>
<?php
$matching[$answerCorrect]=api_parse_tex($matching[$answerCorrect]);
echo $matching[$answerCorrect]; ?></b></font>
</td>
</tr>
<?php
echo '<tr>';
echo '<td>'.api_parse_tex($answer_matching[$answerId]).'</td><td>'.api_parse_tex($user_answer).' / <b><span style="color: #008000;">'.api_parse_tex($answer_matching[$answerCorrect]).'</span></b></td>';
echo '</tr>';
}
}
}
@ -978,21 +971,9 @@ foreach ($questionList as $questionId) {
} else {
exercise_attempt($questionScore, 0 ,$quesId,$exeId,0);
}
} elseif ($answerType==MATCHING) {
$j=sizeof($matching)+1;
for ($i=0;$i<sizeof($choice);$i++,$j++) {
$val = $choice[$j];
if (preg_match_all ('#<font color="red"><s>([0-9a-z ]*)</s></font>#', $val, $arr1))
$val = $arr1[1][0];
$val=strip_tags($val);
$sql = "SELECT position from $table_ans where question_id='".Database::escape_string($questionId)."' and answer='".Database::escape_string($val)."' AND correct=0";
$res = Database::query($sql, __FILE__, __LINE__);
if (Database::num_rows($res)>0) {
$answer = Database::result($res,0,"position");
} else {
$answer = 0;
}
exercise_attempt($questionScore,$answer,$quesId,$exeId,$j);
} elseif ($answerType==MATCHING) {
foreach ($matching as $j => $val) {
exercise_attempt($questionScore, $val, $quesId, $exeId, $j);
}
}
elseif ($answerType==FREE_ANSWER) {
@ -1063,8 +1044,9 @@ if ($_configuration['tracking_enabled']) {
$safe_lp_id = $learnpath_id==''?0:(int)$learnpath_id;
$safe_lp_item_id = $learnpath_item_id==''?0:(int)$learnpath_item_id;
$quizDuration = (!empty($_SESSION['quizStartTime']) ? time() - $_SESSION['quizStartTime'] : 0);
if (api_is_allowed_to_session_edit() )
if (api_is_allowed_to_session_edit() ) {
update_event_exercice($exeId, $objExercise->selectId(),$totalScore,$totalWeighting,api_get_session_id(),$safe_lp_id,$safe_lp_item_id,$quizDuration);
}
}
if($objExercise->results_disabled) {

@ -329,7 +329,7 @@ function display_free_answer($answer,$id,$questionId) {
?>
<tr>
<td>
<?php echo nl2br(Security::remove_XSS($answer,COURSEMANAGERLOWSECURITY)); ?>
<?php if (!empty($answer)) {echo nl2br(Security::remove_XSS($answer,COURSEMANAGERLOWSECURITY));} ?>
</td> <?php if(!api_is_allowed_to_edit(null,true)) {?>
<td>
<?php

@ -398,20 +398,18 @@ function update_event_exercice($exeid,$exo_id, $score, $weighting,$session_id,$l
{
if ($exeid!='') {
$current_time = time();
// Validation in case of fraud with actived control time
if (isset($_SESSION['expired_time'])) { //Only for exercice of type "One page"
$current_time = time();
$expired_date = $_SESSION['expired_time'];
$expired_time = strtotime($expired_date);
$expired_time = strtotime($expired_date);
$total_time_allowed = $expired_time + 30;
if ($total_time_allowed < $current_time) {
$score = 0;
}
}
//Validation in case of fraud
$total_time_allowed = $expired_time + 30;
if ($total_time_allowed < $current_time) {
$score = 0;
}
$now = time();
$now = time();
//Validation in case of wrong start_date
if (isset($_SESSION['exercice_start_date'])) {
$start_date = $_SESSION['exercice_start_date'];
@ -506,16 +504,12 @@ function exercise_attempt($score,$answer,$quesId,$exeId,$j)
global $_configuration, $_user, $_cid;
$TBL_TRACK_ATTEMPT = Database::get_statistic_table(TABLE_STATISTIC_TRACK_E_ATTEMPT);
$current_time = time();
//Validation in case of fraud with actived control time
if (isset($_SESSION['expired_time'])) { //Only for exercice of type "One page"
$current_time = time();
$expired_date = $_SESSION['expired_time'];
$expired_time = strtotime($expired_date);
//Validation in case of fraud
$total_time_allowed = $expired_time + 30;
$total_time_allowed = $expired_time + 30;
if ($total_time_allowed < $current_time) {
$score = 0;
$answer = 0;
@ -599,17 +593,17 @@ function exercise_attempt_hotspot($exe_id, $question_id, $answer_id, $correct, $
return 0;
}
$current_time = time();
//Validation in case of fraud with actived control time
if (isset($_SESSION['expired_time'])) { //Only for exercice of type "One page"
$current_time = time();
$expired_date = $_SESSION['expired_time'];
$expired_time = strtotime($expired_date);
$total_time_allowed = $expired_time + 30;
if ($total_time_allowed < $current_time) {
$correct = 0;
}
}
//Validation in case of fraud
$total_time_allowed = $expired_time + 30;
if ($total_time_allowed < $current_time) {
$correct = 0;
}
$tbl_track_e_hotspot = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_HOTSPOT);
$sql = "INSERT INTO $tbl_track_e_hotspot " .
"(hotspot_user_id, hotspot_course_code, hotspot_exe_id, hotspot_question_id, hotspot_answer_id, hotspot_correct, hotspot_coordinate)".

@ -1116,5 +1116,9 @@ $GoToCourseAfterLoginTitle = "Go directly to the course after login";
$GoToCourseAfterLoginComment = "When a user is registered in one course, go directly to the course after login";
$GroupList = "Group List";
$AllowStudentsDownloadFoldersTitle = "Allow students to download directories";
$AllowStudentsDownloadFoldersComment = "Permitir a los estudiantes empaquetar y descargar un directorio completo en la herramienta documentos";
$AllowStudentsDownloadFoldersComment = "Allow students to pack and download a complete directory from the document tool";
$AllowStudentsToCreateGroupsInSocialTitle = "Allow students to create groups in social network";
$AllowStudentsToCreateGroupsInSocialComment = "Allow students to create groups in social network";
$AllowSendMessageToAllPlatformUsersTitle = "Allow send message to all platform users";
$AllowSendMessageToAllPlatformUsersComment = "Allow send message to all platform users";
?>

@ -104,4 +104,5 @@ $CreateCourse = "Create a training";
$Create = "Create";
$MessageOfNewCourseToAdmin = "This message is to inform you that has created a new course on platform";
$NewCourseCreatedIn = "New course created in";
$ExplicationTrainers = "The trainer is set as you for now. You can change this setting later in the training configuration settings";
?>

@ -69,4 +69,5 @@ $YouDoNotHaveAnySessionInItsHistory = "You do not have any training session in i
$Messages = "Messages";
$Inbox = "Inbox";
$Comppose = "Comppose";
$PendingInvitations = "Pending invitations";
?>

@ -751,10 +751,10 @@ $Unacceptable = "Unacceptable";
$DisplayTrainingList = "Display training list";
$HistoryTrainingSession = "History training ";
$Until = "Until";
$FirstPage = "First Page";
$LastPage = "Last Page";
$FirstPage = "First page";
$LastPage = "Last page";
$Coachs = "Coachs";
$New = "New";
$YouMustToInstallTheExtensionLDAP = "You must to install the extension LDAP";
$YouMustToInstallTheExtensionLDAP = "You must install the extension LDAP";
$AddAdditionalProfileField = "Add user profile field";
?>

@ -91,7 +91,7 @@ $ClearSearchResults = "Clear search results";
$SendInvitation = "Send invitation";
$SocialInvitationToFriends = "Invite to join my group of friends";
$MyCertificates = "My certificates";
$ToChangeYourEmailMustTypeYourPassword = "To Change Your Email Must Type Your Password";
$ToChangeYourEmailMustTypeYourPassword = "In order to change your e-mail address, you are required to confirm your password";
$Invitations = "Invitations";
$MyGroups = "My groups";
$EditProfile = "Edit profile";
@ -112,20 +112,20 @@ $ThisIsAnOpenGroup = "This is an open group";
$YouShouldCreateATopic = "You should create a topic";
$IamAnAdmin = "I am an admin";
$NewTopic = "New topic";
$MessageList = "Message list";
$MessageList = "Messages list";
$EditGroup = "Edit group";
$MemberList = "Member list";
$MemberList = "Members list";
$WaitingList = "Waiting list";
$InviteFriends = "Invite friends";
$Members = "Members";
$Admin = "Administrator";
$AttachmentFiles = "Attachment files";
$AttachmentFiles = "Attachments";
$AddOneMoreFile = "Add one more file";
$MaximunFileSizeXMB = "Maximun file size %s MB";
$ModifyInformation = "Modify information";
$GroupList = "Group list";
$GroupEdit = "Group edit";
$ThereAreNotUsersInTheWaitingList = "There are not users in the waiting list";
$GroupList = "Groups list";
$GroupEdit = "Edit group";
$ThereAreNotUsersInTheWaitingList = "There are no users in the waiting list";
$SendInvitationTo = "Send invitation to";
$InviteUsersToGroup = "Invite users to group";
$PostIn = "It posted";
@ -133,12 +133,12 @@ $Reply = "Reply";
$Newest = "Newest";
$Popular = "Popular";
$Moderator = "Moderator";
$DeleteModerator = "DeleteModerator";
$UserChangeToModerator = "User change to moderator";
$DeleteModerator = "Remove moderator";
$UserChangeToModerator = "User updated to moderator";
$IamAModerator = "I am a moderator";
$ThisIsACloseGroup = "This is a close group";
$ThisIsACloseGroup = "This is a closed group";
$IamAReader = "I am a reader";
$UserChangeToReader = "User change to reader";
$UserChangeToReader = "User updated to reader";
$AddModerator = "Add moderator";
$UserDeleted = "User deleted";
$JoinGroup = "Join group";
@ -146,32 +146,33 @@ $YouShouldJoinTheGroup = "You should join the group";
$WaitingForAdminResponse = "Waiting for admin response";
$Member = "Member";
$Re = "Re";
$FilesAttachment = "Files attachment";
$FilesAttachment = "Files attachments";
$GroupWaitingList = "Group waiting list";
$Open = "Open";
$UsersAlreadyInvited = "Users already invited";
$SubscribeUsersToGroup = "Subscribe users to group";
$YouHaveBeenInvitedJoinNow = "You have been invited join now";
$YouHaveBeenInvitedJoinNow = "You have been invited to join now";
$DenyInvitation = "Deny invitation";
$AcceptInvitation = "Accept invitation";
$GroupsWaitingApproval = "Groups waiting approval";
$GroupInvitationWasDeny = "Group invitation was deny";
$GroupsWaitingApproval = "Groups waiting for approval";
$GroupInvitationWasDeny = "Group invitation was denied";
$UserIsSubscribedToThisGroup = "User is subscribed to this group";
$DeleteFromGroup = "Delete from group";
$GroupMembers = "Group members";
$Subscribe = "Subscribe";
$YouAreInvitedToGroupContent = "You are invited to group content";
$YouAreInvitedToGroupContent = "You are invited to access a group content";
$YouAreInvitedToGroup = "You are invited to group";
$ToSubscribeClickInTheLinkBelow = "To subscribe click in the link below";
$ToSubscribeClickInTheLinkBelow = "To subscribe, click the link below";
$ReturnToInbox = "Return to inbox";
$View = "View";
$Me = "Me";
$ReturnToOutbox = "Return to outbox";
$EditNormalProfile = "Edit normal profile";
$GroupPendingInvitations = "Group pending invitations";
$GroupPendingInvitations = "Pending group invitations";
$LeaveGroup = "Leave group";
$UserIsNotSubscribedToThisGroup = "User is not subscribed to this group";
$InvitationReceived = "Invitation received";
$InvitationSent = "Invitation Sent";
$InvitationSent = "Invitation sent";
$YouAlreadySentAnInvitation = "You already sent an invitation";
$AllowSendMessageToAllPlatformUsersTitle = "Allow users to send message to all platform users";
?>

@ -73,8 +73,8 @@ $FolderEdited = "Folder edited";
$UpdateWork = "Update this task";
$MakeAllPapersInvisible = "Make all papers invisible";
$MakeAllPapersVisible = "Make all papers visible";
$StudentAllowedToDeleteOwnPublication = "Allow to the students delete your own publication";
$StudentAllowedToDeleteOwnPublication = "Allow learners to delete their own publications";
$TheDocumentHasBeenDeleted = "The document has been deleted.";
$YouAreNotAllowedToDeleteThisDocument = "You are not allowed to delete this document";
$ConfirmYourChoiceDeleteAllfiles = "Confirm your choice will delete all files and can not be recovered";
$ConfirmYourChoiceDeleteAllfiles = "Please confirm your choice. This will delete all files without possibility of recovery";
?>

@ -979,6 +979,7 @@ $SoberBrown = "Sobre Brun";
$SteelGrey = "Gris Acier";
$TastyOlive = "Olive Goûteuse";
$AddNews = "Ajouter annonce";
$ExportCourses = "Exporter les cours";
$SearchDatabaseOpeningError = "Échec à l\'ouverture de la base de données de recherche";
$SearchDatabaseVersionError = "La base de données de recherches utilise un format non supporté";
$SearchDatabaseModifiedError = "La base de données de recherches a été altérée/endommagée";
@ -1061,7 +1062,59 @@ $LanguageFile = "Fichier de traduction";
$ShowCoursesDescriptionsInCatalogTitle = "Afficher les descriptions de cours dans le catalogue";
$ShowCoursesDescriptionsInCatalogComment = "Afficher les descriptions de cours sous forme d\'une popup modale lorsque l\'utilisateur clique sur l\'icône d\'information d\'un cours dans le catalogue de cours (\"Gérer mes cours\")";
$StylesheetNotHasBeenAdded = "La nouvelle feuille de style n\'a pas pu être ajoutée";
$AddSessionsInCategories = "Ajouter sessions à catégories";
$ItIsRecommendedInstallImagickExtension = "Il est recommandé d\'installer l\'extension imagick de PHP pour obtenir de meilleurs résultats au niveau résolution des images réduites. Si cette extension n\'est pas instalée, il sera fait usage, à sa place, de l\'extension PHP-GD.";
$EditSpecificSearchField = "Éditer le champ spécifique de recherche";
$FieldName = "Nom du champ";
$SpecialExports = "Exports spéciaux";
$SpecialCreateFullBackup = "Créer un export spécial complet";
$SpecialLetMeSelectItems = "Sélection manuelle des composants";
$CreateBackup = "Générer backup";
$AllowCoachsToEditInsideTrainingSessions = "Autoriser les formateurs à éditer le contenu des sessions de cours";
$AllowCoachsToEditInsideTrainingSessionsComment = "Autoriser les formateurs à éditer le conteni des sessions de cours (modifier les documents, parcours, exercices, liens, etc)";
$ShowSessionDataTitle = "Afficher informations de la session";
$ShowSessionDataComment = "Afficher informations sur la session dans la page de cours de l\'utilisateur";
$SubscribeSessionsToCategory = "Ajouter des sessions dans une catégorie";
$SessionListInPlatform = "Liste des sessions sur la plateforme";
$SessionListInCategory = "Liste des sessions dans la catégorie";
$ToExportSpecialSelect = "Si vous désirez exporter des cours contenant des sessions, vous devriez vous assurez que celles-ci ont été incluses dans l\'export. Pour cela, il est nécessaire de les sélectionner dans la liste.";
$ErrorMsgSpecialExport = "Il n\'y a pas de cours enregistré, ou peut-être que l\'association avec les sessions n\'a pas été faite";
$ConfigureInscription = "Configuration de la page d\'inscription";
$MsgErrorSessionCategory = "Sélectionner une catégorie et des sessions";
$NumberOfSession = "Nombre de sessions";
$DeleteSelectedSessionCategory = "Supprimer seulement les catégopries sélectionnées sans sessions";
$DeleteSelectedFullSessionCategory = "Supprimer les catégories sélectionnées avec leurs sessions";
$EditTopRegister = "Éditer l\'avis";
$InsertTabs = "Ajouter onglet";
$EditTabs = "Éditer les onglets";
$IsAdministrator = "est administrateur";
$IsNotAdministrator = "n\'est pas administrateur";
$AddTimeLimit = "Ajouter une limite de temps";
$EditTimeLimit = "Éditer la limite de temps";
$TheTimeLimitsAreReferential = "La limite de temps d\'une catégorie est informelle et n\'affectera pas les limites des sessions de formations";
$ShowGlossaryInExtraToolsTitle = "Afficher les termes du glossaire dans les outils extra";
$ShowGlossaryInExtraToolsComment = "Indiquez si vous désirez afficher les termes du glossaire dans les outils de parcours et exercices";
$FieldTypeTag = "Tags utilisateurs";
$SendEmailToAdminTitle = "Alerte e-mail à la création de formation";
$SendEmailToAdminComment = "Envoyer un e-mail à l\'administrateur de la plateforme à la création de chaque nouveau cours";
$UserTag = "Tag utilisateur";
$SelectSession = "Sélectionner session";
$GroupPermissions = "Permissions de groupes";
$SpecialCourse = "Cours spécial";
$MathMimetexTitle = "Éditeur mathématique mimeTeX";
$MathMimetexComment = "Activer l\'éditeur mathématique mimeTeX";
$MathASCIImathMLTitle = "Éditeur mathématique SCIImathML";
$MathASCIImathMLComment = "Activer l\'éditeur mathématique SCIImathML";
$YoutubeForStudentsTitle = "Autoriser les apprenants à insérer des vidéos depuis YouTube";
$YoutubeForStudentsComment = "Autoriser les apprenants à insérer des vidéos YouTube";
$BlockCopyPasteForStudentsTitle = "Bloquer le copier-coller des apprenants";
$BlockCopyPasteForStudentsComment = "Empêcher les étudiants d\'utiliser le copier-coller de l\'éditeur en ligne WYSIWYG";
$MoreButtonsForMaximizedModeTitle = "Barre de boutons étendue";
$MoreButtonsForMaximizedModeComment = "Activer les barres de boutons étendues lorsque l\'éditeur en ligne WYSIWYG est en vue maximisée";
$Editor = "Éditeur WYSIWYG";
$GoToCourseAfterLoginTitle = "Accés direct au cours après login";
$GoToCourseAfterLoginComment = "Lorsqu\'un utilisateur est enregistré dans un seul cours, l\'envoyer directement dans le cours après le login";
$GroupList = "Liste des groupes";
$AllowStudentsDownloadFoldersTitle = "Autoriser les apprenants à télécharger des répertoires";
$AllowStudentsDownloadFoldersComment = "Permettre aux apprenants de comprimer et télécharger un répertoire complet dans l\'outil documents";
?>

@ -24,4 +24,8 @@ $Authoring = "Production";
$Administration = "Administration";
$IntroductionTextUpdated = "L\'intro a été mise à jour";
$IntroductionTextDeleted = "L\'intro a été supprimée";
$SessionIdentifier = "Identifiant de session";
$SessionName = "Titre de session";
$SessionCategory = "Catégorie de session";
$SessionData = "Info de session";
?>

@ -102,4 +102,6 @@ $IntroductionWiki = "Le mot \"Wiki\" est un raccourci pour WikiWikiWeb. Wikiwiki
$CreateCourseArea = "Créer cette formation";
$CreateCourse = "Créer formation";
$Create = "Créer";
$MessageOfNewCourseToAdmin = "Ce petit message pour vous informer qu\'un nouveau cours a été créé sur la plateforme";
$NewCourseCreatedIn = "Nouveau cours créé dans";
?>

@ -347,4 +347,9 @@ $TooManyIterationsPleaseTryUsingMoreStraightforwardPolygons = "Trop d\'it
$Thresholds = "Seuils";
$Delineation = "Délinéation";
$QuestionTypeDoesNotBelongToFeedbackTypeInExercise = "Ce type de question ne permet pas le type d\'exercice de feedback immédiat";
$SessionIsReadOnly = "La session est en mode de lecture seule";
$EnableTimerControl = "Activer le contrôle du temps";
$ExerciseTotalDurationInMinutes = "Durée totale du test en minutes";
$ToContinueUseMenu = "Pour continuer le cours, veuillez utiliser le menu latéral";
$RandomAnswers = "Désordonner les réponses";
?>

@ -22,4 +22,6 @@ $TableView = "Tableau";
$GlossaryTermAlreadyExistsYouShouldEditIt = "Ce terme de glossaire existe déjà. Veuillez modifier le nom du terme.";
$GlossaryManagement = "Gestion du glossaire";
$TermMoved = "Le terme a été déplacé";
$ShowGlossaryInExtraToolsTitle = "Afficher les termes du glossaires dans les outils extra";
$ShowGlossaryInExtraToolsComment = "Afficher les termes du glossaire dans les outils extra comme les parcours et les exercices";
?>

@ -187,4 +187,7 @@ $EditPresences = "Modifier les pr
$TotalWeightMustNotBeMoreThan = "Le poids total ne peut pas dépasser";
$ThereIsNotACertificateAvailableByDefault = "Aucun certificat n\'est disponible, par défaut";
$CertificateMinimunScoreIsRequiredAndMustNotBeMoreThan = "Un score minimum de certification est nécessaire (utilisez l\'icône de crayon) et ne peut pas être supérieur à";
$LinkMod = "Enregistrer";
$EditLink = "Modifier le lien vers l\'activité online";
$CategoryDeleted = "La catégorie a été supprimée";
?>

@ -65,4 +65,8 @@ $FolderCreated = "Un nouveau dossier a
$LinkAdded = "Un nouveau lien a été ajouté";
$AnnouncementAdded = "Une annonce a été ajoutée";
$AgendaAdded = "Un événement d\'agenda a été ajouté";
$YouDoNotHaveAnySessionInItsHistory = "Vous n\'avez pas de session dans votre historique";
$Messages = "Messages";
$Inbox = "Boîte de réception";
$Comppose = "Nouveau message";
?>

@ -175,4 +175,5 @@ $User = "Utilisateur";
$LostPass = "Vous avez oublié votre mot de passe?";
$EnterEmailUserAndWellSendYouPassword = "Entrez votre nom d\'utilisateur ou l\'adresse e-mail avec laquelle vous vous êtes enregistré et nous vous enverrons votre mot de passe par e-mail.";
$NoUserAccountWithThisEmailAddress = "Désolé, nous n\'avons trouvé aucune trace d\'un compte avec ce nom d\'utilisateur et/ou cette adresse e-mail.";
$WithTheFollowingSettings = "avec les paramètres suivants:";
?>

@ -18,4 +18,6 @@ $lang_next_slide = "Image suivante";
$lang_image = "Image";
$lang_of = "de";
$lang_view_slideshow = "Voir la galerie";
$FirstSlide = "Premičre diapositive";
$LastSlide = "Derničre diapositive";
?>

@ -241,4 +241,6 @@ $TrainingTime = "Temps";
$CourseProgress = "Progrès";
$ViewMinus = "Voir moins";
$ResourcesTracking = "Rapport de ressources";
$SelectFieldToAdd = "Sélectionner un champ de profil utilisateur à ajouter";
$AddAdditionalProfileField = "Ajouter un champ de profil utilisateur";
?>

@ -731,6 +731,7 @@ $Menu = "Menu";
$BackToUserList = "Retour à la liste d\'utilisateurs";
$GraphicNotAvailable = "Graphique non disponible";
$BackTo = "Retour à";
$HistoryTrainingSessions = "Historique des sessions de formation";
$ConversionFailled = "La conversion a échoué";
$AlreadyExists = "Existe déjà";
$TheNewWordHasBeenAdded = "Le nouveau terme a été ajouté";
@ -747,4 +748,13 @@ $SurveyAdded = "Enqu
$WikiAdded = "Wiki ajouté";
$ReadOnly = "Lecture seule";
$Unacceptable = "Inacceptable";
$DisplayTrainingList = "Afficher la liste des formations";
$HistoryTrainingSession = "Historique de formations";
$Until = "Jusqu\'au";
$FirstPage = "Première page";
$LastPage = "Dernière page";
$Coachs = "Formateurs";
$New = "Nouveau";
$YouMustToInstallTheExtensionLDAP = "Vous devez installer l\'extension LDAP";
$AddAdditionalProfileField = "Ajouter un champ de profil utilisateur";
?>

@ -91,4 +91,87 @@ $ClearSearchResults = "Nettoyer les r
$SendInvitation = "Envoyer invitation";
$SocialInvitationToFriends = "Inviter à se joindre à mon groupe d\'amis";
$MyCertificates = "Mes certificats";
$ToChangeYourEmailMustTypeYourPassword = "Afin de modifier votre adresse e-mail, veuillez confirmer votre mot de passe";
$Invitations = "Invitations";
$MyGroups = "Mes groupes";
$EditProfile = "Éditer mon profil";
$Social = "Social";
$Profile = "Profil";
$MyFriends = "Mes amis";
$Messages = "Messages";
$CreateAgroup = "Créer un groupe";
$UsersGroups = "utilisateurs, groupes";
$SorryNoResults = "Désolé, il n\'y a aucun résultat";
$URL = "URL";
$AddPicture = "Ajouter photo";
$GroupPermissions = "Permissions de groupe";
$Closed = "Fermé";
$AddGroup = "Ajouter groupe";
$Privacy = "Caractère privé";
$ThisIsAnOpenGroup = "Groupe ouvert";
$YouShouldCreateATopic = "Vous devriez créer un sujet de discussion";
$IamAnAdmin = "Je suis un admin";
$NewTopic = "Nouveau sujet de discussion";
$MessageList = "Liste des messages";
$EditGroup = "Éditer groupe";
$MemberList = "Liste des membres";
$WaitingList = "Liste d\'attente";
$InviteFriends = "Inviter amis";
$Members = "Membres";
$Admin = "Administrateur";
$AttachmentFiles = "Pièces jointes";
$AddOneMoreFile = "Ajouter une autre pièce jointe";
$MaximunFileSizeXMB = "Taille de fichier maximum: % MB";
$ModifyInformation = "Modifier l\'information";
$GroupList = "Liste des groupes";
$GroupEdit = "Éditer le groupe";
$ThereAreNotUsersInTheWaitingList = "Il n\'y a pas d\'utilisateurs dans la liste d\'attente";
$SendInvitationTo = "Envoyer une invitation à";
$InviteUsersToGroup = "Inviter des utilisateurs à rejoindre le groupe";
$PostIn = "Publié";
$Reply = "Répondre";
$Newest = "Le plus récent";
$Popular = "Populaires";
$Moderator = "Modérateur";
$DeleteModerator = "Supprimer modérateur";
$UserChangeToModerator = "Utilisateur modifié comme modérateur";
$IamAModerator = "Je suis un modérateur";
$ThisIsACloseGroup = "Groupe fermé";
$IamAReader = "Je suis un lecteur";
$UserChangeToReader = "Utilisateur assigné comme lecteur";
$AddModerator = "Ajouter un modérateur";
$UserDeleted = "Utilisateur éliminé";
$JoinGroup = "Rejoindre le groupe";
$YouShouldJoinTheGroup = "Vous devriez joindre ce groupe";
$WaitingForAdminResponse = "En attente de réponse de l\'admin";
$Member = "Membre";
$Re = "Ré";
$FilesAttachment = "Pièces jointes";
$GroupWaitingList = "Liste d\'attente du groupe";
$Open = "Ouvert";
$UsersAlreadyInvited = "Utilisateurs déjà invités";
$SubscribeUsersToGroup = "Inscrire les utilisateurs au groupe";
$YouHaveBeenInvitedJoinNow = "Vous avez à présent été invité à rejoindre le groupe";
$DenyInvitation = "Décliner l\'invitation";
$AcceptInvitation = "Accepter l\'invitation";
$GroupsWaitingApproval = "Groupes en attente d\'approbation";
$GroupInvitationWasDeny = "L\'invitation du groupe a été déclinée";
$UserIsSubscribedToThisGroup = "L\'utilisateur est inscrit à ce groupe";
$DeleteFromGroup = "Désinscrire du groupe";
$GroupMembers = "Membres du groupe";
$Subscribe = "S\'inscrire";
$YouAreInvitedToGroupContent = "Vous êtes invité à accéder à un contenu de groupe";
$YouAreInvitedToGroup = "Vous êtes invité à rejoindre le groupe";
$ToSubscribeClickInTheLinkBelow = "Pour vous inscrire, suivez le lien ci-dessous";
$ReturnToInbox = "Retourner à la boîte de réception";
$View = "Voir";
$Me = "Moi";
$ReturnToOutbox = "Retourner à la boîte d\'envoi";
$EditNormalProfile = "Éditer le profil simple";
$GroupPendingInvitations = "Invitations de groupe en attente";
$LeaveGroup = "Quitter le groupe";
$UserIsNotSubscribedToThisGroup = "L\'utilisateur n\'est pas inscrit à ce groupe";
$InvitationReceived = "Invitation reçue";
$InvitationSent = "Invitation envoyée";
$YouAlreadySentAnInvitation = "Vous avez déjà envoyé une invitation";
?>

@ -73,4 +73,8 @@ $FolderEdited = "R
$UpdateWork = "Mettre le document à jour";
$MakeAllPapersInvisible = "Rendre tous travaux invisibles";
$MakeAllPapersVisible = "Rendre tous travaux visibles";
$StudentAllowedToDeleteOwnPublication = "Autoriser les apprenants à supprimer leurs propres tâches";
$TheDocumentHasBeenDeleted = "Le document a été supprimé.";
$YouAreNotAllowedToDeleteThisDocument = "Vous n\'êtes pas autorisé à supprimer ce document";
$ConfirmYourChoiceDeleteAllfiles = "Veuillez confirmer votre choix. Tous les fichiers seront supprimés sans possibilité de récupération postérieure";
?>

@ -1117,4 +1117,8 @@ $GoToCourseAfterLoginComment = "Se l\'utente
$GroupList = "Elenco dei gruppi";
$AllowStudentsDownloadFoldersTitle = "Permetti il download delle directory da parte dei corsisti";
$AllowStudentsDownloadFoldersComment = "I corsisti potranno scaricare una versione compressa di intere directory nella sezione Documenti";
$AllowStudentsToCreateGroupsInSocialTitle = "Consenti ai corsisti di creare gruppi nel social network";
$AllowStudentsToCreateGroupsInSocialComment = "Consenti ai corsisti di creare gruppi nel social network";
$AllowSendMessageToAllPlatformUsersTitle = "Consenti l\'invio di messaggi verso tutti gli utenti";
$AllowSendMessageToAllPlatformUsersComment = "Consenti l\'invio di messaggi verso tutti gli utenti";
?>

@ -104,4 +104,5 @@ $CreateCourse = "Crea un corso";
$Create = "Crea";
$MessageOfNewCourseToAdmin = "Caro %s, \\n\\n questo messaggio ti informa che sulla piattaforma %s - %s \\n\\n è stato creato il nuovo corso\\n Titolo: %s \\n Categoria: %s \\n Creato da: %s \\n Lingua: %s\";";
$NewCourseCreatedIn = "Nuovo corso creato in ";
$ExplicationTrainers = "Ora sei tu il docente del corso; in seguito potrai configurare altre persone come docenti.";
?>

@ -66,4 +66,8 @@ $LinkAdded = "Nuovo collegamento aggiunto";
$AnnouncementAdded = "Avviso aggiunto";
$AgendaAdded = "Voce nell\'agenda aggiunta";
$YouDoNotHaveAnySessionInItsHistory = "Non ci sono tue sessioni nello storico";
$Messages = "Messaggi";
$Inbox = "Posta in entrata";
$Comppose = "Componi";
$PendingInvitations = "Inviti in attesa";
?>

@ -94,4 +94,64 @@ $MyCertificates = "Il mio certificato";
$ToChangeYourEmailMustTypeYourPassword = "Per cambiare l\'indirizzo e-mail devi riscrivere la password";
$Invitations = "Inviti";
$MyGroups = "I miei gruppi";
$EditProfile = "Modifica il profilo";
$Social = "Social network";
$Profile = "Profilo";
$MyFriends = "Amici";
$Messages = "Messaggi";
$CreateAgroup = "Crea un gruppo";
$UsersGroups = "Utenti e gruppi";
$SorryNoResults = "Nessun risultato";
$URL = "URL";
$AddPicture = "Aggiungi immagine";
$GroupPermissions = "Permessi del gruppo";
$Closed = "Chiuso";
$AddGroup = "Aggiungi un gruppo";
$Privacy = "Privacy";
$ThisIsAnOpenGroup = "Il gruppo è aperto";
$YouShouldCreateATopic = "Devi scrivere l\'argomento";
$IamAnAdmin = "Sono l\'amministratore";
$NewTopic = "Nuovo argomento";
$MessageList = "Elenco dei messaggi";
$EditGroup = "Modifica il gruppo";
$MemberList = "Elenco dei membri";
$WaitingList = "Lista d\'attesa";
$InviteFriends = "Invita degli amici";
$Members = "Membri";
$Admin = "Amministratore";
$AttachmentFiles = "Allegati";
$AddOneMoreFile = "Aggiungi uno o più file";
$MaximunFileSizeXMB = "Dimensione massima file %s MB";
$ModifyInformation = "Modifica l\'informazione";
$GroupList = "Elenco dei gruppi";
$GroupEdit = "Modifica il gruppo";
$ThereAreNotUsersInTheWaitingList = "Non ci sono utenti in lista d\'attesa";
$SendInvitationTo = "Manda un invito a";
$InviteUsersToGroup = "Invita utenti nel gruppo";
$PostIn = "Pubblicato";
$Reply = "Rispondi";
$Newest = "Più recenti";
$Popular = "Popolari";
$Moderator = "Moderatore";
$DeleteModerator = "Elimina moderatore";
$UserChangeToModerator = "Utente nominato moderatore";
$IamAModerator = "Sono moderatore";
$ThisIsACloseGroup = "E\' un gruppo chiuso";
$IamAReader = "Sono un partecipante";
$UserChangeToReader = "Utente reso partecipante";
$AddModerator = "Aggiungi moderatore";
$UserDeleted = "Utente cancellato";
$JoinGroup = "Entra nel gruppo";
$YouShouldJoinTheGroup = "Devi iscriverti al gruppo";
$WaitingForAdminResponse = "In attesa della conferma";
$Member = "Membro";
$Re = "Re";
$FilesAttachment = "File allegati";
$GroupWaitingList = "Lista d\'attesa del gruppo";
$Open = "Aperto";
$UsersAlreadyInvited = "Utente già invitato";
$SubscribeUsersToGroup = "Iscrivi utenti al gruppo";
$YouHaveBeenInvitedJoinNow = "Sei stato invitato a partecipare adesso";
$DenyInvitation = "Declina l\'invito";
$AcceptInvitation = "Accetta l\'invito";
?>

@ -482,6 +482,7 @@ $Inactive = "Neaktivan";
$SessionOverview = "Pregled sesije";
$Host = "Server";
$UserOnHost = "Korisni&#269;ko ime";
$FtpPassword = "FTP lozinka";
$DateStartSession = "Po&#269;etni datum";
$ReconfigureExtension = "Rekonfiguriši ekstenzije";
$ChooseNewsLanguage = "Izaberite novi jezik";

@ -54,4 +54,5 @@ $langTeach = "
$langProductions = "Produkcije";
$langSendChatRequest = "P&#1086;šalji sagovorniku zahtev za Chat";
$langRequestDenied = "Poziv je odbijen.";
$Inbox = "Inbox";
?>

@ -1,6 +1,7 @@
<?php /*
for more information: see languages.txt in the lang folder.
*/
$LinkMoved = "Link je promenjen";
$langLinkName = "Ime linka";
$langLinkAdd = "Dodaj link";
$langLinkAdded = "Link je dodat";

@ -28,13 +28,18 @@ $CreateDirectory = "Kreiraj direktorijum";
$langCurrentDir = "teku&#263;i folder";
$UploadADocument = "U&#269;itaj dokument";
$EditToolOptions = "Izmeni opcije alata";
$DocumentDeleted = "Dokument je obrisan";
$DirDelete = "Obriši direktorijum";
$AddToCalendar = "Dodaj u kalendar ";
$DirectoryCreated = "Direktorijum je kreiran";
$MoveXTo = "Premesti %s u ";
$ModifyDirectory = "Potvrdi izmenu direktorijuma";
$DeleteAllFiles = "Obriši sve dokumente";
$BackToWorksList = "Povratak na popis zadataka ";
$FileInvisible = "Datoteka je sakrivena ";
$FileVisible = "Dokument je sad vidljiv";
$CreateAssignment = "Kreirajte zadatak";
$FolderEdited = "Direktorijum je promenjen";
$UpdateWork = "Ažuriraj trenutni zadatak ";
$MakeAllPapersInvisible = "Sakrij sve dokumente";
$MakeAllPapersVisible = "Postavi sve dokumente da su vidljivi";

@ -1117,4 +1117,8 @@ $GoToCourseAfterLoginComment = "Cuando un usuario est
$GroupList = "Lista de grupos";
$AllowStudentsDownloadFoldersTitle = "Permitir a los estudiantes descargar directorios";
$AllowStudentsDownloadFoldersComment = "Permitir a los estudiantes empaquetar y descargar un directorio completo en la herramienta documentos";
$AllowStudentsToCreateGroupsInSocialTitle = "Permitir a los alumnos de crear grupos en la red social";
$AllowStudentsToCreateGroupsInSocialComment = "Permitir a los alumnos crear sus propios grupos en la red social";
$AllowSendMessageToAllPlatformUsersTitle = "Permitir enviar mensajes a todos los usuarios de la plataforma";
$AllowSendMessageToAllPlatformUsersComment = "Permite poder enviar mensajes a todos los usuarios de la plataforma";
?>

@ -104,4 +104,5 @@ $CreateCourse = "Crear curso";
$Create = "Crear";
$MessageOfNewCourseToAdmin = "Este mensaje es para informarle que se ha creado un nuevo curso en la plataforma";
$NewCourseCreatedIn = "Nuevo curso creado en";
$ExplicationTrainers = "El profesor está definido como Ud por ahora. Podrá cambiarlo en la página de configuración del curso";
?>

@ -69,4 +69,5 @@ $YouDoNotHaveAnySessionInItsHistory = "En su historial no hay ninguna sesi
$Messages = "Mensajes";
$Inbox = "Bandeja de entrada";
$Comppose = "Redactar";
$PendingInvitations = "Invitaciones pendientes";
?>

@ -174,4 +174,5 @@ $UserIsNotSubscribedToThisGroup = "Usuario no esta inscrito a este grupo";
$InvitationReceived = "Invitación aceptada";
$InvitationSent = "Invitación enviada";
$YouAlreadySentAnInvitation = "Usted ya ha enviado una invitación";
$AllowSendMessageToAllPlatformUsersTitle = "Permitir enviar mensajes a todos los usuarios de la plataforma";
?>

@ -31,4 +31,5 @@ $langAddAUser = "A
$InvitationReceived = "Invitación recibida";
$InvitationSent = "Invitación envida";
$YouAlreadySentAnInvitation = "Ud. ya ha enviado una invitación";
$AllowSendMessageToAllPlatformUsersTitle = "Permitir enviar mensajes a todos los usuarios de la plataforma";
?>
Loading…
Cancel
Save