diff --git a/documentation/credits.html b/documentation/credits.html
index 1c72acd4c5..54b55b79b2 100644
--- a/documentation/credits.html
+++ b/documentation/credits.html
@@ -592,6 +592,8 @@ There are too much translators to list them all. Please check http://translate.c
Erik Das (FKS), for bug reports to 1.8.8
Marc De Caluwé, for patches to 1.8.8.4
Alberto Montes, Contidos Dixitais, for CSS "sport_red" in 1.9
+
Bart Mollet, Hogeschool Gent, for patches in 1.6 & 1.8
+
Kristof Van Steenkiste & Sebastien Jacobs (initial Reservation plugin, 2007)
All the supporting parents, partners, children, friends, colleagues and sometimes students, of the very special geeks that we are, for their continous support and inspiration
@@ -626,6 +628,7 @@ These institutions and companies have either contributed to the Chamilo project
Table of contents
now removed, replaced by learning path
+
Facultad de Matematicas, UADY (México) (original asynchronous Message plugin, was later dumped)
diff --git a/license.txt b/license.txt
old mode 100755
new mode 100644
index c77167be32..622b3f7855
--- a/license.txt
+++ b/license.txt
@@ -1,15 +1,16 @@
-Chamilo - elearning and course management software
+Chamilo LMS - elearning and course management software
-Copyright (c) 2008-2010 Dokeos Latinoamérica SAC / BeezNest Latino SAC
-Copyright (c) 2004-2009 Dokeos SPRL
+Copyright (c) 2008-2012 BeezNest Latino SAC, Peru & BeezNest Belgium SPRL, Belgium
+Copyright (c) 2012 Université de Genève, Switzerland
+Copyright (c) 2010-2012 Université de Grenoble, France
+Copyright (c) 2011-2012 CBlue SPRL, Belgium
+Copyright (c) Juan Carlos Raña (independent), Spain
+Copyright (c) 2004-2009 Dokeos SPRL, Belgium
Copyright (c) 2003-2007 Ghent University (UGent)
-Copyright (c) 2001 Universite catholique de Louvain (UCL)
+Copyright (c) 2001-2004 Universite catholique de Louvain (UCL)
Copyright (c) 2003-2008 Vrije Universiteit Brussel (VUB)
Copyright (c) 2004-2008 Hoogeschool Gent (HoGent)
-Copyright (c) Bart Mollet, Hogeschool Gent
-Copyright (c) Facultad de Matematicas, UADY (México) (Message plugin)
-Copyright (c) Kristof Van Steenkiste & Sebastien Jacobs (Reservation plugin)
For a full list of contributors detaining copyrights over parts of
the Chamilo software, see "documentation/credits.html".
diff --git a/main/admin/grade_models.php b/main/admin/grade_models.php
index 5447951b39..084bd15022 100644
--- a/main/admin/grade_models.php
+++ b/main/admin/grade_models.php
@@ -6,7 +6,7 @@
*/
// Language files that need to be included.
-$language_file = array('admin');
+$language_file = array('admin', 'gradebook');
$cidReset = true;
require_once '../inc/global.inc.php';
diff --git a/main/admin/settings.lib.php b/main/admin/settings.lib.php
index d31cd6fadc..9a019333dc 100644
--- a/main/admin/settings.lib.php
+++ b/main/admin/settings.lib.php
@@ -1230,16 +1230,6 @@ function generate_settings_form($settings, $settings_by_access_list) {
$form->addElement('select', $row['variable'], array(get_lang($row['title']), get_lang($row['comment'])), call_user_func('select_'.$row['variable']), $hideme);
$default_values[$row['variable']] = $row['selected_value'];
break;
- case 'gradebook_ranking':
- $value = explode('::', $row['selected_value']);
-
- $form->addElement('text', 'gradebook_display['.$row['variable'].'][text]', array(get_lang($row['title']), get_lang($row['comment'])), array('class' => 'span1', 'value' => $value[0]), $hideme);
- $form->addElement('text', 'gradebook_display['.$row['variable'].'][score]', array(get_lang($row['title']), get_lang($row['comment'])), array('class' => 'span3','value' => $value[1]), $hideme);
-
- $renderer = $form -> defaultRenderer();
- $renderer->setElementTemplate(' {label}
diff --git a/main/inc/lib/add_course.lib.inc.php b/main/inc/lib/add_course.lib.inc.php
index 113eb07041..b6f64c27bf 100644
--- a/main/inc/lib/add_course.lib.inc.php
+++ b/main/inc/lib/add_course.lib.inc.php
@@ -74,21 +74,6 @@ function define_course_keys($wanted_code, $prefix_for_all = '', $prefix_for_base
$try_new_fsc_id ++;
$final_suffix['CourseId'] = substr(md5(uniqid(rand())), 0, 4);
}
- /*
- if ($_configuration['single_database']) {
- $query = "SHOW TABLES FROM ".$_configuration['main_database']." LIKE '".$_configuration['table_prefix'].$keys_course_db_name.$_configuration['db_glue']."%'";
- $result = Database::query($query);
- } else {
- $query = "SHOW DATABASES LIKE '$keys_course_db_name'";
- $result = Database::query($query);
- }
-
- if (Database::num_rows($result)) {
- $keys_are_unique = false;
- $try_new_fsc_db ++;
- $final_suffix['CourseDb'] = substr('_'.md5(uniqid(rand())), 0, 4);
- }*/
-
if (file_exists(api_get_path(SYS_COURSE_PATH).$keys_course_repository)) {
$keys_are_unique = false;
$try_new_fsc_dir ++;
@@ -99,15 +84,9 @@ function define_course_keys($wanted_code, $prefix_for_all = '', $prefix_for_base
return $keys;
}
}
- /*
- // Db name can't begin with a number.
- if (stripos('abcdefghijklmnopqrstuvwxyz', $keys_course_db_name[0]) === false) {
- $keys_course_db_name = $prefixAntiNumber . $keys_course_db_name;
- }*/
-
+
$keys['currentCourseCode'] = $keys_course_code;
$keys['currentCourseId'] = $keys_course_id;
- //$keys['currentCourseDbName'] = $keys_course_db_name;
$keys['currentCourseRepository'] = $keys_course_repository;
return $keys;
@@ -185,15 +164,11 @@ function get_course_tables() {
$tables[]= 'tool';
$tables[]= 'tool_intro';
-
- // Group tool
$tables[]= 'group_info';
$tables[]= 'group_category';
$tables[]= 'group_rel_user';
$tables[]= 'group_rel_tutor';
-
$tables[]= 'item_property';
-
$tables[]= 'userinfo_content';
$tables[]= 'userinfo_def';
$tables[]= 'course_description';
@@ -264,7 +239,6 @@ function get_course_tables() {
$tables[]= 'wiki_conf';
$tables[]= 'wiki_discuss';
$tables[]= 'wiki_mailcue';
- //$tables[]= 'audiorecorder';
$tables[]= 'course_setting';
$tables[]= 'glossary';
$tables[]= 'notebook';
@@ -276,18 +250,26 @@ function get_course_tables() {
$tables[]= 'thematic';
$tables[]= 'thematic_plan';
$tables[]= 'thematic_advance';
+ $tables[]= 'metadata';
- return $tables;
-
+ return $tables;
+}
+
+/* Executed only before create_course_tables() */
+function drop_course_tables() {
+ $list = get_course_tables();
+ foreach ($list as $table) {
+ $sql = "DROP TABLE IF EXISTS ".DB_COURSE_PREFIX.$table;
+ Database::query($sql);
+ }
}
+
/**
* Creates all the necessary tables for a new course
*/
-function update_db_course($course_db_name = null) {
- global $_configuration;
-
- $charset_clause = ' DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci';
-
+function create_course_tables($course_db_name = null) {
+ global $_configuration;
+ $charset_clause = ' DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci';
$use_one_db = true;
if ($use_one_db) {
@@ -302,24 +284,19 @@ function update_db_course($course_db_name = null) {
//@todo define the backticks inside those table names directly (instead of adding them afterwards)
$tbl_course_homepage = $course_db_name . 'tool';
$TABLEINTROS = $course_db_name . 'tool_intro';
-
- // Group tool
$TABLEGROUPS = $course_db_name . 'group_info';
$TABLEGROUPCATEGORIES = $course_db_name . 'group_category';
$TABLEGROUPUSER = $course_db_name . 'group_rel_user';
$TABLEGROUPTUTOR = $course_db_name . 'group_rel_tutor';
-
$TABLEITEMPROPERTY = $course_db_name . 'item_property';
-
$TABLETOOLUSERINFOCONTENT = $course_db_name . 'userinfo_content';
$TABLETOOLUSERINFODEF = $course_db_name . 'userinfo_def';
-
$TABLETOOLCOURSEDESC = $course_db_name . 'course_description';
$TABLETOOLAGENDA = $course_db_name . 'calendar_event';
$TABLETOOLAGENDAREPEAT = $course_db_name . 'calendar_event_repeat';
$TABLETOOLAGENDAREPEATNOT = $course_db_name . 'calendar_event_repeat_not';
$TABLETOOLAGENDAATTACHMENT = $course_db_name . 'calendar_event_attachment';
-
+
// Announcements
$TABLETOOLANNOUNCEMENTS = $course_db_name . 'announcement';
$TABLETOOLANNOUNCEMENTSATTACHMENT = $course_db_name . 'announcement_attachment';
@@ -360,8 +337,7 @@ function update_db_course($course_db_name = null) {
$TABLEQUIZQUESTION = $course_db_name . 'quiz_rel_question';
$TABLEQUIZQUESTIONLIST = $course_db_name . 'quiz_question';
$TABLEQUIZANSWERSLIST = $course_db_name . 'quiz_answer';
- $TABLEQUIZQUESTIONOPTION = $course_db_name . 'quiz_question_option';
-
+ $TABLEQUIZQUESTIONOPTION = $course_db_name . 'quiz_question_option';
$table_quiz_question_category = $course_db_name . 'quiz_question_category';
$table_quiz_question_rel_category = $course_db_name . 'quiz_question_rel_category';
@@ -415,9 +391,6 @@ function update_db_course($course_db_name = null) {
$TABLEWIKIDISCUSS = $course_db_name . 'wiki_discuss';
$TABLEWIKIMAILCUE = $course_db_name . 'wiki_mailcue';
- // audiorecorder
- //$TABLEAUDIORECORDER = $course_db_name . 'audiorecorder';
-
// Course settings
$TABLESETTING = $course_db_name . 'course_setting';
@@ -437,8 +410,7 @@ function update_db_course($course_db_name = null) {
// Thematic
$TBL_THEMATIC = $course_db_name . 'thematic';
$TBL_THEMATIC_PLAN = $course_db_name . 'thematic_plan';
- $TBL_THEMATIC_ADVANCE = $course_db_name . 'thematic_advance';
-
+ $TBL_THEMATIC_ADVANCE = $course_db_name . 'thematic_advance';
$TBL_METADATA = $course_db_name . 'metadata';
$add_to_all_tables = ' c_id INT NOT NULL, ';
@@ -519,7 +491,7 @@ function update_db_course($course_db_name = null) {
)" . $charset_clause;
Database::query($sql);
- /* Forum tool */
+ /* Forum tool */
// Forum Category
$sql = "
diff --git a/main/inc/lib/course.lib.php b/main/inc/lib/course.lib.php
index 19d6a55846..c880cbcf6c 100644
--- a/main/inc/lib/course.lib.php
+++ b/main/inc/lib/course.lib.php
@@ -434,7 +434,7 @@ class CourseManager {
}
$status = ($status == STUDENT || $status == COURSEMANAGER) ? $status : STUDENT;
- $role_id = ($status == COURSEMANAGER) ? COURSE_ADMIN : NORMAL_COURSE_MEMBER;
+ //$role_id = ($status == COURSEMANAGER) ? COURSE_ADMIN : NORMAL_COURSE_MEMBER;
// A preliminary check whether the user has bben already registered on the platform.
if (Database::num_rows(@Database::query("SELECT status FROM ".Database::get_main_table(TABLE_MAIN_USER)."
@@ -1661,10 +1661,8 @@ class CourseManager {
$table_course = Database::get_main_table(TABLE_MAIN_COURSE);
$table_course_user = Database::get_main_table(TABLE_MAIN_COURSE_USER);
- $table_course_class = Database::get_main_table(TABLE_MAIN_COURSE_CLASS);
- $user_role_table = Database::get_main_table(MAIN_USER_ROLE_TABLE);
- $location_table = Database::get_main_table(MAIN_LOCATION_TABLE);
- $role_right_location_table = Database::get_main_table(MAIN_ROLE_RIGHT_LOCATION_TABLE);
+ $table_course_class = Database::get_main_table(TABLE_MAIN_COURSE_CLASS);
+
$table_session_course = Database::get_main_table(TABLE_MAIN_SESSION_COURSE);
$table_session_course_user = Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
$table_course_survey = Database::get_main_table(TABLE_MAIN_SHARED_SURVEY);
@@ -1691,7 +1689,7 @@ class CourseManager {
return;
}
$this_course = Database::fetch_array($res);
- $db_name = $this_course['db_name'];
+
self::create_database_dump($code);
if (!self::is_virtual_course_from_system_code($code)) {
// If this is not a virtual course, look for virtual courses that depend on this one, if any
@@ -1813,8 +1811,7 @@ class CourseManager {
$sql = "DELETE FROM $table_stats_links WHERE links_cours_id = '".$code."'";
Database::query($sql);
$sql = "DELETE FROM $table_stats_uploads WHERE upload_cours_id = '".$code."'";
- Database::query($sql);
-
+ Database::query($sql);
global $_configuration;
if ($_configuration['multiple_access_urls']) {
diff --git a/main/inc/lib/database.constants.inc.php b/main/inc/lib/database.constants.inc.php
index 4b30e1acb7..63e51a2ab5 100644
--- a/main/inc/lib/database.constants.inc.php
+++ b/main/inc/lib/database.constants.inc.php
@@ -143,7 +143,7 @@ define('TABLE_STATISTIC_TRACK_COURSE_RANKING', 'track_course_ranking');
define('TABLE_MAIN_USER_REL_COURSE_VOTE', 'user_rel_course_vote');
-// SCORM database tables
+// SCORM database tables this is used only during the migration from 1.6 to 1.8 see update-db-scorm-1.6.x-1.8.0.inc
define('TABLE_SCORM_MAIN', 'scorm_main');
define('TABLE_SCORM_SCO_DATA', 'scorm_sco_data');
diff --git a/main/inc/lib/database.lib.php b/main/inc/lib/database.lib.php
index b1e8221b03..9e2c66e237 100644
--- a/main/inc/lib/database.lib.php
+++ b/main/inc/lib/database.lib.php
@@ -17,6 +17,7 @@
* Constants definition
*/
require_once 'database.constants.inc.php';
+
/**
* Database class definition
* @package chamilo.database
@@ -43,17 +44,7 @@ class Database {
*/
public static function get_statistic_database() {
global $_configuration;
- return $_configuration['statistics_database'];
- }
-
- /**
- * Returns the name of the SCORM database.
- * @todo use main_database
- * @deprecated
- */
- public static function get_scorm_database() {
- global $_configuration;
- return $_configuration['scorm_database'];
+ return $_configuration['main_database'];
}
/**
@@ -62,7 +53,7 @@ class Database {
*/
public static function get_user_personal_database() {
global $_configuration;
- return $_configuration['user_personal_database'];
+ return $_configuration['main_database'];
}
/**
@@ -192,19 +183,7 @@ class Database {
}
/**
- * This generic method returns the correct and complete name of any scorm
- * table of which you pass the short name as a parameter. Please, define
- * table names as constants in this library and use them instead of directly
- * using magic words in your tool code.
- *
- * @param string $short_table_name, the name of the table
- */
- public static function get_scorm_table($short_table_name) {
- return self::format_table_name(self::get_scorm_database(), $short_table_name);
- }
-
- /**
- * This generic method returns the correct and complete name of any scorm
+ * This generic method returns the correct and complete name of any user
* table of which you pass the short name as a parameter. Please, define
* table names as constants in this library and use them instead of directly
* using magic words in your tool code.
@@ -704,6 +683,7 @@ class Database {
if (strpos($query, 'c_')) {
//Check if the table contains inner joins
if (
+ strpos($query, 'DROP TABLE IF EXISTS') === false &&
strpos($query, 'thematic_advance') === false &&
strpos($query, 'thematic_plan') === false &&
strpos($query, 'track_c_countries') === false &&
diff --git a/main/inc/lib/database.mysqli.lib.php b/main/inc/lib/database.mysqli.lib.php
index 0fce048713..4689b04699 100644
--- a/main/inc/lib/database.mysqli.lib.php
+++ b/main/inc/lib/database.mysqli.lib.php
@@ -180,18 +180,6 @@ class Database {
return self::format_table_name(self::get_statistic_database(), $short_table_name);
}
- /**
- * This generic method returns the correct and complete name of any scorm
- * table of which you pass the short name as a parameter. Please, define
- * table names as constants in this library and use them instead of directly
- * using magic words in your tool code.
- *
- * @param string $short_table_name, the name of the table
- */
- public static function get_scorm_table($short_table_name) {
- return self::format_table_name(self::get_scorm_database(), $short_table_name);
- }
-
/**
* This generic method returns the correct and complete name of any scorm
* table of which you pass the short name as a parameter. Please, define
diff --git a/main/inc/lib/events.lib.inc.php b/main/inc/lib/events.lib.inc.php
index 62c7c38592..33b94b6ff0 100644
--- a/main/inc/lib/events.lib.inc.php
+++ b/main/inc/lib/events.lib.inc.php
@@ -562,7 +562,7 @@ function exercise_attempt_hotspot($exe_id, $question_id, $answer_id, $correct, $
* @param integer User ID (defaults to null)
* @param string Course code (defaults to null)
*/
-function event_system($event_type, $event_value_type, $event_value, $datetime = null, $user_id=null, $course_code=null) {
+function event_system($event_type, $event_value_type, $event_value, $datetime = null, $user_id = null, $course_code = null) {
global $_user;
global $TABLETRACK_DEFAULT;
@@ -579,18 +579,25 @@ function event_system($event_type, $event_value_type, $event_value, $datetime =
unset($event_value['avatar']);
unset($event_value['password']);
unset($event_value['lastLogin']);
- unset($event_value['picture_uri']);
-
+ unset($event_value['picture_uri']);
$event_value = serialize($event_value);
}
}
+
$event_value = Database::escape_string($event_value);
$user_id = Database::escape_string($user_id);
$course_code = Database::escape_string($course_code);
+ $course_info = api_get_course_info($course_code);
+
+ $course_id = null;
+ if (!empty($course_info)) {
+ $course_id = $course_info['real_id'];
+ }
if (!isset($datetime)) {
$datetime = api_get_utc_datetime();
}
+
$datetime = Database::escape_string($datetime);
if(!isset($user_id)) {
@@ -599,17 +606,19 @@ function event_system($event_type, $event_value_type, $event_value, $datetime =
if(!isset($course_code)) {
$course_code = '';
}
+
$sql = "INSERT INTO $TABLETRACK_DEFAULT
(default_user_id,
default_cours_code,
+ c_id,
default_date,
default_event_type,
default_value_type,
default_value
)
- VALUES
- ('$user_id.',
+ VALUES('$user_id.',
'$course_code',
+ '$course_id',
'$datetime',
'$event_type',
'$event_value_type',
@@ -617,37 +626,37 @@ function event_system($event_type, $event_value_type, $event_value, $datetime =
$res = Database::query($sql);
//Sending notifications to users
- $send_event_setting = api_get_setting('activate_send_event_by_mail');
- if (!empty($send_event_setting) && $send_event_setting == 'true') {
- global $language_file;
-
- //prepare message
- list($message, $subject) = get_event_message_and_subject($event_type);
- $mail_body=$message;
- if ( is_array($notification_infos) ){
- foreach ($notification_infos as $variable => $value) {
- $mail_body = str_replace('%'.$variable.'%',$value,$mail_body);
- }
- }
+ $send_event_setting = api_get_setting('activate_send_event_by_mail');
+ if (!empty($send_event_setting) && $send_event_setting == 'true') {
+ global $language_file;
+
+ //prepare message
+ list($message, $subject) = get_event_message_and_subject($event_type);
+ $mail_body=$message;
+ if (is_array($notification_infos)) {
+ foreach ($notification_infos as $variable => $value) {
+ $mail_body = str_replace('%'.$variable.'%',$value,$mail_body);
+ }
+ }
- //prepare mail common variables
- if(empty($subject)) {
- $subject = $event_type;
- }
- $mail_subject = '['.api_get_setting('siteName').'] '.$subject;
- $sender_name = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS);
- $email_admin = api_get_setting('emailAdministrator');
- $emailfromaddr = api_get_setting('emailAdministrator');
- $emailfromname = api_get_setting('siteName');
-
- //Send mail to all subscribed users
- $users_arr = get_users_subscribed_to_event($event_type);
- foreach ($users_arr as $user) {
- $recipient_name = api_get_person_name($user['firstname'], $user['lastname']);
- $email = $user['email'];
- @api_mail($recipient_name, $email, $mail_subject, $mail_body, $sender_name, $email_admin);
+ //prepare mail common variables
+ if(empty($subject)) {
+ $subject = $event_type;
+ }
+ $mail_subject = '['.api_get_setting('siteName').'] '.$subject;
+ $sender_name = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS);
+ $email_admin = api_get_setting('emailAdministrator');
+ $emailfromaddr = api_get_setting('emailAdministrator');
+ $emailfromname = api_get_setting('siteName');
+
+ //Send mail to all subscribed users
+ $users_arr = get_users_subscribed_to_event($event_type);
+ foreach ($users_arr as $user) {
+ $recipient_name = api_get_person_name($user['firstname'], $user['lastname']);
+ $email = $user['email'];
+ @api_mail($recipient_name, $email, $mail_subject, $mail_body, $sender_name, $email_admin);
+ }
}
- }
return true;
}
diff --git a/main/inc/lib/template.lib.php b/main/inc/lib/template.lib.php
index 8c2cf531f8..49bce70e52 100644
--- a/main/inc/lib/template.lib.php
+++ b/main/inc/lib/template.lib.php
@@ -42,13 +42,28 @@ class Template {
$loader = new Twig_Loader_Filesystem($template_paths);
- $this->twig = new Twig_Environment($loader, array(
- //'cache' => api_get_path(SYS_ARCHIVE_PATH), //path to the cache folder
- 'autoescape' => false,
- //'debug' => true,
- //'auto_reload' => true
- //'optimizations' => 0 // turn on optimizations with -1
- ));
+ //Setting Twig options depending on the server see http://twig.sensiolabs.org/doc/api.html#environment-options
+ if (api_get_setting('server_type') == 'test') {
+ $options = array (
+ //'cache' => api_get_path(SYS_ARCHIVE_PATH), //path to the cache folder
+ 'autoescape' => false,
+ 'debug' => true,
+ 'auto_reload' => true,
+ 'optimizations' => 0, // turn on optimizations with -1
+ 'strict_variables' => true, //If set to false, Twig will silently ignore invalid variables
+ );
+ } else {
+ $options = array (
+ 'cache' => api_get_path(SYS_ARCHIVE_PATH), //path to the cache folder
+ 'autoescape' => false,
+ 'debug' => false,
+ 'auto_reload' => false,
+ 'optimizations' => -1, // turn on optimizations with -1
+ 'strict_variables' => false //If set to false, Twig will silently ignore invalid variables
+ );
+ }
+
+ $this->twig = new Twig_Environment($loader, $options);
$this->twig->addFilter('get_lang', new Twig_Filter_Function('get_lang'));
$this->twig->addFilter('get_path', new Twig_Filter_Function('api_get_path'));
diff --git a/main/install/db_main.sql b/main/install/db_main.sql
index 405ca59664..a886e4f3a9 100644
--- a/main/install/db_main.sql
+++ b/main/install/db_main.sql
@@ -374,6 +374,7 @@ LOCK TABLES language WRITE;
INSERT INTO language (original_name, english_name, isocode, dokeos_folder, available) VALUES
('العربية','arabic','ar','arabic',0),
('Asturianu','asturian','ast','asturian',0),
+('বাংলা','bengali','bn','bengali',0),
('Български','bulgarian','bg','bulgarian',1),
('Bosanski','bosnian','bs','bosnian',1),
('Català','catalan','ca','catalan',0),
@@ -417,6 +418,7 @@ INSERT INTO language (original_name, english_name, isocode, dokeos_folder, avail
('Русский','russian','ru','russian',0),
('Slovenčina','slovak','sk','slovak',0),
('Slovenščina','slovenian','sl','slovenian',1),
+('الصومالية','somali','so','somali',0),
('Srpski','serbian','sr','serbian',0),
('Suomi','finnish','fi','finnish',0),
('Svenska','swedish','sv','swedish',0),
@@ -852,17 +854,12 @@ VALUES
('allow_browser_sniffer', NULL, 'radio', 'Tuning', 'false', 'AllowBrowserSnifferTitle', 'AllowBrowserSnifferComment', NULL, NULL, 0),
('enable_wami_record',NULL,'radio','Tools','false','EnableWamiRecordTitle','EnableWamiRecordComment',NULL,NULL, 0),
('gradebook_default_weight', NULL, 'textfield', 'Gradebook', '100', 'GradebookDefaultWeightTitle', 'GradebookDefaultWeightComment', NULL, NULL, 0),
-('gradebook_ranking_1', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_2', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_3', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_4', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_5', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_6', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_7', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_8', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_9', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('gradebook_ranking_10', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1),
-('chamilo_database_version',NULL,'textfield',NULL, '1.9.0.17733','DatabaseVersion','', NULL, NULL, 0);
+('teachers_can_change_score_settings', NULL, 'radio', 'Gradebook', 'true', 'TeachersCanChangeScoreSettingsTitle', 'TeachersCanChangeScoreSettingsComment', NULL, NULL, 1),
+('teachers_can_change_grade_model_settings', NULL, 'radio', 'Gradebook', 'true', 'TeachersCanChangeGradeModelSettingsTitle', 'TeachersCanChangeGradeModelSettingsComment', NULL, NULL, 1),
+('shibboleth_description', NULL, 'radio', 'Shibboleth', 'false', 'ShibbolethMainActivateTitle', 'ShibbolethMainActivateComment', NULL, NULL, 0),
+('facebook_description', NULL, 'radio', 'Facebook', 'false', 'FacebookMainActivateTitle', 'FacebookMainActivateComment', NULL, NULL, 0),
+('gradebook_locking_enabled', NULL, 'radio', 'Gradebook', 'false', 'GradebookEnableLockingTitle', 'GradebookEnableLockingComment', NULL, NULL, 0),
+('chamilo_database_version',NULL,'textfield',NULL, '1.9.0.17769','DatabaseVersion','', NULL, NULL, 0);
/*
('show_tabs', 'custom_tab_1', 'checkbox', 'Platform', 'true', 'ShowTabsTitle', 'ShowTabsComment', NULL, 'TabsCustom1', 1),
@@ -1197,13 +1194,12 @@ VALUES
('allow_browser_sniffer', 'false', 'No'),
('enable_wami_record', 'true', 'Yes'),
('enable_wami_record', 'false', 'No'),
-('cas_add_user_activate', 'extldap', 'casAddUserActivateLDAP'),
-('update_user_info_cas_with_ldap', 'true', 'Yes'),
-('update_user_info_cas_with_ldap', 'false', 'No'),
-('teachers_can_change_score_settings', 'false', 'Yes'),
-('teachers_can_change_score_settings', 'false', 'No');
-
-
+('teachers_can_change_score_settings', 'true', 'Yes'),
+('teachers_can_change_score_settings', 'false', 'No'),
+('teachers_can_change_grade_model_settings', 'true', 'Yes'),
+('teachers_can_change_grade_model_settings', 'false', 'No'),
+('gradebook_locking_enabled', 'true', 'Yes'),
+('gradebook_locking_enabled', 'false', 'No');
UNLOCK TABLES;
/*
('activate_send_event_by_mail', 'true', 'Yes'),
@@ -2989,4 +2985,4 @@ CREATE TABLE grade_components (
PRIMARY KEY (id)
);
-ALTER TABLE gradebook_category ADD COLUMN grade_model_id INT DEFAULT 0;
\ No newline at end of file
+ALTER TABLE gradebook_category ADD COLUMN grade_model_id INT DEFAULT 0;
diff --git a/main/install/db_stats.sql b/main/install/db_stats.sql
index bdbb9b9ee6..7a768b131f 100644
--- a/main/install/db_stats.sql
+++ b/main/install/db_stats.sql
@@ -85,6 +85,7 @@ CREATE TABLE track_e_default (
default_event_type varchar(20) NOT NULL default '',
default_value_type varchar(20) NOT NULL default '',
default_value text NOT NULL,
+ c_id int unsigned default NULL,
PRIMARY KEY (default_id)
);
diff --git a/main/install/index.php b/main/install/index.php
index 0e67177e56..6e5b3d744a 100644
--- a/main/install/index.php
+++ b/main/install/index.php
@@ -811,7 +811,6 @@ if (@$_POST['step2']) {
break;
}
} else {
-
set_file_folder_permissions();
database_server_connect();
diff --git a/main/install/install.lib.php b/main/install/install.lib.php
index 654ba39668..fb2f415a91 100755
--- a/main/install/install.lib.php
+++ b/main/install/install.lib.php
@@ -427,7 +427,7 @@ function get_config_param($param, $updatePath = '') {
$updateFromConfigFile = 'claroline/inc/conf/claro_main.conf.php';
} else {
// Give up recovering.
- error_log('Chamilo Notice: Could not find previous config file at '.$updatePath.'main/inc/conf/configuration.php nor at '.$updatePath.'claroline/inc/conf/claro_main.conf.php in get_config_param(). Will start new config (in '.__FILE__.', line '.__LINE__.')', 0);
+ //error_log('Chamilo Notice: Could not find previous config file at '.$updatePath.'main/inc/conf/configuration.php nor at '.$updatePath.'claroline/inc/conf/claro_main.conf.php in get_config_param(). Will start new config (in '.__FILE__.', line '.__LINE__.')', 0);
return null;
}
}
@@ -2053,5 +2053,4 @@ function locking_settings() {
$sql = "UPDATE $table SET access_url_locked = 1 WHERE variable = '$setting'";
Database::query($sql);
}
-
}
\ No newline at end of file
diff --git a/main/install/install_db.inc.php b/main/install/install_db.inc.php
index 3e60952942..7d5ca30958 100644
--- a/main/install/install_db.inc.php
+++ b/main/install/install_db.inc.php
@@ -8,7 +8,8 @@
* @package chamilo.install
*/
-// This page can only be access through including from the install script.
+/* This page is called only during a NEW chamilo installation */
+/* This page can only be access through including from the install script. */
if (!defined('SYSTEM_INSTALLATION')) {
echo 'You are not allowed here!';
@@ -117,7 +118,9 @@ load_main_database($installation_settings);
//Adds the c_XXX courses tables see #3910
require_once api_get_path(LIBRARY_PATH).'add_course.lib.inc.php';
-update_db_course();
+drop_course_tables();
+
+create_course_tables();
load_database_script('db_stats.sql');
diff --git a/main/install/migrate-db-1.8.8-1.9.0-pre.sql b/main/install/migrate-db-1.8.8-1.9.0-pre.sql
index 8b4088de6b..57f6a43443 100755
--- a/main/install/migrate-db-1.8.8-1.9.0-pre.sql
+++ b/main/install/migrate-db-1.8.8-1.9.0-pre.sql
@@ -96,6 +96,14 @@ INSERT INTO settings_current (variable, subkey, type, category, selected_value,
INSERT INTO settings_options (variable, value, display_text) VALUES ('teachers_can_change_score_settings', 'true', 'Yes');
INSERT INTO settings_options (variable, value, display_text) VALUES ('teachers_can_change_score_settings', 'false', 'No');
+INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('teachers_can_change_grade_model_settings', NULL, 'radio', 'Gradebook', 'true', 'TeachersCanChangeGradeModelSettingsTitle', 'TeachersCanChangeGradeModelSettingsComment', NULL, NULL, 1);
+INSERT INTO settings_options (variable, value, display_text) VALUES ('teachers_can_change_grade_model_settings', 'true', 'Yes');
+INSERT INTO settings_options (variable, value, display_text) VALUES ('teachers_can_change_grade_model_settings', 'false', 'No');
+
+INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_locking_enabled', NULL, 'radio', 'Gradebook', 'false', 'GradebookEnableLockingTitle', 'GradebookEnableLockingComment', NULL, NULL, 0);
+INSERT INTO settings_options (variable, value, display_text) VALUES ('gradebook_locking_enabled', 'true', 'Yes');
+INSERT INTO settings_options (variable, value, display_text) VALUES ('gradebook_locking_enabled', 'false', 'No');
+
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('allow_users_to_change_email_with_no_password', NULL, 'radio', 'User', 'false', 'AllowUsersToChangeEmailWithNoPasswordTitle', 'AllowUsersToChangeEmailWithNoPasswordComment', NULL, NULL, 0);
INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_users_to_change_email_with_no_password', 'true', 'Yes');
INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_users_to_change_email_with_no_password', 'false', 'No');
@@ -148,20 +156,10 @@ INSERT INTO settings_options (variable, value, display_text) VALUES ('enable_wam
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_default_weight', NULL, 'textfield', 'Gradebook', '100', 'GradebookDefaultWeightTitle', 'GradebookDefaultWeightComment', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_1', 'ranking', 'gradebook_ranking', 'Gradebook', '', 'GradebookRankingTitle', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_2', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_3', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_4', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_5', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_6', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_7', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_8', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_9', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
-INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_ranking_10', 'ranking', 'gradebook_ranking', 'Gradebook', '', '', '', NULL, NULL, 1);
+INSERT INTO language (original_name, english_name, isocode, dokeos_folder, available) VALUES ('বাংলা','bengali','bn','bengali',0), ('الصومالية','somali','so','somali',0);
-- Course ranking
-
-CREATE TABLE track_course_ranking (id int unsigned not null PRIMARY KEY AUTO_INCREMENT,c_id int unsigned not null, session_id int unsigned not null default 0, url_id int unsigned not null default 0, accesses int unsigned not null default 0, total_score int unsigned not null default 0, users int unsigned not null default 0, creation_date datetime not null);
+CREATE TABLE track_course_ranking (id int unsigned not null PRIMARY KEY AUTO_INCREMENT, c_id int unsigned not null, session_id int unsigned not null default 0, url_id int unsigned not null default 0, accesses int unsigned not null default 0, total_score int unsigned not null default 0, users int unsigned not null default 0, creation_date datetime not null);
ALTER TABLE track_course_ranking ADD INDEX idx_tcc_cid (c_id);
ALTER TABLE track_course_ranking ADD INDEX idx_tcc_sid (session_id);
@@ -196,7 +194,7 @@ DELETE FROM settings_current WHERE variable = 'use_document_title';
DELETE FROM settings_options WHERE variable = 'use_document_title';
-- Do not move this query
-UPDATE settings_current SET selected_value = '1.9.0.17733' WHERE variable = 'chamilo_database_version';
+UPDATE settings_current SET selected_value = '1.9.0.17769' WHERE variable = 'chamilo_database_version';
-- xxSTATSxx
ALTER TABLE track_e_exercices ADD COLUMN questions_to_check TEXT NOT NULL DEFAULT '';
@@ -209,6 +207,7 @@ ALTER TABLE stored_values_stack ADD KEY (user_id, sco_id, course_id, sv_key, sta
ALTER TABLE stored_values_stack ADD UNIQUE (user_id, sco_id, course_id, sv_key, stack_order);
ALTER TABLE track_e_attempt ADD COLUMN filename VARCHAR(255) DEFAULT NULL;
+ALTER TABLE track_e_default ADD COLUMN c_id INTEGER DEFAULT NULL;
-- xxUSERxx
diff --git a/main/install/update-db-1.8.8-1.9.0.inc.php b/main/install/update-db-1.8.8-1.9.0.inc.php
index 5c3ac9530d..c6e3428c27 100755
--- a/main/install/update-db-1.8.8-1.9.0.inc.php
+++ b/main/install/update-db-1.8.8-1.9.0.inc.php
@@ -57,6 +57,7 @@ if (defined('SYSTEM_INSTALLATION')) {
// that we want to change the main databases as well...
$only_test = false;
if (defined('SYSTEM_INSTALLATION')) {
+
if ($singleDbForm) {
$dbStatsForm = $dbNameForm;
$dbScormForm = $dbNameForm;
@@ -126,7 +127,7 @@ if (defined('SYSTEM_INSTALLATION')) {
}
}
- //Moving Stats DB to the main database
+ //Moving Stats DB to the main DB
$stats_table = array(
"track_c_browsers",
@@ -159,14 +160,30 @@ if (defined('SYSTEM_INSTALLATION')) {
if ($dbNameForm != $dbStatsForm) {
iDatabase::select_db($dbStatsForm);
- foreach($stats_table as $stat_table) {
+ foreach ($stats_table as $stat_table) {
$sql = "ALTER TABLE $dbStatsForm.$stat_table RENAME $dbNameForm.$stat_table";
iDatabase::query($sql);
}
iDatabase::select_db($dbNameForm);
}
-
-
+
+ //Renaming user tables in the main DB
+ $user_tables = array(
+ 'personal_agenda',
+ 'personal_agenda_repeat',
+ 'personal_agenda_repeat_not',
+ 'user_course_category',
+ );
+
+ if ($dbNameForm != $dbUserForm) {
+ Database::select_db($dbUserForm);
+ foreach ($user_tables as $table) {
+ $sql = "ALTER TABLE $dbUserForm.$table RENAME $dbNameForm.$table";
+ Database::query($sql);
+ }
+ Database::select_db($dbNameForm);
+ }
+
// Get the user queries list (u_q_list)
$u_q_list = get_sql_file_contents('migrate-db-'.$old_file_version.'-'.$new_file_version.'-pre.sql', 'user');
diff --git a/main/lang/bengali/accessibility.inc.php b/main/lang/bengali/accessibility.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/accessibility.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/admin.inc.php b/main/lang/bengali/admin.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/admin.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/agenda.inc.php b/main/lang/bengali/agenda.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/agenda.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/announcements.inc.php b/main/lang/bengali/announcements.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/announcements.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/blog.inc.php b/main/lang/bengali/blog.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/blog.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/chat.inc.php b/main/lang/bengali/chat.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/chat.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/course_description.inc.php b/main/lang/bengali/course_description.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/course_description.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/course_home.inc.php b/main/lang/bengali/course_home.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/course_home.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/course_info.inc.php b/main/lang/bengali/course_info.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/course_info.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/coursebackup.inc.php b/main/lang/bengali/coursebackup.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/coursebackup.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/courses.inc.php b/main/lang/bengali/courses.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/courses.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/create_course.inc.php b/main/lang/bengali/create_course.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/create_course.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/document.inc.php b/main/lang/bengali/document.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/document.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/dropbox.inc.php b/main/lang/bengali/dropbox.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/dropbox.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/exercice.inc.php b/main/lang/bengali/exercice.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/exercice.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/external_module.inc.php b/main/lang/bengali/external_module.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/external_module.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/forum.inc.php b/main/lang/bengali/forum.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/forum.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/glossary.inc.php b/main/lang/bengali/glossary.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/glossary.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/gradebook.inc.php b/main/lang/bengali/gradebook.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/gradebook.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/group.inc.php b/main/lang/bengali/group.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/group.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/help.inc.php b/main/lang/bengali/help.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/help.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/hotspot.inc.php b/main/lang/bengali/hotspot.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/hotspot.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/import.inc.php b/main/lang/bengali/import.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/import.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/index.inc.php b/main/lang/bengali/index.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/index.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/install.inc.php b/main/lang/bengali/install.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/install.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/learnpath.inc.php b/main/lang/bengali/learnpath.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/learnpath.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/link.inc.php b/main/lang/bengali/link.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/link.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/md_document.inc.php b/main/lang/bengali/md_document.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/md_document.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/md_link.inc.php b/main/lang/bengali/md_link.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/md_link.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/md_mix.inc.php b/main/lang/bengali/md_mix.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/md_mix.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/md_scorm.inc.php b/main/lang/bengali/md_scorm.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/md_scorm.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/messages.inc.php b/main/lang/bengali/messages.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/messages.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/myagenda.inc.php b/main/lang/bengali/myagenda.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/myagenda.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/notebook.inc.php b/main/lang/bengali/notebook.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/notebook.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/notification.inc.php b/main/lang/bengali/notification.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/notification.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/pedaSuggest.inc.php b/main/lang/bengali/pedaSuggest.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/pedaSuggest.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/registration.inc.php b/main/lang/bengali/registration.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/registration.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/reservation.inc.php b/main/lang/bengali/reservation.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/reservation.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/resourcelinker.inc.php b/main/lang/bengali/resourcelinker.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/resourcelinker.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/scorm.inc.php b/main/lang/bengali/scorm.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/scorm.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/scormbuilder.inc.php b/main/lang/bengali/scormbuilder.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/scormbuilder.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/scormdocument.inc.php b/main/lang/bengali/scormdocument.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/scormdocument.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/slideshow.inc.php b/main/lang/bengali/slideshow.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/slideshow.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/survey.inc.php b/main/lang/bengali/survey.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/survey.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/tracking.inc.php b/main/lang/bengali/tracking.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/tracking.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/trad4all.inc.php b/main/lang/bengali/trad4all.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/trad4all.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/userInfo.inc.php b/main/lang/bengali/userInfo.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/userInfo.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/videoconf.inc.php b/main/lang/bengali/videoconf.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/videoconf.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/wiki.inc.php b/main/lang/bengali/wiki.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/wiki.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/bengali/work.inc.php b/main/lang/bengali/work.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/bengali/work.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/brazilian/trad4all.inc.php b/main/lang/brazilian/trad4all.inc.php
index dab8af199a..809ed41bec 100644
--- a/main/lang/brazilian/trad4all.inc.php
+++ b/main/lang/brazilian/trad4all.inc.php
@@ -1059,7 +1059,6 @@ $CourseCodeAlreadyExistExplained = "Quando o código do curso é duplicado, o si
$CantDeleteReadonlyFiles = "Não é possível excluir os arquivos que estão configurados no modo somente-leitura.";
$Uploaded = "Atualizado.";
$Saved = "Salvo.";
-$GotoCourse = "Ir para o curso";
$EmailSentFromDokeos = "E-mail enviado a partir da plataforma";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Informações sobre a última etapa concluída e a próxima inacabaca.";
$LatexCode = "Código LaTeX";
diff --git a/main/lang/english/admin.inc.php b/main/lang/english/admin.inc.php
index 255162346b..28784639b6 100644
--- a/main/lang/english/admin.inc.php
+++ b/main/lang/english/admin.inc.php
@@ -1304,7 +1304,7 @@ $EnabledImageMapsTitle = "Activate Image maps";
$EnabledImageMapsComment = "Activate the button to insert Image maps. This allows you to associate URLs to areas of an image, creating hotspots.";
$CourseTool = "Course tool";
$BigBlueButtonEnableTitle = "BigBlueButton videoconference tool";
-$BigBlueButtonEnableComment = "Choose whether you want to enable the BigBlueButton videoconference tool. Once enabled, it will show as an additional course tool in all courses' homepage, and teachers will be able to launch a conference at any time. Students will not be able to launch a conference, only join one. If you don't have a BigBlueButton server, please set one up or ask the Chamilo official providers for a quote.
+$BigBlueButtonEnableComment = "Choose whether you want to enable the BigBlueButton videoconference tool. Once enabled, it will show as an additional course tool in all courses' homepage, and teachers will be able to launch a conference at any time. Students will not be able to launch a conference, only join one. If you don't have a BigBlueButton server, please set one up or ask the Chamilo official providers for a quote.
BigBlueButton is a free (as in freedom *and* beer), but its installation requires a set of technical skills that might not be immediately available to all. You can install it on your own or seek professional help to assist you or do it for you. This help, however, will generate a certain cost. In the pure logic of the free software, we offer you the tools to make your work easier and recommend professionals (the Chamilo Official Providers) that will be able to help you if this were too difficult.";
$BigBlueButtonHostTitle = "BigBlueButton server host";
$BigBlueButtonHostComment = "This is the name of the server where your BigBlueButton server is running. Might be localhost, an IP address (e.g. 192.168.13.54) or a domain name (e.g. my.video.com).";
@@ -1329,8 +1329,8 @@ $IncludeAsciiMathMlComment = "Activate this setting if you want to show ASCIIMat
$CourseHideToolsTitle = "Hide tools from teachers";
$CourseHideToolsComment = "Check the tools you want to hide from teachers. This will prohibit access to the tool.";
$MoveUserStats = "Move users results from/to a session";
-$CompareUserResultsBetweenCoursesAndCoursesInASession = "This advanced tool allows you to manually improve the tracking of users results when moving from courses methodology to sessions methodology. In most cases, you won't need to use it.
-On this screen, you can compare results of users between the context of a standalone course, and the context of the same course inside a session.
+$CompareUserResultsBetweenCoursesAndCoursesInASession = "This advanced tool allows you to manually improve the tracking of users results when moving from courses methodology to sessions methodology. In most cases, you won't need to use it.
+On this screen, you can compare results of users between the context of a standalone course, and the context of the same course inside a session.
Once you are sure about what to do, you can choose to move the tracking data of the students (exercises results and learning paths tracking) from a course to a session.";
$PDFExportWatermarkEnableTitle = "Enable watermark in PDF export";
$PDFExportWatermarkEnableComment = "By enabling this option, you can upload an image or a text that will be automatically added as watermark to all PDF exports of documents on the system.";
@@ -1385,8 +1385,8 @@ $EnableAccessibilityFontResizeTitle = "Font resize accessibility feature";
$EnableAccessibilityFontResizeComment = "Enable this option to show a set of font resize options on the top-right side of your campus. This will allow visually impaired to read their course contents more easily.";
$GlobalEvent = "Platform event";
$SearchEnabledTitle = "Fulltext search";
-$SearchEnabledComment = "This feature allows you to index most of the documents uploaded to your portal, then provide a search feature for users.
-This feature will not index documents that have already been uploaded, so it is important to enable (if wanted) at the beginning of your implementation.
+$SearchEnabledComment = "This feature allows you to index most of the documents uploaded to your portal, then provide a search feature for users.
+This feature will not index documents that have already been uploaded, so it is important to enable (if wanted) at the beginning of your implementation.
Once enabled, a search box will appear in the courses list of every user. Searching for a specific term will bring a list of corresponding documents, exercises or forum topics, filtered depending on the availability of these contents to the user.";
$SpecificSearchFieldsAvailable = "Available custom search fields";
$XapianModuleInstalled = "Xapian module installed";
@@ -1533,10 +1533,11 @@ $AllowBrowserSnifferTitle = "Activate the browser sniffer";
$AllowBrowserSnifferComment = "This will enable an investigator of the capabilities that support browsers that connect to Chamilo. Therefore will improve user experience by adapting responses to the type of browser platform that connects, but will slow initial page load of users every time that they enter to the platform.";
$EnableWamiRecordTitle = "Activate Wami-recorder";
$EnableWamiRecordComment = "Wami-recorder is a voice record tool on Flash";
-$LdapDescriptionComment = "
LDAP authentication : See I. below to configure LDAP See II. below to activate LDAP authentication
Update user attributes, with LDAP data, after CAS authentication(see CAS configuration ) : See I. below to configure LDAP CAS manage user authentication, LDAP activation isn't required.
I. LDAP configuration
Edit file main/auth/external_login/ldap.conf.php
-> Edit values of array $extldap_config
Parameters are
base domain string (ex : 'base_dn' => 'DC=cblue,DC=be')
admin distinguished name (ex : 'admin_dn' =>'CN=admin,dc=cblue,dc=be')
admin password (ex : 'admin_password' => '123456')
ldap host (ex : 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'))
filter (ex : 'filter' => '')
port (ex : 'port' => 389)
protocol version (2 or 3) (ex : 'protocol_version' => 3)
user_search (ex : 'user_search' => 'sAMAccountName=%username%')
encoding (ex : 'encoding' => 'UTF-8')
update_userinfo (ex : 'update_userinfo' => true)
-> To update correspondences between user and LDAP attributes, edit array $extldap_user_correspondance Array values are <chamilo_field> => >ldap_field> Array structure is explained in file main/auth/external_login/ldap.conf.php
N.B. : LDAP users use same fields than platform users to login. N.B. : LDAP activation adds a menu External authentication [LDAP] in "e;add or modify"e; user pages.";
-$LdapDescriptionTitle = "
LDAP configuration
";
+$ChangeSharedSetting = "Change setting visibility for the other portals";
+$AllowHRSkillsManagementTitle = "Allow HR skills management";
+$AllowHRSkillsManagementComment = "Allows HR to manage skills";
+$GradebookDefaultWeightTitle = "Default weight in Gradebook";
$GradebookDefaultWeightComment = "This weight will be use in all courses by default";
-$ActiveOnly = "Active only";
-$AuthenticationSource = "Authentication";
-$RegisteredDate = "Registered";
-$Zombies = "Zombies";
\ No newline at end of file
+$TeachersCanChangeScoreSettingsTitle = "Teachers can change the Gradebook score settings";
+$TeachersCanChangeScoreSettingsComment = "When editing the Gradebook settings";
+?>
\ No newline at end of file
diff --git a/main/lang/english/trad4all.inc.php b/main/lang/english/trad4all.inc.php
index 0e2b7694ac..5d667f1bec 100644
--- a/main/lang/english/trad4all.inc.php
+++ b/main/lang/english/trad4all.inc.php
@@ -1060,7 +1060,7 @@ $CourseCodeAlreadyExistExplained = "When a course code is duplicated, the databa
$CantDeleteReadonlyFiles = "Cannot delete files that are configured in read-only mode.";
$Uploaded = "Uploaded.";
$Saved = "Saved.";
-$GotoCourse = "Go to the course";
+$Reset = "Reset";
$EmailSentFromDokeos = "E-mail sent from the platform";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Information about the last finished step and the next unfinished one.";
$LatexCode = "LaTeX code";
@@ -1219,4 +1219,5 @@ $InputNameHere = "Enter name here";
$Reload = "Reload";
$TimeSpentLastXDays = "Time spent the last %s days";
$TimeSpentBetweenXAndY = "Time spent between %s and %s";
+$GoToCourse = "Go to the course";
?>
\ No newline at end of file
diff --git a/main/lang/finnish/exercice.inc.php b/main/lang/finnish/exercice.inc.php
index 53ac52bb55..f424f2af85 100644
--- a/main/lang/finnish/exercice.inc.php
+++ b/main/lang/finnish/exercice.inc.php
@@ -209,6 +209,7 @@ $StudentEmail = "Sähköposti";
$CourseName = "Kurssin nimi";
$HotspotDescription = "Nyt klikkaa: (...)";
$ExamSheetVCC = "Tehtävä tarkistettu";
+$AttemptVCC = "Tehtäväsi on tarkistettu/kommentoitu.";
$DearStudentEmailIntroduction = "Hyvä Opiskelija,";
$ExerciseFinished = "Harjoitus valmis";
$DisableResults = "Älä näytä tuloksia oppilaille";
diff --git a/main/lang/finnish/trad4all.inc.php b/main/lang/finnish/trad4all.inc.php
index 8f99fddbe9..35160d69c8 100644
--- a/main/lang/finnish/trad4all.inc.php
+++ b/main/lang/finnish/trad4all.inc.php
@@ -830,7 +830,6 @@ $AllDone = "Kaikki tehty";
$Blogs = "Blogit";
$Postpone = "Lykkää";
$Saved = "Tallennettu";
-$GotoCourse = "Mene kurssille";
$NextBis = "Seuraava";
$Prev = "Edellinen";
$UserRoles = "Käyttäjä roolit";
diff --git a/main/lang/french/admin.inc.php b/main/lang/french/admin.inc.php
index 7aabd0053a..06f59d8f2e 100644
--- a/main/lang/french/admin.inc.php
+++ b/main/lang/french/admin.inc.php
@@ -1132,7 +1132,7 @@ $AssignCoursesToHumanResourcesManager = "Assigner des cours au directeur RH";
$TimezoneValueTitle = "Zone de temps";
$TimezoneValueComment = "Ceci est la zone de temps configurée pour ce portail. Si vous ne configurez pas de zone de temps, la zone de temps du serveur sera utilisée. Si vous configurez une zone de temps, tous les temps de cette plateforme seront basés sur cette zone de temps. Ce";
$UseUsersTimezoneTitle = "Utiliser les zones de temps utilisateurs";
-$UseUsersTimezoneComment = "Activer la possibilité pour les utilisateurs de sélectionner leur zone horaire. Le champ de zone horaire doit être rendu visible et modifiable dans les options de profiling du panneau d'administration avant que les utilisateurs ne puissent choisir leur propre zone.
+$UseUsersTimezoneComment = "Activer la possibilité pour les utilisateurs de sélectionner leur zone horaire. Le champ de zone horaire doit être rendu visible et modifiable dans les options de profiling du panneau d'administration avant que les utilisateurs ne puissent choisir leur propre zone.
Une fois configurée, les utilisateurs pourront voir toutes les heures du portail (heure de remise des travaux, évènements, etc) converties dans leur propre zone horaire.";
$FieldTypeTimezone = "Zone horaire";
$AssignedSessionsHaveBeenUpdatedSuccessfully = "Les sessions assignées ont été mises à jour";
@@ -1304,9 +1304,9 @@ $EnabledImageMapsTitle = "Activer les cartes sur images";
$EnabledImageMapsComment = "Activer le bouton pour ajouter des cartes sur image. Ceci vous permettra d'associer des adresses URL à des zones d'une image, générant ainsi des zones interactives.";
$CourseTool = "Outil de cours";
$BigBlueButtonEnableTitle = "Outil de vidéoconférence BigBlueButton";
-$BigBlueButtonEnableComment = "Choisissez si vous désirez activer l'outil de vidéoconférence BigBlueButton. Une fois activé, il apparaît comme un outil de cours additionnel dans toutes les pages d'accueil de cours, et les enseignants peuvent lancer une conférence à tout moment. Les étudiants ne peuvent pas lancer de conférence, seulement en rejoindre une.
-Si vous n'avez pas de serveur BigBlueButton fonctionnel, veuillez en installer un ou vous adresser aux fournisseurs officiels de Chamilo pour pouvoir bénéficier de cette fonctionnalité.
-BigBlueButton est un logiciel libre et gratuit. Son installation requiert des compétences techniques particulières, ce qui demande un travail considérable et peut résulter coûteux si vous ne disposez pas desdites compétences.
+$BigBlueButtonEnableComment = "Choisissez si vous désirez activer l'outil de vidéoconférence BigBlueButton. Une fois activé, il apparaît comme un outil de cours additionnel dans toutes les pages d'accueil de cours, et les enseignants peuvent lancer une conférence à tout moment. Les étudiants ne peuvent pas lancer de conférence, seulement en rejoindre une.
+Si vous n'avez pas de serveur BigBlueButton fonctionnel, veuillez en installer un ou vous adresser aux fournisseurs officiels de Chamilo pour pouvoir bénéficier de cette fonctionnalité.
+BigBlueButton est un logiciel libre et gratuit. Son installation requiert des compétences techniques particulières, ce qui demande un travail considérable et peut résulter coûteux si vous ne disposez pas desdites compétences.
Dans la logique du développement durable de notre projet, nous vous offrons la possibilité d'installer vous-même la solution ou de vous faire aider par des professionnels à l'expérience démontrée.";
$BigBlueButtonHostTitle = "Adresse du serveur BigBlueButton";
$BigBlueButtonHostComment = "Veuillez indiquer l'adresse du serveur BigBlueButton. Ceci peut être localhost, une adresse IP (par exemple 192.168.13.54 ou un nom de domaine (par exemple my.video.com).";
@@ -1331,8 +1331,8 @@ $IncludeAsciiMathMlComment = "Activez ce paramètre si vous désirez pouvoir aff
$CourseHideToolsTitle = "Cacher des outils par rapport aux enseignants";
$CourseHideToolsComment = "Sélectionnez les outils que vous désirez cacher des enseignants. Cette option interdira l'accès à l'outil.";
$MoveUserStats = "Déplacer les résultats utilisateurs dans/vers une session";
-$CompareUserResultsBetweenCoursesAndCoursesInASession = "Cet outil avancé vous permet d'améliorer le suivi des résultats utilisateurs lorsque vous changez d'une méthodologie de purs cours ver une méthodologie de sessions (ou cycles de cours). Dans la plupart des cas, vous n'aurez pas besoin de cet outil.
-Sur cet écran, vous pouvez comparer les résultats des utilisateurs entre un contexte de cours isolé et un contexte de session.
+$CompareUserResultsBetweenCoursesAndCoursesInASession = "Cet outil avancé vous permet d'améliorer le suivi des résultats utilisateurs lorsque vous changez d'une méthodologie de purs cours ver une méthodologie de sessions (ou cycles de cours). Dans la plupart des cas, vous n'aurez pas besoin de cet outil.
+Sur cet écran, vous pouvez comparer les résultats des utilisateurs entre un contexte de cours isolé et un contexte de session.
Une fois que vous vous êtes décidé sur le meilleur contexte au sein duquel devrait exister le suivi des utilisateurs (score des exercices et suivi des parcours), vous pourrez déplacer ce suivi d'un cours vers une session.";
$PDFExportWatermarkEnableTitle = "Activer les filigranes dans les exports PDF";
$PDFExportWatermarkEnableComment = "En activant cette fonctionnalité, vous pourrez utiliser une image ou un texte comme filigranne qui sera ajouté aux documents exportés en PDF.";
@@ -1387,8 +1387,8 @@ $EnableAccessibilityFontResizeTitle = "Redimensionnement des caractères";
$EnableAccessibilityFontResizeComment = "Activer cette option montrera une série d'options de redimensionnement des caractères dans le coin supérieur-droit de votre campus. Celles-ci permettront aux personnes à déficience visuelle de lire leurs contenus de cours plus facilement.";
$GlobalEvent = "Évènement global";
$SearchEnabledTitle = "Recherche full-text";
-$SearchEnabledComment = "Cette fonctionnalité vous permet d'indexer la plupart des documents envoyés sur votre portail, et ainsi fournir à vos utilisateurs une fonctionnalité complète de recherche de contenus.
-Cette fonctionnalité n'indexera pas les documents qui ont déjà été envoyés, c'est pourquoi il est important de l'activer au début d'une implémentarion.
+$SearchEnabledComment = "Cette fonctionnalité vous permet d'indexer la plupart des documents envoyés sur votre portail, et ainsi fournir à vos utilisateurs une fonctionnalité complète de recherche de contenus.
+Cette fonctionnalité n'indexera pas les documents qui ont déjà été envoyés, c'est pourquoi il est important de l'activer au début d'une implémentarion.
Une fois activée, une boîte de recherche apparaîtra dans la liste de cours des utilisateurs. La recherche sur un terme spécifique générera une liste des documents, exercices ou sujets de forum correspondants, filtrés selon la disponibilité de ces contenus pour les utilisateurs.";
$SpecificSearchFieldsAvailable = "Champs de recherche personnalisables disponibles";
$XapianModuleInstalled = "Module Xapian installé";
@@ -1506,6 +1506,4 @@ $CasUserAddLastnameAttributeComment = "Enregistrer le nom de famille CAS de l'ut
$ShowAdminToolbarTitle = "Afficher la barre d'administration";
$ShowAdminToolbarComment = "Affiche une barre d'outils globale au sommet de la page aux utilisateurs des rôles désignés. Cette barre d'outils, très similaire à celles de Wordpress et de Google, peut considérablement accélérer certaines opérations complexes et augmente l'espace disponible pour les contenus de cours, mais elle pourrait rendre certains utilisateurs confus.";
$FirstLetterCourseTitle = "Première lettre (title)";
-$LdapDescriptionComment = "
Authentification LDAP : Voir I. ci-dessous pour configurer LDAP Voir II. ci-dessous pour activer l'authentification LDAP
Mise à jour des attributs de l'utilisateur, auprès du serveur LDAP,après une authentification CAS (voir configurationde CAS ) : Voir I. ci-dessous pour configurer LDAP L'authentification est gérée par CAS, il n'est pas nécessaired'activer l'authentification LDAP dans ce cas.
I. Configuration des paramètres du serveur LDAP
Éditez le fichier main/auth/external_login/ldap.conf.php
-> Mettez à jour les informations de configuration LDAP du tableau $extldap_config Les paramètres sont
base domain string (ex : 'base_dn' => 'DC=cblue,DC=be')
admin distinguished name (ex : 'admin_dn' =>'CN=admin,dc=cblue,dc=be')
admin password (ex : 'admin_password' => '123456')
ldap host (ex : 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'))
filter (ex : 'filter' => '')
port (ex : 'port' => 389)
protocol version (2 or 3) (ex : 'protocol_version' =>3)
user_search (ex : 'user_search' => 'sAMAccountName=%username%')
encoding (ex : 'encoding' => 'UTF-8')
update_userinfo (ex : 'update_userinfo' => true)
-> Mettez à jour les informations de correspondances entre les attributsLDAP et les champs utilisateurs Chamilo du tableau $extldap_user_correspondance Le tableau est de la forme : <chamilo_field> =>>ldap_field> Sa structure est détaillée dans le fichiermain/auth/external_login/ldap.conf.php
II. Activation de l'authentification LDAP
Éditez le fichier main/inc/conf/configuration.php
-> Décommenter les lignes $extAuthSource["extldap"]["login"] =$_configuration['root_sys'].$_configuration['code_append']."auth/external_login/login.ldap.php"; $extAuthSource["extldap"]["newUser"] =$_configuration['root_sys'].$_configuration['code_append']."auth/external_login/newUser.ldap.php";
Notes : les utilisateurs authentifiés par LDAP saisissent leur login et motde passe dans les même champs que les utilisateurs locaux à la plate forme. Notes : activer l'authentification LDAP ajoute un menu Externalauthentification [LDAP] dans l'interface d'ajout et de modification d'unutilisateur.";
-$LdapDescriptionTitle = "
Configuration de LDAP
";
?>
\ No newline at end of file
diff --git a/main/lang/french/trad4all.inc.php b/main/lang/french/trad4all.inc.php
index b0d42f4ed2..7629d5c2af 100644
--- a/main/lang/french/trad4all.inc.php
+++ b/main/lang/french/trad4all.inc.php
@@ -1057,7 +1057,6 @@ $CourseCodeAlreadyExistExplained = "Lorsqu'un code de cours est dupliqué, le sy
$CantDeleteReadonlyFiles = "Impossible de supprimer des fichiers qui sont en mode lecture seule.";
$Uploaded = "Envoyé.";
$Saved = "Sauvegardé.";
-$GotoCourse = "Aller au cours";
$EmailSentFromDokeos = "E-mail envoyé depuis la plateforme";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Information au sujet de la dernière étape clôturée et de la suivante non clôturée.";
$LatexCode = "Code LaTeX";
diff --git a/main/lang/galician/trad4all.inc.php b/main/lang/galician/trad4all.inc.php
index 05b2b6c1f7..cdbd88f987 100644
--- a/main/lang/galician/trad4all.inc.php
+++ b/main/lang/galician/trad4all.inc.php
@@ -1063,7 +1063,6 @@ $CourseCodeAlreadyExistExplained = "Cando un código de curso se publica, o sist
$CantDeleteReadonlyFiles = "Non se pode eliminar os arquivos que están configuraos en modo de só lectura.";
$Uploaded = "Subido";
$Saved = "Gardado";
-$GotoCourse = "Ir ao curso";
$EmailSentFromDokeos = "Correo electrónico enviado desde a plataforma";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Información sobre o último paso terminado e o seguinte sen rematar.";
$LatexCode = "Código LaTex";
diff --git a/main/lang/indonesian/admin.inc.php b/main/lang/indonesian/admin.inc.php
index 574dbe8310..e4e0961cc3 100644
--- a/main/lang/indonesian/admin.inc.php
+++ b/main/lang/indonesian/admin.inc.php
@@ -416,3 +416,91 @@ $MakeAvailable = "Buat menjadi tersedia";
$MakeUnavailable = "Buat tidak tersedia";
$Stylesheets = "Style sheets";
$DefaultDokeosStyle = "Style Chamilo Default";
+$ShowIconsInNavigationsMenuComment = "Apakah menu navigasi menampilkan ikon tool yang berbeda?";
+$Plugin = "Plugin";
+$MainMenu = "Menu Utama";
+$MainMenuLogged = "Menu Utama setelah login";
+$Banner = "Banner";
+$ImageResizeTitle = "Resize gambar-gambar yang di-upload user";
+$ImageResizeComment = "Gambar-gambar user dapat di-resize pada saat di-upload jika PHP di-compiled dengan GD library. Jika GD tidak tersedia, setting ini akan diabaikan.";
+$MaxImageWidthTitle = "Ukuran lebar maksimum gambar user";
+$MaxImageWidthComment = "Lebar maksimum dalam pixel gambarnya user. Setting ini berlaku jika gambar user di-set untuk di-resized pada saat di-upload.";
+$MaxImageHeightTitle = "Ukuran tinggi maksimum gambar user";
+$MaxImageHeightComment = "Tinng maksimum (dalam pixel) ukuran gambarnya user. Setting ini berlaku jika gambar user di-set untuk di-resize pada saat di-upload.";
+$YourVersionNotUpToDate = "Versi anda tidak up-to-date";
+$YourVersionIs = "Versi anda adalah";
+$PleaseVisitDokeos = "Silahkan kunjungi Chamilo";
+$VersionUpToDate = "Versi anda up-to-date";
+$ConnectSocketError = "Kesalahan koneksi soket";
+$SocketFunctionsDisabled = "Koneksi soket dimatikan";
+$ShowEmailAddresses = "Tampilkan alamat email";
+$ShowEmailAddressesComment = "Tampilkan alamat email ke user";
+$LatestVersionIs = "Versi terkini adalah";
+$langConfigureExtensions = "Konfigur layanan tersebut";
+$langActiveExtensions = "Aktivasi layanan ini";
+$langVisioconf = "Visio-conference";
+$langVisioconfDescription = "Chamilo Live Conferencing® merupakan alat standar untuk visioconfrence yang menawarkan: menampilkan diapos, whiteboard untuk menggambar dan menulis, audio/video duplex, dan chat. Ini membutuhkan Flash® player dan menyediakan 3 model : satu-ke-satu, satu-ke-banyak, dan banyak-ke-banyak.";
+$langPpt2lp = "PowerPoint2LearningPath";
+$langPpt2lpDescription = "PowerPoint2LearningPath menyediakan alat transformasi presentasi Powerpoint ke suatu Learning Path dengan beberapa klik.";
+$langBandWidthStatistics = "Statistik Bandwidth";
+$langBandWidthStatisticsDescription = "MRTG menyediakan statistik canggih tentang server selama 24 jam terakhir.";
+$ServerStatistics = "Statistik server";
+$langServerStatisticsDescription = "AWStats menyediakan statistik platform anda: pengunjung, page views, referers ...";
+$SearchEngine = "Mesin Pencari Full Text";
+$langSearchEngineDescription = "Mesin Pencari Full Text menyediakan alat pencari kata ke dalam flatform. Peng-index-an konten harian akan menjamin kualitas pencarian.";
+$langListSession = "Daftar Sesi";
+$AddSession = "Tambah sesi";
+$langImportSessionListXMLCSV = "Import sesi ke format XML/CSV";
+$ExportSessionListXMLCSV = "Eksport sesi dalam format XML/CSV";
+$SessionName = "Nama sesi";
+$langNbCourses = "Kode Mata Kuliah";
+$DateStart = "Tanggal Mulai";
+$DateEnd = "Tanggal Selesai";
+$CoachName = "Nama Pelatih";
+$SessionList = "Daftar Sesi";
+$SessionNameIsRequired = "Nama dibutuhkan untuk suatu sesi";
+$NextStep = "Langkah berikutnya";
+$keyword = "Kata Kunci";
+$Confirm = "Konfirmasi";
+$UnsubscribeUsersFromCourse = "Keluarkan user dari Mata Kuliah";
+$MissingClassName = "Nama klas hilang";
+$ClassNameExists = "Nama klas sudah ada";
+$ImportCSVFileLocation = "Lokasi impor file CSV";
+$ClassesCreated = "Klas telah dibuat";
+$ErrorsWhenImportingFile = "Error pada saat mengimport file";
+$ServiceActivated = "Layanan diaktivasi";
+$ActivateExtension = "Layanan aktif";
+$InvalidExtension = "Ektensi tidak syah";
+$VersionCheckExplanation = "Agar dimungkinkan pemeriksaan versi otomatis, anda harus mendaftarkan kampus anda ke chamilo.com. Informasi yang diperoleh dengan mengklik tombol ini adalah untuk penggunaan internal dan hnya data agregat yang tersedia bagi umum (jumlah total kampus, jumlah total mata kuliah chamilo, jumlah total siswa. ...) (Lihat http://www.chamilo.org/stats/. Jika mendaftar, maka institusi anda muncul dalam daftar dunia http://www.chamilo.org/community.php.. Jika institusi anda tidak ingin tampil dalam daftar anda dapat menconteng kotak cek di bawah ini. Pendaftaran mudah: anda hanya mengklik tombol ini ";
+$AfterApproval = "Setelah disetujui";
+$StudentViewEnabledTitle = "Bolehkan tampilan siswa";
+$StudentViewEnabledComment = "Bolehkan tampilan siswa yang memungkinkan pengajar atau admin melihat kuliah seperti yang dilihat siswa";
+$TimeLimitWhosonlineTitle = "Batas waktu di WhoIsOnline";
+$TimeLimitWhosonlineComment = "Batas waktu ini menentukan berapa lama (detik) setelah aksi terakhir pemakai akan dianggap *online*";
+$ExampleMaterialCourseCreationTitle = "Materi contoh tentang pembuatan kuliah";
+$ExampleMaterialCourseCreationComment = "Buat materi contoh otomatis saat membuat kuliah baru";
+$AccountValidDurationTitle = "Validitas akun";
+$AccountValidDurationComment = "Akun pemakai valid selama sekian hari ini setelah dibuat";
+$UseSessionModeTitle = "Gunakan mode sesi";
+$UseSessionModeComment = "Sesi memungkinkan cara penanganan kuliah yang berbeda; kuliah akan memiliki kreator, pelatih, dan siswa. Setiap pelatih memberikan kuliah selama jangka waktu tertentu, yang disebut *sesi*, kepada siswa";
+$HomepageViewActivity = "Tampilan aktivitas";
+$HomepageView2column = "Tampilan dua kolom";
+$HomepageView3column = "Tampilan tiga kolom";
+$AllowUserHeadings = "Bolehkan kop pemakai";
+$IconsOnly = "Ikon saja";
+$TextOnly = "Teks saja";
+$IconsText = "Ikon dan teks";
+$EnableToolIntroductionTitle = "Bolehkan memakai tool";
+$EnableToolIntroductionComment = "Bolehkan pengantar pada setiap laman tool";
+$BreadCrumbsCourseHomepageTitle = "Navigasi laman kuliah";
+$BreadCrumbsCourseHomepageComment = "Navigasi (breadcrumb) adalah sistem navigasi tautan horizontal yang biasanya muncul di kiri atas halaman Anda. Opsi ini memilih apa yang Anda inginkan muncul di breadcrumb pada laman kuliah";
+$Comment = "Komentar";
+$Version = "Versi";
+$LoginPageMainArea = "Area utama halaman login";
+$LoginPageMenu = "Menu halaman login";
+$CampusHomepageMainArea = "Area utama laman kampus";
+$CampusHomepageMenu = "Menu laman kampus";
+$MyCoursesMainArea = "Area utama kuliah";
+$MyCoursesMenu = "Menu kuliah";
+$Header = "Kop";
+?>
\ No newline at end of file
diff --git a/main/lang/italian/trad4all.inc.php b/main/lang/italian/trad4all.inc.php
index 0b65e1db0c..3d370be62f 100644
--- a/main/lang/italian/trad4all.inc.php
+++ b/main/lang/italian/trad4all.inc.php
@@ -1064,7 +1064,6 @@ $CourseCodeAlreadyExistExplained = "I codici di corso duplicati saranno bloccati
$CantDeleteReadonlyFiles = "I file marcati come di sola lettura non possono essere eliminati";
$Uploaded = "Caricato";
$Saved = "Salvato";
-$GotoCourse = "Vai al corso";
$EmailSentFromDokeos = "email inviata dalla piattaforma";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Informazioni su passi completati e sul primo da completare";
$LatexCode = "Codice LaTeX";
diff --git a/main/lang/latvian/trad4all.inc.php b/main/lang/latvian/trad4all.inc.php
index c42ef5cc56..ed36e9c71f 100644
--- a/main/lang/latvian/trad4all.inc.php
+++ b/main/lang/latvian/trad4all.inc.php
@@ -1062,7 +1062,6 @@ $CourseCodeAlreadyExistExplained = "Datu bāzes sistēma pārbauda kursa kodu, v
$CantDeleteReadonlyFiles = "Nevar izdzēst failu, kas konfigurēts tikai lasīšanas režīmā";
$Uploaded = "Augšupielādēts";
$Saved = "Saglabāts";
-$GotoCourse = "Doties uz Kursu";
$EmailSentFromDokeos = "E - vēstule, no platformas ir nosūtīta";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Informācija par pēdējo pabeigto soli un nākošo nepabeigto soli";
$LatexCode = "LaTEX kods";
diff --git a/main/lang/slovenian/admin.inc.php b/main/lang/slovenian/admin.inc.php
index 9b7e1e17e6..c7606165fd 100644
--- a/main/lang/slovenian/admin.inc.php
+++ b/main/lang/slovenian/admin.inc.php
@@ -1471,6 +1471,8 @@ $AllowTeacherChangeGradebookGradingModelTitle = "Dovoli učitelju spremembo ocen
$AllowTeacherChangeGradebookGradingModelComment = "Z dovoljenjem dovoljujete učitelju izbiro modela ocenjevanja, ki ga uporabi v svojem tečaju. Spremembe uveljavlja učitelj znotraj orodja redovalnice tečaja.";
$NumberOfSubEvaluations = "Število pod-ocenjevanj";
$AddNewModel = "Dodaj nov model";
+$GroupParentship = "Starševstvo skupine";
+$NoParentship = "Brez starševstva";
$NoCertificate = "Ni certifikatov";
$ShowDocumentPreviewTitle = "Prikaži predogled dokumenta";
$ShowDocumentPreviewComment = "Prikaz predogleda dokumentov v orodju dokumentov omogoča vpogled v njegovo vsebino brez nalaganja nove strani. Uporaba predogleda lahko, pri majhnih zaslonskih resolucijah in pri uporabi starejših brskalnikov, rezultira v nestabilnemu delovanju.";
@@ -1498,4 +1500,37 @@ $CasUserAddLastnameAttributeTitle = "Dodaj CAS priimek";
$CasUserAddLastnameAttributeComment = "Dodaj CAS priimek pri registracij novega uporabnika";
$ShowAdminToolbarTitle = "Prikaži administratorjevo orodno vrstico";
$ShowAdminToolbarComment = "Prikaže globalno orodno vrstico na vrhu strani za izbrane vloge uporabnikov.Ta orodna vrstica, podobna orodni vrstici, znani iz storitev Wordpress in Google, omogoča pohitritev dostopa za izvedbo določenih opravil in prihranek pri prostoru, sicer namenjenu učnim vsebinam.";
+$AddInMenu = "Dodaj v meni";
+$AllowUsersToChangeEmailWithNoPasswordTitle = "Dovoli uporabnikom spremembo e-poštnega naslova brez uporabe gesla";
+$AllowUsersToChangeEmailWithNoPasswordComment = "V primeru spreminjanja informacije o uporabniškem računu";
+$EnableHelpLinkTitle = "Omogoči povezavo na pomoč";
+$EnableHelpLinkComment = "Povezava na pomoč se nahaja v desnem zgornjem robu zaslona";
+$BackToAdmin = "Nazaj na upravljanje";
+$AllowGlobalChatTitle = "Omogoči globalni klepet";
+$HeaderExtraContentTitle = "Dodatna vsebina v glavi strani";
+$HeaderExtraContentComment = "Dodate lahko lastno HTML kodo, kot so npr. meta oznake, ...";
+$FooterExtraContentTitle = "Dodatna vsebina v nogi strani";
+$AllowGlobalChatComment = "Klepet je omogočen za vse aktivne uporabnike platforme";
+$FooterExtraContentComment = "Dodate lahko lastno HTML kodo, kot so npr. meta oznake, ...";
+$CopyOnlySessionItems = "Kopiraj zgolj elemente seje";
+$FirstLetterCourseTitle = "Prva črka naziva tečaja";
+$UsersFoundInOtherPortals = "Uporabniki najdeni v drugih portalih";
+$AddUserToMyURL = "Dodaj uporabnika v moj portal";
+$UsersDeleted = "Uporabniki so bili odstranjeni";
+$UsersAdded = "Uporabniki so bili dodani";
+$PluginArea = "Vtiči";
+$NoConfigurationSettingsForThisPlugin = "Za ta vtič nastavitve niso na voljo";
+$Regions = "Regije";
+$CoursesDefaultCreationVisibilityTitle = "Privzeta vidnost tečajev";
+$CoursesDefaultCreationVisibilityComment = "Privzeta vidnost/dostopnost do tečaja pri kreiranju novega tečaja";
+$YouHaveEnteredTheCourseXInY = "Vstopil si v tečaj %s v %s";
+$LoginIsEmailTitle = "Uporabi e-poštni naslov kot uporabniško ime";
+$LoginIsEmailComment = "Omogoči uporabo e-poštnega naslova za prijavo v sistem";
+$AllowBrowserSnifferTitle = "Aktiviraj vohljača (sniffer) brskalnika";
+$AllowBrowserSnifferComment = "Možnost omogoči preiskavovalca zmožnosti brskalnikov, ki se povezujejo s Chamilo platformo. S tem omogoča izboljšavo uporabniške izkušnje s prilagoditvijo odziva vrsti brskalnika, vendar njegova uporaba upočasni začetno nalaganje strani vsakokrat, ko uporabnik vstopi v platformo.";
+$EnableWamiRecordTitle = "Aktiviraj Wami-recorder";
+$EnableWamiRecordComment = "Wami-recorder je snemalnik zvoka, ki bazira na Flash tehnologiji";
+$ChangeSharedSetting = "Spremeni nastavitev vidnosti drugih portalov";
+$GradebookDefaultWeightTitle = "Privzeta utež v redovalnici";
+$GradebookDefaultWeightComment = "Ta utež bo uporabljena privzeto v vseh tečajih";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/course_description.inc.php b/main/lang/slovenian/course_description.inc.php
index 414403c6e0..9b0cb4d2fc 100644
--- a/main/lang/slovenian/course_description.inc.php
+++ b/main/lang/slovenian/course_description.inc.php
@@ -17,4 +17,5 @@ $CourseDescriptionUpdated = "Opis tečaja je bil ažuriran";
$CourseDescriptionDeleted = "Opis tečaja je bil odstranjen";
$CourseDescriptionIntro = "Da bi opisali tečaj, kliknite na ustrezen naslov in vnesite želene podatke v vnosna polja.
Zaključite s klikom na OK, nato ponovite za naslednji želen naslov.";
$langSaveDescription = "Shrani opis";
+$AddCourseDescription = "Dodaj opis tečaja";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/courses.inc.php b/main/lang/slovenian/courses.inc.php
index 31a2ebb43f..08b030bf9d 100644
--- a/main/lang/slovenian/courses.inc.php
+++ b/main/lang/slovenian/courses.inc.php
@@ -4,20 +4,20 @@ for more information: see languages.txt in the lang folder.
*/
$lang_already_enrolled = "že vpisan";
$lang_my_personnal_course_list = "Osebni seznam tečajev";
-$lang_course_enrollment = "Uporabnikov tečaj";
+$lang_course_enrollment = "Uporabnik tečaja";
$lang_course_not_available = "Tečaj ni na voljo...";
$lang_enroll = "Vpis";
$lang_enroll_to_a_new_course = "Vpis v nov tečaj";
-$lang_my_present_course_list = "Seznam mojih trenutnih tečajev";
+$lang_my_present_course_list = "Moji tečaji";
$lang_no_course_to_enroll_in_this_category = "V tej kategoriji ni nobenega tečaja za vpis...\n";
$lang_or_search_from_the_course_code = " ali iskanje s pomočjo kode tečaja";
$lang_search = "Iskanje";
-$lang_select_course_among_categories = "Izberi tečaj izmed kategorij";
+$lang_select_course_among_categories = "Izberi tečaj v želeni kategoriji";
$lang_select_course_in = "Izberi tečaj v";
$lang_select_course_in_search_results = "Izberi tečaj iz rezultata iskanja";
$lang_unsubscribe = "Izpis";
$lang_back_to_my_home_page = "Povratek na mojo domačo stran";
-$lang_back_to_my_personnal_course_list = "Povratek na moj osebni seznam tečajev";
+$lang_back_to_my_personnal_course_list = "Povratek na seznam mojih tečajev";
$langTitular = "Vodja";
$langBackToListOfThisUser = "Povratek na seznam tečajev";
$langAdministrationTools = "Orodja upravitelja";
@@ -47,11 +47,11 @@ $langEnrollToCourseSuccessful = "Vpisan si v tečaj";
$langSubCat = "podkategorije";
$langUnsubscribeNotAllowed = "Izpis za ta tečaj ni dovoljen.";
$langCourseAdminUnsubscribeNotAllowed = "Si upravitelj tega tečaja.";
-$CourseManagement = "Upravljanje tečajev";
-$SortMyCourses = "Razvrsti moje tečaje";
+$CourseManagement = "Katalog tečajev";
+$SortMyCourses = "Razvrsti tečaje";
$SubscribeToCourse = "Vpiši se v tečaj";
$UnsubscribeFromCourse = "Izpiši se iz tečaja";
-$CreateCourseCategory = "Ustvari kategorijo tečaja";
+$CreateCourseCategory = "Ustvari osebno kategorijo tečajev";
$CourseCategoryAbout2bedeleted = "Si prepričan, da želiš odstraniti to kategorijo tečajev? Preostali tečaji te kategorije bodo prestavljeni izven obstoječih kategorij.";
$CourseCategories = "Kategorije tečajev";
$CoursesInCategory = "Tečaji v kategoriji";
diff --git a/main/lang/slovenian/document.inc.php b/main/lang/slovenian/document.inc.php
index f940bb2813..11f0a15a3e 100644
--- a/main/lang/slovenian/document.inc.php
+++ b/main/lang/slovenian/document.inc.php
@@ -267,4 +267,5 @@ $DirExists = "Operacija ni možna. Mapa z istim imenom že obstaja.";
$DocMv = "Dokument je bil premaknjen";
$NoSVGImagesInImagesGalleryPath = "V vaši galeriji slik ni SVG slik";
$NoSVGImages = "Ni SVG slik";
+$WamiNeedFilename = "Pred aktivacijo snemanja je potrebno določiti ime datoteke.";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/exercice.inc.php b/main/lang/slovenian/exercice.inc.php
index 733dc0bd25..2e349ddfee 100644
--- a/main/lang/slovenian/exercice.inc.php
+++ b/main/lang/slovenian/exercice.inc.php
@@ -468,7 +468,7 @@ $NumberOfStudentsWhoTryTheExercise = "Št. tečajnikov s poskusom testa";
$LowestScore = "Najnižji dosežen rezultat";
$HighestScore = "Najvišji dosežen rezultat";
$MaximumScore = "Največji možen rezultat";
-$NotRevised = "Nepregledani";
+$NotRevised = "Nepregledano";
$PreviousQuestion = "Predhodno vprašanje";
$Options = "Možnosti";
$RandomQuestionByCategory = "Naključna vprašanja po kategorijah";
@@ -477,7 +477,7 @@ $ReviewAnswers = "Preglej moje rezultate";
$TextWhenFinished = "Besedilo ob koncu testa";
$Validated = "Pregledan";
$NotValidated = "Ni pregledan";
-$Revised = "Pregledani";
+$Revised = "Pregledano";
$SelectAQuestionToReview = "Izberi vprašanje za pregled";
$ReviewQuestionLater = "Preglej vprašanje kasneje";
$NumberStudentWhoSelectedIt = "Št. tečajnikov, ki so ga izbrali";
@@ -485,4 +485,12 @@ $QuestionsAlreadyAnswered = "Vprašanje je že bilo odgovorjeno";
$StudentsWhoAreTakingTheExerciseRightNow = "Tečajniki, ki pravkar izvajajo test";
$ReportByQuestion = "Poročilo po vprašanjih";
$LiveResults = "Reultati v živo";
+$RecordAnswer = "Posnemi odgovor";
+$UseTheMessageBelowToAddSomeComments = "Uporabite spodnje sporočilo za dodajanje komentarja";
+$SendRecord = "Pošlji posnetek";
+$DownloadLatestRecord = "Prenesi posnetek";
+$OralExpression = "Ustno (govorno) izražanje";
+$CongratulationsYouPassedTheTest = "Čestitam. Tvoj test je bil uspešno zaključen.";
+$YouDidNotReachTheMinimumScore = "Nisi dosegel minimalnega zahtevanega rezultata.";
+$EndTest = "Končaj test";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/gradebook.inc.php b/main/lang/slovenian/gradebook.inc.php
index 942c6fd514..e6b77d42dc 100644
--- a/main/lang/slovenian/gradebook.inc.php
+++ b/main/lang/slovenian/gradebook.inc.php
@@ -228,4 +228,8 @@ $SelectGradebook = "Izberi ocenjevanje";
$CheckYourGradingModelValues = "Preverite vrednosti modela ocenjevanja";
$SkillsAchievedWhenAchievingThisGradebook = "Spretnosti pridobljene s tem ocenjevanjem";
$AddGradebook = "Dodaj ocenjevanje";
+$SelectGradeModel = "Izberi model ocenjevanja";
+$AllMustWeight100 = "Vsota vseh vrednosti mora biti 100";
+$Components = "Komponente";
+$OnlyActiveWhenThereAreAnyComponents = "Ta možnost je omogočena v primeru, da imate kakršnokoli ocenjevanje ali kategorije";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/index.inc.php b/main/lang/slovenian/index.inc.php
index d4ab8d2017..3104e74334 100644
--- a/main/lang/slovenian/index.inc.php
+++ b/main/lang/slovenian/index.inc.php
@@ -5,7 +5,7 @@ for more information: see languages.txt in the lang folder.
$langInvalidId = "Vstop ni uspel. Napačno uporabniško ime ali geslo";
$langWelcome = "Dobrodošli !";
$langPass = "Geslo";
-$langEnter = "Povratek na seznam mojih tečajev";
+$langEnter = "Povratek na seznam tečajev";
$langReg = "Registracija";
$langMenu = "Menu";
$langAdvises = "Nasveti";
@@ -14,10 +14,10 @@ $langGetCourseFromOldPortal = "kliknite tukaj za prenos tečaja iz starega porta
$langOtherCourses = "ostali tečaji";
$langSupportForum = "Forum podpore";
$langCategories = "kategorije";
-$langBackToHomePage = "Povratek na domačo stran";
+$langBackToHomePage = "Pregled kategorij";
$lang_No_course_publicly_available = "Trenutno ni javno dostopnih tečajev.";
$langLostPassword = "Izgubljeno geslo";
-$lang_edit_my_course_list = "Uredi seznam mojih tečajev";
+$lang_edit_my_course_list = "Uredi seznam tečajev";
$langAgenda = "Agenda";
$langValvas = "Zadnja obvestila";
$langUp = "Gor";
@@ -31,22 +31,22 @@ $Intranet = "Intranet";
$Englin = "English";
$langInvalidForSelfRegistration = "Vstop ni uspel - če nisi registriran, lahko to storiš s pomočjo registracijskega obrazca";
$langSubCat = "podkategorije";
-$langMenuGeneral = "Splošno";
-$langMenuUser = "Uporabnik";
+$langMenuGeneral = "Pomoč";
+$langMenuUser = "Moj račun";
$langMenuAdmin = "Admin. portala";
$langUsersOnLineList = "Seznam aktivnih uporabnikov";
$langTotalOnLine = "Skupaj aktivnih";
$langRefresh = "Osveži";
-$langMe = "*";
+$langMe = "jaz";
$langSystemAnnouncements = "Obvestila sistema";
$langHelpMaj = "Pomoč";
$langNotRegistered = "Ni vpisan";
$langAdmin = "Admin platforme";
$Login = "Uporabniško ime";
-$langRegisterForCourse = "Vpis v nov tečaj";
-$langUnregisterForCourse = "Izpis iz tečajev";
+$langRegisterForCourse = "Vpis v tečaj";
+$langUnregisterForCourse = "Izpis iz tečaja";
$langCombinedCourse = "Združeni tečaji";
-$Platform = "Platforma";
+$Platform = "Portal";
$Refresh = "Osveži";
$TotalOnLine = "Skupaj aktivnih";
$langCourseClosed = "(tečaj je trenutno zaprt)";
@@ -63,16 +63,16 @@ $CourseView = "Prikaži popoln seznam tečajev";
$DropboxFileAdded = "V nabiralnik je bila dodana nova datoteka";
$NewMessageInForum = "Novo sporočilo je bilo objavljeno v forumu";
$FolderCreated = "Nova mapa je bila ustvarjena";
-$LinkAdded = "Povezava dodana";
+$LinkAdded = "Povezava je bila dodana";
$AnnouncementAdded = "Obvestilo je bilo dodano";
-$AgendaAdded = "Zapis agende je bil dodan";
+$AgendaAdded = "Dogodek je bil dodan";
$LoginEnter = "Prijava";
$Messages = "Sporočila";
$Inbox = "Prejeto";
-$Comppose = "Sestavi novo";
+$Comppose = "Sestavi";
$PendingInvitations = "Čakajoča povabila";
$YouDoNotHaveAnySessionInItsHistory = "V zgodovini nimate beležene nobene seje tečaja";
-$PortalHomepageDefaultIntroduction = "
Čestitke! Vaš portal je uspešno nameščen!
Namestitev lahko sedaj zaključite z izvedbo naslednjih treh korakov:
Prilagodite ali spremenite nastavitve portala v upraviteljevem področju; izberite Portal -> Configuration settings.
Dodajte nekaj življenja vašemu portalu s tem, da ustvarite nekaj uporabnikov in/ali nekaj tečajev. To lahko izvedete z vabilom izbranim osebam, kjer jih pozovete k registraciji v portal, ali pa uporabniške račune zanje kreirate sami preko upraviteljevega razdelka Uporabniki oz. tečaje preko razdelka Tečaji.
Vedno in ob vsakem času lahko več informacij o tej programski opremi najdete na naši spletni strani: http://www.chamilo.org.
Želimo vam veliko uspeha, in ne oklevajte se pridružiti naši skupnosti in/ali nam posredovati povratne informacije preko našega foruma.
";
+$PortalHomepageDefaultIntroduction = "
Čestitke! Vaš portal je uspešno nameščen!
Namestitev lahko sedaj zaključite z izvedbo naslednjih treh korakov:
Prilagodite ali spremenite nastavitve portala v upraviteljevem področju; izberite Portal -> Nastavitve Chamilo platforme.
Dodajte nekaj življenja vašemu portalu s tem, da ustvarite nekaj uporabnikov in/ali nekaj tečajev. To lahko izvedete z vabilom izbranim osebam, kjer jih pozovete k registraciji v portal, ali pa uporabniške račune zanje kreirate sami preko upraviteljevega razdelka Uporabniki oz. tečaje preko razdelka Tečaji.
Vedno in ob vsakem času lahko več informacij o tej programski opremi najdete na naši spletni strani: http://www.chamilo.org.
Želimo vam veliko uspeha, in ne oklevajte se pridružiti naši skupnosti in/ali nam posredovati povratne informacije preko našega foruma.
";
$Username = "Uporabniško ime";
$Profile = "Profil";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/registration.inc.php b/main/lang/slovenian/registration.inc.php
index 04cf88aef0..af00245c22 100644
--- a/main/lang/slovenian/registration.inc.php
+++ b/main/lang/slovenian/registration.inc.php
@@ -133,10 +133,10 @@ $AccountExternalAuthSource = "Chamilo ne more te zahteve servisirati avtomatičn
$AccountsExternalAuthSource = "Chamilo ne more servisirati te izjeme avtomatično, ker je vsaj eden od uporabniških računov avtoriziran preko zunanjega izvora. Izvedite odgovarjajoče mere za vse uporabniške račune (vključno s tistimi, ki jih avtorizira platforma) in ibvestite uporabnike.";
$RequestSentToPlatformAdmin = "Chamilo ne more servisirati zahteve avtomatično za to vrsto uporabniškega računa. Vaša zahteva je bila posredovana upravitelju platforme, ki bo izvedel odgovarjajoče mere in vas naknadno obvestil o rezultatih izvedbe zahteve.";
$langphone = "Telefonska št.";
-$Unreg = "Odjavi";
-$MyProgress = "Moj napredek";
+$Unreg = "Izpiši";
+$MyProgress = "Napredek";
$ProgressIntroduction = "Prični z izbiro tečaja seje spodaj. Napredek je viden za vsak tečaj v katerega je tečajnik vpisan.";
-$Select = "Izberi";
+$Select = "Oceni";
$NeverExpires = "Nikoli ne poteče";
$On = "On";
$ExpirationDate = "Datum poteka";
diff --git a/main/lang/slovenian/tracking.inc.php b/main/lang/slovenian/tracking.inc.php
index 4dcf6c85dc..9041d9276c 100644
--- a/main/lang/slovenian/tracking.inc.php
+++ b/main/lang/slovenian/tracking.inc.php
@@ -315,4 +315,7 @@ $NumberOfForumsInLearnpath = "Št. forumov v učni poti";
$NumberOfAssignmentsInLearnpath = "Št. nalog v učni poti";
$NumberOfAnnouncementsInCourse = "Št. obvestil v tečaju";
$CurrentCoursesReport = "Poročilo o trenutnih tečajih";
+$NumberOfPublishedExercises = "št. objavljenih vaj/testov";
+$NumberOfPublishedLps = "št. objavljenih učnih poti";
+$EventType = "Vrsta dogodka";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/trad4all.inc.php b/main/lang/slovenian/trad4all.inc.php
index bc9d7c4bd9..a990dc3023 100644
--- a/main/lang/slovenian/trad4all.inc.php
+++ b/main/lang/slovenian/trad4all.inc.php
@@ -55,7 +55,7 @@ $langNoDescription = "Brez opisa";
$langOfficialCode = "Koda";
$FirstName = "Ime";
$LastName = "Priimek";
-$Status = "Profil";
+$Status = "Status";
$langEmail = "E-pošta";
$SlideshowConversion = "Pretvorba prosojnic";
$UploadFile = "Naloži datoteko";
@@ -513,7 +513,7 @@ $Directories = "mape";
$UserAge = "Starost";
$UserBirthday = "Rojstni datum";
$Course = "Tečaj";
-$FilesUpload = "Nalaganje datotek";
+$FilesUpload = "datotek";
$ExerciseFinished = "Test je bil dokončan";
$UserSex = "Spol";
$UserNativeLanguage = "Materni jezik";
@@ -535,7 +535,7 @@ $FieldMadeUnchangeable = "Polje je sedaj nespremenljivo: uporabniki ga ne morejo
$CannotMakeFieldUnchangeable = "Polje ne more biti nespremenljivo";
$Folder = "Mapa";
$CloseOtherSession = "Klepet ni na voljo, ker je neka druga stran tečaja že odprta; poskusite ponovno naložiti to stran";
-$FileUploadSucces = "Datoteka je bila uspešno prenešena.";
+$FileUploadSucces = "Datoteka je bila uspešno naložena.";
$Yesterday = "Včeraj";
$Submit = "Uveljavi";
$Department = "Oddelek";
@@ -709,7 +709,7 @@ $Menu = "Meni";
$BackToUserList = "Nazaj na seznam uporabnikov";
$GraphicNotAvailable = "Slika ni na voljo";
$BackTo = "Nazaj na";
-$HistoryTrainingSessions = "Zgodovina poučevanja - seje";
+$HistoryTrainingSessions = "Zgodovina tečajev sej";
$ConversionFailled = "Pretvorba je bila neuspešna";
$AlreadyExists = "Že obstaja";
$TheNewWordHasBeenAdded = "Nova beseda je bila dodana";
@@ -1060,7 +1060,6 @@ $CourseCodeAlreadyExistExplained = "V primeru podvojitve kode tečaja sistem pre
$CantDeleteReadonlyFiles = "Ne morem odstraniti datoteke, ki je opredeljena kot zgolj bralna.";
$Uploaded = "Naloženo.";
$Saved = "Shranjeno.";
-$GotoCourse = "Pojdi v tečaj";
$EmailSentFromDokeos = "E-pošta poslana s platforme";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Informacija o zadnjem dokončanem in naslednjem nedokončanem koraku.";
$LatexCode = "LaTeX koda";
@@ -1133,15 +1132,21 @@ $MyAverage = "Moje povprečje";
$AllAttempts = "Vsi poskusi";
$Attempt = "Poizkus";
$SaveForNow = "Shrani in nadaljuj kasneje";
+$NoQuicktime = "V vašem brskalniku ni nameščena QuickTime razširitev. Platformo lahko kljub temu uporabljate, vendar boste izgubili podporo za predvajanje naketerih multimedijskih formatov. Svetujemo, da brskalnikovo razširitev QuickTime namestite.";
$NoJavaSun = "V vašem brskalniku ni nameščen Java vtič. Platformo lahko kljub temu uporabljate, vendar boste izgubili nekatere funkcionalnosti.";
$NoJava = "Java ni podprta v vašem brskalniku";
$JavaSun24 = "Različica Java, ki jo uporabljate, ni podprta s tem orodjem. Da bi ga uporabili, morate namestiti Java SUN različico višjo od 24.";
+$NoMessageAnywere = "V primeru, da tega obvestila med to sejo ne želite več videti, kliknite tule";
$Attempts = "Poizkusi";
$SeeResults = "Poglej rezultate";
$Loading = "Nalaganje";
$AreYouSureToRestore = "Ste prepričani, da želite povrniti ta element?";
$ThisIsAutomaticEmailNoReply = "To je avtomatično generirano e-poštno sporočilo. Prosimo, da nanj ne odgovarjate.";
$PersonalCalendar = "Osebni koledar";
+$SkillsTree = "Kompetenčno drevo";
+$Skills = "Kompetence";
+$SkillsProfile = "Kompetenčni profil";
+$WithCertificate = "S certifikatom";
$AdminCalendar = "Koledar upravitelja";
$CourseCalendar = "Koledar tečaja";
$Reports = "Poročila";
@@ -1150,26 +1155,62 @@ $dateTimeFormatLong24H = "%d %B %Y ob %H:%M";
$GradingModelTitle = "Model ocenjevanja";
$Discussions = "Diskusije";
$GradeModel = "Model ocenjevanja";
+$ViewSkillsTree = "Poglej kompetenčno drevo";
+$MySkills = "Moje kompetence";
$SeeFile = "Poglej datoteko";
$UserList = "Seznam uporabnikov";
$SearchUsers = "Išči uporabnike";
$Administration = "Upravljanje";
+$SkillsAndGradebooks = "Kompetence in ocene";
+$AddSkill = "Dodaj kompetenco";
$AcceptLegal = "Sprejmi pogoje rabe";
$CourseLegalAgreement = "Pogoji rabe za ta tečaj";
+$SkillDoesNotExist = "Tu ni take kompetence";
+$SkillRootName = "ABsolutna kompetenca";
+$Option = "Opcija";
+$Updates = "Posodobitve";
$Teaching = "Poučevanje";
$CoursesReporting = "Poročila tečajev";
$AdminReports = "Upraviteljeva poročila";
$ExamsReporting = "Poročila preverjanj";
$MyReporting = "Moja poročila";
+$SearchSkills = "Išči kompetence";
$SaveThisSearch = "Shrani to iskanje";
+$SkillProfiles = "Shranjeni kompetenčni profili";
+$Matches = "Ustreza";
$WelcomeUserXToTheSiteX = "%s, dobrodošli k %s";
+$CheckUsersWithId = "Za vpis uporabnika uporabi uporabnikov ID iz datoteke";
+$MB = "MiB";
$SessionList = "Seznam sej";
$StudentList = "Seznam tečajnikov";
+$GroupReply = "Odgovor";
+$GroupReplies = "Odgovori";
+$SkillNotFound = "Kompetence ni mogoče najti";
+$IHaveThisSkill = "Jaz imam to kompetenco";
+$Me = "Jaz";
$Vote = "Glas";
$Votes = "Glasov";
$XStarsOutOf5 = "%s zvezdic od 5";
$Visit = "Obisk";
$Visits = "Obiskov";
-$YourVote = "Tvoje glasovanje";
-$HottestCourses = "Najbolj vroči";
+$YourVote = "Tvoja ocena";
+$HottestCourses = "Vroči tečaji";
+$SentAtX = "Poslano na: %s";
+$LoginToVote = "Za glasovanje se prijavi";
+$DoNotShow = "Ne prikaži";
+$ShowToAdminsOnly = "Prikaži zgolj upraviteljem";
+$ShowToAdminsAndTeachers = "Prikaži upraviteljem in učiteljem";
+$ShowToAllUsers = "Prikaži vsem uporabnikom";
+$SelectAnAction = "Izberi dejanje";
+$LoginX = "Št.uporabnikov: %s";
+$ChatConnected = "Klepet(povezan)";
+$ChatDisconnected = "Klepet(nepovezan)";
+$ThingsToDo = "Dejanja, ki jih je potrebno opraviti v nadaljevanju";
+$WamiFlashDialog = "Prikaže dialog, ki vas vpraša po dovoljenju za dostop do mikrofona. Odgovorite z da in zaprite dialog, V primeru, da obvestila ne želite več prikazovati, izberite pomnenje nastavitev pred zapiranjem dialoga.";
+$WamiStartRecorder = "Prični s snemanjem s pritiskom na mikrofon in ustavi s ponovnim pritiskom nanj. Vsak pričetek snemanja bo generiral lastno datoteko.";
+$InputNameHere = "Vpišite ime";
+$Reload = "Osveži";
+$TimeSpentLastXDays = "Porabljen čas v zadnjih %s dneh";
+$TimeSpentBetweenXAndY = "Čas porabljen med %s in %s";
+$GoToCourse = "Vstopi";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/wiki.inc.php b/main/lang/slovenian/wiki.inc.php
index 7a694b4995..0cf31bb756 100644
--- a/main/lang/slovenian/wiki.inc.php
+++ b/main/lang/slovenian/wiki.inc.php
@@ -192,28 +192,45 @@ $MProgressPages = "Strani z najvišjim napredkom";
$MostDiscussUsers = "Največkrat diskutirani uporabniki";
$RandomPage = "Naključna stran";
$ProtectedPages = "Zaščitene strani";
+$IncludeAllVersions = "Išči tudi po starejših razzličicah vseh strani";
$TotalHiddenPages = "Skupaj skritih strani";
+$TotalPagesEditedAtThisTime = "Skupaj strani urejanih v tem trenutku";
+$TotalWikiUsers = "Skupno št. uporabnikov, ki sodelujejo v tem wiki-ju";
$StudentAddNewPages = "Tečajniki lahko dodajo stran v Wiki";
+$DateCreateOldestWikiPage = "Datum nastanka najstarejše wiki strani";
$DateEditLatestWikiVersion = "Datum najnovejšega urejanja v Wiki";
$AverageScoreAllPages = "Povprečna ocena vseh strani";
+$AverageMediaUserProgress = "Povprečna ocena napredka uporabnika na njegovih straneh";
+$TotalIpAdress = "Št. različnih IP naslovov prispevajočih v ta wiki";
$Pages = "Strani";
$Versions = "Različice";
$EmptyPages = "Skupaj praznih strani";
+$LockedDiscussPages = "Št. blokiranih diskusijskih strani";
+$HiddenDiscussPages = "Št. skritih diskusijskih strani";
+$TotalComments = "SKupno št. komentarjev v okviru različic istih strani";
+$TotalOnlyRatingByTeacher = "Skupno št. strani, ki jih lahko ocenjuje zgolj učitelj";
+$TotalRatingPeers = "Skupno št, strani, ki jih lahko ocenjujejo drugi tečajniki";
+$TotalTeacherAssignments = "Št. strani s strani učitelja podanih kot zadolžitev";
+$TotalStudentAssignments = "Št. strani, opredeljenih kot individualna zadolžitev tečajnika";
$TotalTask = "Število opravil";
$PortfolioMode = "Način portfelja";
$StandardMode = "Običajni opravilni način";
+$ContentPagesInfo = "Informacija o vsebini strani";
$InTheLastVersion = "V zadnji različici";
$InAllVersions = "V vseh različicah";
$NumContributions = "Število prispevkov";
$NumAccess = "Število obiskov";
$NumWords = "Število besed";
+$NumlinksHtmlImagMedia = "Št. vstavljenih zunanjih povezav(besedil, slik, ...)";
$NumWikilinks = "Število wiki povezav";
$NumImages = "Število vstavljenih slik";
$NumFlash = "Število vstavljenih flash datotek";
$NumMp3 = "Št. mp3 zvokovnih datotek";
$NumFlvVideo = "Št. vstavljenih FLV video datotek";
$NumYoutubeVideo = "Št. vključenih Youtube videov";
+$NumOtherAudioVideo = "Št. vstavljenih zvočnih in video datotek(razen mp3 in flv)";
$NumTables = "Število vstavljenih tabel";
+$Anchors = "Št. hiper-besedilnih povezav (anchors)";
$NumProtectedPages = "Število zaščitenih strani";
$WhoAndWhere = "Kdo in kje";
?>
\ No newline at end of file
diff --git a/main/lang/slovenian/work.inc.php b/main/lang/slovenian/work.inc.php
index dc9a5429c0..7141b47de1 100644
--- a/main/lang/slovenian/work.inc.php
+++ b/main/lang/slovenian/work.inc.php
@@ -36,7 +36,7 @@ $ValidateChanges = "Uveljavi spremembe";
$FolderUpdated = "Mapa je bila ažurirana";
$EndsAt = "Konča (popolnoma zaprta)";
$QualificationOfAssignment = "Ocenjevanje nalog/izdelkov";
-$MakeQualifiable = "Omogoči ocenjevanje";
+$MakeQualifiable = "Dodaj v redovalnico";
$QualificationNumberOver = "Ocena";
$WeightInTheGradebook = "Utež v kompetenčnem poročilu";
$DatesAvailables = "Razpoložljivi datumi";
@@ -97,5 +97,5 @@ $MaxWeightNeedToBeProvided = "Največja vrednost uteži mora biti podana";
$ContainsAfile = "Vsebuje datoteko";
$AllowTextAssignments = "Dovoli izdelku, da je upravljan preko spletnega urejevalnika";
$YouAlreadySentAPaperYouCantUpload = "Nalogo ste že odposlali. Ne morete naložiti nove.";
-$CantUploadDeleteYourPaperFirst = "Te naloge ne morete naložiti. Najprej morate odstraniti predhodno naloženo nalogo.";
+$CantUploadDeleteYourPaperFirst = "Ta naloga/izdelek je predhodno že bila oddana in je ne morete ponovno naložiti. Če to vseeno želite storiti, najprej odstranite že oddano nalogo.";
?>
\ No newline at end of file
diff --git a/main/lang/somali/accessibility.inc.php b/main/lang/somali/accessibility.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/accessibility.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/admin.inc.php b/main/lang/somali/admin.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/admin.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/agenda.inc.php b/main/lang/somali/agenda.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/agenda.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/announcements.inc.php b/main/lang/somali/announcements.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/announcements.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/blog.inc.php b/main/lang/somali/blog.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/blog.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/chat.inc.php b/main/lang/somali/chat.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/chat.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/course_description.inc.php b/main/lang/somali/course_description.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/course_description.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/course_home.inc.php b/main/lang/somali/course_home.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/course_home.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/course_info.inc.php b/main/lang/somali/course_info.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/course_info.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/coursebackup.inc.php b/main/lang/somali/coursebackup.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/coursebackup.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/courses.inc.php b/main/lang/somali/courses.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/courses.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/create_course.inc.php b/main/lang/somali/create_course.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/create_course.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/document.inc.php b/main/lang/somali/document.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/document.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/dropbox.inc.php b/main/lang/somali/dropbox.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/dropbox.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/exercice.inc.php b/main/lang/somali/exercice.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/exercice.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/external_module.inc.php b/main/lang/somali/external_module.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/external_module.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/forum.inc.php b/main/lang/somali/forum.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/forum.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/glossary.inc.php b/main/lang/somali/glossary.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/glossary.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/gradebook.inc.php b/main/lang/somali/gradebook.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/gradebook.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/group.inc.php b/main/lang/somali/group.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/group.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/help.inc.php b/main/lang/somali/help.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/help.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/hotspot.inc.php b/main/lang/somali/hotspot.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/hotspot.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/import.inc.php b/main/lang/somali/import.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/import.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/index.inc.php b/main/lang/somali/index.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/index.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/install.inc.php b/main/lang/somali/install.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/install.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/learnpath.inc.php b/main/lang/somali/learnpath.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/learnpath.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/link.inc.php b/main/lang/somali/link.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/link.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/md_document.inc.php b/main/lang/somali/md_document.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/md_document.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/md_link.inc.php b/main/lang/somali/md_link.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/md_link.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/md_mix.inc.php b/main/lang/somali/md_mix.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/md_mix.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/md_scorm.inc.php b/main/lang/somali/md_scorm.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/md_scorm.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/messages.inc.php b/main/lang/somali/messages.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/messages.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/myagenda.inc.php b/main/lang/somali/myagenda.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/myagenda.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/notebook.inc.php b/main/lang/somali/notebook.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/notebook.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/notification.inc.php b/main/lang/somali/notification.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/notification.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/pedaSuggest.inc.php b/main/lang/somali/pedaSuggest.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/pedaSuggest.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/registration.inc.php b/main/lang/somali/registration.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/registration.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/reservation.inc.php b/main/lang/somali/reservation.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/reservation.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/resourcelinker.inc.php b/main/lang/somali/resourcelinker.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/resourcelinker.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/scorm.inc.php b/main/lang/somali/scorm.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/scorm.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/scormbuilder.inc.php b/main/lang/somali/scormbuilder.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/scormbuilder.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/scormdocument.inc.php b/main/lang/somali/scormdocument.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/scormdocument.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/slideshow.inc.php b/main/lang/somali/slideshow.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/slideshow.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/survey.inc.php b/main/lang/somali/survey.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/survey.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/tracking.inc.php b/main/lang/somali/tracking.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/tracking.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/trad4all.inc.php b/main/lang/somali/trad4all.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/trad4all.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/userInfo.inc.php b/main/lang/somali/userInfo.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/userInfo.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/videoconf.inc.php b/main/lang/somali/videoconf.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/videoconf.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/wiki.inc.php b/main/lang/somali/wiki.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/wiki.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/somali/work.inc.php b/main/lang/somali/work.inc.php
new file mode 100644
index 0000000000..fdfb06ff3d
--- /dev/null
+++ b/main/lang/somali/work.inc.php
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/main/lang/spanish/admin.inc.php b/main/lang/spanish/admin.inc.php
index 7b8c3bbcba..ed4354351f 100644
--- a/main/lang/spanish/admin.inc.php
+++ b/main/lang/spanish/admin.inc.php
@@ -1537,6 +1537,8 @@ $AllowBrowserSnifferComment = "Esto activará un investigador de las capacidades
$EnableWamiRecordTitle = "Activar Wami-recorder";
$EnableWamiRecordComment = "Wami-recorder es una herramienta de grabación de voz sobre Flash";
$ChangeSharedSetting = "Cambiar visibilidad de la configuración para los otros portales";
+$AllowHRSkillsManagementTitle = "Permitir al perfil RRHH administrar las competencias";
+$AllowHRSkillsManagementComment = "El usuario podrá crear, editar competencias";
$GradebookDefaultWeightTitle = "Peso total por defecto en la herramienta \"Evaluaciones\"";
$GradebookDefaultWeightComment = "Este peso será utilizado en todos los cursos";
?>
\ No newline at end of file
diff --git a/main/lang/spanish/gradebook.inc.php b/main/lang/spanish/gradebook.inc.php
index cea6066c59..06ddb6b4a9 100644
--- a/main/lang/spanish/gradebook.inc.php
+++ b/main/lang/spanish/gradebook.inc.php
@@ -228,4 +228,8 @@ $SelectGradebook = "Seleccionar evaluación";
$CheckYourGradingModelValues = "Compruebe sus valores de modelo de evaluación";
$SkillsAchievedWhenAchievingThisGradebook = "Competencias obtenidas al lograr esta evaluación";
$AddGradebook = "Añadir evaluación";
+$SelectGradeModel = "Seleccionar un modelo de calificación";
+$AllMustWeight100 = "La suma debe ser de 100";
+$Components = "Componentes";
+$OnlyActiveWhenThereAreAnyComponents = "Esta opción está habilitada si tiene evaluaciones o categorías";
?>
\ No newline at end of file
diff --git a/main/lang/spanish/trad4all.inc.php b/main/lang/spanish/trad4all.inc.php
index 91b2852dfd..b2daef339b 100644
--- a/main/lang/spanish/trad4all.inc.php
+++ b/main/lang/spanish/trad4all.inc.php
@@ -1062,7 +1062,7 @@ $CourseCodeAlreadyExistExplained = "Cuando un código de curso se duplica, el si
$CantDeleteReadonlyFiles = "No se puede eliminar los archivos que están configurados en modo de sólo lectura";
$Uploaded = "Subido.";
$Saved = "Guardado.";
-$GotoCourse = "Ir al curso";
+$Reset = "Reinicializar";
$EmailSentFromDokeos = "Correo electrónico enviado desde la plataforma";
$InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Información sobre el último paso terminado y el siguiente sin terminar.";
$LatexCode = "Código LaTeX";
@@ -1222,4 +1222,7 @@ recordar)";
$WamiStartRecorder = "Inicie la grabación pulsando el micrófono y deténgala pulsándolo de nuevo. Cada vez que haga esto se generará un archivo.";
$InputNameHere = "Escriba el nombre aquí";
$Reload = "Recargar";
+$TimeSpentLastXDays = "Tiempo dedicado en los últimos %s días";
+$TimeSpentBetweenXAndY = "Tiempo dedicado entre el %s y el %s";
+$GoToCourse = "Ir al curso";
?>
\ No newline at end of file
diff --git a/main/lang/turkce/admin.inc.php b/main/lang/turkce/admin.inc.php
index 670ccf189d..6f529942a1 100644
--- a/main/lang/turkce/admin.inc.php
+++ b/main/lang/turkce/admin.inc.php
@@ -241,7 +241,7 @@ $OriginalName = "Orijinal adı";
$EnglishName = "İngilizce adı";
$DokeosFolder = "Chamilo klasörü";
$Properties = "Özellikler";
-$DokeosConfigSettings = "Sistem Ayarları";
+$PlatformConfigSettings = "Sistem Ayarları";
$SettingsStored = "Ayarlar kaydedildi.";
$InstitutionTitle = "Sitenin ismi";
$InstitutionComment = "Üst başlıkta, sağ tarafta gözükecek olan site ismi";
@@ -663,7 +663,7 @@ $NoticeWillBeNotDisplayed = "İkazı başlangıç sayfasında görüntülenmeyec
$LetThoseFieldsEmptyToHideTheNotice = "İkazı gizlemek için şu alanları boş bırakmasına izin ver";
$Ppt2lpVoiceRecordingNeedsRed5 = "Öğrenme düzenleyicisindeki ses kayıt özelliği Red5 akış sunucusuna bağlıdır. Bu sunucunun parametereleri mevcut sayfadaki videokonferans bölümünden yapılandırılabilir";
$PlatformCharsetTitle = "Karakter seti";
-$PlatformCharsetComment = "Karakter seti Chamilo ta kullanılan dillerin nasıl gösterileceğinin tanımlandığı yerdir. Örneğin Rus yada Japon harfleri kullanırsanız, bu seti değiştirmek isteyebilirsiniz. Tüm ingilizce, latince ve batı avrupa dilleri için ön tanımlı set iso-8859-15 olarak tanımlanabilir.";
+$PlatformCharsetComment = "Karakter seti Chamilo ta kullanılan dillerin nasıl gösterileceğinin tanımlandığı yerdir. Örneğin Rus yada Japon harfleri kullanırsanız, bu seti değiştirmek isteyebilirsiniz. Tüm ingilizce, latince ve batı avrupa dilleri için ön tanımlı set UTF-8 olarak tanımlanabilir.";
$ExtendedProfileRegistrationTitle = "Kayıtta genişletilmiş profil alanları";
$ExtendedProfileRegistrationComment = "Kullanıcı kayıt işleminde aşağıdaki genişletilmiş profil alanlarından hangilerinin bulunması zorunludur? Genişletilmiş profilin aktifleştirilmiş olmasını gerektirir (Yukarı bakınız)";
$ExtendedProfileRegistrationRequiredTitle = "Kayıtta gerekli genişletilmiş profil alanları";
diff --git a/main/lang/turkce/import.inc.php b/main/lang/turkce/import.inc.php
index 516fd54a12..ca465592e5 100644
--- a/main/lang/turkce/import.inc.php
+++ b/main/lang/turkce/import.inc.php
@@ -6,7 +6,6 @@ $langPgTitle = "Sayfa ismi";
$langExplanation = "OK tıkladığınızda, Forum, Gündem, Belge Yönetimi vs. araçlarla birlikte bu dersin sitesi yaratılır. Kullanıcı adınız ve şifrenizle giriş yaparak siteyi isteğiniz şekilde düzenleyebilirsiniz.";
$langTooBig = "Gönderilecek dosyayı seçmediniz veya dosya boyutu çok büyük";
$langCouldNot = "Dosya gönderilemedi";
-$langNotAllowed = "İzin verilmiyor";
$langAddPageToSite = "Siteye sayfa ekle";
$langCouldNotSendPage = "Bu sayfa HTML formatýnda deðil bu nedenle gönderilemez. Eðer HTML olmayan bir dosya göndermek istiyorsanýz (PDF, Word, Power Point, Video, etc.) Belge Araçlarýný kullanýnýz";
$langSendPage = "Gönderilecek sayfa";
diff --git a/main/lang/turkce/trad4all.inc.php b/main/lang/turkce/trad4all.inc.php
index 1782b9cfce..d31340dab8 100644
--- a/main/lang/turkce/trad4all.inc.php
+++ b/main/lang/turkce/trad4all.inc.php
@@ -272,7 +272,6 @@ $DocumentAdded = "Belge eklendi";
$DocumentUpdated = "Belge güncellendi";
$DocumentInFolderUpdated = "Belgenin güncellendiği klasör";
$Course_description = "Ders açıklaması";
-$Calendar_event = "Ajanda";
$Document = "Belge";
$Learnpath = "Dersler";
$Link = "Bağlantı";
diff --git a/main/mySpace/access_details.php b/main/mySpace/access_details.php
index 99b5aaa4db..bc36b22b1c 100644
--- a/main/mySpace/access_details.php
+++ b/main/mySpace/access_details.php
@@ -64,7 +64,6 @@ $(function() {
var foo_course = "'.$course_code.'";
var graph_type = "'.$type.'";
var foo_slider_state = getSliderState();
-
if (foo_slider_state == "open"){
sliderAction();
}
@@ -80,7 +79,7 @@ $(function() {
$( "#ui-tabs-2" ).html(db.graph_result);
}
else{
- $("#messages").text("No existen registros para este rango");
+ $("#messages").text("'.get_lang('NoDataAvailable').'");
$("#messages").addClass("warning-message");
$("#cev_cont_stats").html(db.stats);
$( "#ui-tabs-1" ).empty();
@@ -89,8 +88,7 @@ $(function() {
}
var foo_height = sliderGetHeight("#messages");
sliderSetHeight(".slider",foo_height);
- controlSliderMenu(foo_height);
- //$("#messages").css("height", foo_height);
+ controlSliderMenu(foo_height);
// Hide confirmation message and enable stars for "Rate this" control, after 2 sec...
/*setTimeout(function(){
$("#messages").fadeOut(1000, function(){ui.enable()})
@@ -153,7 +151,7 @@ function areBothFilled() {
$htmlHeadXtra[] = '';
@@ -163,28 +161,21 @@ $interbreadcrumb[] = array ('url' => '#', 'name' => get_lang('AccessDetails'));
Display :: display_header('');
$main_user_info = api_get_user_info($user_id);
$result_to_print = '';
-$main_date_array = array();
$sql_result = MySpace::get_connections_to_course($user_id, $course_code);
$result_to_print = convert_to_string($sql_result);
-api_display_tool_title(get_lang('DetailsStudentInCourse'));
+echo Display::page_header(get_lang('DetailsStudentInCourse'));
+echo Display::page_subheader(get_lang('User').': '.api_get_person_name($main_user_info['firstName'], $main_user_info['lastName']).' - '.get_lang('Course').': '.$course_code);
+
+$form = new FormValidator('myform', 'post', "javascript:get(document.getElementById('myform'));", null, array('id' => 'myform'));
+$form->addElement('text', 'from', get_lang('From'), array('id' => 'date_from'));
+$form->addElement('text', 'to', get_lang('Until'), array('id' => 'date_to'));
+
+$form->addElement('style_submit_button', 'reset', get_lang('Reset'), array('onclick' => "javascript:window.location='access_details.php?course=".$course_code."&student=".$user_id."&cidReq=".$course_code."';"));
+$form->display();
?>
';
}
@@ -7765,28 +7742,28 @@ class learnpath {
$session_id = api_get_session_id();
$condition_session = api_get_session_condition($session_id);
- $sql_link = "SELECT * FROM $tbl_link WHERE c_id = ".$course_id." $condition_session ORDER BY title ASC";
- $res_link = Database::query($sql_link);
+ $sql_link = "SELECT id, title FROM $tbl_link WHERE c_id = ".$course_id." $condition_session ORDER BY title ASC";
+ $res_link = Database::query($sql_link);
- //$return .= '