diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000000..52488ddbd096 --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,35 @@ +name: checks +on: [pull_request] +jobs: + tests: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + php: [7.2, 7.3, 7.4] + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: dom, curl, libxml, mbstring, zip, gd, json, readline, xsl + tools: composer:v1 + coverage: none + + - name: Install dependencies + run: composer install --no-interaction --no-progress + + - name: PHP Unit Test + run: CI/PHPUnit/run_tests.sh + + - name: Install PHP CS Fixer + run: composer require friendsofphp/php-cs-fixer --no-interaction --no-progress + + - name: PHP CS Fixer + run: CI/PHP-CS-Fixer/run_check.sh + + - name: Special Char Checker + run: CI/Special-Char-Checker/special-char-checker.sh diff --git a/.htaccess b/.htaccess index 08513b37af2f..a2a32b63e1f8 100644 --- a/.htaccess +++ b/.htaccess @@ -12,7 +12,8 @@ RewriteCond %{HTTP_USER_AGENT} ^(DavClnt)$ RewriteCond %{REQUEST_METHOD} ^(OPTIONS)$ RewriteRule .* "-" [R=401,L] - + + RedirectMatch 404 /\.git diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 79af0ebf014f..000000000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: php -matrix: - include: - - php: 7.2 - - php: 7.3 - - php: 7.4 -script: -- ./CI/PHPUnit/run_tests_with_reporting.sh; -- if [[ "$TRAVIS_EVENT_TYPE" == "cron" ]]; then travis_wait 60 ./CI/PHP-CS-Fixer/run_check.sh; fi -- ./CI/Special-Char-Checker/special-char-checker.sh ./ php; -addons: - apt: - packages: - - unzip -install: -- composer self-update --1 -- composer install -env: - global: - secure: c43mDcrMbH53mAGZdASJ8HkVpjxbEi388HTegyFGFhVLWk6/srrWUGJtYPkVGvhv2/5s5VQiHelXpjT9vi9iKi9wQCZcudBALjvywPY+OuMdDSs8priMpedRWYcR+l8DGNxfubgp8hb2tcZJh2IwzlOlPRvYhOPoCZZHp9i2AoEHEMmpIMagtBSg7jg7kchQSDcnMB9BUplmDJsQwWY46Yom+8G0KQM84Hcn24SwYq6qGjFCwwdFVLhIDmKGubkKBdYpF06kOftZ8hOBwpYgjzhGhCDSIT6qj/RSgH9i4Bn2b/QzzoxlSJFW5pldiYUXWiwf4qBBisG8EnHSc/pCpTbEeXnCr9fJ8aWyakK4Fm8EjBR5Ll8hmIKR9sAboS13btr2fRMpoS1VrdbjGbFmuSNgL6rrnlbPvRSMR6smmHPRQJ7iLP8/q8jBxiPnhVG/yGeZm8Oe38ONfRAlJwfa0bfxh8ifRHSK9e9yyi2HYPejoFpIUHRzr6j/4WevQShlwaGOzEFbrCawKPJkcFuyVY2gd0sYSJQLXnefMwAGSjhtOAS4YSypL2bX75WcKXodALZRyzU6OSFlGYfPT0rdbz7scV6US0zA/T1ltlsjO6yzqlc0WuVBkZPdF270sldOluGGrwEj+9nVqsRftgC9ZdlecxeE4blCzT1cx8eUSUU= diff --git a/CI/Import/Variables.sh b/CI/Import/Variables.sh index 57d839bc152c..b5b074d89d66 100644 --- a/CI/Import/Variables.sh +++ b/CI/Import/Variables.sh @@ -1,10 +1,12 @@ #!/bin/bash TMP_DIR="/tmp" +CI_RESULTS_REPO="https://github.com/ILIAS-eLearning/CI-Results" + PHP_CS_FIXER_RESULTS_PATH="$TMP_DIR/phpfix_results" PHP_CS_FIXER="libs/composer/vendor/friendsofphp/php-cs-fixer/php-cs-fixer" -PHP_VERSION=$(phpenv version-name) +PHP_VERSION=$(php -v | tac | tail -n 1 | cut -d " " -f 2 | cut -c 1-3) PHPUNIT_PATH="$TMP_DIR/phpunit_latest_$PHP_VERSION.csv" PHPUNIT_PATH_TMP="$TMP_DIR/phpunit_changed_$PHP_VERSION.csv" PHPUNIT_RESULTS_PATH="$TMP_DIR/phpunit_results_$PHP_VERSION" diff --git a/CI/PHP-CS-Fixer/run_check.sh b/CI/PHP-CS-Fixer/run_check.sh index f6da39ad5d26..95f3ab8a56da 100755 --- a/CI/PHP-CS-Fixer/run_check.sh +++ b/CI/PHP-CS-Fixer/run_check.sh @@ -10,19 +10,21 @@ if [[ -x "$PHP_CS_FIXER" ]] printLn "Command exited with code: $PIPE_EXIT_CODE" - printLn "Cloning results repository, copy results file." - if [ -d "$TRAVIS_RESULTS_DIRECTORY" ]; then - printLn "Starting to remove old temp directory" - rm -rf "$TRAVIS_RESULTS_DIRECTORY" - fi + # We disabled reporting because we can't implement it right now + # Priority has the base function so that the tests work + #printLn "Cloning results repository, copy results file." + #if [ -d "$TRAVIS_RESULTS_DIRECTORY" ]; then + # printLn "Starting to remove old temp directory" + # rm -rf "$TRAVIS_RESULTS_DIRECTORY" + #fi - cd /tmp && git clone https://github.com/ILIAS-eLearning/CI-Results + #cd tmp && git clone $CI_RESULTS_REPO - printLn "Switching directory and run results handling." - cp "$PHP_CS_FIXER_RESULTS_PATH" "$TRAVIS_RESULTS_DIRECTORY/data/" - cd "$TRAVIS_RESULTS_DIRECTORY" && ./run.sh + #printLn "Switching directory and run results handling." + #cp "$PHP_CS_FIXER_RESULTS_PATH" "$TRAVIS_RESULTS_DIRECTORY/data/" + #cd "$TRAVIS_RESULTS_DIRECTORY" && ./run.sh else printLn "No php-cs-fixer found, please install it with the following command:" printLn "\tcomposer require friendsofphp/php-cs-fixer" -fi \ No newline at end of file +fi diff --git a/CI/PHPUnit/run_tests_with_reporting.sh b/CI/PHPUnit/run_tests_with_reporting.sh index f5c9838a30bd..acf30c860eac 100755 --- a/CI/PHPUnit/run_tests_with_reporting.sh +++ b/CI/PHPUnit/run_tests_with_reporting.sh @@ -96,4 +96,4 @@ if [[ -e "$PHPUNIT_RESULTS_PATH" ]] else printLn "No result file found, stopping!" exit 99 -fi +fi \ No newline at end of file diff --git a/CI/Special-Char-Checker/special-char-checker.sh b/CI/Special-Char-Checker/special-char-checker.sh index d227ce73ef16..a73764d78f5b 100755 --- a/CI/Special-Char-Checker/special-char-checker.sh +++ b/CI/Special-Char-Checker/special-char-checker.sh @@ -10,94 +10,76 @@ # which are usually used by old printers. Sometimes these hidden characters # like hidden spaces, tabs or newlines are added to the code accidentally. -# help -if [ "$1" == "help" ]; then - echo "General usage:" - echo "type ./charchecker.sh path_to_src_folder extension" - echo "default extension is 'php' if no extension is given" - exit 1; -fi - -# config -if [ "$1" ]; then - PATH_TO_SRC=$1 -else - echo "No path to folder specified. Exiting." - exit 1; -fi -if [ "$2" ]; then - EXTENSION=$2 -else - EXTENSION="php" -fi +# get the files from this PR to the last head +GITFILES=$(git --no-pager diff --name-only FETCH_HEAD $(git merge-base FETCH_HEAD ${TRAVIS_BRANCH})) -# Print out bla first -echo "Scanning $PATH_TO_SRC for $EXTENSION Files ..." +echo "Scanning changed files for special chars ..." -# find all the php files and check them for not wanted control characters -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" FILES=() -cd $PATH_TO_SRC - -AMOUNT_OF_FILES=$(find . -path ./libs -prune -o -type f -name '*.\'"$EXTENSION" | wc -l) -echo "Found $AMOUNT_OF_FILES files." - COUNTER=0 -for PHPFILE in $(find . -path ./libs -prune -o -type f -name '*.'"$EXTENSION"); +for PHPFILE in $GITFILES; do - if [[ $PHPFILE == "./libs" ]]; then - continue - fi - - COUNTER=$((COUNTER + 1)) - echo -ne "Scanning $COUNTER of $AMOUNT_OF_FILES"'\r'; - - TWOB=$(grep -n -C 0 "$(printf %b '\u200b')" $PHPFILE) | cut -d: -f1; - if [ "$TWOB" ]; then - FILES+=("u200b found in $PHPFILE see line(s) $TWOB") - fi - - TWOC=$(grep -n -C 0 "$(printf %b '\u200c')" $PHPFILE) | cut -d: -f1; - if [ "$TWOC" ]; then - FILES+=("u200c found in $PHPFILE see line(s) $TWOC") - fi - - TWOD=$(grep -n -C 0 "$(printf %b '\u200d')" $PHPFILE) | cut -d: -f1; - if [ "$TWOD" ]; then - FILES+=("u200d found in $PHPFILE see line(s) $TWOD") - fi - - TWOE=$(grep -n -C 0 "$(printf %b '\u200e')" $PHPFILE) | cut -d: -f1; - if [ "$TWOE" ]; then - FILES+=("u200e found in $PHPFILE see line(s) $TWOE") - fi - - TWOF=$(grep -n -C 0 "$(printf %b '\u200f')" $PHPFILE | cut -d: -f1); - if [ "$TWOF" ]; then - FILES+=("u200f found in $PHPFILE see line(s) $TWOF") - fi - - FEFF=$(grep -n -C 0 "$(printf %b '\ufeff')" $PHPFILE | cut -d: -f1); - if [ "$FEFF" ]; then - FILES+=("ufeff found in $PHPFILE see line(s) $FEFF") - fi - - OOOT=$(grep -n -C 0 "$(printf %b '\u0003')" $PHPFILE | cut -d: -f1); - if [ "$OOOT" ]; then - FILES+=("u0003 found in $PHPFILE see line(s) $OOOT") - fi - - OTWOE=$(grep -n -C 0 "$(printf %b '\u2028')" $PHPFILE | cut -d: -f1); - if [ "$OTWOE" ]; then - FILES+=("u2028 found in $PHPFILE see line(s) $OTWOE") - fi - - OOAO=$(grep -n -C 0 "$(printf %b '\u00A0' | tr -d '\n')" $PHPFILE | cut -d: -f1); - if [ "$OOAO" ]; then - FILES+=("u00A0 found in $PHPFILE see line(s) $OOAO") - fi -done; echo + FELONE="$(pwd)/$PHPFILE" + + if [ ! -f "$FELONE" ]; then + continue + fi + + if [[ $FELONE == "./libs" ]]; then + continue + fi + + # check for php extension + if [ ! ${FELONE: -4} == ".php" ]; then + continue + fi + + TWOB=$(grep -n -C 0 "$(printf %b '\u200b')" $FELONE) | cut -d: -f1; + if [ "$TWOB" ]; then + FILES+=("u200b found in $PHPFILE see line(s) $TWOB") + fi + + TWOC=$(grep -n -C 0 "$(printf %b '\u200c')" $FELONE) | cut -d: -f1; + if [ "$TWOC" ]; then + FILES+=("u200c found in $PHPFILE see line(s) $TWOC") + fi + + TWOD=$(grep -n -C 0 "$(printf %b '\u200d')" $FELONE) | cut -d: -f1; + if [ "$TWOD" ]; then + FILES+=("u200d found in $PHPFILE see line(s) $TWOD") + fi + + TWOE=$(grep -n -C 0 "$(printf %b '\u200e')" $FELONE) | cut -d: -f1; + if [ "$TWOE" ]; then + FILES+=("u200e found in $PHPFILE see line(s) $TWOE") + fi + + TWOF=$(grep -n -C 0 "$(printf %b '\u200f')" $FELONE | cut -d: -f1); + if [ "$TWOF" ]; then + FILES+=("u200f found in $PHPFILE see line(s) $TWOF") + fi + + FEFF=$(grep -n -C 0 "$(printf %b '\ufeff')" $FELONE | cut -d: -f1); + if [ "$FEFF" ]; then + FILES+=("ufeff found in $PHPFILE see line(s) $FEFF") + fi + + OOOT=$(grep -n -C 0 "$(printf %b '\u0003')" $FELONE | cut -d: -f1); + if [ "$OOOT" ]; then + FILES+=("u0003 found in $PHPFILE see line(s) $OOOT") + fi + + OTWOE=$(grep -n -C 0 "$(printf %b '\u2028')" $FELONE | cut -d: -f1); + if [ "$OTWOE" ]; then + FILES+=("u2028 found in $PHPFILE see line(s) $OTWOE") + fi + + OOAO=$(grep -n -C 0 "$(printf %b '\u00A0' | tr -d '\n')" $FELONE | cut -d: -f1); + if [ "$OOAO" ]; then + FILES+=("u00A0 found in $PHPFILE see line(s) $OOAO") + fi +done; cd $DIR AMOUNTFILES=${#FILES[@]} @@ -105,11 +87,11 @@ SEARCH="--" REPLACE=", " echo "Scan complete. Found $AMOUNTFILES incidents." if [ "$AMOUNTFILES" -gt "0" ]; then - for (( i=0; i<${AMOUNTFILES}; i++ )); - do - LINE=${FILES[$i]} - echo ${LINE//$SEARCH/$REPLACE} - done - exit 1 + for (( i=0; i<${AMOUNTFILES}; i++ )); + do + LINE=${FILES[$i]} + echo ${LINE//$SEARCH/$REPLACE} + done + exit 1 fi -exit 0 +exit 0 \ No newline at end of file diff --git a/Modules/BookingManager/BookingProcess/classes/class.ilBookingProcessGUI.php b/Modules/BookingManager/BookingProcess/classes/class.ilBookingProcessGUI.php index 18b2b078790c..28f840d2f0bc 100644 --- a/Modules/BookingManager/BookingProcess/classes/class.ilBookingProcessGUI.php +++ b/Modules/BookingManager/BookingProcess/classes/class.ilBookingProcessGUI.php @@ -513,7 +513,7 @@ protected function buildDatesBySchedule($week_start, array $hours, ilBookingSche // // Step 1a) // - // Assign multiple participants (starting from participants screen) + // Assign multiple participants (starting from participants screen) (no, from object screen!) // //Table to assing participants to an object. diff --git a/Modules/BookingManager/Participants/classes/class.ilBookingParticipant.php b/Modules/BookingManager/Participants/classes/class.ilBookingParticipant.php index 7fa8992f454c..dbd52c45a7f4 100644 --- a/Modules/BookingManager/Participants/classes/class.ilBookingParticipant.php +++ b/Modules/BookingManager/Participants/classes/class.ilBookingParticipant.php @@ -212,7 +212,7 @@ public static function getList($a_booking_pool, array $a_filter = null, $a_objec $ctrl->setParameterByClass('ilbookingparticipantgui', 'bkusr', $val['user_id']); $actions[] = array( 'text' => $lng->txt("book_assign_object"), - 'url' => $ctrl->getLinkTargetByClass("ilbookingparticipantgui", 'assignObjects') + 'url' => $ctrl->getLinkTargetByClass(["ilobjbookingpoolgui", "ilbookingparticipantgui"], 'assignObjects') ); $ctrl->setParameterByClass('ilbookingparticipantgui', 'bkusr', ''); } diff --git a/Modules/BookingManager/classes/class.ilObjBookingPoolAccess.php b/Modules/BookingManager/classes/class.ilObjBookingPoolAccess.php index 93eb60d76669..a9038ce3da8b 100644 --- a/Modules/BookingManager/classes/class.ilObjBookingPoolAccess.php +++ b/Modules/BookingManager/classes/class.ilObjBookingPoolAccess.php @@ -107,6 +107,28 @@ public function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_use return true; } + /** + * Check wether booking pool is online (legacy version) + * + * @deprecated + */ + public static function _lookupOnlineStatus($a_ids) + { + global $DIC; + + $ilDB = $DIC->database(); + + $q = "SELECT booking_pool_id, pool_offline FROM booking_settings WHERE " . + $ilDB->in("booking_pool_id", $a_ids, false, "integer"); + $lm_set = $ilDB->query($q); + $status = []; + while ($r = $ilDB->fetchAssoc($lm_set)) { + $status[$r["booking_pool_id"]] = !$r["pool_offline"]; + } + return $status; + } + + /** * @param ilWACPath $ilWACPath * diff --git a/Modules/Chatroom/chat/Bootstrap/SetupEnvironment.js b/Modules/Chatroom/chat/Bootstrap/SetupEnvironment.js index d3d8828ce50e..82c8858e993d 100644 --- a/Modules/Chatroom/chat/Bootstrap/SetupEnvironment.js +++ b/Modules/Chatroom/chat/Bootstrap/SetupEnvironment.js @@ -2,6 +2,7 @@ var CONST = require('../Constants'); var Container = require('../AppContainer'); var Winston = require('winston'); var Util = require('util'); +var DateHelper = require('../Helper/Date'); /** @@ -37,9 +38,9 @@ module.exports = function SetupEnvironment(result, callback) { filename: logFile, level: logLevel, json: false, - timestamp: function(){ - var date = new Date(); - return date.toDateString() + ' ' + date.toTimeString(); + timestamp: function() { + const t = new Date(); + return DateHelper.iso8601DatetimeFormat(t) + DateHelper.iso8601TimezoneFormat(t); }, formatter: function(options) { return Util.format( @@ -61,8 +62,8 @@ module.exports = function SetupEnvironment(result, callback) { humanReadableUnhandledException: true, json: false, timestamp: function(){ - var date = new Date(); - return date.toDateString() + ' ' + date.toTimeString(); + const t = new Date(); + return DateHelper.iso8601DatetimeFormat(t) + DateHelper.iso8601TimezoneFormat(t); }, formatter: function(options) { return Util.format( diff --git a/Modules/Chatroom/chat/Handler/AccessHandler.js b/Modules/Chatroom/chat/Handler/AccessHandler.js index 73221be49269..c691536196ab 100644 --- a/Modules/Chatroom/chat/Handler/AccessHandler.js +++ b/Modules/Chatroom/chat/Handler/AccessHandler.js @@ -43,7 +43,7 @@ AccessHandler.prototype.canAccessRoom = function(socket, subscriberId, roomId) { * @param {Socket} socket */ AccessHandler.prototype.disconnect = function(socket) { - Container.getLogger().info('Disconnected socket %s', socket.id); + Container.getLogger().debug('Disconnected socket %s', socket.id); socket.disconnect(); }; diff --git a/Modules/Chatroom/chat/Handler/AuthenticationHandler.js b/Modules/Chatroom/chat/Handler/AuthenticationHandler.js index 9f2ce4bcc0ce..b96a38c85fcc 100644 --- a/Modules/Chatroom/chat/Handler/AuthenticationHandler.js +++ b/Modules/Chatroom/chat/Handler/AuthenticationHandler.js @@ -9,7 +9,7 @@ module.exports = function(req, res, next) { Container.getLogger().warn('Access denied cause of no permission for %s', req.params.namespace); _accessDenied(res); } else { - Container.getLogger().info('Access granted for %s', req.params.namespace); + Container.getLogger().debug('Access granted for %s', req.params.namespace); next(); } }; diff --git a/Modules/Chatroom/chat/Handler/IMSocketHandler.js b/Modules/Chatroom/chat/Handler/IMSocketHandler.js index 8c7f2f82795e..1987e01550ac 100644 --- a/Modules/Chatroom/chat/Handler/IMSocketHandler.js +++ b/Modules/Chatroom/chat/Handler/IMSocketHandler.js @@ -2,7 +2,7 @@ var Container = require('../AppContainer'); module.exports = function(socket) { - Container.getLogger().info('New IM Connection with SocketId: %s', socket.id); + Container.getLogger().debug('New IM Connection with SocketId: %s', socket.id); socket.on('login', _getTask('ConversationLogin')); socket.on('conversations', _getTask('ListConversations')); diff --git a/Modules/Chatroom/chat/Handler/SocketHandler.js b/Modules/Chatroom/chat/Handler/SocketHandler.js index 6ea550f42514..b6a03ef8d57a 100644 --- a/Modules/Chatroom/chat/Handler/SocketHandler.js +++ b/Modules/Chatroom/chat/Handler/SocketHandler.js @@ -2,7 +2,7 @@ var Container = require('../AppContainer'); module.exports = function(socket) { - Container.getLogger().info('New Connection with SocketId: %s', socket.id); + Container.getLogger().debug('New Connection with SocketId: %s', socket.id); socket.on('login', _getTask('Login')); socket.on('enterRoom', _getTask('EnterRoom')); diff --git a/Modules/Chatroom/chat/Helper/Date.js b/Modules/Chatroom/chat/Helper/Date.js index 88edd73ae5d3..18f685a22d14 100644 --- a/Modules/Chatroom/chat/Helper/Date.js +++ b/Modules/Chatroom/chat/Helper/Date.js @@ -16,6 +16,51 @@ DateHelper.prototype.getTimestamp = function() { return date.getTime(); }; +DateHelper.prototype.iso8601TimezoneFormat = function(date) { + let timezone_offset_i = date.getTimezoneOffset(), + offset_H = parseInt(Math.abs(timezone_offset_i / 60)), + offset_i = Math.abs(timezone_offset_i % 60), + timezone_standard; + + if (offset_H < 10) { + offset_H = '0' + offset_H; + } + + if (offset_i < 10) { + offset_i = '0' + offset_i; + } + + if (timezone_offset_i < 0) { + timezone_standard = '+' + offset_H + ':' + offset_i; + } else if (timezone_offset_i > 0) { + timezone_standard = '-' + offset_H + ':' + offset_i; + } else if (timezone_offset_i === 0) { + timezone_standard = 'Z'; + } + + return timezone_standard +}; + +DateHelper.prototype.iso8601DatetimeFormat = function(date) { + let Y = date.getFullYear(), + m = date.getMonth() + 1, + d = date.getDate(), + H = date.getHours(), + i = date.getMinutes(), + s = date.getSeconds(); + + d = d < 10 ? '0' + d : d; + m = m < 10 ? '0' + m : m; + H = H < 10 ? '0' + H : H; + i = i < 10 ? '0' + i : i; + s = s < 10 ? '0' + s : s; + + return [ + Y + '-' + m + '-' + d + + 'T' + H + ':' + i + ':' + s + ].join(""); +}; + /** * @type {DateHelper} */ diff --git a/Modules/Chatroom/chat/SocketTasks/ConversationActivity.js b/Modules/Chatroom/chat/SocketTasks/ConversationActivity.js index 1b0da51722d3..255e38dd7e18 100644 --- a/Modules/Chatroom/chat/SocketTasks/ConversationActivity.js +++ b/Modules/Chatroom/chat/SocketTasks/ConversationActivity.js @@ -13,7 +13,7 @@ module.exports = function(conversationId, userId, timestamp) { if (conversation !== null && conversation.isParticipant(this.participant)) { namespace.getDatabase().trackActivity(conversationId, userId, timestamp); - Container.getLogger().info('Track Activity for user %s in %s: %s', userId, conversationId, timestamp); + Container.getLogger().debug('Track Activity for user %s in %s: %s', userId, conversationId, timestamp); } } }; \ No newline at end of file diff --git a/Modules/Chatroom/chat/SocketTasks/ConversationHistory.js b/Modules/Chatroom/chat/SocketTasks/ConversationHistory.js index 99602792debb..cf69c198f827 100644 --- a/Modules/Chatroom/chat/SocketTasks/ConversationHistory.js +++ b/Modules/Chatroom/chat/SocketTasks/ConversationHistory.js @@ -32,7 +32,7 @@ module.exports = function(conversationId, oldestMessageTimestamp, reverseSorting socket.participant.emit('history', json); - Container.getLogger().info('Requested History for %s since %s', conversationId, oldestMessageTimestamp); + Container.getLogger().debug('Requested History for %s since %s', conversationId, oldestMessageTimestamp); } namespace.getDatabase().loadConversationHistory( diff --git a/Modules/Chatroom/chat/SocketTasks/ConversationLogin.js b/Modules/Chatroom/chat/SocketTasks/ConversationLogin.js index 7474acbbc7c5..e5c9b8d38165 100644 --- a/Modules/Chatroom/chat/SocketTasks/ConversationLogin.js +++ b/Modules/Chatroom/chat/SocketTasks/ConversationLogin.js @@ -6,7 +6,7 @@ module.exports = function(id, name) { var namespace = Container.getNamespace(this.nsp.name); - Container.getLogger().info('Participant %s connected for namespace %s', name, namespace.getName()); + Container.getLogger().debug('Participant %s connected for namespace %s', name, namespace.getName()); var participant = namespace.getSubscriber(id); diff --git a/Modules/Chatroom/chat/SocketTasks/Disconnect.js b/Modules/Chatroom/chat/SocketTasks/Disconnect.js index 9a8acad7e98c..0a405eaa2696 100644 --- a/Modules/Chatroom/chat/SocketTasks/Disconnect.js +++ b/Modules/Chatroom/chat/SocketTasks/Disconnect.js @@ -70,7 +70,7 @@ module.exports = function() Container.removeTimeout(subscriberId); } - Container.setTimeout(subscriberId, subscriberLeftNamespaceHandler, 5000); + Container.setTimeout(subscriberId, subscriberLeftNamespaceHandler, 15000); this.subscriber.removeSocketId(this.id); }; diff --git a/Modules/Chatroom/chat/SocketTasks/ListConversations.js b/Modules/Chatroom/chat/SocketTasks/ListConversations.js index 155e55f8e248..25be74e1c9f9 100644 --- a/Modules/Chatroom/chat/SocketTasks/ListConversations.js +++ b/Modules/Chatroom/chat/SocketTasks/ListConversations.js @@ -2,7 +2,7 @@ var Container = require('../AppContainer'); var async = require('async'); module.exports = function() { - Container.getLogger().info('Requested Conversations list'); + Container.getLogger().debug('Requested Conversations list'); var namespace = Container.getNamespace(this.nsp.name); var conversations = this.participant.getConversations(); diff --git a/Modules/Cloud/classes/class.ilObjCloudGUI.php b/Modules/Cloud/classes/class.ilObjCloudGUI.php index 81994c2b86f5..cc2a0d57b53f 100644 --- a/Modules/Cloud/classes/class.ilObjCloudGUI.php +++ b/Modules/Cloud/classes/class.ilObjCloudGUI.php @@ -221,7 +221,7 @@ public static function _goto($a_target) unset($content[1]); array_pop($content); // reconstruct and set path - $_POST["path"] = implode('_', $content); + $_POST["path"] = urldecode(implode('_', $content)); } diff --git a/Modules/Exercise/PeerReview/class.ExcPeerReviewDistribution.php b/Modules/Exercise/PeerReview/class.ExcPeerReviewDistribution.php new file mode 100644 index 000000000000..8553a254b34e --- /dev/null +++ b/Modules/Exercise/PeerReview/class.ExcPeerReviewDistribution.php @@ -0,0 +1,122 @@ + + */ +class ExcPeerReviewDistribution +{ + /** + * @var array + */ + protected $user_ids = []; + + /** + * @var array + */ + protected $user_order = []; + + /** + * @var int + */ + protected $num_assignments; + + /** + * ExcPeerReviewDistribution constructor. + * @param int[] $user_ids + * @param int $num_assignments + */ + public function __construct(array $user_ids, $num_assignments) + { + $this->user_ids = array_values($user_ids); // ensure numerical indexing + + // we cannot assign more users to a single user than count($user_ids) - 1 + $num_assignments = min ($num_assignments, count($user_ids) - 1); + + // we cannot create a negative number of assignments + $num_assignments = max ($num_assignments, 0); + + $this->num_assignments = $num_assignments; + $this->initDistribution(); + } + + /** + * Init distribution + */ + protected function initDistribution() + { + $this->user_order = $this->randomUserOrder($this->user_ids); + } + + /** + * Random user order + * @param array + * @return array + */ + protected function randomUserOrder($user_ids): array + { + $order = []; + while (count($user_ids) > 0) { + $next = rand(0, count($user_ids) - 1); + $order[] = $user_ids[$next]; + unset($user_ids[$next]); + $user_ids = array_values($user_ids); // re-index + } + return $order; + } + + /** + * Get user order + * @return array + */ + public function getUserOrder(): array + { + return $this->user_order; + } + + /** + * Get peers of rater + * + * @param int $user_id + * @return int[] + */ + public function getPeersOfRater($user_id) + { + $peers = []; + $key = array_search($user_id, $this->user_order); + if ($key === false) { + return []; + } + for ($j = 1; $j <= $this->num_assignments; $j++) { + $peer_key = ($key + $j) % (count($this->user_order)); + $peers[] = $this->user_order[$peer_key]; + } + return $peers; + } + +} \ No newline at end of file diff --git a/Modules/Exercise/classes/class.ilExPeerReview.php b/Modules/Exercise/classes/class.ilExPeerReview.php index 38a3e0a4c61b..2701bfd1cd1a 100644 --- a/Modules/Exercise/classes/class.ilExPeerReview.php +++ b/Modules/Exercise/classes/class.ilExPeerReview.php @@ -73,80 +73,12 @@ public function initPeerReviews() if (!$this->hasPeerReviewGroups()) { $user_ids = $this->getValidPeerReviewUsers(); - - // forever alone - if (sizeof($user_ids) < 2) { - return false; - } - - $rater_ids = $user_ids; - $matrix = array(); - - // max number of assignments per rater? - $max = min(sizeof($user_ids) - 1, $this->assignment->getPeerReviewMin()); - for ($loop = 0; $loop < $max; $loop++) { - - // put values in keys - $run_ids = array_combine($user_ids, $user_ids); - // for all users as rater - foreach ($rater_ids as $rater_id) { - $possible_peer_ids = $run_ids; + include_once("./Modules/Exercise/PeerReview/class.ExcPeerReviewDistribution.php"); + $distribution = new \ILIAS\Exercise\PeerReview\ExcPeerReviewDistribution($user_ids, $this->assignment->getPeerReviewMin()); - - // if the rater has already peers, remove them from possible peers - if (array_key_exists($rater_id, $matrix)) { - $possible_peer_ids = array_diff($possible_peer_ids, $matrix[$rater_id]); - } - - // possible peers are all users without the rater - unset($possible_peer_ids[$rater_id]); - - // #15665 / #15883 - if (!sizeof($possible_peer_ids)) { - // no more possible peers left? start over with all valid users - $run_ids = array_combine($user_ids, $user_ids); - - // see above - $possible_peer_ids = $run_ids; - - // may not rate himself - unset($possible_peer_ids[$rater_id]); - - // already has linked peers - if (array_key_exists($rater_id, $matrix)) { - $possible_peer_ids = array_diff($possible_peer_ids, $matrix[$rater_id]); - } - } - - // #14947 - if (sizeof($possible_peer_ids)) { - - // avoid "last rater has to rate himself" in first loop - // (this ensures, that all peers have at least one rater) - // see #26908 - if ($loop == 0 && count($possible_peer_ids) == 2) { - $last_rater = end($temp = array_values($rater_ids)); - $peer_id = (current($possible_peer_ids) == $last_rater) - ? current($possible_peer_ids) - : next($possible_peer_ids); - $this->log->debug("Ensure all peers have a rater."); - } else { - $peer_id = array_rand($possible_peer_ids); - if (!array_key_exists($rater_id, $matrix)) { - $matrix[$rater_id] = array(); - } - } - $matrix[$rater_id][] = $peer_id; - } - - // remove peer_id from possible ids in this run - unset($run_ids[$peer_id]); - } - } - - foreach ($matrix as $rater_id => $peer_ids) { - foreach ($peer_ids as $peer_id) { + foreach ($user_ids as $rater_id) { + foreach ($distribution->getPeersOfRater($rater_id) as $peer_id) { $ilDB->manipulate("INSERT INTO exc_assignment_peer" . " (ass_id, giver_id, peer_id)" . " VALUES (" . $ilDB->quote($this->assignment_id, "integer") . diff --git a/Modules/Exercise/test/PeerReview/ExcPeerReviewTest.php b/Modules/Exercise/test/PeerReview/ExcPeerReviewTest.php new file mode 100644 index 000000000000..8c30f584519e --- /dev/null +++ b/Modules/Exercise/test/PeerReview/ExcPeerReviewTest.php @@ -0,0 +1,86 @@ + + */ +class ExcPeerReviewTest extends TestCase +{ + //protected $backupGlobals = false; + + protected function setUp() : void + { + parent::setUp(); + } + + protected function tearDown() : void + { + } + + protected function getDistribution($user_ids, $num_assignments) + { + include_once("./Modules/Exercise/PeerReview/class.ExcPeerReviewDistribution.php"); + return new \ILIAS\Exercise\PeerReview\ExcPeerReviewDistribution($user_ids, $num_assignments); + } + + /** + * Test if each rater has $num_assignments peers + */ + public function testDistributionNumberOfPeers() + { + $user_ids = [100,200,300,400,500]; + $num_assignments = 3; + + $distribution = $this->getDistribution($user_ids, $num_assignments); + + foreach ($user_ids as $user_id) { + $this->assertEquals(count($distribution->getPeersOfRater($user_id)), $num_assignments); + } + } + + /** + * Test if each peer is assigned to $num_assignments raters + */ + public function testDistributionNumberOfRaters() + { + $user_ids = [10,20,30,40,50]; + $num_assignments = 4; + + $distribution = $this->getDistribution($user_ids, $num_assignments); + + $peer_raters = []; + foreach ($user_ids as $user_id) { + foreach ($distribution->getPeersOfRater($user_id) as $peer) { + $peer_raters[$peer][$user_id] = $user_id; + } + } + + $this->assertEquals(count($peer_raters), count($user_ids)); + + foreach ($peer_raters as $peer => $raters) { + $this->assertEquals(count($raters), $num_assignments); + } + + } + + /** + * Test if raters are not assigned as peers to themselves + */ + public function testDistributionNoSelfAssignment() + { + $user_ids = [10,20,30,40,50]; + $num_assignments = 4; + + $distribution = $this->getDistribution($user_ids, $num_assignments); + + foreach ($user_ids as $user_id) { + foreach ($distribution->getPeersOfRater($user_id) as $peer) { + $this->assertNotEquals($user_id, $peer); + } + } + } + +} diff --git a/Modules/Exercise/test/bootstrap.php b/Modules/Exercise/test/bootstrap.php new file mode 100644 index 000000000000..958a143d478a --- /dev/null +++ b/Modules/Exercise/test/bootstrap.php @@ -0,0 +1,5 @@ + + */ +class ilModulesExerciseSuite extends TestSuite +{ + public static function suite() + { + $suite = new ilModulesExerciseSuite(); + + require_once("./Modules/Exercise/test/PeerReview/ExcPeerReviewTest.php"); + $suite->addTestSuite("ExcPeerReviewTest"); + + return $suite; + } +} \ No newline at end of file diff --git a/Modules/File/classes/Versions/class.ilFileVersionFormGUI.php b/Modules/File/classes/Versions/class.ilFileVersionFormGUI.php index 1d17e79b8881..4fd6a18f75e7 100644 --- a/Modules/File/classes/Versions/class.ilFileVersionFormGUI.php +++ b/Modules/File/classes/Versions/class.ilFileVersionFormGUI.php @@ -93,7 +93,11 @@ private function initForm() // File if ($this->dnd) { // File (D&D) - $file = new ilFileStandardDropzoneInputGUI($this->lng->txt(self::F_FILE), self::F_FILE); + $file = new ilFileStandardDropzoneInputGUI( + ilFileVersionsGUI::CMD_DEFAULT, + $this->lng->txt(self::F_FILE), + self::F_FILE + ); $file->setRequired(true); // $file->setUploadUrl($this->ctrl->getLinkTarget($this->calling_gui, ilFileVersionsGUI::C, "", true, true)); $file->setMaxFiles(1); diff --git a/Modules/File/classes/class.ilObjFileGUI.php b/Modules/File/classes/class.ilObjFileGUI.php index 405713cb72ea..061e0751fdf5 100755 --- a/Modules/File/classes/class.ilObjFileGUI.php +++ b/Modules/File/classes/class.ilObjFileGUI.php @@ -590,7 +590,11 @@ protected function initPropertiesForm($mode = "create") } if ($upload_possible) { - $file = new ilFileStandardDropzoneInputGUI($this->lng->txt('obj_file'), 'file'); + $file = new ilFileStandardDropzoneInputGUI( + 'cancel', + $this->lng->txt('obj_file'), + 'file' + ); $file->setRequired(false); $form->addItem($file); diff --git a/Modules/Forum/classes/class.ilObjForumGUI.php b/Modules/Forum/classes/class.ilObjForumGUI.php index 5dce48b372cd..52594b641c54 100755 --- a/Modules/Forum/classes/class.ilObjForumGUI.php +++ b/Modules/Forum/classes/class.ilObjForumGUI.php @@ -292,7 +292,7 @@ private function isTopLevelReplyCommand() : bool { return in_array( strtolower($this->ctrl->getCmd()), - array_map('strtolower', array('createTopLevelPost', 'quoteTopLevelPost', 'saveTopLevelPost')) + array_map('strtolower', array('createTopLevelPost', 'saveTopLevelPost', 'saveTopLevelDraft')) ); } @@ -316,7 +316,7 @@ public function executeCommand() 'savePost', 'saveTopLevelPost', 'createTopLevelPost', - 'quoteTopLevelPost', + 'saveTopLevelDraft', 'quotePost', 'getQuotationHTMLAsynch', 'autosaveDraftAsync', @@ -1970,10 +1970,11 @@ private function initReplyEditForm() $oPostGUI->addPlugin('latex'); $oPostGUI->addButton('latex'); $oPostGUI->addButton('pastelatex'); - $oPostGUI->addPlugin('ilfrmquote'); - - if (in_array($this->requestAction, ['showreply', 'showdraft'])) { - $oPostGUI->addButton('ilFrmQuoteAjaxCall'); + if (!$this->isTopLevelReplyCommand()) { + $oPostGUI->addPlugin('ilfrmquote'); + if (in_array($this->requestAction, ['showreply', 'showdraft'])) { + $oPostGUI->addButton('ilFrmQuoteAjaxCall'); + } } $oPostGUI->removePlugin('advlink'); $oPostGUI->setRTERootBlockElement(''); @@ -2118,9 +2119,7 @@ private function initReplyEditForm() } if (strtolower($rtestring) != 'iltinymce' || !ilObjAdvancedEditing::_getRichTextEditorUserState()) { - if ($this->isTopLevelReplyCommand()) { - $this->replyEditForm->addCommandButton('quoteTopLevelPost', $this->lng->txt('forum_add_quote')); - } else { + if (!$this->isTopLevelReplyCommand()) { $this->replyEditForm->addCommandButton('quotePost', $this->lng->txt('forum_add_quote')); } } @@ -2136,6 +2135,8 @@ private function initReplyEditForm() if ($this->requestAction == 'editdraft') { $this->replyEditForm->addCommandButton('updateDraft', $this->lng->txt('save_message')); + } elseif ($this->isTopLevelReplyCommand()) { + $this->replyEditForm->addCommandButton('saveTopLevelDraft', $this->lng->txt('save_message')); } else { $this->replyEditForm->addCommandButton('saveAsDraft', $this->lng->txt('save_message')); } @@ -2199,15 +2200,6 @@ public function saveTopLevelPostObject() return; } - /** - * - */ - public function quoteTopLevelPostObject() - { - $this->quotePostObject(); - return; - } - public function publishSelectedDraftObject() { if (isset($_GET['draft_id']) && (int) $_GET['draft_id'] > 0) { @@ -3115,34 +3107,15 @@ static function (ilForumPost $post) use ($draft) : bool { if ( $firstNodeInThread instanceof ilForumPost && - in_array($this->ctrl->getCmd(), array('createTopLevelPost', 'saveTopLevelPost', 'quoteTopLevelPost')) && + in_array($this->ctrl->getCmd(), array('createTopLevelPost', 'saveTopLevelPost', 'saveTopLevelDraft')) && !$this->objCurrentTopic->isClosed() && $this->access->checkAccess('add_reply', '', (int) $_GET['ref_id'])) { // Important: Don't separate the following two lines (very fragile code ...) $this->objCurrentPost->setId($firstNodeInThread->getId()); $form = $this->getReplyEditForm(); - if ($this->ctrl->getCmd() == 'saveTopLevelPost') { - $form->setValuesByPost(); - } elseif ($this->ctrl->getCmd() == 'quoteTopLevelPost') { - $authorinfo = new ilForumAuthorInformation( - $firstNodeInThread->getPosAuthorId(), - $firstNodeInThread->getDisplayUserId(), - $firstNodeInThread->getUserAlias(), - $firstNodeInThread->getImportName() - ); - + if (in_array($this->ctrl->getCmd(), ['saveTopLevelPost', 'saveTopLevelDraft'])) { $form->setValuesByPost(); - $form->getItemByPostVar('message')->setValue( - ilRTE::_replaceMediaObjectImageSrc( - $frm->prepareText( - $firstNodeInThread->getMessage(), - 1, - $authorinfo->getAuthorName() - ) . "\n" . $form->getInput('message'), - 1 - ) - ); } $this->ctrl->setParameter($this, 'pos_pk', $firstNodeInThread->getId()); $this->ctrl->setParameter($this, 'thr_pk', $firstNodeInThread->getThreadId()); @@ -4622,6 +4595,11 @@ protected function updateThreadDraftObject() $this->editThreadDraftObject($form); } + public function saveTopLevelDraftObject() : void + { + $this->saveAsDraftObject(); + } + public function saveAsDraftObject() { if (!$this->objCurrentTopic->getId()) { diff --git a/Modules/Glossary/classes/class.ilObjGlossaryAccess.php b/Modules/Glossary/classes/class.ilObjGlossaryAccess.php index 81639200debc..3a6a778fb98c 100644 --- a/Modules/Glossary/classes/class.ilObjGlossaryAccess.php +++ b/Modules/Glossary/classes/class.ilObjGlossaryAccess.php @@ -135,6 +135,29 @@ public static function _lookupOnline($a_id) return ilUtil::yn2tf($lm_rec["is_online"]); } + /** + * Check wether learning module is online (legacy version) + * + * @deprecated + */ + public static function _lookupOnlineStatus($a_ids) + { + global $DIC; + + $ilDB = $DIC->database(); + + $q = "SELECT id, is_online FROM glossary WHERE " . + $ilDB->in("id", $a_ids, false, "integer"); + $lm_set = $ilDB->query($q); + $status = []; + while ($r = $ilDB->fetchAssoc($lm_set)) { + $status[$r["id"]] = ilUtil::yn2tf($r["is_online"]); + } + + return $status; + } + + /** * check whether goto script will succeed */ diff --git a/Modules/Group/classes/class.ilGroupXMLParser.php b/Modules/Group/classes/class.ilGroupXMLParser.php index 242be4e907fb..78f86dedd302 100644 --- a/Modules/Group/classes/class.ilGroupXMLParser.php +++ b/Modules/Group/classes/class.ilGroupXMLParser.php @@ -497,21 +497,29 @@ public function __save() $flag = GRP_REGISTRATION_DIRECT; } $this->group_obj->setRegistrationType($flag); - - $end = new ilDateTime(time(), IL_CAL_UNIX); + + + $registration_end = null; if ($this->group_data['expiration_end']) { - $end = new ilDateTime($this->group_data['expiration_end'], IL_CAL_UNIX); + $registration_end = new ilDateTime($this->group_data['expiration_end'], IL_CAL_UNIX); } - $start = clone $end; + $registration_start = null; if ($this->group_data['expiration_start']) { - $start = new ilDateTime($this->group_data['expiration_start'], IL_CAL_UNIX); + $registration_start = new ilDateTime($this->group_data['expiration_start'], IL_CAL_UNIX); } + if ( + $registration_start instanceof ilDateTime && + $registration_end instanceof ilDateTime + ) { + $this->group_obj->enableUnlimitedRegistration(false); + $this->group_obj->setRegistrationStart($registration_start); + $this->group_obj->setRegistrationEnd($registration_end); - $this->group_obj->setRegistrationStart($start); - $this->group_obj->setRegistrationEnd($end); + } else { + $this->group_obj->enableUnlimitedRegistration(true); + } $this->group_obj->setPassword($this->group_data['password']); - $this->group_obj->enableUnlimitedRegistration(!isset($this->group_data['expiration_end'])); $this->group_obj->enableMembershipLimitation($this->group_data['max_members_enabled']); $this->group_obj->setMaxMembers($this->group_data['max_members'] ? $this->group_data['max_members'] : 0); $this->group_obj->enableWaitingList($this->group_data['waiting_list_enabled']); diff --git a/Modules/Group/classes/class.ilGroupXMLWriter.php b/Modules/Group/classes/class.ilGroupXMLWriter.php index 6f920d7505bb..be18c8d85088 100644 --- a/Modules/Group/classes/class.ilGroupXMLWriter.php +++ b/Modules/Group/classes/class.ilGroupXMLWriter.php @@ -150,9 +150,9 @@ public function __buildGroup() { $attrs["exportVersion"] = $this->EXPORT_VERSION; $attrs["id"] = "il_" . $this->ilias->getSetting('inst_id') . '_grp_' . $this->group_obj->getId(); - + switch ($this->group_obj->readGroupStatus()) { - case GRP_TYPE_PUBLIC: + case GRP_TYPE_OPEN: $attrs['type'] = 'open'; break; diff --git a/Modules/Group/classes/class.ilObjGroup.php b/Modules/Group/classes/class.ilObjGroup.php index 479a1c72a057..15370bd9f667 100755 --- a/Modules/Group/classes/class.ilObjGroup.php +++ b/Modules/Group/classes/class.ilObjGroup.php @@ -1502,30 +1502,21 @@ public function getGroupStatus() } /** - * get group status, redundant method because - * @access public - * @param return group status[0=public|2=closed] - */ - public function readGroupStatus() + * Read group type + * @return int + */ + public function readGroupStatus() : int { global $DIC; - $rbacsystem = $DIC['rbacsystem']; - $rbacreview = $DIC['rbacreview']; - - $local_roles = $rbacreview->getRolesOfRoleFolder($this->getRefId()); - - //get all relevant roles - $arr_globalRoles = array_diff($local_roles, $this->getDefaultGroupRoles()); - //if one global role has no permission to join the group is officially closed ! - foreach ($arr_globalRoles as $globalRole) { - if ($rbacsystem->checkPermission($this->getRefId(), $globalRole, "join")) { - return $this->group_status = GRP_TYPE_PUBLIC; - } + $tpl_id = ilDidacticTemplateObjSettings::lookupTemplateId($this->getRefId()); + $logger = $DIC->logger()->grp(); + $logger->dump($tpl_id); + if (!$tpl_id) { + return GRP_TYPE_OPEN; } - - return $this->group_status = GRP_TYPE_CLOSED; + return GRP_TYPE_CLOSED; } /** diff --git a/Modules/LearningModule/LuceneObjectDefinition.xml b/Modules/LearningModule/LuceneObjectDefinition.xml index ec1ee26981ec..ee32b4bf0b82 100644 --- a/Modules/LearningModule/LuceneObjectDefinition.xml +++ b/Modules/LearningModule/LuceneObjectDefinition.xml @@ -27,6 +27,26 @@ + + + SELECT DISTINCT po.content, ld.lm_id, ld.obj_id AS metaObjId, 'pg' AS metaType, parent_type + FROM lm_data ld + JOIN page_pc_usage us ON (us.usage_type='lm:pg' AND us.usage_id = ld.obj_id AND us.usage_hist_nr = 0) + JOIN page_object po ON (us.pc_id = po.page_id) + WHERE po.parent_type = 'mep' + AND po.active = 1 + AND us.pc_type = 'incl' + AND ld.type = 'pg' + AND ld.lm_id IN (?) + + + + + + + + + SELECT title, lm_id, obj_id, 'lm' AS metaType diff --git a/Modules/LearningModule/Presentation/classes/class.ilLMPresentationGUI.php b/Modules/LearningModule/Presentation/classes/class.ilLMPresentationGUI.php index d8efc2c807d2..72e8b9ac7fa3 100755 --- a/Modules/LearningModule/Presentation/classes/class.ilLMPresentationGUI.php +++ b/Modules/LearningModule/Presentation/classes/class.ilLMPresentationGUI.php @@ -1603,7 +1603,7 @@ public function ilMedia() $media_obj = new ilObjMediaObject($this->requested_mob_id); if (!empty($_GET["pg_id"])) { - $pg_obj = $this->getLMPage($_GET["pg_id"]); + $pg_obj = $this->getLMPage($_GET["pg_id"], $_GET["pg_type"]); $pg_obj->buildDom(); $xml = ""; @@ -2927,12 +2927,23 @@ public function getLMPageGUI($a_id) * @param * @return */ - public function getLMPage($a_id) + public function getLMPage($a_id, $a_type = "") { - if ($this->lang != "-" && ilPageObject::_exists("lm", $a_id, $this->lang)) { - return new ilLMPage($a_id, 0, $this->lang); + $type = ($a_type == "mep") + ? "mep" + : "lm"; + + $lang = $this->lang; + if (!ilPageObject::_exists($type, $a_id, $lang)) { + $lang = "-"; + } + + switch ($type) { + case "mep": + return new ilMediaPoolPage($a_id, 0, $lang); + default: + return new ilLMPage($a_id, 0, $lang); } - return new ilLMPage($a_id); } /** diff --git a/Modules/MediaPool/classes/class.ilObjMediaPoolGUI.php b/Modules/MediaPool/classes/class.ilObjMediaPoolGUI.php index 9f4e77052bac..cde2cddda16d 100755 --- a/Modules/MediaPool/classes/class.ilObjMediaPoolGUI.php +++ b/Modules/MediaPool/classes/class.ilObjMediaPoolGUI.php @@ -1992,7 +1992,11 @@ public function initBulkUploadForm() $form->setFormAction($ctrl->getFormAction($this)); $form->setPreventDoubleSubmission(false); - $item = new ilFileStandardDropzoneInputGUI($lng->txt("mep_media_files"), 'media_files'); + $item = new ilFileStandardDropzoneInputGUI( + 'cancel', + $lng->txt("mep_media_files"), + 'media_files' + ); $item->setUploadUrl($ctrl->getLinkTarget($this, "performBulkUpload", "", true, true)); $item->setMaxFiles(20); $form->addItem($item); diff --git a/Modules/OrgUnit/classes/Positions/class.ilOrgUnitPositionGUI.php b/Modules/OrgUnit/classes/Positions/class.ilOrgUnitPositionGUI.php index 1f6ec759546c..72e0224a23bb 100644 --- a/Modules/OrgUnit/classes/Positions/class.ilOrgUnitPositionGUI.php +++ b/Modules/OrgUnit/classes/Positions/class.ilOrgUnitPositionGUI.php @@ -253,7 +253,7 @@ public function addSubTabs() $this->ctrl()->saveParameter($this, 'arid'); $this->ctrl()->saveParameterByClass(ilOrgUnitDefaultPermissionGUI::class, 'arid'); $this->pushSubTab(self::SUBTAB_SETTINGS, $this->ctrl() - ->getLinkTarget($this, self::CMD_INDEX)); + ->getLinkTarget($this, self::CMD_EDIT)); $this->pushSubTab(self::SUBTAB_PERMISSIONS, $this->ctrl() ->getLinkTargetByClass(ilOrgUnitDefaultPermissionGUI::class, self::CMD_INDEX)); } diff --git a/Modules/OrgUnit/classes/class.ilObjOrgUnitGUI.php b/Modules/OrgUnit/classes/class.ilObjOrgUnitGUI.php index 9e13fdc72ca4..5443b36b92e5 100644 --- a/Modules/OrgUnit/classes/class.ilObjOrgUnitGUI.php +++ b/Modules/OrgUnit/classes/class.ilObjOrgUnitGUI.php @@ -730,11 +730,13 @@ public function &__initTableGUI() */ public function confirmedDeleteObject() { + global $DIC; if (count($_POST['id']) > 0) { foreach ($_POST['id'] as $ref_id) { $il_obj_orgunit = new ilObjOrgUnit($ref_id); $il_obj_orgunit->delete(); } + ilUtil::sendSuccess($DIC->language()->txt("info_deleted"), true); } $this->ctrl->returnToParent($this); } diff --git a/Modules/Poll/classes/class.ilObjPollAccess.php b/Modules/Poll/classes/class.ilObjPollAccess.php index 17f6cb6c195a..abaebc05c4f4 100644 --- a/Modules/Poll/classes/class.ilObjPollAccess.php +++ b/Modules/Poll/classes/class.ilObjPollAccess.php @@ -70,6 +70,13 @@ public function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_use if ($a_user_id == "") { $a_user_id = $ilUser->getId(); } + + if ( + $a_cmd == 'preview' && + $a_permission == 'read' + ) { + return false; + } // check "global" online switch if (!self::_lookupOnline($a_obj_id) && diff --git a/Modules/Portfolio/classes/class.ilObjPortfolioTemplateAccess.php b/Modules/Portfolio/classes/class.ilObjPortfolioTemplateAccess.php index 4c9816870a6f..2c9b705e619a 100644 --- a/Modules/Portfolio/classes/class.ilObjPortfolioTemplateAccess.php +++ b/Modules/Portfolio/classes/class.ilObjPortfolioTemplateAccess.php @@ -104,7 +104,29 @@ public static function _lookupOnline($a_id) { return ilObjPortfolioTemplate::lookupOnline($a_id); } - + + /** + * Check wether booking pool is online (legacy version) + * + * @deprecated + */ + public static function _lookupOnlineStatus($a_ids) + { + global $DIC; + + $ilDB = $DIC->database(); + + $q = "SELECT id, is_online FROM usr_portfolio WHERE " . + $ilDB->in("id", $a_ids, false, "integer"); + $lm_set = $ilDB->query($q); + $status = []; + while ($r = $ilDB->fetchAssoc($lm_set)) { + $status[$r["id"]] = $r["is_online"]; + } + return $status; + } + + /** * check whether goto script will succeed */ diff --git a/Modules/Session/classes/class.ilObjSessionGUI.php b/Modules/Session/classes/class.ilObjSessionGUI.php index 13f66213543d..41d535d9dd56 100644 --- a/Modules/Session/classes/class.ilObjSessionGUI.php +++ b/Modules/Session/classes/class.ilObjSessionGUI.php @@ -1220,7 +1220,14 @@ public function materialsObject() include_once "Services/Object/classes/class.ilObjectAddNewItemGUI.php"; $gui = new ilObjectAddNewItemGUI($parent_ref_id); - $gui->setDisabledObjectTypes(array("itgr", "sess")); + $gui->setDisabledObjectTypes( + array_merge( + [ + 'itgr', 'sess' + ], + $objDefinition->getSideBlockTypes() + ) + ); $gui->setAfterCreationCallback($this->ref_id); $gui->render(); diff --git a/Modules/StudyProgramme/classes/class.ilObjStudyProgramme.php b/Modules/StudyProgramme/classes/class.ilObjStudyProgramme.php index 9c5f728e2922..4968094d44e0 100644 --- a/Modules/StudyProgramme/classes/class.ilObjStudyProgramme.php +++ b/Modules/StudyProgramme/classes/class.ilObjStudyProgramme.php @@ -1005,8 +1005,8 @@ public function putInTree($a_parent_ref) /** * Remove a node from this object. * - * Throws when node is no child of the object. Throws, when manipulation - * of tree is not allowed due to invariants that need to hold on the tree. + * Throws when node is no child of the object. + * Throws when manipulation of tree is not allowed due to invariants that need to hold on the tree. * * @throws ilException * @throws ilStudyProgrammeTreeException @@ -1079,8 +1079,8 @@ public function addLeaf(ilStudyProgrammeLeaf $a_leaf) : ilObjStudyProgramme /** * Remove a leaf from this object. * - * Throws when leaf is not a child of this object. Throws, when manipulation - * of tree is not allowed due to invariants that need to hold on the tree. + * Throws when leaf is not a child of this object. + * Throws when manipulation of tree is not allowed due to invariants that need to hold on the tree. * * @throws ilException * @throws ilStudyProgrammeTreeException @@ -1101,7 +1101,7 @@ public function removeLeaf(ilStudyProgrammeLeaf $a_leaf) : ilObjStudyProgramme /** * Move this tree node to a new parent. * - * Throws, when manipulation of tree is not allowed due to invariants that + * Throws when manipulation of tree is not allowed due to invariants that * need to hold on the tree. * * @throws ilStudyProgrammeTreeException @@ -1388,8 +1388,30 @@ public function getProgressForAssignment(int $a_assignment_id) : ilStudyProgramm */ public function addMissingProgresses() : void { - foreach ($this->getAssignments() as $ass) { - $ass->addMissingProgresses(); + $progress_repository = $this->progress_repository; + $log = $this->getLog(); + + foreach ($this->getAssignments() as $ass) { /** ilStudyProgrammeUserAssignment[] */ + $id = $ass->getId(); + $assignment = $ass->getSPAssignment(); + + $mapping = function (ilObjStudyProgramme $node) use ($id, $log, $progress_repository, $assignment) { + try { + $node->getProgressForAssignment($id); + } catch (ilStudyProgrammeNoProgressForAssignmentException $e) { + $log->debug("Adding progress for: " . $id . " " . $node->getId()); + $progress_repository->update( + $progress_repository->createFor( + $node->getRawSettings(), + $assignment + )->setStatus( + ilStudyProgrammeProgress::STATUS_NOT_RELEVANT + ) + ); + } + }; + + $this->applyToSubTreeNodes($mapping, true); } } @@ -1991,7 +2013,7 @@ public static function sendReAssignedMail(int $ref_id, int $usr_id) : bool { global $DIC; $lng = $DIC['lng']; - $log = $DIC['ilLog']; + $log = $this->getLog(); $lng->loadLanguageModule("prg"); $lng->loadLanguageModule("mail"); @@ -2067,4 +2089,10 @@ public static function sendInvalidateMail(int $ref_id, int $usr_id) : bool return $send; } + + + protected function getLog() + { + return ilLoggerFactory::getLogger($this->type); + } } diff --git a/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeAutoMembershipsGUI.php b/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeAutoMembershipsGUI.php index 8b4683618fa6..de5e077c3441 100644 --- a/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeAutoMembershipsGUI.php +++ b/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeAutoMembershipsGUI.php @@ -245,6 +245,8 @@ protected function save() (is_null($src_type) || $src_type == "") || (is_null($src_id) || $src_id == 0) ) { + ilUtil::sendFailure($this->txt('no_srctype_or_id'), true); + $this->ctrl->redirect($this, self::CMD_VIEW); return; } @@ -265,6 +267,7 @@ protected function save() } $this->getObject()->storeAutomaticMembershipSource($src_type, (int) $src_id); + $this->ctrl->redirect($this, self::CMD_VIEW); } protected function deleteConfirmation() diff --git a/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeIndividualPlanGUI.php b/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeIndividualPlanGUI.php index 416b8037f5b4..627c9b41f82c 100644 --- a/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeIndividualPlanGUI.php +++ b/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeIndividualPlanGUI.php @@ -174,6 +174,9 @@ protected function updateFromCurrentPlan() ); } $ass->updateFromProgram(); + $ass->updateValidityFromProgram(); + $ass->updateDeadlineFromProgram(); + $this->ctrl->setParameter($this, "ass_id", $ass->getId()); $this->showSuccessMessage("update_from_plan_successful"); $this->ctrl->redirect($this, "manage"); @@ -352,7 +355,7 @@ protected function buildFrame($tab, $content) $user_id = $ass->getUserId(); $tpl->setVariable("USERNAME", ilObjUser::_lookupFullname($user_id)); $tabs = []; - if($this->ilAccess->checkAccess("manage_members", "", $ref_id)) { + if ($this->ilAccess->checkAccess("manage_members", "", $ref_id)) { $tabs[] = 'view'; $tabs[] = 'manage'; } diff --git a/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeMembersGUI.php b/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeMembersGUI.php index 725da4d622bf..1ff5f66cc587 100644 --- a/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeMembersGUI.php +++ b/Modules/StudyProgramme/classes/class.ilObjStudyProgrammeMembersGUI.php @@ -11,6 +11,7 @@ * @ilCtrl_Calls ilObjStudyProgrammeMembersGUI: ilStudyProgrammeMailMemberSearchGUI * @ilCtrl_Calls ilObjStudyProgrammeMembersGUI: ilStudyProgrammeChangeExpireDateGUI * @ilCtrl_Calls ilObjStudyProgrammeMembersGUI: ilStudyProgrammeChangeDeadlineGUI + * @ilCtrl_Calls ilObjStudyProgrammeMembersGUI: ilFormPropertyDispatchGUI */ class ilObjStudyProgrammeMembersGUI { @@ -214,7 +215,7 @@ protected function getDefaultCommand() : string protected function getAssignmentsById() : array { $assignments = $this->object->getAssignments(); - ; + return array_filter($assignments, function (ilStudyProgrammeUserAssignment $assignment) { return $assignment->getStudyProgramme()->getId() == $this->object->getId(); }); @@ -499,6 +500,9 @@ protected function markAccreditedById(int $prgrs_id) : void ); } $prgrs->markAccredited($this->user->getId()); + + $ass = $this->sp_user_assignment_db->getInstanceById($prgrs->getAssignmentId()); + $this->updateUserAssignmentFromProgramm($ass); } /** @@ -529,6 +533,9 @@ protected function unmarkAccreditedByProgressId(int $prgrs_id) : void ); } $prgrs->unmarkAccredited(); + + $ass = $this->sp_user_assignment_db->getInstanceById($prgrs->getAssignmentId()); + $this->updateUserAssignmentFromProgramm($ass); } /** @@ -627,7 +634,9 @@ public function updateFromCurrentPlanMulti() : void $not_updated = array(); foreach ($prgrs_ids as $key => $prgrs_id) { + //** ilStudyProgrammeUserProgress */ $prgrs = $this->getProgressObject((int) $prgrs_id); + //** ilStudyProgrammeUserAssignment */ $ass = $this->sp_user_assignment_db->getInstanceById($prgrs->getAssignmentId()); $prg = $ass->getStudyProgramme(); if ($prg->getRefId() != $this->ref_id) { @@ -635,7 +644,7 @@ public function updateFromCurrentPlanMulti() : void continue; } - $ass->updateFromProgram(); + $this->updateUserAssignmentFromProgramm($ass); } if (count($not_updated) == count($prgrs_ids)) { @@ -960,4 +969,11 @@ public function isOperationAllowedForUser(int $usr_id, string $operation) : bool return $this->mayManageMembers() || $this->position_based_access->isUserAccessibleForOperationAtPrg($usr_id, $this->object, $operation); } + + protected function updateUserAssignmentFromProgramm(ilStudyProgrammeUserAssignment $ass) : void + { + $ass->updateFromProgram(); + $ass->updateValidityFromProgram(); + $ass->updateDeadlineFromProgram(); + } } diff --git a/Modules/StudyProgramme/classes/class.ilStudyProgrammeDIC.php b/Modules/StudyProgramme/classes/class.ilStudyProgrammeDIC.php index 092167d7e9c1..a2e842fae65c 100644 --- a/Modules/StudyProgramme/classes/class.ilStudyProgrammeDIC.php +++ b/Modules/StudyProgramme/classes/class.ilStudyProgrammeDIC.php @@ -197,9 +197,7 @@ protected static function buildDIC() : Container return new ilStudyProgrammeUserAssignmentDB( $dic['ilStudyProgrammeUserProgressDB'], $dic['model.Assignment.ilStudyProgrammeAssignmentRepository'], - $dic['model.Progress.ilStudyProgrammeProgressRepository'], $tree, - $logger, $dic['ilStudyProgrammeEvents'] ); }; diff --git a/Modules/StudyProgramme/classes/class.ilStudyProgrammeMembersTableGUI.php b/Modules/StudyProgramme/classes/class.ilStudyProgrammeMembersTableGUI.php index eed296b0664f..1c8174d18702 100644 --- a/Modules/StudyProgramme/classes/class.ilStudyProgrammeMembersTableGUI.php +++ b/Modules/StudyProgramme/classes/class.ilStudyProgrammeMembersTableGUI.php @@ -303,10 +303,6 @@ protected function buildActionDropDown( ilOrgUnitOperation::OP_VIEW_INDIVIDUAL_PLAN ); - $manage_members = $parent->isOperationAllowedForUser( - $usr_id, - ilOrgUnitOperation::OP_MANAGE_MEMBERS - ) && in_array($usr_id, $this->getParentObject()->getLocalMembers()); foreach ($actions as $action) { switch ($action) { @@ -322,6 +318,10 @@ protected function buildActionDropDown( } break; case ilStudyProgrammeUserProgress::ACTION_REMOVE_USER: + $manage_members = + $parent->isOperationAllowedForUser($usr_id, ilOrgUnitOperation::OP_MANAGE_MEMBERS) + && in_array($usr_id, $this->getParentObject()->getLocalMembers()); + if (!$manage_members) { continue 2; } @@ -393,6 +393,7 @@ protected function fetchData( $sql .= $this->getFrom(); $sql .= $this->getWhere($prg_id); $sql .= $this->getFilterWhere($filter); + $sql .= $this->getOrguValidUsersFilter(); if ($limit !== null) { $this->db->setLimit($limit, $offset !== null ? $offset : 0); @@ -402,6 +403,7 @@ protected function fetchData( $now = (new DateTime())->format('Y-m-d H:i:s'); $members_list = array(); + while ($rec = $this->db->fetchAssoc($res)) { $rec["actions"] = ilStudyProgrammeUserProgress::getPossibleActions( $prg_id, @@ -707,4 +709,22 @@ protected function isPermissionControlledByOrguPosition() $this->prg->getPositionSettingsIsActiveForPrg() ); } + + protected function getOrguValidUsersFilter() : string + { + if ($this->getParentObject()->mayManageMembers()) { + return ''; + } + + $valid_user_ids = $this->position_based_access->getUsersInPrgAccessibleForOperation( + $this->getParentObject()->object, + ilOrgUnitOperation::OP_MANAGE_MEMBERS + ); + if (count($valid_user_ids) < 1) { + return ' AND false'; + } + return ' AND pcp.usr_id in (' + . implode(',', $valid_user_ids) + . ')'; + } } diff --git a/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignment.php b/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignment.php index a35393ba6204..cc81603b932d 100644 --- a/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignment.php +++ b/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignment.php @@ -15,7 +15,7 @@ class ilStudyProgrammeUserAssignment /** * @var ilStudyProgrammeAssignment */ - public $assignment; + protected $assignment; /** * @var ilStudyProgrammeUserProgressDB @@ -27,16 +27,6 @@ class ilStudyProgrammeUserAssignment */ protected $assignment_repository; - /** - * @var ilStudyProgrammeProgressRepository - */ - protected $progress_repository; - - /** - * @var ilLogger - */ - protected $log; - /** * @var ilStudyProgrammeEvents */ @@ -46,19 +36,14 @@ public function __construct( ilStudyProgrammeAssignment $assignment, ilStudyProgrammeUserProgressDB $sp_user_progress_db, ilStudyProgrammeAssignmentRepository $assignment_repository, - ilStudyProgrammeProgressRepository $progress_repository, - ilLogger $log, ilStudyProgrammeEvents $sp_events ) { $this->assignment = $assignment; $this->sp_user_progress_db = $sp_user_progress_db; $this->assignment_repository = $assignment_repository; - $this->progress_repository = $progress_repository; - $this->log = $log; $this->sp_events = $sp_events; } - /** * Get the id of the assignment. */ @@ -113,8 +98,8 @@ public function getRootProgress() : ilStudyProgrammeUserProgress } /** - * Assign the user belonging to this assignemnt to the prg - * belonging to this assignemnt again. + * Assign the user belonging to this assignment to the prg + * belonging to this assignment again. * * @throws ilException */ @@ -185,39 +170,48 @@ function (ilObjStudyProgramme $node) use ($id) { return $this; } - /** - * Add missing progresses for new nodes in the programm. - * - * The new progresses will be set to not relevant. - */ - public function addMissingProgresses() : ilStudyProgrammeUserAssignment + public function updateValidityFromProgram() : void { $prg = $this->getStudyProgramme(); - $id = $this->getId(); - $log = $this->log; - $progress_repository = $this->progress_repository; - $assignment = $this->assignment; - // Make $this->assignment protected again afterwards. - $prg->applyToSubTreeNodes( - function (ilObjStudyProgramme $node) use ($id,$log,$progress_repository,$assignment) { - try { - $node->getProgressForAssignment($id); - } catch (ilStudyProgrammeNoProgressForAssignmentException $e) { - $log->write("Adding progress for: " . $id . " " . $node->getId()); - $progress_repository->update( - $progress_repository->createFor( - $node->getRawSettings(), - $assignment - )->setStatus( - ilStudyProgrammeProgress::STATUS_NOT_RELEVANT - ) - ); - } - }, - true - ); + $progress = $this->getRootProgress(); + if (!$progress->hasSuccessStatus()) { + return; + } - return $this; + $validity_settings = $prg->getValidityOfQualificationSettings(); + $period = $validity_settings->getQualificationPeriod(); + $date = $validity_settings->getQualificationDate(); + + if ($period) { + $date = $progress->getCompletionDate(); + $date->add(new DateInterval('P' . $period . 'D')); + } + $progress->setValidityOfQualification($date); + $progress->storeProgress(); + } + + public function updateDeadlineFromProgram() : void + { + $prg = $this->getStudyProgramme(); + $progress = $this->getRootProgress(); + if ($progress->hasSuccessStatus()) { + return; + } + + $deadline_settings = $prg->getDeadlineSettings(); + $period = $deadline_settings->getDeadlinePeriod(); + $date = $deadline_settings->getDeadlineDate(); + if ($period) { + $date = $progress->getAssignmentDate(); + $date->add(new DateInterval('P' . $period . 'D')); + } + $progress->setDeadline($date); + $progress->storeProgress(); + } + + public function getSPAssignment() : ilStudyProgrammeAssignment + { + return $this->assignment; } /** diff --git a/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignmentDB.php b/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignmentDB.php index 1a2181c46a35..072ba0026b2c 100644 --- a/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignmentDB.php +++ b/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserAssignmentDB.php @@ -14,21 +14,11 @@ class ilStudyProgrammeUserAssignmentDB */ protected $assignment_repository; - /** - * @var ilStudyProgrammeProgressRepository - */ - protected $progress_repository; - /** * @var ilTree */ protected $tree; - /** - * @var ilLogger - */ - protected $log; - /** * @var ilStudyProgrammeEvents */ @@ -37,16 +27,12 @@ class ilStudyProgrammeUserAssignmentDB public function __construct( ilStudyProgrammeUserProgressDB $sp_user_progress_db, ilStudyProgrammeAssignmentRepository $assignment_repository, - ilStudyProgrammeProgressRepository $progress_repository, ilTree $tree, - ilLogger $log, ilStudyProgrammeEvents $sp_events ) { $this->sp_user_progress_db = $sp_user_progress_db; $this->assignment_repository = $assignment_repository; - $this->progress_repository = $progress_repository; $this->tree = $tree; - $this->log = $log; $this->sp_events = $sp_events; } @@ -61,8 +47,6 @@ public function getInstanceById(int $id) $assignment, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); } @@ -73,8 +57,6 @@ public function getInstanceByModel(\ilStudyProgrammeAssignment $assignment) $assignment, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); } @@ -93,8 +75,6 @@ public function getInstancesOfUser(int $user_id) $ass, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); continue 2; @@ -112,8 +92,6 @@ public function getInstancesForProgram(int $program_id) $ass, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); }, array_values($assignments)); // use array values since we want keys 0... @@ -130,8 +108,6 @@ function ($ass) { $ass, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); }, @@ -150,8 +126,6 @@ function ($ass) { $ass, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); }, @@ -175,8 +149,6 @@ public function getDashboardInstancesforUser(int $usr_id) : array $assignment, $this->sp_user_progress_db, $this->assignment_repository, - $this->progress_repository, - $this->log, $this->sp_events ); } diff --git a/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserProgress.php b/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserProgress.php index d13def6e8753..9021b1725dc9 100644 --- a/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserProgress.php +++ b/Modules/StudyProgramme/classes/class.ilStudyProgrammeUserProgress.php @@ -53,9 +53,9 @@ public function __construct( } /** - * Get the program node where this progress belongs to was made. + * Get the program node this progress belongs to. * - * Throws when program this assignment is about has no ref id. + * Throws when the according program has no ref id. * * TODO: I'm quite sure, this will profit from caching. * @@ -213,6 +213,11 @@ public function setValidityOfQualification(DateTime $date = null) : void $this->progress->setValidityOfQualification($date); } + public function storeProgress() : void + { + $this->progress_repository->update($this->progress); + } + /** * Delete the assignment from database. */ @@ -1001,4 +1006,15 @@ public static function sendRiskyToFailMail(int $progress_id, int $usr_id) : void $usr_progress_db->reminderSendFor($usr_progress->getId()); } } + + public function hasSuccessStatus() : bool + { + return in_array( + $this->getStatus(), + [ + ilStudyProgrammeProgress::STATUS_COMPLETED, + ilStudyProgrammeProgress::STATUS_ACCREDITED + ] + ); + } } diff --git a/Modules/StudyProgramme/classes/model/Assignments/class.ilStudyProgrammeAssignment.php b/Modules/StudyProgramme/classes/model/Assignments/class.ilStudyProgrammeAssignment.php index 0e21325e05dd..42174042fef5 100644 --- a/Modules/StudyProgramme/classes/model/Assignments/class.ilStudyProgrammeAssignment.php +++ b/Modules/StudyProgramme/classes/model/Assignments/class.ilStudyProgrammeAssignment.php @@ -218,7 +218,7 @@ public function getRestartDate() } /** - * Set the date, at which the user was be reassigned to the programme + * Set the id of the assignment which was intiated due to expiring progress of this assignment. */ public function setRestartedAssignmentId(int $id) : ilStudyProgrammeAssignment { @@ -227,7 +227,7 @@ public function setRestartedAssignmentId(int $id) : ilStudyProgrammeAssignment } /** - * Get the date, at which the user was reassigned to the programme + * Get the id of the assignment which was intiated due to expiring progress of this assignment. * * @return int */ diff --git a/Modules/StudyProgramme/classes/model/Progress/class.ilStudyProgrammeProgress.php b/Modules/StudyProgramme/classes/model/Progress/class.ilStudyProgrammeProgress.php index 45c1ca0a0a21..d500c0b13e8f 100644 --- a/Modules/StudyProgramme/classes/model/Progress/class.ilStudyProgrammeProgress.php +++ b/Modules/StudyProgramme/classes/model/Progress/class.ilStudyProgrammeProgress.php @@ -288,8 +288,7 @@ public function getStatus() : int /** * Set the status of this node. * - * Throws when status is none of ilStudyProgrammeProgress::STATUS_*. Throws when - * current status is STATUS_COMPLETED. + * Throws when status is none of ilStudyProgrammeProgress::STATUS_*. */ public function setStatus(int $a_status) : ilStudyProgrammeProgress { @@ -346,7 +345,7 @@ public function getLastChangeBy() */ public function setLastChangeBy(int $a_usr_id = null) : ilStudyProgrammeProgress { - if ($a_usr_id !== null && ilObject::_lookupType($a_usr_id) != "usr") { + if (is_null($a_usr_id) || $a_usr_id < 0) { throw new ilException("ilStudyProgrammeProgress::setLastChangeBy: '$a_usr_id' " . "is no id of a user."); } diff --git a/Modules/StudyProgramme/test/model/Progress/ilStudyProgrammeProgressTest.php b/Modules/StudyProgramme/test/model/Progress/ilStudyProgrammeProgressTest.php index 31a5fca9f441..159693767218 100644 --- a/Modules/StudyProgramme/test/model/Progress/ilStudyProgrammeProgressTest.php +++ b/Modules/StudyProgramme/test/model/Progress/ilStudyProgrammeProgressTest.php @@ -1,26 +1,7 @@ -expectException(\ilException::class); $spp = (new ilStudyProgrammeProgress(123))->setAmountOfPoints(-321); } @@ -85,11 +66,11 @@ public function test_current_amount_of_points() public function status() { return [ - [1] - ,[2] - ,[3] - ,[4] - ,[5] + [ilStudyProgrammeProgress::STATUS_IN_PROGRESS], + [ilStudyProgrammeProgress::STATUS_COMPLETED], + [ilStudyProgrammeProgress::STATUS_ACCREDITED], + [ilStudyProgrammeProgress::STATUS_NOT_RELEVANT], + [ilStudyProgrammeProgress::STATUS_FAILED] ]; } @@ -104,10 +85,10 @@ public function test_status($status) /** * @depends test_init_and_id - * @expectedException ilException */ public function test_status_invalid() { + $this->expectException(\ilException::class); $spp = (new ilStudyProgrammeProgress(123))->setStatus(321); } @@ -131,13 +112,22 @@ public function test_last_change_by() /** * @depends test_init_and_id - * @expectedException ilException */ public function test_last_change_by_invalid() { + $this->expectException(\ilException::class); $spp = (new ilStudyProgrammeProgress(123))->setLastChangeBy(-1); } + /** + * @depends test_init_and_id + */ + public function test_last_change_by_null() + { + $this->expectException(\ilException::class); + $spp = (new ilStudyProgrammeProgress(123))->setLastChangeBy(); + } + /** * @depends test_init_and_id */ @@ -194,22 +184,22 @@ public function test_invalidate() } /** - * @expectedException ilException * @depends test_vq_date */ public function test_invalidate_non_expired_1() { + $this->expectException(\ilException::class); $tomorrow = new DateTime(); $tomorrow->add(new DateInterval('P1D')); $spp = (new ilStudyProgrammeProgress(123))->setValidityOfQualification($tomorrow)->invalidate(); } /** - * @expectedException ilException * @depends test_vq_date */ public function test_invalidate_non_expired_2() { + $this->expectException(\ilException::class); $spp = (new ilStudyProgrammeProgress(123))->invalidate(); } } diff --git a/Modules/Test/classes/class.ilTestEvaluationData.php b/Modules/Test/classes/class.ilTestEvaluationData.php index 979b00da4763..542cde83f18d 100755 --- a/Modules/Test/classes/class.ilTestEvaluationData.php +++ b/Modules/Test/classes/class.ilTestEvaluationData.php @@ -204,6 +204,7 @@ public function generateOverview() } $this->getParticipant($row["active_fi"])->getPass($row["pass"])->setNrOfAnsweredQuestions($row["answeredquestions"]); + $this->getParticipant($row["active_fi"])->getPass($row["pass"])->setWorkingTime($row["workingtime"]); $this->getParticipant($row["active_fi"])->getPass($row["pass"])->setExamId((string) $row["exam_id"]); $this->getParticipant($row['active_fi'])->getPass($row['pass'])->setRequestedHintsCount($row['hint_count']); diff --git a/Modules/Test/classes/class.ilTestPlayerAbstractGUI.php b/Modules/Test/classes/class.ilTestPlayerAbstractGUI.php index d79856e30e5c..979d6ba507f3 100755 --- a/Modules/Test/classes/class.ilTestPlayerAbstractGUI.php +++ b/Modules/Test/classes/class.ilTestPlayerAbstractGUI.php @@ -2589,10 +2589,6 @@ protected function populateModals() $this->populateNextLocksUnchangedModal(); } - - if ($this->object->getKioskMode()) { - $this->tpl->addJavaScript(ilUIFramework::BOWER_BOOTSTRAP_JS, true); - } } protected function populateDiscardSolutionModal() diff --git a/Modules/TestQuestionPool/classes/class.assImagemapQuestionGUI.php b/Modules/TestQuestionPool/classes/class.assImagemapQuestionGUI.php index 9d6dfa8613b8..7cba31980182 100755 --- a/Modules/TestQuestionPool/classes/class.assImagemapQuestionGUI.php +++ b/Modules/TestQuestionPool/classes/class.assImagemapQuestionGUI.php @@ -327,11 +327,11 @@ public function areaEditor($shape = '') ilUtil::sendInfo($this->lng->txt("polygon_click_starting_point")); } elseif (count($coords) == 1) { ilUtil::sendInfo($this->lng->txt("polygon_click_next_point")); - $preview->addPoint($preview->getAreaCount(), join(",", $coords), true, "blue"); + $preview->addPoint($preview->getAreaCount(), implode(",", $coords), true, "blue"); } elseif (count($coords) > 1) { ilUtil::sendInfo($this->lng->txt("polygon_click_next_or_save")); $disabled_save = ""; - $c = join(",". $coords); + $c = implode(",", $coords); } break; } diff --git a/Modules/TestQuestionPool/classes/feedback/class.ilAssQuestionFeedback.php b/Modules/TestQuestionPool/classes/feedback/class.ilAssQuestionFeedback.php index b65c0f3f1a50..35f4b0d8fd15 100644 --- a/Modules/TestQuestionPool/classes/feedback/class.ilAssQuestionFeedback.php +++ b/Modules/TestQuestionPool/classes/feedback/class.ilAssQuestionFeedback.php @@ -499,7 +499,7 @@ final public function duplicateFeedback($originalQuestionId, $duplicateQuestionI * @param integer $originalQuestionId * @param integer $duplicateQuestionId */ - final private function duplicateGenericFeedback($originalQuestionId, $duplicateQuestionId) + private function duplicateGenericFeedback($originalQuestionId, $duplicateQuestionId) { $res = $this->db->queryF( "SELECT * FROM {$this->getGenericFeedbackTableName()} WHERE question_fi = %s", @@ -558,7 +558,7 @@ final public function syncFeedback($originalQuestionId, $duplicateQuestionId) * @param integer $originalQuestionId * @param integer $duplicateQuestionId */ - final private function syncGenericFeedback($originalQuestionId, $duplicateQuestionId) + private function syncGenericFeedback($originalQuestionId, $duplicateQuestionId) { // delete generic feedback of the original question $this->db->manipulateF( @@ -725,7 +725,7 @@ public function getClassNameByType($a_type, $a_gui = false) * @param integer $pageObjectId * @return string $pageObjectEditingLink */ - final private function getPageObjectEditingLink($pageObjectType, $pageObjectId) + private function getPageObjectEditingLink($pageObjectType, $pageObjectId) { $cl = $this->getClassNameByType($pageObjectType, true); $this->ctrl->setParameterByClass($cl, 'feedback_type', $pageObjectType); @@ -814,7 +814,7 @@ final protected function getPageObjectXML($pageObjectType, $pageObjectId) * @param string $pageObjectType * @param integer $pageObjectId */ - final private function ensurePageObjectExists($pageObjectType, $pageObjectId) + private function ensurePageObjectExists($pageObjectType, $pageObjectId) { if ($pageObjectType == ilAssQuestionFeedback::PAGE_OBJECT_TYPE_GENERIC_FEEDBACK) { include_once("./Modules/TestQuestionPool/classes/feedback/class.ilAssGenFeedbackPage.php"); diff --git a/Modules/Wiki/classes/class.ilObjWikiAccess.php b/Modules/Wiki/classes/class.ilObjWikiAccess.php index 30fbc2ac171b..c8d9c05bd83a 100755 --- a/Modules/Wiki/classes/class.ilObjWikiAccess.php +++ b/Modules/Wiki/classes/class.ilObjWikiAccess.php @@ -190,6 +190,28 @@ public static function _lookupOnline($a_id) return $wk_rec["is_online"]; } + /** + * Check wether learning module is online (legacy version) + * + * @deprecated + */ + public static function _lookupOnlineStatus($a_ids) + { + global $DIC; + + $ilDB = $DIC->database(); + + $q = "SELECT id, is_online FROM il_wiki_data WHERE " . + $ilDB->in("id", $a_ids, false, "integer"); + $lm_set = $ilDB->query($q); + $status = []; + while ($r = $ilDB->fetchAssoc($lm_set)) { + $status[$r["id"]] = $r["is_online"]; + } + return $status; + } + + /** * Check wether files should be public * diff --git a/Services/ActiveRecord/class.ActiveRecordList.php b/Services/ActiveRecord/class.ActiveRecordList.php index 43933aa5e8da..1938afa6202f 100644 --- a/Services/ActiveRecord/class.ActiveRecordList.php +++ b/Services/ActiveRecord/class.ActiveRecordList.php @@ -257,7 +257,7 @@ public function innerjoinAR(ActiveRecord $ar, $on_this, $on_external, $fields = * @throws arException */ - protected function join($type = arJoin::TYPE_INNER, $tablename, $on_this, $on_external, $fields = array( '*' ), $operator = '=', $both_external = false) + protected function join($type, $tablename, $on_this, $on_external, $fields = array( '*' ), $operator = '=', $both_external = false) { if (!$this->getAR()->getArFieldList()->isField($on_this) and !$both_external) { throw new arException(arException::LIST_JOIN_ON_WRONG_FIELD, $on_this); diff --git a/Services/Authentication/classes/class.ilObjAuthSettingsGUI.php b/Services/Authentication/classes/class.ilObjAuthSettingsGUI.php index 09d9b2a1ba85..ea87cb65493c 100755 --- a/Services/Authentication/classes/class.ilObjAuthSettingsGUI.php +++ b/Services/Authentication/classes/class.ilObjAuthSettingsGUI.php @@ -1274,6 +1274,12 @@ private function validateApacheAuthAllowedDomains($text) return join("\n", preg_split("/[\r\n]+/", $text)); } + public function registrationSettingsObject() + { + $registration_gui = new ilRegistrationSettingsGUI(); + $this->ctrl->redirect($registration_gui); + } + /** * @param string $a_form_id * @return array @@ -1283,11 +1289,16 @@ public function addToExternalSettingsForm($a_form_id) switch ($a_form_id) { case ilAdministrationSettingsFormHandler::FORM_ACCESSIBILITY: require_once 'Services/Captcha/classes/class.ilCaptchaUtil.php'; - $fields = array( + $fields_login = array( 'adm_captcha_anonymous_short' => array(ilCaptchaUtil::isActiveForLogin(), ilAdministrationSettingsFormHandler::VALUE_BOOL), ); - return array('authentication_settings' => array('authSettings', $fields)); + $fields_registration = array( + 'adm_captcha_anonymous_short' => array(ilCaptchaUtil::isActiveForRegistration(), ilAdministrationSettingsFormHandler::VALUE_BOOL) + ); + + + return array('adm_auth_login' => array('authSettings', $fields_login), 'adm_auth_reg' => array('registrationSettings', $fields_registration)); } } } // END class.ilObjAuthSettingsGUI diff --git a/Services/COPage/classes/class.ilPCContentInclude.php b/Services/COPage/classes/class.ilPCContentInclude.php index 8926792bfdef..69acafeacd90 100644 --- a/Services/COPage/classes/class.ilPCContentInclude.php +++ b/Services/COPage/classes/class.ilPCContentInclude.php @@ -248,7 +248,7 @@ public function modifyPageContentPostXsl($a_html, $a_mode, $a_abstract_only = fa $page_gui = new ilMediaPoolPageGUI($param[1], 0, true, $snippet_lang); if ($a_mode != "offline") { $page_gui->setFileDownloadLink($this->getFileDownloadLink()); - $page_gui->setFullscreenLink($this->getFullscreenLink()); + $page_gui->setFullscreenLink($this->getFullscreenLink()."&pg_type=mep"); $page_gui->setSourcecodeDownloadScript($this->getSourcecodeDownloadScript()); } else { $page_gui->setOutputMode(ilPageObjectGUI::OFFLINE); diff --git a/Services/Calendar/templates/default/tpl.day_view.html b/Services/Calendar/templates/default/tpl.day_view.html index 4a2f77770962..1e3635ae69ac 100644 --- a/Services/Calendar/templates/default/tpl.day_view.html +++ b/Services/Calendar/templates/default/tpl.day_view.html @@ -27,9 +27,9 @@ - + {TXT_F_DAY} - + {CONTENT_EVENT} @@ -40,13 +40,13 @@ - + {TIME} {NEW_APP_GLYPH} - + diff --git a/Services/Calendar/templates/default/tpl.week_view.html b/Services/Calendar/templates/default/tpl.week_view.html index 8bbea15c935d..9db73e0da78d 100644 --- a/Services/Calendar/templates/default/tpl.week_view.html +++ b/Services/Calendar/templates/default/tpl.week_view.html @@ -33,7 +33,7 @@ - {TXT_F_DAY} + {TXT_F_DAY} @@ -46,9 +46,9 @@ - + {TIME} - + diff --git a/Services/Component/classes/class.ilPluginAdmin.php b/Services/Component/classes/class.ilPluginAdmin.php index 96eecd008175..cc008b0dda9f 100644 --- a/Services/Component/classes/class.ilPluginAdmin.php +++ b/Services/Component/classes/class.ilPluginAdmin.php @@ -64,7 +64,7 @@ public function __construct() * * @throws ilPluginException */ - final private function getPluginData($a_ctype, $a_cname, $a_slot_id, $a_pname) + private function getPluginData($a_ctype, $a_cname, $a_slot_id, $a_pname) { if (!isset($this->got_data[$a_ctype][$a_cname][$a_slot_id][$a_pname])) { $slot_name = ilPluginSlot::lookupSlotName($a_ctype, $a_cname, $a_slot_id); diff --git a/Services/Container/classes/class.ilContainer.php b/Services/Container/classes/class.ilContainer.php index 57827940e2b6..cf96618dcbcf 100755 --- a/Services/Container/classes/class.ilContainer.php +++ b/Services/Container/classes/class.ilContainer.php @@ -1258,7 +1258,6 @@ protected function applyContainerUserFilter($objects, ilContainerUserFilter $con return $i["obj_id"]; }, $objects); $filter_data = $container_user_filter->getData(); - foreach ($filter_data as $key => $val) { if (count($obj_ids) == 0) { // stop if no object ids are left continue; @@ -1306,6 +1305,7 @@ protected function applyContainerUserFilter($objects, ilContainerUserFilter $con $result_obj_ids[] = $rec["obj_id"]; } $obj_ids = array_intersect($obj_ids, $result_obj_ids); + $obj_ids = $this->legacyOnlineFilter($obj_ids, $objects, $val); } } elseif ($field_id == ilContainerFilterField::STD_FIELD_TUTORIAL_SUPPORT) { $result = null; @@ -1416,4 +1416,65 @@ function ($i) { return $objects; } + + /** + * Legacy online filter + * + * This can be removed, once all objects use the central online/offline property + * + * @param $obj_ids + * @param $objects + * @param $val + * @return mixed + */ + protected function legacyOnlineFilter($obj_ids, $objects, $val) + { + $legacy_types = ["glo", "wiki", "qpl", "book", "dcl", "prtt"]; + foreach ($legacy_types as $type) { + $lobjects = array_filter($objects, function($o) use ($type) { + return ($o["type"] == $type); + }); + $lobj_ids = array_map(function($i){ + return $i["obj_id"]; + }, $lobjects); + switch($type) { + case "glo": + $status = ilObjGlossaryAccess::_lookupOnlineStatus($lobj_ids); + break; + case "wiki": + $status = ilObjWikiAccess::_lookupOnlineStatus($lobj_ids); + break; + case "book": + $status = ilObjBookingPoolAccess::_lookupOnlineStatus($lobj_ids); + break; + case "qpl": + $status = []; + foreach ($lobj_ids as $lid) { + $status[$lid] = ilObjQuestionPoolAccess::isOnline($lid); + } + break; + case "dcl": + $status = []; + foreach ($lobj_ids as $lid) { + $status[$lid] = ilObjDataCollectionAccess::_lookupOnline($lid); + } + break; + case "prtt": + $status = ilObjPortfolioTemplateAccess::_lookupOnlineStatus($lobj_ids); + break; + } + foreach($status as $obj_id => $online) { + if ($val == 1 && !$online || $val == 2 && $online) { + if (($key = array_search($obj_id, $obj_ids)) !== false) { + unset($obj_ids[$key]); + } + } else if (!in_array($obj_id, $obj_ids)) { + $obj_ids[] = $obj_id; + } + } + } + + return $obj_ids; + } + } // END class ilContainer diff --git a/Services/Container/classes/class.ilContainerContentGUI.php b/Services/Container/classes/class.ilContainerContentGUI.php index 57067ae69c82..6d60afa70ecf 100644 --- a/Services/Container/classes/class.ilContainerContentGUI.php +++ b/Services/Container/classes/class.ilContainerContentGUI.php @@ -917,7 +917,17 @@ public function renderItemGroup($a_itgr) include_once('./Services/Container/classes/class.ilContainerSorting.php'); include_once('./Services/Object/classes/class.ilObjectActivation.php'); $items = ilObjectActivation::getItemsByItemGroup($a_itgr['ref_id']); - + + // get all valid ids (this is filtered) + $all_ids = array_map(function($i) { + return $i["child"]; + }, $this->items["_all"]); + + // remove filtered items + $items = array_filter($items, function ($i) use ($all_ids) { + return in_array($i["ref_id"], $all_ids); + }); + // if no permission is given, set the items to "rendered" but // do not display the whole block if (!$perm_ok) { diff --git a/Services/Container/classes/class.ilContainerSorting.php b/Services/Container/classes/class.ilContainerSorting.php index 25ae22f6979b..acd03de96ed6 100644 --- a/Services/Container/classes/class.ilContainerSorting.php +++ b/Services/Container/classes/class.ilContainerSorting.php @@ -409,7 +409,7 @@ public function savePost($a_type_positions) if ($key == "blocks") { $this->saveBlockPositions($position); } elseif (!is_array($position)) { - $items[$key] = $position * 100; + $items[$key] = ((float) $position) * 100; } else { foreach ($position as $parent_id => $sub_items) { $this->saveSubItems($key, $parent_id, $sub_items ? $sub_items : array()); @@ -498,7 +498,6 @@ protected function saveSubItems($a_parent_type, $a_parent_id, $a_items) protected function saveBlockPositions(array $a_values) { $ilDB = $this->db; - asort($a_values); $ilDB->replace( 'container_sorting_bl', diff --git a/Services/Cron/templates/default/tpl.cron_job_row.html b/Services/Cron/templates/default/tpl.cron_job_row.html index 4ebb6f15492b..b1bbdf20a80d 100644 --- a/Services/Cron/templates/default/tpl.cron_job_row.html +++ b/Services/Cron/templates/default/tpl.cron_job_row.html @@ -1,37 +1,23 @@ - - - - - {VAL_ID} - -
{VAL_DESC}
- - - - {VAL_COMPONENT} - - - {VAL_SCHEDULE} - - - {VAL_STATUS} - - - {VAL_STATUS_INFO} - - - {VAL_RESULT} - - - {VAL_RESULT_INFO} - - - {VAL_LAST_RUN} - - - - {TXT_ACTION}
- - + + + + + {VAL_ID} + +
{VAL_DESC}
+ + + {VAL_COMPONENT} + {VAL_SCHEDULE} + {VAL_STATUS} + {VAL_STATUS_INFO} + {VAL_RESULT} + {VAL_RESULT_INFO} + {VAL_LAST_RUN} + + + {TXT_ACTION}
+ + \ No newline at end of file diff --git a/Services/Database/classes/PDO/class.ilDBPdoMySQL.php b/Services/Database/classes/PDO/class.ilDBPdoMySQL.php index 1bec1407ac69..c2adb3a8b93d 100644 --- a/Services/Database/classes/PDO/class.ilDBPdoMySQL.php +++ b/Services/Database/classes/PDO/class.ilDBPdoMySQL.php @@ -28,7 +28,7 @@ public function initHelpers() protected function initSQLMode() { - $this->pdo->query("SET SESSION sql_mode = 'IGNORE_SPACE,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';"); + $this->pdo->query("SET SESSION sql_mode = 'IGNORE_SPACE,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';"); } diff --git a/Services/Form/classes/class.ilFileStandardDropzoneInputGUI.php b/Services/Form/classes/class.ilFileStandardDropzoneInputGUI.php index 9a34c35e61ec..f2e9f93ce843 100755 --- a/Services/Form/classes/class.ilFileStandardDropzoneInputGUI.php +++ b/Services/Form/classes/class.ilFileStandardDropzoneInputGUI.php @@ -62,6 +62,22 @@ class ilFileStandardDropzoneInputGUI extends ilFileInputGUI implements ilToolbar */ protected $dropzone_message = ''; + /** + * @var string Bugfix mantis 0025881: used to determine the cancel-button to prevent file upload validation when cancelling + */ + protected $cancel_command; + + /** + * ilFileStandardDropzoneInputGUI constructor. + * @param string $cancel_command required as a bugfix for mantis 0025881 + * @param string $a_title + * @param string $a_postvar + */ + public function __construct($cancel_command, $a_title = "", $a_postvar = "") + { + $this->cancel_command = $cancel_command; + parent::__construct($a_title, $a_postvar); + } /** * @return string the URL where the form will be sent to. @@ -178,7 +194,7 @@ public function render($a_mode = "") // We need some javascript magic $this->ui()->mainTemplate()->addJavaScript('./Services/Form/js/ilFileStandardDropzoneInputGUI.js'); - $this->ui()->mainTemplate()->addOnLoadCode("ilFileStandardDropzoneInputGUI.init('ilFileStandardDropzoneInputGUIWrapper{$n}');"); + $this->ui()->mainTemplate()->addOnLoadCode("ilFileStandardDropzoneInputGUI.init('ilFileStandardDropzoneInputGUIWrapper{$n}', '{$this->cancel_command}');"); return $out; } diff --git a/Services/Form/js/Form.js b/Services/Form/js/Form.js index 74608348385a..72a9ee7d69e1 100644 --- a/Services/Form/js/Form.js +++ b/Services/Form/js/Form.js @@ -441,4 +441,9 @@ il.Form = { }; // init forms -il.Util.addOnLoad(il.Form.init); \ No newline at end of file +il.Util.addOnLoad(il.Form.init); + +// see #27281 +$(document).on('dp.show', function(event) { + il.UI.page.fit($('.bootstrap-datetimepicker-widget')); +}); \ No newline at end of file diff --git a/Services/Form/js/ilFileStandardDropzoneInputGUI.js b/Services/Form/js/ilFileStandardDropzoneInputGUI.js index 637cc6c769c2..c5334725c5d7 100644 --- a/Services/Form/js/ilFileStandardDropzoneInputGUI.js +++ b/Services/Form/js/ilFileStandardDropzoneInputGUI.js @@ -1,23 +1,37 @@ var ilFileStandardDropzoneInputGUI = (function ($) { - var init = function (wrapper_id) { - var wrapper = $('#' + wrapper_id); - var uploadId = wrapper.find('.il-dropzone-base').attr('id'); - var form = wrapper.closest('form'); - var handledUpload = false; - var buttonName = form.find('input[type=submit]:first').attr('name'); - form.find('input[type=submit]').on("click", function () { - buttonName = $(this).attr('name'); - }); + var init = function (wrapper_id, cancel_command) { + var cancelButtonName = "cmd[" + cancel_command + "]"; + var wrapper = $('#' + wrapper_id); + var uploadId = wrapper.find('.il-dropzone-base').attr('id'); + var form = wrapper.closest('form'); + var handledUpload = false; + var buttonName = form.find('input[type=submit]:first').attr('name'); + var formAdded = false; - var params = {}; - params[buttonName] = true; - il.UI.uploader.addForm(uploadId, form.attr('id')); - il.UI.uploader.setUploadParams(uploadId, params); - }; + // bugfix mantis 0025881: + // Don't add the form to the uploader when cancel was clicked as this leads to a faulty validation or even worse an unwanted upload. + form.find('input[type=submit]').on("click", function (e) { + buttonName = $(this).attr('name'); + if (buttonName !== cancelButtonName) { + if (formAdded === false) { + il.UI.uploader.addForm(uploadId, form.attr('id')); + formAdded = true; + } + } else { + e.preventDefault(); + var preCancelFormAction = form.attr('action'); + var newFormAction = preCancelFormAction.replace(/cmd=.+?(?=&)/, ("cmd=" + cancel_command)); + location.assign(newFormAction); + } + }); + var params = {}; + params[buttonName] = true; + il.UI.uploader.setUploadParams(uploadId, params); + }; - return { - init: init - } + return { + init: init + } -})($); \ No newline at end of file +})($); diff --git a/Services/GlobalScreen/classes/Helper/BasicAccessCheckClosures.php b/Services/GlobalScreen/classes/Helper/BasicAccessCheckClosures.php index ef96bed713d9..91cfc6f20c85 100644 --- a/Services/GlobalScreen/classes/Helper/BasicAccessCheckClosures.php +++ b/Services/GlobalScreen/classes/Helper/BasicAccessCheckClosures.php @@ -57,6 +57,23 @@ public function isRepositoryReadable(?Closure $additional = null) : Closure }, $additional); } + public function isRepositoryVisible(?Closure $additional = null) : Closure + { + static $repo_visible; + if (!isset($repo_visible)) { + $is_user_logged_in = $this->isUserLoggedIn()(); + if (!$is_user_logged_in) { + $repo_visible = (bool) $this->dic->settings()->get('pub_section') && $this->dic->access()->checkAccess('visible', '', ROOT_FOLDER_ID); + } else { + $repo_visible = (bool) $this->dic->access()->checkAccess('visible', '', ROOT_FOLDER_ID); + } + } + + return $this->getClosureWithOptinalClosure(static function () use ($repo_visible) : bool { + return $repo_visible; + }, $additional); + } + public function isUserLoggedIn(?Closure $additional = null) : Closure { static $is_anonymous; diff --git a/Services/LDAP/classes/class.ilLDAPQuery.php b/Services/LDAP/classes/class.ilLDAPQuery.php index 7325ab064ebb..5769a3e43dc8 100644 --- a/Services/LDAP/classes/class.ilLDAPQuery.php +++ b/Services/LDAP/classes/class.ilLDAPQuery.php @@ -41,6 +41,22 @@ */ class ilLDAPQuery { + /** + * @var string + * @deprecated with PHP 7.3 (LDAP_CONTROL_PAGEDRESULTS) + */ + const IL_LDAP_CONTROL_PAGEDRESULTS = '1.2.840.113556.1.4.319'; + + /** + * @var string + */ + const IL_LDAP_SUPPORTED_CONTROL = 'supportedControl'; + + /** + * @var int + */ + const PAGINATION_SIZE = 100; + private $ldap_server_url = null; private $settings = null; @@ -263,11 +279,16 @@ private function runReadAllUsersPaged($dn) $tmp_result = new ilLDAPResult($this->lh); $cookie = ''; - + $estimated_results = 0; do { try { - ldap_control_paged_result($this->lh, 100, true, $cookie); + $res = ldap_control_paged_result($this->lh, self::PAGINATION_SIZE, true, $cookie); + if ($res === false) { + throw new ilLDAPPagingException('Result pagination failed.'); + } + } catch (Exception $e) { + $this->log->warning('Result pagination failed with message: ' . $e->getMessage()); throw new ilLDAPPagingException($e->getMessage()); } @@ -280,12 +301,16 @@ private function runReadAllUsersPaged($dn) $tmp_result->setResult($res); $tmp_result->run(); try { - ldap_control_paged_result_response($this->lh, $res, $cookie); + ldap_control_paged_result_response($this->lh, $res, $cookie, $estimated_results); + $this->log->debug('Estimated number of results: ' . $estimated_results); } catch (Exception $e) { + $this->log->warning('Result pagination failed with message: ' . $e->getMessage()); throw new ilLDAPPagingException($e->getMessage()); } } while ($cookie !== null && $cookie != ''); + // finally reset cookie + ldap_control_paged_result($this->lh, 10000, false, $cookie); return $tmp_result; } @@ -742,12 +767,32 @@ public function __destruct() } /** - * + * Check if pagination is enabled (rfc: 2696) * @return bool */ - public function checkPaginationEnabled() + public function checkPaginationEnabled() : bool { - return LDAP_OPT_PROTOCOL_VERSION >= 3; + if ($this->getServer()->getVersion() != 3) { + $this->log->info('Pagination control unavailable for ldap v' . $this->getServer()->getVersion()); + return false; + } + + $result = ldap_read($this->lh, '', '(objectClass=*)', [self::IL_LDAP_SUPPORTED_CONTROL]); + if ($result === false) { + $this->log->warning('Failed to query for pagination control'); + return false; + } + $entries = (array) (ldap_get_entries($this->lh, $result)[0] ?? []); + if ( + array_key_exists(strtolower(self::IL_LDAP_SUPPORTED_CONTROL), $entries) && + is_array($entries[strtolower(self::IL_LDAP_SUPPORTED_CONTROL)]) && + in_array(self::IL_LDAP_CONTROL_PAGEDRESULTS, $entries[strtolower(self::IL_LDAP_SUPPORTED_CONTROL)]) + ) { + $this->log->info('Using paged control'); + return true; + } + $this->log->info('Paged control disabled'); + return false; } } diff --git a/Services/MainMenu/classes/Items/Facade/class.ilMMAbstractItemFacade.php b/Services/MainMenu/classes/Items/Facade/class.ilMMAbstractItemFacade.php index fe7a4c25ede9..54ffe069cb6b 100644 --- a/Services/MainMenu/classes/Items/Facade/class.ilMMAbstractItemFacade.php +++ b/Services/MainMenu/classes/Items/Facade/class.ilMMAbstractItemFacade.php @@ -325,12 +325,32 @@ public function create() ilMMItemStorage::register($this->gs_item); } + /** + * deletes all translations associated with the current identification. + * @throws Exception + */ + protected function deleteAssociatedTranslations() + { + $ts = ilMMItemTranslationStorage::where([ + 'identification' => $this->identification->serialize(), + ], '=')->get(); + + if (!empty($ts)) { + foreach ($ts as $translation) { + if ($translation instanceof ilMMItemTranslationStorage) { + $translation->delete(); + } + } + } + } + /** * @inheritDoc */ public function delete() { if ($this->isDeletable()) { + $this->deleteAssociatedTranslations(); $serialize = $this->identification->serialize(); $mm = ilMMItemStorage::find($serialize); if ($mm instanceof ilMMItemStorage) { diff --git a/Services/Maps/templates/default/tpl.openlayers_map.html b/Services/Maps/templates/default/tpl.openlayers_map.html index 981cab0a19d3..2c246e017518 100755 --- a/Services/Maps/templates/default/tpl.openlayers_map.html +++ b/Services/Maps/templates/default/tpl.openlayers_map.html @@ -13,5 +13,5 @@
- Data CC-By-SA by OpenStreetMap + Data CC BY-SA by OpenStreetMap
diff --git a/Services/Object/classes/class.ilObjectDefinition.php b/Services/Object/classes/class.ilObjectDefinition.php index e146e02f881e..cb17cf198709 100755 --- a/Services/Object/classes/class.ilObjectDefinition.php +++ b/Services/Object/classes/class.ilObjectDefinition.php @@ -827,6 +827,27 @@ public function isSideBlock($a_obj_name) return (bool) $this->obj_data[$a_obj_name]["sideblock"]; } + /** + * @param bool $filter_repository_types + * @return string[] + */ + public function getSideBlockTypes(bool $filter_repository_types = true) : array + { + $side_block_types = []; + foreach (array_keys($this->obj_data) as $type) { + if ( + $filter_repository_types && + !$this->isAllowedInRepository($type) + ) { + continue; + } + if ($this->isSideBlock($type)) { + $side_block_types[] = $type; + } + } + return $side_block_types; + } + /** * Get all repository object types of component */ diff --git a/Services/Object/classes/class.ilObjectListGUI.php b/Services/Object/classes/class.ilObjectListGUI.php index affaceabec3d..e2f2cea4f9ac 100644 --- a/Services/Object/classes/class.ilObjectListGUI.php +++ b/Services/Object/classes/class.ilObjectListGUI.php @@ -3226,6 +3226,7 @@ public function insertIconsAndCheckboxes() // icon link if ($this->title_link_disabled || !$this->default_command || (!$this->getCommandsStatus() && !$this->restrict_to_goto)) { } else { + /* see #28926 $this->tpl->setCurrentBlock("icon_link_s"); if ($this->default_command["frame"] != "") { @@ -3238,14 +3239,15 @@ public function insertIconsAndCheckboxes() ); $this->tpl->parseCurrentBlock(); $this->tpl->touchBlock("icon_link_e"); + */ } $this->tpl->setCurrentBlock("icon"); if (!$objDefinition->isPlugin($this->getIconImageType())) { - $this->tpl->setVariable("ALT_ICON", $lng->txt("icon") . " " . $lng->txt("obj_" . $this->getIconImageType())); + $this->tpl->setVariable("ALT_ICON", $lng->txt("obj_" . $this->getIconImageType())); } else { include_once("Services/Component/classes/class.ilPlugin.php"); - $this->tpl->setVariable("ALT_ICON", $lng->txt("icon") . " " . + $this->tpl->setVariable("ALT_ICON", ilObjectPlugin::lookupTxtById($this->getIconImageType(), "obj_" . $this->getIconImageType())); } diff --git a/Services/Repository/GlobalScreen/classes/RepositoryMainBarProvider.php b/Services/Repository/GlobalScreen/classes/RepositoryMainBarProvider.php index 87c7c6c4214a..a1c705f3fe6f 100644 --- a/Services/Repository/GlobalScreen/classes/RepositoryMainBarProvider.php +++ b/Services/Repository/GlobalScreen/classes/RepositoryMainBarProvider.php @@ -42,7 +42,7 @@ public function getStaticSubItems() : array // Home $entries[] = $this->getHomeItem() - ->withVisibilityCallable($access_helper->isRepositoryReadable()) + ->withVisibilityCallable($access_helper->isRepositoryVisible()) ->withParent($top) ->withSymbol($icon) ->withPosition(10); @@ -64,7 +64,7 @@ public function getStaticSubItems() : array $entries[] = $this->mainmenu->complex($this->if->identifier('rep_tree_view')) - ->withVisibilityCallable($access_helper->isRepositoryReadable()) + ->withVisibilityCallable($access_helper->isRepositoryVisible()) ->withContentWrapper(function () { return $this->dic->ui()->factory()->legacy($this->renderRepoTree()); }) diff --git a/Services/Search/classes/Provider/SearchMetaBarProvider.php b/Services/Search/classes/Provider/SearchMetaBarProvider.php index b18313954e58..f375afeec32d 100644 --- a/Services/Search/classes/Provider/SearchMetaBarProvider.php +++ b/Services/Search/classes/Provider/SearchMetaBarProvider.php @@ -62,9 +62,6 @@ public function getMetaBarItems() : array $item = $mb ->topLegacyItem($this->getId()) ->withLegacyContent($content()) - ->withVisibilityCallable(function () { - return !$this->dic->user()->isAnonymous(); - }) ->withSymbol($this->dic->ui()->factory()->symbol()->glyph()->search()) ->withTitle($this->dic->language()->txt("Search")) ->withPosition(1) diff --git a/Services/Skill/classes/class.ilBasicSkillGUI.php b/Services/Skill/classes/class.ilBasicSkillGUI.php index 3e6efb9aef8e..33a45255be54 100644 --- a/Services/Skill/classes/class.ilBasicSkillGUI.php +++ b/Services/Skill/classes/class.ilBasicSkillGUI.php @@ -143,10 +143,12 @@ public function saveItem() return; } + $tree = new ilSkillTree(); + $it = new ilBasicSkill(); $it->setTitle($this->form->getInput("title")); $it->setDescription($this->form->getInput("description")); - $it->setOrderNr($this->form->getInput("order_nr")); + $it->setOrderNr($tree->getMaxOrderNr((int) $_GET["obj_id"]) + 10); $it->setStatus($this->form->getInput("status")); $it->setSelfEvaluation($_POST["self_eval"]); $it->create(); @@ -180,7 +182,6 @@ public function updateItem() $this->node_object->setTitle($this->form->getInput("title")); $this->node_object->setDescription($this->form->getInput("description")); - $this->node_object->setOrderNr($this->form->getInput("order_nr")); $this->node_object->setSelfEvaluation($_POST["self_eval"]); $this->node_object->setStatus($_POST["status"]); $this->node_object->update(); @@ -238,20 +239,6 @@ public function initForm($a_mode = "edit") $ta = new ilTextAreaInputGUI($lng->txt("description"), "description"); $ta->setRows(5); $this->form->addItem($ta); - - // order nr - $ni = new ilNumberInputGUI($lng->txt("skmg_order_nr"), "order_nr"); - $ni->setInfo($lng->txt("skmg_order_nr_info")); - $ni->setMaxLength(6); - $ni->setSize(6); - $ni->setRequired(true); - if ($a_mode == "create") { - include_once("./Services/Skill/classes/class.ilSkillTree.php"); - $tree = new ilSkillTree(); - $max = $tree->getMaxOrderNr((int) $_GET["obj_id"]); - $ni->setValue($max + 10); - } - $this->form->addItem($ni); // status $this->addStatusInput($this->form); diff --git a/Services/Skill/classes/class.ilPersonalSkillExplorerGUI.php b/Services/Skill/classes/class.ilPersonalSkillExplorerGUI.php index 2bbedf5bc184..e70d9bf1cb75 100644 --- a/Services/Skill/classes/class.ilPersonalSkillExplorerGUI.php +++ b/Services/Skill/classes/class.ilPersonalSkillExplorerGUI.php @@ -44,6 +44,7 @@ public function __construct($a_parent_obj, $a_parent_cmd, $a_select_gui, $a_sele $this->select_cmd = $a_select_cmd; $this->select_par = $a_select_par; + $this->lng->loadLanguageModule("skmg"); include_once("./Services/Skill/classes/class.ilSkillTree.php"); $this->tree = new ilSkillTree(); @@ -207,4 +208,22 @@ public function getNodeIcon($a_node) } return ilUtil::getImagePath("icon_" . $t . ".svg"); } + + /** + * Get node icon alt attribute + * + * @param mixed $a_node node object/array + * @return string image alt attribute + */ + public function getNodeIconAlt($a_node) + { + $lng = $this->lng; + + if ($lng->exists("skmg_" . $a_node["type"])) { + return $lng->txt("skmg_" . $a_node["type"]); + } + + return $lng->txt($a_node["type"]); + } + } diff --git a/Services/Skill/classes/class.ilSkillAssignMaterialsTableGUI.php b/Services/Skill/classes/class.ilSkillAssignMaterialsTableGUI.php index f7a537320414..5eed1cfdaa2f 100644 --- a/Services/Skill/classes/class.ilSkillAssignMaterialsTableGUI.php +++ b/Services/Skill/classes/class.ilSkillAssignMaterialsTableGUI.php @@ -45,15 +45,14 @@ public function __construct( include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php"; include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceAccessHandler.php"; $this->ws_tree = new ilWorkspaceTree($ilUser->getId()); + if (!$this->ws_tree->getRootId()) { + $this->ws_tree->createTreeForUser($ilUser->getId()); + } $this->ws_access = new ilWorkspaceAccessHandler(); $this->top_skill_id = $a_top_skill_id; $this->tref_id = (int) $a_tref_id; $this->basic_skill_id = $a_basic_skill_id; - - // workspace tree - include_once "Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php"; - $this->ws_tree = new ilWorkspaceTree($ilUser->getId()); // build title diff --git a/Services/Skill/classes/class.ilSkillCategoryGUI.php b/Services/Skill/classes/class.ilSkillCategoryGUI.php index 8feee4d90c04..93c160f0047c 100644 --- a/Services/Skill/classes/class.ilSkillCategoryGUI.php +++ b/Services/Skill/classes/class.ilSkillCategoryGUI.php @@ -205,20 +205,6 @@ public function initForm($a_mode = "edit") $ta = new ilTextAreaInputGUI($lng->txt("description"), "description"); $ta->setRows(5); $this->form->addItem($ta); - - // order nr - $ni = new ilNumberInputGUI($lng->txt("skmg_order_nr"), "order_nr"); - $ni->setInfo($lng->txt("skmg_order_nr_info")); - $ni->setMaxLength(6); - $ni->setSize(6); - $ni->setRequired(true); - if ($a_mode == "create") { - include_once("./Services/Skill/classes/class.ilSkillTree.php"); - $tree = new ilSkillTree(); - $max = $tree->getMaxOrderNr((int) $_GET["obj_id"]); - $ni->setValue($max + 10); - } - $this->form->addItem($ni); // status $this->addStatusInput($this->form); @@ -253,10 +239,13 @@ public function saveItem() return; } include_once "Services/Skill/classes/class.ilSkillCategory.php"; + + $tree = new ilSkillTree(); + $it = new ilSkillCategory(); $it->setTitle($this->form->getInput("title")); $it->setDescription($this->form->getDescription("description")); - $it->setOrderNr($this->form->getInput("order_nr")); + $it->setOrderNr($tree->getMaxOrderNr((int) $_GET["obj_id"]) + 10); $it->setSelfEvaluation($_POST["self_eval"]); $it->setStatus($_POST["status"]); $it->create(); @@ -271,7 +260,6 @@ public function getValues() $values = array(); $values["title"] = $this->node_object->getTitle(); $values["description"] = $this->node_object->getDescription(); - $values["order_nr"] = $this->node_object->getOrderNr(); $values["self_eval"] = $this->node_object->getSelfEvaluation(); $values["status"] = $this->node_object->getStatus(); $this->form->setValuesByArray($values); @@ -288,7 +276,6 @@ public function updateItem() $this->node_object->setTitle($this->form->getInput("title")); $this->node_object->setDescription($this->form->getInput("description")); - $this->node_object->setOrderNr($this->form->getInput("order_nr")); $this->node_object->setSelfEvaluation($_POST["self_eval"]); $this->node_object->setStatus($_POST["status"]); $this->node_object->update(); diff --git a/Services/Skill/classes/class.ilSkillObjDeletionHandler.php b/Services/Skill/classes/class.ilSkillObjDeletionHandler.php index b75ec35a70f6..3e50c9522bcd 100644 --- a/Services/Skill/classes/class.ilSkillObjDeletionHandler.php +++ b/Services/Skill/classes/class.ilSkillObjDeletionHandler.php @@ -40,5 +40,8 @@ public function processDeletion() ilSkillProfile::removeUserFromAllProfiles($this->obj_id); ilBasicSkill::removeAllUserData($this->obj_id); } + if ($this->obj_type == "role" && ilObject::_lookupType($this->obj_id) == "role") { + ilSkillProfile::removeRoleFromAllProfiles($this->obj_id); + } } } diff --git a/Services/Skill/classes/class.ilSkillTemplateReferenceGUI.php b/Services/Skill/classes/class.ilSkillTemplateReferenceGUI.php index 706f5b3803f1..41f19f385e04 100644 --- a/Services/Skill/classes/class.ilSkillTemplateReferenceGUI.php +++ b/Services/Skill/classes/class.ilSkillTemplateReferenceGUI.php @@ -200,20 +200,6 @@ public function initForm($a_mode = "edit") $this->form->addItem($ne); } } - - // order nr - $ni = new ilNumberInputGUI($lng->txt("skmg_order_nr"), "order_nr"); - $ni->setInfo($lng->txt("skmg_order_nr_info")); - $ni->setMaxLength(6); - $ni->setSize(6); - $ni->setRequired(true); - if ($a_mode == "create") { - include_once("./Services/Skill/classes/class.ilSkillTree.php"); - $tree = new ilSkillTree(); - $max = $tree->getMaxOrderNr((int) $_GET["obj_id"]); - $ni->setValue($max + 10); - } - $this->form->addItem($ni); // template $options = array( @@ -266,7 +252,6 @@ public function getValues() $values["description"] = $this->node_object->getDescription(); $values["selectable"] = $this->node_object->getSelfEvaluation(); $values["status"] = $this->node_object->getStatus(); - $values["order_nr"] = $this->node_object->getOrderNr(); $this->form->setValuesByArray($values); } @@ -279,12 +264,14 @@ public function saveItem() return; } + $tree = new ilSkillTree(); + $sktr = new ilSkillTemplateReference(); $sktr->setTitle($_POST["title"]); $sktr->setDescription($_POST["description"]); $sktr->setSkillTemplateId($_POST["skill_template_id"]); $sktr->setSelfEvaluation($_POST["selectable"]); - $sktr->setOrderNr($_POST["order_nr"]); + $sktr->setOrderNr($tree->getMaxOrderNr((int) $_GET["obj_id"]) + 10); $sktr->setStatus($_POST["status"]); $sktr->create(); ilSkillTreeNode::putInTree($sktr, (int) $_GET["obj_id"], IL_LAST_NODE); @@ -331,7 +318,6 @@ public function updateSkillTemplateReference() $this->node_object->setTitle($_POST["title"]); $this->node_object->setDescription($_POST["description"]); $this->node_object->setSelfEvaluation($_POST["selectable"]); - $this->node_object->setOrderNr($_POST["order_nr"]); $this->node_object->setStatus($_POST["status"]); $this->node_object->update(); diff --git a/Services/Skill/classes/class.ilSkillTemplateTreeExplorerGUI.php b/Services/Skill/classes/class.ilSkillTemplateTreeExplorerGUI.php index 9499000dc8db..95c70576eece 100644 --- a/Services/Skill/classes/class.ilSkillTemplateTreeExplorerGUI.php +++ b/Services/Skill/classes/class.ilSkillTemplateTreeExplorerGUI.php @@ -189,4 +189,22 @@ public function getNodeHref($a_node) } } + + /** + * Get node icon alt attribute + * + * @param mixed $a_node node object/array + * @return string image alt attribute + */ + public function getNodeIconAlt($a_node) + { + $lng = $this->lng; + + if ($lng->exists("skmg_" . $a_node["type"])) { + return $lng->txt("skmg_" . $a_node["type"]); + } + + return $lng->txt($a_node["type"]); + } + } diff --git a/Services/Skill/classes/class.ilVirtualSkillTreeExplorerGUI.php b/Services/Skill/classes/class.ilVirtualSkillTreeExplorerGUI.php index 5e14bb85553e..a2f493716dc3 100644 --- a/Services/Skill/classes/class.ilVirtualSkillTreeExplorerGUI.php +++ b/Services/Skill/classes/class.ilVirtualSkillTreeExplorerGUI.php @@ -232,4 +232,22 @@ public function isNodeClickable($a_node) { return false; } + + /** + * Get node icon alt attribute + * + * @param mixed $a_node node object/array + * @return string image alt attribute + */ + public function getNodeIconAlt($a_node) + { + $lng = $this->lng; + + if ($lng->exists("skmg_" . $a_node["type"])) { + return $lng->txt("skmg_" . $a_node["type"]); + } + + return $lng->txt($a_node["type"]); + } + } diff --git a/Services/User/Settings/classes/class.ilPersonalSettingsGUI.php b/Services/User/Settings/classes/class.ilPersonalSettingsGUI.php index 9e2d56b7c189..cc056fd64558 100755 --- a/Services/User/Settings/classes/class.ilPersonalSettingsGUI.php +++ b/Services/User/Settings/classes/class.ilPersonalSettingsGUI.php @@ -242,11 +242,14 @@ public function initPasswordForm() //if ( // ($ilUser->getAuthMode(true) != AUTH_SHIBBOLETH || !$ilSetting->get("shib_auth_allow_local")) //) + $pw_info_set = false; if ($ilUser->getAuthMode(true) == AUTH_LOCAL) { // current password $cpass = new ilPasswordInputGUI($lng->txt("current_password"), "current_password"); + $cpass->setInfo(ilUtil::getPasswordRequirementsInfo()); $cpass->setRetype(false); $cpass->setSkipSyntaxCheck(true); + $pw_info_set = true; // only if a password exists. if ($ilUser->getPasswd()) { $cpass->setRequired(true); @@ -256,8 +259,10 @@ public function initPasswordForm() // new password $ipass = new ilPasswordInputGUI($lng->txt("desired_password"), "new_password"); + if($pw_info_set === false) { + $ipass->setInfo(ilUtil::getPasswordRequirementsInfo()); + } $ipass->setRequired(true); - $ipass->setInfo(ilUtil::getPasswordRequirementsInfo()); $this->form->addItem($ipass); $this->form->addCommandButton("savePassword", $lng->txt("save")); diff --git a/docs/configuration/install.md b/docs/configuration/install.md index 4553f2a59298..df3df7084df0 100755 --- a/docs/configuration/install.md +++ b/docs/configuration/install.md @@ -254,7 +254,7 @@ systemctl restart httpd.service On Debian/Ubuntu 14.04 or 16.04 execute: ``` -apt-get install libapache2-mod-php7.1 php7.1-gd php7.1-mysql php7.1-mbstring php7.1-curl php7.1-dom php7.1-zip php-xml +apt-get install libapache2-mod-php7.1 php7.1-gd php7.1-mysql php7.1-mbstring php7.1-curl php7.1-dom php7.1-zip php7.1-xml php7.1-soap ``` On RHEL/CentOS execute: @@ -449,7 +449,6 @@ Depending on your use case, you MAY want to install further dependencies (exact * php-curl * php-xmlrpc -* php-soap * php-ldap * ffmpeg * mimetex diff --git a/include/inc.ilias_version.php b/include/inc.ilias_version.php index 3d3292ea4458..7460e93049dd 100644 --- a/include/inc.ilias_version.php +++ b/include/inc.ilias_version.php @@ -9,5 +9,5 @@ * * @package ilias-core */ -define("ILIAS_VERSION", "6.6 2020-11-27"); -define("ILIAS_VERSION_NUMERIC", "6.6"); // since version ILIAS 6 this must be always x.y: x and y are numbers +define("ILIAS_VERSION", "6.7 2021-02-05"); +define("ILIAS_VERSION_NUMERIC", "6.7"); // since version ILIAS 6 this must be always x.y: x and y are numbers diff --git a/lang/ilias_ar.lang b/lang/ilias_ar.lang index 29cfc17335a5..ac55821b649b 100644 --- a/lang/ilias_ar.lang +++ b/lang/ilias_ar.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_bg.lang b/lang/ilias_bg.lang index 9b5e11e67731..27625c3c83c3 100644 --- a/lang/ilias_bg.lang +++ b/lang/ilias_bg.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_cs.lang b/lang/ilias_cs.lang index c8e888718140..58ca9e339a57 100644 --- a/lang/ilias_cs.lang +++ b/lang/ilias_cs.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_da.lang b/lang/ilias_da.lang index fbd925161501..4f3b37dc0b5b 100644 --- a/lang/ilias_da.lang +++ b/lang/ilias_da.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_de.lang b/lang/ilias_de.lang index 44dd1aa249c2..ea00e6dfbe3c 100644 --- a/lang/ilias_de.lang +++ b/lang/ilias_de.lang @@ -43,6 +43,8 @@ common#:#obj_nots#:#Notizen note#:#note_enable_notes#:#Notizen aktivieren common#:#obj_coms_desc#:#Kommentarfunktion administrieren common#:#obj_coms#:#Kommentare +common#:#tools#:#Tools +common#:#more#:#Mehr note#:#note_enable_comments#:#Kommentare aktivieren administration#:#adm_communication#:#Kommunikation administration#:#org_op_edit_user_accounts#:#Benutzerkonten bearbeiten @@ -417,6 +419,8 @@ administration#:#adm_activate_db_benchmark#:#Messung aktivieren administration#:#adm_activate_db_benchmark_desc#:#Die Messung wird automatisch nach einem Server-Request beendet. administration#:#adm_add_settings_template#:#Vorlagen hinzufügen administration#:#adm_layout_and_navigation#:#Layout und Navigation +administration#:#adm_auth_reg#:#Authentifizierung Registrierung +administration#:#adm_auth_login#:#Authentifizierung Login administration#:#adm_db_bench_by_first_table#:#Aggregiert nach dem ersten Tabellennamen administration#:#adm_db_bench_chronological#:#Chronologisch administration#:#adm_db_bench_slowest_first#:#Langsamste zuerst @@ -11314,6 +11318,8 @@ rbac#:#cld_permission#:#Benutzer können Rechteeinstellungen bearbeiten rbac#:#cld_upload#:#Benutzer können Dateien in das Cloud-Objekt laden rbac#:#cld_download#:#Benutzer können Dateien aus dem Cloud-Objekt herunterladen rbac#:#cld_edit_permission#:#Rechteeinstellungen ändern +rbac#:#edit_in_online_editor#:#In Online-Editor bearbeiten +rbac#:#cld_edit_in_online_editor#:#Benutzer kann Dateien im Online-Editor öffnen und bearbeiten wsp#:#wsp_shared_date#:#Freigabedatum wsp#:#wsp_shared_type#:#Freigegeben für wsp#:#wsp_shared_object_type#:#Typ der Ressource @@ -15372,7 +15378,7 @@ exc#:#exc_find_zip_error#:#Die Abgabe kann nicht geöffnet werden. Die Originald content#:#msg_no_page_access#:#Sie sind nicht berechtigt auf diese Seite zuzugreifen. exc#:#exc_compare_submissions#:#Vergleiche Lösungsabgaben exc#:#exc_compare_selected_submissions#:#Vergleiche ausgewählte Lösungsabgaben -wiki#:#wiki_notification_comment_subject#:#Es wurd ein Kommentar zur Seite "%s: %s" hinzugefügt +wiki#:#wiki_notification_comment_subject#:#Es wurde ein Kommentar zur Seite "%s: %s" hinzugefügt wiki#:#wiki_notification_comment#:#die folgende Seite wurde kommentiert wiki#:#wiki_commented_by#:#Autor content#:#cont_notification_activated#:#Benachrichtigung aktiviert (Gesamtes Lernmodul) @@ -15382,7 +15388,7 @@ content#:#cont_notification_deactivate_page#:#Benachrichtigungen für Seite deak content#:#cont_notification_activate_lm#:#Benachrichtigungen für Lernmodul aktivieren content#:#cont_notification_activate_page#:#Benachrichtigungen für Seite aktivieren content#:#cont_notification_deactivated#:#Benachrichtigungen wurden deaktiviert. -content#:#cont_notification_comment_subject_lm#:#Es wurd ein Kommentar zur Seite %s: %s" hinzugefügt +content#:#cont_notification_comment_subject_lm#:#Es wurde ein Kommentar zur Seite %s: %s" hinzugefügt content#:#cont_change_notification_salutation#:#Hallo %s, content#:#cont_notification_comment_lm#:#die folgende Seite wurde kommentiert content#:#cont_notification_update_lm#:#das folgende Lernmodul wurde geändert @@ -16204,3 +16210,4 @@ common#:#lso_admin_form_title#:#Einstellungen common#:#lso_admin_form_byline#:#Allgemeine Einstellungen für Lernsequenzen common#:#lso_admin_interval_label#:#Abfrageintervall Lernfortschritt (Sekunden) common#:#lso_admin_interval_byline#:#Alle x Sekunden wird der Lernfortschritt für nicht vollständig integrierte Objekte abgefragt. Achtung! Je niedriger der Wert, desto häufiger wird eine Abfrage ausgeführt. Das kann sich sehr negativ auf die Systemlast auswirken; entsprechend sollte der Wert möglichst hoch gewählt werden. +prg#:#no_srctype_or_id#:#Id und Typ dürfen nicht leer sein. diff --git a/lang/ilias_el.lang b/lang/ilias_el.lang index 69813dc82e5c..271e0ea3ac51 100644 --- a/lang/ilias_el.lang +++ b/lang/ilias_el.lang @@ -16197,3 +16197,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_en.lang b/lang/ilias_en.lang index 10bc5e562955..f332713dac63 100644 --- a/lang/ilias_en.lang +++ b/lang/ilias_en.lang @@ -43,6 +43,8 @@ common#:#obj_nots#:#Notes note#:#note_enable_notes#:#Enable Notes common#:#obj_coms_desc#:#Comments settings common#:#obj_coms#:#Comments +common#:#tools#:#Tools +common#:#more#:#More note#:#note_enable_comments#:#Enable Comments administration#:#org_op_edit_user_accounts#:#Edit User Accounts administration#:#adm_communication#:#Communication @@ -11329,6 +11331,8 @@ rbac#:#cld_permission#:#User can change permission settings rbac#:#cld_upload#:#User can upload files to the cloud object rbac#:#cld_download#:#User can download files from the cloud object rbac#:#cld_edit_permission#:#User can change permission settings +rbac#:#edit_in_online_editor#:#Open in online editor +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor wsp#:#wsp_shared_date#:#Date of Share wsp#:#wsp_shared_type#:#Shared With wsp#:#wsp_shared_object_type#:#Type of Resource @@ -11931,6 +11935,8 @@ content#:#cont_auto_suspend_info#:#This option is for SCORM learning modules, wh administration#:#adm_captcha_anonymous_frm#:#Activate captcha for anonymous in forums. Please keep in mind that this may effect the accessibility of your installation. administration#:#adm_captcha_anonymous_auth#:#Activate captcha for anonymous in login form. Please keep in mind that this may effect the accessibility of your installation. administration#:#adm_captcha_anonymous_reg#:#Activate captcha for anonymous in registration form. Please keep in mind that this may effect the accessibility of your installation. +administration#:#adm_auth_reg#:#Authentication Registration +administration#:#adm_auth_login#:#Authentication Login administration#:#adm_captcha_anonymous_wiki#:#Activate captcha for anonymous in wikis. Please keep in mind that this may effect the accessibility of your installation. auth#:#auth_auth_settings#:#Settings book#:#book_reservation_failed_overbooked#:#The booking failed because the object is not available anymore. @@ -16204,3 +16210,4 @@ common#:#lso_admin_form_title#:#Settings common#:#lso_admin_form_byline#:#General Settings for Learning Sequences common#:#lso_admin_interval_label#:#Learning Progress Polling Interval (seconds) common#:#lso_admin_interval_byline#:#Poll Learning Progress every x seconds. Be careful! A low value will increase server-requests and have an impact on overall system performance. Please choose highest value possible! +prg#:#no_srctype_or_id#:#Id and type may not be empty. \ No newline at end of file diff --git a/lang/ilias_es.lang b/lang/ilias_es.lang index f470283cf4f0..a121774ffe8e 100644 --- a/lang/ilias_es.lang +++ b/lang/ilias_es.lang @@ -16198,3 +16198,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_et.lang b/lang/ilias_et.lang index 49e2f25f71ab..b1dfffbf66b9 100644 --- a/lang/ilias_et.lang +++ b/lang/ilias_et.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_fa.lang b/lang/ilias_fa.lang index 390fa2e62730..f99f84606eff 100644 --- a/lang/ilias_fa.lang +++ b/lang/ilias_fa.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_fr.lang b/lang/ilias_fr.lang index ca81669898b7..98bb61f52ea7 100644 --- a/lang/ilias_fr.lang +++ b/lang/ilias_fr.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_hu.lang b/lang/ilias_hu.lang index 7557c7dd41ae..bb6413da03ac 100644 --- a/lang/ilias_hu.lang +++ b/lang/ilias_hu.lang @@ -16200,4 +16200,14 @@ feed#:#feed_no_local_url#:#Az URL nem ellenőrizhető. Kérem, valós külső h common#:#lso_admin_form_title#:#Beállítások common#:#lso_admin_form_byline#:#Tanulási sor általános beállításai common#:#lso_admin_interval_label#:#Tanulási haladás frissítésének időköze (másodperc) -common#:#lso_admin_interval_byline#:#A még nem teljesített Tanulási haladást minden x. másodpercben újra lekérjük. Legyen óvatos! Túl alacsony érték negatívan hathat a szerver teljesítményére. A lehető legnagyobb értéket válassza! \ No newline at end of file +common#:#lso_admin_interval_byline#:#A még nem teljesített Tanulási haladást minden x. másodpercben újra lekérjük. Legyen óvatos! Túl alacsony érték negatívan hathat a szerver teljesítményére. A lehető legnagyobb értéket válassza! +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_it.lang b/lang/ilias_it.lang index 43ad4c6eb58d..c57ee1f08835 100644 --- a/lang/ilias_it.lang +++ b/lang/ilias_it.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_ja.lang b/lang/ilias_ja.lang index 73005b0a608f..7cd707b75622 100644 --- a/lang/ilias_ja.lang +++ b/lang/ilias_ja.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_ka.lang b/lang/ilias_ka.lang index 0a7e7d1964dc..d52f46f6fc82 100644 --- a/lang/ilias_ka.lang +++ b/lang/ilias_ka.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_lt.lang b/lang/ilias_lt.lang index 918432b14387..b18a3999b17e 100644 --- a/lang/ilias_lt.lang +++ b/lang/ilias_lt.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_nl.lang b/lang/ilias_nl.lang index 4694feb95f53..d16fcb42c722 100644 --- a/lang/ilias_nl.lang +++ b/lang/ilias_nl.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_pl.lang b/lang/ilias_pl.lang index 009578b5b918..88d21d7daf8d 100644 --- a/lang/ilias_pl.lang +++ b/lang/ilias_pl.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_pt.lang b/lang/ilias_pt.lang index 8847d28e618e..6ebf3ff25730 100644 --- a/lang/ilias_pt.lang +++ b/lang/ilias_pt.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_ro.lang b/lang/ilias_ro.lang index 709a952feefa..b8ab29b39d4b 100644 --- a/lang/ilias_ro.lang +++ b/lang/ilias_ro.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_ru.lang b/lang/ilias_ru.lang index 6a41fd499f86..2dd428324cfb 100644 --- a/lang/ilias_ru.lang +++ b/lang/ilias_ru.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_sk.lang b/lang/ilias_sk.lang index 42edd87fc327..4cc9963e62f3 100644 --- a/lang/ilias_sk.lang +++ b/lang/ilias_sk.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_sq.lang b/lang/ilias_sq.lang index 9050c4206e98..1d536c296c00 100644 --- a/lang/ilias_sq.lang +++ b/lang/ilias_sq.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_sr.lang b/lang/ilias_sr.lang index 19886687c2c5..01cec1dbc221 100644 --- a/lang/ilias_sr.lang +++ b/lang/ilias_sr.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_tr.lang b/lang/ilias_tr.lang index d398507269d3..c3d9adb84cd1 100644 --- a/lang/ilias_tr.lang +++ b/lang/ilias_tr.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_uk.lang b/lang/ilias_uk.lang index a67b017d611b..1e64fcbccf63 100644 --- a/lang/ilias_uk.lang +++ b/lang/ilias_uk.lang @@ -16196,3 +16196,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_vi.lang b/lang/ilias_vi.lang index 32d986099cce..8d316855043e 100644 --- a/lang/ilias_vi.lang +++ b/lang/ilias_vi.lang @@ -16198,3 +16198,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/ilias_zh.lang b/lang/ilias_zh.lang index f36bf9c8c625..721d8bd2d81c 100644 --- a/lang/ilias_zh.lang +++ b/lang/ilias_zh.lang @@ -16195,3 +16195,18 @@ book#:#X_reservations_of#:#%s reservations of###27 11 2020 new variable book#:#book_set_delete#:#Delete###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random#:#Random ID combined with a unique ILIAS platform ID formatted as an E-Mail address###27 11 2020 new variable cmix#:#conf_user_ident_il_uuid_random_info#:#For each ILIAS object and ILIAS user a random ID is generated which remains identical for each call. Conclusions about a user are very limited because it is practically impossible to create user profiles across objects.###27 11 2020 new variable +common#:#err_valid_login_account_creation_disabled#:#Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.###29 01 2021 new variable +search#:#search_field#:#Search Input Field###29 01 2021 new variable +search#:#search_on#:#On###29 01 2021 new variable +administration#:#adm_auth_reg#:#Authentication Registration###29 01 2021 new variable +administration#:#adm_auth_login#:#Authentication Login###29 01 2021 new variable +mme#:#flush#:#Remove Lost Items###29 01 2021 new variable +mme#:#msg_subitem_flushed#:#Lost Items removed.###29 01 2021 new variable +file#:#personal_workspace_disk_quota#:#Hard Disk Quota for Personal Workspace###29 01 2021 new variable +file#:#personal_workspace_quota_exceeded_warning#:#You have exceeded the disk quota for your personal workspace.###29 01 2021 new variable +file#:#personal_workspace_quota_status_legend#:#You are using %1$s of your available disk quota of %2$s (%3$d%%).###29 01 2021 new variable +common#:#tools#:#Tools###05 02 2021 new variable +common#:#more#:#More###05 02 2021 new variable +rbac#:#edit_in_online_editor#:#Open in online editor###05 02 2021 new variable +rbac#:#cld_edit_in_online_editor#:#User can open and edit files in online editor###05 02 2021 new variable +prg#:#no_srctype_or_id#:#Id and type may not be empty.###05 02 2021 new variable diff --git a/lang/setup_ar.lang b/lang/setup_ar.lang index 308a85485c08..6c5f2f218f31 100644 --- a/lang/setup_ar.lang +++ b/lang/setup_ar.lang @@ -647,4 +647,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_cs.lang b/lang/setup_cs.lang index ea51628488a5..a6e55f37fbad 100644 --- a/lang/setup_cs.lang +++ b/lang/setup_cs.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_da.lang b/lang/setup_da.lang index ed8aeb5d2d9a..493931583bf0 100644 --- a/lang/setup_da.lang +++ b/lang/setup_da.lang @@ -645,4 +645,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_de.lang b/lang/setup_de.lang index da97b26cecfb..15f928636b0a 100644 --- a/lang/setup_de.lang +++ b/lang/setup_de.lang @@ -647,3 +647,4 @@ system_styles#:#System Styles not_enabled#:#Disabled phantomjs_path#:#Pfad zu phantomjs phantomjs_path_comment#:#Optional tum erstellen von PDFs, z.B. '/usr/bin/phantomjs' +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_en.lang b/lang/setup_en.lang index 2ba5e432bad3..4ec51d6ea42f 100644 --- a/lang/setup_en.lang +++ b/lang/setup_en.lang @@ -637,3 +637,4 @@ system_styles#:#System Styles not_enabled#:#Disabled phantomjs_path#:#Path to phantomjs phantomjs_path_comment#:#Optional to create PDFs, e.g. '/usr/bin/phantomjs' +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_es.lang b/lang/setup_es.lang index 2b483db2ecd5..081f3e9cfbc2 100644 --- a/lang/setup_es.lang +++ b/lang/setup_es.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_et.lang b/lang/setup_et.lang index 6b54b049062f..93ba6e0fd497 100644 --- a/lang/setup_et.lang +++ b/lang/setup_et.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_fr.lang b/lang/setup_fr.lang index 689d160be732..94ee1c2ecc42 100644 --- a/lang/setup_fr.lang +++ b/lang/setup_fr.lang @@ -635,4 +635,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_hu.lang b/lang/setup_hu.lang index f8eeb8044fc7..c10ddd1a790d 100644 --- a/lang/setup_hu.lang +++ b/lang/setup_hu.lang @@ -637,3 +637,4 @@ system_styles#:#Rendszerstílusok not_enabled#:#Kikapcsolva phantomjs_path#:#Phantomjs útvonala phantomjs_path_comment#:#PDF fájlok generálásához választható, például '/usr/bin/phantomjs' +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_it.lang b/lang/setup_it.lang index b136001561ed..b16e367799f5 100644 --- a/lang/setup_it.lang +++ b/lang/setup_it.lang @@ -643,4 +643,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_lt.lang b/lang/setup_lt.lang index c10d2b03211b..812cba87c4a8 100644 --- a/lang/setup_lt.lang +++ b/lang/setup_lt.lang @@ -646,4 +646,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_nl.lang b/lang/setup_nl.lang index ac11893dd6d5..b04087d854c6 100644 --- a/lang/setup_nl.lang +++ b/lang/setup_nl.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_pl.lang b/lang/setup_pl.lang index b50d338224c4..7753f76ed16d 100644 --- a/lang/setup_pl.lang +++ b/lang/setup_pl.lang @@ -643,4 +643,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_pt.lang b/lang/setup_pt.lang index ed2be0ebb5d7..aed13ebe9dd1 100644 --- a/lang/setup_pt.lang +++ b/lang/setup_pt.lang @@ -643,4 +643,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_ro.lang b/lang/setup_ro.lang index 88c3887d7f83..b9a960fc378f 100644 --- a/lang/setup_ro.lang +++ b/lang/setup_ro.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_ru.lang b/lang/setup_ru.lang index 04f3f01d3d22..444e992cd7fa 100644 --- a/lang/setup_ru.lang +++ b/lang/setup_ru.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_sq.lang b/lang/setup_sq.lang index 0d2b7fc30c1e..dd8a622ee611 100644 --- a/lang/setup_sq.lang +++ b/lang/setup_sq.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_sr.lang b/lang/setup_sr.lang index 2b04de3c539a..f72c5855eb4b 100644 --- a/lang/setup_sr.lang +++ b/lang/setup_sr.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_uk.lang b/lang/setup_uk.lang index 23c4bdeda338..a49d70ccac07 100644 --- a/lang/setup_uk.lang +++ b/lang/setup_uk.lang @@ -646,4 +646,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_vi.lang b/lang/setup_vi.lang index 87054c9d00db..af412cba7155 100644 --- a/lang/setup_vi.lang +++ b/lang/setup_vi.lang @@ -644,4 +644,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/lang/setup_zh.lang b/lang/setup_zh.lang index 4c8df295d1fa..004bce9f8d74 100644 --- a/lang/setup_zh.lang +++ b/lang/setup_zh.lang @@ -643,4 +643,5 @@ cache_flush#:#Flush all caches###30 08 2015 new variable cache_activate_tpl_blocks#:#Template (Blocks)###30 08 2015 new variable cache_activate_tpl_variables#:#Template (Variablen)###30 08 2015 new variable error_log_path#:#Path to error log files -error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. \ No newline at end of file +error_log_path_comment#:#Please enter only the path. Files will be automaticly saved on error. +cache_activate_global_screen#:#Global Screen \ No newline at end of file diff --git a/setup/cli.php b/setup/cli.php index b12f73bff748..cd8242163ff5 100644 --- a/setup/cli.php +++ b/setup/cli.php @@ -53,7 +53,7 @@ function get_agent_name_by_class(string $class_name) : string // the setup for the command line version of the setup. Do not use this. function setup_exit($message) { - if (!defined("ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES") && ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES) { + if (!defined("ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES") || !ILIAS_SETUP_IGNORE_DB_UPDATE_STEP_MESSAGES) { throw new \ILIAS\Setup\UnachievableException($message); } } diff --git a/setup/sql/6_hotfixes.php b/setup/sql/6_hotfixes.php index 705d9b920e00..4dd40d803c74 100755 --- a/setup/sql/6_hotfixes.php +++ b/setup/sql/6_hotfixes.php @@ -925,3 +925,7 @@ "fixed" => false ]); ?> +<#42> +getStructure(); +?> diff --git a/setup/sql/ilDBTemplate.php b/setup/sql/ilDBTemplate.php index ee8101a36d4b..36526a38798f 100644 --- a/setup/sql/ilDBTemplate.php +++ b/setup/sql/ilDBTemplate.php @@ -13795,6 +13795,9 @@ function setupILIASDatabase() $ilDB->insert("ctrl_calls", array( 'parent' => array('text', 'ilobjstudyprogrammemembersgui'), 'child' => array('text', 'ilstudyprogrammechangedeadlinegui'), 'comp_prefix' => array('text', ''))); +$ilDB->insert("ctrl_calls", array( +'parent' => array('text', 'ilobjstudyprogrammemembersgui'), 'child' => array('text', 'ilformpropertydispatchgui'), 'comp_prefix' => array('text', ''))); + $ilDB->insert("ctrl_calls", array( 'parent' => array('text', 'ilobjstudyprogrammegui'), 'child' => array('text', 'ilpermissiongui'), 'comp_prefix' => array('text', ''))); @@ -14474,10 +14477,10 @@ function setupILIASDatabase() 'class' => array('text', 'iltestrandomquestionsetnonavailablepoolstablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTestRandomQuestionSetNonAvailablePoolsTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '13'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iltestquestionbrowsertablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTestQuestionBrowserTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '14'))); +'class' => array('text', 'ilassessmentfolderlogtablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilAssessmentFolderLogTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '14'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilassessmentfolderlogtablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilAssessmentFolderLogTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '15'))); +'class' => array('text', 'iltestquestionbrowsertablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTestQuestionBrowserTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '15'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'ilassessmentfolderlogadministrationtablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilAssessmentFolderLogAdministrationTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '16'))); @@ -14489,10 +14492,10 @@ function setupILIASDatabase() 'class' => array('text', 'iltestpassmanualscoringoverviewtablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTestPassManualScoringOverviewTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '18'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iltestdetailedevaluationstatisticstablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTestDetailedEvaluationStatisticsTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '19'))); +'class' => array('text', 'ilresultsbyquestiontablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilResultsByQuestionTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '19'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilresultsbyquestiontablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilResultsByQuestionTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '1a'))); +'class' => array('text', 'iltestdetailedevaluationstatisticstablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTestDetailedEvaluationStatisticsTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '1a'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'iltimingoverviewtablegui'), 'filename' => array('text', 'Modules/Test/classes/tables/class.ilTimingOverviewTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '1b'))); @@ -14684,10 +14687,10 @@ function setupILIASDatabase() 'class' => array('text', 'ilsessionmembershipregistrationsettingsgui'), 'filename' => array('text', 'Modules/Session/classes/class.ilSessionMembershipRegistrationSettingsGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '31'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilobjsessionlistgui'), 'filename' => array('text', 'Modules/Session/classes/class.ilObjSessionListGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '32'))); +'class' => array('text', 'ilsessionmembershipgui'), 'filename' => array('text', 'Modules/Session/classes/class.ilSessionMembershipGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '32'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilsessionmembershipgui'), 'filename' => array('text', 'Modules/Session/classes/class.ilSessionMembershipGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '33'))); +'class' => array('text', 'ilobjsessionlistgui'), 'filename' => array('text', 'Modules/Session/classes/class.ilObjSessionListGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '33'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'ilobjsessiongui'), 'filename' => array('text', 'Modules/Session/classes/class.ilObjSessionGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '34'))); @@ -14819,10 +14822,10 @@ function setupILIASDatabase() 'class' => array('text', 'ilobjdatacollectionlistgui'), 'filename' => array('text', 'Modules/DataCollection/classes/class.ilObjDataCollectionListGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '4a'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ildclexportgui'), 'filename' => array('text', 'Modules/DataCollection/classes/class.ilDclExportGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '4b'))); +'class' => array('text', 'ildclexporttablegui'), 'filename' => array('text', 'Modules/DataCollection/classes/class.ilDclExportTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '4b'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ildclexporttablegui'), 'filename' => array('text', 'Modules/DataCollection/classes/class.ilDclExportTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '4c'))); +'class' => array('text', 'ildclexportgui'), 'filename' => array('text', 'Modules/DataCollection/classes/class.ilDclExportGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '4c'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'ilobjbibliographiclistgui'), 'filename' => array('text', 'Modules/Bibliographic/classes/class.ilObjBibliographicListGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '4d'))); @@ -14999,10 +15002,10 @@ function setupILIASDatabase() 'class' => array('text', 'illocalunitconfigurationgui'), 'filename' => array('text', 'Modules/TestQuestionPool/classes/class.ilLocalUnitConfigurationGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '5y'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilasshintpagegui'), 'filename' => array('text', 'Modules/TestQuestionPool/classes/class.ilAssHintPageGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '5z'))); +'class' => array('text', 'ilassquestionpagegui'), 'filename' => array('text', 'Modules/TestQuestionPool/classes/class.ilAssQuestionPageGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '5z'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilassquestionpagegui'), 'filename' => array('text', 'Modules/TestQuestionPool/classes/class.ilAssQuestionPageGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '60'))); +'class' => array('text', 'ilasshintpagegui'), 'filename' => array('text', 'Modules/TestQuestionPool/classes/class.ilAssHintPageGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '60'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'ilassspecfeedbackpagegui'), 'filename' => array('text', 'Modules/TestQuestionPool/classes/feedback/class.ilAssSpecFeedbackPageGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', '61'))); @@ -15581,10 +15584,10 @@ function setupILIASDatabase() 'class' => array('text', 'ilscormorganizationgui'), 'filename' => array('text', 'Modules/ScormAicc/classes/SCORM/class.ilSCORMOrganizationGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'bc'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilscormpresentationgui'), 'filename' => array('text', 'Modules/ScormAicc/classes/SCORM/class.ilSCORMPresentationGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'bd'))); +'class' => array('text', 'ilscormitemgui'), 'filename' => array('text', 'Modules/ScormAicc/classes/SCORM/class.ilSCORMItemGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'bd'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilscormitemgui'), 'filename' => array('text', 'Modules/ScormAicc/classes/SCORM/class.ilSCORMItemGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'be'))); +'class' => array('text', 'ilscormpresentationgui'), 'filename' => array('text', 'Modules/ScormAicc/classes/SCORM/class.ilSCORMPresentationGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'be'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'ilscormresourcesgui'), 'filename' => array('text', 'Modules/ScormAicc/classes/SCORM/class.ilSCORMResourcesGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'bf'))); @@ -16136,10 +16139,10 @@ function setupILIASDatabase() 'class' => array('text', 'ilmailoptionsformgui'), 'filename' => array('text', 'Services/Mail/classes/class.ilMailOptionsFormGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'gh'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilmailformgui'), 'filename' => array('text', 'Services/Mail/classes/class.ilMailFormGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'gi'))); +'class' => array('text', 'ilmailtemplatetablegui'), 'filename' => array('text', 'Services/Mail/classes/class.ilMailTemplateTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'gi'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilmailtemplatetablegui'), 'filename' => array('text', 'Services/Mail/classes/class.ilMailTemplateTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'gj'))); +'class' => array('text', 'ilmailformgui'), 'filename' => array('text', 'Services/Mail/classes/class.ilMailFormGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'gj'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'ilmailtemplateselectinputgui'), 'filename' => array('text', 'Services/Mail/classes/Form/class.ilMailTemplateSelectInputGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'gk'))); @@ -16196,10 +16199,10 @@ function setupILIASDatabase() 'class' => array('text', 'ilcustomuserfieldsgui'), 'filename' => array('text', 'Services/User/classes/class.ilCustomUserFieldsGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'h1'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilaccountcodesgui'), 'filename' => array('text', 'Services/User/classes/class.ilAccountCodesGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'h2'))); +'class' => array('text', 'ilusertablegui'), 'filename' => array('text', 'Services/User/classes/class.ilUserTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'h2'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilusertablegui'), 'filename' => array('text', 'Services/User/classes/class.ilUserTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'h3'))); +'class' => array('text', 'ilaccountcodesgui'), 'filename' => array('text', 'Services/User/classes/class.ilAccountCodesGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'h3'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'iluserprofilebadgegui'), 'filename' => array('text', 'Services/User/classes/Badges/class.ilUserProfileBadgeGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'h4'))); @@ -16235,19 +16238,19 @@ function setupILIASDatabase() 'class' => array('text', 'ilobjuserfoldergui'), 'filename' => array('text', 'Services/User/classes/class.ilObjUserFolderGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'he'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iluserstartingpointgui'), 'filename' => array('text', 'Services/User/classes/class.ilUserStartingPointGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hf'))); +'class' => array('text', 'ilobjusergui'), 'filename' => array('text', 'Services/User/classes/class.ilObjUserGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hf'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'ilobjusergui'), 'filename' => array('text', 'Services/User/classes/class.ilObjUserGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hg'))); +'class' => array('text', 'iluserstartingpointgui'), 'filename' => array('text', 'Services/User/classes/class.ilUserStartingPointGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hg'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'iluserprofileinfosettingsgui'), 'filename' => array('text', 'Services/User/ProfilePrompt/classes/class.ilUserProfileInfoSettingsGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hh'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iluseractionadmingui'), 'filename' => array('text', 'Services/User/Actions/classes/class.ilUserActionAdminGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hi'))); +'class' => array('text', 'iluseractiongui'), 'filename' => array('text', 'Services/User/Actions/classes/class.ilUserActionGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hi'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iluseractiongui'), 'filename' => array('text', 'Services/User/Actions/classes/class.ilUserActionGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hj'))); +'class' => array('text', 'iluseractionadmingui'), 'filename' => array('text', 'Services/User/Actions/classes/class.ilUserActionAdminGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hj'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'iluseractionadmintablegui'), 'filename' => array('text', 'Services/User/Actions/classes/class.ilUserActionAdminTableGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'hk'))); @@ -16982,10 +16985,10 @@ function setupILIASDatabase() 'class' => array('text', 'ilexplorerselectinputgui'), 'filename' => array('text', 'Services/UIComponent/Explorer2/classes/class.ilExplorerSelectInputGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'ob'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iltabsgui'), 'filename' => array('text', 'Services/UIComponent/Tabs/classes/class.ilTabsGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'oc'))); +'class' => array('text', 'iltreeexplorergui'), 'filename' => array('text', 'Services/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'oc'))); $ilDB->insert("ctrl_classfile", array( -'class' => array('text', 'iltreeexplorergui'), 'filename' => array('text', 'Services/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'od'))); +'class' => array('text', 'iltabsgui'), 'filename' => array('text', 'Services/UIComponent/Tabs/classes/class.ilTabsGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'od'))); $ilDB->insert("ctrl_classfile", array( 'class' => array('text', 'illightboxgui'), 'filename' => array('text', 'Services/UIComponent/Lightbox/classes/class.ilLightboxGUI.php'), 'comp_prefix' => array('text', ''), 'plugin_path' => array('text', ''), 'cid' => array('text', 'oe'))); @@ -34343,7 +34346,7 @@ function setupILIASDatabase() 'module' => array('text', 'adm'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:7:{s:20:"adm_support_contacts";s:17:"Technical Support";s:30:"adm_awrn_support_contacts_info";s:149:"All technical support contacts are listed. Users are defined as technical support contacts in the section "General Settings" > "Contact Information".";s:25:"adm_support_contacts_info";s:133:"Support contacts used in the footer link and (if activated) in the ‘Who is online?’-Tool. Comma separated list of account logins.";s:23:"adm_acc_ctrl_cpt_enable";s:36:"Enable Accessibility Control Concept";s:21:"adm_acc_ctrl_cpt_desc";s:84:"If activated, the link for the Accessibility Control Concept shows up in the Footer.";s:26:"adm_accessibility_contacts";s:30:"Accessibility Point of Contact";s:31:"adm_accessibility_contacts_info";s:103:"Contacts for reporting accessibility issues in the footer link. Comma separated list of account logins.";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'administration'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:274:{s:25:"org_op_edit_user_accounts";s:18:"Edit User Accounts";s:17:"adm_communication";s:13:"Communication";s:29:"adm_pub_section_domain_filter";s:13:"Domain Filter";s:34:"adm_pub_section_domain_filter_info";s:99:"Domain filters granting anonymous access. Enter one ore more domains, which allow anonymous access.";s:24:"adm_item_cmd_asynch_info";s:167:"Action commands, e.g. in the repository, are loaded asynchronously. This increases performance in general, but slows down loading of action command lists a little bit.";s:19:"adm_item_cmd_asynch";s:41:"Load Resource Action Lists Asynchronously";s:15:"adm_locale_info";s:155:"Locale setting influences e.g. sorting in lists. Examples are nl_NL or de_DE. Multiple locales can be separated by comma. The first valid one will be used.";s:10:"adm_locale";s:6:"Locale";s:22:"allow_change_loginname";s:51:"Permit Change of Login Names in ‘Personal Data’";s:16:"analysis_options";s:16:"Analysis options";s:12:"analyze_data";s:33:"Analyze and repair data integrity";s:24:"analyzing_tree_structure";s:27:"Analyzing tree structure...";s:28:"auth_auth_mode_determination";s:47:"Authentication Method Determination (for Login)";s:14:"auth_automatic";s:14:"Fixed Sequence";s:12:"auth_by_user";s:11:"By the User";s:23:"auth_kind_determination";s:21:"Kind of Determination";s:28:"auth_mode_determination_info";s:158:"Choose either if the users have to select their authentication method on the login screen or if this is managed by a fixed sequence of authentication methods.";s:10:"clean_desc";s:78:"Remove invalid references and tree entries. Initialize gaps in tree structure.";s:5:"clean";s:8:"Clean up";s:14:"cleaning_final";s:17:"Final cleaning...";s:8:"cleaning";s:11:"Cleaning...";s:13:"course_export";s:18:"Visible in Courses";s:8:"disabled";s:8:"Disabled";s:4:"done";s:4:"Done";s:14:"dump_tree_desc";s:82:"Perform an analysis of the tree and print all tree nodes along with analysis data.";s:9:"dump_tree";s:9:"Dump tree";s:12:"dumping_tree";s:15:"Dumping tree...";s:10:"found_none";s:11:"none found.";s:5:"found";s:6:"found.";s:17:"history_loginname";s:18:"Login Name History";s:17:"initializing_gaps";s:28:"Initializing gaps in tree...";s:20:"language_all_modules";s:11:"All modules";s:24:"language_change_settings";s:24:"Change Language Settings";s:28:"language_clear_local_changes";s:35:"Clear local changes in the database";s:22:"language_cleared_local";s:47:"The local changes were cleared in the database.";s:16:"language_compare";s:7:"Compare";s:24:"language_default_entries";s:18:" (default entries)";s:26:"language_error_clear_local";s:55:"The local changed could not be cleared in the database!";s:25:"language_error_read_local";s:58:"The custom language file does not exist or cannot be read!";s:20:"language_export_file";s:20:"Export Language File";s:22:"language_file_imported";s:34:"The language file %s was imported.";s:19:"language_file_scope";s:19:"Language file scope";s:32:"language_former_file_description";s:282:"To compare your local changes with the changes of the last update, please copy the language file of the previously installed ILIAS version to the path mentioned above. Before the next update you can do this with the option \'Backup the standard language file\' on the maintenance tab.";s:26:"language_former_file_equal";s:61:"The file %s is identical to the current language file.";s:28:"language_former_file_missing";s:30:"The file %s is missing.";s:20:"language_import_file";s:20:"Import Language File";s:27:"language_load_local_changes";s:43:"Load custom language file into the database";s:21:"language_loaded_local";s:54:"The custom language file was loaded into the database.";s:31:"language_maintain_local_changes";s:22:"Maintain local changes";s:17:"language_maintain";s:8:"Maintain";s:20:"language_maintenance";s:20:"Language Maintenance";s:29:"language_mode_existing_delete";s:23:"Delete existing entries";s:30:"language_mode_existing_keepall";s:25:"Keep all existing entries";s:30:"language_mode_existing_keepnew";s:22:"Keep all local changes";s:30:"language_mode_existing_replace";s:24:"Replace existing entries";s:22:"language_mode_existing";s:16:"Existing Entries";s:25:"language_note_translation";s:142:"Page translation mode is activated for each language separately. Additionally the user needs read and write permission on the language folder.";s:28:"language_process_maintenance";s:19:"Process Maintenance";s:27:"language_save_local_changes";s:44:"Save all changes to the custom language file";s:24:"language_scope_commented";s:49:"Shows only entries with comments in language file";s:24:"language_scope_conflicts";s:24:"Local and update changes";s:24:"language_scope_dbremarks";s:44:"Shows only entries with comments in database";s:24:"language_scope_different";s:31:"Different from compare language";s:20:"language_scope_equal";s:25:"Equal to compare language";s:21:"language_scope_global";s:11:"All entries";s:20:"language_scope_local";s:18:"Local changes only";s:24:"language_scope_unchanged";s:22:"Unchanged entries only";s:17:"language_settings";s:17:"Language Settings";s:19:"language_statistics";s:10:"Statistics";s:28:"language_translation_enabled";s:24:"Page translation enabled";s:13:"log_scan_desc";s:65:"Write scan results to ‘scanlog.log’ in client data directory.";s:8:"log_scan";s:16:"Log scan results";s:35:"loginname_change_blocking_time_info";s:138:"Insert a period in days that a user has to wait before changing again its login name. If you enter 0, user can change login names anytime.";s:46:"loginname_change_blocking_time_invalidity_info";s:30:"Please insert a numeric value.";s:30:"loginname_change_blocking_time";s:38:"Blocking Time for Changing Login Names";s:22:"loginname_history_info";s:134:"If activated, login name changes will be logged in database. This history is accessible in the database table ‘loginname_history’.";s:16:"nothing_to_purge";s:19:"Nothing to purge...";s:17:"nothing_to_remove";s:20:"Nothing to remove...";s:18:"nothing_to_restore";s:21:"Nothing to restore...";s:12:"obj_mds_desc";s:49:"Configure Metadata and Advanced Metadata Settings";s:7:"obj_mds";s:8:"Metadata";s:7:"options";s:7:"Options";s:14:"output_options";s:14:"Output options";s:15:"path_to_mkisofs";s:15:"Path to mkisofs";s:45:"reuse_of_loginnames_contained_in_history_info";s:128:"If activated, it is allowed to reuse any login name that is already saved in the history (even if it belongs to a deleted user).";s:20:"purge_age_limit_desc";s:115:"If this field contains a value, only objects which were deleted before the specified number of days will be purged.";s:15:"purge_age_limit";s:9:"Limit age";s:22:"purge_count_limit_desc";s:84:"If this field contains a value, only the specified number of objects will be purged.";s:17:"purge_count_limit";s:11:"Limit count";s:18:"purge_missing_desc";s:57:"Remove all missing and unbound objects found from system.";s:13:"purge_missing";s:21:"Purge missing objects";s:16:"purge_trash_desc";s:44:"Remove all objects in trash bin from system.";s:11:"purge_trash";s:21:"Purge deleted objects";s:21:"purge_type_limit_desc";s:82:"If this field contains a value, only objects of the specified type will be purged.";s:16:"purge_type_limit";s:10:"Limit type";s:20:"purging_missing_objs";s:26:"Purging missing objects...";s:13:"purging_trash";s:16:"Purging trash...";s:20:"purging_unbound_objs";s:26:"Purging unbound objects...";s:7:"purging";s:10:"Purging...";s:23:"removing_invalid_childs";s:32:"Removing invalid tree entries...";s:21:"removing_invalid_refs";s:30:"Removing invalid references...";s:22:"removing_invalid_rolfs";s:32:"Removing invalid role folders...";s:14:"repair_options";s:14:"Repair options";s:20:"restore_missing_desc";s:54:"Restore missing and unbound objects to RecoveryFolder.";s:15:"restore_missing";s:23:"Restore missing objects";s:18:"restore_trash_desc";s:51:"Restore all objects in trash bin to RecoveryFolder.";s:13:"restore_trash";s:23:"Restore deleted objects";s:22:"restoring_missing_objs";s:28:"Restoring missing objects...";s:15:"restoring_trash";s:18:"Restoring trash...";s:22:"restoring_unbound_objs";s:44:"Restoring unbound objects and sub-objects...";s:9:"restoring";s:12:"Restoring...";s:40:"reuse_of_loginnames_contained_in_history";s:20:"Reuse of Login Names";s:9:"scan_desc";s:58:"Scan system for corrupted/invalid/missing/unbound objects.";s:12:"scan_details";s:12:"Scan details";s:10:"scan_modes";s:15:"Scan modes used";s:4:"scan";s:4:"Scan";s:15:"scanning_system";s:18:"Scanning system...";s:22:"searching_deleted_objs";s:32:"Searching for deleted objects...";s:24:"searching_invalid_childs";s:37:"Searching for invalid tree entries...";s:22:"searching_invalid_refs";s:35:"Searching for invalid references...";s:23:"searching_invalid_rolfs";s:37:"Searching for invalid role folders...";s:22:"searching_missing_objs";s:32:"Searching for missing objects...";s:22:"searching_unbound_objs";s:32:"Searching for unbound objects...";s:7:"skipped";s:7:"skipped";s:10:"start_scan";s:6:"Start!";s:11:"systemcheck";s:12:"System check";s:12:"tree_corrupt";s:44:"Tree is corrupted! See scan log for details.";s:26:"usr_loginname_history_info";s:67:"The user changed its login at last at %s. The former login was: %s.";s:13:"view_last_log";s:18:"View last Scan log";s:8:"view_log";s:12:"View details";s:19:"frm_displayed_infos";s:21:"Displayed Information";s:18:"frm_disp_info_desc";s:71:"Please select the attributes which should to be shown in the overviews.";s:25:"adm_rep_tree_presentation";s:28:"Repository Tree Presentation";s:22:"adm_rep_tree_only_cntr";s:14:"Container Only";s:27:"adm_rep_tree_only_cntr_info";s:47:"Only categories, courses and groups are listed.";s:22:"adm_rep_tree_all_types";s:18:"All Resource Types";s:27:"adm_rep_tree_all_types_info";s:46:"All types of resources are listed in the tree.";s:26:"adm_rep_tree_limit_grp_crs";s:48:"Show limited context tree in courses and groups.";s:16:"adm_db_benchmark";s:12:"DB Benchmark";s:25:"adm_activate_db_benchmark";s:18:"Activate Benchmark";s:30:"adm_activate_db_benchmark_desc";s:62:"Benchmarking will be automatically disabled after one request.";s:21:"adm_db_benchmark_user";s:17:"User Account Name";s:26:"adm_db_benchmark_user_desc";s:45:"Only measurements for this user will be made.";s:26:"adm_db_bench_chronological";s:13:"Chronological";s:26:"adm_db_bench_slowest_first";s:13:"Slowest First";s:26:"adm_db_bench_sorted_by_sql";s:13:"Sorted by SQL";s:7:"adm_sql";s:3:"SQL";s:8:"adm_time";s:4:"Time";s:27:"adm_db_bench_by_first_table";s:32:"Aggregated by First Table in SQL";s:17:"adm_nr_statements";s:20:"Number of Statements";s:9:"adm_table";s:5:"Table";s:12:"group_export";s:17:"Visible in Groups";s:31:"adm_rep_tree_limit_grp_crs_info";s:84:"This relies on and automatically activates the ‘Synchronize Tree Frame’ feature.";s:21:"language_scope_merged";s:52:"Local changes merged into the standard language file";s:20:"language_scope_added";s:20:"Local additions only";s:28:"language_merge_local_changes";s:51:"Merge local changes into the standard language file";s:31:"language_delete_local_additions";s:38:"Delete local additions in the database";s:27:"language_error_write_global";s:44:"The standard language file can\'t be written!";s:27:"language_error_local_missed";s:40:"The custom language file does not exist!";s:27:"language_error_delete_local";s:42:"The custom language file can\'t be deleted!";s:27:"language_local_file_deleted";s:37:"The custom language file was deleted.";s:26:"language_remove_local_file";s:31:"Delete the custom language file";s:22:"language_merged_global";s:62:"The local changes were merged into the standard language file.";s:20:"apache_auth_settings";s:6:"Apache";s:15:"apache_settings";s:29:"Configure LDAP Authentication";s:18:"apache_enable_auth";s:36:"Enable Apache Authentication support";s:17:"apache_autocreate";s:25:"Enable account generation";s:19:"apache_default_role";s:17:"Default user role";s:19:"apache_enable_local";s:28:"Enable local user assignment";s:18:"apache_enable_ldap";s:27:"Enable LDAP user assignment";s:26:"apache_auth_indicator_name";s:45:"Indicator-field for successful authentication";s:27:"apache_auth_indicator_value";s:45:"Indicator-value for successful authentication";s:33:"apache_auth_enable_override_login";s:27:"Override default login page";s:33:"apache_auth_target_override_login";s:32:"Target url for custom login page";s:27:"apache_auth_username_config";s:22:"Username configuration";s:32:"apache_auth_username_config_type";s:4:"Type";s:35:"apache_auth_username_direct_mapping";s:19:"Straight assignment";s:37:"apache_auth_username_extended_mapping";s:19:"Extended assignment";s:32:"apache_auth_username_by_function";s:36:"Assign user names by custom function";s:40:"apache_ldap_hint_ldap_must_be_configured";s:41:"LDAP must be configured in administration";s:45:"apache_auth_username_direct_mapping_fieldname";s:20:"Field for assignment";s:11:"auth_apache";s:6:"Apache";s:31:"apache_settings_changed_success";s:19:"Configuration saved";s:38:"apache_auth_authenticate_on_login_page";s:54:"Try Apache authentication when entering the login page";s:22:"adm_settings_templates";s:18:"Settings Templates";s:25:"adm_add_settings_template";s:12:"Add Template";s:26:"adm_edit_settings_template";s:13:"Edit Template";s:13:"adm_hide_tabs";s:9:"Hide Tabs";s:23:"adm_predefined_settings";s:19:"Predefined Settings";s:9:"adm_value";s:16:"Predefined Value";s:8:"adm_hide";s:21:"Hide in Settings Form";s:33:"adm_sure_delete_settings_template";s:53:"Do you really want to delete the following templates?";s:13:"user_criteria";s:20:"Unique user criteria";s:18:"user_criteria_desc";s:136:"Unique user criteria that is used for test results import/export. This is needed to identify identical users on different ILIAS systems.";s:20:"apache_auth_security";s:17:"Security Settings";s:19:"apache_auth_domains";s:27:"Allowed Redirection Domains";s:31:"apache_auth_domains_description";s:282:"Enter one domain per line to allow redirection to this target.
If ILIAS is reachable by more than one domain please enter all target you want to allow.
Example: example.com allows the redirection to http://example.com and http://www.example.com and all pages located there.";s:8:"obj_blga";s:4:"Blog";s:13:"obj_blga_desc";s:20:"Global Blog Settings";s:8:"obj_prfa";s:9:"Portfolio";s:13:"obj_prfa_desc";s:25:"Global Portfolio Settings";s:13:"obj_chta_desc";s:19:"Chat Administration";s:25:"adm_layout_and_navigation";s:21:"Layout and Navigation";s:34:"adm_show_comments_tagging_in_lists";s:55:"Show number of notes, comments and tags in object lists";s:8:"obj_otpl";s:18:"Didactic Templates";s:13:"obj_otpl_desc";s:69:"Template for creating new objects with predefined permission settings";s:27:"adm_rep_shorten_description";s:30:"Limited Length of Descriptions";s:32:"adm_rep_shorten_description_info";s:96:"If activated all descriptions in object lists are presented with a maximum number of characters.";s:34:"adm_rep_shorten_description_length";s:28:"Maximum number of characters";s:11:"adm_imprint";s:12:"Legal Notice";s:20:"adm_imprint_inactive";s:63:"Legal notice is not active and users are not able to access it.";s:23:"adm_user_starting_point";s:23:"Personal Starting Point";s:28:"adm_user_starting_point_info";s:53:"Select the page or object which is shown after login.";s:30:"adm_user_starting_point_object";s:17:"Repository Object";s:30:"adm_user_starting_point_ref_id";s:12:"Reference-Id";s:32:"adm_user_starting_point_personal";s:16:"Personal Setting";s:37:"adm_user_starting_point_personal_info";s:50:"If activated users may select their starting page.";s:20:"adm_adm_role_protect";s:26:"Protect Administrator Role";s:25:"adm_adm_role_protect_info";s:93:"If enabled, only administrator are allowed to de/assign users from/to the administrator role.";s:21:"system_check_no_owner";s:17:"Ownerless Objects";s:9:"adm_https";s:5:"HTTPS";s:25:"adm_external_setting_edit";s:13:"Edit Settings";s:36:"adm_user_starting_point_invalid_info";s:37:"This feature is currently not active.";s:14:"vc_information";s:32:"Show Version Control Information";s:29:"vc_information_not_determined";s:58:"ILIAS could not determine any version control information.";s:20:"svn_revision_current";s:20:"Current Revision: %s";s:24:"svn_revision_last_change";s:25:"Last Changed Revision: %s";s:8:"svn_root";s:8:"Root: %s";s:8:"svn_path";s:8:"Path: %s";s:12:"git_revision";s:10:"Number: %s";s:14:"git_hash_short";s:23:"Commit Hash (short): %s";s:15:"git_last_commit";s:15:"Last Commit: %s";s:27:"adm_captcha_anonymous_short";s:7:"Captcha";s:25:"adm_captcha_anonymous_frm";s:122:"Activate captcha for anonymous in forums. Please keep in mind that this may effect the accessibility of your installation.";s:26:"adm_captcha_anonymous_auth";s:126:"Activate captcha for anonymous in login form. Please keep in mind that this may effect the accessibility of your installation.";s:25:"adm_captcha_anonymous_reg";s:133:"Activate captcha for anonymous in registration form. Please keep in mind that this may effect the accessibility of your installation.";s:26:"adm_captcha_anonymous_wiki";s:121:"Activate captcha for anonymous in wikis. Please keep in mind that this may effect the accessibility of your installation.";s:8:"obj_excs";s:8:"Exercise";s:13:"obj_excs_desc";s:24:"Global Exercise Settings";s:8:"obj_taxs";s:8:"Taxonomy";s:13:"obj_taxs_desc";s:24:"Global Taxonomy Settings";s:39:"adm_show_comments_tagging_in_lists_tags";s:30:"Display tags instead of number";s:34:"language_mode_existing_delete_info";s:281:"Delete all entries in the database before importing the file.
WARNING: The imported language file should be complete, otherwise there will be undefined language variables. If that happens, switch to the tab ‘Maintain’ and choose ‘Clear local changes in the database’.";s:35:"language_mode_existing_keepall_info";s:62:"Import only new entries that do not yet exist in the database.";s:35:"language_mode_existing_keepnew_info";s:143:"Import new entries and overwrite all entries that still have their default values. Keep those entries that are already changed in the database.";s:35:"language_mode_existing_replace_info";s:99:"Import new entries and replace all existing entries with the new values defined in the import file.";s:26:"language_scope_global_info";s:83:"Export all database entries of this language. This can be used for backup purposes.";s:25:"language_scope_local_info";s:69:"Export all entries that are locally added or changed in the database.";s:25:"language_scope_added_info";s:176:"Export all entries that are locally added in the database. This can be used to backup additional development entries before local changes are deleted on the tab ‘Maintain’.";s:29:"language_scope_unchanged_info";s:200:"Export all default language entries that are not changed in the database. This is the opposite to ‘Local changes only’. Both together are a complete backup of the current language in the database.";s:26:"language_scope_merged_info";s:196:"Export the standard ILIAS language file with all local changes merged in alphabetically by module and identifier. This can be used to update the standard language file on the ILIAS git repository.";s:32:"language_save_local_changes_info";s:300:"Save all locally added or changed database entries to the file Customizing/global/lang/ilias_%s.lang.local and set the language status to ‘Installed With Local’. The web server must have write permission in this folder. Please note that this file is the same for all clients of this installation.";s:32:"language_load_local_changes_info";s:163:"Load the file Customizing/global/lang/ilias_%s.lang.local to the database. New entries of this file are added to the database and existing entries are overwritten.";s:33:"language_clear_local_changes_info";s:145:"Reset the database entries of this language to the default entries defined in lang/ilias_%s.lang. All local changes or additions will be removed.";s:36:"language_delete_local_additions_info";s:59:"Delete all entries that were locally added to the database.";s:33:"language_merge_local_changes_info";s:160:"Merge all local changes and additions alphabetically into the standard language file lang/ilias_%s.lang. The web server must have write permission on this file.";s:31:"language_remove_local_file_info";s:187:"Remove the file Customizing/global/lang/ilias_%s.lang.local and change the language status from ‘Installed With Local’ to ‘Installed’. The changes in the database are not touched.";s:18:"language_save_dist";s:33:"Backup the standard language file";s:23:"language_save_dist_info";s:179:"Create a backup of the standard ILIAS language file in the ILIAS data directory. This helps after an ILIAS update to find conflicst of own changes with updated language variables.";s:19:"language_saved_dist";s:58:"The backup of the standard ILIAS language file is created.";s:25:"language_save_dist_failed";s:68:"The backup of the standard ILIAS language file could not be written.";s:19:"adm_missing_entries";s:15:"Missing Entries";s:28:"adm_missing_entry_add_action";s:3:"Add";s:21:"adm_missing_entry_add";s:13:"Add New Entry";s:35:"adm_user_starting_point_ref_id_info";s:168:"Open the object that you would like to use as Personal Starting Point. Please copy the number directly following "ref_id=" in the browser bar into the text input field.";s:31:"adm_user_starting_point_inherit";s:21:"Use Standard-Settings";s:36:"adm_user_starting_point_inherit_info";s:89:"The settings that were made by the administrator of the platform as a whole will be used.";s:26:"adm_repository_and_objects";s:22:"Repository and Objects";s:19:"adm_extending_ilias";s:15:"Extending ILIAS";s:19:"adm_search_and_find";s:15:"Search and Find";s:16:"adm_achievements";s:12:"Achievements";s:15:"adm_maintenance";s:31:"System Settings and Maintenance";s:23:"adm_user_administration";s:15:"Users and Roles";s:22:"adm_personal_workspace";s:18:"Personal Workspace";}'))); +'module' => array('text', 'administration'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:276:{s:25:"org_op_edit_user_accounts";s:18:"Edit User Accounts";s:17:"adm_communication";s:13:"Communication";s:29:"adm_pub_section_domain_filter";s:13:"Domain Filter";s:34:"adm_pub_section_domain_filter_info";s:99:"Domain filters granting anonymous access. Enter one ore more domains, which allow anonymous access.";s:24:"adm_item_cmd_asynch_info";s:167:"Action commands, e.g. in the repository, are loaded asynchronously. This increases performance in general, but slows down loading of action command lists a little bit.";s:19:"adm_item_cmd_asynch";s:41:"Load Resource Action Lists Asynchronously";s:15:"adm_locale_info";s:155:"Locale setting influences e.g. sorting in lists. Examples are nl_NL or de_DE. Multiple locales can be separated by comma. The first valid one will be used.";s:10:"adm_locale";s:6:"Locale";s:22:"allow_change_loginname";s:51:"Permit Change of Login Names in ‘Personal Data’";s:16:"analysis_options";s:16:"Analysis options";s:12:"analyze_data";s:33:"Analyze and repair data integrity";s:24:"analyzing_tree_structure";s:27:"Analyzing tree structure...";s:28:"auth_auth_mode_determination";s:47:"Authentication Method Determination (for Login)";s:14:"auth_automatic";s:14:"Fixed Sequence";s:12:"auth_by_user";s:11:"By the User";s:23:"auth_kind_determination";s:21:"Kind of Determination";s:28:"auth_mode_determination_info";s:158:"Choose either if the users have to select their authentication method on the login screen or if this is managed by a fixed sequence of authentication methods.";s:10:"clean_desc";s:78:"Remove invalid references and tree entries. Initialize gaps in tree structure.";s:5:"clean";s:8:"Clean up";s:14:"cleaning_final";s:17:"Final cleaning...";s:8:"cleaning";s:11:"Cleaning...";s:13:"course_export";s:18:"Visible in Courses";s:8:"disabled";s:8:"Disabled";s:4:"done";s:4:"Done";s:14:"dump_tree_desc";s:82:"Perform an analysis of the tree and print all tree nodes along with analysis data.";s:9:"dump_tree";s:9:"Dump tree";s:12:"dumping_tree";s:15:"Dumping tree...";s:10:"found_none";s:11:"none found.";s:5:"found";s:6:"found.";s:17:"history_loginname";s:18:"Login Name History";s:17:"initializing_gaps";s:28:"Initializing gaps in tree...";s:20:"language_all_modules";s:11:"All modules";s:24:"language_change_settings";s:24:"Change Language Settings";s:28:"language_clear_local_changes";s:35:"Clear local changes in the database";s:22:"language_cleared_local";s:47:"The local changes were cleared in the database.";s:16:"language_compare";s:7:"Compare";s:24:"language_default_entries";s:18:" (default entries)";s:26:"language_error_clear_local";s:55:"The local changed could not be cleared in the database!";s:25:"language_error_read_local";s:58:"The custom language file does not exist or cannot be read!";s:20:"language_export_file";s:20:"Export Language File";s:22:"language_file_imported";s:34:"The language file %s was imported.";s:19:"language_file_scope";s:19:"Language file scope";s:32:"language_former_file_description";s:282:"To compare your local changes with the changes of the last update, please copy the language file of the previously installed ILIAS version to the path mentioned above. Before the next update you can do this with the option \'Backup the standard language file\' on the maintenance tab.";s:26:"language_former_file_equal";s:61:"The file %s is identical to the current language file.";s:28:"language_former_file_missing";s:30:"The file %s is missing.";s:20:"language_import_file";s:20:"Import Language File";s:27:"language_load_local_changes";s:43:"Load custom language file into the database";s:21:"language_loaded_local";s:54:"The custom language file was loaded into the database.";s:31:"language_maintain_local_changes";s:22:"Maintain local changes";s:17:"language_maintain";s:8:"Maintain";s:20:"language_maintenance";s:20:"Language Maintenance";s:29:"language_mode_existing_delete";s:23:"Delete existing entries";s:30:"language_mode_existing_keepall";s:25:"Keep all existing entries";s:30:"language_mode_existing_keepnew";s:22:"Keep all local changes";s:30:"language_mode_existing_replace";s:24:"Replace existing entries";s:22:"language_mode_existing";s:16:"Existing Entries";s:25:"language_note_translation";s:142:"Page translation mode is activated for each language separately. Additionally the user needs read and write permission on the language folder.";s:28:"language_process_maintenance";s:19:"Process Maintenance";s:27:"language_save_local_changes";s:44:"Save all changes to the custom language file";s:24:"language_scope_commented";s:49:"Shows only entries with comments in language file";s:24:"language_scope_conflicts";s:24:"Local and update changes";s:24:"language_scope_dbremarks";s:44:"Shows only entries with comments in database";s:24:"language_scope_different";s:31:"Different from compare language";s:20:"language_scope_equal";s:25:"Equal to compare language";s:21:"language_scope_global";s:11:"All entries";s:20:"language_scope_local";s:18:"Local changes only";s:24:"language_scope_unchanged";s:22:"Unchanged entries only";s:17:"language_settings";s:17:"Language Settings";s:19:"language_statistics";s:10:"Statistics";s:28:"language_translation_enabled";s:24:"Page translation enabled";s:13:"log_scan_desc";s:65:"Write scan results to ‘scanlog.log’ in client data directory.";s:8:"log_scan";s:16:"Log scan results";s:35:"loginname_change_blocking_time_info";s:138:"Insert a period in days that a user has to wait before changing again its login name. If you enter 0, user can change login names anytime.";s:46:"loginname_change_blocking_time_invalidity_info";s:30:"Please insert a numeric value.";s:30:"loginname_change_blocking_time";s:38:"Blocking Time for Changing Login Names";s:22:"loginname_history_info";s:134:"If activated, login name changes will be logged in database. This history is accessible in the database table ‘loginname_history’.";s:16:"nothing_to_purge";s:19:"Nothing to purge...";s:17:"nothing_to_remove";s:20:"Nothing to remove...";s:18:"nothing_to_restore";s:21:"Nothing to restore...";s:12:"obj_mds_desc";s:49:"Configure Metadata and Advanced Metadata Settings";s:7:"obj_mds";s:8:"Metadata";s:7:"options";s:7:"Options";s:14:"output_options";s:14:"Output options";s:15:"path_to_mkisofs";s:15:"Path to mkisofs";s:45:"reuse_of_loginnames_contained_in_history_info";s:128:"If activated, it is allowed to reuse any login name that is already saved in the history (even if it belongs to a deleted user).";s:20:"purge_age_limit_desc";s:115:"If this field contains a value, only objects which were deleted before the specified number of days will be purged.";s:15:"purge_age_limit";s:9:"Limit age";s:22:"purge_count_limit_desc";s:84:"If this field contains a value, only the specified number of objects will be purged.";s:17:"purge_count_limit";s:11:"Limit count";s:18:"purge_missing_desc";s:57:"Remove all missing and unbound objects found from system.";s:13:"purge_missing";s:21:"Purge missing objects";s:16:"purge_trash_desc";s:44:"Remove all objects in trash bin from system.";s:11:"purge_trash";s:21:"Purge deleted objects";s:21:"purge_type_limit_desc";s:82:"If this field contains a value, only objects of the specified type will be purged.";s:16:"purge_type_limit";s:10:"Limit type";s:20:"purging_missing_objs";s:26:"Purging missing objects...";s:13:"purging_trash";s:16:"Purging trash...";s:20:"purging_unbound_objs";s:26:"Purging unbound objects...";s:7:"purging";s:10:"Purging...";s:23:"removing_invalid_childs";s:32:"Removing invalid tree entries...";s:21:"removing_invalid_refs";s:30:"Removing invalid references...";s:22:"removing_invalid_rolfs";s:32:"Removing invalid role folders...";s:14:"repair_options";s:14:"Repair options";s:20:"restore_missing_desc";s:54:"Restore missing and unbound objects to RecoveryFolder.";s:15:"restore_missing";s:23:"Restore missing objects";s:18:"restore_trash_desc";s:51:"Restore all objects in trash bin to RecoveryFolder.";s:13:"restore_trash";s:23:"Restore deleted objects";s:22:"restoring_missing_objs";s:28:"Restoring missing objects...";s:15:"restoring_trash";s:18:"Restoring trash...";s:22:"restoring_unbound_objs";s:44:"Restoring unbound objects and sub-objects...";s:9:"restoring";s:12:"Restoring...";s:40:"reuse_of_loginnames_contained_in_history";s:20:"Reuse of Login Names";s:9:"scan_desc";s:58:"Scan system for corrupted/invalid/missing/unbound objects.";s:12:"scan_details";s:12:"Scan details";s:10:"scan_modes";s:15:"Scan modes used";s:4:"scan";s:4:"Scan";s:15:"scanning_system";s:18:"Scanning system...";s:22:"searching_deleted_objs";s:32:"Searching for deleted objects...";s:24:"searching_invalid_childs";s:37:"Searching for invalid tree entries...";s:22:"searching_invalid_refs";s:35:"Searching for invalid references...";s:23:"searching_invalid_rolfs";s:37:"Searching for invalid role folders...";s:22:"searching_missing_objs";s:32:"Searching for missing objects...";s:22:"searching_unbound_objs";s:32:"Searching for unbound objects...";s:7:"skipped";s:7:"skipped";s:10:"start_scan";s:6:"Start!";s:11:"systemcheck";s:12:"System check";s:12:"tree_corrupt";s:44:"Tree is corrupted! See scan log for details.";s:26:"usr_loginname_history_info";s:67:"The user changed its login at last at %s. The former login was: %s.";s:13:"view_last_log";s:18:"View last Scan log";s:8:"view_log";s:12:"View details";s:19:"frm_displayed_infos";s:21:"Displayed Information";s:18:"frm_disp_info_desc";s:71:"Please select the attributes which should to be shown in the overviews.";s:25:"adm_rep_tree_presentation";s:28:"Repository Tree Presentation";s:22:"adm_rep_tree_only_cntr";s:14:"Container Only";s:27:"adm_rep_tree_only_cntr_info";s:47:"Only categories, courses and groups are listed.";s:22:"adm_rep_tree_all_types";s:18:"All Resource Types";s:27:"adm_rep_tree_all_types_info";s:46:"All types of resources are listed in the tree.";s:26:"adm_rep_tree_limit_grp_crs";s:48:"Show limited context tree in courses and groups.";s:16:"adm_db_benchmark";s:12:"DB Benchmark";s:25:"adm_activate_db_benchmark";s:18:"Activate Benchmark";s:30:"adm_activate_db_benchmark_desc";s:62:"Benchmarking will be automatically disabled after one request.";s:21:"adm_db_benchmark_user";s:17:"User Account Name";s:26:"adm_db_benchmark_user_desc";s:45:"Only measurements for this user will be made.";s:26:"adm_db_bench_chronological";s:13:"Chronological";s:26:"adm_db_bench_slowest_first";s:13:"Slowest First";s:26:"adm_db_bench_sorted_by_sql";s:13:"Sorted by SQL";s:7:"adm_sql";s:3:"SQL";s:8:"adm_time";s:4:"Time";s:27:"adm_db_bench_by_first_table";s:32:"Aggregated by First Table in SQL";s:17:"adm_nr_statements";s:20:"Number of Statements";s:9:"adm_table";s:5:"Table";s:12:"group_export";s:17:"Visible in Groups";s:31:"adm_rep_tree_limit_grp_crs_info";s:84:"This relies on and automatically activates the ‘Synchronize Tree Frame’ feature.";s:21:"language_scope_merged";s:52:"Local changes merged into the standard language file";s:20:"language_scope_added";s:20:"Local additions only";s:28:"language_merge_local_changes";s:51:"Merge local changes into the standard language file";s:31:"language_delete_local_additions";s:38:"Delete local additions in the database";s:27:"language_error_write_global";s:44:"The standard language file can\'t be written!";s:27:"language_error_local_missed";s:40:"The custom language file does not exist!";s:27:"language_error_delete_local";s:42:"The custom language file can\'t be deleted!";s:27:"language_local_file_deleted";s:37:"The custom language file was deleted.";s:26:"language_remove_local_file";s:31:"Delete the custom language file";s:22:"language_merged_global";s:62:"The local changes were merged into the standard language file.";s:20:"apache_auth_settings";s:6:"Apache";s:15:"apache_settings";s:29:"Configure LDAP Authentication";s:18:"apache_enable_auth";s:36:"Enable Apache Authentication support";s:17:"apache_autocreate";s:25:"Enable account generation";s:19:"apache_default_role";s:17:"Default user role";s:19:"apache_enable_local";s:28:"Enable local user assignment";s:18:"apache_enable_ldap";s:27:"Enable LDAP user assignment";s:26:"apache_auth_indicator_name";s:45:"Indicator-field for successful authentication";s:27:"apache_auth_indicator_value";s:45:"Indicator-value for successful authentication";s:33:"apache_auth_enable_override_login";s:27:"Override default login page";s:33:"apache_auth_target_override_login";s:32:"Target url for custom login page";s:27:"apache_auth_username_config";s:22:"Username configuration";s:32:"apache_auth_username_config_type";s:4:"Type";s:35:"apache_auth_username_direct_mapping";s:19:"Straight assignment";s:37:"apache_auth_username_extended_mapping";s:19:"Extended assignment";s:32:"apache_auth_username_by_function";s:36:"Assign user names by custom function";s:40:"apache_ldap_hint_ldap_must_be_configured";s:41:"LDAP must be configured in administration";s:45:"apache_auth_username_direct_mapping_fieldname";s:20:"Field for assignment";s:11:"auth_apache";s:6:"Apache";s:31:"apache_settings_changed_success";s:19:"Configuration saved";s:38:"apache_auth_authenticate_on_login_page";s:54:"Try Apache authentication when entering the login page";s:22:"adm_settings_templates";s:18:"Settings Templates";s:25:"adm_add_settings_template";s:12:"Add Template";s:26:"adm_edit_settings_template";s:13:"Edit Template";s:13:"adm_hide_tabs";s:9:"Hide Tabs";s:23:"adm_predefined_settings";s:19:"Predefined Settings";s:9:"adm_value";s:16:"Predefined Value";s:8:"adm_hide";s:21:"Hide in Settings Form";s:33:"adm_sure_delete_settings_template";s:53:"Do you really want to delete the following templates?";s:13:"user_criteria";s:20:"Unique user criteria";s:18:"user_criteria_desc";s:136:"Unique user criteria that is used for test results import/export. This is needed to identify identical users on different ILIAS systems.";s:20:"apache_auth_security";s:17:"Security Settings";s:19:"apache_auth_domains";s:27:"Allowed Redirection Domains";s:31:"apache_auth_domains_description";s:282:"Enter one domain per line to allow redirection to this target.
If ILIAS is reachable by more than one domain please enter all target you want to allow.
Example: example.com allows the redirection to http://example.com and http://www.example.com and all pages located there.";s:8:"obj_blga";s:4:"Blog";s:13:"obj_blga_desc";s:20:"Global Blog Settings";s:8:"obj_prfa";s:9:"Portfolio";s:13:"obj_prfa_desc";s:25:"Global Portfolio Settings";s:13:"obj_chta_desc";s:19:"Chat Administration";s:25:"adm_layout_and_navigation";s:21:"Layout and Navigation";s:34:"adm_show_comments_tagging_in_lists";s:55:"Show number of notes, comments and tags in object lists";s:8:"obj_otpl";s:18:"Didactic Templates";s:13:"obj_otpl_desc";s:69:"Template for creating new objects with predefined permission settings";s:27:"adm_rep_shorten_description";s:30:"Limited Length of Descriptions";s:32:"adm_rep_shorten_description_info";s:96:"If activated all descriptions in object lists are presented with a maximum number of characters.";s:34:"adm_rep_shorten_description_length";s:28:"Maximum number of characters";s:11:"adm_imprint";s:12:"Legal Notice";s:20:"adm_imprint_inactive";s:63:"Legal notice is not active and users are not able to access it.";s:23:"adm_user_starting_point";s:23:"Personal Starting Point";s:28:"adm_user_starting_point_info";s:53:"Select the page or object which is shown after login.";s:30:"adm_user_starting_point_object";s:17:"Repository Object";s:30:"adm_user_starting_point_ref_id";s:12:"Reference-Id";s:32:"adm_user_starting_point_personal";s:16:"Personal Setting";s:37:"adm_user_starting_point_personal_info";s:50:"If activated users may select their starting page.";s:20:"adm_adm_role_protect";s:26:"Protect Administrator Role";s:25:"adm_adm_role_protect_info";s:93:"If enabled, only administrator are allowed to de/assign users from/to the administrator role.";s:21:"system_check_no_owner";s:17:"Ownerless Objects";s:9:"adm_https";s:5:"HTTPS";s:25:"adm_external_setting_edit";s:13:"Edit Settings";s:36:"adm_user_starting_point_invalid_info";s:37:"This feature is currently not active.";s:14:"vc_information";s:32:"Show Version Control Information";s:29:"vc_information_not_determined";s:58:"ILIAS could not determine any version control information.";s:20:"svn_revision_current";s:20:"Current Revision: %s";s:24:"svn_revision_last_change";s:25:"Last Changed Revision: %s";s:8:"svn_root";s:8:"Root: %s";s:8:"svn_path";s:8:"Path: %s";s:12:"git_revision";s:10:"Number: %s";s:14:"git_hash_short";s:23:"Commit Hash (short): %s";s:15:"git_last_commit";s:15:"Last Commit: %s";s:27:"adm_captcha_anonymous_short";s:7:"Captcha";s:25:"adm_captcha_anonymous_frm";s:122:"Activate captcha for anonymous in forums. Please keep in mind that this may effect the accessibility of your installation.";s:26:"adm_captcha_anonymous_auth";s:126:"Activate captcha for anonymous in login form. Please keep in mind that this may effect the accessibility of your installation.";s:25:"adm_captcha_anonymous_reg";s:133:"Activate captcha for anonymous in registration form. Please keep in mind that this may effect the accessibility of your installation.";s:12:"adm_auth_reg";s:27:"Authentication Registration";s:14:"adm_auth_login";s:20:"Authentication Login";s:26:"adm_captcha_anonymous_wiki";s:121:"Activate captcha for anonymous in wikis. Please keep in mind that this may effect the accessibility of your installation.";s:8:"obj_excs";s:8:"Exercise";s:13:"obj_excs_desc";s:24:"Global Exercise Settings";s:8:"obj_taxs";s:8:"Taxonomy";s:13:"obj_taxs_desc";s:24:"Global Taxonomy Settings";s:39:"adm_show_comments_tagging_in_lists_tags";s:30:"Display tags instead of number";s:34:"language_mode_existing_delete_info";s:281:"Delete all entries in the database before importing the file.
WARNING: The imported language file should be complete, otherwise there will be undefined language variables. If that happens, switch to the tab ‘Maintain’ and choose ‘Clear local changes in the database’.";s:35:"language_mode_existing_keepall_info";s:62:"Import only new entries that do not yet exist in the database.";s:35:"language_mode_existing_keepnew_info";s:143:"Import new entries and overwrite all entries that still have their default values. Keep those entries that are already changed in the database.";s:35:"language_mode_existing_replace_info";s:99:"Import new entries and replace all existing entries with the new values defined in the import file.";s:26:"language_scope_global_info";s:83:"Export all database entries of this language. This can be used for backup purposes.";s:25:"language_scope_local_info";s:69:"Export all entries that are locally added or changed in the database.";s:25:"language_scope_added_info";s:176:"Export all entries that are locally added in the database. This can be used to backup additional development entries before local changes are deleted on the tab ‘Maintain’.";s:29:"language_scope_unchanged_info";s:200:"Export all default language entries that are not changed in the database. This is the opposite to ‘Local changes only’. Both together are a complete backup of the current language in the database.";s:26:"language_scope_merged_info";s:196:"Export the standard ILIAS language file with all local changes merged in alphabetically by module and identifier. This can be used to update the standard language file on the ILIAS git repository.";s:32:"language_save_local_changes_info";s:300:"Save all locally added or changed database entries to the file Customizing/global/lang/ilias_%s.lang.local and set the language status to ‘Installed With Local’. The web server must have write permission in this folder. Please note that this file is the same for all clients of this installation.";s:32:"language_load_local_changes_info";s:163:"Load the file Customizing/global/lang/ilias_%s.lang.local to the database. New entries of this file are added to the database and existing entries are overwritten.";s:33:"language_clear_local_changes_info";s:145:"Reset the database entries of this language to the default entries defined in lang/ilias_%s.lang. All local changes or additions will be removed.";s:36:"language_delete_local_additions_info";s:59:"Delete all entries that were locally added to the database.";s:33:"language_merge_local_changes_info";s:160:"Merge all local changes and additions alphabetically into the standard language file lang/ilias_%s.lang. The web server must have write permission on this file.";s:31:"language_remove_local_file_info";s:187:"Remove the file Customizing/global/lang/ilias_%s.lang.local and change the language status from ‘Installed With Local’ to ‘Installed’. The changes in the database are not touched.";s:18:"language_save_dist";s:33:"Backup the standard language file";s:23:"language_save_dist_info";s:179:"Create a backup of the standard ILIAS language file in the ILIAS data directory. This helps after an ILIAS update to find conflicst of own changes with updated language variables.";s:19:"language_saved_dist";s:58:"The backup of the standard ILIAS language file is created.";s:25:"language_save_dist_failed";s:68:"The backup of the standard ILIAS language file could not be written.";s:19:"adm_missing_entries";s:15:"Missing Entries";s:28:"adm_missing_entry_add_action";s:3:"Add";s:21:"adm_missing_entry_add";s:13:"Add New Entry";s:35:"adm_user_starting_point_ref_id_info";s:168:"Open the object that you would like to use as Personal Starting Point. Please copy the number directly following "ref_id=" in the browser bar into the text input field.";s:31:"adm_user_starting_point_inherit";s:21:"Use Standard-Settings";s:36:"adm_user_starting_point_inherit_info";s:89:"The settings that were made by the administrator of the platform as a whole will be used.";s:26:"adm_repository_and_objects";s:22:"Repository and Objects";s:19:"adm_extending_ilias";s:15:"Extending ILIAS";s:19:"adm_search_and_find";s:15:"Search and Find";s:16:"adm_achievements";s:12:"Achievements";s:15:"adm_maintenance";s:31:"System Settings and Maintenance";s:23:"adm_user_administration";s:15:"Users and Roles";s:22:"adm_personal_workspace";s:18:"Personal Workspace";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'adve'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:64:{s:12:"adve_grp_glo";s:10:"Glossaries";s:11:"adve_grp_lm";s:22:"ILIAS Learning Modules";s:12:"adve_grp_rep";s:16:"Repository Pages";s:14:"adve_grp_scorm";s:13:"SCORM Editing";s:13:"adve_grp_test";s:19:"Test and Assessment";s:13:"adve_grp_wiki";s:5:"Wikis";s:25:"adve_page_editor_settings";s:17:"ILIAS Page Editor";s:17:"adve_rte_settings";s:14:"TinyMCE Editor";s:26:"adve_text_content_features";s:17:"Text Content Menu";s:15:"adve_pe_general";s:7:"General";s:17:"adve_use_physical";s:32:"Use b/i/u instead of str/emp/imp";s:22:"adve_use_physical_info";s:334:"This setting replaces the semantic style class buttons for strong, emphatic and important with physical attribute buttons b (bold), i (italic) and u (underline). Please note, that this may result in inconsistencies, if the style editor is used and other physical attributes are assigned to the strong/emphatic/important style classes.";s:15:"adve_activation";s:10:"Activation";s:17:"adve_use_tiny_mce";s:34:"Enable TinyMCE for WYSIWYG Editing";s:20:"adve_excass_settings";s:20:"Exercise Assignments";s:32:"advanced_editing_excass_settings";s:25:"Exercise Text Assignments";s:18:"adve_blocking_mode";s:9:"Edit Lock";s:12:"adve_minutes";s:7:"Minutes";s:17:"adve_minutes_info";s:91:"Minutes of inactivity before an edit lock expires and a page can be edited by another user.";s:19:"char_selector_admin";s:75:"Menu for Selecting Special Characters (Unicode) in Tests and Question Pools";s:18:"char_selector_user";s:56:"Menu for Selecting Special Characters (Unicode) in Tests";s:18:"char_selector_test";s:37:"Selector Special Characters (Unicode)";s:31:"char_selector_inherit_info_test";s:162:"Depending on the settings made in the platforms\' administration or those made by individual users in their settings the Ω-button is displayed in the test or not.";s:31:"char_selector_inherit_info_user";s:89:"The settings that were made by the administrator of the platform as a whole will be used.";s:26:"char_selector_inherit_test";s:84:"Settings made either Globally by Administrators or Individually by Users are Applied";s:26:"char_selector_inherit_user";s:21:"Use Standard-Settings";s:28:"char_selector_disabled_admin";s:99:"Ω-Button for Activating the Menu for Selecting Special Characters is displayed only if switched on";s:33:"char_selector_disabled_info_admin";s:249:"The menu for selecting special characters (Unicode) in tests and question pools is activated but the Ω-Button has to be switched on by users in their settings and or in individual tests or questions pools. Test Settings will override user settings.";s:32:"char_selector_disabled_info_test";s:110:"Regardless of a user\'s individual setting the special character selector is switched off for taking this test.";s:32:"char_selector_disabled_info_user";s:160:"In tests a menu for selecting special characters will be not displayed. However individual tests ‘force switch on’ the menu though your deactivated it here.";s:27:"char_selector_disabled_test";s:33:"Special Character Selector is Off";s:27:"char_selector_disabled_user";s:45:"Disable Menu for Selecting Special Characters";s:28:"char_selector_inactive_admin";s:61:"Globally Deactivate the Menu for Selecting Special Characters";s:33:"char_selector_inactive_info_admin";s:210:"The menu for selecting special characters is deactivated for the whole system. Users cannot make individual settings in their personal settings nor can individual tests or questions pools switch on the setting.";s:27:"char_selector_enabled_admin";s:90:"Ω-Button for Activating the Menu for Selecting Special Characters is Displayed by Default";s:32:"char_selector_enabled_info_admin";s:306:"The menu for selecting special characters (Unicode) is activated in tests and question pools. It will present users with the selection of Unicode blocks composed below. Users can make individual settings in their personal settings and the setting can be switched on for individual tests or questions pools.";s:31:"char_selector_enabled_info_test";s:169:"Regardless of a user\'s individual setting the Ω-button for switching on the special character selector will be displayed in the test. Special characters can be entered.";s:31:"char_selector_enabled_info_user";s:225:"In tests a menu for selecting special characters will be displayed. However individual tests can prevent this setting from becoming effective and not display the special character menu despite your choice about activating it.";s:26:"char_selector_enabled_test";s:32:"Special Character Selector is On";s:26:"char_selector_enabled_user";s:44:"Enable Menu for Selecting Special Characters";s:20:"char_selector_blocks";s:42:"Available Special Character Sets (Unicode)";s:25:"char_selector_blocks_info";s:119:"All characters of the selected blocks will be listed, but not all of them may be supported by the current browser font.";s:26:"char_selector_custom_items";s:16:"Custom Selection";s:32:"char_selector_custom_items_info1";s:114:"The custom selection will be listed before the selected blocks. Please add your characters in the following style:";s:33:"char_selector_custom_items_info2a";s:5:"A B C";s:33:"char_selector_custom_items_info2b";s:71:"Characters are separated by space, generating separate selector buttons";s:33:"char_selector_custom_items_info3a";s:6:"A BC D";s:33:"char_selector_custom_items_info3b";s:51:"It is possible to put more characters on one button";s:33:"char_selector_custom_items_info4a";s:3:"A-Z";s:33:"char_selector_custom_items_info4b";s:50:"Ranges of characters can be defined with a ‘-’";s:33:"char_selector_custom_items_info5a";s:6:"U+00C0";s:33:"char_selector_custom_items_info5b";s:70:"A character can also be defined in Unicode notation (case insensitive)";s:33:"char_selector_custom_items_info6a";s:13:"U+00C0-U+00CF";s:33:"char_selector_custom_items_info6b";s:44:"Ranges are also possible in Unicode notation";s:25:"char_selector_unicode_all";s:18:"All Unicode Blocks";s:27:"adve_char_selector_settings";s:18:"Character Selector";s:28:"advanced_editing_tst_editing";s:43:"Page Editor for additional question content";s:33:"advanced_editing_tst_editing_desc";s:63:"Activates ILIAS Page Editor for feedback and hint text editing.";s:41:"char_selector_msg_blocks_or_custom_needed";s:93:"When you activate the selector, please choose a character block or enter a special selection!";s:21:"adve_auto_url_linking";s:16:"URL Auto-Linking";s:26:"adve_auto_url_linking_info";s:103:"Tries to identify URLs like "http://.." in text paragraphs and automatically creates links around them.";s:23:"char_selector_menu_open";s:31:"Open Special Character Selector";s:24:"char_selector_menu_close";s:32:"Close Special Character Selector";s:13:"adve_grp_copa";s:13:"Content Pages";}'))); @@ -34421,7 +34424,7 @@ function setupILIASDatabase() 'module' => array('text', 'cntr'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:40:{s:17:"cntr_add_new_item";s:12:"Add New Item";s:23:"cntr_back_to_old_editor";s:18:"Back to Old Editor";s:24:"cntr_hide_title_and_icon";s:19:"Hide Title and Icon";s:11:"cntr_manage";s:6:"Manage";s:36:"cntr_old_editor_open_standard_editor";s:20:"Open Standard Editor";s:23:"cntr_old_editor_warning";s:226:"The maintenance of this editor will be discontinued in a future major releases of ILIAS. You may still use it to edit the content of this page now. But we recommend to switch to the standard page editor of ILIAS when possible.";s:13:"cntr_ordering";s:7:"Sorting";s:18:"cntr_saved_sorting";s:14:"Saved Sorting.";s:29:"cntr_switch_to_new_editor_cmd";s:64:"Switch to new content of this page. Old content will be removed.";s:33:"cntr_switch_to_new_editor_message";s:200:"This is the supported standard editor. The content from the old editor cannot be transferred. Please start adding new page content below. If you click the following link, the new content will be used.";s:20:"cntr_switched_editor";s:24:"Switched to new content.";s:22:"cntr_text_media_editor";s:14:"Customize Page";s:17:"cntr_view_by_type";s:20:"Grouped-by-Type View";s:22:"cntr_view_info_by_type";s:60:"This content presentation groups all items by resource type.";s:23:"cntr_view_info_sessions";s:99:"This content presentation groups all sessions first. After that the other course content is listed.";s:21:"cntr_view_info_simple";s:55:"This content presentation lists all items in one block.";s:18:"cntr_view_sessions";s:13:"Sessions View";s:16:"cntr_view_simple";s:11:"Simple View";s:14:"edit_questions";s:14:"Edit Questions";s:33:"container_import_zip_file_invalid";s:109:"The uploaded file is not a valid ILIAS export file. To upload a directory structure please use a file object.";s:18:"cntr_adopt_content";s:13:"Adopt Content";s:35:"prtf_create_portfolio_from_template";s:30:"Create Portfolio From Template";s:24:"exc_next_deadline_single";s:8:"Deadline";s:32:"cntr_container_only_on_their_own";s:123:"Categories, courses, groups, folders or study programmes can only be copied as single objects. Please select one item only.";s:18:"objects_duplicated";s:14:"Objects copied";s:27:"msg_no_downloadable_objects";s:30:"No downloadable objects found.";s:23:"cntr_tax_none_available";s:34:"There are no taxonomies available.";s:32:"cntr_taxonomy_sideblock_settings";s:21:"Presentation Settings";s:28:"cntr_taxonomy_show_sideblock";s:27:"Show taxonomy in side block";s:26:"sorting_new_items_position";s:24:"Position for New Objects";s:24:"sorting_new_items_at_top";s:3:"Top";s:27:"sorting_new_items_at_bottom";s:6:"Bottom";s:23:"sorting_new_items_order";s:21:"Order for New Objects";s:27:"sorting_new_items_direction";s:33:"Sorting Direction for New Objects";s:25:"cntr_taxonomy_definitions";s:19:"Taxonomy Definition";s:18:"cntr_tax_list_info";s:72:"The following are all taxonomies that have been defined for this object.";s:16:"cont_custom_icon";s:11:"Custom Icon";s:22:"tab_back_to_repository";s:18:"Back to Repository";s:19:"cntr_copy_repo_tree";s:15:"Repository Tree";s:17:"cntr_copy_crs_grp";s:21:"My Courses and Groups";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'common'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:2502:{s:13:"obj_nots_desc";s:14:"Notes settings";s:8:"obj_nots";s:5:"Notes";s:13:"obj_coms_desc";s:17:"Comments settings";s:8:"obj_coms";s:8:"Comments";s:13:"obj_lhts_desc";s:25:"Learning history settings";s:8:"obj_lhts";s:16:"Learning History";s:13:"obj_dshs_desc";s:18:"Dashboard settings";s:8:"obj_dshs";s:9:"Dashboard";s:13:"obj_prss_desc";s:27:"Personal resources settings";s:8:"obj_prss";s:18:"Personal Resources";s:19:"msg_wrong_filetypes";s:20:"Allowed Files-Types:";s:31:"session_mail_subject_registered";s:42:"Registration of user "%s" for session "%s"";s:29:"session_mail_subject_deletion";s:45:"Deregistration of user "%s" from session "%s"";s:28:"session_mail_subject_entered";s:36:"Joining of user "%s" in session "%s"";s:21:"register_notification";s:34:""%s" has applied for session "%s".";s:21:"deletion_notification";s:49:""%s" has canceled the attendance of session "%s".";s:20:"entered_notification";s:33:""%s" has joined the session "%s".";s:8:"obj_ltis";s:3:"LTI";s:13:"obj_ltis_desc";s:31:"Learning Tools Interoperability";s:11:"lti_outcome";s:36:"LTI Lernfortschritt Benachrichtigung";s:16:"lti_outcome_info";s:72:"Sendet den Lernfortschrittstatus von LTI-Benutzern an LTI Tool Consumer.";s:27:"pwsp_recalculate_disk_quota";s:47:"Personal Resources: Recalculation of Disk Quota";s:32:"pwsp_recalculate_disk_quota_desc";s:62:"Recalculates all disk quota values for the personal resources.";s:18:"3rd_party_software";s:18:"3rd party software";s:13:"absolute_path";s:13:"Absolute Path";s:20:"accept_usr_agreement";s:24:"Accept terms of service?";s:14:"access_expired";s:7:"expired";s:19:"access_free_granted";s:44:"Set the selected user(s) to unlimited access";s:11:"access_from";s:13:"Access (from)";s:13:"access_public";s:6:"Public";s:17:"access_restricted";s:42:"Set the selected user(s) to limited access";s:12:"access_scope";s:6:"Access";s:16:"access_unlimited";s:9:"Unlimited";s:12:"access_until";s:11:"Valid until";s:12:"access_users";s:15:"Logged in Users";s:6:"access";s:6:"Access";s:28:"accesscount_registered_users";s:38:"Read by number of distinct ILIAS users";s:10:"accessFree";s:25:"Remove \'Valid Until\' Date";s:14:"accessRestrict";s:22:"Set \'Valid Until\' Date";s:20:"account_expires_body";s:43:"Your account is limited, it will expire at:";s:23:"account_expires_subject";s:20:"Your account expires";s:7:"account";s:10:"My Account";s:14:"action_aborted";s:14:"Action aborted";s:6:"action";s:6:"Action";s:7:"actions";s:7:"Actions";s:27:"activate_assessment_logging";s:36:"Activate Test and Assessment Logging";s:14:"activate_https";s:36:"HTTPS handling by ILIAS
(Login)";s:17:"activate_tracking";s:10:"Activation";s:8:"activate";s:10:"Set Active";s:10:"activation";s:12:"Edit Timings";s:6:"active";s:6:"Active";s:13:"add_condition";s:16:"Add Precondition";s:10:"add_member";s:10:"Add Member";s:15:"add_member_role";s:15:"Add Member Role";s:26:"add_new_user_defined_field";s:20:"Add New Custom Field";s:8:"add_note";s:8:"Add Note";s:13:"add_parameter";s:13:"New Parameter";s:8:"add_role";s:8:"Add Role";s:15:"add_translation";s:15:"Add translation";s:22:"add_user_defined_field";s:13:"Add New Field";s:8:"add_user";s:14:"Add Local User";s:3:"add";s:3:"Add";s:19:"added_new_condition";s:22:"Created new condition.";s:15:"additional_info";s:22:"Additional Information";s:7:"address";s:7:"Address";s:16:"admin_force_noti";s:19:"Notification active";s:18:"administrate_users";s:25:"Local User Administration";s:14:"administration";s:14:"Administration";s:13:"administrator";s:13:"Administrator";s:5:"adopt";s:5:"Adopt";s:32:"advanced_editing_allow_html_tags";s:45:"Allow the selected HTML tags for text editing";s:36:"advanced_editing_assessment_settings";s:56:"Allowed HTML Tags for the ILIAS Test and Assessment tool";s:34:"advanced_editing_frm_post_settings";s:19:"Forum Post Settings";s:38:"advanced_editing_rep_page_editing_desc";s:135:"This feature allows adding text/media to pages of a category, course, group or folder. If deactivated, existing content will be hidden.";s:33:"advanced_editing_rep_page_editing";s:36:"Enable Content Editing in Repository";s:30:"advanced_editing_required_tags";s:40:"The following HTML tags are required: %s";s:32:"advanced_editing_survey_settings";s:43:"Allowed HTML Tags for the ILIAS survey tool";s:24:"adve_assessment_settings";s:28:"Test and Assessment Settings";s:22:"adve_frm_post_settings";s:11:"Forum Posts";s:21:"adve_general_settings";s:16:"General Settings";s:20:"adve_survey_settings";s:15:"Survey Settings";s:10:"agree_date";s:9:"Agreed on";s:16:"all_global_roles";s:12:"Global roles";s:15:"all_local_roles";s:17:"Local roles (all)";s:11:"all_objects";s:11:"All Objects";s:9:"all_roles";s:9:"All Roles";s:10:"all_topics";s:10:"All Topics";s:9:"all_users";s:9:"All Users";s:18:"allow_assign_users";s:47:"Allow user assignment for local administrators.";s:20:"allow_override_alert";s:50:"Rules for .htaccess are not interpreted correctly.";s:14:"allow_register";s:44:"Available in registration form for new users";s:23:"already_delivered_files";s:15:"Submitted Files";s:3:"and";s:3:"and";s:9:"anonymous";s:9:"Anonymous";s:7:"answers";s:7:"Answers";s:12:"any_language";s:12:"Any language";s:21:"application_completed";s:23:"Application is complete";s:16:"application_date";s:16:"Application Date";s:12:"applications";s:12:"Applications";s:12:"apply_filter";s:12:"Apply Filter";s:5:"apply";s:5:"Apply";s:11:"appointment";s:11:"Appointment";s:12:"approve_date";s:11:"Approved on";s:17:"approve_recipient";s:20:"Login ID of Approver";s:14:"archive_broken";s:36:"Archive seems to be broken or empty.";s:7:"archive";s:7:"Archive";s:12:"are_you_sure";s:13:"Are you sure?";s:13:"ass_log_admin";s:23:"Log Data Administration";s:22:"ass_log_count_datasets";s:11:"Log Entries";s:22:"ass_log_delete_entries";s:18:"Delete Log Entries";s:27:"ass_log_delete_no_selection";s:54:"Please select at least one test to delete the Log Data";s:15:"ass_log_deleted";s:52:"The Log Data for the selected tests has been deleted";s:14:"ass_log_output";s:15:"Log Data Output";s:26:"assessment_imap_line_color";s:20:"Image Map Line Color";s:23:"assessment_log_datetime";s:9:"Date/Time";s:22:"assessment_log_deleted";s:71:"The Test and Assessment log data has been deleted in the administration";s:23:"assessment_log_for_test";s:8:"For test";s:26:"assessment_log_log_entries";s:11:"log entries";s:22:"assessment_log_logging";s:7:"Logging";s:38:"assessment_log_manual_scoring_activate";s:27:"Activate Manual Scoring for";s:34:"assessment_log_manual_scoring_desc";s:275:"If the Manual Scoring is activated for a question type, all questions of this question type could be manually scored by a test author. Please be careful with these settings, because late manual scoring of automatically scored question types could cause even judical problems!";s:23:"assessment_log_question";s:8:"Question";s:19:"assessment_log_text";s:11:"Log message";s:14:"assessment_log";s:59:"Create a Test and Assessment log for a specific time period";s:38:"assessment_settings_reporting_language";s:18:"Reporting language";s:31:"assf_allowed_questiontypes_desc";s:224:"All the checked question types will be available in this ILIAS installation. If you don\'t want to allow the creation of a certain question type in this installation, you must remove the selection in the associated check box.";s:26:"assf_allowed_questiontypes";s:24:"Available Question Types";s:18:"assf_questiontypes";s:17:"Question Settings";s:18:"assign_global_role";s:21:"Assign to Global Role";s:17:"assign_local_role";s:20:"Assign to Local Role";s:6:"assign";s:6:"Assign";s:16:"assigned_members";s:16:"Assigned Members";s:14:"assigned_roles";s:14:"Assigned Roles";s:15:"associated_user";s:15:"associated User";s:18:"at_least_one_style";s:41:"At least one style must remain activated.";s:10:"attachment";s:10:"Attachment";s:11:"attachments";s:11:"Attachments";s:8:"attempts";s:8:"Attempts";s:17:"auth_active_roles";s:43:"Global roles available on registration form";s:16:"auth_allow_local";s:26:"Allow Local Authentication";s:25:"auth_cas_allow_local_desc";s:91:"This allows CAS users to authenticate with their local ILIAS username and a local password.";s:18:"auth_cas_auth_desc";s:66:"CAS requires PHP 4.3.1 or higher with CURL support (7.5 or higher)";s:13:"auth_cas_auth";s:28:"Configure CAS Authentication";s:18:"auth_cas_port_desc";s:75:"E.g. 443 if the full CAS server URI is https://auth.yourserver.com:443/cas/";s:20:"auth_cas_server_desc";s:91:"E.g. auth.yourserver.com if the full CAS server URI is https://auth.yourserver.com:443/cas/";s:17:"auth_cas_uri_desc";s:86:"Local URI, e.g. cas if the full CAS server URI is https://auth.yourserver.com:443/cas/";s:8:"auth_cas";s:3:"CAS";s:14:"auth_configure";s:12:"configure...";s:17:"auth_create_users";s:39:"Create non-existing users automatically";s:28:"auth_default_mode_changed_to";s:38:"Default authentication mode changed to";s:12:"auth_default";s:15:"Default setting";s:8:"auth_ecs";s:3:"ECS";s:16:"auth_ldap_enable";s:19:"Enable LDAP support";s:24:"auth_ldap_migration_info";s:119:"Activate this option to give new users the possibility to migrate their existing ILIAS accounts to LDAP authentication.";s:19:"auth_ldap_migration";s:17:"Account Migration";s:9:"auth_ldap";s:4:"LDAP";s:10:"auth_local";s:10:"ILIAS Auth";s:23:"auth_login_instructions";s:32:"Instructions shown on login page";s:21:"auth_mode_not_changed";s:17:"(Nothing changed)";s:23:"auth_mode_roles_changed";s:41:"Changed authentication mode for this Role";s:9:"auth_mode";s:19:"Authentication mode";s:26:"auth_new_account_mail_desc";s:158:"Send new account e-mail to user, if user is generated automatically. A password will only be generated, if ‘Allow Local Authentication’ is also activated.";s:16:"auth_per_default";s:11:"Per Default";s:21:"auth_radius_configure";s:31:"Configure RADIUS-Authentication";s:18:"auth_radius_enable";s:21:"Enable RADIUS support";s:26:"auth_radius_not_configured";s:28:"RADIUS is not configured yet";s:16:"auth_radius_port";s:4:"Port";s:23:"auth_radius_server_desc";s:108:"You may add multiple servers with commas separated. Servers are rotated in Round robin fashion when queried.";s:18:"auth_radius_server";s:7:"Servers";s:25:"auth_radius_shared_secret";s:13:"Shared secret";s:11:"auth_radius";s:6:"RADIUS";s:26:"auth_remark_non_local_auth";s:122:"When selecting another authentication mode than ILIAS database, you may not change user\'s login name and password anymore.";s:19:"auth_role_auth_mode";s:19:"Authentication mode";s:11:"auth_script";s:6:"Custom";s:11:"auth_select";s:26:"Select authentication mode";s:14:"auth_selection";s:13:"Login Options";s:13:"auth_settings";s:23:"Authentication Settings";s:22:"auth_shib_instructions";s:93:"Be sure to read the README for instructions on how to configure Shibboleth support for ILIAS.";s:24:"auth_shib_not_configured";s:32:"Shibboleth is not configured yet";s:9:"auth_shib";s:10:"Shibboleth";s:15:"auth_shibboleth";s:10:"Shibboleth";s:26:"auth_soap_allow_local_desc";s:92:"This allows SOAP users to authenticate with their local ILIAS username and a local password.";s:19:"auth_soap_auth_desc";s:95:"This settings deal only with SOAP based user authentication, not with the ILIAS SOAP interface.";s:14:"auth_soap_auth";s:29:"Configure SOAP Authentication";s:27:"auth_soap_create_users_desc";s:137:"Creates automatically an ILIAS user account, for users that successfully authenticated against SOAP, without having an ILIAS account yet.";s:24:"auth_soap_namespace_desc";s:66:"As defined in WSDL. Must be specified, if .NET SOAP style is used.";s:19:"auth_soap_namespace";s:9:"Namespace";s:19:"auth_soap_port_desc";s:87:"E.g. 8080 if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php";s:21:"auth_soap_server_desc";s:102:"E.g. auth.yourserver.com if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php";s:24:"auth_soap_settings_saved";s:34:"SOAP authentication settings saved";s:18:"auth_soap_uri_desc";s:108:"Local URI, e.g. dir/server.php if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php";s:20:"auth_soap_use_dotnet";s:19:"Use .NET SOAP Style";s:19:"auth_soap_use_https";s:9:"Use HTTPS";s:32:"auth_soap_user_default_role_desc";s:58:"This role is assigned to automatically created SOAP users.";s:9:"auth_soap";s:4:"SOAP";s:22:"auth_user_default_role";s:12:"Default Role";s:18:"authenticate_ilias";s:27:"ILIAS Native Authentication";s:23:"authentication_settings";s:14:"Authentication";s:6:"author";s:6:"Author";s:14:"authoring_mode";s:14:"Authoring Mode";s:7:"authors";s:7:"Authors";s:9:"available";s:9:"Available";s:4:"awra";s:14:"Who is online?";s:19:"back_to_crs_content";s:22:"Back to Course Content";s:20:"back_to_fold_content";s:22:"Back to Folder Content";s:19:"back_to_grp_content";s:21:"Back to Group Content";s:4:"back";s:4:"Back";s:6:"basedn";s:6:"BaseDN";s:14:"basic_settings";s:14:"Basic Settings";s:6:"before";s:6:"before";s:9:"benchmark";s:9:"Benchmark";s:10:"benchmarks";s:10:"Benchmarks";s:8:"bib_data";s:20:"Bibliographical Data";s:8:"birthday";s:8:"Birthday";s:13:"bkm_import_ok";s:59:"Successfully imported %d bookmarks and %d bookmark folders.";s:10:"bkm_import";s:16:"Import Bookmarks";s:12:"bkm_sendmail";s:18:"Send as attachment";s:5:"block";s:5:"Block";s:15:"bm_add_to_ilias";s:22:"Add to ILIAS Bookmarks";s:2:"bm";s:8:"Bookmark";s:3:"bmf";s:15:"Bookmark Folder";s:4:"bold";s:4:"Bold";s:8:"bookings";s:8:"Bookings";s:14:"bookmark_added";s:30:"The Bookmark has been created.";s:19:"bookmark_folder_new";s:19:"New Bookmark Folder";s:12:"bookmark_new";s:12:"New Bookmark";s:15:"bookmark_target";s:6:"Target";s:12:"bookmarks_of";s:12:"Bookmarks of";s:9:"bookmarks";s:9:"Bookmarks";s:21:"breadcrumb_navigation";s:21:"Breadcrumb Navigation";s:7:"btn_add";s:3:"Add";s:8:"btn_back";s:4:"Back";s:8:"btn_next";s:8:"Continue";s:12:"btn_previous";s:4:"Back";s:17:"btn_remove_system";s:18:"Remove from System";s:12:"btn_undelete";s:7:"Restore";s:2:"by";s:2:"By";s:5:"bytes";s:5:"Bytes";s:8:"cal_from";s:5:"From:";s:9:"cal_until";s:6:"Until:";s:8:"calendar";s:8:"Calendar";s:6:"cancel";s:6:"Cancel";s:15:"cannot_find_xml";s:25:"Cannot find any XML-file.";s:32:"cannot_uninstall_language_in_use";s:51:"You cannot uninstall the language currently in use!";s:31:"cannot_uninstall_systemlanguage";s:41:"You cannot uninstall the system language!";s:17:"cannot_unzip_file";s:19:"Cannot unpack file.";s:33:"cant_deactivate_if_users_assigned";s:70:"You cannot deactivate a style if there are still users assigned to it.";s:7:"cat_add";s:12:"Add Category";s:9:"cat_added";s:14:"Category added";s:21:"cat_copy_threads_info";s:76:"Please decide which category items should be copied, linked or even omitted.";s:8:"cat_edit";s:17:"Category Settings";s:7:"cat_new";s:12:"New Category";s:15:"cat_wizard_page";s:24:"Copy Category (Step 2/2)";s:3:"cat";s:8:"Category";s:19:"categories_imported";s:25:"Category import complete.";s:10:"categories";s:10:"Categories";s:14:"catr_edit_info";s:51:"Please choose one category for creating a new link.";s:8:"catr_new";s:20:"Create Category Link";s:4:"catr";s:13:"Category Link";s:2:"cc";s:2:"CC";s:11:"certificate";s:11:"Certificate";s:17:"change_assignment";s:17:"Change assignment";s:19:"change_header_title";s:17:"Edit Header Title";s:12:"change_owner";s:12:"Change owner";s:21:"change_sort_direction";s:21:"Change sort direction";s:6:"change";s:6:"Change";s:10:"changeable";s:21:"Changeable in Profile";s:10:"changed_to";s:10:"changed to";s:36:"changing_loginname_not_possible_info";s:82:"You changed your login name at last at %s. The next change can be performed at %s.";s:7:"chapter";s:7:"Chapter";s:10:"characters";s:10:"characters";s:30:"chat_enter_public_room_tooltip";s:18:"Enter public chat.";s:22:"chat_enter_public_room";s:11:"Public Chat";s:31:"chat_invite_public_room_tooltip";s:22:"Invite to public chat.";s:23:"chat_invite_public_room";s:11:"Public Chat";s:17:"chat_users_active";s:12:"Active users";s:9:"check_all";s:9:"Check all";s:14:"check_langfile";s:31:"Please check your language file";s:15:"check_languages";s:19:"Check All Languages";s:15:"check_link_desc";s:91:"If enabled all external links in ILIAS learning modules will be checked if they are active.";s:10:"check_link";s:13:"Weblink check";s:24:"check_user_accounts_desc";s:212:"If enabled, all users whose account expires will be informed by e-mail two weeks before. Furthermore all users which have not confirmed their account after a registration with e-mail confirmation will be deleted.";s:19:"check_user_accounts";s:19:"Check user accounts";s:24:"check_web_resources_desc";s:59:"If enabled all Weblinks will be checked if they are active.";s:19:"check_web_resources";s:14:"Check Weblinks";s:5:"check";s:5:"Check";s:13:"checked_files";s:16:"Importable files";s:7:"checked";s:7:"Checked";s:32:"chg_ilias_and_webfolder_password";s:25:"Change Webfolder Password";s:18:"chg_ilias_password";s:21:"Change ILIAS Password";s:12:"chg_password";s:15:"Change Password";s:15:"choose_language";s:20:"Choose Your Language";s:24:"choose_only_one_language";s:31:"Please choose only one language";s:13:"chown_warning";s:84:"Attention, you may loose access permissions on this object after changing the owner.";s:4:"city";s:11:"City, State";s:12:"cleaned_file";s:22:"File has been cleaned.";s:15:"cleaning_failed";s:16:"Cleaning failed.";s:15:"clear_clipboard";s:15:"Clear Clipboard";s:5:"clear";s:5:"Clear";s:9:"client_id";s:9:"Client ID";s:9:"client_ip";s:9:"Client IP";s:6:"client";s:6:"Client";s:9:"clipboard";s:9:"Clipboard";s:5:"close";s:5:"Close";s:7:"cnt_new";s:8:"(%s New)";s:12:"collapse_all";s:12:"Collapse All";s:8:"collapse";s:8:"Collapse";s:9:"collapsed";s:9:"Collapsed";s:7:"columns";s:7:"Columns";s:15:"comma_separated";s:15:"Comma Separated";s:7:"comment";s:7:"Comment";s:7:"compose";s:7:"Compose";s:17:"cond_ref_handling";s:13:"Link Settings";s:15:"cond_ref_shared";s:34:"Shared Preconditions for all Links";s:15:"cond_ref_unique";s:30:"Unique Preconditions for Links";s:26:"condition_already_assigned";s:24:"Object already assigned.";s:24:"condition_circle_created";s:70:"This association is not possible, since the objects would interdepend.";s:17:"condition_deleted";s:18:"Condition deleted.";s:18:"condition_finished";s:8:"Finished";s:22:"condition_not_finished";s:12:"Not finished";s:16:"condition_passed";s:6:"Passed";s:23:"condition_select_object";s:25:"Please select one object.";s:30:"condition_accredited_or_passed";s:20:"Accredited or Passed";s:9:"condition";s:9:"Condition";s:18:"conditions_updated";s:16:"Conditions saved";s:24:"confirm_delete_parameter";s:43:"Do you really want to delete the parameter?";s:7:"confirm";s:7:"Confirm";s:12:"confirmation";s:12:"Confirmation";s:17:"conflict_handling";s:17:"Conflict handling";s:12:"contact_data";s:19:"Contact Information";s:7:"contact";s:7:"Contact";s:18:"container_no_items";s:22:"No Materials Available";s:9:"container";s:9:"Container";s:13:"content_frame";s:13:"Content Frame";s:14:"content_styles";s:14:"Content Styles";s:7:"content";s:7:"Content";s:7:"context";s:7:"Context";s:13:"continue_work";s:8:"Continue";s:6:"contra";s:6:"Contra";s:8:"copy_all";s:8:"Copy all";s:16:"copy_n_of_suffix";s:13:"- Copy (%1$s)";s:14:"copy_of_suffix";s:6:"- Copy";s:7:"copy_of";s:7:"Copy of";s:19:"copy_selected_items";s:4:"Copy";s:4:"copy";s:4:"Copy";s:11:"copyChapter";s:4:"Copy";s:8:"copyPage";s:4:"Copy";s:5:"count";s:5:"Count";s:7:"country";s:7:"Country";s:6:"course";s:6:"Course";s:7:"courses";s:7:"Courses";s:11:"create_date";s:10:"Created on";s:18:"create_export_file";s:18:"Create export file";s:17:"create_stylesheet";s:12:"Create Style";s:6:"create";s:6:"Create";s:7:"created";s:13:"Creation Date";s:28:"cron_forum_notification_desc";s:122:"If enabled, all users, who want to be informed about new posts in specified forum threads, will get notifications by mail.";s:33:"cron_forum_notification_crob_desc";s:217:"If enabled, all users who have enabled notifications for certain forums or forum threads will daily receive a notification mail about all new or changed posts but no immediate notification for each submitted posting.";s:23:"cron_forum_notification";s:24:"Send Forum Notifications";s:9:"cron_jobs";s:9:"Cron Jobs";s:22:"cron_lucene_index_info";s:122:"If enabled, the lucene search index will be updated. Please configure the lucene server at ’Administration -> Search’.";s:17:"cron_lucene_index";s:26:"Update Lucene search index";s:27:"cron_mail_notification_cron";s:22:"regularly per cron job";s:27:"cron_mail_notification_desc";s:165:"If enabled, all users, who want to be informed about new mail, will get notifications by external mail. Please enable the option ‘%s’ first to use this function.";s:28:"cron_mail_notification_never";s:5:"never";s:22:"cron_mail_notification";s:22:"New Mail Notifications";s:28:"crs_activation_start_invalid";s:43:"The start and the finish time is not valid.";s:7:"crs_add";s:10:"Add Course";s:9:"crs_added";s:12:"Course added";s:12:"crs_archives";s:8:"Archives";s:23:"crs_cancel_waiting_list";s:75:"Do you really want to remove yourself from the waiting list of course "%s"?";s:21:"crs_copy_threads_info";s:78:"Please decide which course materials should be copied, linked or even omitted.";s:8:"crs_edit";s:11:"Edit Course";s:21:"crs_member_not_passed";s:10:"Not passed";s:17:"crs_member_passed";s:6:"Passed";s:19:"crs_members_gallery";s:22:"Course Members Gallery";s:7:"crs_new";s:10:"New Course";s:29:"crs_removed_from_waiting_list";s:60:"You have been detached from the waiting list of course "%s".";s:18:"crs_status_blocked";s:16:"[Access refused]";s:18:"crs_status_pending";s:26:"[Waiting for registration]";s:24:"crs_subscribers_assigned";s:20:"Assigned new user(s)";s:9:"crs_title";s:12:"Course Title";s:15:"crs_unsubscribe";s:23:"Unsubscribe from Course";s:15:"crs_wizard_page";s:22:"Copy Course (Step 2/2)";s:3:"crs";s:6:"Course";s:14:"crsr_edit_info";s:49:"Please choose one course for creating a new link.";s:8:"crsr_new";s:18:"Create Course Link";s:4:"crsr";s:11:"Course Link";s:10:"csv_export";s:10:"CSV-Export";s:16:"current_ip_alert";s:97:"Notice: if you enter a wrong ip you won\'t be able to access the system with this profile anymore.";s:10:"current_ip";s:11:"Current IP:";s:16:"current_password";s:16:"Current Password";s:3:"cut";s:3:"Cut";s:7:"cutPage";s:3:"Cut";s:5:"daily";s:5:"daily";s:16:"database_version";s:24:"Current Database Version";s:8:"database";s:8:"Database";s:7:"dataset";s:4:"Item";s:4:"date";s:4:"Date";s:10:"dateplaner";s:8:"Calendar";s:3:"day";s:3:"Day";s:4:"days";s:4:"Days";s:7:"db_host";s:13:"Database Host";s:7:"db_name";s:13:"Database Name";s:14:"db_need_update";s:25:"Database needs an update!";s:7:"db_pass";s:17:"Database Password";s:7:"db_type";s:13:"Database Type";s:7:"db_user";s:13:"Database User";s:10:"db_version";s:16:"Database Version";s:10:"deactivate";s:12:"Set Inactive";s:17:"decrease_attempts";s:12:"Attempts - 1";s:19:"def_repository_view";s:23:"Default repository view";s:22:"default_auth_mode_info";s:78:"Please choose the authentication method that is preselected on the login page.";s:17:"default_auth_mode";s:29:"Default Authentication Method";s:16:"default_language";s:16:"Default Language";s:21:"default_perm_settings";s:19:"Default Permissions";s:12:"default_role";s:12:"Default Role";s:13:"default_roles";s:13:"Default Roles";s:18:"default_skin_style";s:20:"Default Skin / Style";s:12:"default_skin";s:12:"Default Skin";s:13:"default_style";s:13:"Default Style";s:7:"default";s:7:"Default";s:8:"defaults";s:8:"Defaults";s:20:"delete_existing_file";s:20:"Delete Existing File";s:16:"delete_parameter";s:16:"Delete Parameter";s:21:"delete_selected_items";s:6:"Delete";s:6:"delete";s:6:"Delete";s:12:"deleted_user";s:25:"The user has been deleted";s:13:"deleted_users";s:13:"Deleted users";s:7:"deleted";s:7:"Deleted";s:7:"deliver";s:7:"Deliver";s:10:"department";s:10:"Department";s:4:"desc";s:11:"Description";s:11:"description";s:11:"Description";s:16:"desired_password";s:16:"Desired Password";s:7:"details";s:7:"Details";s:13:"disable_check";s:13:"Disable check";s:22:"disable_ext_lang_maint";s:28:"Disable Extended Maintenance";s:24:"disable_hide_user_toggle";s:31:"Member is allowed to deactivate";s:7:"disable";s:7:"disable";s:8:"disabled";s:8:"Disabled";s:20:"disk_quota_is_1_by_2";s:66:"The effective disk quota is %1$s due to membership in role "%2$s".";s:33:"disk_quota_is_1_instead_of_2_by_3";s:136:"The effective disk quota is %1$s as defined in this user account. The disk quota by role membership would have been %2$s by role "%3$s".";s:28:"disk_quota_is_unlimited_by_1";s:71:"The effective disk quota is unlimited due to membership in role "%1$s".";s:34:"disk_quota_last_reminder_sent_desc";s:93:"Last date on which the user has received a reminder mail because of exceeding the disk quota.";s:29:"disk_quota_last_reminder_sent";s:24:"Last quota reminder sent";s:23:"disk_quota_on_role_desc";s:93:"The disk quota specified on a role affects all user accounts which are assigned to this role.";s:29:"disk_quota_reminder_mail_desc";s:295:"The disk quota reminder mail is sent to active users who have exceeded their disk quota. This e-mail is sent once every day to the users when the daily ILIAS cron job is run. Users who already have received a reminder e-mail receive it again every 7 days as long as they exceed their disk quota.";s:24:"disk_quota_reminder_mail";s:13:"Reminder mail";s:29:"disk_quota_report_not_run_yet";s:110:"No disk quota report available. The daily cron job which determines the disk usage needs to be executed first.";s:17:"disk_quota_report";s:17:"Disk Quota Report";s:10:"disk_quota";s:10:"Disk Quota";s:18:"disk_usage_details";s:18:"Disk Usage Details";s:10:"disk_usage";s:10:"Disk Usage";s:6:"domain";s:6:"Domain";s:4:"down";s:4:"Down";s:27:"download_all_returned_files";s:24:"Download all Submissions";s:36:"download_with_uploaded_filename_info";s:478:"Select this option exclusively for backwards compatibility with ILIAS 3.9 and older versions: When this option is selected, the filename of a downloaded file is equal to the filename that was used for uploading the file into ILIAS. If this option is not selected, the filename of a downloaded file is equal to the title of the file object in ILIAS. This option does not affect WebDAV. For WebDAV the filename of a downloaded file is always equal to the title of the file object.";s:31:"download_with_uploaded_filename";s:31:"Download with uploaded filename";s:8:"download";s:8:"Download";s:20:"downloading_settings";s:17:"Download Settings";s:6:"drafts";s:6:"Drafts";s:17:"edit_cat_settings";s:26:"Advanced Category Settings";s:12:"edit_content";s:12:"Edit Content";s:13:"edit_grouping";s:26:"Edit Membership Limitation";s:15:"edit_operations";s:15:"Edit Operations";s:17:"edit_page_content";s:17:"Edit Page Content";s:9:"edit_page";s:9:"Edit Page";s:15:"edit_properties";s:15:"Edit Properties";s:15:"edit_stylesheet";s:10:"Edit Style";s:4:"edit";s:4:"Edit";s:6:"editor";s:6:"Editor";s:15:"email_not_valid";s:44:"The e-mail address you entered is not valid!";s:5:"email";s:6:"E-Mail";s:15:"enable_calendar";s:15:"Enable Calendar";s:24:"enable_custom_icons_info";s:173:"This allows you to define custom icons for single container objects and the content page object. The properties section of these objects will provide an image upload dialog.";s:19:"enable_custom_icons";s:19:"Enable custom icons";s:31:"enable_disk_quota_reminder_mail";s:30:"Send disk quota reminder mails";s:27:"enable_download_folder_info";s:65:"Enables a download option inside the action drop-down of folders.";s:22:"enable_download_folder";s:37:""Download Action for Folders" enabled";s:27:"enable_fora_statistics_desc";s:59:"If disabled, nobody is able to access the forum statistics.";s:22:"enable_fora_statistics";s:26:"Enable Statistics in Forum";s:23:"enable_hide_user_toggle";s:35:"Member is not allowed to deactivate";s:30:"enable_hist_user_comments_desc";s:73:"Give authors the opportunity to add comments to the history log of pages.";s:25:"enable_hist_user_comments";s:31:"Enable user comments in history";s:26:"enable_password_assistance";s:26:"Enable password assistance";s:20:"enable_search_engine";s:219:"Open Public Area for Internet Search Engines (e.g Google).
The Apache module ‘mod_rewrite’ is required for this extension. Please take care that you have appropriate permissions to use .htaccess configurations.";s:17:"enable_trash_info";s:164:"If enabled, deleted Objects are moved into Trash and may be recovered later. When deactivating this option deleted Objects are removed irreversibly from the System!";s:12:"enable_trash";s:12:"Enable Trash";s:18:"enable_webdav_info";s:243:"Allows WebDAV clients to access the repository as a webfolder. Users can open webfolders using the ‘Open as webfolder’ action in the repository, or by entering the following address in a WebDAV client: %1$s";s:13:"enable_webdav";s:20:"Enable WebDAV access";s:6:"enable";s:6:"Enable";s:7:"enabled";s:7:"Enabled";s:16:"enter_in_mb_desc";s:20:"Enter a value in MB.";s:11:"err_1_param";s:17:"Only 1 parameter!";s:11:"err_2_param";s:17:"Only 2 parameter!";s:26:"err_auth_cas_no_ilias_user";s:126:"Login failed. CAS authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.";s:27:"err_auth_ldap_no_ilias_user";s:127:"Login failed. LDAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.";s:22:"err_auth_mode_inactive";s:42:"Your authentication method is deactivated.";s:29:"err_auth_radius_no_ilias_user";s:87:"Login failed. Radius authentication successful, but no corresponding ILIAS user exists.";s:27:"err_auth_soap_no_ilias_user";s:127:"Login failed. SOAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.";s:15:"err_check_input";s:57:"The settings could not be saved. Please check your input.";s:15:"err_count_param";s:29:"Reason: Wrong parameter count";s:11:"err_in_line";s:13:"Error in line";s:12:"err_inactive";s:88:"This account has not been activated. Please contact the system administrator for access.";s:27:"err_inactive_login_attempts";s:207:"Your user account has been deactivated due too many failed login attempts. Click \'Contact Technical Support\' at the footer of this page to notify the administrator about the need to re-activate your account.";s:16:"err_invalid_port";s:19:"Invalid port number";s:14:"err_no_cookies";s:46:"Please enable session cookies in your browser!";s:21:"err_no_langfile_found";s:23:"No language file found!";s:12:"err_no_param";s:13:"No parameter!";s:16:"err_over_3_param";s:23:"More than 3 parameters!";s:23:"err_role_not_assignable";s:53:"You cannot assign users to this role at this location";s:19:"err_session_expired";s:24:"Your session is expired!";s:16:"err_wrong_header";s:21:"Reason: Wrong header.";s:15:"err_wrong_login";s:23:"Wrong Login or Password";s:18:"err_wrong_password";s:14:"Wrong Password";s:12:"error_parser";s:26:"Error starting the parser.";s:15:"error_recipient";s:15:"Error Recipient";s:5:"error";s:5:"Error";s:24:"event_ass_materials_prop";s:17:"Session Materials";s:18:"event_assign_files";s:15:"File Assignment";s:7:"exc_add";s:12:"Add Exercise";s:9:"exc_added";s:14:"Exercise added";s:18:"exc_date_not_valid";s:21:"The date is not valid";s:20:"exc_deassign_members";s:21:"Remove Participant(s)";s:18:"exc_download_files";s:14:"Download Files";s:17:"exc_edit_exercise";s:13:"Edit exercise";s:14:"exc_edit_until";s:10:"Edit Until";s:8:"exc_edit";s:20:"New exercise created";s:17:"exc_exercise_sent";s:13:"Exercise Sent";s:18:"exc_files_returned";s:15:"Submitted Files";s:9:"exc_files";s:5:"Files";s:15:"exc_instruction";s:17:"Work Instructions";s:19:"exc_last_submission";s:15:"Last Submission";s:28:"exc_members_already_assigned";s:51:"These users are already assigned to the assignment.";s:20:"exc_members_assigned";s:16:"Members assigned";s:26:"exc_members_comments_saved";s:59:"The exercise comments for the selected user have been saved";s:7:"exc_new";s:12:"New Exercise";s:7:"exc_obj";s:8:"Exercise";s:16:"exc_save_changes";s:4:"Save";s:12:"exc_schedule";s:8:"Schedule";s:19:"exc_select_one_file";s:31:"Please select exactly one file.";s:11:"exc_sent_at";s:16:"Sent on
%s";s:8:"exc_sent";s:48:"The exercise has been sent to the selected users";s:16:"exc_status_saved";s:16:"Exercise updated";s:10:"exc_status";s:6:"Status";s:14:"exc_submission";s:10:"Submission";s:19:"exc_time_over_short";s:11:"Time is up.";s:16:"exc_time_to_send";s:22:"Remaining Working Time";s:16:"exc_upload_error";s:20:"Error uploading file";s:3:"exc";s:8:"Exercise";s:4:"excs";s:9:"Exercises";s:7:"execute";s:7:"Execute";s:18:"exercise_time_over";s:91:"The time allocated for completing this exercise is over. Files cannot be submitted anymore!";s:8:"exp_html";s:11:"Export HTML";s:10:"expand_all";s:10:"Expand All";s:6:"expand";s:6:"Expand";s:8:"expanded";s:8:"Expanded";s:13:"export_format";s:13:"Export format";s:11:"export_html";s:19:"Export as HTML File";s:6:"export";s:6:"Export";s:16:"ext_cat_settings";s:31:"Edit Advanced Category Settings";s:8:"ext_link";s:4:"Link";s:15:"failure_message";s:15:"Failure Message";s:3:"fax";s:3:"Fax";s:4:"feed";s:8:"Web Feed";s:18:"feedback_recipient";s:18:"Feedback Recipient";s:8:"feedback";s:8:"Feedback";s:10:"field_name";s:10:"Field Name";s:10:"field_type";s:10:"Field Type";s:21:"file_add_and_metadata";s:29:"Upload File and Edit Metadata";s:8:"file_add";s:11:"Upload File";s:10:"file_added";s:13:"File uploaded";s:21:"file_allowed_suffixes";s:19:"Allowed file types:";s:12:"file_created";s:20:"File has been added.";s:9:"file_edit";s:21:"Edit File Information";s:9:"file_info";s:16:"File Information";s:16:"file_is_infected";s:32:"The file is infected by a virus.";s:14:"file_not_found";s:14:"File Not Found";s:14:"file_not_valid";s:15:"File not valid!";s:11:"file_notice";s:20:"Maximum upload size:";s:21:"file_suffix_repl_info";s:200:"Enter file types with suffix (separated by comma) that shall be be renamed with a ‘.sec’ when uploaded into webspace to prevent execution of this file. This is done per default for these suffixes:";s:16:"file_suffix_repl";s:30:"File Upload Suffix Replacement";s:12:"file_updated";s:22:"File has been updated.";s:10:"file_valid";s:14:"File is valid!";s:12:"file_version";s:24:"Version Provided in File";s:4:"file";s:4:"File";s:26:"filename_extension_missing";s:27:"File name extension missing";s:27:"filename_hidden_backup_file";s:18:"Hidden backup file";s:25:"filename_hidden_unix_file";s:16:"Hidden Unix file";s:25:"filename_interoperability";s:16:"Interoperability";s:27:"filename_special_characters";s:63:"Due to the character / this object is not visible in webfolders";s:25:"filename_special_filename";s:57:"Objects with names . and .. are not visible in webfolders";s:19:"filename_visibility";s:10:"Visibility";s:32:"filename_windows_empty_extension";s:94:"Due to the character . at the end of the name this object is not visible in Windows webfolders";s:35:"filename_windows_special_characters";s:95:"Due to one of the characters \\ / : * ? " < > | this object is not visible in Windows webfolders";s:29:"filename_windows_webdav_issue";s:71:"Due to the character # this object is not visible in Windows webfolders";s:8:"filename";s:9:"File Name";s:5:"files";s:5:"Files";s:8:"filesize";s:9:"File Size";s:8:"filetype";s:9:"File Type";s:28:"fill_out_all_required_fields";s:35:"Please fill out all required fields";s:24:"filter_users_with_access";s:22:"Only users with access";s:28:"filter_users_with_disk_usage";s:31:"Only users with disk space used";s:37:"filter_users_with_exceeded_disk_quota";s:35:"Only users with disk quota exceeded";s:27:"filter_users_without_access";s:25:"Only users without access";s:31:"filter_users_without_disk_usage";s:34:"Only users with no disk space used";s:6:"filter";s:6:"Filter";s:9:"firstname";s:10:"First Name";s:8:"flatview";s:12:"Hide Sidebar";s:8:"fold_add";s:10:"Add Folder";s:10:"fold_added";s:12:"Folder added";s:9:"fold_edit";s:11:"Edit Folder";s:8:"fold_new";s:10:"New Folder";s:4:"fold";s:6:"Folder";s:6:"folder";s:6:"Folder";s:7:"folders";s:7:"Folders";s:26:"force_accept_usr_agreement";s:37:"You must accept the terms of service!";s:15:"forgot_password";s:21:"Forgot your password?";s:15:"forgot_username";s:21:"Forgot your username?";s:20:"form_input_not_valid";s:68:"Some data is incomplete or not valid. Please correct the form input.";s:25:"forum_direct_notification";s:12:"Notification";s:15:"forum_notify_me";s:165:"Notify me when a direct answer has been given to this posting. Notification about any posting in this thread or forum can be enabled in the upper right Actions menu.";s:18:"forum_post_replied";s:34:"Your forum entry has been replied.";s:5:"forum";s:5:"Forum";s:17:"forums_anonymized";s:16:"Forum anonymized";s:16:"forums_anonymous";s:6:"anonym";s:15:"forums_articles";s:8:"Articles";s:33:"forums_disable_forum_notification";s:35:"Disable Notification for this Forum";s:32:"forums_enable_forum_notification";s:34:"Enable Notification for this Forum";s:33:"forums_forum_notification_enabled";s:54:"You will be notified about new messages in this forum.";s:16:"forums_last_post";s:14:"Latest Article";s:19:"forums_new_articles";s:12:"New Articles";s:28:"forums_notification_settings";s:28:"Forums Notification Settings";s:14:"forums_threads";s:7:"Threads";s:16:"forums_use_alias";s:131:"You may use a pseudonym for your posting. If you leave this field blank, your posting will be marked as written by ‘Anonymous’.";s:16:"forums_your_name";s:9:"Your Name";s:6:"forums";s:6:"Forums";s:7:"frm_add";s:9:"Add Forum";s:9:"frm_added";s:11:"Forum added";s:8:"frm_edit";s:10:"Edit Forum";s:19:"frm_latest_postings";s:15:"Latest Articles";s:7:"frm_new";s:9:"New Forum";s:22:"frm_statistics_ranking";s:7:"Ranking";s:3:"frm";s:5:"Forum";s:4:"from";s:4:"From";s:8:"fullname";s:9:"Full name";s:9:"functions";s:9:"Functions";s:20:"further_informations";s:19:"Further Information";s:7:"gdf_add";s:14:"Add Definition";s:7:"gdf_new";s:14:"New Definition";s:8:"gender_f";s:3:"Ms.";s:8:"gender_m";s:3:"Mr.";s:8:"gender_n";s:21:"No salutation desired";s:6:"gender";s:10:"Salutation";s:16:"general_settings";s:16:"General Settings";s:8:"generate";s:8:"Generate";s:7:"glo_add";s:12:"Add Glossary";s:9:"glo_added";s:14:"Glossary added";s:13:"glo_mode_desc";s:321:"A virtual glossary works like a normal glossary. Additionally it contains the terms from all glossaries that are located on the same level in the repository like the virtual glossary (level) respectively from all glossaries that are located downwards in the repository from the position of the virtual glossary (subtree).";s:14:"glo_mode_level";s:25:"virtual (this level only)";s:15:"glo_mode_normal";s:6:"normal";s:16:"glo_mode_subtree";s:24:"virtual (entire subtree)";s:8:"glo_mode";s:4:"Mode";s:7:"glo_new";s:12:"New Glossary";s:3:"glo";s:8:"Glossary";s:14:"global_default";s:14:"Global Default";s:12:"global_fixed";s:12:"Global Fixed";s:15:"global_settings";s:15:"Global settings";s:11:"global_user";s:12:"Global users";s:6:"global";s:6:"Global";s:10:"glossaries";s:10:"Glossaries";s:8:"glossary";s:8:"Glossary";s:2:"go";s:2:"Go";s:13:"group_members";s:13:"Group Members";s:10:"group_name";s:10:"Group Name";s:23:"group_new_registrations";s:13:"Join Requests";s:31:"group_password_registration_msg";s:126:"If you know the group password, you can join this group. Please contact a group administrator, if you don\'t know the password.";s:23:"group_registration_mode";s:22:"Registration Procedure";s:23:"group_registration_time";s:19:"Registration Period";s:18:"group_registration";s:12:"Registration";s:16:"group_req_direct";s:13:"Join directly";s:26:"group_req_registration_msg";s:215:"You have to request for membership to access this group. Please describe your interest for becoming member in the message form. You will be notified as soon as an administrator has accepted or declined your request.";s:12:"group_status";s:8:"Group is";s:5:"group";s:5:"Group";s:26:"groupings_assigned_obj_crs";s:16:"Assigned Courses";s:26:"groupings_assigned_obj_grp";s:15:"Assigned Groups";s:9:"groupings";s:22:"Membership Limitations";s:6:"groups";s:6:"Groups";s:7:"grp_add";s:9:"Add Group";s:9:"grp_added";s:11:"Group added";s:19:"grp_btn_unsubscribe";s:22:"Unsubscribe from Group";s:23:"grp_cancel_waiting_list";s:74:"Do you really want to remove yourself from the waiting list of group "%s"?";s:21:"grp_copy_threads_info";s:71:"Please decide which materials should be copied, linked or even omitted.";s:24:"grp_deleted_export_files";s:23:"Deleted selected files.";s:18:"grp_dismiss_member";s:76:"Are you sure you want to unsubscribe the following member(s) from the group?";s:18:"grp_dismiss_myself";s:53:"Are you sure you want to unsubscribe from this group?";s:8:"grp_edit";s:10:"Edit Group";s:30:"grp_err_administrator_required";s:79:"Member could not be removed, at least one administrator per group is required !";s:23:"grp_header_edit_members";s:12:"Edit members";s:16:"grp_list_members";s:12:"List members";s:14:"grp_list_users";s:10:"List users";s:21:"grp_mem_change_status";s:25:"Change Participant Status";s:17:"grp_mem_send_mail";s:27:"Send Participants a Message";s:19:"grp_members_gallery";s:21:"Group Members Gallery";s:27:"grp_msg_applicants_assigned";s:40:"Applicant(s) assigned as group member(s)";s:23:"grp_msg_member_assigned";s:35:"User(s) assigned as group member(s)";s:27:"grp_msg_membership_annulled";s:21:"Cancelled membership.";s:7:"grp_new";s:9:"New Group";s:26:"grp_registration_completed";s:25:"You have joined the group";s:16:"grp_registration";s:10:"Join Group";s:29:"grp_removed_from_waiting_list";s:59:"You have been detached from the waiting list of group "%s".";s:19:"grp_select_one_file";s:23:"Please select one file.";s:15:"grp_wizard_page";s:21:"Copy Group (Step 2/2)";s:3:"grp";s:5:"Group";s:17:"header_searchable";s:10:"Searchable";s:12:"header_title";s:12:"Header Title";s:27:"header_visible_registration";s:23:"Visible in Registration";s:10:"header_zip";s:36:"Upload Multiple Files as Zip-Archive";s:6:"height";s:6:"Height";s:4:"help";s:4:"Help";s:2:"HH";s:5:"HH:MM";s:10:"dd_mm_yyyy";s:10:"DD.MM.YYYY";s:12:"hide_details";s:12:"Hide Details";s:11:"hide_filter";s:11:"Hide Filter";s:22:"hide_own_online_status";s:21:"Hide My Online Status";s:4:"hide";s:4:"Hide";s:4:"hint";s:4:"Hint";s:17:"hist_lm_delete_pg";s:32:"Page "%1" [%2] has been deleted.";s:17:"hist_lm_delete_st";s:35:"Chapter "%1" [%2] has been deleted.";s:17:"hist_lm_pg_create";s:13:"Page created.";s:17:"hist_lm_st_create";s:16:"Chapter created.";s:13:"hist_webr_add";s:34:"Added new Weblink with title: "%1"";s:16:"hist_webr_delete";s:32:"Deleted Weblink with title: "%1"";s:16:"hist_webr_update";s:33:"Modified Weblink with title: "%1"";s:7:"history";s:7:"History";s:13:"hits_per_page";s:9:"Hits/Page";s:5:"hobby";s:17:"Interests/Hobbies";s:4:"home";s:11:"Public Area";s:4:"host";s:4:"Host";s:4:"hour";s:4:"Hour";s:5:"hours";s:5:"Hours";s:8:"htlm_add";s:24:"Add HTML Learning Module";s:8:"htlm_new";s:24:"New HTML Learning Module";s:4:"htlm";s:20:"Learning Module HTML";s:17:"http_not_possible";s:44:"This server is not supporting http requests.";s:9:"http_path";s:9:"HTTP Path";s:4:"http";s:4:"HTTP";s:18:"https_not_possible";s:48:"This server is not supporting HTTPS connections.";s:8:"i2passwd";s:16:"ILIAS 2 password";s:13:"icon_settings";s:12:"Custom Icons";s:4:"icon";s:4:"Icon";s:2:"id";s:2:"ID";s:10:"identifier";s:10:"identifier";s:25:"if_no_title_then_filename";s:38:"Leave blank to use file name as title.";s:18:"ignore_on_conflict";s:18:"Ignore on conflict";s:17:"il_chat_moderator";s:14:"Chat Moderator";s:12:"il_crs_admin";s:20:"Course Administrator";s:13:"il_crs_member";s:13:"Course Member";s:17:"il_crs_non_member";s:17:"Course non-member";s:12:"il_crs_tutor";s:12:"Course Tutor";s:16:"il_frm_moderator";s:15:"Forum moderator";s:12:"il_grp_admin";s:19:"Group Administrator";s:13:"il_grp_member";s:12:"Group Member";s:20:"il_grp_status_closed";s:12:"Group closed";s:18:"il_grp_status_open";s:10:"Group open";s:13:"ilias_version";s:13:"ILIAS version";s:5:"image";s:5:"Image";s:19:"import_cat_localrol";s:40:"Create local role for every new category";s:16:"import_cat_table";s:61:"The following table is only meaningful if the checkbox is set";s:17:"import_categories";s:17:"Import Categories";s:18:"import_failure_log";s:18:"Import failure log";s:21:"import_file_not_valid";s:29:"The import file is not valid.";s:11:"import_file";s:11:"Import File";s:15:"import_finished";s:28:"Number of imported messages.";s:9:"import_lm";s:28:"Import ILIAS Learning module";s:10:"import_qpl";s:25:"Import Question Pool Test";s:25:"import_questions_into_qpl";s:37:"Import question(s) into question pool";s:11:"import_sahs";s:20:"Import SCORM Package";s:10:"import_svy";s:13:"Import Survey";s:10:"import_tst";s:11:"Import Test";s:12:"import_users";s:12:"Import Users";s:18:"import_warning_log";s:18:"Import warning log";s:6:"import";s:6:"Import";s:9:"important";s:9:"Important";s:8:"imported";s:8:"imported";s:9:"in_use_by";s:9:"In use by";s:6:"in_use";s:13:"User Language";s:2:"in";s:2:"in";s:8:"inactive";s:8:"Inactive";s:5:"inbox";s:5:"Inbox";s:13:"include_local";s:51:"include custom language file when updating language";s:27:"info_access_and_status_info";s:30:"Access- and status information";s:23:"info_access_permissions";s:18:"Access Permissions";s:18:"info_activate_sure";s:78:"Are you sure that you want to approve the following user(s) as active user(s)?";s:16:"info_assign_sure";s:54:"Are you sure you want to assign the following user(s)?";s:13:"info_assigned";s:8:"assigned";s:20:"info_available_roles";s:15:"Available Roles";s:21:"info_change_user_view";s:11:"Change User";s:20:"info_deactivate_sure";s:63:"Are you sure that you want to deactivate the following user(s)?";s:16:"info_delete_sure";s:59:"Are you sure that you want to delete the following item(s)?";s:16:"info_remove_sure";s:59:"Are you sure that you want to remove the following item(s)?";s:28:"info_delete_warning_no_trash";s:102:"(WARNING: Selected Objects will be removed irreversibly from System and may not be recovered anymore!)";s:12:"info_deleted";s:17:"Object(s) Deleted";s:23:"info_err_user_not_exist";s:52:"User with that login name or user_id does not exists";s:14:"info_from_role";s:27:"Granted by Role / Ownership";s:14:"info_is_member";s:14:"User is member";s:18:"info_is_not_member";s:20:"User is not a member";s:12:"info_message";s:19:"Information Message";s:17:"info_not_assigned";s:12:"not assigned";s:20:"info_owner_of_object";s:15:"Owner of object";s:22:"info_permission_origin";s:17:"Original Position";s:22:"info_permission_source";s:15:"Effective From*";s:23:"info_remark_interrupted";s:116:"Role is interrupted at this position. The role\'s default permission settings in effect are located in that position.";s:10:"info_short";s:4:"Info";s:16:"info_status_info";s:19:"Permissions of User";s:17:"info_view_of_user";s:4:"User";s:4:"info";s:11:"Information";s:16:"inform_user_mail";s:38:"Send mail to inform user about changes";s:27:"inline_file_extensions_info";s:158:"Files with these extensions are displayed in the browser window.
For example: gif jpg mp3 pdf png
All other files are offered for downloading.";s:22:"inline_file_extensions";s:17:"Web-enabled files";s:18:"insert_object_here";s:26:"Insert at Current Position";s:6:"insert";s:6:"Insert";s:7:"inst_id";s:15:"Installation ID";s:9:"inst_info";s:17:"Installation Info";s:9:"inst_name";s:17:"Installation Name";s:13:"install_local";s:24:"Install With Custom File";s:7:"install";s:7:"Install";s:15:"installed_local";s:26:"Installed With Custom file";s:9:"installed";s:9:"Installed";s:18:"instant_messengers";s:18:"Instant Messengers";s:11:"institution";s:11:"Institution";s:25:"internal_local_roles_only";s:42:"Local roles (only automatically generated)";s:41:"invalid_visible_required_options_selected";s:73:"All fields set to required has to be set to visible in registration, too.";s:20:"invisible_block_mess";s:50:"You do not have the permission to view this block.";s:15:"invisible_block";s:15:"Invisible Block";s:10:"ip_address";s:10:"IP Address";s:15:"is_already_your";s:15:"is already your";s:4:"item";s:4:"Item";s:16:"java_server_host";s:4:"Host";s:16:"java_server_info";s:83:"If activated, it is possible to search in PDF, HTML files and HTML-Learning modules";s:16:"java_server_port";s:4:"Port";s:18:"java_server_readme";s:17:"Setup information";s:11:"java_server";s:11:"Java-Server";s:12:"join_session";s:6:"Attend";s:4:"join";s:4:"Join";s:2:"kb";s:5:"KByte";s:8:"keywords";s:8:"Keywords";s:15:"lang_dateformat";s:5:"Y-m-d";s:9:"lang_path";s:13:"Language Path";s:25:"lang_refresh_confirm_info";s:274:"ILIAS found changed language variables. Refreshing a language will read the standard language file and probably a custom language file to the database. A standard file will not affect your changes. A custom file will overwrite your changes that are older than the file date.";s:29:"lang_refresh_confirm_selected";s:53:"Do you really want to refresh the selected languages?";s:20:"lang_refresh_confirm";s:44:"Do you really want to refresh all languages?";s:22:"lang_uninstall_confirm";s:55:"Do you really want to uninstall the selected languages?";s:22:"lang_uninstall_changes";s:23:"Uninstall Local Changes";s:30:"lang_uninstall_changes_confirm";s:131:"Do you really want to clear all local changes of the selected languages and reset them to the default of the current ILIAS version?";s:16:"lang_sep_decimal";s:1:".";s:17:"lang_sep_thousand";s:1:",";s:15:"lang_size_bytes";s:5:"bytes";s:12:"lang_size_gb";s:2:"GB";s:12:"lang_size_kb";s:2:"KB";s:12:"lang_size_mb";s:2:"MB";s:22:"lang_timeformat_no_sec";s:3:"H:i";s:15:"lang_timeformat";s:5:"H:i:s";s:14:"langfile_found";s:19:"Language file found";s:22:"language_not_installed";s:52:"is not installed. Please install that language first";s:8:"language";s:8:"Language";s:27:"languages_already_installed";s:42:"Selected language(s) are already installed";s:29:"languages_already_uninstalled";s:44:"Selected language(s) are already uninstalled";s:17:"languages_updated";s:41:"All installed languages have been updated";s:9:"languages";s:9:"Languages";s:11:"last_access";s:11:"Last Access";s:11:"last_change";s:11:"Last Change";s:14:"last_edited_on";s:14:"Last edited on";s:10:"last_login";s:10:"Last Login";s:12:"last_refresh";s:12:"Last Refresh";s:13:"last_reminder";s:13:"Last reminder";s:11:"last_update";s:7:"Updated";s:12:"last_visited";s:12:"Last Visited";s:8:"lastname";s:9:"Last Name";s:6:"launch";s:6:"Launch";s:11:"ldap_basedn";s:11:"LDAP BaseDN";s:14:"ldap_configure";s:29:"Configure LDAP Authentication";s:9:"ldap_port";s:9:"LDAP Port";s:9:"ldap_read";s:28:"Read access to LDAP settings";s:11:"ldap_server";s:15:"LDAP Server URL";s:8:"ldap_tls";s:12:"Use LDAP TLS";s:12:"ldap_version";s:22:"LDAP protokoll version";s:4:"ldap";s:4:"LDAP";s:15:"learning module";s:15:"Learning Module";s:17:"learning_progress";s:17:"Learning Progress";s:18:"leave_waiting_list";s:18:"Leave Waiting List";s:6:"legend";s:6:"Legend";s:5:"level";s:5:"Level";s:8:"link_all";s:8:"Link all";s:20:"link_check_message_b";s:61:"If enabled, you will be informed about invalid links by mail.";s:27:"link_check_message_disabled";s:17:"Messages disabled";s:26:"link_check_message_enabled";s:16:"Messages enabled";s:18:"link_check_subject";s:21:"[ILIAS] Weblink check";s:10:"link_check";s:13:"Weblink Check";s:22:"link_checker_refreshed";s:14:"Refreshed view";s:19:"link_selected_items";s:4:"Link";s:4:"link";s:4:"Link";s:15:"links_add_param";s:14:"Add Parameter:";s:19:"links_dyn_parameter";s:18:"Dynamic Parameters";s:18:"links_dynamic_info";s:114:"If enabled, it is possible to append dynamic parameters to Weblinks.
E.g. the ILIAS user ID or the username.";s:13:"links_dynamic";s:26:"Dynamic Weblink Parameters";s:21:"links_existing_params";s:20:"Existing Parameters:";s:10:"links_name";s:14:"Parameter Name";s:19:"links_no_name_given";s:31:"Please choose a parameter name.";s:20:"links_no_value_given";s:32:"Please choose a parameter value.";s:23:"links_parameter_deleted";s:18:"Parameter deleted.";s:16:"links_select_one";s:14:"- Select one -";s:16:"links_session_id";s:16:"ILIAS session id";s:13:"links_user_id";s:13:"ILIAS user id";s:15:"links_user_name";s:14:"ILIAS username";s:11:"links_value";s:15:"Parameter Value";s:17:"list_of_questions";s:17:"List of Questions";s:4:"list";s:4:"List";s:6:"lm_add";s:25:"Add ILIAS Learning Module";s:8:"lm_added";s:27:"ILIAS Learning Module added";s:6:"lm_new";s:25:"New ILIAS Learning Module";s:13:"lm_type_scorm";s:9:"SCORM 1.2";s:17:"lm_type_scorm2004";s:26:"SCORM 2004 3rd/4th Edition";s:2:"lm";s:21:"Learning Module ILIAS";s:3:"lng";s:8:"Language";s:4:"lngf";s:9:"Languages";s:2:"lo";s:15:"Learning Object";s:19:"local_language_file";s:20:"custom language file";s:20:"local_language_files";s:21:"custom language files";s:33:"local_languages_already_installed";s:54:"Selected custom language file(s) are already installed";s:5:"local";s:5:"Local";s:8:"location";s:8:"Location";s:7:"locator";s:9:"Location:";s:6:"log_in";s:5:"Login";s:7:"log_out";s:6:"Logout";s:8:"logic_or";s:2:"or";s:8:"login_as";s:12:"Logged in as";s:10:"login_data";s:10:"Login data";s:12:"login_exists";s:72:"There is already a user with this login name! Please choose another one.";s:22:"login_information_desc";s:61:"Please enter a login information for the respective language.";s:32:"login_information_settings_saved";s:45:"The login information were saved successfully";s:17:"login_information";s:17:"Login Information";s:13:"login_invalid";s:117:"The chosen login is invalid! Only the following characters are allowed (minimum 3 characters): A-Z a-z 0-9 _.-+*@!$%~";s:22:"login_to_ilias_via_cas";s:49:"Login to ILIAS via Central Authentication Service";s:29:"login_to_ilias_via_shibboleth";s:18:"Login to ILIAS via";s:14:"login_to_ilias";s:14:"Login to ILIAS";s:5:"login";s:5:"Login";s:24:"loginname_already_exists";s:31:"This login name already exists.";s:18:"loginname_settings";s:19:"Login Name Settings";s:11:"logout_text";s:56:"You logged off from ILIAS. Your session has been closed.";s:6:"logout";s:6:"Logout";s:4:"logs";s:8:"Log Data";s:4:"lres";s:18:"Learning Resources";s:16:"mail_addressbook";s:8:"Contacts";s:15:"mail_attachment";s:15:"Mail attachment";s:12:"mail_b_inbox";s:5:"Inbox";s:12:"mail_c_trash";s:5:"Trash";s:13:"mail_d_drafts";s:6:"Drafts";s:17:"mail_delete_error";s:20:"Error while deleting";s:11:"mail_e_sent";s:4:"Sent";s:20:"mail_edit_permission";s:58:"User can change permission settings in Mail administration";s:12:"mail_folders";s:12:"Mail Folders";s:16:"mail_import_file";s:11:"Export file";s:13:"mail_mails_of";s:4:"Mail";s:19:"mail_maxsize_attach";s:20:"Max. attachment size";s:12:"mail_members";s:15:"Mail to Members";s:30:"mail_multiple_recipients_found";s:97:"Enter a more specific mail address. ILIAS found multiple possible recipients for this address: %s";s:23:"mail_no_recipient_found";s:87:"Enter a different mail address. ILIAS couldn\'t find a recipient with this mail address.";s:13:"mail_not_sent";s:14:"Mail not sent!";s:14:"mail_search_no";s:17:"No entries found.";s:15:"mail_select_one";s:24:"You must select one mail";s:15:"mail_send_error";s:18:"Error sending mail";s:9:"mail_sent";s:10:"Mail sent!";s:13:"mail_settings";s:13:"Mail Settings";s:12:"mail_z_local";s:12:"User Folders";s:4:"mail";s:4:"Mail";s:8:"mails_pl";s:7:"Mail(s)";s:5:"mails";s:5:"Mails";s:9:"main_menu";s:9:"Main Menu";s:36:"add_remove_edit_entries_of_main_menu";s:44:"Add, remove or edit entries of the main menu";s:3:"all";s:3:"All";s:11:"only_active";s:11:"Only Active";s:13:"only_inactive";s:13:"Only Inactive";s:12:"entry_status";s:12:"Entry status";s:14:"manage_members";s:14:"Manage Members";s:14:"marked_entries";s:14:"Marked Entries";s:13:"matriculation";s:20:"Matriculation number";s:8:"mcst_add";s:13:"Add Mediacast";s:8:"mcst_new";s:13:"New Mediacast";s:4:"mcst";s:9:"Mediacast";s:13:"mem_add_to_wl";s:19:"Add to Waiting List";s:19:"mem_alert_no_places";s:35:"There are no free places available.";s:7:"mem_end";s:17:"Registration End:";s:15:"mem_free_places";s:11:"Free Places";s:13:"mem_max_users";s:17:"Maximum of Users:";s:16:"mem_participants";s:12:"Participants";s:15:"mem_reg_expired";s:33:"The registration time is expired.";s:19:"mem_reg_not_started";s:32:"The registration has not started";s:14:"mem_reg_period";s:19:"Registration Period";s:12:"mem_reg_type";s:17:"Registration Type";s:9:"mem_start";s:19:"Registration Start:";s:13:"mem_unlimited";s:9:"Unlimited";s:17:"mem_view_activate";s:16:"Show Member View";s:14:"mem_view_close";s:17:"Close Member View";s:13:"mem_view_long";s:11:"Member View";s:25:"mem_waiting_list_position";s:34:"Your Position on the Waiting List:";s:16:"mem_waiting_list";s:22:"Users on Waiting List:";s:13:"member_status";s:13:"Member Status";s:6:"member";s:6:"Member";s:7:"members";s:7:"Members";s:16:"membership_leave";s:5:"Leave";s:7:"mep_add";s:14:"Add Media Pool";s:8:"mep_edit";s:26:"Edit Media Pool Properties";s:7:"mep_new";s:14:"New Media Pool";s:28:"mep_not_insert_already_exist";s:86:"The following items have not been inserted because they are already in the media pool:";s:3:"mep";s:10:"Media Pool";s:15:"message_content";s:15:"Message Content";s:26:"message_no_delivered_files";s:33:"You have not submitted any files.";s:7:"message";s:7:"Message";s:9:"meta_data";s:8:"Metadata";s:45:"mgs_objects_linked_to_the_following_folders_p";s:51:"The objects were linked to the following folder(s).";s:45:"mgs_objects_linked_to_the_following_folders_s";s:49:"The object was linked to the following folder(s).";s:7:"migrate";s:7:"Migrate";s:6:"minute";s:6:"Minute";s:7:"minutes";s:7:"Minutes";s:12:"missing_perm";s:18:"Missing Permission";s:20:"missing_precondition";s:20:"Missing Precondition";s:7:"missing";s:7:"Missing";s:3:"mob";s:12:"Media Object";s:10:"moderators";s:10:"Moderators";s:6:"module";s:6:"module";s:7:"modules";s:7:"Modules";s:13:"month_01_long";s:7:"January";s:14:"month_01_short";s:3:"Jan";s:13:"month_02_long";s:8:"February";s:14:"month_02_short";s:3:"Feb";s:13:"month_03_long";s:5:"March";s:14:"month_03_short";s:3:"Mar";s:13:"month_04_long";s:5:"April";s:14:"month_04_short";s:3:"Apr";s:13:"month_05_long";s:3:"May";s:14:"month_05_short";s:3:"May";s:13:"month_06_long";s:4:"June";s:14:"month_06_short";s:3:"Jun";s:13:"month_07_long";s:4:"July";s:14:"month_07_short";s:3:"Jul";s:13:"month_08_long";s:6:"August";s:14:"month_08_short";s:3:"Aug";s:13:"month_09_long";s:9:"September";s:14:"month_09_short";s:3:"Sep";s:13:"month_10_long";s:7:"October";s:14:"month_10_short";s:3:"Oct";s:13:"month_11_long";s:8:"November";s:14:"month_11_short";s:3:"Nov";s:13:"month_12_long";s:8:"December";s:14:"month_12_short";s:3:"Dec";s:5:"month";s:5:"Month";s:7:"monthly";s:7:"monthly";s:6:"months";s:6:"Months";s:15:"mount_webfolder";s:17:"Open as webfolder";s:19:"move_selected_items";s:4:"Move";s:4:"move";s:4:"Move";s:11:"moveChapter";s:4:"Move";s:8:"movePage";s:4:"Move";s:10:"msg_cancel";s:16:"Action cancelled";s:19:"msg_clear_clipboard";s:17:"Clipboard cleared";s:10:"msg_cloned";s:25:"Selected object(s) copied";s:25:"msg_copy_clipboard_source";s:115:"Now, please select the desired course or group, whose content should be copied and click the button ‘Continue’.";s:18:"msg_copy_clipboard";s:123:"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.";s:28:"msg_copy_clipboard_container";s:126:"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Continue’.";s:17:"msg_cut_clipboard";s:123:"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.";s:14:"msg_cut_copied";s:25:"Selected object(s) moved.";s:24:"msg_deleted_export_files";s:22:"Export file(s) deleted";s:16:"msg_deleted_role";s:12:"Role deleted";s:23:"msg_deleted_roles_rolts";s:32:"Roles and Role Templates deleted";s:10:"msg_failed";s:20:"Sorry, action failed";s:19:"msg_form_save_error";s:87:"The form data could not be saved. Please check the input fields for any error messages.";s:31:"msg_input_does_not_match_regexp";s:29:"Please provide a valid value.";s:21:"msg_input_is_required";s:45:"This input is required. Please enter a value.";s:16:"msg_is_last_role";s:57:"You removed the last global role from the following users";s:30:"msg_last_role_for_registration";s:122:"At least one role must be available in the registration form for new users. This role is currently the only one available.";s:20:"msg_link_clipboard_p";s:115:"Now, please select the desired location, where the selected objects should be linked to and click the button Paste.";s:20:"msg_link_clipboard_s";s:114:"Now, please select the desired location, where the selected object should be linked to and click the button Paste.";s:10:"msg_linked";s:26:"Selected object(s) linked.";s:19:"msg_may_not_contain";s:44:"This object may not contain objects of type:";s:16:"msg_min_one_role";s:45:"Each user must have at least one global role!";s:27:"msg_multi_language_selected";s:58:"You selected the same language for different translations!";s:23:"msg_no_default_language";s:86:"No default language specified! You must define one translation as default translation.";s:22:"msg_no_delete_yourself";s:40:"You cannot delete your own user account.";s:11:"msg_no_file";s:58:"You didn\'t choose a file or the selected file was too big.";s:24:"msg_no_language_selected";s:82:"No translation language specified! You must define a language for each translation";s:31:"msg_no_perm_assign_role_to_user";s:55:"You have no permission to change user\'s role assignment";s:31:"msg_no_perm_assign_user_to_role";s:52:"You have no permission to change the user assignment";s:16:"msg_no_perm_copy";s:67:"You have no permission to create a copy of the following object(s):";s:23:"msg_no_perm_create_rolt";s:44:"You have no permission to add role templates";s:15:"msg_no_perm_cut";s:54:"You have no permission to cut the following object(s):";s:18:"msg_no_perm_delete";s:57:"You have no permission to delete the following object(s):";s:16:"msg_no_perm_link";s:69:"You have no permission to create a link from the following object(s):";s:23:"msg_no_perm_modify_rolt";s:47:"You have no permission to modify role templates";s:23:"msg_no_perm_modify_user";s:42:"You have no permission to modify user data";s:34:"msg_no_perm_paste_object_in_folder";s:63:"You have no permission to paste the object %s in the folder %s.";s:17:"msg_no_perm_paste";s:56:"You have no permission to paste the following object(s):";s:16:"msg_no_perm_perm";s:50:"You have no permission to edit permission settings";s:21:"msg_no_perm_read_item";s:45:"You have no permission to access item \'%s’.";s:19:"msg_no_perm_read_lm";s:52:"You have no permission to read this learning module.";s:16:"msg_no_perm_read";s:43:"You have no permission to access this item.";s:17:"msg_no_perm_write";s:31:"You have no permission to write";s:20:"msg_no_search_result";s:16:"No entries found";s:20:"msg_no_search_string";s:23:"Please enter your query";s:12:"msg_no_title";s:21:"Please enter a title.";s:26:"msg_not_available_for_anon";s:64:"The page you have chosen is only accessible for registered users";s:17:"msg_not_in_itself";s:49:"It’s not possible to paste the object in itself";s:15:"msg_obj_created";s:15:"Object created.";s:24:"msg_obj_exists_in_folder";s:46:"The object %s already exists in the folder %s.";s:14:"msg_obj_exists";s:41:"This object already exists in this folder";s:39:"msg_obj_may_not_contain_objects_of_type";s:50:"The object %s may not contain objects of type: %s.";s:16:"msg_obj_modified";s:20:"Modifications saved.";s:15:"msg_obj_no_link";s:250:"It is not possible to link container objects like categories, courses, groups or folder due to technical reasons. Instead you may link several single objects within such a container to other areas or create a category link, course link or group link.";s:30:"msg_paste_object_not_in_itself";s:55:"It’s not possible to paste the Object "%s" in itself.";s:28:"msg_perm_adopted_from_itself";s:80:"You cannot adopt permission settings from the current role/role template itself.";s:22:"msg_perm_adopted_from1";s:32:"Permission settings adopted from";s:22:"msg_perm_adopted_from2";s:27:"(Settings have been saved!)";s:11:"msg_removed";s:30:"Object(s) removed from system.";s:24:"msg_role_reserved_prefix";s:94:"The prefix ‘il_’ is reserved for automatically generated roles. Please choose another name";s:26:"msg_roleassignment_changed";s:23:"Role assignment changed";s:25:"msg_sysrole_not_deletable";s:33:"The system role cannot be deleted";s:24:"msg_sysrole_not_editable";s:151:"The permission settings of the system role may not be changed. The system role grants all assigned users unlimited access to all objects and functions.";s:15:"msg_trash_empty";s:28:"There are no deleted objects";s:13:"msg_undeleted";s:19:"Object(s) restored.";s:20:"msg_unit_is_required";s:57:"This input requires a unit. Please enter a correct value.";s:19:"msg_user_last_role1";s:51:"The following users are assigned to this role only:";s:19:"msg_user_last_role2";s:84:"Please delete the users or assign them to another role in order to delete this role.";s:26:"msg_userassignment_changed";s:23:"User assignment changed";s:16:"msg_wrong_format";s:44:"The value you entered is not a valid format.";s:23:"msg_bt_download_started";s:134:"ILIAS is generating a ZIP archive of all available files. You can download them from the Notification Center (bell icon) on top right.";s:6:"my_bms";s:9:"Bookmarks";s:10:"my_courses";s:10:"My Courses";s:4:"name";s:4:"Name";s:5:"never";s:5:"never";s:12:"new_language";s:12:"New Language";s:24:"new_pass_equals_old_pass";s:36:"The new password equals the old one.";s:3:"new";s:3:"New";s:7:"newline";s:7:"Newline";s:4:"news";s:4:"News";s:4:"next";s:4:"Next";s:21:"no_access_item_public";s:81:"To access this item you need to be logged in and to have appropriate permissions.";s:14:"no_access_item";s:43:"You have no permission to access this item.";s:24:"no_agreement_description";s:136:"There is currently no terms of service text provided with this installation. Please contact the system administrator.";s:11:"no_checkbox";s:28:"You did not select any item.";s:21:"no_condition_selected";s:31:"Please select one precondition.";s:7:"no_date";s:7:"No date";s:19:"no_global_role_left";s:42:"Every user has to be assigned to one role.";s:24:"user_not_found_to_delete";s:36:"A user could not be found to delete.";s:20:"no_import_file_found";s:20:"No import file found";s:8:"no_items";s:43:"This object is empty and contains no items.";s:8:"no_limit";s:8:"No limit";s:21:"no_mkisofs_configured";s:70:"You have to configure mkisofs utility in ILIAS setup to run ISO export";s:8:"no_owner";s:8:"No Owner";s:16:"no_parent_access";s:37:"No access to a superordinated object!";s:13:"no_permission";s:41:"You do not have the necessary permission.";s:32:"no_roles_user_can_be_assigned_to";s:98:"There are no global roles the user can be assigned to. Therefore you are not allowed to add users.";s:13:"no_start_file";s:14:"No Start File.";s:8:"no_title";s:8:"No Title";s:17:"no_users_selected";s:23:"Please select one user.";s:24:"no_xml_file_found_in_zip";s:35:"XML file within zip file not found:";s:2:"no";s:2:"No";s:3:"noc";s:19:"Notification Center";s:29:"non_internal_local_roles_only";s:31:"Local roles (only user defined)";s:4:"none";s:4:"None";s:6:"normal";s:6:"Normal";s:13:"not_available";s:13:"Not Available";s:19:"not_implemented_yet";s:19:"Not implemented yet";s:13:"not_installed";s:13:"Not Installed";s:13:"not_logged_in";s:21:"You are not logged in";s:4:"note";s:4:"Note";s:18:"notes_and_comments";s:18:"Notes and Comments";s:5:"notes";s:5:"Notes";s:13:"notifications";s:13:"Notifications";s:9:"num_users";s:15:"Number of Users";s:13:"edit_metadata";s:13:"Edit Metadata";s:13:"obj_accs_desc";s:36:"Settings for accessibility features.";s:16:"obj_accs_captcha";s:8:"Captchas";s:8:"obj_accs";s:13:"Accessibility";s:12:"obj_adm_desc";s:90:"Main system settings folder containing all panels to administrate your ILIAS installation.";s:7:"obj_adm";s:14:"Administration";s:13:"obj_adve_desc";s:58:"Administration settings for ILIAS page editor and TinyMCE.";s:8:"obj_adve";s:7:"Editing";s:13:"obj_assf_desc";s:50:"Platform settings for the Test and Assessment tool";s:8:"obj_assf";s:19:"Test and Assessment";s:13:"obj_auth_desc";s:97:"Configure your authentication mode (local, LDAP, ...) and new account registration settings here.";s:8:"obj_auth";s:31:"Authentication and Registration";s:13:"obj_cals_desc";s:26:"General Calendar settings.";s:8:"obj_cals";s:8:"Calendar";s:17:"obj_cat_duplicate";s:13:"Copy Category";s:7:"obj_cat";s:8:"Category";s:8:"obj_catr";s:13:"Category Link";s:13:"obj_cert_desc";s:25:"Settings for certificates";s:8:"obj_cert";s:12:"Certificates";s:7:"obj_wfe";s:15:"Workflow Engine";s:8:"obj_chap";s:7:"Chapter";s:13:"obj_cmps_desc";s:28:"General settings for Plugins";s:8:"obj_cmps";s:7:"Plugins";s:17:"obj_crs_duplicate";s:11:"Copy Course";s:7:"obj_crs";s:6:"Course";s:8:"obj_crsr";s:11:"Course Link";s:7:"obj_dbk";s:12:"Digilib Book";s:7:"obj_exc";s:8:"Exercise";s:13:"obj_extt_desc";s:67:"Configure external software or services that are supported by ILIAS";s:8:"obj_extt";s:20:"Third Party Software";s:13:"obj_facs_desc";s:36:"Settings for files and file handling";s:8:"obj_facs";s:5:"Files";s:8:"obj_feed";s:8:"Web Feed";s:15:"obj_file_inline";s:20:"Learning Module File";s:8:"obj_file";s:4:"File";s:18:"obj_file_duplicate";s:14:"Duplicate File";s:8:"obj_fold";s:6:"Folder";s:17:"obj_frm_duplicate";s:10:"Copy Forum";s:7:"obj_frm";s:5:"Forum";s:7:"obj_glo";s:8:"Glossary";s:17:"obj_grp_duplicate";s:10:"Copy Group";s:7:"obj_grp";s:5:"Group";s:8:"obj_htlm";s:20:"Learning Module HTML";s:13:"obj_ldap_desc";s:36:"Configure global LDAP Settings here.";s:6:"obj_lm";s:21:"Learning Module ILIAS";s:7:"obj_lng";s:8:"Language";s:13:"obj_lngf_desc";s:34:"Manage your system languages here.";s:8:"obj_lngf";s:9:"Languages";s:13:"obj_lrss_desc";s:40:"Configure all types of learning modules.";s:8:"obj_lrss";s:16:"Learning Modules";s:13:"obj_mail_desc";s:36:"Configure global mail settings here.";s:8:"obj_mail";s:4:"Mail";s:8:"obj_mcst";s:9:"Mediacast";s:13:"obj_mcts_desc";s:31:"General settings for mediacast.";s:8:"obj_mcts";s:9:"Mediacast";s:7:"obj_mep";s:10:"Media Pool";s:7:"obj_mob";s:12:"Media Object";s:13:"obj_mobs_desc";s:43:"Settings for media objects and media pools.";s:8:"obj_mobs";s:23:"Media Objects and Pools";s:13:"obj_not_found";s:16:"Object Not Found";s:13:"obj_nwss_desc";s:50:"Settings for internal news and external web feeds.";s:8:"obj_nwss";s:18:"News and Web Feeds";s:13:"obj_objf_desc";s:69:"Manage ILIAS object types and object permissions. (only for experts!)";s:8:"obj_objf";s:18:"Object Definitions";s:8:"obj_page";s:4:"Page";s:6:"obj_pg";s:4:"Page";s:11:"obj_ps_desc";s:52:"Configure global privacy and security settings here.";s:6:"obj_ps";s:20:"Privacy and Security";s:17:"obj_qpl_duplicate";s:23:"Copy Question Pool Test";s:14:"obj_qpl_select";s:42:"-- Please select one question pool test --";s:7:"obj_qpl";s:18:"Question Pool Test";s:8:"obj_rcrs";s:10:"ECS Course";s:13:"obj_recf_desc";s:44:"Contains restored objects from System Check.";s:8:"obj_recf";s:16:"Restored Objects";s:8:"obj_role";s:4:"Role";s:13:"obj_rolf_desc";s:23:"Manage your roles here.";s:19:"obj_rolf_local_desc";s:34:"Contains local roles of object no.";s:14:"obj_rolf_local";s:11:"Local Roles";s:8:"obj_rolf";s:5:"Roles";s:8:"obj_rolt";s:13:"Role Template";s:8:"obj_root";s:17:"Repository - Home";s:8:"obj_sahs";s:21:"Learning Module SCORM";s:7:"obj_sco";s:3:"SCO";s:13:"obj_seas_desc";s:32:"Manage the search settings here.";s:8:"obj_seas";s:6:"Search";s:18:"obj_sess_duplicate";s:12:"Copy Session";s:8:"obj_sess";s:7:"Session";s:14:"obj_spl_select";s:44:"-- Please select one question pool survey --";s:7:"obj_spl";s:20:"Question Pool Survey";s:6:"obj_st";s:7:"Chapter";s:7:"obj_sty";s:5:"Style";s:13:"obj_stys_desc";s:42:"Manage system skin and style settings here";s:8:"obj_stys";s:17:"Layout and Styles";s:17:"obj_svy_duplicate";s:11:"Copy Survey";s:7:"obj_svy";s:6:"Survey";s:13:"obj_svyf_desc";s:37:"Platform settings for the Survey Tool";s:8:"obj_svyf";s:6:"Survey";s:13:"obj_tags_desc";s:29:"Settings for tagging feature.";s:8:"obj_tags";s:7:"Tagging";s:7:"obj_tax";s:8:"Taxonomy";s:8:"obj_taxf";s:10:"Taxonomies";s:13:"obj_trac_desc";s:54:"Statistics and Learning Progress Settings and Overview";s:8:"obj_trac";s:32:"Statistics and Learning Progress";s:17:"obj_tst_duplicate";s:9:"Copy Test";s:7:"obj_tst";s:4:"Test";s:8:"obj_type";s:11:"Object Type";s:8:"obj_user";s:4:"User";s:7:"obj_usr";s:4:"User";s:13:"obj_usrf_desc";s:26:"Manage user accounts here.";s:8:"obj_usrf";s:15:"User Management";s:18:"obj_webr_duplicate";s:17:"Copy Weblink list";s:8:"obj_webr";s:7:"Weblink";s:8:"obj_wiki";s:4:"Wiki";s:3:"obj";s:6:"Object";s:12:"object_added";s:12:"Object added";s:23:"object_copy_in_progress";s:16:"Started Copying.";s:17:"object_duplicated";s:13:"Object copied";s:9:"object_id";s:9:"Object-Id";s:15:"object_imported";s:15:"Object imported";s:6:"object";s:6:"Object";s:7:"objects";s:7:"Objects";s:4:"objf";s:18:"Object definitions";s:8:"objs_cat";s:10:"Categories";s:9:"objs_catr";s:13:"Category Link";s:8:"objs_crs";s:7:"Courses";s:9:"objs_crsr";s:11:"Course Link";s:8:"objs_exc";s:9:"Exercises";s:9:"objs_feed";s:9:"Web Feeds";s:9:"objs_file";s:5:"Files";s:9:"objs_fold";s:7:"Folders";s:8:"objs_frm";s:6:"Forums";s:8:"objs_glo";s:10:"Glossaries";s:8:"objs_grp";s:6:"Groups";s:9:"objs_htlm";s:21:"HTML Learning Modules";s:7:"objs_lm";s:22:"ILIAS Learning Modules";s:9:"objs_lres";s:18:"Learning Resources";s:9:"objs_mail";s:4:"Mail";s:9:"objs_mcst";s:10:"Mediacasts";s:8:"objs_mep";s:11:"Media Pools";s:8:"objs_prg";s:16:"Study Programmes";s:8:"objs_qpl";s:19:"Question Pools Test";s:8:"objs_qst";s:9:"Questions";s:9:"objs_rcrs";s:11:"ECS Courses";s:9:"objs_role";s:5:"Roles";s:9:"objs_sahs";s:22:"SCORM Learning Modules";s:9:"objs_sess";s:8:"Sessions";s:8:"objs_spl";s:21:"Question Pools Survey";s:7:"objs_st";s:8:"Chapters";s:8:"objs_svy";s:7:"Surveys";s:8:"objs_tst";s:5:"Tests";s:9:"objs_webr";s:8:"Weblinks";s:9:"objs_wiki";s:5:"Wikis";s:2:"of";s:2:"Of";s:7:"offline";s:7:"Offline";s:2:"ok";s:2:"OK";s:3:"old";s:3:"Old";s:8:"omit_all";s:8:"Omit all";s:4:"omit";s:4:"Omit";s:15:"on_waiting_list";s:27:"You are on the waiting list";s:11:"online_time";s:25:"Time online (DD:HH:MM:SS)";s:6:"online";s:6:"Online";s:9:"operation";s:9:"Operation";s:8:"optimize";s:8:"Optimize";s:6:"option";s:6:"Option";s:16:"optional_filters";s:16:"Optional Filters";s:7:"options";s:7:"Options";s:13:"order_by_date";s:7:"By Date";s:8:"order_by";s:8:"Order by";s:12:"organization";s:8:"Provider";s:5:"other";s:5:"Other";s:8:"overview";s:8:"Overview";s:9:"overwrite";s:9:"Overwrite";s:13:"owner_updated";s:14:"Owner updated.";s:5:"owner";s:5:"Owner";s:11:"page_layout";s:11:"Page Layout";s:12:"page_layouts";s:12:"Page Layouts";s:4:"page";s:4:"Page";s:5:"pages";s:5:"Pages";s:9:"parameter";s:9:"Parameter";s:5:"parse";s:5:"Parse";s:6:"passed";s:6:"Passed";s:17:"passwd_generation";s:19:"Password Generation";s:14:"passwd_invalid";s:119:"The new password is invalid! Only the following characters are allowed (minimum 6 characters): A-Z a-z 0-9 _.-+?#*@!$%~";s:16:"passwd_not_match";s:83:"Your entries for the new password don’t match! Please re-enter your new password.";s:12:"passwd_wrong";s:34:"The password you entered is wrong!";s:6:"passwd";s:8:"Password";s:24:"password_assistance_info";s:229:"If password assistance is enabled, a link ‘Forgot Password?’ is shown on the login page of ILIAS. Users can use this link to define a new password for their user account without needing assistance from a system administrator.";s:37:"password_change_on_first_login_demand";s:75:"You have to change your password before you can start using ILIAS services.";s:14:"password_empty";s:37:"The password field must not be empty.";s:16:"password_expired";s:84:"Your password is expired and has to be changed as the last change was %s day(s) ago.";s:31:"password_must_chars_and_numbers";s:49:"The password must contain characters and numbers.";s:27:"password_must_special_chars";s:45:"The password must contain special characters.";s:16:"password_to_long";s:55:"The password must have at most a size of %s characters.";s:17:"password_to_short";s:56:"The password must have at least a size of %s characters.";s:8:"password";s:8:"Password";s:21:"paste_clipboard_items";s:5:"Paste";s:5:"paste";s:5:"Paste";s:12:"pasteChapter";s:5:"Paste";s:9:"pastePage";s:5:"Paste";s:12:"path_not_set";s:12:"Path not set";s:15:"path_to_convert";s:15:"Path to Convert";s:15:"path_to_htmldoc";s:15:"Path to HTMLdoc";s:12:"path_to_java";s:12:"Path to Java";s:13:"path_to_unzip";s:13:"Path to Unzip";s:11:"path_to_zip";s:11:"Path to Zip";s:4:"path";s:4:"Path";s:6:"pathes";s:5:"Paths";s:13:"pd_items_news";s:30:"Include News of Personal Items";s:10:"pdf_export";s:10:"PDF Export";s:13:"perm_settings";s:11:"Permissions";s:10:"perma_link";s:14:"Permanent Link";s:17:"permission_denied";s:17:"Permission Denied";s:19:"permission_settings";s:26:"Object Permission Settings";s:10:"permission";s:10:"Permission";s:12:"person_title";s:5:"Title";s:13:"personal_data";s:13:"Personal Data";s:16:"personal_picture";s:6:"Avatar";s:16:"personal_profile";s:19:"Profile and Privacy";s:7:"persons";s:7:"Persons";s:6:"pg_add";s:8:"Add page";s:6:"pg_new";s:8:"New page";s:10:"phone_home";s:11:"Phone, Home";s:12:"phone_mobile";s:13:"Phone, Mobile";s:12:"phone_office";s:13:"Phone, Office";s:5:"phone";s:5:"Phone";s:6:"phrase";s:6:"Phrase";s:13:"please_choose";s:12:"-- Select --";s:19:"please_enter_target";s:21:"Please enter a target";s:18:"please_enter_title";s:20:"Please enter a title";s:40:"please_select_a_delivered_file_to_delete";s:57:"You must select at least one delivered file to delete it!";s:42:"please_select_a_delivered_file_to_download";s:59:"You must select at least one delivered file to download it!";s:13:"please_select";s:19:"-- Please Select --";s:11:"please_wait";s:14:"Please wait...";s:4:"port";s:4:"Port";s:10:"pos_bottom";s:6:"Bottom";s:8:"pos_left";s:4:"Left";s:9:"pos_right";s:5:"Right";s:7:"pos_top";s:3:"Top";s:8:"position";s:8:"Position";s:27:"precondition_not_accessible";s:79:"You do not have sufficient permission to view the precondition(s) of this item.";s:12:"precondition";s:12:"Precondition";s:13:"preconditions";s:13:"Preconditions";s:19:"predefined_template";s:24:"Predefined role template";s:11:"preferences";s:11:"Preferences";s:20:"preview_learner_info";s:119:"If enabled, Course and Group administrators have the possibility to view the content form the perspective of a learner.";s:8:"previous";s:8:"Previous";s:10:"print_view";s:10:"Print View";s:5:"print";s:5:"Print";s:13:"private_notes";s:13:"Private Notes";s:3:"pro";s:3:"Pro";s:7:"proceed";s:7:"Proceed";s:15:"profile_changed";s:42:"ILIAS eLearning - Your profile has changed";s:18:"profile_incomplete";s:61:"Your profile is incomplete. Please fill in all required data.";s:10:"profile_of";s:10:"Profile of";s:7:"profile";s:7:"Profile";s:10:"properties";s:10:"Properties";s:17:"proxy_connectable";s:23:"Connection established.";s:15:"proxy_host_info";s:20:"Please enter a host.";s:10:"proxy_host";s:4:"Host";s:21:"proxy_not_connectable";s:56:"ILIAS could not build a connection to the defined proxy.";s:18:"proxy_socket_error";s:16:"Socket Error: %s";s:15:"proxy_port_info";s:50:"Please enter a port between 0 and 65535, e.g.8080.";s:18:"proxy_port_numeric";s:62:"The entered port has to be a numeric value between 0 and 65535";s:10:"proxy_port";s:4:"Port";s:17:"proxy_status_info";s:102:"To use a proxy in ILIAS (e.g. for web feeds or to check web links) please activate the checkbox above.";s:12:"proxy_status";s:5:"Proxy";s:5:"proxy";s:12:"Proxy-Server";s:16:"pub_section_info";s:230:"If enabled, parts of the system (e.g. repository, workspace, user profiles) can be made available to the internet without authentication. The permissions of the ‘Anonymous’ role will control the access to repository resources.";s:11:"pub_section";s:16:"Anonymous Access";s:12:"public_notes";s:12:"Public Notes";s:14:"public_profile";s:7:"Profile";s:6:"public";s:6:"public";s:7:"purpose";s:7:"Purpose";s:7:"qpl_add";s:22:"Add Question Pool Test";s:7:"qpl_new";s:22:"New Question Pool Test";s:3:"qpl";s:18:"Question Pool Test";s:10:"query_data";s:10:"Query data";s:16:"question_message";s:8:"Question";s:8:"question";s:8:"Question";s:4:"quit";s:4:"Quit";s:5:"quote";s:5:"Quote";s:4:"read";s:4:"Read";s:25:"readcount_anonymous_users";s:33:"Number of anonymous read accesses";s:15:"readcount_users";s:37:"Number of non-anonymous read accesses";s:9:"recipient";s:9:"Recipient";s:17:"reference_deleted";s:25:"Destination not available";s:12:"reference_of";s:13:"Reference of:";s:16:"referral_comment";s:29:"How did you hear about ILIAS?";s:17:"refresh_languages";s:21:"Refresh All Languages";s:7:"refresh";s:7:"Refresh";s:6:"refuse";s:6:"Refuse";s:35:"reg_account_confirmation_successful";s:37:"Your user account has been activated.";s:28:"reg_mail_body_2_confirmation";s:92:"The link will only be good for %s, after that you will have to try again from the beginning.";s:28:"reg_mail_body_3_confirmation";s:174:"If this e-mail means nothing to you, then it is possible that somebody else has entered your e-mail address either deliberately or accidentally, so please ignore this e-mail.";s:34:"reg_mail_body_forgot_password_info";s:132:"To get your password, please use the function « Forgot password? » at the login screen to request a new password for this account.";s:24:"reg_mail_body_salutation";s:5:"Hello";s:19:"reg_mail_body_text1";s:27:"Welcome to ILIAS eLearning!";s:19:"reg_mail_body_text2";s:39:"To access ILIAS use the following data:";s:19:"reg_mail_body_text3";s:29:"Further personal information:";s:29:"reg_mail_subject_confirmation";s:40:"ILIAS eLearning - Your Confirmation Link";s:16:"reg_mail_subject";s:34:"ILIAS eLearning - Your access data";s:19:"reg_passwd_via_mail";s:62:"Your password will be sent to your e-mail address given below.";s:8:"register";s:8:"Register";s:16:"registered_since";s:16:"Registered since";s:15:"registered_user";s:15:"registered User";s:16:"registered_users";s:16:"registered Users";s:12:"registration";s:24:"New Account Registration";s:10:"related_to";s:10:"Related to";s:18:"remove_translation";s:18:"Remove translation";s:6:"remove";s:6:"Remove";s:11:"rename_file";s:11:"Rename File";s:6:"rename";s:6:"Rename";s:18:"repeat_scan_failed";s:21:"Repeated scan failed.";s:20:"repeat_scan_succeded";s:24:"Repeated scan succeeded.";s:11:"repeat_scan";s:23:"Repeating virus scan...";s:12:"replace_file";s:12:"Replace File";s:5:"reply";s:5:"Reply";s:21:"repository_admin_desc";s:81:"Set permissions for repository items, restore or remove objects from system trash";s:16:"repository_admin";s:32:"Repository Trash and Permissions";s:10:"repository";s:10:"Repository";s:13:"require_email";s:14:"Require e-mail";s:14:"require_gender";s:18:"Require salutation";s:13:"require_hobby";s:13:"Require hobby";s:21:"require_matriculation";s:28:"Require matriculation number";s:24:"require_referral_comment";s:24:"Require referral comment";s:14:"required_field";s:8:"Required";s:15:"res_links_short";s:5:"Links";s:9:"res_links";s:16:"Repository Links";s:12:"reset_filter";s:12:"Reset Filter";s:5:"reset";s:5:"Reset";s:9:"resources";s:9:"Resources";s:5:"right";s:5:"Right";s:6:"rights";s:6:"Rights";s:13:"role_add_user";s:19:"Add User(s) to role";s:10:"role_added";s:10:"Role added";s:23:"role_assignment_updated";s:33:"Role assignment has been updated.";s:15:"role_assignment";s:15:"Role Assignment";s:22:"global_role_assignment";s:23:"Globale Rollenzuweisung";s:21:"local_role_assignment";s:22:"Lokale Rollenzuweisung";s:9:"role_edit";s:9:"Edit Role";s:11:"role_mailto";s:26:"Mail to all assigned Users";s:15:"role_new_search";s:10:"New search";s:8:"role_new";s:8:"New Role";s:22:"role_no_roles_selected";s:20:"Please select a role";s:29:"role_protect_permissions_desc";s:147:"The object permissions cannot be changed by systems operations anymore. Furthermore only administrator of higher levels may change the permissions.";s:24:"role_protect_permissions";s:19:"Protect Permissions";s:20:"role_select_one_item";s:25:"Please select one object.";s:27:"role_sure_delete_desk_items";s:58:"Are you sure you want to delete the following assignments?";s:19:"role_templates_only";s:19:"Role templates only";s:4:"role";s:4:"Role";s:22:"roles_of_import_global";s:27:"Global roles of import file";s:21:"roles_of_import_local";s:26:"Local roles of import file";s:5:"roles";s:5:"Roles";s:10:"rolf_added";s:17:"Role folder added";s:16:"rolf_create_role";s:15:"Create New Role";s:16:"rolf_create_rolt";s:24:"Create New Role Template";s:11:"rolf_delete";s:27:"Delete Roles/Role templates";s:20:"rolf_edit_permission";s:26:"Change permission settings";s:24:"rolf_edit_userassignment";s:31:"Change user assignment of Roles";s:9:"rolf_read";s:35:"Read access to Roles/role templates";s:12:"rolf_visible";s:32:"Roles/role templates are visible";s:10:"rolf_write";s:56:"Edit default permission settings of Roles/role templates";s:4:"rolf";s:5:"Roles";s:10:"rolt_added";s:19:"Role template added";s:9:"rolt_edit";s:18:"Edit Role Template";s:8:"rolt_new";s:17:"New Role Template";s:4:"rolt";s:13:"Role Template";s:3:"row";s:3:"Row";s:4:"rows";s:4:"Rows";s:10:"sahs_added";s:27:"SCORM Learning Module added";s:26:"sahs_insert_chap_from_clip";s:29:"Paste Chapters from Clipboard";s:26:"sahs_insert_page_from_clip";s:26:"Paste Pages from Clipboard";s:25:"sahs_insert_sco_from_clip";s:25:"Paste SCOs from Clipboard";s:4:"sahs";s:21:"Learning Module SCORM";s:12:"salutation_f";s:8:"Ms./Mrs.";s:12:"salutation_m";s:3:"Mr.";s:12:"salutation_n";s:21:"No salutation desired";s:10:"salutation";s:10:"Salutation";s:13:"save_and_back";s:13:"Save And Back";s:12:"save_message";s:13:"Save as Draft";s:20:"save_params_for_cron";s:27:"Save Parameter for Cron Job";s:12:"save_refresh";s:16:"Save and Refresh";s:11:"save_return";s:15:"Save and Return";s:13:"save_settings";s:13:"Save Settings";s:22:"save_user_related_data";s:29:"Save user related access data";s:4:"save";s:4:"Save";s:18:"saved_successfully";s:18:"Saved Successfully";s:29:"scorm_create_export_file_html";s:25:"Create Export File (HTML)";s:28:"scorm_create_export_file_pdf";s:24:"Create Export File (PDF)";s:32:"scorm_create_export_file_scrom12";s:30:"Create Export File (SCORM 1.2)";s:38:"scorm_create_export_file_scrom2004_4th";s:43:"Create Export File (SCORM 2004 4th Edition)";s:34:"scorm_create_export_file_scrom2004";s:43:"Create Export File (SCORM 2004 3rd Edition)";s:9:"scorm_new";s:45:"Create SCORM Learning Module (Authoring Mode)";s:13:"search_active";s:20:"Include active users";s:13:"search_engine";s:19:"Readable .html URLs";s:10:"search_for";s:10:"Search For";s:9:"search_in";s:9:"Search in";s:15:"search_inactive";s:22:"Include inactive users";s:10:"search_new";s:10:"New Search";s:13:"search_result";s:13:"Search Result";s:14:"search_results";s:14:"Search Results";s:11:"search_user";s:11:"Search User";s:6:"search";s:6:"Search";s:18:"seas_max_hits_info";s:63:"Please enter a number for the maximum number of search results.";s:13:"seas_max_hits";s:8:"Max hits";s:13:"seas_settings";s:15:"Search settings";s:6:"second";s:6:"Second";s:7:"seconds";s:7:"Seconds";s:10:"select_all";s:10:"Select All";s:26:"select_at_least_one_object";s:34:"Please choose at least one object.";s:11:"select_file";s:11:"Select File";s:19:"select_max_one_item";s:27:"Please select one item only";s:21:"select_object_to_link";s:47:"Please select the object which you want to link";s:10:"select_one";s:23:"Please select one item.";s:19:"select_questionpool";s:21:"Insert questions into";s:25:"select_question_pool_info";s:117:"As long as the import file contains questions, these questions will be imported to the selected questionpool as well.";s:6:"select";s:6:"Select";s:19:"selected_items_back";s:22:"Back to Personal Items";s:14:"selected_items";s:14:"Personal Items";s:26:"selected_languages_updated";s:56:"The selected languages have been updated (if installed):";s:8:"selected";s:8:"Selected";s:9:"send_mail";s:12:"Send Message";s:4:"send";s:4:"Send";s:6:"sender";s:6:"Sender";s:4:"sent";s:4:"Sent";s:8:"sequence";s:8:"Sequence";s:9:"sequences";s:9:"Sequences";s:11:"server_data";s:11:"Server Info";s:15:"server_software";s:15:"Server Software";s:6:"server";s:6:"Server";s:4:"sess";s:7:"Session";s:22:"session_reminder_alert";s:184:"Your session expires in %1$s at %2$s! Choose OK to continue your session. If you click Cancel you will not be reminded during the current browser session anymore. Installation: %3$s.";s:21:"session_reminder_info";s:85:"If enabled, you receive a reminder before the online-session of your browser expires.";s:31:"session_reminder_lead_time_info";s:241:"Please specify the lead time for the session reminder in minutes. The reminder displays a warning when only this time span is left before the session expires. Recommended value is 5 (minutes)
The current length of a user session is %s.";s:26:"session_reminder_lead_time";s:8:"Leadtime";s:33:"session_reminder_session_duration";s:23:"(Session Duration: %s).";s:16:"session_reminder";s:16:"Session-Reminder";s:11:"set_offline";s:11:"Set Offline";s:10:"set_online";s:10:"Set Online";s:3:"set";s:3:"Set";s:17:"setSystemLanguage";s:19:"Set System Language";s:14:"settings_saved";s:14:"Saved settings";s:8:"settings";s:8:"Settings";s:15:"setUserLanguage";s:17:"Set User Language";s:11:"shib_active";s:25:"Enable Shibboleth support";s:9:"shib_city";s:18:"Attribute for city";s:12:"shib_country";s:21:"Attribute for country";s:22:"shib_data_conv_warning";s:59:"The data manipulation API file you specified cannot be read";s:14:"shib_data_conv";s:38:"Absolute path to data manipulation API";s:15:"shib_department";s:24:"Attribute for department";s:10:"shib_email";s:28:"Attribute for e-mail address";s:20:"shib_federation_name";s:34:"Name of your Shibboleth federation";s:14:"shib_firstname";s:24:"Attribute for first name";s:11:"shib_gender";s:53:"Attribute for salutation (must be ‘m’ or ‘f’)";s:31:"shib_general_login_instructions";s:159:"To log in via %s, please click on the login button and choose your organization of the following page.
If you have questions concerning this, please ask the";s:36:"shib_general_wayf_login_instructions";s:126:"In case you are not associated with the given organizations and you need access to a course on this server, please contact the";s:13:"shib_idp_list";s:496:"Provide a list of Identity Providers to let the user choose from on the ILIAS login page.
On each line there must be a comma-separated tuple for providerID of IdP (see the Shibboleth metadata file) and Name of IdP as it shall be displayed in the drop-down list.
As an optional third parameter you can add the location of a Shibboleth session initiator that shall be used in case your ILIAS installation is part of a multi federation setup.";s:16:"shib_institution";s:25:"Attribute for institution";s:30:"shib_invalid_home_organization";s:35:"Please choose a valid organization!";s:13:"shib_language";s:22:"Attribute for language";s:13:"shib_lastname";s:22:"Attribute for lastname";s:17:"shib_login_button";s:131:"Path to the image of a Shibboleth login button that is used to redirect users to the WAYF specified in the Shibboleth configuration";s:36:"shib_login_embedded_wayf_description";s:231:"If this option is chosen, you can provide any HTML code in the login instructions text area below. This can for example be used to embed an own JavaScript WAYF/Discovery Service or create a custom-tailored design of the login area.";s:24:"shib_login_embedded_wayf";s:24:"Design custom login area";s:24:"shib_login_external_wayf";s:25:"Use external WAYF service";s:24:"shib_login_internal_wayf";s:22:"Use ILIAS WAYF service";s:15:"shib_login_type";s:22:"Organization selection";s:10:"shib_login";s:27:"Unique Shibboleth attribute";s:14:"shib_member_of";s:20:"I am a member of ...";s:15:"shib_phone_home";s:31:"Attribute for home phone number";s:17:"shib_phone_mobile";s:33:"Attribute for mobile phone number";s:17:"shib_phone_office";s:33:"Attribute for office phone number";s:29:"shib_select_home_organization";s:83:"For authentication via %s, please select your organization from the drop down list.";s:19:"shib_settings_saved";s:34:"The Shibboleth settings were saved";s:11:"shib_street";s:20:"Attribute for street";s:10:"shib_title";s:19:"Attribute for title";s:11:"shib_update";s:26:"Update this field on login";s:22:"shib_user_default_role";s:41:"Default role assigned to Shibboleth users";s:12:"shib_zipcode";s:21:"Attribute for zipcode";s:4:"shib";s:10:"Shibboleth";s:20:"short_inst_name_info";s:100:"This title will appear in the browser header title bar. If no value is entered, ‘ILIAS’ is used.";s:15:"short_inst_name";s:11:"Short Title";s:12:"show_details";s:12:"Show Details";s:11:"show_filter";s:11:"Show Filter";s:9:"show_list";s:9:"Show List";s:12:"show_members";s:15:"Display Members";s:10:"show_owner";s:10:"Show Owner";s:17:"show_users_online";s:17:"Show active users";s:4:"show";s:4:"Show";s:10:"side_frame";s:10:"Side Frame";s:9:"signature";s:9:"Signature";s:27:"simultaneous_login_detected";s:76:"Your access is denied because of a simultaneous login with the same account.";s:4:"size";s:4:"Size";s:10:"skin_style";s:20:"Default Skin / Style";s:4:"smtp";s:4:"SMTP";s:29:"soap_user_administration_desc";s:48:"If enabled, ILIAS can be administrated via SOAP.";s:24:"soap_user_administration";s:23:"Administration via SOAP";s:19:"soap_wsdl_path_info";s:163:"Please enter the path to the ilias wsdl file which should be used for the webservice. If you leave this field blank, the following path will be used per default:%s";s:14:"soap_wsdl_path";s:9:"WSDL Path";s:19:"sort_by_this_column";s:19:"Sort by this column";s:14:"sorting_header";s:20:"Content Item Sorting";s:19:"sorting_info_manual";s:136:"Content items can be arranged manually in a preferred order. Additionallyi, please define the standard sorting settings for new objects.";s:18:"sorting_info_title";s:72:"Content items are arranged automatically by title in alphabetical order.";s:21:"sorting_manual_header";s:8:"Manually";s:12:"sorting_save";s:12:"Save Sorting";s:20:"sorting_title_header";s:28:"Titles in Alphabetical Order";s:6:"spacer";s:6:"Spacer";s:7:"spl_add";s:24:"Add Question Pool Survey";s:7:"spl_new";s:24:"New Question Pool Survey";s:3:"spl";s:20:"Question Pool Survey";s:3:"ssl";s:11:"SSL (HTTPS)";s:15:"standard_fields";s:15:"Standard Fields";s:9:"startpage";s:16:"ILIAS Login Page";s:13:"stat_selected";s:8:"Selected";s:9:"statistic";s:9:"Statistic";s:10:"statistics";s:10:"Statistics";s:20:"status_no_permission";s:21:"No permission granted";s:6:"status";s:6:"Status";s:4:"step";s:4:"Step";s:6:"street";s:6:"Street";s:9:"structure";s:9:"Structure";s:3:"sty";s:5:"Style";s:19:"sub_request_deleted";s:26:"Deleted membership request";s:17:"sub_request_saved";s:24:"Saved membership request";s:7:"subject";s:7:"Subject";s:6:"submit";s:6:"Submit";s:10:"subobjects";s:11:"Sub-objects";s:12:"subscription";s:12:"Subscription";s:7:"subtabs";s:7:"SubTabs";s:15:"success_message";s:15:"Success Message";s:7:"summary";s:7:"Summary";s:26:"sure_delete_selected_users";s:52:"Are you sure you want to delete the selected user(s)";s:15:"survey_defaults";s:28:"Default Settings for Surveys";s:27:"survey_unlimited_invitation";s:20:"Unlimited Invitation";s:7:"svy_add";s:10:"Add survey";s:12:"svy_finished";s:29:"You have completed the survey";s:7:"svy_new";s:10:"New survey";s:16:"svy_not_finished";s:37:"The survey has not been completed yet";s:15:"svy_not_started";s:36:"You did not take part in this survey";s:7:"svy_run";s:3:"Run";s:31:"svy_warning_survey_not_complete";s:24:"The survey is incomplete";s:3:"svy";s:6:"Survey";s:12:"system_check";s:12:"System Check";s:18:"system_information";s:18:"System Information";s:15:"system_language";s:15:"System Language";s:13:"system_styles";s:13:"System Styles";s:6:"system";s:6:"System";s:16:"systemcheck_cron";s:32:"Process System Check in Cron Job";s:20:"systemcheck_cronform";s:38:"Activation of System Check in Cron Job";s:17:"table_mail_import";s:11:"Mail import";s:4:"tabs";s:4:"Tabs";s:15:"tagging_my_tags";s:7:"My Tags";s:24:"take_over_structure_info";s:116:"If activated, directories in the zip file will be mapped to categories or, if used in groups or courses, to folders.";s:19:"take_over_structure";s:15:"Adopt Structure";s:6:"target";s:6:"Target";s:7:"tax_add";s:12:"Add Taxonomy";s:7:"tax_new";s:12:"New Taxonomy";s:3:"tax";s:8:"Taxonomy";s:4:"term";s:4:"Term";s:4:"test";s:4:"Test";s:5:"tests";s:5:"Tests";s:7:"textbox";s:7:"Textbox";s:6:"thread";s:6:"Thread";s:9:"thumbnail";s:9:"Thumbnail";s:38:"time_limit_add_time_limit_for_selected";s:51:"Please enter a time period for the selected user(s)";s:15:"time_limit_from";s:17:"From (time limit)";s:18:"time_limit_message";s:20:"Message (time limit)";s:28:"time_limit_no_users_selected";s:21:"Please select a user.";s:20:"time_limit_not_valid";s:24:"The period is not valid.";s:16:"time_limit_owner";s:18:"Owner (time limit)";s:18:"time_limit_reached";s:32:"Your user account is not active.";s:20:"time_limit_unlimited";s:22:"Unlimited (time limit)";s:16:"time_limit_until";s:18:"Until (time limit)";s:10:"time_limit";s:6:"Access";s:4:"time";s:4:"Time";s:14:"title_required";s:22:"Please insert a title.";s:5:"title";s:5:"Title";s:14:"to_client_list";s:16:"Client Selection";s:2:"to";s:2:"To";s:5:"today";s:5:"Today";s:19:"toggleGlobalDefault";s:21:"Toggle Global Default";s:17:"toggleGlobalFixed";s:19:"Toggle Global Fixed";s:8:"tomorrow";s:8:"Tomorrow";s:5:"total";s:5:"Total";s:17:"tracking_settings";s:26:"Learning Progress Settings";s:11:"translation";s:11:"Translation";s:5:"trash";s:5:"Trash";s:10:"tree_frame";s:10:"Tree Frame";s:4:"tree";s:4:"Tree";s:8:"treeview";s:12:"Show Sidebar";s:7:"tst_add";s:8:"Add test";s:7:"tst_new";s:8:"New test";s:7:"tst_run";s:3:"Run";s:26:"tst_statistical_evaluation";s:10:"Statistics";s:14:"tst_statistics";s:10:"Statistics";s:11:"tst_results";s:12:"Test Results";s:20:"tst_user_not_invited";s:39:"You are not supposed to take this test.";s:29:"tst_warning_test_not_complete";s:25:"The test is not complete!";s:3:"tst";s:4:"Test";s:6:"tutors";s:6:"Tutors";s:24:"txt_registered_passw_gen";s:109:"You successfully registered to ILIAS. You should receive an e-Mail including your generated password shortly.";s:14:"txt_registered";s:112:"You successfully registered to ILIAS. Please click on the button below to login to ILIAS with your user account.";s:13:"txt_submitted";s:228:"You successfully submitted an account request to ILIAS. Your account request will be reviewed by the system administrators, and should be activated within 48 hours. You will not be able to log in until your account is activated.";s:3:"typ";s:22:"Object Type Definition";s:4:"type";s:4:"Type";s:15:"udf_added_field";s:16:"Added new field.";s:15:"udf_delete_sure";s:71:"Are you sure you want to delete this field and all assigned user data ?";s:21:"udf_duplicate_entries";s:29:"The values have to be unique.";s:17:"udf_field_deleted";s:14:"Deleted field.";s:23:"udf_name_already_exists";s:63:"This field name already exists. Please choose a different name.";s:31:"udf_required_requires_visib_reg";s:84:"When field is set to ‘required’, it must be set to ‘visible in registration’";s:13:"udf_type_date";s:4:"Date";s:17:"udf_type_datetime";s:13:"Date and Time";s:15:"udf_type_select";s:30:"Selection List (Single Choice)";s:13:"udf_type_text";s:21:"Text Field (One Line)";s:16:"udf_type_wysiwyg";s:19:"Text Area (WYSIWYG)";s:23:"udf_update_select_field";s:15:"Edit Select Box";s:21:"udf_update_text_field";s:15:"Edit Text Field";s:24:"udf_update_wysiwyg_field";s:30:"Edit Text Area (WYSIWYG) Field";s:3:"uid";s:3:"UID";s:22:"ums_create_new_account";s:18:"Create New Account";s:17:"ums_explanation_2";s:65:"If this is not your account, please hit ‘Create New Account’.";s:17:"ums_explanation_3";s:198:"Your external account could not be mapped to an ILIAS account. But ILIAS has found multiple accounts with your e-mail address. If one of those is your account, please login with your ILIAS password.";s:17:"ums_explanation_4";s:69:"If none of them is your account, please hit ‘Create New Account’.";s:15:"ums_explanation";s:183:"Your external account could not be mapped to an ILIAS account. But ILIAS has found an account with your e-mail address. If this is your account, please login with your ILIAS password.";s:15:"unambiguousness";s:19:"Distinguishing Mark";s:11:"uncheck_all";s:11:"Uncheck all";s:9:"unchecked";s:9:"Unchecked";s:9:"uninstall";s:9:"Uninstall";s:11:"uninstalled";s:12:"uninstalled.";s:7:"unknown";s:7:"UNKNOWN";s:6:"unread";s:6:"Unread";s:5:"unzip";s:5:"Unzip";s:2:"up";s:2:"Up";s:14:"update_applied";s:14:"Update Applied";s:15:"update_language";s:15:"Update Language";s:18:"update_on_conflict";s:18:"Update on conflict";s:6:"update";s:4:"Edit";s:27:"upload_error_file_not_found";s:29:"Upload error: File not found.";s:6:"upload";s:6:"Upload";s:20:"uploaded_and_checked";s:71:"The file has been uploaded and checked, you can now start to import it.";s:3:"uri";s:3:"URI";s:13:"url_not_found";s:14:"File Not Found";s:12:"url_to_latex";s:23:"URL to LaTeX CGI script";s:3:"url";s:3:"URL";s:27:"use_customized_instructions";s:28:"Use customized instructions:";s:24:"use_default_instructions";s:25:"Use default instructions.";s:14:"user_activated";s:22:"User has been approved";s:10:"user_added";s:10:"User added";s:15:"user_assignment";s:15:"User Assignment";s:22:"user_cant_receive_mail";s:52:"%1$s – user is not allowed to use the mail system.";s:12:"user_comment";s:12:"User comment";s:16:"user_deactivated";s:25:"User has been disapproved";s:19:"user_defined_fields";s:13:"Custom Fields";s:17:"user_defined_list";s:23:"Custom User Data Fields";s:12:"user_deleted";s:12:"User deleted";s:11:"user_detail";s:11:"Detail Data";s:21:"user_ext_account_desc";s:84:"Account used for external authentication. (CAS, SOAP, LDAP or Radius authentication)";s:16:"user_ext_account";s:16:"External Account";s:10:"user_image";s:10:"User Image";s:18:"user_import_failed";s:19:"User import failed.";s:27:"user_imported_with_warnings";s:35:"User import complete with warnings.";s:13:"user_imported";s:21:"User import complete.";s:13:"user_language";s:13:"User Language";s:26:"user_new_account_mail_desc";s:190:"This mail is sent automatically to users that have self-registered or to those who have been registered by an administrator with enabled setting ‘Send mail to inform user about changes’.";s:21:"user_new_account_mail";s:16:"New Account Mail";s:14:"user_not_known";s:31:"Please insert a valid username.";s:18:"user_profile_other";s:17:"Other Information";s:26:"user_send_new_account_mail";s:23:"Send new account e-mail";s:11:"user_status";s:11:"User Status";s:16:"user_toggle_noti";s:48:"Member is not allowed to deactivate notification";s:4:"user";s:4:"User";s:8:"userdata";s:9:"User Data";s:21:"userfolder_export_csv";s:22:"Comma Separated Values";s:27:"userfolder_export_excel_x86";s:15:"Microsoft Excel";s:27:"userfolder_export_file_size";s:9:"File size";s:22:"userfolder_export_file";s:4:"File";s:23:"userfolder_export_files";s:5:"Files";s:21:"userfolder_export_xml";s:3:"XML";s:8:"username";s:8:"Username";s:18:"users_not_imported";s:71:"The following users do not exist, their messages cannot become imported";s:12:"users_online";s:12:"Active Users";s:5:"users";s:5:"Users";s:15:"usr_active_only";s:17:"Active Users only";s:7:"usr_add";s:8:"Add User";s:13:"usr_agreement";s:16:"Terms of Service";s:8:"usr_edit";s:9:"Edit User";s:23:"usr_filter_coursemember";s:16:"Member of course";s:22:"usr_filter_groupmember";s:15:"Member of group";s:20:"usr_filter_lastlogin";s:18:"Last login of user";s:15:"usr_filter_role";s:13:"Assigned role";s:17:"usr_inactive_only";s:19:"Inactive Users only";s:23:"usr_limited_access_only";s:30:"Users with limited access only";s:7:"usr_new";s:8:"New User";s:32:"usr_settings_explanation_profile";s:388:"Check ‘Visible’ to show fields in the registration form and personal settings. Check ‘Changeable’ to allow the user to change the values. Please note that visible fields can always be entered in the registration form. Required fields are required in the registration form and the personal settings. All data can be changed in the user administration independent on these settings.";s:27:"usr_settings_header_profile";s:25:"Standard User Data Fields";s:18:"usr_settings_saved";s:40:"Global user settings saved successfully!";s:22:"usr_settings_visib_lua";s:36:"Visible in Local User Administration";s:27:"usr_settings_changeable_lua";s:39:"Changeable in Local User Administration";s:14:"usr_skin_style";s:12:"Skin / Style";s:19:"usr_without_courses";s:30:"Users without courses assigned";s:3:"usr";s:4:"User";s:4:"usrf";s:13:"User accounts";s:24:"usrimport_action_ignored";s:20:"Ignored action %1$s.";s:25:"usrimport_action_replaced";s:29:"Replaced action %1$s by %2$s.";s:27:"usrimport_form_not_evaluabe";s:31:"The form data couldn\'t be read.";s:26:"usrimport_wrong_file_count";s:50:"Too many files in import-folder. Please try again.";s:21:"usrimport_cant_delete";s:60:"Can\'t perform ‘Delete’ action. No such user in database.";s:21:"usrimport_cant_insert";s:63:"Can\'t perform ‘Insert’ action. User is already in database.";s:21:"usrimport_cant_update";s:60:"Can\'t perform ‘Update’ action. No such user in database.";s:32:"usrimport_conflict_handling_info";s:456:"When ‘Ignore on conflict’ is selected, ILIAS ignores an action, if it can not be performed (e. g. an ‘Insert’ action is not done, if there is already a user with the same login in the database.) When ‘Update on conflict’ is selected, ILIAS updates the database if an action can not be performed. (e. g. an ‘Insert’ action is replaced by an ‘Update’ action and the other way around, if a user with the same login exists in the database).";s:41:"usrimport_global_role_for_action_required";s:61:"At least one global role must be specified for "%1$s" action.";s:21:"usrimport_ignore_role";s:11:"Ignore role";s:29:"usrimport_login_is_not_unique";s:20:"Login is not unique.";s:38:"usrimport_no_insert_ext_account_exists";s:67:"Can\'t perform ‘Insert’ action. External account already exists.";s:38:"usrimport_no_update_ext_account_exists";s:67:"Can\'t perform ‘Update’ action. External account already exists.";s:43:"usrimport_with_specified_role_not_permitted";s:41:"Import with specified role not permitted.";s:31:"usrimport_xml_attribute_missing";s:46:"Attribute "%2$s" in element "%1$s" is missing.";s:37:"usrimport_xml_attribute_value_illegal";s:62:"Value "%3$s" of attribute "%2$s" in element "%1$s" is illegal.";s:42:"usrimport_xml_attribute_value_inapplicable";s:85:"Value "%3$s" of attribute "%2$s" in element "%1$s" is inapplicable for "%4$s" action.";s:37:"usrimport_xml_element_content_illegal";s:44:"Content "%2$s" of element "%1$s" is illegal.";s:41:"usrimport_xml_element_for_action_required";s:51:"Element "%1$s" must be specified for "%2$s" action.";s:34:"usrimport_xml_element_inapplicable";s:49:"Element "%1$s" is inapplicable for "%2$s" action.";s:5:"valid";s:5:"Valid";s:8:"validate";s:8:"Validate";s:5:"value";s:5:"Value";s:14:"vcard_download";s:22:"Download Visiting Card";s:5:"vcard";s:13:"Visiting Card";s:19:"verification_failed";s:19:"Verification failed";s:24:"verification_failure_log";s:24:"Verification failure log";s:24:"verification_warning_log";s:24:"Verification warning log";s:7:"version";s:7:"Version";s:8:"versions";s:8:"Versions";s:12:"view_content";s:12:"View Content";s:4:"view";s:4:"View";s:20:"visible_registration";s:23:"Visible in Registration";s:7:"visible";s:7:"Visible";s:7:"visitor";s:7:"Visitor";s:8:"visitors";s:8:"Visitors";s:6:"visits";s:6:"Visits";s:13:"web_resources";s:8:"Weblinks";s:6:"webdav";s:6:"WebDAV";s:28:"webdav_forbidden_chars_title";s:104:"Following files cannot be displayed, because they contain one or more forbidden characters (\\<>/:*?"|#):";s:31:"webdav_duplicate_detected_title";s:103:"Following objects could not be displayed, because an object with the same Title is already being shown:";s:29:"webdav_problem_info_duplicate";s:53:"There is a file with the same title as the info file.";s:29:"webdav_problem_free_container";s:59:"There are no objects that cause problems in this container.";s:24:"webdav_enable_versioning";s:15:"File Versioning";s:22:"webdav_versioning_info";s:88:"If enabled, already existing files will get a new version instead of beeing overwritten.";s:33:"webdav_add_instructions_btn_label";s:31:"Add Mount Instructions Document";s:30:"webdav_docs_mount_instructions";s:28:"Mount Instructions Documents";s:23:"webdav_general_settings";s:16:"General Settings";s:20:"webdav_form_document";s:21:"Instructions Document";s:25:"webdav_form_document_info";s:111:"Upload a txt or an html file here. After the upload the file will be parsed and processed. For more information";s:26:"webdav_form_document_title";s:5:"Title";s:31:"webdav_form_document_title_info";s:92:"This title will be dislayed as the title of the modal when the Mount Instructions are opened";s:24:"webdav_form_new_doc_head";s:38:"Create new Mount Instructions Document";s:25:"webdav_form_edit_doc_head";s:32:"Edit Mount Instructions Document";s:25:"webdav_mount_instructions";s:18:"Mount Instructions";s:30:"webdav_sure_delete_documents_s";s:80:"Are you sure you want to delete the Mount Instructions with the following title:";s:21:"webdav_tbl_docs_title";s:42:"List of uploaded WebDAV Mount Instructions";s:26:"webdav_tbl_docs_head_title";s:14:"Dokument title";s:26:"webdav_upload_instructions";s:19:"Upload Instructions";s:35:"webdav_chosen_language_already_used";s:69:"There already is another document associated with the chosen language";s:19:"webdav_missing_lang";s:60:"There is no english version of the WebDAV Mount Instructions";s:17:"webdav_doc_delete";s:32:"Delete WebDav Mount Instructions";s:18:"webfolder_dir_info";s:122:"You got here, because your browser can\'t open webfolders. Read the instructions for opening webfolders.";s:18:"webfolder_index_of";s:13:"Index of %1$s";s:27:"webfolder_instructions_info";s:458:"The webfolder instructions are shown on browsers, which can not open a webfolder directly. You can use HTML code, and the following placeholders: [WEBFOLDER_TITLE], [WEBFOLDER_URI], [WEBFOLDER_URI], [WEBFOLDER_URI_KONQUEROR], [WEBFOLDER_URI_NAUTILUS], [ADMIN_MAIL], [WINDOWS]...[/WINDOWS], [MAC]...[/MAC], [LINUX]...[/LINUX]. Clear the field to get the default instructions.";s:27:"webfolder_instructions_text";s:2069:"[WINDOWS]

Instructions for connecting with Windows

  1. Open Windows-Explorer (e.g. key combination Windows + E).
  2. Rightclick on "This PC" and select "Map network drive...".
  3. Enter the following address as address (you may copy and paste the URL):

    [WEBFOLDER_URI]

  4. Click "Finish".
  5. Enter your login and password, and select "OK".
  6. You can now access the webfolder from the start menu "Computer".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/WINDOWS] [MAC]

Instructions for Mac OS X

  1. Open the Finder.
  2. Choose the menu \'Goto to > Connect to server...\'.
    This opens the window \'connect to server\'.
  3. Enter this URL as server URL:
    [WEBFOLDER_URI]
    und click on \'Connect\'.
  4. Enter your login and password, and select "OK".

Your login and password is identical to your local ILIAS login and can be changed via "Personal Settings".[/MAC][LINUX]

Instructions for Linux with Konqueror

  1. Open Konqueror Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_KONQUEROR]
    and press enter.
  3. Enter your login and password, and select "OK".

Instructions for Linux with Nautilus

  1. Open Nautilus Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_NAUTILUS]
    and press enter.
  3. Enter your login and password, and select "OK".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/LINUX]

Tips & Support

  • These steps need to be done only once. You may access your connection again later.
  • Connect to a higher folder. You can always navigate down the tree, but nut upwards.
  • If your computer can not open the WebDAV Connection, please contact ILIAS Support.
";s:32:"webfolder_instructions_titletext";s:17:"Open as webfolder";s:22:"webfolder_instructions";s:22:"Webfolder instructions";s:24:"webfolder_mount_dir_with";s:167:"Open this page as a Webfolder with Internet Explorer 6, Konqueror, Nautilus, other Browser.";s:11:"webr_active";s:6:"Active";s:8:"webr_add";s:11:"Add Weblink";s:18:"webr_deleted_items";s:19:"Deleted Weblink(s).";s:18:"webr_disable_check";s:18:"Disable Validation";s:9:"webr_edit";s:12:"Edit Weblink";s:21:"webr_last_check_table";s:11:"Last check:";s:22:"webr_sure_delete_items";s:54:"Do you really want to delete the following Weblink(s)?";s:4:"webr";s:7:"Weblink";s:11:"webservices";s:4:"SOAP";s:4:"week";s:4:"Week";s:6:"weekly";s:6:"weekly";s:5:"weeks";s:5:"Weeks";s:7:"welcome";s:7:"Welcome";s:5:"width";s:5:"Width";s:8:"wiki_add";s:8:"Add Wiki";s:8:"wiki_new";s:8:"New Wiki";s:4:"wiki";s:4:"Wiki";s:4:"with";s:4:"with";s:18:"wizard_search_list";s:67:"Your search produced the following hits. Please select one of them.";s:17:"wizard_title_info";s:148:"Search for the object you want to duplicate. Please enter the object\'s title or a part of it and click on \'Continue\' to get matching search results.";s:5:"write";s:5:"Write";s:17:"wrong_ip_detected";s:142:"Your access is denied because of a wrong client ip.
You are currently using this IP address: %s
Please contact the system administrator.";s:4:"year";s:4:"Year";s:5:"years";s:5:"Years";s:3:"yes";s:3:"Yes";s:9:"yesterday";s:9:"Yesterday";s:19:"zip_structure_error";s:49:"Archive contains same file names. Upload aborted.";s:15:"zip_test_failed";s:56:"Zip-Test failed. Please contact you ILIAS administrator.";s:3:"zip";s:8:"Zip Code";s:7:"zipcode";s:8:"Zip Code";s:10:"page_count";s:10:"Page Count";s:14:"db_need_hotfix";s:70:"Hotfix available. Please open »Setup!";s:14:"session_config";s:16:"Session Settings";s:35:"session_config_maintenance_disabled";s:33:"Maintenance by client not allowed";s:17:"session_max_count";s:19:"Max active sessions";s:22:"session_max_count_info";s:120:"Defines the maximum number of sessions that can be created simultaneously. Setting this to ‘0’ disables the feature.";s:16:"session_min_idle";s:29:"Min session idle (in minutes)";s:21:"session_min_idle_info";s:188:"When a user idles for at least this period of time the session can be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.";s:16:"session_max_idle";s:29:"Max session idle (in minutes)";s:21:"session_max_idle_info";s:83:"Defines the maximum period of idle time a user can idle before his session expires.";s:36:"session_max_idle_after_first_request";s:49:"Max session idle after first request (in minutes)";s:41:"session_max_idle_after_first_request_info";s:203:"All sessions that idles for at least this period of time after first request will be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.";s:21:"reached_session_limit";s:61:"The limit of online users is reached. Please try again later.";s:32:"mail_to_global_roles_not_allowed";s:54:"%1$s (it is not allowed to send mails to global roles)";s:29:"delete_inactive_user_accounts";s:50:"Delete user accounts with no login for a long time";s:34:"delete_inactive_user_accounts_desc";s:84:"If enabled, user accounts will be deleted depending on the date of their last login.";s:36:"delete_inactive_user_accounts_period";s:28:"Days passed since last login";s:41:"delete_inactive_user_accounts_period_desc";s:96:"All user accounts without login within the defined number of days will be deleted automatically.";s:43:"delete_inactive_user_accounts_include_roles";s:16:"Considered roles";s:48:"delete_inactive_user_accounts_include_roles_desc";s:114:"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.";s:15:"update_orgunits";s:36:"Update assigned organisational units";s:20:"update_orgunits_desc";s:83:"If enabled, the field \'Organisational Units\' will be updated for all user accounts.";s:32:"delete_inactivated_user_accounts";s:32:"Delete inactivated user accounts";s:37:"delete_inactivated_user_accounts_desc";s:75:"If enabled, user accounts will be deleted %s days after their inactivation.";s:39:"delete_inactivated_user_accounts_period";s:30:"Days passed since inactivation";s:44:"delete_inactivated_user_accounts_period_desc";s:78:"Accounts will be deleted if this number of days has passed since inactivation.";s:46:"delete_inactivated_user_accounts_include_roles";s:16:"Considered roles";s:51:"delete_inactivated_user_accounts_include_roles_desc";s:114:"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.";s:8:"obj_frma";s:5:"Forum";s:13:"obj_frma_desc";s:21:"Global Forum Settings";s:10:"backto_lua";s:33:"Back to Local User Administration";s:19:"sort_inherit_prefix";s:7:"Default";s:20:"sorting_info_inherit";s:55:"The sorting mode is adopted from a parent course/group.";s:11:"sel_country";s:7:"Country";s:8:"obj_book";s:12:"Booking Pool";s:9:"objs_book";s:13:"Booking Pools";s:17:"country_selection";s:29:"Country (Drop Down Selection)";s:17:"country_free_text";s:25:"Country (Free Text Input)";s:20:"optional_filter_hint";s:44:"Please activate one of the optional filters.";s:19:"sess_fixed_duration";s:22:"Fixed Session Duration";s:36:"sess_load_dependent_session_handling";s:31:"Load Dependent Session Handling";s:9:"sess_mode";s:12:"Session Mode";s:18:"cronjob_last_start";s:26:"Last Start of the Cron Job";s:30:"enable_disk_quota_summary_mail";s:23:"Send Disk Quota Summary";s:35:"enable_disk_quota_summary_mail_desc";s:99:"The disk quota summary is a daily notification containing all users, who exceeded their disk quota.";s:23:"disk_quota_summary_rctp";s:10:"Recipients";s:28:"disk_quota_summary_rctp_desc";s:133:"Enter the user names (comma-separated) of those users who shall receive a daily report with users currently exceeding the disk quota.";s:28:"disk_quota_exceeded_headline";s:51:"The following users have exceeded their disk quota:";s:17:"usrf_profile_link";s:20:"Link to user profile";s:25:"currently_used_disk_space";s:25:"Currently used disk space";s:26:"disk_quota_summary_subject";s:30:"Summary of Exceeded Disk Quota";s:26:"cronjob_last_start_unknown";s:13:"Indeterminate";s:30:"cron_mail_notification_message";s:41:"Send Mail Notifications with Mail-Message";s:35:"cron_mail_notification_message_info";s:89:"If enabled, all users will get notifications with complete mail message by external mail.";s:25:"follow_link_to_read_mails";s:45:"click the following link to read these mails:";s:31:"mails_at_the_ilias_installation";s:58:"You received %1$s new mails at the ILIAS-Installation %2$s";s:30:"mail_at_the_ilias_installation";s:57:"You received %1$s new mail at the ILIAS-Installation %2$s";s:22:"webdav_pwd_instruction";s:147:"We suggest to create a local password for opening the repository as webfolder.
This password is only required for the webfolder functionality.";s:30:"webdav_pwd_instruction_success";s:84:"A new local password has been created. You can now open the repository as webfolder.";s:22:"err_auth_apache_failed";s:107:"The authentication has failed. Maybe you have no valid user certificate or your smart card is not inserted.";s:21:"nr_following_sessions";s:27:"%1d following session(s)...";s:7:"obj_ass";s:5:"Asset";s:26:"enable_anonymous_fora_desc";s:104:"If this option is disabled, the feature ‘Posting with pseudonym’ is not available in forums anymore.";s:21:"enable_anonymous_fora";s:28:"Allow posting with pseudonym";s:8:"obj_wfld";s:6:"Folder";s:8:"obj_blog";s:4:"Blog";s:29:"preconditions_obligatory_hint";s:54:"You have to fulfill all of the following preconditions";s:27:"preconditions_optional_hint";s:60:"You have to fulfill %s of the following preconditions";s:10:"glo_import";s:15:"Import Glossary";s:13:"rep_main_page";s:4:"Home";s:17:"personal_settings";s:8:"Settings";s:20:"show_hidden_sections";s:29:"Show More Information »";s:21:"hide_visible_sections";s:29:"Hide More Information »";s:18:"tst_edit_questions";s:14:"Edit Questions";s:5:"first";s:5:"First";s:6:"behind";s:6:"Behind";s:33:"enable_course_group_notifications";s:37:"Daily Mail for Groups and Course News";s:38:"enable_course_group_notifications_desc";s:66:"If enabled, Participants can subscribe to a daily summary of news.";s:6:"saving";s:9:"Saving...";s:14:"user_not_found";s:14:"User not found";s:20:"cont_iim_create_info";s:63:"Please upload the background picture for the interactive image.";s:21:"cont_iim_overlay_info";s:187:"Overlay images are used to alter (e.g. highlight) parts of the background image when the mouse hovers over them. After uploading the images, you can select them in the ‘Triggers’ tab.";s:28:"cont_iim_content_popups_info";s:195:"Content popups appear, when the user clicks on interactive parts of the background image. On this screen you only define the popups. Their content can be edited on the editing screen of the page.";s:19:"file_upload_pending";s:12:"Pending file";s:6:"yearly";s:6:"yearly";s:22:"allow_user_toggle_noti";s:44:"Member is allowed to deactivate notification";s:20:"usr_account_inactive";s:16:"Inactive Account";s:9:"portfolio";s:9:"Portfolio";s:8:"obj_skmg";s:21:"Competence Management";s:13:"obj_skmg_desc";s:45:"Manage competences and competence categories.";s:6:"skills";s:11:"Competences";s:17:"exc_next_deadline";s:13:"Next Deadline";s:20:"password_allow_chars";s:17:"Allowed chars: %s";s:9:"objs_chtr";s:9:"Chat Room";s:8:"obj_chta";s:9:"Chat Room";s:8:"obj_chtr";s:9:"Chat Room";s:24:"password_multiple_errors";s:36:"Multiple criteria are not satisfied:";s:31:"password_contains_invalid_chars";s:40:"The password contains invalid characters";s:6:"notice";s:6:"Notice";s:11:"public_room";s:11:"Public room";s:17:"my_courses_groups";s:21:"My Courses and Groups";s:25:"enable_sahs_protocol_data";s:22:"Activate Protocol Data";s:30:"enable_sahs_protocol_data_desc";s:26:"Show Protocol Data (SCORM)";s:9:"chtr_copy";s:14:"Copy Chat Room";s:30:"precondition_required_itemlist";s:21:"Required Precondition";s:19:"precondition_toggle";s:61:"Preconditions that need to be fulfilled to access this object";s:11:"top_of_page";s:11:"Top of page";s:10:"spl_import";s:27:"Import Question Pool Survey";s:12:"chta_visible";s:35:"Chat Room Administration is visible";s:9:"chta_read";s:39:"Read access to Chat Room Administration";s:10:"chta_write";s:29:"Edit Chat Room Administration";s:20:"chta_edit_permission";s:26:"Change Permission Settings";s:11:"apache_auth";s:21:"Apache Authentication";s:15:"server_disabled";s:20:"The Chat is Disabled";s:8:"continue";s:8:"continue";s:22:"ignore_required_fields";s:22:"Ignore required fields";s:27:"ignore_required_fields_info";s:174:"If activated, you can submit this form without filling out all mandatory fields. The new user has to add the missing information on the personal profile after the next login.";s:8:"obj_rcat";s:12:"ECS Category";s:16:"obj_lm_duplicate";s:20:"Copy Learning Module";s:31:"reg_goto_parent_membership_info";s:42:"Only members can access the target object.";s:14:"remove_entries";s:14:"Remove Entries";s:9:"objs_blog";s:5:"Blogs";s:18:"obj_blog_duplicate";s:9:"Copy Blog";s:7:"obj_dcl";s:15:"Data Collection";s:8:"objs_dcl";s:16:"Data Collections";s:17:"obj_dcl_duplicate";s:20:"Copy Data Collection";s:18:"shib_matriculation";s:34:"Attribute for Matriculation Number";s:20:"soap_connect_timeout";s:18:"Connection Timeout";s:25:"soap_connect_timeout_info";s:90:"The maximum time in seconds until a connect attempt to the SOAP-Webservice is interrupted.";s:17:"obj_mep_duplicate";s:15:"Copy Media Pool";s:18:"obj_mcst_duplicate";s:14:"Copy Mediacast";s:17:"obj_glo_duplicate";s:13:"Copy Glossary";s:18:"obj_htlm_duplicate";s:25:"Copy HTML Learning Module";s:18:"obj_wiki_duplicate";s:9:"Copy Wiki";s:18:"obj_sahs_duplicate";s:20:"Copy Learning Module";s:8:"obj_poll";s:4:"Poll";s:9:"objs_poll";s:5:"Polls";s:18:"obj_poll_dupliate:";s:9:"Copy Poll";s:11:"mail_member";s:14:"Mail to Member";s:7:"imprint";s:12:"Legal Notice";s:18:"crs_list_reg_start";s:18:"Registration Begin";s:16:"crs_list_reg_end";s:16:"Registration End";s:18:"crs_list_reg_noreg";s:24:"No Registration Possible";s:19:"crs_list_reg_period";s:19:"Registration Period";s:12:"crs_list_reg";s:12:"Registration";s:23:"crs_list_reg_limit_full";s:14:"No places left";s:25:"crs_list_reg_limit_places";s:11:"Free places";s:13:"obj_hlps_desc";s:28:"Settings for the online help";s:8:"obj_hlps";s:11:"Help System";s:18:"grp_list_reg_start";s:18:"Registration Begin";s:16:"grp_list_reg_end";s:16:"Registration End";s:18:"grp_list_reg_noreg";s:24:"No Registration Possible";s:19:"grp_list_reg_period";s:19:"Registration Period";s:12:"grp_list_reg";s:12:"Registration";s:23:"grp_list_reg_limit_full";s:14:"No places left";s:25:"grp_list_reg_limit_places";s:11:"Free places";s:9:"add_entry";s:14:"Add/Edit entry";s:18:"obj_poll_duplicate";s:9:"Copy Poll";s:9:"objs_rcat";s:14:"ECS Categories";s:8:"obj_itgr";s:10:"Item Group";s:9:"objs_itgr";s:11:"Item Groups";s:8:"itgr_new";s:14:"New Item Group";s:8:"itgr_add";s:14:"Add Item Group";s:15:"search_globally";s:8:"Globally";s:26:"search_at_current_position";s:19:"At Current Position";s:8:"obj_rwik";s:8:"ECS Wiki";s:9:"objs_rwik";s:9:"ECS Wikis";s:7:"obj_rlm";s:19:"ECS Learning Module";s:8:"objs_rlm";s:20:"ECS Learning Modules";s:8:"obj_rglo";s:12:"ECS Glossary";s:9:"objs_rglo";s:14:"ECS Glossaries";s:8:"obj_rfil";s:8:"ECS File";s:9:"objs_rfil";s:9:"ECS Files";s:8:"obj_rgrp";s:9:"ECS Group";s:9:"objs_rgrp";s:10:"ECS Groups";s:8:"obj_tstv";s:16:"Test Certificate";s:8:"obj_excv";s:20:"Exercise Certificate";s:8:"obj_prtf";s:9:"Portfolio";s:8:"obj_rtst";s:8:"ECS Test";s:9:"objs_rtst";s:9:"ECS Tests";s:25:"obj_tool_setting_calendar";s:8:"Calendar";s:8:"fm_start";s:22:"Open With File Manager";s:19:"il_blog_contributor";s:11:"Blog Author";s:8:"qpl_copy";s:23:"Copy Question Pool Test";s:16:"edit_assignments";s:16:"Edit Assignments";s:21:"obj_tool_setting_news";s:4:"News";s:8:"obj_ecss";s:3:"ECS";s:13:"obj_ecss_desc";s:20:"General ECS Settings";s:9:"edited_on";s:9:"Edited on";s:12:"obj_tos_desc";s:25:"Terms of Service Settings";s:7:"obj_tos";s:16:"Terms of Service";s:8:"obj_bibl";s:12:"Bibliography";s:9:"objs_bibl";s:14:"Bibliographies";s:8:"obj_bibs";s:12:"Bibliography";s:13:"obj_bibs_desc";s:27:"Bibliography Administration";s:16:"hide_all_details";s:16:"Hide all details";s:16:"show_all_details";s:16:"Show all details";s:26:"select_files_from_computer";s:12:"Select Files";s:15:"drag_files_here";s:29:"Drag-and-drop your files here";s:14:"drag_file_here";s:28:"Drag-and-drop your file here";s:14:"selected_files";s:14:"Selected files";s:21:"num_of_selected_files";s:19:"%s file(s) selected";s:18:"cancel_file_upload";s:49:"Do you really want to cancel all pending uploads?";s:12:"upload_files";s:12:"Upload files";s:18:"upload_files_title";s:12:"Upload files";s:14:"upload_pending";s:7:"Pending";s:26:"error_empty_file_or_folder";s:43:"The file size is 0 bytes or it is a folder.";s:27:"error_upload_was_zero_bytes";s:131:"The upload failed as this is a folder, the file size is 0 bytes or exceeded the max. upload size or the file was renamed meanwhile.";s:9:"uploading";s:12:"Uploading...";s:10:"extracting";s:13:"Extracting...";s:27:"drop_files_on_repo_obj_info";s:52:"Drop the files here to upload them into this object.";s:23:"error_extraction_failed";s:158:"The extraction of the archive and its directories failed. Probably because you don’t have the permission to create folders or categories within this object.";s:15:"upload_settings";s:15:"Upload Settings";s:17:"enable_dnd_upload";s:27:"Enable drag-and-drop upload";s:22:"enable_dnd_upload_info";s:76:"Files can be uploaded with drag-and-drop from the local computer if enabled.";s:28:"enable_repository_dnd_upload";s:20:"Enable in Repository";s:33:"enable_repository_dnd_upload_info";s:140:"Enables that files can be dragged from the computer directly onto an object in the repository to start uploading the files into this object.";s:18:"concurrent_uploads";s:28:"Number of concurrent uploads";s:23:"concurrent_uploads_info";s:85:"Defines the number of files that can be uploaded per upload process at the same time.";s:13:"download_link";s:13:"Download Link";s:28:"file_confirm_delete_versions";s:51:"Are you sure to delete the following file versions?";s:32:"file_confirm_delete_all_versions";s:96:"You selected all file versions. This will delete the whole file object. Do you want to continue?";s:21:"file_versions_deleted";s:53:"The selected file versions were successfully deleted.";s:30:"file_rollback_select_exact_one";s:69:"Only one file version can be selected to make it the current version.";s:18:"file_rollback_done";s:43:"File version %s is now the current version.";s:24:"file_version_new_version";s:11:"New version";s:19:"file_version_create";s:15:"Initial version";s:20:"file_version_replace";s:21:"All versions replaced";s:21:"file_version_rollback";s:30:"Rollback to version %s from %s";s:13:"file_rollback";s:29:"Make this the current version";s:10:"frm_import";s:12:"Import Forum";s:18:"rpc_pdf_generation";s:14:"PDF-Generation";s:12:"rpc_pdf_font";s:5:"Fonts";s:17:"rpc_pdf_font_info";s:139:"Additional fonts for the generation of PDF files. Other fonts than ‘Helvetica’ and ‘unifont’ must be installed on the ILIAS server.";s:8:"obj_sysc";s:12:"System Check";s:13:"obj_sysc_desc";s:29:"System Check and Repair Tools";s:7:"obj_cld";s:12:"Cloud Object";s:8:"objs_cld";s:13:"Cloud Objects";s:21:"scorm_without_session";s:47:"SCORM 2004: enable storing data without session";s:26:"scorm_without_session_info";s:141:"This ensures the storage of SCORM 2004 learning data even if ILIAS session expired. For SCORM 1.2, storage without session is always enabled.";s:19:"msg_obj_no_download";s:21:"cannot be downloaded.";s:23:"download_selected_items";s:8:"Download";s:25:"download_multiple_objects";s:25:"Download Multiple Objects";s:21:"msg_obj_perm_download";s:68:"You do not have sufficient rights to download the following objects:";s:21:"enable_multi_download";s:37:"«Download multiple objects» enabled";s:26:"enable_multi_download_info";s:84:"Enables that multiple folders/files can be selected to download them as zip archive.";s:7:"preview";s:7:"Preview";s:12:"preview_show";s:12:"Show Preview";s:12:"preview_none";s:25:"Preview (not created yet)";s:16:"preview_settings";s:12:"File Preview";s:14:"enable_preview";s:14:"Enable Preview";s:19:"enable_preview_info";s:69:"Enable this option to display preview images on supported file types.";s:23:"max_previews_per_object";s:33:"Number of preview images per file";s:28:"max_previews_per_object_info";s:71:"Defines the maximum number of preview images that are created per file.";s:14:"preview_create";s:14:"Create Preview";s:14:"preview_delete";s:14:"Delete Preview";s:23:"preview_status_creating";s:52:"The preview gets created. This may take some time...";s:23:"preview_status_deleting";s:27:"The preview gets deleted...";s:22:"preview_status_pending";s:61:"The preview has not been created yet. Please try again later.";s:21:"preview_status_failed";s:29:"Failed to create the preview.";s:22:"preview_status_missing";s:32:"No preview exists for this file.";s:15:"preview_loading";s:18:"Loading Preview...";s:24:"loaded_preview_renderers";s:24:"Loaded Preview Renderers";s:21:"renderer_type_builtin";s:8:"Built-in";s:29:"renderer_supported_repo_types";s:23:"Supported ILIAS Objects";s:29:"renderer_supported_file_types";s:20:"Supported File Types";s:26:"ghostscript_not_configured";s:134:"Ghostscript is not configured. Please open the Setup to configure it.";s:8:"obj_reps";s:10:"Repository";s:7:"obj_rep";s:10:"Repository";s:13:"obj_reps_desc";s:35:"General settings for the Repository";s:8:"obj_wbrs";s:7:"Weblink";s:13:"obj_wbrs_desc";s:30:"General settings for Web Links";s:8:"obj_crss";s:6:"Course";s:13:"obj_crss_desc";s:28:"General settings for Courses";s:8:"obj_grps";s:5:"Group";s:13:"obj_grps_desc";s:27:"General settings for Groups";s:8:"obj_prtt";s:18:"Portfolio Template";s:9:"objs_prtt";s:19:"Portfolio Templates";s:18:"obj_prtt_duplicate";s:23:"Copy Portfolio Template";s:9:"objs_orgu";s:20:"Organisational Units";s:9:"org_units";s:20:"Organisational Units";s:8:"obj_orgu";s:19:"Organisational Unit";s:20:"obj_orgu_description";s:45:"Creating and editing organisational structure";s:16:"il_orgu_superior";s:8:"Superior";s:16:"il_orgu_employee";s:8:"Employee";s:22:"view_learning_progress";s:22:"View Learning Progress";s:26:"view_learning_progress_rec";s:45:"View Learning Progress of Unit incl. Subunits";s:8:"my_staff";s:5:"Staff";s:31:"ps_password_lowercase_chars_num";s:18:"Lower Case Letters";s:36:"ps_password_lowercase_chars_num_info";s:108:"Please insert the number of lower case letters a password must contain. Enter 0 to disable this requirement.";s:31:"ps_password_uppercase_chars_num";s:15:"Capital Letters";s:36:"ps_password_uppercase_chars_num_info";s:105:"Please insert the number of capital letters a password must contain. Enter 0 to disable this requirement.";s:37:"ps_password_must_not_contain_loginame";s:28:"Prevent Username in Password";s:42:"ps_password_must_not_contain_loginame_info";s:55:"If activated, a password must not contain the username.";s:36:"password_contains_parts_of_login_err";s:73:"The chosen password contains your username. Please insert a new password.";s:33:"password_must_contain_lcase_chars";s:57:"The password must contain at least %s lower case letters.";s:33:"password_must_contain_ucase_chars";s:54:"The password must contain at least %s capital letters.";s:25:"scorm_login_as_learner_id";s:48:"SCORM 2004: set ILIAS Username as cmi.learner_id";s:30:"scorm_login_as_learner_id_info";s:74:"If enabled, the Username instead of the User ID is set for cmi.learner_id.";s:8:"obj_wiks";s:4:"Wiki";s:13:"obj_wiks_desc";s:20:"Global Wiki Settings";s:12:"offline_mode";s:11:"Use offline";s:23:"msg_obj_already_deleted";s:36:"The object has already been deleted.";s:26:"obj_tool_setting_news_info";s:68:"The ‘News’ block will be displayed inside the ‘Content’ tab.";s:30:"obj_tool_setting_calendar_info";s:92:"A calendar is available and the ‘Calendar’ block is displayed in the ‘Contents’ tab.";s:8:"obj_crsv";s:18:"Course Certificate";s:8:"obj_scov";s:17:"SCORM Certificate";s:17:"autocomplete_more";s:4:"more";s:23:"sorting_creation_header";s:16:"By Creation Date";s:21:"sorting_creation_info";s:64:"Content items are arranged automatically by their creation date.";s:17:"sorting_direction";s:17:"Sorting Direction";s:12:"sorting_desc";s:10:"Descendent";s:11:"sorting_asc";s:9:"Ascending";s:20:"il_astpl_loc_initial";s:12:"Initial Test";s:22:"il_astpl_loc_qualified";s:15:"Qualifying Test";s:25:"il_astpl_loc_initial_desc";s:74:"Settings template for initial tests of learning objective oriented courses";s:27:"il_astpl_loc_qualified_desc";s:77:"Settings template for qualifying tests of learning objective oriented courses";s:15:"ps_export_scorm";s:30:"Personal Data in Protocol Data";s:24:"enable_export_scorm_desc";s:53:"Display of Personal Data in the Protocol Data (SCORM)";s:22:"scorm_lp_auto_activate";s:37:"Default setting for learning progress";s:27:"scorm_lp_auto_activate_info";s:259:"If learning progress is activated in general, the settings for new SCORM learning modules are set to ‘Collection of SCORM Items’ and all SCOs are selected for learning progress determination. Adjustments are still possible for every SCORM learning module.";s:15:"toggle_dropdown";s:15:"Toggle Dropdown";s:21:"clientlist_clientlist";s:11:"Client List";s:28:"clientlist_available_clients";s:17:"Available Clients";s:28:"clientlist_installation_name";s:17:"Installation Name";s:24:"clientlist_public_access";s:13:"Public Access";s:16:"clientlist_login";s:5:"Login";s:21:"clientlist_start_page";s:10:"Start page";s:21:"clientlist_login_page";s:10:"Login page";s:24:"settings_for_all_members";s:38:"Members will be notified automatically";s:18:"settings_per_users";s:107:"Members are notified automatically. Deactivating notifications can be allowed for each member individually.";s:14:"il_blog_editor";s:11:"Blog Editor";s:32:"obj_tool_setting_custom_metadata";s:15:"Custom Metadata";s:37:"obj_tool_setting_custom_metadata_info";s:40:"If activated metadata can be configured.";s:20:"mem_cron_min_members";s:35:"Course/Group: Minimum Members Check";s:25:"mem_cron_min_members_info";s:69:"The administrators will be notified if the minimum number is not met.";s:13:"mem_min_users";s:16:"Minimum of Users";s:28:"buddy_allow_to_contact_me_no";s:32:"Doesn`t Receive Contact Requests";s:29:"buddy_allow_to_contact_me_yes";s:25:"Receives Contact Requests";s:11:"my_contacts";s:11:"My Contacts";s:8:"obj_cadm";s:8:"Contacts";s:13:"obj_cadm_desc";s:23:"Contacts Administration";s:26:"no_gallery_users_available";s:44:"There are currently no users in the gallery.";s:13:"obj_awra_desc";s:32:"Manage ‘Who is online?’-Tool";s:8:"obj_awra";s:25:"‘Who is online?’-Tool";s:16:"contact_sysadmin";s:25:"Contact Technical Support";s:26:"report_accessibility_issue";s:26:"Report Accessibility Issue";s:25:"report_accessibility_link";s:14:"Reported Link:";s:29:"accessibility_control_concept";s:29:"Accessibility Control Concept";s:44:"no_accessibility_control_concept_description";s:154:"There is currently no Accessibility Control Concept provided with this installation. Please contact the Accessibility Point of Contact.";s:18:"mainbar_aria_label";s:7:"Mainbar";s:18:"metabar_aria_label";s:7:"Metabar";s:22:"breadcrumbs_aria_label";s:11:"Breadcrumbs";s:8:"obj_logs";s:7:"Logging";s:13:"obj_logs_desc";s:24:"General Logging Settings";s:17:"obj_prg_duplicate";s:20:"Copy Study Programme";s:14:"obj_prg_select";s:39:"-- Please select one study programme --";s:7:"obj_prg";s:15:"Study Programme";s:8:"obj_prgs";s:16:"Study Programmes";s:13:"obj_prgs_desc";s:30:"Study Programme Administration";s:21:"prg_copy_threads_info";s:84:"Please decide which Study Program elements should be copied, linked or even omitted.";s:15:"prg_wizard_page";s:29:"Copy Study Program (Step 2/2)";s:14:"enter_new_name";s:19:"Please enter a name";s:9:"objs_prtf";s:10:"Portfolios";s:14:"grpr_edit_info";s:54:"Please choose one group for creating a new group link.";s:9:"grpr_edit";s:15:"Edit Group Link";s:8:"grpr_new";s:17:"Create Group Link";s:4:"grpr";s:10:"Group Link";s:8:"obj_grpr";s:10:"Group Link";s:9:"objs_grpr";s:11:"Group Links";s:8:"obj_bdga";s:6:"Badges";s:13:"obj_bdga_desc";s:55:"Administrate types, image templates and activity badges";s:24:"set_style_does_not_exist";s:151:"Your selected system style does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:";s:23:"set_skin_does_not_exist";s:143:"Your selected skin does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:";s:8:"obj_bgtk";s:15:"Background Task";s:8:"obj_iass";s:21:"Individual Assessment";s:9:"objs_iass";s:22:"Individual Assessments";s:18:"obj_iass_duplicate";s:26:"Copy Individual Assessment";s:15:"obj_iass_select";s:45:"-- Please select one individual assessment --";s:14:"il_iass_member";s:30:"Individual Assessment Examinee";s:8:"iass_new";s:28:"Create Individual Assessment";s:11:"iass_import";s:28:"Import Individual Assessment";s:11:"chtr_import";s:15:"Import Chatroom";s:16:"sahs_export_file";s:33:"ILIAS exported SCORM archive file";s:8:"obj_pdfg";s:14:"PDF Generation";s:13:"obj_pdfg_desc";s:36:"Options for generation PDF documents";s:20:"building_export_file";s:23:"Building Export File...";s:9:"pdfg_read";s:38:"User has read access to PDF Generation";s:12:"pdfg_visible";s:25:"PDF Generation is visible";s:10:"pdfg_write";s:40:"User can edit settings of PDF Generation";s:20:"pdfg_edit_permission";s:35:"User can change permission settings";s:23:"file_no_valid_file_type";s:30:"This file type is not allowed.";s:36:"file_some_invalid_file_types_removed";s:54:"Some file types are not allowed and have been removed.";s:9:"auth_saml";s:4:"SAML";s:11:"saml_log_in";s:12:"Direct login";s:19:"saml_login_form_txt";s:23:"Login to ILIAS via SAML";s:24:"saml_login_form_info_txt";s:101:"You can log in using the “Direct Login” button without having to enter your username or password.";s:23:"login_to_ilias_via_saml";s:40:"Login to ILIAS via SAML Authentification";s:12:"second_email";s:13:"Second E-Mail";s:5:"grade";s:5:"Grade";s:14:"edit_page_meta";s:18:"Edit Page Metadata";s:28:"position_permission_settings";s:28:"Orgunit-Specific Permissions";s:23:"org_permission_settings";s:48:"Permissions of Positions in Organisational Units";s:29:"org_op_read_learning_progress";s:43:"View Learning Progress of Subordinate Users";s:21:"org_op_manage_members";s:26:"Manage Subordinate Members";s:24:"org_op_access_enrolments";s:21:"View Enrolment-Status";s:43:"user_never_logged_in_info_threshold_err_num";s:47:"Only positive non decimal numbers are accepted.";s:43:"cron_users_without_login_del_role_whitelist";s:14:"Included Roles";s:48:"cron_users_without_login_del_role_whitelist_info";s:89:"The deletion will only processed for users assigned to at least one of the selected roles";s:44:"cron_users_without_login_del_create_date_thr";s:9:"Thresholt";s:49:"cron_users_without_login_del_create_date_thr_info";s:88:"All user accounts created before the defined threshold will be taken into consideration.";s:20:"user_never_logged_in";s:34:"Delete user accounts without login";s:25:"user_never_logged_in_info";s:50:"All user accounts without login at all be deleted.";s:20:"usr_name_undisclosed";s:11:"Undisclosed";s:17:"obj_exc_duplicate";s:13:"Copy Exercise";s:18:"obj_fold_duplicate";s:11:"Copy Folder";s:16:"fold_wizard_page";s:22:"Copy Folder (Step 2/2)";s:22:"fold_copy_threads_info";s:71:"Please decide which materials should be copied, linked or even omitted.";s:28:"settings_presentation_header";s:12:"Presentation";s:8:"obj_copa";s:12:"Content Page";s:9:"objs_copa";s:13:"Content Pages";s:20:"msg_info_blacklisted";s:53:"The files cannot be uploaded due to security reasons.";s:23:"presentation_table_more";s:9:"Show More";s:19:"mme_lost_item_title";s:13:"No assignment";s:20:"mme_lost_item_reason";s:27:"Item is no longer provided.";s:7:"obj_mme";s:9:"Main Menu";s:4:"like";s:4:"Like";s:4:"love";s:4:"Love";s:7:"dislike";s:7:"Dislike";s:5:"laugh";s:5:"Laugh";s:9:"astounded";s:9:"Astounded";s:3:"sad";s:3:"Sad";s:5:"angry";s:5:"Angry";s:15:"my_certificates";s:15:"My Certificates";s:4:"open";s:4:"Open";s:7:"lso_new";s:21:"New Learning Sequence";s:7:"lso_add";s:21:"Add Learning Sequence";s:8:"lso_edit";s:22:"Edit Learning Sequence";s:10:"lso_import";s:24:"Import Learning Sequence";s:8:"lso_copy";s:22:"Copy Learning Sequence";s:7:"obj_lso";s:17:"Learning Sequence";s:8:"objs_lso";s:18:"Learning Sequences";s:17:"obj_lso_duplicate";s:22:"Copy Learning Sequence";s:21:"lso_copy_threads_info";s:90:"Please decide which elements of the Learning Sequence should be copied, linked or omitted.";s:15:"lso_wizard_page";s:33:"Copy Learning Sequence (Step 2/2)";s:12:"il_lso_admin";s:23:"Learning Sequence Admin";s:13:"il_lso_member";s:24:"Learning Sequence Member";s:13:"unparticipate";s:11:"Unsubscribe";s:11:"participate";s:9:"Subscribe";s:23:"pagination_label_x_of_y";s:17:"Page %1$d of %2$d";s:21:"certificate_selection";s:22:"Origin of Certificates";s:29:"certificate_persistent_option";s:28:"Certificates of Achievements";s:28:"certificate_workspace_option";s:34:"Certificates of Personal Resources";s:37:"certificate_file_already_exists_error";s:55:"The certificate file already exists in the file system.";s:32:"certificate_file_not_found_error";s:123:"The certificate file doesn\'t exist in the file system anymore. Die Zertikatsdatei wurde im Dateisystem nicht mehr gefunden.";s:35:"certificate_file_input_output_error";s:117:"The certificate file was found but couldn\'t be deleted because of internal errors. Please contact your administrator.";s:8:"obj_task";s:4:"Task";s:15:"mm_organisation";s:12:"Organisation";s:13:"mm_staff_list";s:10:"Staff List";s:13:"mm_enrolments";s:10:"Enrolments";s:16:"mm_communication";s:13:"Communication";s:11:"mm_contacts";s:8:"Contacts";s:7:"mm_mail";s:4:"Mail";s:7:"mm_news";s:4:"News";s:8:"mm_notes";s:5:"Notes";s:11:"mm_comments";s:8:"Comments";s:15:"mm_achievements";s:12:"Achievements";s:19:"mm_learning_history";s:16:"Learning History";s:9:"mm_skills";s:11:"Competences";s:20:"mm_learning_progress";s:17:"Learning Progress";s:9:"mm_badges";s:6:"Badges";s:17:"mm_administration";s:14:"Administration";s:13:"mm_repository";s:10:"Repository";s:12:"mm_dashboard";s:9:"Dashboard";s:17:"mm_repo_tree_view";s:9:"Tree View";s:21:"mm_task_derived_tasks";s:5:"Tasks";s:12:"mm_favorites";s:10:"Favourites";s:11:"mm_calendar";s:8:"Calendar";s:7:"mm_tags";s:4:"Tags";s:12:"mm_portfolio";s:9:"Portfolio";s:15:"mm_certificates";s:12:"Certificates";s:24:"mm_personal_and_shared_r";s:29:"Personal and Shared Resources";s:21:"mm_personal_workspace";s:18:"Personal Workspace";s:21:"mm_repo_tree_view_act";s:13:"Activate Tree";s:23:"mm_repo_tree_view_deact";s:15:"Deactivate Tree";s:28:"nc_contact_requests_headline";s:16:"Contact Requests";s:28:"nc_contact_requests_number_s";s:28:"You have %s Contact Request.";s:28:"nc_contact_requests_number_p";s:29:"You have %s Contact Requests.";s:29:"nc_contact_requests_prop_time";s:4:"Time";s:16:"mm_rep_tree_view";s:9:"Tree View";s:18:"personal_resources";s:18:"Personal Resources";s:7:"obj_lti";s:12:"LTI Consumer";s:8:"objs_lti";s:13:"LTI Consumers";s:8:"obj_cmis";s:9:"xAPI/cmi5";s:13:"obj_cmis_desc";s:41:"Learning Record Store Types Configuration";s:8:"obj_cmix";s:9:"xAPI/cmi5";s:9:"objs_cmix";s:17:"Objects xAPI/cmi5";s:8:"obj_prgr";s:23:"Link to Study Programme";s:9:"obj_prgrs";s:25:"Links to Study Programmes";s:17:"msg_unknown_value";s:33:"An unknown value has been passed.";s:8:"obj_lsos";s:18:"Learning Sequences";s:13:"obj_lsos_desc";s:39:"General settings for Learning Sequences";s:16:"collapse_content";s:16:"Collapse Content";s:14:"expand_content";s:14:"Expand Content";s:9:"briefcase";s:16:"Background Tasks";s:14:"sort_ascending";s:14:"Sort Ascending";s:15:"sort_descending";s:15:"Sort Descending";s:18:"show_who_is_online";s:18:"Show who is online";s:4:"tags";s:4:"Tags";s:8:"comments";s:8:"Comments";s:9:"eyeclosed";s:47:"Eye Closed - Click to hide the input\'s contents";s:9:"eyeopened";s:47:"Eye Open - Click to reveal the input\'s contents";s:9:"show_more";s:9:"Show More";s:8:"disclose";s:8:"Disclose";s:15:"switch_language";s:15:"Switch Language";s:9:"objs_prgr";s:25:"Links to Study Programmes";s:20:"lso_admin_form_title";s:8:"Settings";s:21:"lso_admin_form_byline";s:39:"General Settings for Learning Sequences";s:24:"lso_admin_interval_label";s:44:"Learning Progress Polling Interval (seconds)";s:25:"lso_admin_interval_byline";s:181:"Poll Learning Progress every x seconds. Be careful! A low value will increase server-requests and have an impact on overall system performance. Please choose highest value possible!";}'))); +'module' => array('text', 'common'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:2505:{s:13:"obj_nots_desc";s:14:"Notes settings";s:8:"obj_nots";s:5:"Notes";s:13:"obj_coms_desc";s:17:"Comments settings";s:8:"obj_coms";s:8:"Comments";s:5:"tools";s:5:"Tools";s:4:"more";s:4:"More";s:13:"obj_lhts_desc";s:25:"Learning history settings";s:8:"obj_lhts";s:16:"Learning History";s:13:"obj_dshs_desc";s:18:"Dashboard settings";s:8:"obj_dshs";s:9:"Dashboard";s:13:"obj_prss_desc";s:27:"Personal resources settings";s:8:"obj_prss";s:18:"Personal Resources";s:19:"msg_wrong_filetypes";s:20:"Allowed Files-Types:";s:31:"session_mail_subject_registered";s:42:"Registration of user "%s" for session "%s"";s:29:"session_mail_subject_deletion";s:45:"Deregistration of user "%s" from session "%s"";s:28:"session_mail_subject_entered";s:36:"Joining of user "%s" in session "%s"";s:21:"register_notification";s:34:""%s" has applied for session "%s".";s:21:"deletion_notification";s:49:""%s" has canceled the attendance of session "%s".";s:20:"entered_notification";s:33:""%s" has joined the session "%s".";s:8:"obj_ltis";s:3:"LTI";s:13:"obj_ltis_desc";s:31:"Learning Tools Interoperability";s:11:"lti_outcome";s:36:"LTI Lernfortschritt Benachrichtigung";s:16:"lti_outcome_info";s:72:"Sendet den Lernfortschrittstatus von LTI-Benutzern an LTI Tool Consumer.";s:27:"pwsp_recalculate_disk_quota";s:47:"Personal Resources: Recalculation of Disk Quota";s:32:"pwsp_recalculate_disk_quota_desc";s:62:"Recalculates all disk quota values for the personal resources.";s:18:"3rd_party_software";s:18:"3rd party software";s:13:"absolute_path";s:13:"Absolute Path";s:20:"accept_usr_agreement";s:24:"Accept terms of service?";s:14:"access_expired";s:7:"expired";s:19:"access_free_granted";s:44:"Set the selected user(s) to unlimited access";s:11:"access_from";s:13:"Access (from)";s:13:"access_public";s:6:"Public";s:17:"access_restricted";s:42:"Set the selected user(s) to limited access";s:12:"access_scope";s:6:"Access";s:16:"access_unlimited";s:9:"Unlimited";s:12:"access_until";s:11:"Valid until";s:12:"access_users";s:15:"Logged in Users";s:6:"access";s:6:"Access";s:28:"accesscount_registered_users";s:38:"Read by number of distinct ILIAS users";s:10:"accessFree";s:25:"Remove \'Valid Until\' Date";s:14:"accessRestrict";s:22:"Set \'Valid Until\' Date";s:20:"account_expires_body";s:43:"Your account is limited, it will expire at:";s:23:"account_expires_subject";s:20:"Your account expires";s:7:"account";s:10:"My Account";s:14:"action_aborted";s:14:"Action aborted";s:6:"action";s:6:"Action";s:7:"actions";s:7:"Actions";s:27:"activate_assessment_logging";s:36:"Activate Test and Assessment Logging";s:14:"activate_https";s:36:"HTTPS handling by ILIAS
(Login)";s:17:"activate_tracking";s:10:"Activation";s:8:"activate";s:10:"Set Active";s:10:"activation";s:12:"Edit Timings";s:6:"active";s:6:"Active";s:13:"add_condition";s:16:"Add Precondition";s:10:"add_member";s:10:"Add Member";s:15:"add_member_role";s:15:"Add Member Role";s:26:"add_new_user_defined_field";s:20:"Add New Custom Field";s:8:"add_note";s:8:"Add Note";s:13:"add_parameter";s:13:"New Parameter";s:8:"add_role";s:8:"Add Role";s:15:"add_translation";s:15:"Add translation";s:22:"add_user_defined_field";s:13:"Add New Field";s:8:"add_user";s:14:"Add Local User";s:3:"add";s:3:"Add";s:19:"added_new_condition";s:22:"Created new condition.";s:15:"additional_info";s:22:"Additional Information";s:7:"address";s:7:"Address";s:16:"admin_force_noti";s:19:"Notification active";s:18:"administrate_users";s:25:"Local User Administration";s:14:"administration";s:14:"Administration";s:13:"administrator";s:13:"Administrator";s:5:"adopt";s:5:"Adopt";s:32:"advanced_editing_allow_html_tags";s:45:"Allow the selected HTML tags for text editing";s:36:"advanced_editing_assessment_settings";s:56:"Allowed HTML Tags for the ILIAS Test and Assessment tool";s:34:"advanced_editing_frm_post_settings";s:19:"Forum Post Settings";s:38:"advanced_editing_rep_page_editing_desc";s:135:"This feature allows adding text/media to pages of a category, course, group or folder. If deactivated, existing content will be hidden.";s:33:"advanced_editing_rep_page_editing";s:36:"Enable Content Editing in Repository";s:30:"advanced_editing_required_tags";s:40:"The following HTML tags are required: %s";s:32:"advanced_editing_survey_settings";s:43:"Allowed HTML Tags for the ILIAS survey tool";s:24:"adve_assessment_settings";s:28:"Test and Assessment Settings";s:22:"adve_frm_post_settings";s:11:"Forum Posts";s:21:"adve_general_settings";s:16:"General Settings";s:20:"adve_survey_settings";s:15:"Survey Settings";s:10:"agree_date";s:9:"Agreed on";s:16:"all_global_roles";s:12:"Global roles";s:15:"all_local_roles";s:17:"Local roles (all)";s:11:"all_objects";s:11:"All Objects";s:9:"all_roles";s:9:"All Roles";s:10:"all_topics";s:10:"All Topics";s:9:"all_users";s:9:"All Users";s:18:"allow_assign_users";s:47:"Allow user assignment for local administrators.";s:20:"allow_override_alert";s:50:"Rules for .htaccess are not interpreted correctly.";s:14:"allow_register";s:44:"Available in registration form for new users";s:23:"already_delivered_files";s:15:"Submitted Files";s:3:"and";s:3:"and";s:9:"anonymous";s:9:"Anonymous";s:7:"answers";s:7:"Answers";s:12:"any_language";s:12:"Any language";s:21:"application_completed";s:23:"Application is complete";s:16:"application_date";s:16:"Application Date";s:12:"applications";s:12:"Applications";s:12:"apply_filter";s:12:"Apply Filter";s:5:"apply";s:5:"Apply";s:11:"appointment";s:11:"Appointment";s:12:"approve_date";s:11:"Approved on";s:17:"approve_recipient";s:20:"Login ID of Approver";s:14:"archive_broken";s:36:"Archive seems to be broken or empty.";s:7:"archive";s:7:"Archive";s:12:"are_you_sure";s:13:"Are you sure?";s:13:"ass_log_admin";s:23:"Log Data Administration";s:22:"ass_log_count_datasets";s:11:"Log Entries";s:22:"ass_log_delete_entries";s:18:"Delete Log Entries";s:27:"ass_log_delete_no_selection";s:54:"Please select at least one test to delete the Log Data";s:15:"ass_log_deleted";s:52:"The Log Data for the selected tests has been deleted";s:14:"ass_log_output";s:15:"Log Data Output";s:26:"assessment_imap_line_color";s:20:"Image Map Line Color";s:23:"assessment_log_datetime";s:9:"Date/Time";s:22:"assessment_log_deleted";s:71:"The Test and Assessment log data has been deleted in the administration";s:23:"assessment_log_for_test";s:8:"For test";s:26:"assessment_log_log_entries";s:11:"log entries";s:22:"assessment_log_logging";s:7:"Logging";s:38:"assessment_log_manual_scoring_activate";s:27:"Activate Manual Scoring for";s:34:"assessment_log_manual_scoring_desc";s:275:"If the Manual Scoring is activated for a question type, all questions of this question type could be manually scored by a test author. Please be careful with these settings, because late manual scoring of automatically scored question types could cause even judical problems!";s:23:"assessment_log_question";s:8:"Question";s:19:"assessment_log_text";s:11:"Log message";s:14:"assessment_log";s:59:"Create a Test and Assessment log for a specific time period";s:38:"assessment_settings_reporting_language";s:18:"Reporting language";s:31:"assf_allowed_questiontypes_desc";s:224:"All the checked question types will be available in this ILIAS installation. If you don\'t want to allow the creation of a certain question type in this installation, you must remove the selection in the associated check box.";s:26:"assf_allowed_questiontypes";s:24:"Available Question Types";s:18:"assf_questiontypes";s:17:"Question Settings";s:18:"assign_global_role";s:21:"Assign to Global Role";s:17:"assign_local_role";s:20:"Assign to Local Role";s:6:"assign";s:6:"Assign";s:16:"assigned_members";s:16:"Assigned Members";s:14:"assigned_roles";s:14:"Assigned Roles";s:15:"associated_user";s:15:"associated User";s:18:"at_least_one_style";s:41:"At least one style must remain activated.";s:10:"attachment";s:10:"Attachment";s:11:"attachments";s:11:"Attachments";s:8:"attempts";s:8:"Attempts";s:17:"auth_active_roles";s:43:"Global roles available on registration form";s:16:"auth_allow_local";s:26:"Allow Local Authentication";s:25:"auth_cas_allow_local_desc";s:91:"This allows CAS users to authenticate with their local ILIAS username and a local password.";s:18:"auth_cas_auth_desc";s:66:"CAS requires PHP 4.3.1 or higher with CURL support (7.5 or higher)";s:13:"auth_cas_auth";s:28:"Configure CAS Authentication";s:18:"auth_cas_port_desc";s:75:"E.g. 443 if the full CAS server URI is https://auth.yourserver.com:443/cas/";s:20:"auth_cas_server_desc";s:91:"E.g. auth.yourserver.com if the full CAS server URI is https://auth.yourserver.com:443/cas/";s:17:"auth_cas_uri_desc";s:86:"Local URI, e.g. cas if the full CAS server URI is https://auth.yourserver.com:443/cas/";s:8:"auth_cas";s:3:"CAS";s:14:"auth_configure";s:12:"configure...";s:17:"auth_create_users";s:39:"Create non-existing users automatically";s:28:"auth_default_mode_changed_to";s:38:"Default authentication mode changed to";s:12:"auth_default";s:15:"Default setting";s:8:"auth_ecs";s:3:"ECS";s:16:"auth_ldap_enable";s:19:"Enable LDAP support";s:24:"auth_ldap_migration_info";s:119:"Activate this option to give new users the possibility to migrate their existing ILIAS accounts to LDAP authentication.";s:19:"auth_ldap_migration";s:17:"Account Migration";s:9:"auth_ldap";s:4:"LDAP";s:10:"auth_local";s:10:"ILIAS Auth";s:23:"auth_login_instructions";s:32:"Instructions shown on login page";s:21:"auth_mode_not_changed";s:17:"(Nothing changed)";s:23:"auth_mode_roles_changed";s:41:"Changed authentication mode for this Role";s:9:"auth_mode";s:19:"Authentication mode";s:26:"auth_new_account_mail_desc";s:158:"Send new account e-mail to user, if user is generated automatically. A password will only be generated, if ‘Allow Local Authentication’ is also activated.";s:16:"auth_per_default";s:11:"Per Default";s:21:"auth_radius_configure";s:31:"Configure RADIUS-Authentication";s:18:"auth_radius_enable";s:21:"Enable RADIUS support";s:26:"auth_radius_not_configured";s:28:"RADIUS is not configured yet";s:16:"auth_radius_port";s:4:"Port";s:23:"auth_radius_server_desc";s:108:"You may add multiple servers with commas separated. Servers are rotated in Round robin fashion when queried.";s:18:"auth_radius_server";s:7:"Servers";s:25:"auth_radius_shared_secret";s:13:"Shared secret";s:11:"auth_radius";s:6:"RADIUS";s:26:"auth_remark_non_local_auth";s:122:"When selecting another authentication mode than ILIAS database, you may not change user\'s login name and password anymore.";s:19:"auth_role_auth_mode";s:19:"Authentication mode";s:11:"auth_script";s:6:"Custom";s:11:"auth_select";s:26:"Select authentication mode";s:14:"auth_selection";s:13:"Login Options";s:13:"auth_settings";s:23:"Authentication Settings";s:22:"auth_shib_instructions";s:93:"Be sure to read the README for instructions on how to configure Shibboleth support for ILIAS.";s:24:"auth_shib_not_configured";s:32:"Shibboleth is not configured yet";s:9:"auth_shib";s:10:"Shibboleth";s:15:"auth_shibboleth";s:10:"Shibboleth";s:26:"auth_soap_allow_local_desc";s:92:"This allows SOAP users to authenticate with their local ILIAS username and a local password.";s:19:"auth_soap_auth_desc";s:95:"This settings deal only with SOAP based user authentication, not with the ILIAS SOAP interface.";s:14:"auth_soap_auth";s:29:"Configure SOAP Authentication";s:27:"auth_soap_create_users_desc";s:137:"Creates automatically an ILIAS user account, for users that successfully authenticated against SOAP, without having an ILIAS account yet.";s:24:"auth_soap_namespace_desc";s:66:"As defined in WSDL. Must be specified, if .NET SOAP style is used.";s:19:"auth_soap_namespace";s:9:"Namespace";s:19:"auth_soap_port_desc";s:87:"E.g. 8080 if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php";s:21:"auth_soap_server_desc";s:102:"E.g. auth.yourserver.com if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php";s:24:"auth_soap_settings_saved";s:34:"SOAP authentication settings saved";s:18:"auth_soap_uri_desc";s:108:"Local URI, e.g. dir/server.php if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php";s:20:"auth_soap_use_dotnet";s:19:"Use .NET SOAP Style";s:19:"auth_soap_use_https";s:9:"Use HTTPS";s:32:"auth_soap_user_default_role_desc";s:58:"This role is assigned to automatically created SOAP users.";s:9:"auth_soap";s:4:"SOAP";s:22:"auth_user_default_role";s:12:"Default Role";s:18:"authenticate_ilias";s:27:"ILIAS Native Authentication";s:23:"authentication_settings";s:14:"Authentication";s:6:"author";s:6:"Author";s:14:"authoring_mode";s:14:"Authoring Mode";s:7:"authors";s:7:"Authors";s:9:"available";s:9:"Available";s:4:"awra";s:14:"Who is online?";s:19:"back_to_crs_content";s:22:"Back to Course Content";s:20:"back_to_fold_content";s:22:"Back to Folder Content";s:19:"back_to_grp_content";s:21:"Back to Group Content";s:4:"back";s:4:"Back";s:6:"basedn";s:6:"BaseDN";s:14:"basic_settings";s:14:"Basic Settings";s:6:"before";s:6:"before";s:9:"benchmark";s:9:"Benchmark";s:10:"benchmarks";s:10:"Benchmarks";s:8:"bib_data";s:20:"Bibliographical Data";s:8:"birthday";s:8:"Birthday";s:13:"bkm_import_ok";s:59:"Successfully imported %d bookmarks and %d bookmark folders.";s:10:"bkm_import";s:16:"Import Bookmarks";s:12:"bkm_sendmail";s:18:"Send as attachment";s:5:"block";s:5:"Block";s:15:"bm_add_to_ilias";s:22:"Add to ILIAS Bookmarks";s:2:"bm";s:8:"Bookmark";s:3:"bmf";s:15:"Bookmark Folder";s:4:"bold";s:4:"Bold";s:8:"bookings";s:8:"Bookings";s:14:"bookmark_added";s:30:"The Bookmark has been created.";s:19:"bookmark_folder_new";s:19:"New Bookmark Folder";s:12:"bookmark_new";s:12:"New Bookmark";s:15:"bookmark_target";s:6:"Target";s:12:"bookmarks_of";s:12:"Bookmarks of";s:9:"bookmarks";s:9:"Bookmarks";s:21:"breadcrumb_navigation";s:21:"Breadcrumb Navigation";s:7:"btn_add";s:3:"Add";s:8:"btn_back";s:4:"Back";s:8:"btn_next";s:8:"Continue";s:12:"btn_previous";s:4:"Back";s:17:"btn_remove_system";s:18:"Remove from System";s:12:"btn_undelete";s:7:"Restore";s:2:"by";s:2:"By";s:5:"bytes";s:5:"Bytes";s:8:"cal_from";s:5:"From:";s:9:"cal_until";s:6:"Until:";s:8:"calendar";s:8:"Calendar";s:6:"cancel";s:6:"Cancel";s:15:"cannot_find_xml";s:25:"Cannot find any XML-file.";s:32:"cannot_uninstall_language_in_use";s:51:"You cannot uninstall the language currently in use!";s:31:"cannot_uninstall_systemlanguage";s:41:"You cannot uninstall the system language!";s:17:"cannot_unzip_file";s:19:"Cannot unpack file.";s:33:"cant_deactivate_if_users_assigned";s:70:"You cannot deactivate a style if there are still users assigned to it.";s:7:"cat_add";s:12:"Add Category";s:9:"cat_added";s:14:"Category added";s:21:"cat_copy_threads_info";s:76:"Please decide which category items should be copied, linked or even omitted.";s:8:"cat_edit";s:17:"Category Settings";s:7:"cat_new";s:12:"New Category";s:15:"cat_wizard_page";s:24:"Copy Category (Step 2/2)";s:3:"cat";s:8:"Category";s:19:"categories_imported";s:25:"Category import complete.";s:10:"categories";s:10:"Categories";s:14:"catr_edit_info";s:51:"Please choose one category for creating a new link.";s:8:"catr_new";s:20:"Create Category Link";s:4:"catr";s:13:"Category Link";s:2:"cc";s:2:"CC";s:11:"certificate";s:11:"Certificate";s:17:"change_assignment";s:17:"Change assignment";s:19:"change_header_title";s:17:"Edit Header Title";s:12:"change_owner";s:12:"Change owner";s:21:"change_sort_direction";s:21:"Change sort direction";s:6:"change";s:6:"Change";s:10:"changeable";s:21:"Changeable in Profile";s:10:"changed_to";s:10:"changed to";s:36:"changing_loginname_not_possible_info";s:82:"You changed your login name at last at %s. The next change can be performed at %s.";s:7:"chapter";s:7:"Chapter";s:10:"characters";s:10:"characters";s:30:"chat_enter_public_room_tooltip";s:18:"Enter public chat.";s:22:"chat_enter_public_room";s:11:"Public Chat";s:31:"chat_invite_public_room_tooltip";s:22:"Invite to public chat.";s:23:"chat_invite_public_room";s:11:"Public Chat";s:17:"chat_users_active";s:12:"Active users";s:9:"check_all";s:9:"Check all";s:14:"check_langfile";s:31:"Please check your language file";s:15:"check_languages";s:19:"Check All Languages";s:15:"check_link_desc";s:91:"If enabled all external links in ILIAS learning modules will be checked if they are active.";s:10:"check_link";s:13:"Weblink check";s:24:"check_user_accounts_desc";s:212:"If enabled, all users whose account expires will be informed by e-mail two weeks before. Furthermore all users which have not confirmed their account after a registration with e-mail confirmation will be deleted.";s:19:"check_user_accounts";s:19:"Check user accounts";s:24:"check_web_resources_desc";s:59:"If enabled all Weblinks will be checked if they are active.";s:19:"check_web_resources";s:14:"Check Weblinks";s:5:"check";s:5:"Check";s:13:"checked_files";s:16:"Importable files";s:7:"checked";s:7:"Checked";s:32:"chg_ilias_and_webfolder_password";s:25:"Change Webfolder Password";s:18:"chg_ilias_password";s:21:"Change ILIAS Password";s:12:"chg_password";s:15:"Change Password";s:15:"choose_language";s:20:"Choose Your Language";s:24:"choose_only_one_language";s:31:"Please choose only one language";s:13:"chown_warning";s:84:"Attention, you may loose access permissions on this object after changing the owner.";s:4:"city";s:11:"City, State";s:12:"cleaned_file";s:22:"File has been cleaned.";s:15:"cleaning_failed";s:16:"Cleaning failed.";s:15:"clear_clipboard";s:15:"Clear Clipboard";s:5:"clear";s:5:"Clear";s:9:"client_id";s:9:"Client ID";s:9:"client_ip";s:9:"Client IP";s:6:"client";s:6:"Client";s:9:"clipboard";s:9:"Clipboard";s:5:"close";s:5:"Close";s:7:"cnt_new";s:8:"(%s New)";s:12:"collapse_all";s:12:"Collapse All";s:8:"collapse";s:8:"Collapse";s:9:"collapsed";s:9:"Collapsed";s:7:"columns";s:7:"Columns";s:15:"comma_separated";s:15:"Comma Separated";s:7:"comment";s:7:"Comment";s:7:"compose";s:7:"Compose";s:17:"cond_ref_handling";s:13:"Link Settings";s:15:"cond_ref_shared";s:34:"Shared Preconditions for all Links";s:15:"cond_ref_unique";s:30:"Unique Preconditions for Links";s:26:"condition_already_assigned";s:24:"Object already assigned.";s:24:"condition_circle_created";s:70:"This association is not possible, since the objects would interdepend.";s:17:"condition_deleted";s:18:"Condition deleted.";s:18:"condition_finished";s:8:"Finished";s:22:"condition_not_finished";s:12:"Not finished";s:16:"condition_passed";s:6:"Passed";s:23:"condition_select_object";s:25:"Please select one object.";s:30:"condition_accredited_or_passed";s:20:"Accredited or Passed";s:9:"condition";s:9:"Condition";s:18:"conditions_updated";s:16:"Conditions saved";s:24:"confirm_delete_parameter";s:43:"Do you really want to delete the parameter?";s:7:"confirm";s:7:"Confirm";s:12:"confirmation";s:12:"Confirmation";s:17:"conflict_handling";s:17:"Conflict handling";s:12:"contact_data";s:19:"Contact Information";s:7:"contact";s:7:"Contact";s:18:"container_no_items";s:22:"No Materials Available";s:9:"container";s:9:"Container";s:13:"content_frame";s:13:"Content Frame";s:14:"content_styles";s:14:"Content Styles";s:7:"content";s:7:"Content";s:7:"context";s:7:"Context";s:13:"continue_work";s:8:"Continue";s:6:"contra";s:6:"Contra";s:8:"copy_all";s:8:"Copy all";s:16:"copy_n_of_suffix";s:13:"- Copy (%1$s)";s:14:"copy_of_suffix";s:6:"- Copy";s:7:"copy_of";s:7:"Copy of";s:19:"copy_selected_items";s:4:"Copy";s:4:"copy";s:4:"Copy";s:11:"copyChapter";s:4:"Copy";s:8:"copyPage";s:4:"Copy";s:5:"count";s:5:"Count";s:7:"country";s:7:"Country";s:6:"course";s:6:"Course";s:7:"courses";s:7:"Courses";s:11:"create_date";s:10:"Created on";s:18:"create_export_file";s:18:"Create export file";s:17:"create_stylesheet";s:12:"Create Style";s:6:"create";s:6:"Create";s:7:"created";s:13:"Creation Date";s:28:"cron_forum_notification_desc";s:122:"If enabled, all users, who want to be informed about new posts in specified forum threads, will get notifications by mail.";s:33:"cron_forum_notification_crob_desc";s:217:"If enabled, all users who have enabled notifications for certain forums or forum threads will daily receive a notification mail about all new or changed posts but no immediate notification for each submitted posting.";s:23:"cron_forum_notification";s:24:"Send Forum Notifications";s:9:"cron_jobs";s:9:"Cron Jobs";s:22:"cron_lucene_index_info";s:122:"If enabled, the lucene search index will be updated. Please configure the lucene server at ’Administration -> Search’.";s:17:"cron_lucene_index";s:26:"Update Lucene search index";s:27:"cron_mail_notification_cron";s:22:"regularly per cron job";s:27:"cron_mail_notification_desc";s:165:"If enabled, all users, who want to be informed about new mail, will get notifications by external mail. Please enable the option ‘%s’ first to use this function.";s:28:"cron_mail_notification_never";s:5:"never";s:22:"cron_mail_notification";s:22:"New Mail Notifications";s:28:"crs_activation_start_invalid";s:43:"The start and the finish time is not valid.";s:7:"crs_add";s:10:"Add Course";s:9:"crs_added";s:12:"Course added";s:12:"crs_archives";s:8:"Archives";s:23:"crs_cancel_waiting_list";s:75:"Do you really want to remove yourself from the waiting list of course "%s"?";s:21:"crs_copy_threads_info";s:78:"Please decide which course materials should be copied, linked or even omitted.";s:8:"crs_edit";s:11:"Edit Course";s:21:"crs_member_not_passed";s:10:"Not passed";s:17:"crs_member_passed";s:6:"Passed";s:19:"crs_members_gallery";s:22:"Course Members Gallery";s:7:"crs_new";s:10:"New Course";s:29:"crs_removed_from_waiting_list";s:60:"You have been detached from the waiting list of course "%s".";s:18:"crs_status_blocked";s:16:"[Access refused]";s:18:"crs_status_pending";s:26:"[Waiting for registration]";s:24:"crs_subscribers_assigned";s:20:"Assigned new user(s)";s:9:"crs_title";s:12:"Course Title";s:15:"crs_unsubscribe";s:23:"Unsubscribe from Course";s:15:"crs_wizard_page";s:22:"Copy Course (Step 2/2)";s:3:"crs";s:6:"Course";s:14:"crsr_edit_info";s:49:"Please choose one course for creating a new link.";s:8:"crsr_new";s:18:"Create Course Link";s:4:"crsr";s:11:"Course Link";s:10:"csv_export";s:10:"CSV-Export";s:16:"current_ip_alert";s:97:"Notice: if you enter a wrong ip you won\'t be able to access the system with this profile anymore.";s:10:"current_ip";s:11:"Current IP:";s:16:"current_password";s:16:"Current Password";s:3:"cut";s:3:"Cut";s:7:"cutPage";s:3:"Cut";s:5:"daily";s:5:"daily";s:16:"database_version";s:24:"Current Database Version";s:8:"database";s:8:"Database";s:7:"dataset";s:4:"Item";s:4:"date";s:4:"Date";s:10:"dateplaner";s:8:"Calendar";s:3:"day";s:3:"Day";s:4:"days";s:4:"Days";s:7:"db_host";s:13:"Database Host";s:7:"db_name";s:13:"Database Name";s:14:"db_need_update";s:25:"Database needs an update!";s:7:"db_pass";s:17:"Database Password";s:7:"db_type";s:13:"Database Type";s:7:"db_user";s:13:"Database User";s:10:"db_version";s:16:"Database Version";s:10:"deactivate";s:12:"Set Inactive";s:17:"decrease_attempts";s:12:"Attempts - 1";s:19:"def_repository_view";s:23:"Default repository view";s:22:"default_auth_mode_info";s:78:"Please choose the authentication method that is preselected on the login page.";s:17:"default_auth_mode";s:29:"Default Authentication Method";s:16:"default_language";s:16:"Default Language";s:21:"default_perm_settings";s:19:"Default Permissions";s:12:"default_role";s:12:"Default Role";s:13:"default_roles";s:13:"Default Roles";s:18:"default_skin_style";s:20:"Default Skin / Style";s:12:"default_skin";s:12:"Default Skin";s:13:"default_style";s:13:"Default Style";s:7:"default";s:7:"Default";s:8:"defaults";s:8:"Defaults";s:20:"delete_existing_file";s:20:"Delete Existing File";s:16:"delete_parameter";s:16:"Delete Parameter";s:21:"delete_selected_items";s:6:"Delete";s:6:"delete";s:6:"Delete";s:12:"deleted_user";s:25:"The user has been deleted";s:13:"deleted_users";s:13:"Deleted users";s:7:"deleted";s:7:"Deleted";s:7:"deliver";s:7:"Deliver";s:10:"department";s:10:"Department";s:4:"desc";s:11:"Description";s:11:"description";s:11:"Description";s:16:"desired_password";s:16:"Desired Password";s:7:"details";s:7:"Details";s:13:"disable_check";s:13:"Disable check";s:22:"disable_ext_lang_maint";s:28:"Disable Extended Maintenance";s:24:"disable_hide_user_toggle";s:31:"Member is allowed to deactivate";s:7:"disable";s:7:"disable";s:8:"disabled";s:8:"Disabled";s:20:"disk_quota_is_1_by_2";s:66:"The effective disk quota is %1$s due to membership in role "%2$s".";s:33:"disk_quota_is_1_instead_of_2_by_3";s:136:"The effective disk quota is %1$s as defined in this user account. The disk quota by role membership would have been %2$s by role "%3$s".";s:28:"disk_quota_is_unlimited_by_1";s:71:"The effective disk quota is unlimited due to membership in role "%1$s".";s:34:"disk_quota_last_reminder_sent_desc";s:93:"Last date on which the user has received a reminder mail because of exceeding the disk quota.";s:29:"disk_quota_last_reminder_sent";s:24:"Last quota reminder sent";s:23:"disk_quota_on_role_desc";s:93:"The disk quota specified on a role affects all user accounts which are assigned to this role.";s:29:"disk_quota_reminder_mail_desc";s:295:"The disk quota reminder mail is sent to active users who have exceeded their disk quota. This e-mail is sent once every day to the users when the daily ILIAS cron job is run. Users who already have received a reminder e-mail receive it again every 7 days as long as they exceed their disk quota.";s:24:"disk_quota_reminder_mail";s:13:"Reminder mail";s:29:"disk_quota_report_not_run_yet";s:110:"No disk quota report available. The daily cron job which determines the disk usage needs to be executed first.";s:17:"disk_quota_report";s:17:"Disk Quota Report";s:10:"disk_quota";s:10:"Disk Quota";s:18:"disk_usage_details";s:18:"Disk Usage Details";s:10:"disk_usage";s:10:"Disk Usage";s:6:"domain";s:6:"Domain";s:4:"down";s:4:"Down";s:27:"download_all_returned_files";s:24:"Download all Submissions";s:36:"download_with_uploaded_filename_info";s:478:"Select this option exclusively for backwards compatibility with ILIAS 3.9 and older versions: When this option is selected, the filename of a downloaded file is equal to the filename that was used for uploading the file into ILIAS. If this option is not selected, the filename of a downloaded file is equal to the title of the file object in ILIAS. This option does not affect WebDAV. For WebDAV the filename of a downloaded file is always equal to the title of the file object.";s:31:"download_with_uploaded_filename";s:31:"Download with uploaded filename";s:8:"download";s:8:"Download";s:20:"downloading_settings";s:17:"Download Settings";s:6:"drafts";s:6:"Drafts";s:17:"edit_cat_settings";s:26:"Advanced Category Settings";s:12:"edit_content";s:12:"Edit Content";s:13:"edit_grouping";s:26:"Edit Membership Limitation";s:15:"edit_operations";s:15:"Edit Operations";s:17:"edit_page_content";s:17:"Edit Page Content";s:9:"edit_page";s:9:"Edit Page";s:15:"edit_properties";s:15:"Edit Properties";s:15:"edit_stylesheet";s:10:"Edit Style";s:4:"edit";s:4:"Edit";s:6:"editor";s:6:"Editor";s:15:"email_not_valid";s:44:"The e-mail address you entered is not valid!";s:5:"email";s:6:"E-Mail";s:15:"enable_calendar";s:15:"Enable Calendar";s:24:"enable_custom_icons_info";s:173:"This allows you to define custom icons for single container objects and the content page object. The properties section of these objects will provide an image upload dialog.";s:19:"enable_custom_icons";s:19:"Enable custom icons";s:31:"enable_disk_quota_reminder_mail";s:30:"Send disk quota reminder mails";s:27:"enable_download_folder_info";s:65:"Enables a download option inside the action drop-down of folders.";s:22:"enable_download_folder";s:37:""Download Action for Folders" enabled";s:27:"enable_fora_statistics_desc";s:59:"If disabled, nobody is able to access the forum statistics.";s:22:"enable_fora_statistics";s:26:"Enable Statistics in Forum";s:23:"enable_hide_user_toggle";s:35:"Member is not allowed to deactivate";s:30:"enable_hist_user_comments_desc";s:73:"Give authors the opportunity to add comments to the history log of pages.";s:25:"enable_hist_user_comments";s:31:"Enable user comments in history";s:26:"enable_password_assistance";s:26:"Enable password assistance";s:20:"enable_search_engine";s:219:"Open Public Area for Internet Search Engines (e.g Google).
The Apache module ‘mod_rewrite’ is required for this extension. Please take care that you have appropriate permissions to use .htaccess configurations.";s:17:"enable_trash_info";s:164:"If enabled, deleted Objects are moved into Trash and may be recovered later. When deactivating this option deleted Objects are removed irreversibly from the System!";s:12:"enable_trash";s:12:"Enable Trash";s:18:"enable_webdav_info";s:243:"Allows WebDAV clients to access the repository as a webfolder. Users can open webfolders using the ‘Open as webfolder’ action in the repository, or by entering the following address in a WebDAV client: %1$s";s:13:"enable_webdav";s:20:"Enable WebDAV access";s:6:"enable";s:6:"Enable";s:7:"enabled";s:7:"Enabled";s:16:"enter_in_mb_desc";s:20:"Enter a value in MB.";s:11:"err_1_param";s:17:"Only 1 parameter!";s:11:"err_2_param";s:17:"Only 2 parameter!";s:26:"err_auth_cas_no_ilias_user";s:126:"Login failed. CAS authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.";s:27:"err_auth_ldap_no_ilias_user";s:127:"Login failed. LDAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.";s:22:"err_auth_mode_inactive";s:42:"Your authentication method is deactivated.";s:29:"err_auth_radius_no_ilias_user";s:87:"Login failed. Radius authentication successful, but no corresponding ILIAS user exists.";s:27:"err_auth_soap_no_ilias_user";s:127:"Login failed. SOAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.";s:15:"err_check_input";s:57:"The settings could not be saved. Please check your input.";s:15:"err_count_param";s:29:"Reason: Wrong parameter count";s:11:"err_in_line";s:13:"Error in line";s:12:"err_inactive";s:88:"This account has not been activated. Please contact the system administrator for access.";s:27:"err_inactive_login_attempts";s:207:"Your user account has been deactivated due too many failed login attempts. Click \'Contact Technical Support\' at the footer of this page to notify the administrator about the need to re-activate your account.";s:16:"err_invalid_port";s:19:"Invalid port number";s:14:"err_no_cookies";s:46:"Please enable session cookies in your browser!";s:21:"err_no_langfile_found";s:23:"No language file found!";s:12:"err_no_param";s:13:"No parameter!";s:16:"err_over_3_param";s:23:"More than 3 parameters!";s:23:"err_role_not_assignable";s:53:"You cannot assign users to this role at this location";s:19:"err_session_expired";s:24:"Your session is expired!";s:16:"err_wrong_header";s:21:"Reason: Wrong header.";s:15:"err_wrong_login";s:23:"Wrong Login or Password";s:41:"err_valid_login_account_creation_disabled";s:128:"Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.";s:18:"err_wrong_password";s:14:"Wrong Password";s:12:"error_parser";s:26:"Error starting the parser.";s:15:"error_recipient";s:15:"Error Recipient";s:5:"error";s:5:"Error";s:24:"event_ass_materials_prop";s:17:"Session Materials";s:18:"event_assign_files";s:15:"File Assignment";s:7:"exc_add";s:12:"Add Exercise";s:9:"exc_added";s:14:"Exercise added";s:18:"exc_date_not_valid";s:21:"The date is not valid";s:20:"exc_deassign_members";s:21:"Remove Participant(s)";s:18:"exc_download_files";s:14:"Download Files";s:17:"exc_edit_exercise";s:13:"Edit exercise";s:14:"exc_edit_until";s:10:"Edit Until";s:8:"exc_edit";s:20:"New exercise created";s:17:"exc_exercise_sent";s:13:"Exercise Sent";s:18:"exc_files_returned";s:15:"Submitted Files";s:9:"exc_files";s:5:"Files";s:15:"exc_instruction";s:17:"Work Instructions";s:19:"exc_last_submission";s:15:"Last Submission";s:28:"exc_members_already_assigned";s:51:"These users are already assigned to the assignment.";s:20:"exc_members_assigned";s:16:"Members assigned";s:26:"exc_members_comments_saved";s:59:"The exercise comments for the selected user have been saved";s:7:"exc_new";s:12:"New Exercise";s:7:"exc_obj";s:8:"Exercise";s:16:"exc_save_changes";s:4:"Save";s:12:"exc_schedule";s:8:"Schedule";s:19:"exc_select_one_file";s:31:"Please select exactly one file.";s:11:"exc_sent_at";s:16:"Sent on
%s";s:8:"exc_sent";s:48:"The exercise has been sent to the selected users";s:16:"exc_status_saved";s:16:"Exercise updated";s:10:"exc_status";s:6:"Status";s:14:"exc_submission";s:10:"Submission";s:19:"exc_time_over_short";s:11:"Time is up.";s:16:"exc_time_to_send";s:22:"Remaining Working Time";s:16:"exc_upload_error";s:20:"Error uploading file";s:3:"exc";s:8:"Exercise";s:4:"excs";s:9:"Exercises";s:7:"execute";s:7:"Execute";s:18:"exercise_time_over";s:91:"The time allocated for completing this exercise is over. Files cannot be submitted anymore!";s:8:"exp_html";s:11:"Export HTML";s:10:"expand_all";s:10:"Expand All";s:6:"expand";s:6:"Expand";s:8:"expanded";s:8:"Expanded";s:13:"export_format";s:13:"Export format";s:11:"export_html";s:19:"Export as HTML File";s:6:"export";s:6:"Export";s:16:"ext_cat_settings";s:31:"Edit Advanced Category Settings";s:8:"ext_link";s:4:"Link";s:15:"failure_message";s:15:"Failure Message";s:3:"fax";s:3:"Fax";s:4:"feed";s:8:"Web Feed";s:18:"feedback_recipient";s:18:"Feedback Recipient";s:8:"feedback";s:8:"Feedback";s:10:"field_name";s:10:"Field Name";s:10:"field_type";s:10:"Field Type";s:21:"file_add_and_metadata";s:29:"Upload File and Edit Metadata";s:8:"file_add";s:11:"Upload File";s:10:"file_added";s:13:"File uploaded";s:21:"file_allowed_suffixes";s:19:"Allowed file types:";s:12:"file_created";s:20:"File has been added.";s:9:"file_edit";s:21:"Edit File Information";s:9:"file_info";s:16:"File Information";s:16:"file_is_infected";s:32:"The file is infected by a virus.";s:14:"file_not_found";s:14:"File Not Found";s:14:"file_not_valid";s:15:"File not valid!";s:11:"file_notice";s:20:"Maximum upload size:";s:21:"file_suffix_repl_info";s:200:"Enter file types with suffix (separated by comma) that shall be be renamed with a ‘.sec’ when uploaded into webspace to prevent execution of this file. This is done per default for these suffixes:";s:16:"file_suffix_repl";s:30:"File Upload Suffix Replacement";s:12:"file_updated";s:22:"File has been updated.";s:10:"file_valid";s:14:"File is valid!";s:12:"file_version";s:24:"Version Provided in File";s:4:"file";s:4:"File";s:26:"filename_extension_missing";s:27:"File name extension missing";s:27:"filename_hidden_backup_file";s:18:"Hidden backup file";s:25:"filename_hidden_unix_file";s:16:"Hidden Unix file";s:25:"filename_interoperability";s:16:"Interoperability";s:27:"filename_special_characters";s:63:"Due to the character / this object is not visible in webfolders";s:25:"filename_special_filename";s:57:"Objects with names . and .. are not visible in webfolders";s:19:"filename_visibility";s:10:"Visibility";s:32:"filename_windows_empty_extension";s:94:"Due to the character . at the end of the name this object is not visible in Windows webfolders";s:35:"filename_windows_special_characters";s:95:"Due to one of the characters \\ / : * ? " < > | this object is not visible in Windows webfolders";s:29:"filename_windows_webdav_issue";s:71:"Due to the character # this object is not visible in Windows webfolders";s:8:"filename";s:9:"File Name";s:5:"files";s:5:"Files";s:8:"filesize";s:9:"File Size";s:8:"filetype";s:9:"File Type";s:28:"fill_out_all_required_fields";s:35:"Please fill out all required fields";s:24:"filter_users_with_access";s:22:"Only users with access";s:28:"filter_users_with_disk_usage";s:31:"Only users with disk space used";s:37:"filter_users_with_exceeded_disk_quota";s:35:"Only users with disk quota exceeded";s:27:"filter_users_without_access";s:25:"Only users without access";s:31:"filter_users_without_disk_usage";s:34:"Only users with no disk space used";s:6:"filter";s:6:"Filter";s:9:"firstname";s:10:"First Name";s:8:"flatview";s:12:"Hide Sidebar";s:8:"fold_add";s:10:"Add Folder";s:10:"fold_added";s:12:"Folder added";s:9:"fold_edit";s:11:"Edit Folder";s:8:"fold_new";s:10:"New Folder";s:4:"fold";s:6:"Folder";s:6:"folder";s:6:"Folder";s:7:"folders";s:7:"Folders";s:26:"force_accept_usr_agreement";s:37:"You must accept the terms of service!";s:15:"forgot_password";s:21:"Forgot your password?";s:15:"forgot_username";s:21:"Forgot your username?";s:20:"form_input_not_valid";s:68:"Some data is incomplete or not valid. Please correct the form input.";s:25:"forum_direct_notification";s:12:"Notification";s:15:"forum_notify_me";s:165:"Notify me when a direct answer has been given to this posting. Notification about any posting in this thread or forum can be enabled in the upper right Actions menu.";s:18:"forum_post_replied";s:34:"Your forum entry has been replied.";s:5:"forum";s:5:"Forum";s:17:"forums_anonymized";s:16:"Forum anonymized";s:16:"forums_anonymous";s:6:"anonym";s:15:"forums_articles";s:8:"Articles";s:33:"forums_disable_forum_notification";s:35:"Disable Notification for this Forum";s:32:"forums_enable_forum_notification";s:34:"Enable Notification for this Forum";s:33:"forums_forum_notification_enabled";s:54:"You will be notified about new messages in this forum.";s:16:"forums_last_post";s:14:"Latest Article";s:19:"forums_new_articles";s:12:"New Articles";s:28:"forums_notification_settings";s:28:"Forums Notification Settings";s:14:"forums_threads";s:7:"Threads";s:16:"forums_use_alias";s:131:"You may use a pseudonym for your posting. If you leave this field blank, your posting will be marked as written by ‘Anonymous’.";s:16:"forums_your_name";s:9:"Your Name";s:6:"forums";s:6:"Forums";s:7:"frm_add";s:9:"Add Forum";s:9:"frm_added";s:11:"Forum added";s:8:"frm_edit";s:10:"Edit Forum";s:19:"frm_latest_postings";s:15:"Latest Articles";s:7:"frm_new";s:9:"New Forum";s:22:"frm_statistics_ranking";s:7:"Ranking";s:3:"frm";s:5:"Forum";s:4:"from";s:4:"From";s:8:"fullname";s:9:"Full name";s:9:"functions";s:9:"Functions";s:20:"further_informations";s:19:"Further Information";s:7:"gdf_add";s:14:"Add Definition";s:7:"gdf_new";s:14:"New Definition";s:8:"gender_f";s:3:"Ms.";s:8:"gender_m";s:3:"Mr.";s:8:"gender_n";s:21:"No salutation desired";s:6:"gender";s:10:"Salutation";s:16:"general_settings";s:16:"General Settings";s:8:"generate";s:8:"Generate";s:7:"glo_add";s:12:"Add Glossary";s:9:"glo_added";s:14:"Glossary added";s:13:"glo_mode_desc";s:321:"A virtual glossary works like a normal glossary. Additionally it contains the terms from all glossaries that are located on the same level in the repository like the virtual glossary (level) respectively from all glossaries that are located downwards in the repository from the position of the virtual glossary (subtree).";s:14:"glo_mode_level";s:25:"virtual (this level only)";s:15:"glo_mode_normal";s:6:"normal";s:16:"glo_mode_subtree";s:24:"virtual (entire subtree)";s:8:"glo_mode";s:4:"Mode";s:7:"glo_new";s:12:"New Glossary";s:3:"glo";s:8:"Glossary";s:14:"global_default";s:14:"Global Default";s:12:"global_fixed";s:12:"Global Fixed";s:15:"global_settings";s:15:"Global settings";s:11:"global_user";s:12:"Global users";s:6:"global";s:6:"Global";s:10:"glossaries";s:10:"Glossaries";s:8:"glossary";s:8:"Glossary";s:2:"go";s:2:"Go";s:13:"group_members";s:13:"Group Members";s:10:"group_name";s:10:"Group Name";s:23:"group_new_registrations";s:13:"Join Requests";s:31:"group_password_registration_msg";s:126:"If you know the group password, you can join this group. Please contact a group administrator, if you don\'t know the password.";s:23:"group_registration_mode";s:22:"Registration Procedure";s:23:"group_registration_time";s:19:"Registration Period";s:18:"group_registration";s:12:"Registration";s:16:"group_req_direct";s:13:"Join directly";s:26:"group_req_registration_msg";s:215:"You have to request for membership to access this group. Please describe your interest for becoming member in the message form. You will be notified as soon as an administrator has accepted or declined your request.";s:12:"group_status";s:8:"Group is";s:5:"group";s:5:"Group";s:26:"groupings_assigned_obj_crs";s:16:"Assigned Courses";s:26:"groupings_assigned_obj_grp";s:15:"Assigned Groups";s:9:"groupings";s:22:"Membership Limitations";s:6:"groups";s:6:"Groups";s:7:"grp_add";s:9:"Add Group";s:9:"grp_added";s:11:"Group added";s:19:"grp_btn_unsubscribe";s:22:"Unsubscribe from Group";s:23:"grp_cancel_waiting_list";s:74:"Do you really want to remove yourself from the waiting list of group "%s"?";s:21:"grp_copy_threads_info";s:71:"Please decide which materials should be copied, linked or even omitted.";s:24:"grp_deleted_export_files";s:23:"Deleted selected files.";s:18:"grp_dismiss_member";s:76:"Are you sure you want to unsubscribe the following member(s) from the group?";s:18:"grp_dismiss_myself";s:53:"Are you sure you want to unsubscribe from this group?";s:8:"grp_edit";s:10:"Edit Group";s:30:"grp_err_administrator_required";s:79:"Member could not be removed, at least one administrator per group is required !";s:23:"grp_header_edit_members";s:12:"Edit members";s:16:"grp_list_members";s:12:"List members";s:14:"grp_list_users";s:10:"List users";s:21:"grp_mem_change_status";s:25:"Change Participant Status";s:17:"grp_mem_send_mail";s:27:"Send Participants a Message";s:19:"grp_members_gallery";s:21:"Group Members Gallery";s:27:"grp_msg_applicants_assigned";s:40:"Applicant(s) assigned as group member(s)";s:23:"grp_msg_member_assigned";s:35:"User(s) assigned as group member(s)";s:27:"grp_msg_membership_annulled";s:21:"Cancelled membership.";s:7:"grp_new";s:9:"New Group";s:26:"grp_registration_completed";s:25:"You have joined the group";s:16:"grp_registration";s:10:"Join Group";s:29:"grp_removed_from_waiting_list";s:59:"You have been detached from the waiting list of group "%s".";s:19:"grp_select_one_file";s:23:"Please select one file.";s:15:"grp_wizard_page";s:21:"Copy Group (Step 2/2)";s:3:"grp";s:5:"Group";s:17:"header_searchable";s:10:"Searchable";s:12:"header_title";s:12:"Header Title";s:27:"header_visible_registration";s:23:"Visible in Registration";s:10:"header_zip";s:36:"Upload Multiple Files as Zip-Archive";s:6:"height";s:6:"Height";s:4:"help";s:4:"Help";s:2:"HH";s:5:"HH:MM";s:10:"dd_mm_yyyy";s:10:"DD.MM.YYYY";s:12:"hide_details";s:12:"Hide Details";s:11:"hide_filter";s:11:"Hide Filter";s:22:"hide_own_online_status";s:21:"Hide My Online Status";s:4:"hide";s:4:"Hide";s:4:"hint";s:4:"Hint";s:17:"hist_lm_delete_pg";s:32:"Page "%1" [%2] has been deleted.";s:17:"hist_lm_delete_st";s:35:"Chapter "%1" [%2] has been deleted.";s:17:"hist_lm_pg_create";s:13:"Page created.";s:17:"hist_lm_st_create";s:16:"Chapter created.";s:13:"hist_webr_add";s:34:"Added new Weblink with title: "%1"";s:16:"hist_webr_delete";s:32:"Deleted Weblink with title: "%1"";s:16:"hist_webr_update";s:33:"Modified Weblink with title: "%1"";s:7:"history";s:7:"History";s:13:"hits_per_page";s:9:"Hits/Page";s:5:"hobby";s:17:"Interests/Hobbies";s:4:"home";s:11:"Public Area";s:4:"host";s:4:"Host";s:4:"hour";s:4:"Hour";s:5:"hours";s:5:"Hours";s:8:"htlm_add";s:24:"Add HTML Learning Module";s:8:"htlm_new";s:24:"New HTML Learning Module";s:4:"htlm";s:20:"Learning Module HTML";s:17:"http_not_possible";s:44:"This server is not supporting http requests.";s:9:"http_path";s:9:"HTTP Path";s:4:"http";s:4:"HTTP";s:18:"https_not_possible";s:48:"This server is not supporting HTTPS connections.";s:8:"i2passwd";s:16:"ILIAS 2 password";s:13:"icon_settings";s:12:"Custom Icons";s:4:"icon";s:4:"Icon";s:2:"id";s:2:"ID";s:10:"identifier";s:10:"identifier";s:25:"if_no_title_then_filename";s:38:"Leave blank to use file name as title.";s:18:"ignore_on_conflict";s:18:"Ignore on conflict";s:17:"il_chat_moderator";s:14:"Chat Moderator";s:12:"il_crs_admin";s:20:"Course Administrator";s:13:"il_crs_member";s:13:"Course Member";s:17:"il_crs_non_member";s:17:"Course non-member";s:12:"il_crs_tutor";s:12:"Course Tutor";s:16:"il_frm_moderator";s:15:"Forum moderator";s:12:"il_grp_admin";s:19:"Group Administrator";s:13:"il_grp_member";s:12:"Group Member";s:20:"il_grp_status_closed";s:12:"Group closed";s:18:"il_grp_status_open";s:10:"Group open";s:13:"ilias_version";s:13:"ILIAS version";s:5:"image";s:5:"Image";s:19:"import_cat_localrol";s:40:"Create local role for every new category";s:16:"import_cat_table";s:61:"The following table is only meaningful if the checkbox is set";s:17:"import_categories";s:17:"Import Categories";s:18:"import_failure_log";s:18:"Import failure log";s:21:"import_file_not_valid";s:29:"The import file is not valid.";s:11:"import_file";s:11:"Import File";s:15:"import_finished";s:28:"Number of imported messages.";s:9:"import_lm";s:28:"Import ILIAS Learning module";s:10:"import_qpl";s:25:"Import Question Pool Test";s:25:"import_questions_into_qpl";s:37:"Import question(s) into question pool";s:11:"import_sahs";s:20:"Import SCORM Package";s:10:"import_svy";s:13:"Import Survey";s:10:"import_tst";s:11:"Import Test";s:12:"import_users";s:12:"Import Users";s:18:"import_warning_log";s:18:"Import warning log";s:6:"import";s:6:"Import";s:9:"important";s:9:"Important";s:8:"imported";s:8:"imported";s:9:"in_use_by";s:9:"In use by";s:6:"in_use";s:13:"User Language";s:2:"in";s:2:"in";s:8:"inactive";s:8:"Inactive";s:5:"inbox";s:5:"Inbox";s:13:"include_local";s:51:"include custom language file when updating language";s:27:"info_access_and_status_info";s:30:"Access- and status information";s:23:"info_access_permissions";s:18:"Access Permissions";s:18:"info_activate_sure";s:78:"Are you sure that you want to approve the following user(s) as active user(s)?";s:16:"info_assign_sure";s:54:"Are you sure you want to assign the following user(s)?";s:13:"info_assigned";s:8:"assigned";s:20:"info_available_roles";s:15:"Available Roles";s:21:"info_change_user_view";s:11:"Change User";s:20:"info_deactivate_sure";s:63:"Are you sure that you want to deactivate the following user(s)?";s:16:"info_delete_sure";s:59:"Are you sure that you want to delete the following item(s)?";s:16:"info_remove_sure";s:59:"Are you sure that you want to remove the following item(s)?";s:28:"info_delete_warning_no_trash";s:102:"(WARNING: Selected Objects will be removed irreversibly from System and may not be recovered anymore!)";s:12:"info_deleted";s:17:"Object(s) Deleted";s:23:"info_err_user_not_exist";s:52:"User with that login name or user_id does not exists";s:14:"info_from_role";s:27:"Granted by Role / Ownership";s:14:"info_is_member";s:14:"User is member";s:18:"info_is_not_member";s:20:"User is not a member";s:12:"info_message";s:19:"Information Message";s:17:"info_not_assigned";s:12:"not assigned";s:20:"info_owner_of_object";s:15:"Owner of object";s:22:"info_permission_origin";s:17:"Original Position";s:22:"info_permission_source";s:15:"Effective From*";s:23:"info_remark_interrupted";s:116:"Role is interrupted at this position. The role\'s default permission settings in effect are located in that position.";s:10:"info_short";s:4:"Info";s:16:"info_status_info";s:19:"Permissions of User";s:17:"info_view_of_user";s:4:"User";s:4:"info";s:11:"Information";s:16:"inform_user_mail";s:38:"Send mail to inform user about changes";s:27:"inline_file_extensions_info";s:158:"Files with these extensions are displayed in the browser window.
For example: gif jpg mp3 pdf png
All other files are offered for downloading.";s:22:"inline_file_extensions";s:17:"Web-enabled files";s:18:"insert_object_here";s:26:"Insert at Current Position";s:6:"insert";s:6:"Insert";s:7:"inst_id";s:15:"Installation ID";s:9:"inst_info";s:17:"Installation Info";s:9:"inst_name";s:17:"Installation Name";s:13:"install_local";s:24:"Install With Custom File";s:7:"install";s:7:"Install";s:15:"installed_local";s:26:"Installed With Custom file";s:9:"installed";s:9:"Installed";s:18:"instant_messengers";s:18:"Instant Messengers";s:11:"institution";s:11:"Institution";s:25:"internal_local_roles_only";s:42:"Local roles (only automatically generated)";s:41:"invalid_visible_required_options_selected";s:73:"All fields set to required has to be set to visible in registration, too.";s:20:"invisible_block_mess";s:50:"You do not have the permission to view this block.";s:15:"invisible_block";s:15:"Invisible Block";s:10:"ip_address";s:10:"IP Address";s:15:"is_already_your";s:15:"is already your";s:4:"item";s:4:"Item";s:16:"java_server_host";s:4:"Host";s:16:"java_server_info";s:83:"If activated, it is possible to search in PDF, HTML files and HTML-Learning modules";s:16:"java_server_port";s:4:"Port";s:18:"java_server_readme";s:17:"Setup information";s:11:"java_server";s:11:"Java-Server";s:12:"join_session";s:6:"Attend";s:4:"join";s:4:"Join";s:2:"kb";s:5:"KByte";s:8:"keywords";s:8:"Keywords";s:15:"lang_dateformat";s:5:"Y-m-d";s:9:"lang_path";s:13:"Language Path";s:25:"lang_refresh_confirm_info";s:274:"ILIAS found changed language variables. Refreshing a language will read the standard language file and probably a custom language file to the database. A standard file will not affect your changes. A custom file will overwrite your changes that are older than the file date.";s:29:"lang_refresh_confirm_selected";s:53:"Do you really want to refresh the selected languages?";s:20:"lang_refresh_confirm";s:44:"Do you really want to refresh all languages?";s:22:"lang_uninstall_confirm";s:55:"Do you really want to uninstall the selected languages?";s:22:"lang_uninstall_changes";s:23:"Uninstall Local Changes";s:30:"lang_uninstall_changes_confirm";s:131:"Do you really want to clear all local changes of the selected languages and reset them to the default of the current ILIAS version?";s:16:"lang_sep_decimal";s:1:".";s:17:"lang_sep_thousand";s:1:",";s:15:"lang_size_bytes";s:5:"bytes";s:12:"lang_size_gb";s:2:"GB";s:12:"lang_size_kb";s:2:"KB";s:12:"lang_size_mb";s:2:"MB";s:22:"lang_timeformat_no_sec";s:3:"H:i";s:15:"lang_timeformat";s:5:"H:i:s";s:14:"langfile_found";s:19:"Language file found";s:22:"language_not_installed";s:52:"is not installed. Please install that language first";s:8:"language";s:8:"Language";s:27:"languages_already_installed";s:42:"Selected language(s) are already installed";s:29:"languages_already_uninstalled";s:44:"Selected language(s) are already uninstalled";s:17:"languages_updated";s:41:"All installed languages have been updated";s:9:"languages";s:9:"Languages";s:11:"last_access";s:11:"Last Access";s:11:"last_change";s:11:"Last Change";s:14:"last_edited_on";s:14:"Last edited on";s:10:"last_login";s:10:"Last Login";s:12:"last_refresh";s:12:"Last Refresh";s:13:"last_reminder";s:13:"Last reminder";s:11:"last_update";s:7:"Updated";s:12:"last_visited";s:12:"Last Visited";s:8:"lastname";s:9:"Last Name";s:6:"launch";s:6:"Launch";s:11:"ldap_basedn";s:11:"LDAP BaseDN";s:14:"ldap_configure";s:29:"Configure LDAP Authentication";s:9:"ldap_port";s:9:"LDAP Port";s:9:"ldap_read";s:28:"Read access to LDAP settings";s:11:"ldap_server";s:15:"LDAP Server URL";s:8:"ldap_tls";s:12:"Use LDAP TLS";s:12:"ldap_version";s:22:"LDAP protokoll version";s:4:"ldap";s:4:"LDAP";s:15:"learning module";s:15:"Learning Module";s:17:"learning_progress";s:17:"Learning Progress";s:18:"leave_waiting_list";s:18:"Leave Waiting List";s:6:"legend";s:6:"Legend";s:5:"level";s:5:"Level";s:8:"link_all";s:8:"Link all";s:20:"link_check_message_b";s:61:"If enabled, you will be informed about invalid links by mail.";s:27:"link_check_message_disabled";s:17:"Messages disabled";s:26:"link_check_message_enabled";s:16:"Messages enabled";s:18:"link_check_subject";s:21:"[ILIAS] Weblink check";s:10:"link_check";s:13:"Weblink Check";s:22:"link_checker_refreshed";s:14:"Refreshed view";s:19:"link_selected_items";s:4:"Link";s:4:"link";s:4:"Link";s:15:"links_add_param";s:14:"Add Parameter:";s:19:"links_dyn_parameter";s:18:"Dynamic Parameters";s:18:"links_dynamic_info";s:114:"If enabled, it is possible to append dynamic parameters to Weblinks.
E.g. the ILIAS user ID or the username.";s:13:"links_dynamic";s:26:"Dynamic Weblink Parameters";s:21:"links_existing_params";s:20:"Existing Parameters:";s:10:"links_name";s:14:"Parameter Name";s:19:"links_no_name_given";s:31:"Please choose a parameter name.";s:20:"links_no_value_given";s:32:"Please choose a parameter value.";s:23:"links_parameter_deleted";s:18:"Parameter deleted.";s:16:"links_select_one";s:14:"- Select one -";s:16:"links_session_id";s:16:"ILIAS session id";s:13:"links_user_id";s:13:"ILIAS user id";s:15:"links_user_name";s:14:"ILIAS username";s:11:"links_value";s:15:"Parameter Value";s:17:"list_of_questions";s:17:"List of Questions";s:4:"list";s:4:"List";s:6:"lm_add";s:25:"Add ILIAS Learning Module";s:8:"lm_added";s:27:"ILIAS Learning Module added";s:6:"lm_new";s:25:"New ILIAS Learning Module";s:13:"lm_type_scorm";s:9:"SCORM 1.2";s:17:"lm_type_scorm2004";s:26:"SCORM 2004 3rd/4th Edition";s:2:"lm";s:21:"Learning Module ILIAS";s:3:"lng";s:8:"Language";s:4:"lngf";s:9:"Languages";s:2:"lo";s:15:"Learning Object";s:19:"local_language_file";s:20:"custom language file";s:20:"local_language_files";s:21:"custom language files";s:33:"local_languages_already_installed";s:54:"Selected custom language file(s) are already installed";s:5:"local";s:5:"Local";s:8:"location";s:8:"Location";s:7:"locator";s:9:"Location:";s:6:"log_in";s:5:"Login";s:7:"log_out";s:6:"Logout";s:8:"logic_or";s:2:"or";s:8:"login_as";s:12:"Logged in as";s:10:"login_data";s:10:"Login data";s:12:"login_exists";s:72:"There is already a user with this login name! Please choose another one.";s:22:"login_information_desc";s:61:"Please enter a login information for the respective language.";s:32:"login_information_settings_saved";s:45:"The login information were saved successfully";s:17:"login_information";s:17:"Login Information";s:13:"login_invalid";s:117:"The chosen login is invalid! Only the following characters are allowed (minimum 3 characters): A-Z a-z 0-9 _.-+*@!$%~";s:22:"login_to_ilias_via_cas";s:49:"Login to ILIAS via Central Authentication Service";s:29:"login_to_ilias_via_shibboleth";s:18:"Login to ILIAS via";s:14:"login_to_ilias";s:14:"Login to ILIAS";s:5:"login";s:5:"Login";s:24:"loginname_already_exists";s:31:"This login name already exists.";s:18:"loginname_settings";s:19:"Login Name Settings";s:11:"logout_text";s:56:"You logged off from ILIAS. Your session has been closed.";s:6:"logout";s:6:"Logout";s:4:"logs";s:8:"Log Data";s:4:"lres";s:18:"Learning Resources";s:16:"mail_addressbook";s:8:"Contacts";s:15:"mail_attachment";s:15:"Mail attachment";s:12:"mail_b_inbox";s:5:"Inbox";s:12:"mail_c_trash";s:5:"Trash";s:13:"mail_d_drafts";s:6:"Drafts";s:17:"mail_delete_error";s:20:"Error while deleting";s:11:"mail_e_sent";s:4:"Sent";s:20:"mail_edit_permission";s:58:"User can change permission settings in Mail administration";s:12:"mail_folders";s:12:"Mail Folders";s:16:"mail_import_file";s:11:"Export file";s:13:"mail_mails_of";s:4:"Mail";s:19:"mail_maxsize_attach";s:20:"Max. attachment size";s:12:"mail_members";s:15:"Mail to Members";s:30:"mail_multiple_recipients_found";s:97:"Enter a more specific mail address. ILIAS found multiple possible recipients for this address: %s";s:23:"mail_no_recipient_found";s:87:"Enter a different mail address. ILIAS couldn\'t find a recipient with this mail address.";s:13:"mail_not_sent";s:14:"Mail not sent!";s:14:"mail_search_no";s:17:"No entries found.";s:15:"mail_select_one";s:24:"You must select one mail";s:15:"mail_send_error";s:18:"Error sending mail";s:9:"mail_sent";s:10:"Mail sent!";s:13:"mail_settings";s:13:"Mail Settings";s:12:"mail_z_local";s:12:"User Folders";s:4:"mail";s:4:"Mail";s:8:"mails_pl";s:7:"Mail(s)";s:5:"mails";s:5:"Mails";s:9:"main_menu";s:9:"Main Menu";s:36:"add_remove_edit_entries_of_main_menu";s:44:"Add, remove or edit entries of the main menu";s:3:"all";s:3:"All";s:11:"only_active";s:11:"Only Active";s:13:"only_inactive";s:13:"Only Inactive";s:12:"entry_status";s:12:"Entry status";s:14:"manage_members";s:14:"Manage Members";s:14:"marked_entries";s:14:"Marked Entries";s:13:"matriculation";s:20:"Matriculation number";s:8:"mcst_add";s:13:"Add Mediacast";s:8:"mcst_new";s:13:"New Mediacast";s:4:"mcst";s:9:"Mediacast";s:13:"mem_add_to_wl";s:19:"Add to Waiting List";s:19:"mem_alert_no_places";s:35:"There are no free places available.";s:7:"mem_end";s:17:"Registration End:";s:15:"mem_free_places";s:11:"Free Places";s:13:"mem_max_users";s:17:"Maximum of Users:";s:16:"mem_participants";s:12:"Participants";s:15:"mem_reg_expired";s:33:"The registration time is expired.";s:19:"mem_reg_not_started";s:32:"The registration has not started";s:14:"mem_reg_period";s:19:"Registration Period";s:12:"mem_reg_type";s:17:"Registration Type";s:9:"mem_start";s:19:"Registration Start:";s:13:"mem_unlimited";s:9:"Unlimited";s:17:"mem_view_activate";s:16:"Show Member View";s:14:"mem_view_close";s:17:"Close Member View";s:13:"mem_view_long";s:11:"Member View";s:25:"mem_waiting_list_position";s:34:"Your Position on the Waiting List:";s:16:"mem_waiting_list";s:22:"Users on Waiting List:";s:13:"member_status";s:13:"Member Status";s:6:"member";s:6:"Member";s:7:"members";s:7:"Members";s:16:"membership_leave";s:5:"Leave";s:7:"mep_add";s:14:"Add Media Pool";s:8:"mep_edit";s:26:"Edit Media Pool Properties";s:7:"mep_new";s:14:"New Media Pool";s:28:"mep_not_insert_already_exist";s:86:"The following items have not been inserted because they are already in the media pool:";s:3:"mep";s:10:"Media Pool";s:15:"message_content";s:15:"Message Content";s:26:"message_no_delivered_files";s:33:"You have not submitted any files.";s:7:"message";s:7:"Message";s:9:"meta_data";s:8:"Metadata";s:45:"mgs_objects_linked_to_the_following_folders_p";s:51:"The objects were linked to the following folder(s).";s:45:"mgs_objects_linked_to_the_following_folders_s";s:49:"The object was linked to the following folder(s).";s:7:"migrate";s:7:"Migrate";s:6:"minute";s:6:"Minute";s:7:"minutes";s:7:"Minutes";s:12:"missing_perm";s:18:"Missing Permission";s:20:"missing_precondition";s:20:"Missing Precondition";s:7:"missing";s:7:"Missing";s:3:"mob";s:12:"Media Object";s:10:"moderators";s:10:"Moderators";s:6:"module";s:6:"module";s:7:"modules";s:7:"Modules";s:13:"month_01_long";s:7:"January";s:14:"month_01_short";s:3:"Jan";s:13:"month_02_long";s:8:"February";s:14:"month_02_short";s:3:"Feb";s:13:"month_03_long";s:5:"March";s:14:"month_03_short";s:3:"Mar";s:13:"month_04_long";s:5:"April";s:14:"month_04_short";s:3:"Apr";s:13:"month_05_long";s:3:"May";s:14:"month_05_short";s:3:"May";s:13:"month_06_long";s:4:"June";s:14:"month_06_short";s:3:"Jun";s:13:"month_07_long";s:4:"July";s:14:"month_07_short";s:3:"Jul";s:13:"month_08_long";s:6:"August";s:14:"month_08_short";s:3:"Aug";s:13:"month_09_long";s:9:"September";s:14:"month_09_short";s:3:"Sep";s:13:"month_10_long";s:7:"October";s:14:"month_10_short";s:3:"Oct";s:13:"month_11_long";s:8:"November";s:14:"month_11_short";s:3:"Nov";s:13:"month_12_long";s:8:"December";s:14:"month_12_short";s:3:"Dec";s:5:"month";s:5:"Month";s:7:"monthly";s:7:"monthly";s:6:"months";s:6:"Months";s:15:"mount_webfolder";s:17:"Open as webfolder";s:19:"move_selected_items";s:4:"Move";s:4:"move";s:4:"Move";s:11:"moveChapter";s:4:"Move";s:8:"movePage";s:4:"Move";s:10:"msg_cancel";s:16:"Action cancelled";s:19:"msg_clear_clipboard";s:17:"Clipboard cleared";s:10:"msg_cloned";s:25:"Selected object(s) copied";s:25:"msg_copy_clipboard_source";s:115:"Now, please select the desired course or group, whose content should be copied and click the button ‘Continue’.";s:18:"msg_copy_clipboard";s:123:"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.";s:28:"msg_copy_clipboard_container";s:126:"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Continue’.";s:17:"msg_cut_clipboard";s:123:"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.";s:14:"msg_cut_copied";s:25:"Selected object(s) moved.";s:24:"msg_deleted_export_files";s:22:"Export file(s) deleted";s:16:"msg_deleted_role";s:12:"Role deleted";s:23:"msg_deleted_roles_rolts";s:32:"Roles and Role Templates deleted";s:10:"msg_failed";s:20:"Sorry, action failed";s:19:"msg_form_save_error";s:87:"The form data could not be saved. Please check the input fields for any error messages.";s:31:"msg_input_does_not_match_regexp";s:29:"Please provide a valid value.";s:21:"msg_input_is_required";s:45:"This input is required. Please enter a value.";s:16:"msg_is_last_role";s:57:"You removed the last global role from the following users";s:30:"msg_last_role_for_registration";s:122:"At least one role must be available in the registration form for new users. This role is currently the only one available.";s:20:"msg_link_clipboard_p";s:115:"Now, please select the desired location, where the selected objects should be linked to and click the button Paste.";s:20:"msg_link_clipboard_s";s:114:"Now, please select the desired location, where the selected object should be linked to and click the button Paste.";s:10:"msg_linked";s:26:"Selected object(s) linked.";s:19:"msg_may_not_contain";s:44:"This object may not contain objects of type:";s:16:"msg_min_one_role";s:45:"Each user must have at least one global role!";s:27:"msg_multi_language_selected";s:58:"You selected the same language for different translations!";s:23:"msg_no_default_language";s:86:"No default language specified! You must define one translation as default translation.";s:22:"msg_no_delete_yourself";s:40:"You cannot delete your own user account.";s:11:"msg_no_file";s:58:"You didn\'t choose a file or the selected file was too big.";s:24:"msg_no_language_selected";s:82:"No translation language specified! You must define a language for each translation";s:31:"msg_no_perm_assign_role_to_user";s:55:"You have no permission to change user\'s role assignment";s:31:"msg_no_perm_assign_user_to_role";s:52:"You have no permission to change the user assignment";s:16:"msg_no_perm_copy";s:67:"You have no permission to create a copy of the following object(s):";s:23:"msg_no_perm_create_rolt";s:44:"You have no permission to add role templates";s:15:"msg_no_perm_cut";s:54:"You have no permission to cut the following object(s):";s:18:"msg_no_perm_delete";s:57:"You have no permission to delete the following object(s):";s:16:"msg_no_perm_link";s:69:"You have no permission to create a link from the following object(s):";s:23:"msg_no_perm_modify_rolt";s:47:"You have no permission to modify role templates";s:23:"msg_no_perm_modify_user";s:42:"You have no permission to modify user data";s:34:"msg_no_perm_paste_object_in_folder";s:63:"You have no permission to paste the object %s in the folder %s.";s:17:"msg_no_perm_paste";s:56:"You have no permission to paste the following object(s):";s:16:"msg_no_perm_perm";s:50:"You have no permission to edit permission settings";s:21:"msg_no_perm_read_item";s:45:"You have no permission to access item \'%s’.";s:19:"msg_no_perm_read_lm";s:52:"You have no permission to read this learning module.";s:16:"msg_no_perm_read";s:43:"You have no permission to access this item.";s:17:"msg_no_perm_write";s:31:"You have no permission to write";s:20:"msg_no_search_result";s:16:"No entries found";s:20:"msg_no_search_string";s:23:"Please enter your query";s:12:"msg_no_title";s:21:"Please enter a title.";s:26:"msg_not_available_for_anon";s:64:"The page you have chosen is only accessible for registered users";s:17:"msg_not_in_itself";s:49:"It’s not possible to paste the object in itself";s:15:"msg_obj_created";s:15:"Object created.";s:24:"msg_obj_exists_in_folder";s:46:"The object %s already exists in the folder %s.";s:14:"msg_obj_exists";s:41:"This object already exists in this folder";s:39:"msg_obj_may_not_contain_objects_of_type";s:50:"The object %s may not contain objects of type: %s.";s:16:"msg_obj_modified";s:20:"Modifications saved.";s:15:"msg_obj_no_link";s:250:"It is not possible to link container objects like categories, courses, groups or folder due to technical reasons. Instead you may link several single objects within such a container to other areas or create a category link, course link or group link.";s:30:"msg_paste_object_not_in_itself";s:55:"It’s not possible to paste the Object "%s" in itself.";s:28:"msg_perm_adopted_from_itself";s:80:"You cannot adopt permission settings from the current role/role template itself.";s:22:"msg_perm_adopted_from1";s:32:"Permission settings adopted from";s:22:"msg_perm_adopted_from2";s:27:"(Settings have been saved!)";s:11:"msg_removed";s:30:"Object(s) removed from system.";s:24:"msg_role_reserved_prefix";s:94:"The prefix ‘il_’ is reserved for automatically generated roles. Please choose another name";s:26:"msg_roleassignment_changed";s:23:"Role assignment changed";s:25:"msg_sysrole_not_deletable";s:33:"The system role cannot be deleted";s:24:"msg_sysrole_not_editable";s:151:"The permission settings of the system role may not be changed. The system role grants all assigned users unlimited access to all objects and functions.";s:15:"msg_trash_empty";s:28:"There are no deleted objects";s:13:"msg_undeleted";s:19:"Object(s) restored.";s:20:"msg_unit_is_required";s:57:"This input requires a unit. Please enter a correct value.";s:19:"msg_user_last_role1";s:51:"The following users are assigned to this role only:";s:19:"msg_user_last_role2";s:84:"Please delete the users or assign them to another role in order to delete this role.";s:26:"msg_userassignment_changed";s:23:"User assignment changed";s:16:"msg_wrong_format";s:44:"The value you entered is not a valid format.";s:23:"msg_bt_download_started";s:134:"ILIAS is generating a ZIP archive of all available files. You can download them from the Notification Center (bell icon) on top right.";s:6:"my_bms";s:9:"Bookmarks";s:10:"my_courses";s:10:"My Courses";s:4:"name";s:4:"Name";s:5:"never";s:5:"never";s:12:"new_language";s:12:"New Language";s:24:"new_pass_equals_old_pass";s:36:"The new password equals the old one.";s:3:"new";s:3:"New";s:7:"newline";s:7:"Newline";s:4:"news";s:4:"News";s:4:"next";s:4:"Next";s:21:"no_access_item_public";s:81:"To access this item you need to be logged in and to have appropriate permissions.";s:14:"no_access_item";s:43:"You have no permission to access this item.";s:24:"no_agreement_description";s:136:"There is currently no terms of service text provided with this installation. Please contact the system administrator.";s:11:"no_checkbox";s:28:"You did not select any item.";s:21:"no_condition_selected";s:31:"Please select one precondition.";s:7:"no_date";s:7:"No date";s:19:"no_global_role_left";s:42:"Every user has to be assigned to one role.";s:24:"user_not_found_to_delete";s:36:"A user could not be found to delete.";s:20:"no_import_file_found";s:20:"No import file found";s:8:"no_items";s:43:"This object is empty and contains no items.";s:8:"no_limit";s:8:"No limit";s:21:"no_mkisofs_configured";s:70:"You have to configure mkisofs utility in ILIAS setup to run ISO export";s:8:"no_owner";s:8:"No Owner";s:16:"no_parent_access";s:37:"No access to a superordinated object!";s:13:"no_permission";s:41:"You do not have the necessary permission.";s:32:"no_roles_user_can_be_assigned_to";s:98:"There are no global roles the user can be assigned to. Therefore you are not allowed to add users.";s:13:"no_start_file";s:14:"No Start File.";s:8:"no_title";s:8:"No Title";s:17:"no_users_selected";s:23:"Please select one user.";s:24:"no_xml_file_found_in_zip";s:35:"XML file within zip file not found:";s:2:"no";s:2:"No";s:3:"noc";s:19:"Notification Center";s:29:"non_internal_local_roles_only";s:31:"Local roles (only user defined)";s:4:"none";s:4:"None";s:6:"normal";s:6:"Normal";s:13:"not_available";s:13:"Not Available";s:19:"not_implemented_yet";s:19:"Not implemented yet";s:13:"not_installed";s:13:"Not Installed";s:13:"not_logged_in";s:21:"You are not logged in";s:4:"note";s:4:"Note";s:18:"notes_and_comments";s:18:"Notes and Comments";s:5:"notes";s:5:"Notes";s:13:"notifications";s:13:"Notifications";s:9:"num_users";s:15:"Number of Users";s:13:"edit_metadata";s:13:"Edit Metadata";s:13:"obj_accs_desc";s:36:"Settings for accessibility features.";s:16:"obj_accs_captcha";s:8:"Captchas";s:8:"obj_accs";s:13:"Accessibility";s:12:"obj_adm_desc";s:90:"Main system settings folder containing all panels to administrate your ILIAS installation.";s:7:"obj_adm";s:14:"Administration";s:13:"obj_adve_desc";s:58:"Administration settings for ILIAS page editor and TinyMCE.";s:8:"obj_adve";s:7:"Editing";s:13:"obj_assf_desc";s:50:"Platform settings for the Test and Assessment tool";s:8:"obj_assf";s:19:"Test and Assessment";s:13:"obj_auth_desc";s:97:"Configure your authentication mode (local, LDAP, ...) and new account registration settings here.";s:8:"obj_auth";s:31:"Authentication and Registration";s:13:"obj_cals_desc";s:26:"General Calendar settings.";s:8:"obj_cals";s:8:"Calendar";s:17:"obj_cat_duplicate";s:13:"Copy Category";s:7:"obj_cat";s:8:"Category";s:8:"obj_catr";s:13:"Category Link";s:13:"obj_cert_desc";s:25:"Settings for certificates";s:8:"obj_cert";s:12:"Certificates";s:7:"obj_wfe";s:15:"Workflow Engine";s:8:"obj_chap";s:7:"Chapter";s:13:"obj_cmps_desc";s:28:"General settings for Plugins";s:8:"obj_cmps";s:7:"Plugins";s:17:"obj_crs_duplicate";s:11:"Copy Course";s:7:"obj_crs";s:6:"Course";s:8:"obj_crsr";s:11:"Course Link";s:7:"obj_dbk";s:12:"Digilib Book";s:7:"obj_exc";s:8:"Exercise";s:13:"obj_extt_desc";s:67:"Configure external software or services that are supported by ILIAS";s:8:"obj_extt";s:20:"Third Party Software";s:13:"obj_facs_desc";s:36:"Settings for files and file handling";s:8:"obj_facs";s:5:"Files";s:8:"obj_feed";s:8:"Web Feed";s:15:"obj_file_inline";s:20:"Learning Module File";s:8:"obj_file";s:4:"File";s:18:"obj_file_duplicate";s:14:"Duplicate File";s:8:"obj_fold";s:6:"Folder";s:17:"obj_frm_duplicate";s:10:"Copy Forum";s:7:"obj_frm";s:5:"Forum";s:7:"obj_glo";s:8:"Glossary";s:17:"obj_grp_duplicate";s:10:"Copy Group";s:7:"obj_grp";s:5:"Group";s:8:"obj_htlm";s:20:"Learning Module HTML";s:13:"obj_ldap_desc";s:36:"Configure global LDAP Settings here.";s:6:"obj_lm";s:21:"Learning Module ILIAS";s:7:"obj_lng";s:8:"Language";s:13:"obj_lngf_desc";s:34:"Manage your system languages here.";s:8:"obj_lngf";s:9:"Languages";s:13:"obj_lrss_desc";s:40:"Configure all types of learning modules.";s:8:"obj_lrss";s:16:"Learning Modules";s:13:"obj_mail_desc";s:36:"Configure global mail settings here.";s:8:"obj_mail";s:4:"Mail";s:8:"obj_mcst";s:9:"Mediacast";s:13:"obj_mcts_desc";s:31:"General settings for mediacast.";s:8:"obj_mcts";s:9:"Mediacast";s:7:"obj_mep";s:10:"Media Pool";s:7:"obj_mob";s:12:"Media Object";s:13:"obj_mobs_desc";s:43:"Settings for media objects and media pools.";s:8:"obj_mobs";s:23:"Media Objects and Pools";s:13:"obj_not_found";s:16:"Object Not Found";s:13:"obj_nwss_desc";s:50:"Settings for internal news and external web feeds.";s:8:"obj_nwss";s:18:"News and Web Feeds";s:13:"obj_objf_desc";s:69:"Manage ILIAS object types and object permissions. (only for experts!)";s:8:"obj_objf";s:18:"Object Definitions";s:8:"obj_page";s:4:"Page";s:6:"obj_pg";s:4:"Page";s:11:"obj_ps_desc";s:52:"Configure global privacy and security settings here.";s:6:"obj_ps";s:20:"Privacy and Security";s:17:"obj_qpl_duplicate";s:23:"Copy Question Pool Test";s:14:"obj_qpl_select";s:42:"-- Please select one question pool test --";s:7:"obj_qpl";s:18:"Question Pool Test";s:8:"obj_rcrs";s:10:"ECS Course";s:13:"obj_recf_desc";s:44:"Contains restored objects from System Check.";s:8:"obj_recf";s:16:"Restored Objects";s:8:"obj_role";s:4:"Role";s:13:"obj_rolf_desc";s:23:"Manage your roles here.";s:19:"obj_rolf_local_desc";s:34:"Contains local roles of object no.";s:14:"obj_rolf_local";s:11:"Local Roles";s:8:"obj_rolf";s:5:"Roles";s:8:"obj_rolt";s:13:"Role Template";s:8:"obj_root";s:17:"Repository - Home";s:8:"obj_sahs";s:21:"Learning Module SCORM";s:7:"obj_sco";s:3:"SCO";s:13:"obj_seas_desc";s:32:"Manage the search settings here.";s:8:"obj_seas";s:6:"Search";s:18:"obj_sess_duplicate";s:12:"Copy Session";s:8:"obj_sess";s:7:"Session";s:14:"obj_spl_select";s:44:"-- Please select one question pool survey --";s:7:"obj_spl";s:20:"Question Pool Survey";s:6:"obj_st";s:7:"Chapter";s:7:"obj_sty";s:5:"Style";s:13:"obj_stys_desc";s:42:"Manage system skin and style settings here";s:8:"obj_stys";s:17:"Layout and Styles";s:17:"obj_svy_duplicate";s:11:"Copy Survey";s:7:"obj_svy";s:6:"Survey";s:13:"obj_svyf_desc";s:37:"Platform settings for the Survey Tool";s:8:"obj_svyf";s:6:"Survey";s:13:"obj_tags_desc";s:29:"Settings for tagging feature.";s:8:"obj_tags";s:7:"Tagging";s:7:"obj_tax";s:8:"Taxonomy";s:8:"obj_taxf";s:10:"Taxonomies";s:13:"obj_trac_desc";s:54:"Statistics and Learning Progress Settings and Overview";s:8:"obj_trac";s:32:"Statistics and Learning Progress";s:17:"obj_tst_duplicate";s:9:"Copy Test";s:7:"obj_tst";s:4:"Test";s:8:"obj_type";s:11:"Object Type";s:8:"obj_user";s:4:"User";s:7:"obj_usr";s:4:"User";s:13:"obj_usrf_desc";s:26:"Manage user accounts here.";s:8:"obj_usrf";s:15:"User Management";s:18:"obj_webr_duplicate";s:17:"Copy Weblink list";s:8:"obj_webr";s:7:"Weblink";s:8:"obj_wiki";s:4:"Wiki";s:3:"obj";s:6:"Object";s:12:"object_added";s:12:"Object added";s:23:"object_copy_in_progress";s:16:"Started Copying.";s:17:"object_duplicated";s:13:"Object copied";s:9:"object_id";s:9:"Object-Id";s:15:"object_imported";s:15:"Object imported";s:6:"object";s:6:"Object";s:7:"objects";s:7:"Objects";s:4:"objf";s:18:"Object definitions";s:8:"objs_cat";s:10:"Categories";s:9:"objs_catr";s:13:"Category Link";s:8:"objs_crs";s:7:"Courses";s:9:"objs_crsr";s:11:"Course Link";s:8:"objs_exc";s:9:"Exercises";s:9:"objs_feed";s:9:"Web Feeds";s:9:"objs_file";s:5:"Files";s:9:"objs_fold";s:7:"Folders";s:8:"objs_frm";s:6:"Forums";s:8:"objs_glo";s:10:"Glossaries";s:8:"objs_grp";s:6:"Groups";s:9:"objs_htlm";s:21:"HTML Learning Modules";s:7:"objs_lm";s:22:"ILIAS Learning Modules";s:9:"objs_lres";s:18:"Learning Resources";s:9:"objs_mail";s:4:"Mail";s:9:"objs_mcst";s:10:"Mediacasts";s:8:"objs_mep";s:11:"Media Pools";s:8:"objs_prg";s:16:"Study Programmes";s:8:"objs_qpl";s:19:"Question Pools Test";s:8:"objs_qst";s:9:"Questions";s:9:"objs_rcrs";s:11:"ECS Courses";s:9:"objs_role";s:5:"Roles";s:9:"objs_sahs";s:22:"SCORM Learning Modules";s:9:"objs_sess";s:8:"Sessions";s:8:"objs_spl";s:21:"Question Pools Survey";s:7:"objs_st";s:8:"Chapters";s:8:"objs_svy";s:7:"Surveys";s:8:"objs_tst";s:5:"Tests";s:9:"objs_webr";s:8:"Weblinks";s:9:"objs_wiki";s:5:"Wikis";s:2:"of";s:2:"Of";s:7:"offline";s:7:"Offline";s:2:"ok";s:2:"OK";s:3:"old";s:3:"Old";s:8:"omit_all";s:8:"Omit all";s:4:"omit";s:4:"Omit";s:15:"on_waiting_list";s:27:"You are on the waiting list";s:11:"online_time";s:25:"Time online (DD:HH:MM:SS)";s:6:"online";s:6:"Online";s:9:"operation";s:9:"Operation";s:8:"optimize";s:8:"Optimize";s:6:"option";s:6:"Option";s:16:"optional_filters";s:16:"Optional Filters";s:7:"options";s:7:"Options";s:13:"order_by_date";s:7:"By Date";s:8:"order_by";s:8:"Order by";s:12:"organization";s:8:"Provider";s:5:"other";s:5:"Other";s:8:"overview";s:8:"Overview";s:9:"overwrite";s:9:"Overwrite";s:13:"owner_updated";s:14:"Owner updated.";s:5:"owner";s:5:"Owner";s:11:"page_layout";s:11:"Page Layout";s:12:"page_layouts";s:12:"Page Layouts";s:4:"page";s:4:"Page";s:5:"pages";s:5:"Pages";s:9:"parameter";s:9:"Parameter";s:5:"parse";s:5:"Parse";s:6:"passed";s:6:"Passed";s:17:"passwd_generation";s:19:"Password Generation";s:14:"passwd_invalid";s:119:"The new password is invalid! Only the following characters are allowed (minimum 6 characters): A-Z a-z 0-9 _.-+?#*@!$%~";s:16:"passwd_not_match";s:83:"Your entries for the new password don’t match! Please re-enter your new password.";s:12:"passwd_wrong";s:34:"The password you entered is wrong!";s:6:"passwd";s:8:"Password";s:24:"password_assistance_info";s:229:"If password assistance is enabled, a link ‘Forgot Password?’ is shown on the login page of ILIAS. Users can use this link to define a new password for their user account without needing assistance from a system administrator.";s:37:"password_change_on_first_login_demand";s:75:"You have to change your password before you can start using ILIAS services.";s:14:"password_empty";s:37:"The password field must not be empty.";s:16:"password_expired";s:84:"Your password is expired and has to be changed as the last change was %s day(s) ago.";s:31:"password_must_chars_and_numbers";s:49:"The password must contain characters and numbers.";s:27:"password_must_special_chars";s:45:"The password must contain special characters.";s:16:"password_to_long";s:55:"The password must have at most a size of %s characters.";s:17:"password_to_short";s:56:"The password must have at least a size of %s characters.";s:8:"password";s:8:"Password";s:21:"paste_clipboard_items";s:5:"Paste";s:5:"paste";s:5:"Paste";s:12:"pasteChapter";s:5:"Paste";s:9:"pastePage";s:5:"Paste";s:12:"path_not_set";s:12:"Path not set";s:15:"path_to_convert";s:15:"Path to Convert";s:15:"path_to_htmldoc";s:15:"Path to HTMLdoc";s:12:"path_to_java";s:12:"Path to Java";s:13:"path_to_unzip";s:13:"Path to Unzip";s:11:"path_to_zip";s:11:"Path to Zip";s:4:"path";s:4:"Path";s:6:"pathes";s:5:"Paths";s:13:"pd_items_news";s:30:"Include News of Personal Items";s:10:"pdf_export";s:10:"PDF Export";s:13:"perm_settings";s:11:"Permissions";s:10:"perma_link";s:14:"Permanent Link";s:17:"permission_denied";s:17:"Permission Denied";s:19:"permission_settings";s:26:"Object Permission Settings";s:10:"permission";s:10:"Permission";s:12:"person_title";s:5:"Title";s:13:"personal_data";s:13:"Personal Data";s:16:"personal_picture";s:6:"Avatar";s:16:"personal_profile";s:19:"Profile and Privacy";s:7:"persons";s:7:"Persons";s:6:"pg_add";s:8:"Add page";s:6:"pg_new";s:8:"New page";s:10:"phone_home";s:11:"Phone, Home";s:12:"phone_mobile";s:13:"Phone, Mobile";s:12:"phone_office";s:13:"Phone, Office";s:5:"phone";s:5:"Phone";s:6:"phrase";s:6:"Phrase";s:13:"please_choose";s:12:"-- Select --";s:19:"please_enter_target";s:21:"Please enter a target";s:18:"please_enter_title";s:20:"Please enter a title";s:40:"please_select_a_delivered_file_to_delete";s:57:"You must select at least one delivered file to delete it!";s:42:"please_select_a_delivered_file_to_download";s:59:"You must select at least one delivered file to download it!";s:13:"please_select";s:19:"-- Please Select --";s:11:"please_wait";s:14:"Please wait...";s:4:"port";s:4:"Port";s:10:"pos_bottom";s:6:"Bottom";s:8:"pos_left";s:4:"Left";s:9:"pos_right";s:5:"Right";s:7:"pos_top";s:3:"Top";s:8:"position";s:8:"Position";s:27:"precondition_not_accessible";s:79:"You do not have sufficient permission to view the precondition(s) of this item.";s:12:"precondition";s:12:"Precondition";s:13:"preconditions";s:13:"Preconditions";s:19:"predefined_template";s:24:"Predefined role template";s:11:"preferences";s:11:"Preferences";s:20:"preview_learner_info";s:119:"If enabled, Course and Group administrators have the possibility to view the content form the perspective of a learner.";s:8:"previous";s:8:"Previous";s:10:"print_view";s:10:"Print View";s:5:"print";s:5:"Print";s:13:"private_notes";s:13:"Private Notes";s:3:"pro";s:3:"Pro";s:7:"proceed";s:7:"Proceed";s:15:"profile_changed";s:42:"ILIAS eLearning - Your profile has changed";s:18:"profile_incomplete";s:61:"Your profile is incomplete. Please fill in all required data.";s:10:"profile_of";s:10:"Profile of";s:7:"profile";s:7:"Profile";s:10:"properties";s:10:"Properties";s:17:"proxy_connectable";s:23:"Connection established.";s:15:"proxy_host_info";s:20:"Please enter a host.";s:10:"proxy_host";s:4:"Host";s:21:"proxy_not_connectable";s:56:"ILIAS could not build a connection to the defined proxy.";s:18:"proxy_socket_error";s:16:"Socket Error: %s";s:15:"proxy_port_info";s:50:"Please enter a port between 0 and 65535, e.g.8080.";s:18:"proxy_port_numeric";s:62:"The entered port has to be a numeric value between 0 and 65535";s:10:"proxy_port";s:4:"Port";s:17:"proxy_status_info";s:102:"To use a proxy in ILIAS (e.g. for web feeds or to check web links) please activate the checkbox above.";s:12:"proxy_status";s:5:"Proxy";s:5:"proxy";s:12:"Proxy-Server";s:16:"pub_section_info";s:230:"If enabled, parts of the system (e.g. repository, workspace, user profiles) can be made available to the internet without authentication. The permissions of the ‘Anonymous’ role will control the access to repository resources.";s:11:"pub_section";s:16:"Anonymous Access";s:12:"public_notes";s:12:"Public Notes";s:14:"public_profile";s:7:"Profile";s:6:"public";s:6:"public";s:7:"purpose";s:7:"Purpose";s:7:"qpl_add";s:22:"Add Question Pool Test";s:7:"qpl_new";s:22:"New Question Pool Test";s:3:"qpl";s:18:"Question Pool Test";s:10:"query_data";s:10:"Query data";s:16:"question_message";s:8:"Question";s:8:"question";s:8:"Question";s:4:"quit";s:4:"Quit";s:5:"quote";s:5:"Quote";s:4:"read";s:4:"Read";s:25:"readcount_anonymous_users";s:33:"Number of anonymous read accesses";s:15:"readcount_users";s:37:"Number of non-anonymous read accesses";s:9:"recipient";s:9:"Recipient";s:17:"reference_deleted";s:25:"Destination not available";s:12:"reference_of";s:13:"Reference of:";s:16:"referral_comment";s:29:"How did you hear about ILIAS?";s:17:"refresh_languages";s:21:"Refresh All Languages";s:7:"refresh";s:7:"Refresh";s:6:"refuse";s:6:"Refuse";s:35:"reg_account_confirmation_successful";s:37:"Your user account has been activated.";s:28:"reg_mail_body_2_confirmation";s:92:"The link will only be good for %s, after that you will have to try again from the beginning.";s:28:"reg_mail_body_3_confirmation";s:174:"If this e-mail means nothing to you, then it is possible that somebody else has entered your e-mail address either deliberately or accidentally, so please ignore this e-mail.";s:34:"reg_mail_body_forgot_password_info";s:132:"To get your password, please use the function « Forgot password? » at the login screen to request a new password for this account.";s:24:"reg_mail_body_salutation";s:5:"Hello";s:19:"reg_mail_body_text1";s:27:"Welcome to ILIAS eLearning!";s:19:"reg_mail_body_text2";s:39:"To access ILIAS use the following data:";s:19:"reg_mail_body_text3";s:29:"Further personal information:";s:29:"reg_mail_subject_confirmation";s:40:"ILIAS eLearning - Your Confirmation Link";s:16:"reg_mail_subject";s:34:"ILIAS eLearning - Your access data";s:19:"reg_passwd_via_mail";s:62:"Your password will be sent to your e-mail address given below.";s:8:"register";s:8:"Register";s:16:"registered_since";s:16:"Registered since";s:15:"registered_user";s:15:"registered User";s:16:"registered_users";s:16:"registered Users";s:12:"registration";s:24:"New Account Registration";s:10:"related_to";s:10:"Related to";s:18:"remove_translation";s:18:"Remove translation";s:6:"remove";s:6:"Remove";s:11:"rename_file";s:11:"Rename File";s:6:"rename";s:6:"Rename";s:18:"repeat_scan_failed";s:21:"Repeated scan failed.";s:20:"repeat_scan_succeded";s:24:"Repeated scan succeeded.";s:11:"repeat_scan";s:23:"Repeating virus scan...";s:12:"replace_file";s:12:"Replace File";s:5:"reply";s:5:"Reply";s:21:"repository_admin_desc";s:81:"Set permissions for repository items, restore or remove objects from system trash";s:16:"repository_admin";s:32:"Repository Trash and Permissions";s:10:"repository";s:10:"Repository";s:13:"require_email";s:14:"Require e-mail";s:14:"require_gender";s:18:"Require salutation";s:13:"require_hobby";s:13:"Require hobby";s:21:"require_matriculation";s:28:"Require matriculation number";s:24:"require_referral_comment";s:24:"Require referral comment";s:14:"required_field";s:8:"Required";s:15:"res_links_short";s:5:"Links";s:9:"res_links";s:16:"Repository Links";s:12:"reset_filter";s:12:"Reset Filter";s:5:"reset";s:5:"Reset";s:9:"resources";s:9:"Resources";s:5:"right";s:5:"Right";s:6:"rights";s:6:"Rights";s:13:"role_add_user";s:19:"Add User(s) to role";s:10:"role_added";s:10:"Role added";s:23:"role_assignment_updated";s:33:"Role assignment has been updated.";s:15:"role_assignment";s:15:"Role Assignment";s:22:"global_role_assignment";s:23:"Globale Rollenzuweisung";s:21:"local_role_assignment";s:22:"Lokale Rollenzuweisung";s:9:"role_edit";s:9:"Edit Role";s:11:"role_mailto";s:26:"Mail to all assigned Users";s:15:"role_new_search";s:10:"New search";s:8:"role_new";s:8:"New Role";s:22:"role_no_roles_selected";s:20:"Please select a role";s:29:"role_protect_permissions_desc";s:147:"The object permissions cannot be changed by systems operations anymore. Furthermore only administrator of higher levels may change the permissions.";s:24:"role_protect_permissions";s:19:"Protect Permissions";s:20:"role_select_one_item";s:25:"Please select one object.";s:27:"role_sure_delete_desk_items";s:58:"Are you sure you want to delete the following assignments?";s:19:"role_templates_only";s:19:"Role templates only";s:4:"role";s:4:"Role";s:22:"roles_of_import_global";s:27:"Global roles of import file";s:21:"roles_of_import_local";s:26:"Local roles of import file";s:5:"roles";s:5:"Roles";s:10:"rolf_added";s:17:"Role folder added";s:16:"rolf_create_role";s:15:"Create New Role";s:16:"rolf_create_rolt";s:24:"Create New Role Template";s:11:"rolf_delete";s:27:"Delete Roles/Role templates";s:20:"rolf_edit_permission";s:26:"Change permission settings";s:24:"rolf_edit_userassignment";s:31:"Change user assignment of Roles";s:9:"rolf_read";s:35:"Read access to Roles/role templates";s:12:"rolf_visible";s:32:"Roles/role templates are visible";s:10:"rolf_write";s:56:"Edit default permission settings of Roles/role templates";s:4:"rolf";s:5:"Roles";s:10:"rolt_added";s:19:"Role template added";s:9:"rolt_edit";s:18:"Edit Role Template";s:8:"rolt_new";s:17:"New Role Template";s:4:"rolt";s:13:"Role Template";s:3:"row";s:3:"Row";s:4:"rows";s:4:"Rows";s:10:"sahs_added";s:27:"SCORM Learning Module added";s:26:"sahs_insert_chap_from_clip";s:29:"Paste Chapters from Clipboard";s:26:"sahs_insert_page_from_clip";s:26:"Paste Pages from Clipboard";s:25:"sahs_insert_sco_from_clip";s:25:"Paste SCOs from Clipboard";s:4:"sahs";s:21:"Learning Module SCORM";s:12:"salutation_f";s:8:"Ms./Mrs.";s:12:"salutation_m";s:3:"Mr.";s:12:"salutation_n";s:21:"No salutation desired";s:10:"salutation";s:10:"Salutation";s:13:"save_and_back";s:13:"Save And Back";s:12:"save_message";s:13:"Save as Draft";s:20:"save_params_for_cron";s:27:"Save Parameter for Cron Job";s:12:"save_refresh";s:16:"Save and Refresh";s:11:"save_return";s:15:"Save and Return";s:13:"save_settings";s:13:"Save Settings";s:22:"save_user_related_data";s:29:"Save user related access data";s:4:"save";s:4:"Save";s:18:"saved_successfully";s:18:"Saved Successfully";s:29:"scorm_create_export_file_html";s:25:"Create Export File (HTML)";s:28:"scorm_create_export_file_pdf";s:24:"Create Export File (PDF)";s:32:"scorm_create_export_file_scrom12";s:30:"Create Export File (SCORM 1.2)";s:38:"scorm_create_export_file_scrom2004_4th";s:43:"Create Export File (SCORM 2004 4th Edition)";s:34:"scorm_create_export_file_scrom2004";s:43:"Create Export File (SCORM 2004 3rd Edition)";s:9:"scorm_new";s:45:"Create SCORM Learning Module (Authoring Mode)";s:13:"search_active";s:20:"Include active users";s:13:"search_engine";s:19:"Readable .html URLs";s:10:"search_for";s:10:"Search For";s:9:"search_in";s:9:"Search in";s:15:"search_inactive";s:22:"Include inactive users";s:10:"search_new";s:10:"New Search";s:13:"search_result";s:13:"Search Result";s:14:"search_results";s:14:"Search Results";s:11:"search_user";s:11:"Search User";s:6:"search";s:6:"Search";s:18:"seas_max_hits_info";s:63:"Please enter a number for the maximum number of search results.";s:13:"seas_max_hits";s:8:"Max hits";s:13:"seas_settings";s:15:"Search settings";s:6:"second";s:6:"Second";s:7:"seconds";s:7:"Seconds";s:10:"select_all";s:10:"Select All";s:26:"select_at_least_one_object";s:34:"Please choose at least one object.";s:11:"select_file";s:11:"Select File";s:19:"select_max_one_item";s:27:"Please select one item only";s:21:"select_object_to_link";s:47:"Please select the object which you want to link";s:10:"select_one";s:23:"Please select one item.";s:19:"select_questionpool";s:21:"Insert questions into";s:25:"select_question_pool_info";s:117:"As long as the import file contains questions, these questions will be imported to the selected questionpool as well.";s:6:"select";s:6:"Select";s:19:"selected_items_back";s:22:"Back to Personal Items";s:14:"selected_items";s:14:"Personal Items";s:26:"selected_languages_updated";s:56:"The selected languages have been updated (if installed):";s:8:"selected";s:8:"Selected";s:9:"send_mail";s:12:"Send Message";s:4:"send";s:4:"Send";s:6:"sender";s:6:"Sender";s:4:"sent";s:4:"Sent";s:8:"sequence";s:8:"Sequence";s:9:"sequences";s:9:"Sequences";s:11:"server_data";s:11:"Server Info";s:15:"server_software";s:15:"Server Software";s:6:"server";s:6:"Server";s:4:"sess";s:7:"Session";s:22:"session_reminder_alert";s:184:"Your session expires in %1$s at %2$s! Choose OK to continue your session. If you click Cancel you will not be reminded during the current browser session anymore. Installation: %3$s.";s:21:"session_reminder_info";s:85:"If enabled, you receive a reminder before the online-session of your browser expires.";s:31:"session_reminder_lead_time_info";s:241:"Please specify the lead time for the session reminder in minutes. The reminder displays a warning when only this time span is left before the session expires. Recommended value is 5 (minutes)
The current length of a user session is %s.";s:26:"session_reminder_lead_time";s:8:"Leadtime";s:33:"session_reminder_session_duration";s:23:"(Session Duration: %s).";s:16:"session_reminder";s:16:"Session-Reminder";s:11:"set_offline";s:11:"Set Offline";s:10:"set_online";s:10:"Set Online";s:3:"set";s:3:"Set";s:17:"setSystemLanguage";s:19:"Set System Language";s:14:"settings_saved";s:14:"Saved settings";s:8:"settings";s:8:"Settings";s:15:"setUserLanguage";s:17:"Set User Language";s:11:"shib_active";s:25:"Enable Shibboleth support";s:9:"shib_city";s:18:"Attribute for city";s:12:"shib_country";s:21:"Attribute for country";s:22:"shib_data_conv_warning";s:59:"The data manipulation API file you specified cannot be read";s:14:"shib_data_conv";s:38:"Absolute path to data manipulation API";s:15:"shib_department";s:24:"Attribute for department";s:10:"shib_email";s:28:"Attribute for e-mail address";s:20:"shib_federation_name";s:34:"Name of your Shibboleth federation";s:14:"shib_firstname";s:24:"Attribute for first name";s:11:"shib_gender";s:53:"Attribute for salutation (must be ‘m’ or ‘f’)";s:31:"shib_general_login_instructions";s:159:"To log in via %s, please click on the login button and choose your organization of the following page.
If you have questions concerning this, please ask the";s:36:"shib_general_wayf_login_instructions";s:126:"In case you are not associated with the given organizations and you need access to a course on this server, please contact the";s:13:"shib_idp_list";s:496:"Provide a list of Identity Providers to let the user choose from on the ILIAS login page.
On each line there must be a comma-separated tuple for providerID of IdP (see the Shibboleth metadata file) and Name of IdP as it shall be displayed in the drop-down list.
As an optional third parameter you can add the location of a Shibboleth session initiator that shall be used in case your ILIAS installation is part of a multi federation setup.";s:16:"shib_institution";s:25:"Attribute for institution";s:30:"shib_invalid_home_organization";s:35:"Please choose a valid organization!";s:13:"shib_language";s:22:"Attribute for language";s:13:"shib_lastname";s:22:"Attribute for lastname";s:17:"shib_login_button";s:131:"Path to the image of a Shibboleth login button that is used to redirect users to the WAYF specified in the Shibboleth configuration";s:36:"shib_login_embedded_wayf_description";s:231:"If this option is chosen, you can provide any HTML code in the login instructions text area below. This can for example be used to embed an own JavaScript WAYF/Discovery Service or create a custom-tailored design of the login area.";s:24:"shib_login_embedded_wayf";s:24:"Design custom login area";s:24:"shib_login_external_wayf";s:25:"Use external WAYF service";s:24:"shib_login_internal_wayf";s:22:"Use ILIAS WAYF service";s:15:"shib_login_type";s:22:"Organization selection";s:10:"shib_login";s:27:"Unique Shibboleth attribute";s:14:"shib_member_of";s:20:"I am a member of ...";s:15:"shib_phone_home";s:31:"Attribute for home phone number";s:17:"shib_phone_mobile";s:33:"Attribute for mobile phone number";s:17:"shib_phone_office";s:33:"Attribute for office phone number";s:29:"shib_select_home_organization";s:83:"For authentication via %s, please select your organization from the drop down list.";s:19:"shib_settings_saved";s:34:"The Shibboleth settings were saved";s:11:"shib_street";s:20:"Attribute for street";s:10:"shib_title";s:19:"Attribute for title";s:11:"shib_update";s:26:"Update this field on login";s:22:"shib_user_default_role";s:41:"Default role assigned to Shibboleth users";s:12:"shib_zipcode";s:21:"Attribute for zipcode";s:4:"shib";s:10:"Shibboleth";s:20:"short_inst_name_info";s:100:"This title will appear in the browser header title bar. If no value is entered, ‘ILIAS’ is used.";s:15:"short_inst_name";s:11:"Short Title";s:12:"show_details";s:12:"Show Details";s:11:"show_filter";s:11:"Show Filter";s:9:"show_list";s:9:"Show List";s:12:"show_members";s:15:"Display Members";s:10:"show_owner";s:10:"Show Owner";s:17:"show_users_online";s:17:"Show active users";s:4:"show";s:4:"Show";s:10:"side_frame";s:10:"Side Frame";s:9:"signature";s:9:"Signature";s:27:"simultaneous_login_detected";s:76:"Your access is denied because of a simultaneous login with the same account.";s:4:"size";s:4:"Size";s:10:"skin_style";s:20:"Default Skin / Style";s:4:"smtp";s:4:"SMTP";s:29:"soap_user_administration_desc";s:48:"If enabled, ILIAS can be administrated via SOAP.";s:24:"soap_user_administration";s:23:"Administration via SOAP";s:19:"soap_wsdl_path_info";s:163:"Please enter the path to the ilias wsdl file which should be used for the webservice. If you leave this field blank, the following path will be used per default:%s";s:14:"soap_wsdl_path";s:9:"WSDL Path";s:19:"sort_by_this_column";s:19:"Sort by this column";s:14:"sorting_header";s:20:"Content Item Sorting";s:19:"sorting_info_manual";s:136:"Content items can be arranged manually in a preferred order. Additionallyi, please define the standard sorting settings for new objects.";s:18:"sorting_info_title";s:72:"Content items are arranged automatically by title in alphabetical order.";s:21:"sorting_manual_header";s:8:"Manually";s:12:"sorting_save";s:12:"Save Sorting";s:20:"sorting_title_header";s:28:"Titles in Alphabetical Order";s:6:"spacer";s:6:"Spacer";s:7:"spl_add";s:24:"Add Question Pool Survey";s:7:"spl_new";s:24:"New Question Pool Survey";s:3:"spl";s:20:"Question Pool Survey";s:3:"ssl";s:11:"SSL (HTTPS)";s:15:"standard_fields";s:15:"Standard Fields";s:9:"startpage";s:16:"ILIAS Login Page";s:13:"stat_selected";s:8:"Selected";s:9:"statistic";s:9:"Statistic";s:10:"statistics";s:10:"Statistics";s:20:"status_no_permission";s:21:"No permission granted";s:6:"status";s:6:"Status";s:4:"step";s:4:"Step";s:6:"street";s:6:"Street";s:9:"structure";s:9:"Structure";s:3:"sty";s:5:"Style";s:19:"sub_request_deleted";s:26:"Deleted membership request";s:17:"sub_request_saved";s:24:"Saved membership request";s:7:"subject";s:7:"Subject";s:6:"submit";s:6:"Submit";s:10:"subobjects";s:11:"Sub-objects";s:12:"subscription";s:12:"Subscription";s:7:"subtabs";s:7:"SubTabs";s:15:"success_message";s:15:"Success Message";s:7:"summary";s:7:"Summary";s:26:"sure_delete_selected_users";s:52:"Are you sure you want to delete the selected user(s)";s:15:"survey_defaults";s:28:"Default Settings for Surveys";s:27:"survey_unlimited_invitation";s:20:"Unlimited Invitation";s:7:"svy_add";s:10:"Add survey";s:12:"svy_finished";s:29:"You have completed the survey";s:7:"svy_new";s:10:"New survey";s:16:"svy_not_finished";s:37:"The survey has not been completed yet";s:15:"svy_not_started";s:36:"You did not take part in this survey";s:7:"svy_run";s:3:"Run";s:31:"svy_warning_survey_not_complete";s:24:"The survey is incomplete";s:3:"svy";s:6:"Survey";s:12:"system_check";s:12:"System Check";s:18:"system_information";s:18:"System Information";s:15:"system_language";s:15:"System Language";s:13:"system_styles";s:13:"System Styles";s:6:"system";s:6:"System";s:16:"systemcheck_cron";s:32:"Process System Check in Cron Job";s:20:"systemcheck_cronform";s:38:"Activation of System Check in Cron Job";s:17:"table_mail_import";s:11:"Mail import";s:4:"tabs";s:4:"Tabs";s:15:"tagging_my_tags";s:7:"My Tags";s:24:"take_over_structure_info";s:116:"If activated, directories in the zip file will be mapped to categories or, if used in groups or courses, to folders.";s:19:"take_over_structure";s:15:"Adopt Structure";s:6:"target";s:6:"Target";s:7:"tax_add";s:12:"Add Taxonomy";s:7:"tax_new";s:12:"New Taxonomy";s:3:"tax";s:8:"Taxonomy";s:4:"term";s:4:"Term";s:4:"test";s:4:"Test";s:5:"tests";s:5:"Tests";s:7:"textbox";s:7:"Textbox";s:6:"thread";s:6:"Thread";s:9:"thumbnail";s:9:"Thumbnail";s:38:"time_limit_add_time_limit_for_selected";s:51:"Please enter a time period for the selected user(s)";s:15:"time_limit_from";s:17:"From (time limit)";s:18:"time_limit_message";s:20:"Message (time limit)";s:28:"time_limit_no_users_selected";s:21:"Please select a user.";s:20:"time_limit_not_valid";s:24:"The period is not valid.";s:16:"time_limit_owner";s:18:"Owner (time limit)";s:18:"time_limit_reached";s:32:"Your user account is not active.";s:20:"time_limit_unlimited";s:22:"Unlimited (time limit)";s:16:"time_limit_until";s:18:"Until (time limit)";s:10:"time_limit";s:6:"Access";s:4:"time";s:4:"Time";s:14:"title_required";s:22:"Please insert a title.";s:5:"title";s:5:"Title";s:14:"to_client_list";s:16:"Client Selection";s:2:"to";s:2:"To";s:5:"today";s:5:"Today";s:19:"toggleGlobalDefault";s:21:"Toggle Global Default";s:17:"toggleGlobalFixed";s:19:"Toggle Global Fixed";s:8:"tomorrow";s:8:"Tomorrow";s:5:"total";s:5:"Total";s:17:"tracking_settings";s:26:"Learning Progress Settings";s:11:"translation";s:11:"Translation";s:5:"trash";s:5:"Trash";s:10:"tree_frame";s:10:"Tree Frame";s:4:"tree";s:4:"Tree";s:8:"treeview";s:12:"Show Sidebar";s:7:"tst_add";s:8:"Add test";s:7:"tst_new";s:8:"New test";s:7:"tst_run";s:3:"Run";s:26:"tst_statistical_evaluation";s:10:"Statistics";s:14:"tst_statistics";s:10:"Statistics";s:11:"tst_results";s:12:"Test Results";s:20:"tst_user_not_invited";s:39:"You are not supposed to take this test.";s:29:"tst_warning_test_not_complete";s:25:"The test is not complete!";s:3:"tst";s:4:"Test";s:6:"tutors";s:6:"Tutors";s:24:"txt_registered_passw_gen";s:109:"You successfully registered to ILIAS. You should receive an e-Mail including your generated password shortly.";s:14:"txt_registered";s:112:"You successfully registered to ILIAS. Please click on the button below to login to ILIAS with your user account.";s:13:"txt_submitted";s:228:"You successfully submitted an account request to ILIAS. Your account request will be reviewed by the system administrators, and should be activated within 48 hours. You will not be able to log in until your account is activated.";s:3:"typ";s:22:"Object Type Definition";s:4:"type";s:4:"Type";s:15:"udf_added_field";s:16:"Added new field.";s:15:"udf_delete_sure";s:71:"Are you sure you want to delete this field and all assigned user data ?";s:21:"udf_duplicate_entries";s:29:"The values have to be unique.";s:17:"udf_field_deleted";s:14:"Deleted field.";s:23:"udf_name_already_exists";s:63:"This field name already exists. Please choose a different name.";s:31:"udf_required_requires_visib_reg";s:84:"When field is set to ‘required’, it must be set to ‘visible in registration’";s:13:"udf_type_date";s:4:"Date";s:17:"udf_type_datetime";s:13:"Date and Time";s:15:"udf_type_select";s:30:"Selection List (Single Choice)";s:13:"udf_type_text";s:21:"Text Field (One Line)";s:16:"udf_type_wysiwyg";s:19:"Text Area (WYSIWYG)";s:23:"udf_update_select_field";s:15:"Edit Select Box";s:21:"udf_update_text_field";s:15:"Edit Text Field";s:24:"udf_update_wysiwyg_field";s:30:"Edit Text Area (WYSIWYG) Field";s:3:"uid";s:3:"UID";s:22:"ums_create_new_account";s:18:"Create New Account";s:17:"ums_explanation_2";s:65:"If this is not your account, please hit ‘Create New Account’.";s:17:"ums_explanation_3";s:198:"Your external account could not be mapped to an ILIAS account. But ILIAS has found multiple accounts with your e-mail address. If one of those is your account, please login with your ILIAS password.";s:17:"ums_explanation_4";s:69:"If none of them is your account, please hit ‘Create New Account’.";s:15:"ums_explanation";s:183:"Your external account could not be mapped to an ILIAS account. But ILIAS has found an account with your e-mail address. If this is your account, please login with your ILIAS password.";s:15:"unambiguousness";s:19:"Distinguishing Mark";s:11:"uncheck_all";s:11:"Uncheck all";s:9:"unchecked";s:9:"Unchecked";s:9:"uninstall";s:9:"Uninstall";s:11:"uninstalled";s:12:"uninstalled.";s:7:"unknown";s:7:"UNKNOWN";s:6:"unread";s:6:"Unread";s:5:"unzip";s:5:"Unzip";s:2:"up";s:2:"Up";s:14:"update_applied";s:14:"Update Applied";s:15:"update_language";s:15:"Update Language";s:18:"update_on_conflict";s:18:"Update on conflict";s:6:"update";s:4:"Edit";s:27:"upload_error_file_not_found";s:29:"Upload error: File not found.";s:6:"upload";s:6:"Upload";s:20:"uploaded_and_checked";s:71:"The file has been uploaded and checked, you can now start to import it.";s:3:"uri";s:3:"URI";s:13:"url_not_found";s:14:"File Not Found";s:12:"url_to_latex";s:23:"URL to LaTeX CGI script";s:3:"url";s:3:"URL";s:27:"use_customized_instructions";s:28:"Use customized instructions:";s:24:"use_default_instructions";s:25:"Use default instructions.";s:14:"user_activated";s:22:"User has been approved";s:10:"user_added";s:10:"User added";s:15:"user_assignment";s:15:"User Assignment";s:22:"user_cant_receive_mail";s:52:"%1$s – user is not allowed to use the mail system.";s:12:"user_comment";s:12:"User comment";s:16:"user_deactivated";s:25:"User has been disapproved";s:19:"user_defined_fields";s:13:"Custom Fields";s:17:"user_defined_list";s:23:"Custom User Data Fields";s:12:"user_deleted";s:12:"User deleted";s:11:"user_detail";s:11:"Detail Data";s:21:"user_ext_account_desc";s:84:"Account used for external authentication. (CAS, SOAP, LDAP or Radius authentication)";s:16:"user_ext_account";s:16:"External Account";s:10:"user_image";s:10:"User Image";s:18:"user_import_failed";s:19:"User import failed.";s:27:"user_imported_with_warnings";s:35:"User import complete with warnings.";s:13:"user_imported";s:21:"User import complete.";s:13:"user_language";s:13:"User Language";s:26:"user_new_account_mail_desc";s:190:"This mail is sent automatically to users that have self-registered or to those who have been registered by an administrator with enabled setting ‘Send mail to inform user about changes’.";s:21:"user_new_account_mail";s:16:"New Account Mail";s:14:"user_not_known";s:31:"Please insert a valid username.";s:18:"user_profile_other";s:17:"Other Information";s:26:"user_send_new_account_mail";s:23:"Send new account e-mail";s:11:"user_status";s:11:"User Status";s:16:"user_toggle_noti";s:48:"Member is not allowed to deactivate notification";s:4:"user";s:4:"User";s:8:"userdata";s:9:"User Data";s:21:"userfolder_export_csv";s:22:"Comma Separated Values";s:27:"userfolder_export_excel_x86";s:15:"Microsoft Excel";s:27:"userfolder_export_file_size";s:9:"File size";s:22:"userfolder_export_file";s:4:"File";s:23:"userfolder_export_files";s:5:"Files";s:21:"userfolder_export_xml";s:3:"XML";s:8:"username";s:8:"Username";s:18:"users_not_imported";s:71:"The following users do not exist, their messages cannot become imported";s:12:"users_online";s:12:"Active Users";s:5:"users";s:5:"Users";s:15:"usr_active_only";s:17:"Active Users only";s:7:"usr_add";s:8:"Add User";s:13:"usr_agreement";s:16:"Terms of Service";s:8:"usr_edit";s:9:"Edit User";s:23:"usr_filter_coursemember";s:16:"Member of course";s:22:"usr_filter_groupmember";s:15:"Member of group";s:20:"usr_filter_lastlogin";s:18:"Last login of user";s:15:"usr_filter_role";s:13:"Assigned role";s:17:"usr_inactive_only";s:19:"Inactive Users only";s:23:"usr_limited_access_only";s:30:"Users with limited access only";s:7:"usr_new";s:8:"New User";s:32:"usr_settings_explanation_profile";s:388:"Check ‘Visible’ to show fields in the registration form and personal settings. Check ‘Changeable’ to allow the user to change the values. Please note that visible fields can always be entered in the registration form. Required fields are required in the registration form and the personal settings. All data can be changed in the user administration independent on these settings.";s:27:"usr_settings_header_profile";s:25:"Standard User Data Fields";s:18:"usr_settings_saved";s:40:"Global user settings saved successfully!";s:22:"usr_settings_visib_lua";s:36:"Visible in Local User Administration";s:27:"usr_settings_changeable_lua";s:39:"Changeable in Local User Administration";s:14:"usr_skin_style";s:12:"Skin / Style";s:19:"usr_without_courses";s:30:"Users without courses assigned";s:3:"usr";s:4:"User";s:4:"usrf";s:13:"User accounts";s:24:"usrimport_action_ignored";s:20:"Ignored action %1$s.";s:25:"usrimport_action_replaced";s:29:"Replaced action %1$s by %2$s.";s:27:"usrimport_form_not_evaluabe";s:31:"The form data couldn\'t be read.";s:26:"usrimport_wrong_file_count";s:50:"Too many files in import-folder. Please try again.";s:21:"usrimport_cant_delete";s:60:"Can\'t perform ‘Delete’ action. No such user in database.";s:21:"usrimport_cant_insert";s:63:"Can\'t perform ‘Insert’ action. User is already in database.";s:21:"usrimport_cant_update";s:60:"Can\'t perform ‘Update’ action. No such user in database.";s:32:"usrimport_conflict_handling_info";s:456:"When ‘Ignore on conflict’ is selected, ILIAS ignores an action, if it can not be performed (e. g. an ‘Insert’ action is not done, if there is already a user with the same login in the database.) When ‘Update on conflict’ is selected, ILIAS updates the database if an action can not be performed. (e. g. an ‘Insert’ action is replaced by an ‘Update’ action and the other way around, if a user with the same login exists in the database).";s:41:"usrimport_global_role_for_action_required";s:61:"At least one global role must be specified for "%1$s" action.";s:21:"usrimport_ignore_role";s:11:"Ignore role";s:29:"usrimport_login_is_not_unique";s:20:"Login is not unique.";s:38:"usrimport_no_insert_ext_account_exists";s:67:"Can\'t perform ‘Insert’ action. External account already exists.";s:38:"usrimport_no_update_ext_account_exists";s:67:"Can\'t perform ‘Update’ action. External account already exists.";s:43:"usrimport_with_specified_role_not_permitted";s:41:"Import with specified role not permitted.";s:31:"usrimport_xml_attribute_missing";s:46:"Attribute "%2$s" in element "%1$s" is missing.";s:37:"usrimport_xml_attribute_value_illegal";s:62:"Value "%3$s" of attribute "%2$s" in element "%1$s" is illegal.";s:42:"usrimport_xml_attribute_value_inapplicable";s:85:"Value "%3$s" of attribute "%2$s" in element "%1$s" is inapplicable for "%4$s" action.";s:37:"usrimport_xml_element_content_illegal";s:44:"Content "%2$s" of element "%1$s" is illegal.";s:41:"usrimport_xml_element_for_action_required";s:51:"Element "%1$s" must be specified for "%2$s" action.";s:34:"usrimport_xml_element_inapplicable";s:49:"Element "%1$s" is inapplicable for "%2$s" action.";s:5:"valid";s:5:"Valid";s:8:"validate";s:8:"Validate";s:5:"value";s:5:"Value";s:14:"vcard_download";s:22:"Download Visiting Card";s:5:"vcard";s:13:"Visiting Card";s:19:"verification_failed";s:19:"Verification failed";s:24:"verification_failure_log";s:24:"Verification failure log";s:24:"verification_warning_log";s:24:"Verification warning log";s:7:"version";s:7:"Version";s:8:"versions";s:8:"Versions";s:12:"view_content";s:12:"View Content";s:4:"view";s:4:"View";s:20:"visible_registration";s:23:"Visible in Registration";s:7:"visible";s:7:"Visible";s:7:"visitor";s:7:"Visitor";s:8:"visitors";s:8:"Visitors";s:6:"visits";s:6:"Visits";s:13:"web_resources";s:8:"Weblinks";s:6:"webdav";s:6:"WebDAV";s:28:"webdav_forbidden_chars_title";s:104:"Following files cannot be displayed, because they contain one or more forbidden characters (\\<>/:*?"|#):";s:31:"webdav_duplicate_detected_title";s:103:"Following objects could not be displayed, because an object with the same Title is already being shown:";s:29:"webdav_problem_info_duplicate";s:53:"There is a file with the same title as the info file.";s:29:"webdav_problem_free_container";s:59:"There are no objects that cause problems in this container.";s:24:"webdav_enable_versioning";s:15:"File Versioning";s:22:"webdav_versioning_info";s:88:"If enabled, already existing files will get a new version instead of beeing overwritten.";s:33:"webdav_add_instructions_btn_label";s:31:"Add Mount Instructions Document";s:30:"webdav_docs_mount_instructions";s:28:"Mount Instructions Documents";s:23:"webdav_general_settings";s:16:"General Settings";s:20:"webdav_form_document";s:21:"Instructions Document";s:25:"webdav_form_document_info";s:111:"Upload a txt or an html file here. After the upload the file will be parsed and processed. For more information";s:26:"webdav_form_document_title";s:5:"Title";s:31:"webdav_form_document_title_info";s:92:"This title will be dislayed as the title of the modal when the Mount Instructions are opened";s:24:"webdav_form_new_doc_head";s:38:"Create new Mount Instructions Document";s:25:"webdav_form_edit_doc_head";s:32:"Edit Mount Instructions Document";s:25:"webdav_mount_instructions";s:18:"Mount Instructions";s:30:"webdav_sure_delete_documents_s";s:80:"Are you sure you want to delete the Mount Instructions with the following title:";s:21:"webdav_tbl_docs_title";s:42:"List of uploaded WebDAV Mount Instructions";s:26:"webdav_tbl_docs_head_title";s:14:"Dokument title";s:26:"webdav_upload_instructions";s:19:"Upload Instructions";s:35:"webdav_chosen_language_already_used";s:69:"There already is another document associated with the chosen language";s:19:"webdav_missing_lang";s:60:"There is no english version of the WebDAV Mount Instructions";s:17:"webdav_doc_delete";s:32:"Delete WebDav Mount Instructions";s:18:"webfolder_dir_info";s:122:"You got here, because your browser can\'t open webfolders. Read the instructions for opening webfolders.";s:18:"webfolder_index_of";s:13:"Index of %1$s";s:27:"webfolder_instructions_info";s:458:"The webfolder instructions are shown on browsers, which can not open a webfolder directly. You can use HTML code, and the following placeholders: [WEBFOLDER_TITLE], [WEBFOLDER_URI], [WEBFOLDER_URI], [WEBFOLDER_URI_KONQUEROR], [WEBFOLDER_URI_NAUTILUS], [ADMIN_MAIL], [WINDOWS]...[/WINDOWS], [MAC]...[/MAC], [LINUX]...[/LINUX]. Clear the field to get the default instructions.";s:27:"webfolder_instructions_text";s:2069:"[WINDOWS]

Instructions for connecting with Windows

  1. Open Windows-Explorer (e.g. key combination Windows + E).
  2. Rightclick on "This PC" and select "Map network drive...".
  3. Enter the following address as address (you may copy and paste the URL):

    [WEBFOLDER_URI]

  4. Click "Finish".
  5. Enter your login and password, and select "OK".
  6. You can now access the webfolder from the start menu "Computer".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/WINDOWS] [MAC]

Instructions for Mac OS X

  1. Open the Finder.
  2. Choose the menu \'Goto to > Connect to server...\'.
    This opens the window \'connect to server\'.
  3. Enter this URL as server URL:
    [WEBFOLDER_URI]
    und click on \'Connect\'.
  4. Enter your login and password, and select "OK".

Your login and password is identical to your local ILIAS login and can be changed via "Personal Settings".[/MAC][LINUX]

Instructions for Linux with Konqueror

  1. Open Konqueror Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_KONQUEROR]
    and press enter.
  3. Enter your login and password, and select "OK".

Instructions for Linux with Nautilus

  1. Open Nautilus Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_NAUTILUS]
    and press enter.
  3. Enter your login and password, and select "OK".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/LINUX]

Tips & Support

  • These steps need to be done only once. You may access your connection again later.
  • Connect to a higher folder. You can always navigate down the tree, but nut upwards.
  • If your computer can not open the WebDAV Connection, please contact ILIAS Support.
";s:32:"webfolder_instructions_titletext";s:17:"Open as webfolder";s:22:"webfolder_instructions";s:22:"Webfolder instructions";s:24:"webfolder_mount_dir_with";s:167:"Open this page as a Webfolder with Internet Explorer 6, Konqueror, Nautilus, other Browser.";s:11:"webr_active";s:6:"Active";s:8:"webr_add";s:11:"Add Weblink";s:18:"webr_deleted_items";s:19:"Deleted Weblink(s).";s:18:"webr_disable_check";s:18:"Disable Validation";s:9:"webr_edit";s:12:"Edit Weblink";s:21:"webr_last_check_table";s:11:"Last check:";s:22:"webr_sure_delete_items";s:54:"Do you really want to delete the following Weblink(s)?";s:4:"webr";s:7:"Weblink";s:11:"webservices";s:4:"SOAP";s:4:"week";s:4:"Week";s:6:"weekly";s:6:"weekly";s:5:"weeks";s:5:"Weeks";s:7:"welcome";s:7:"Welcome";s:5:"width";s:5:"Width";s:8:"wiki_add";s:8:"Add Wiki";s:8:"wiki_new";s:8:"New Wiki";s:4:"wiki";s:4:"Wiki";s:4:"with";s:4:"with";s:18:"wizard_search_list";s:67:"Your search produced the following hits. Please select one of them.";s:17:"wizard_title_info";s:148:"Search for the object you want to duplicate. Please enter the object\'s title or a part of it and click on \'Continue\' to get matching search results.";s:5:"write";s:5:"Write";s:17:"wrong_ip_detected";s:142:"Your access is denied because of a wrong client ip.
You are currently using this IP address: %s
Please contact the system administrator.";s:4:"year";s:4:"Year";s:5:"years";s:5:"Years";s:3:"yes";s:3:"Yes";s:9:"yesterday";s:9:"Yesterday";s:19:"zip_structure_error";s:49:"Archive contains same file names. Upload aborted.";s:15:"zip_test_failed";s:56:"Zip-Test failed. Please contact you ILIAS administrator.";s:3:"zip";s:8:"Zip Code";s:7:"zipcode";s:8:"Zip Code";s:10:"page_count";s:10:"Page Count";s:14:"db_need_hotfix";s:70:"Hotfix available. Please open »Setup!";s:14:"session_config";s:16:"Session Settings";s:35:"session_config_maintenance_disabled";s:33:"Maintenance by client not allowed";s:17:"session_max_count";s:19:"Max active sessions";s:22:"session_max_count_info";s:120:"Defines the maximum number of sessions that can be created simultaneously. Setting this to ‘0’ disables the feature.";s:16:"session_min_idle";s:29:"Min session idle (in minutes)";s:21:"session_min_idle_info";s:188:"When a user idles for at least this period of time the session can be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.";s:16:"session_max_idle";s:29:"Max session idle (in minutes)";s:21:"session_max_idle_info";s:83:"Defines the maximum period of idle time a user can idle before his session expires.";s:36:"session_max_idle_after_first_request";s:49:"Max session idle after first request (in minutes)";s:41:"session_max_idle_after_first_request_info";s:203:"All sessions that idles for at least this period of time after first request will be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.";s:21:"reached_session_limit";s:61:"The limit of online users is reached. Please try again later.";s:32:"mail_to_global_roles_not_allowed";s:54:"%1$s (it is not allowed to send mails to global roles)";s:29:"delete_inactive_user_accounts";s:50:"Delete user accounts with no login for a long time";s:34:"delete_inactive_user_accounts_desc";s:84:"If enabled, user accounts will be deleted depending on the date of their last login.";s:36:"delete_inactive_user_accounts_period";s:28:"Days passed since last login";s:41:"delete_inactive_user_accounts_period_desc";s:96:"All user accounts without login within the defined number of days will be deleted automatically.";s:43:"delete_inactive_user_accounts_include_roles";s:16:"Considered roles";s:48:"delete_inactive_user_accounts_include_roles_desc";s:114:"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.";s:15:"update_orgunits";s:36:"Update assigned organisational units";s:20:"update_orgunits_desc";s:83:"If enabled, the field \'Organisational Units\' will be updated for all user accounts.";s:32:"delete_inactivated_user_accounts";s:32:"Delete inactivated user accounts";s:37:"delete_inactivated_user_accounts_desc";s:75:"If enabled, user accounts will be deleted %s days after their inactivation.";s:39:"delete_inactivated_user_accounts_period";s:30:"Days passed since inactivation";s:44:"delete_inactivated_user_accounts_period_desc";s:78:"Accounts will be deleted if this number of days has passed since inactivation.";s:46:"delete_inactivated_user_accounts_include_roles";s:16:"Considered roles";s:51:"delete_inactivated_user_accounts_include_roles_desc";s:114:"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.";s:8:"obj_frma";s:5:"Forum";s:13:"obj_frma_desc";s:21:"Global Forum Settings";s:10:"backto_lua";s:33:"Back to Local User Administration";s:19:"sort_inherit_prefix";s:7:"Default";s:20:"sorting_info_inherit";s:55:"The sorting mode is adopted from a parent course/group.";s:11:"sel_country";s:7:"Country";s:8:"obj_book";s:12:"Booking Pool";s:9:"objs_book";s:13:"Booking Pools";s:17:"country_selection";s:29:"Country (Drop Down Selection)";s:17:"country_free_text";s:25:"Country (Free Text Input)";s:20:"optional_filter_hint";s:44:"Please activate one of the optional filters.";s:19:"sess_fixed_duration";s:22:"Fixed Session Duration";s:36:"sess_load_dependent_session_handling";s:31:"Load Dependent Session Handling";s:9:"sess_mode";s:12:"Session Mode";s:18:"cronjob_last_start";s:26:"Last Start of the Cron Job";s:30:"enable_disk_quota_summary_mail";s:23:"Send Disk Quota Summary";s:35:"enable_disk_quota_summary_mail_desc";s:99:"The disk quota summary is a daily notification containing all users, who exceeded their disk quota.";s:23:"disk_quota_summary_rctp";s:10:"Recipients";s:28:"disk_quota_summary_rctp_desc";s:133:"Enter the user names (comma-separated) of those users who shall receive a daily report with users currently exceeding the disk quota.";s:28:"disk_quota_exceeded_headline";s:51:"The following users have exceeded their disk quota:";s:17:"usrf_profile_link";s:20:"Link to user profile";s:25:"currently_used_disk_space";s:25:"Currently used disk space";s:26:"disk_quota_summary_subject";s:30:"Summary of Exceeded Disk Quota";s:26:"cronjob_last_start_unknown";s:13:"Indeterminate";s:30:"cron_mail_notification_message";s:41:"Send Mail Notifications with Mail-Message";s:35:"cron_mail_notification_message_info";s:89:"If enabled, all users will get notifications with complete mail message by external mail.";s:25:"follow_link_to_read_mails";s:45:"click the following link to read these mails:";s:31:"mails_at_the_ilias_installation";s:58:"You received %1$s new mails at the ILIAS-Installation %2$s";s:30:"mail_at_the_ilias_installation";s:57:"You received %1$s new mail at the ILIAS-Installation %2$s";s:22:"webdav_pwd_instruction";s:147:"We suggest to create a local password for opening the repository as webfolder.
This password is only required for the webfolder functionality.";s:30:"webdav_pwd_instruction_success";s:84:"A new local password has been created. You can now open the repository as webfolder.";s:22:"err_auth_apache_failed";s:107:"The authentication has failed. Maybe you have no valid user certificate or your smart card is not inserted.";s:21:"nr_following_sessions";s:27:"%1d following session(s)...";s:7:"obj_ass";s:5:"Asset";s:26:"enable_anonymous_fora_desc";s:104:"If this option is disabled, the feature ‘Posting with pseudonym’ is not available in forums anymore.";s:21:"enable_anonymous_fora";s:28:"Allow posting with pseudonym";s:8:"obj_wfld";s:6:"Folder";s:8:"obj_blog";s:4:"Blog";s:29:"preconditions_obligatory_hint";s:54:"You have to fulfill all of the following preconditions";s:27:"preconditions_optional_hint";s:60:"You have to fulfill %s of the following preconditions";s:10:"glo_import";s:15:"Import Glossary";s:13:"rep_main_page";s:4:"Home";s:17:"personal_settings";s:8:"Settings";s:20:"show_hidden_sections";s:29:"Show More Information »";s:21:"hide_visible_sections";s:29:"Hide More Information »";s:18:"tst_edit_questions";s:14:"Edit Questions";s:5:"first";s:5:"First";s:6:"behind";s:6:"Behind";s:33:"enable_course_group_notifications";s:37:"Daily Mail for Groups and Course News";s:38:"enable_course_group_notifications_desc";s:66:"If enabled, Participants can subscribe to a daily summary of news.";s:6:"saving";s:9:"Saving...";s:14:"user_not_found";s:14:"User not found";s:20:"cont_iim_create_info";s:63:"Please upload the background picture for the interactive image.";s:21:"cont_iim_overlay_info";s:187:"Overlay images are used to alter (e.g. highlight) parts of the background image when the mouse hovers over them. After uploading the images, you can select them in the ‘Triggers’ tab.";s:28:"cont_iim_content_popups_info";s:195:"Content popups appear, when the user clicks on interactive parts of the background image. On this screen you only define the popups. Their content can be edited on the editing screen of the page.";s:19:"file_upload_pending";s:12:"Pending file";s:6:"yearly";s:6:"yearly";s:22:"allow_user_toggle_noti";s:44:"Member is allowed to deactivate notification";s:20:"usr_account_inactive";s:16:"Inactive Account";s:9:"portfolio";s:9:"Portfolio";s:8:"obj_skmg";s:21:"Competence Management";s:13:"obj_skmg_desc";s:45:"Manage competences and competence categories.";s:6:"skills";s:11:"Competences";s:17:"exc_next_deadline";s:13:"Next Deadline";s:20:"password_allow_chars";s:17:"Allowed chars: %s";s:9:"objs_chtr";s:9:"Chat Room";s:8:"obj_chta";s:9:"Chat Room";s:8:"obj_chtr";s:9:"Chat Room";s:24:"password_multiple_errors";s:36:"Multiple criteria are not satisfied:";s:31:"password_contains_invalid_chars";s:40:"The password contains invalid characters";s:6:"notice";s:6:"Notice";s:11:"public_room";s:11:"Public room";s:17:"my_courses_groups";s:21:"My Courses and Groups";s:25:"enable_sahs_protocol_data";s:22:"Activate Protocol Data";s:30:"enable_sahs_protocol_data_desc";s:26:"Show Protocol Data (SCORM)";s:9:"chtr_copy";s:14:"Copy Chat Room";s:30:"precondition_required_itemlist";s:21:"Required Precondition";s:19:"precondition_toggle";s:61:"Preconditions that need to be fulfilled to access this object";s:11:"top_of_page";s:11:"Top of page";s:10:"spl_import";s:27:"Import Question Pool Survey";s:12:"chta_visible";s:35:"Chat Room Administration is visible";s:9:"chta_read";s:39:"Read access to Chat Room Administration";s:10:"chta_write";s:29:"Edit Chat Room Administration";s:20:"chta_edit_permission";s:26:"Change Permission Settings";s:11:"apache_auth";s:21:"Apache Authentication";s:15:"server_disabled";s:20:"The Chat is Disabled";s:8:"continue";s:8:"continue";s:22:"ignore_required_fields";s:22:"Ignore required fields";s:27:"ignore_required_fields_info";s:174:"If activated, you can submit this form without filling out all mandatory fields. The new user has to add the missing information on the personal profile after the next login.";s:8:"obj_rcat";s:12:"ECS Category";s:16:"obj_lm_duplicate";s:20:"Copy Learning Module";s:31:"reg_goto_parent_membership_info";s:42:"Only members can access the target object.";s:14:"remove_entries";s:14:"Remove Entries";s:9:"objs_blog";s:5:"Blogs";s:18:"obj_blog_duplicate";s:9:"Copy Blog";s:7:"obj_dcl";s:15:"Data Collection";s:8:"objs_dcl";s:16:"Data Collections";s:17:"obj_dcl_duplicate";s:20:"Copy Data Collection";s:18:"shib_matriculation";s:34:"Attribute for Matriculation Number";s:20:"soap_connect_timeout";s:18:"Connection Timeout";s:25:"soap_connect_timeout_info";s:90:"The maximum time in seconds until a connect attempt to the SOAP-Webservice is interrupted.";s:17:"obj_mep_duplicate";s:15:"Copy Media Pool";s:18:"obj_mcst_duplicate";s:14:"Copy Mediacast";s:17:"obj_glo_duplicate";s:13:"Copy Glossary";s:18:"obj_htlm_duplicate";s:25:"Copy HTML Learning Module";s:18:"obj_wiki_duplicate";s:9:"Copy Wiki";s:18:"obj_sahs_duplicate";s:20:"Copy Learning Module";s:8:"obj_poll";s:4:"Poll";s:9:"objs_poll";s:5:"Polls";s:18:"obj_poll_dupliate:";s:9:"Copy Poll";s:11:"mail_member";s:14:"Mail to Member";s:7:"imprint";s:12:"Legal Notice";s:18:"crs_list_reg_start";s:18:"Registration Begin";s:16:"crs_list_reg_end";s:16:"Registration End";s:18:"crs_list_reg_noreg";s:24:"No Registration Possible";s:19:"crs_list_reg_period";s:19:"Registration Period";s:12:"crs_list_reg";s:12:"Registration";s:23:"crs_list_reg_limit_full";s:14:"No places left";s:25:"crs_list_reg_limit_places";s:11:"Free places";s:13:"obj_hlps_desc";s:28:"Settings for the online help";s:8:"obj_hlps";s:11:"Help System";s:18:"grp_list_reg_start";s:18:"Registration Begin";s:16:"grp_list_reg_end";s:16:"Registration End";s:18:"grp_list_reg_noreg";s:24:"No Registration Possible";s:19:"grp_list_reg_period";s:19:"Registration Period";s:12:"grp_list_reg";s:12:"Registration";s:23:"grp_list_reg_limit_full";s:14:"No places left";s:25:"grp_list_reg_limit_places";s:11:"Free places";s:9:"add_entry";s:14:"Add/Edit entry";s:18:"obj_poll_duplicate";s:9:"Copy Poll";s:9:"objs_rcat";s:14:"ECS Categories";s:8:"obj_itgr";s:10:"Item Group";s:9:"objs_itgr";s:11:"Item Groups";s:8:"itgr_new";s:14:"New Item Group";s:8:"itgr_add";s:14:"Add Item Group";s:15:"search_globally";s:8:"Globally";s:26:"search_at_current_position";s:19:"At Current Position";s:8:"obj_rwik";s:8:"ECS Wiki";s:9:"objs_rwik";s:9:"ECS Wikis";s:7:"obj_rlm";s:19:"ECS Learning Module";s:8:"objs_rlm";s:20:"ECS Learning Modules";s:8:"obj_rglo";s:12:"ECS Glossary";s:9:"objs_rglo";s:14:"ECS Glossaries";s:8:"obj_rfil";s:8:"ECS File";s:9:"objs_rfil";s:9:"ECS Files";s:8:"obj_rgrp";s:9:"ECS Group";s:9:"objs_rgrp";s:10:"ECS Groups";s:8:"obj_tstv";s:16:"Test Certificate";s:8:"obj_excv";s:20:"Exercise Certificate";s:8:"obj_prtf";s:9:"Portfolio";s:8:"obj_rtst";s:8:"ECS Test";s:9:"objs_rtst";s:9:"ECS Tests";s:25:"obj_tool_setting_calendar";s:8:"Calendar";s:8:"fm_start";s:22:"Open With File Manager";s:19:"il_blog_contributor";s:11:"Blog Author";s:8:"qpl_copy";s:23:"Copy Question Pool Test";s:16:"edit_assignments";s:16:"Edit Assignments";s:21:"obj_tool_setting_news";s:4:"News";s:8:"obj_ecss";s:3:"ECS";s:13:"obj_ecss_desc";s:20:"General ECS Settings";s:9:"edited_on";s:9:"Edited on";s:12:"obj_tos_desc";s:25:"Terms of Service Settings";s:7:"obj_tos";s:16:"Terms of Service";s:8:"obj_bibl";s:12:"Bibliography";s:9:"objs_bibl";s:14:"Bibliographies";s:8:"obj_bibs";s:12:"Bibliography";s:13:"obj_bibs_desc";s:27:"Bibliography Administration";s:16:"hide_all_details";s:16:"Hide all details";s:16:"show_all_details";s:16:"Show all details";s:26:"select_files_from_computer";s:12:"Select Files";s:15:"drag_files_here";s:29:"Drag-and-drop your files here";s:14:"drag_file_here";s:28:"Drag-and-drop your file here";s:14:"selected_files";s:14:"Selected files";s:21:"num_of_selected_files";s:19:"%s file(s) selected";s:18:"cancel_file_upload";s:49:"Do you really want to cancel all pending uploads?";s:12:"upload_files";s:12:"Upload files";s:18:"upload_files_title";s:12:"Upload files";s:14:"upload_pending";s:7:"Pending";s:26:"error_empty_file_or_folder";s:43:"The file size is 0 bytes or it is a folder.";s:27:"error_upload_was_zero_bytes";s:131:"The upload failed as this is a folder, the file size is 0 bytes or exceeded the max. upload size or the file was renamed meanwhile.";s:9:"uploading";s:12:"Uploading...";s:10:"extracting";s:13:"Extracting...";s:27:"drop_files_on_repo_obj_info";s:52:"Drop the files here to upload them into this object.";s:23:"error_extraction_failed";s:158:"The extraction of the archive and its directories failed. Probably because you don’t have the permission to create folders or categories within this object.";s:15:"upload_settings";s:15:"Upload Settings";s:17:"enable_dnd_upload";s:27:"Enable drag-and-drop upload";s:22:"enable_dnd_upload_info";s:76:"Files can be uploaded with drag-and-drop from the local computer if enabled.";s:28:"enable_repository_dnd_upload";s:20:"Enable in Repository";s:33:"enable_repository_dnd_upload_info";s:140:"Enables that files can be dragged from the computer directly onto an object in the repository to start uploading the files into this object.";s:18:"concurrent_uploads";s:28:"Number of concurrent uploads";s:23:"concurrent_uploads_info";s:85:"Defines the number of files that can be uploaded per upload process at the same time.";s:13:"download_link";s:13:"Download Link";s:28:"file_confirm_delete_versions";s:51:"Are you sure to delete the following file versions?";s:32:"file_confirm_delete_all_versions";s:96:"You selected all file versions. This will delete the whole file object. Do you want to continue?";s:21:"file_versions_deleted";s:53:"The selected file versions were successfully deleted.";s:30:"file_rollback_select_exact_one";s:69:"Only one file version can be selected to make it the current version.";s:18:"file_rollback_done";s:43:"File version %s is now the current version.";s:24:"file_version_new_version";s:11:"New version";s:19:"file_version_create";s:15:"Initial version";s:20:"file_version_replace";s:21:"All versions replaced";s:21:"file_version_rollback";s:30:"Rollback to version %s from %s";s:13:"file_rollback";s:29:"Make this the current version";s:10:"frm_import";s:12:"Import Forum";s:18:"rpc_pdf_generation";s:14:"PDF-Generation";s:12:"rpc_pdf_font";s:5:"Fonts";s:17:"rpc_pdf_font_info";s:139:"Additional fonts for the generation of PDF files. Other fonts than ‘Helvetica’ and ‘unifont’ must be installed on the ILIAS server.";s:8:"obj_sysc";s:12:"System Check";s:13:"obj_sysc_desc";s:29:"System Check and Repair Tools";s:7:"obj_cld";s:12:"Cloud Object";s:8:"objs_cld";s:13:"Cloud Objects";s:21:"scorm_without_session";s:47:"SCORM 2004: enable storing data without session";s:26:"scorm_without_session_info";s:141:"This ensures the storage of SCORM 2004 learning data even if ILIAS session expired. For SCORM 1.2, storage without session is always enabled.";s:19:"msg_obj_no_download";s:21:"cannot be downloaded.";s:23:"download_selected_items";s:8:"Download";s:25:"download_multiple_objects";s:25:"Download Multiple Objects";s:21:"msg_obj_perm_download";s:68:"You do not have sufficient rights to download the following objects:";s:21:"enable_multi_download";s:37:"«Download multiple objects» enabled";s:26:"enable_multi_download_info";s:84:"Enables that multiple folders/files can be selected to download them as zip archive.";s:7:"preview";s:7:"Preview";s:12:"preview_show";s:12:"Show Preview";s:12:"preview_none";s:25:"Preview (not created yet)";s:16:"preview_settings";s:12:"File Preview";s:14:"enable_preview";s:14:"Enable Preview";s:19:"enable_preview_info";s:69:"Enable this option to display preview images on supported file types.";s:23:"max_previews_per_object";s:33:"Number of preview images per file";s:28:"max_previews_per_object_info";s:71:"Defines the maximum number of preview images that are created per file.";s:14:"preview_create";s:14:"Create Preview";s:14:"preview_delete";s:14:"Delete Preview";s:23:"preview_status_creating";s:52:"The preview gets created. This may take some time...";s:23:"preview_status_deleting";s:27:"The preview gets deleted...";s:22:"preview_status_pending";s:61:"The preview has not been created yet. Please try again later.";s:21:"preview_status_failed";s:29:"Failed to create the preview.";s:22:"preview_status_missing";s:32:"No preview exists for this file.";s:15:"preview_loading";s:18:"Loading Preview...";s:24:"loaded_preview_renderers";s:24:"Loaded Preview Renderers";s:21:"renderer_type_builtin";s:8:"Built-in";s:29:"renderer_supported_repo_types";s:23:"Supported ILIAS Objects";s:29:"renderer_supported_file_types";s:20:"Supported File Types";s:26:"ghostscript_not_configured";s:134:"Ghostscript is not configured. Please open the Setup to configure it.";s:8:"obj_reps";s:10:"Repository";s:7:"obj_rep";s:10:"Repository";s:13:"obj_reps_desc";s:35:"General settings for the Repository";s:8:"obj_wbrs";s:7:"Weblink";s:13:"obj_wbrs_desc";s:30:"General settings for Web Links";s:8:"obj_crss";s:6:"Course";s:13:"obj_crss_desc";s:28:"General settings for Courses";s:8:"obj_grps";s:5:"Group";s:13:"obj_grps_desc";s:27:"General settings for Groups";s:8:"obj_prtt";s:18:"Portfolio Template";s:9:"objs_prtt";s:19:"Portfolio Templates";s:18:"obj_prtt_duplicate";s:23:"Copy Portfolio Template";s:9:"objs_orgu";s:20:"Organisational Units";s:9:"org_units";s:20:"Organisational Units";s:8:"obj_orgu";s:19:"Organisational Unit";s:20:"obj_orgu_description";s:45:"Creating and editing organisational structure";s:16:"il_orgu_superior";s:8:"Superior";s:16:"il_orgu_employee";s:8:"Employee";s:22:"view_learning_progress";s:22:"View Learning Progress";s:26:"view_learning_progress_rec";s:45:"View Learning Progress of Unit incl. Subunits";s:8:"my_staff";s:5:"Staff";s:31:"ps_password_lowercase_chars_num";s:18:"Lower Case Letters";s:36:"ps_password_lowercase_chars_num_info";s:108:"Please insert the number of lower case letters a password must contain. Enter 0 to disable this requirement.";s:31:"ps_password_uppercase_chars_num";s:15:"Capital Letters";s:36:"ps_password_uppercase_chars_num_info";s:105:"Please insert the number of capital letters a password must contain. Enter 0 to disable this requirement.";s:37:"ps_password_must_not_contain_loginame";s:28:"Prevent Username in Password";s:42:"ps_password_must_not_contain_loginame_info";s:55:"If activated, a password must not contain the username.";s:36:"password_contains_parts_of_login_err";s:73:"The chosen password contains your username. Please insert a new password.";s:33:"password_must_contain_lcase_chars";s:57:"The password must contain at least %s lower case letters.";s:33:"password_must_contain_ucase_chars";s:54:"The password must contain at least %s capital letters.";s:25:"scorm_login_as_learner_id";s:48:"SCORM 2004: set ILIAS Username as cmi.learner_id";s:30:"scorm_login_as_learner_id_info";s:74:"If enabled, the Username instead of the User ID is set for cmi.learner_id.";s:8:"obj_wiks";s:4:"Wiki";s:13:"obj_wiks_desc";s:20:"Global Wiki Settings";s:12:"offline_mode";s:11:"Use offline";s:23:"msg_obj_already_deleted";s:36:"The object has already been deleted.";s:26:"obj_tool_setting_news_info";s:68:"The ‘News’ block will be displayed inside the ‘Content’ tab.";s:30:"obj_tool_setting_calendar_info";s:92:"A calendar is available and the ‘Calendar’ block is displayed in the ‘Contents’ tab.";s:8:"obj_crsv";s:18:"Course Certificate";s:8:"obj_scov";s:17:"SCORM Certificate";s:17:"autocomplete_more";s:4:"more";s:23:"sorting_creation_header";s:16:"By Creation Date";s:21:"sorting_creation_info";s:64:"Content items are arranged automatically by their creation date.";s:17:"sorting_direction";s:17:"Sorting Direction";s:12:"sorting_desc";s:10:"Descendent";s:11:"sorting_asc";s:9:"Ascending";s:20:"il_astpl_loc_initial";s:12:"Initial Test";s:22:"il_astpl_loc_qualified";s:15:"Qualifying Test";s:25:"il_astpl_loc_initial_desc";s:74:"Settings template for initial tests of learning objective oriented courses";s:27:"il_astpl_loc_qualified_desc";s:77:"Settings template for qualifying tests of learning objective oriented courses";s:15:"ps_export_scorm";s:30:"Personal Data in Protocol Data";s:24:"enable_export_scorm_desc";s:53:"Display of Personal Data in the Protocol Data (SCORM)";s:22:"scorm_lp_auto_activate";s:37:"Default setting for learning progress";s:27:"scorm_lp_auto_activate_info";s:259:"If learning progress is activated in general, the settings for new SCORM learning modules are set to ‘Collection of SCORM Items’ and all SCOs are selected for learning progress determination. Adjustments are still possible for every SCORM learning module.";s:15:"toggle_dropdown";s:15:"Toggle Dropdown";s:21:"clientlist_clientlist";s:11:"Client List";s:28:"clientlist_available_clients";s:17:"Available Clients";s:28:"clientlist_installation_name";s:17:"Installation Name";s:24:"clientlist_public_access";s:13:"Public Access";s:16:"clientlist_login";s:5:"Login";s:21:"clientlist_start_page";s:10:"Start page";s:21:"clientlist_login_page";s:10:"Login page";s:24:"settings_for_all_members";s:38:"Members will be notified automatically";s:18:"settings_per_users";s:107:"Members are notified automatically. Deactivating notifications can be allowed for each member individually.";s:14:"il_blog_editor";s:11:"Blog Editor";s:32:"obj_tool_setting_custom_metadata";s:15:"Custom Metadata";s:37:"obj_tool_setting_custom_metadata_info";s:40:"If activated metadata can be configured.";s:20:"mem_cron_min_members";s:35:"Course/Group: Minimum Members Check";s:25:"mem_cron_min_members_info";s:69:"The administrators will be notified if the minimum number is not met.";s:13:"mem_min_users";s:16:"Minimum of Users";s:28:"buddy_allow_to_contact_me_no";s:32:"Doesn`t Receive Contact Requests";s:29:"buddy_allow_to_contact_me_yes";s:25:"Receives Contact Requests";s:11:"my_contacts";s:11:"My Contacts";s:8:"obj_cadm";s:8:"Contacts";s:13:"obj_cadm_desc";s:23:"Contacts Administration";s:26:"no_gallery_users_available";s:44:"There are currently no users in the gallery.";s:13:"obj_awra_desc";s:32:"Manage ‘Who is online?’-Tool";s:8:"obj_awra";s:25:"‘Who is online?’-Tool";s:16:"contact_sysadmin";s:25:"Contact Technical Support";s:26:"report_accessibility_issue";s:26:"Report Accessibility Issue";s:25:"report_accessibility_link";s:14:"Reported Link:";s:29:"accessibility_control_concept";s:29:"Accessibility Control Concept";s:44:"no_accessibility_control_concept_description";s:154:"There is currently no Accessibility Control Concept provided with this installation. Please contact the Accessibility Point of Contact.";s:18:"mainbar_aria_label";s:7:"Mainbar";s:18:"metabar_aria_label";s:7:"Metabar";s:22:"breadcrumbs_aria_label";s:11:"Breadcrumbs";s:8:"obj_logs";s:7:"Logging";s:13:"obj_logs_desc";s:24:"General Logging Settings";s:17:"obj_prg_duplicate";s:20:"Copy Study Programme";s:14:"obj_prg_select";s:39:"-- Please select one study programme --";s:7:"obj_prg";s:15:"Study Programme";s:8:"obj_prgs";s:16:"Study Programmes";s:13:"obj_prgs_desc";s:30:"Study Programme Administration";s:21:"prg_copy_threads_info";s:84:"Please decide which Study Program elements should be copied, linked or even omitted.";s:15:"prg_wizard_page";s:29:"Copy Study Program (Step 2/2)";s:14:"enter_new_name";s:19:"Please enter a name";s:9:"objs_prtf";s:10:"Portfolios";s:14:"grpr_edit_info";s:54:"Please choose one group for creating a new group link.";s:9:"grpr_edit";s:15:"Edit Group Link";s:8:"grpr_new";s:17:"Create Group Link";s:4:"grpr";s:10:"Group Link";s:8:"obj_grpr";s:10:"Group Link";s:9:"objs_grpr";s:11:"Group Links";s:8:"obj_bdga";s:6:"Badges";s:13:"obj_bdga_desc";s:55:"Administrate types, image templates and activity badges";s:24:"set_style_does_not_exist";s:151:"Your selected system style does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:";s:23:"set_skin_does_not_exist";s:143:"Your selected skin does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:";s:8:"obj_bgtk";s:15:"Background Task";s:8:"obj_iass";s:21:"Individual Assessment";s:9:"objs_iass";s:22:"Individual Assessments";s:18:"obj_iass_duplicate";s:26:"Copy Individual Assessment";s:15:"obj_iass_select";s:45:"-- Please select one individual assessment --";s:14:"il_iass_member";s:30:"Individual Assessment Examinee";s:8:"iass_new";s:28:"Create Individual Assessment";s:11:"iass_import";s:28:"Import Individual Assessment";s:11:"chtr_import";s:15:"Import Chatroom";s:16:"sahs_export_file";s:33:"ILIAS exported SCORM archive file";s:8:"obj_pdfg";s:14:"PDF Generation";s:13:"obj_pdfg_desc";s:36:"Options for generation PDF documents";s:20:"building_export_file";s:23:"Building Export File...";s:9:"pdfg_read";s:38:"User has read access to PDF Generation";s:12:"pdfg_visible";s:25:"PDF Generation is visible";s:10:"pdfg_write";s:40:"User can edit settings of PDF Generation";s:20:"pdfg_edit_permission";s:35:"User can change permission settings";s:23:"file_no_valid_file_type";s:30:"This file type is not allowed.";s:36:"file_some_invalid_file_types_removed";s:54:"Some file types are not allowed and have been removed.";s:9:"auth_saml";s:4:"SAML";s:11:"saml_log_in";s:12:"Direct login";s:19:"saml_login_form_txt";s:23:"Login to ILIAS via SAML";s:24:"saml_login_form_info_txt";s:101:"You can log in using the “Direct Login” button without having to enter your username or password.";s:23:"login_to_ilias_via_saml";s:40:"Login to ILIAS via SAML Authentification";s:12:"second_email";s:13:"Second E-Mail";s:5:"grade";s:5:"Grade";s:14:"edit_page_meta";s:18:"Edit Page Metadata";s:28:"position_permission_settings";s:28:"Orgunit-Specific Permissions";s:23:"org_permission_settings";s:48:"Permissions of Positions in Organisational Units";s:29:"org_op_read_learning_progress";s:43:"View Learning Progress of Subordinate Users";s:21:"org_op_manage_members";s:26:"Manage Subordinate Members";s:24:"org_op_access_enrolments";s:21:"View Enrolment-Status";s:43:"user_never_logged_in_info_threshold_err_num";s:47:"Only positive non decimal numbers are accepted.";s:43:"cron_users_without_login_del_role_whitelist";s:14:"Included Roles";s:48:"cron_users_without_login_del_role_whitelist_info";s:89:"The deletion will only processed for users assigned to at least one of the selected roles";s:44:"cron_users_without_login_del_create_date_thr";s:9:"Thresholt";s:49:"cron_users_without_login_del_create_date_thr_info";s:88:"All user accounts created before the defined threshold will be taken into consideration.";s:20:"user_never_logged_in";s:34:"Delete user accounts without login";s:25:"user_never_logged_in_info";s:50:"All user accounts without login at all be deleted.";s:20:"usr_name_undisclosed";s:11:"Undisclosed";s:17:"obj_exc_duplicate";s:13:"Copy Exercise";s:18:"obj_fold_duplicate";s:11:"Copy Folder";s:16:"fold_wizard_page";s:22:"Copy Folder (Step 2/2)";s:22:"fold_copy_threads_info";s:71:"Please decide which materials should be copied, linked or even omitted.";s:28:"settings_presentation_header";s:12:"Presentation";s:8:"obj_copa";s:12:"Content Page";s:9:"objs_copa";s:13:"Content Pages";s:20:"msg_info_blacklisted";s:53:"The files cannot be uploaded due to security reasons.";s:23:"presentation_table_more";s:9:"Show More";s:19:"mme_lost_item_title";s:13:"No assignment";s:20:"mme_lost_item_reason";s:27:"Item is no longer provided.";s:7:"obj_mme";s:9:"Main Menu";s:4:"like";s:4:"Like";s:4:"love";s:4:"Love";s:7:"dislike";s:7:"Dislike";s:5:"laugh";s:5:"Laugh";s:9:"astounded";s:9:"Astounded";s:3:"sad";s:3:"Sad";s:5:"angry";s:5:"Angry";s:15:"my_certificates";s:15:"My Certificates";s:4:"open";s:4:"Open";s:7:"lso_new";s:21:"New Learning Sequence";s:7:"lso_add";s:21:"Add Learning Sequence";s:8:"lso_edit";s:22:"Edit Learning Sequence";s:10:"lso_import";s:24:"Import Learning Sequence";s:8:"lso_copy";s:22:"Copy Learning Sequence";s:7:"obj_lso";s:17:"Learning Sequence";s:8:"objs_lso";s:18:"Learning Sequences";s:17:"obj_lso_duplicate";s:22:"Copy Learning Sequence";s:21:"lso_copy_threads_info";s:90:"Please decide which elements of the Learning Sequence should be copied, linked or omitted.";s:15:"lso_wizard_page";s:33:"Copy Learning Sequence (Step 2/2)";s:12:"il_lso_admin";s:23:"Learning Sequence Admin";s:13:"il_lso_member";s:24:"Learning Sequence Member";s:13:"unparticipate";s:11:"Unsubscribe";s:11:"participate";s:9:"Subscribe";s:23:"pagination_label_x_of_y";s:17:"Page %1$d of %2$d";s:21:"certificate_selection";s:22:"Origin of Certificates";s:29:"certificate_persistent_option";s:28:"Certificates of Achievements";s:28:"certificate_workspace_option";s:34:"Certificates of Personal Resources";s:37:"certificate_file_already_exists_error";s:55:"The certificate file already exists in the file system.";s:32:"certificate_file_not_found_error";s:123:"The certificate file doesn\'t exist in the file system anymore. Die Zertikatsdatei wurde im Dateisystem nicht mehr gefunden.";s:35:"certificate_file_input_output_error";s:117:"The certificate file was found but couldn\'t be deleted because of internal errors. Please contact your administrator.";s:8:"obj_task";s:4:"Task";s:15:"mm_organisation";s:12:"Organisation";s:13:"mm_staff_list";s:10:"Staff List";s:13:"mm_enrolments";s:10:"Enrolments";s:16:"mm_communication";s:13:"Communication";s:11:"mm_contacts";s:8:"Contacts";s:7:"mm_mail";s:4:"Mail";s:7:"mm_news";s:4:"News";s:8:"mm_notes";s:5:"Notes";s:11:"mm_comments";s:8:"Comments";s:15:"mm_achievements";s:12:"Achievements";s:19:"mm_learning_history";s:16:"Learning History";s:9:"mm_skills";s:11:"Competences";s:20:"mm_learning_progress";s:17:"Learning Progress";s:9:"mm_badges";s:6:"Badges";s:17:"mm_administration";s:14:"Administration";s:13:"mm_repository";s:10:"Repository";s:12:"mm_dashboard";s:9:"Dashboard";s:17:"mm_repo_tree_view";s:9:"Tree View";s:21:"mm_task_derived_tasks";s:5:"Tasks";s:12:"mm_favorites";s:10:"Favourites";s:11:"mm_calendar";s:8:"Calendar";s:7:"mm_tags";s:4:"Tags";s:12:"mm_portfolio";s:9:"Portfolio";s:15:"mm_certificates";s:12:"Certificates";s:24:"mm_personal_and_shared_r";s:29:"Personal and Shared Resources";s:21:"mm_personal_workspace";s:18:"Personal Workspace";s:21:"mm_repo_tree_view_act";s:13:"Activate Tree";s:23:"mm_repo_tree_view_deact";s:15:"Deactivate Tree";s:28:"nc_contact_requests_headline";s:16:"Contact Requests";s:28:"nc_contact_requests_number_s";s:28:"You have %s Contact Request.";s:28:"nc_contact_requests_number_p";s:29:"You have %s Contact Requests.";s:29:"nc_contact_requests_prop_time";s:4:"Time";s:16:"mm_rep_tree_view";s:9:"Tree View";s:18:"personal_resources";s:18:"Personal Resources";s:7:"obj_lti";s:12:"LTI Consumer";s:8:"objs_lti";s:13:"LTI Consumers";s:8:"obj_cmis";s:9:"xAPI/cmi5";s:13:"obj_cmis_desc";s:41:"Learning Record Store Types Configuration";s:8:"obj_cmix";s:9:"xAPI/cmi5";s:9:"objs_cmix";s:17:"Objects xAPI/cmi5";s:8:"obj_prgr";s:23:"Link to Study Programme";s:9:"obj_prgrs";s:25:"Links to Study Programmes";s:17:"msg_unknown_value";s:33:"An unknown value has been passed.";s:8:"obj_lsos";s:18:"Learning Sequences";s:13:"obj_lsos_desc";s:39:"General settings for Learning Sequences";s:16:"collapse_content";s:16:"Collapse Content";s:14:"expand_content";s:14:"Expand Content";s:9:"briefcase";s:16:"Background Tasks";s:14:"sort_ascending";s:14:"Sort Ascending";s:15:"sort_descending";s:15:"Sort Descending";s:18:"show_who_is_online";s:18:"Show who is online";s:4:"tags";s:4:"Tags";s:8:"comments";s:8:"Comments";s:9:"eyeclosed";s:47:"Eye Closed - Click to hide the input\'s contents";s:9:"eyeopened";s:47:"Eye Open - Click to reveal the input\'s contents";s:9:"show_more";s:9:"Show More";s:8:"disclose";s:8:"Disclose";s:15:"switch_language";s:15:"Switch Language";s:9:"objs_prgr";s:25:"Links to Study Programmes";s:20:"lso_admin_form_title";s:8:"Settings";s:21:"lso_admin_form_byline";s:39:"General Settings for Learning Sequences";s:24:"lso_admin_interval_label";s:44:"Learning Progress Polling Interval (seconds)";s:25:"lso_admin_interval_byline";s:181:"Poll Learning Progress every x seconds. Be careful! A low value will increase server-requests and have an impact on overall system performance. Please choose highest value possible!";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'lti'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:223:{s:20:"act_lti_for_obj_type";s:31:"Activate LTI for Type of Object";s:18:"gbl_roles_to_users";s:33:"Global Role assigned to LTI Users";s:9:"consumers";s:9:"Consumers";s:6:"prefix";s:6:"Prefix";s:16:"lti_consumer_key";s:12:"Consumer Key";s:19:"lti_consumer_secret";s:15:"Consumer Secret";s:8:"user_lng";s:14:"User Languague";s:19:"lti_create_consumer";s:15:"Create Consumer";s:19:"lti_object_consumer";s:13:"LTI Consumers";s:12:"lti_settings";s:12:"LTI Settings";s:20:"lti_consumer_created";s:16:"Consumer created";s:20:"lti_consumer_updated";s:16:"Consumer updated";s:20:"lti_consumer_deleted";s:16:"Consumer deleted";s:23:"lti_consumer_set_active";s:18:"Consumer activated";s:25:"lti_consumer_set_inactive";s:20:"Consumer deactivated";s:29:"lm_only_one_download_per_type";s:90:"Please note that you can only make one file per type (XML, HTML, SCORM) public accessible.";s:27:"lti_auth_failed_invalid_key";s:51:"Authentication failed, no valid consumer key given.";s:8:"auth_lti";s:8:"LTI Auth";s:17:"lti_edit_consumer";s:17:"Edit LTI Consumer";s:14:"lti_obj_active";s:17:"LTI-Tool Provider";s:19:"lti_obj_active_info";s:126:"If enabled, this object acts as a LTI tool provider. New LTI users can be automatically assigned to the following local roles.";s:9:"lti_admin";s:17:"LTI Administrator";s:9:"lti_tutor";s:14:"LTI Instructor";s:10:"lti_member";s:10:"LTI Member";s:32:"lti_object_release_settings_form";s:17:"Edit LTI Releases";s:12:"lti_provider";s:12:"LTI Releases";s:14:"lti_launch_url";s:3:"Url";s:20:"lti_released_objects";s:15:"Object Releases";s:12:"lti_consumer";s:11:"Release for";s:15:"lti_not_allowed";s:66:"Access denied. Your request was redirected to the root LTI object.";s:14:"lti_navigation";s:10:"Navigation";s:11:"lti_session";s:11:"LTI Session";s:8:"lti_exit";s:17:"Close LTI Session";s:10:"lti_exited";s:18:"LTI Session closed";s:15:"lti_exited_info";s:31:"LTI Session successfully closed";s:14:"lti_cron_title";s:19:"LTI Outcome Service";s:19:"lti_cron_title_desc";s:206:"Synchronizes the learning progress of LTI users with the LTI consumer, if it supports the outcome service. This cron job is only required to transfer status updates after Learning progress settings updates.";s:21:"launch_method_own_win";s:10:"Own Window";s:26:"launch_method_own_win_info";s:123:"The content is opened in the same window and replaces the ILIAS Screen. When leaving the content the user returns to ILIAS.";s:21:"launch_method_new_win";s:10:"New Window";s:26:"launch_method_new_win_info";s:88:"The content is opened in a new window. When leaving the content this window gets closed.";s:22:"launch_method_embedded";s:16:"Embedded Content";s:27:"launch_method_embedded_info";s:107:"The content is opened within the ILIAS context. It is presented as embedded content within the content tab.";s:25:"learning_progress_options";s:29:"Options for Learning Progress";s:13:"mastery_score";s:13:"Mastery Score";s:18:"mastery_score_info";s:106:"The Learning Progress will be evaluated from the Provider Outcome Service and the mastery score threshold.";s:27:"lti_form_section_appearance";s:18:"Options for launch";s:8:"launched";s:30:"Resource was already launched.";s:34:"lti_info_learning_progress_section";s:49:"Info about Determination of the Learning Progress";s:24:"lti_info_privacy_section";s:62:"Info about personal data transmitted to the provider at launch";s:32:"lti_info_external_provider_label";s:35:"Additional Info about this Provider";s:31:"lti_info_external_provider_info";s:226:"The used Provider is an external Provider. An external Provider is characterized by insufficient influence on the Provider by the operator of the ILIAS-Installation. This is the case e.g. if there are no rights to delete data.";s:19:"lti_select_provider";s:15:"Select Provider";s:14:"lti_custom_new";s:28:"Create Own Provider Settings";s:8:"lti_copy";s:13:"Copy Consumer";s:17:"lti_providing_tab";s:21:"ILIAS as LTI Provider";s:17:"lti_consuming_tab";s:21:"ILIAS as LTI Consumer";s:22:"global_provider_subtab";s:30:"Global Providers for all Users";s:20:"user_provider_subtab";s:26:"Providers Defined by Users";s:12:"usage_subtab";s:5:"Usage";s:25:"tbl_provider_usage_header";s:12:"LTI Provider";s:30:"tbl_provider_usage_header_info";s:63:"Before deleting providers, trashed usages must also be deleted.";s:20:"tbl_lti_prov_used_by";s:32:"Provider Used by Objects in Tree";s:15:"settings_subtab";s:8:"Settings";s:24:"lti_global_settings_form";s:15:"Global Settings";s:23:"lti_add_global_provider";s:33:"Add Global Provider for all Users";s:26:"lti_import_global_provider";s:50:"Import Global Provider for all Users with XML-File";s:20:"form_import_provider";s:22:"Import Global Provider";s:18:"field_provider_xml";s:8:"XML-File";s:23:"field_provider_xml_info";s:120:"Supported are XML-Files for Tool Consumer and for Common Cartridge according to https://www.imsglobal.org/specs/lti/xml.";s:20:"lti_add_own_provider";s:36:"Add Own Provider (not for all Users)";s:19:"tbl_provider_header";s:12:"LTI Provider";s:24:"lti_form_provider_create";s:24:"Create Provider Settings";s:27:"lti_con_prov_authentication";s:14:"Authentication";s:29:"lti_con_prov_privacy_settings";s:16:"Privacy Settings";s:38:"lti_con_prov_learning_progress_options";s:29:"Options for Learning Progress";s:27:"lti_con_prov_launch_options";s:14:"Launch Options";s:22:"lti_form_provider_edit";s:22:"Edit Provider Settings";s:17:"tbl_lti_prov_icon";s:4:"Icon";s:18:"tbl_lti_prov_title";s:17:"Title of Provider";s:24:"tbl_lti_prov_description";s:11:"Description";s:25:"tbl_lti_prov_availability";s:12:"Availability";s:19:"tbl_lti_prov_usages";s:6:"Usages";s:27:"tbl_lti_prov_usages_trashed";s:14:"Trashed Usages";s:29:"tbl_lti_prov_usages_untrashed";s:17:"Repository Usages";s:29:"tbl_lti_prov_provider_creator";s:7:"Creator";s:25:"tbl_lti_prov_own_provider";s:12:"Own Provider";s:27:"lti_action_delete_providers";s:16:"Delete Providers";s:19:"lti_delete_provider";s:15:"Delete Provider";s:27:"lti_success_delete_provider";s:20:"Successfully deleted";s:28:"lti_confirm_delete_providers";s:63:"Are you sure that you want to delete the following provider(s)?";s:28:"lti_success_accept_as_global";s:54:"Successfully accepted as Global Provider for all Users";s:34:"lti_success_accept_as_global_multi";s:54:"Successfully accepted as Global Provider for all Users";s:28:"lti_success_reset_to_usr_def";s:45:"Successfully reseted as User Defined Provider";s:34:"lti_success_reset_to_usr_def_multi";s:45:"Successfully reseted as User Defined Provider";s:24:"lti_no_provider_selected";s:20:"No provider selected";s:32:"lti_at_least_one_prov_has_usages";s:96:"At least one provider could not be deleted because this provider has usages (might be in trash).";s:20:"tbl_lti_prov_keyword";s:7:"Keyword";s:21:"tbl_lti_prov_keywords";s:8:"Keywords";s:21:"tbl_lti_prov_category";s:8:"Category";s:27:"tbl_lti_prov_all_categories";s:14:"All Categories";s:20:"tbl_lti_prov_outcome";s:15:"Outcome Service";s:21:"tbl_lti_prov_internal";s:17:"Internal Provider";s:21:"tbl_lti_prov_with_key";s:28:"Predefined with Key / Secret";s:24:"lti_con_prov_inc_usr_pic";s:17:"Send User Picture";s:29:"lti_con_prov_inc_usr_pic_info";s:75:"Links to ILIAS user pictures are included at launch of LTI consumer object.";s:18:"lti_con_prov_title";s:5:"Title";s:24:"lti_con_prov_description";s:11:"Description";s:17:"lti_con_prov_icon";s:4:"Icon";s:19:"obj_tile_image_info";s:29:"Use an Image in Square Format";s:25:"lti_con_prov_availability";s:12:"Availability";s:32:"lti_con_prov_availability_create";s:20:"For Creating Objects";s:34:"lti_con_prov_availability_existing";s:25:"Only for existing Objects";s:29:"lti_con_prov_availability_non";s:13:"not available";s:16:"lti_con_prov_url";s:15:"URL of Provider";s:32:"lti_con_prov_provider_key_global";s:25:"Predefined Key and Secret";s:37:"lti_con_prov_provider_key_global_info";s:65:"If not set, users have to add key and secret to use the provider.";s:16:"lti_con_prov_key";s:3:"Key";s:19:"lti_con_prov_secret";s:6:"Secret";s:32:"lti_con_prov_has_outcome_service";s:33:"Provider supports Outcome Service";s:37:"lti_con_prov_has_outcome_service_info";s:158:"If the LTI Outcome Service is supported, Learning Progress could be activated. The Provider returns a value between 0 and 1 to indicate the Learning Progress.";s:27:"lti_con_prov_always_learner";s:26:"LTI User is always Learner";s:32:"lti_con_prov_always_learner_info";s:191:"Usually the role in ILIAS is mapped to a LTI role. Course Administrators could have more rights in the Provider, e.g. to manipulate the object. Activate this option to avoid the Role Mapping.";s:28:"lti_con_prov_use_provider_id";s:15:"Use Provider ID";s:33:"lti_con_prov_use_provider_id_info";s:221:"Usually the Ref-Id of the LTI Consumer is transferred to the Provider. Some Providers map this Ref-Id with the Resource of the Provider. To get always the same Resource for these Providers this Option should be activated.";s:29:"lti_con_prov_xapi_activity_id";s:11:"Activity ID";s:34:"lti_con_prov_xapi_activity_id_info";s:310:"The Activity ID is necessary to request data from the Learning Record Store. Only enter something here if the assignment of the provider\'s resource to an Activity Id is unique! If nothing is entered here, the Activity Id can be entered in LTI Consumer. The Activity Id could be requested from the LTI Provider.";s:21:"lti_con_prov_use_xapi";s:44:"Provider supports request of xAPI-Statements";s:21:"lti_con_prov_keywords";s:8:"Keywords";s:26:"lti_con_prov_keywords_info";s:116:"The keywords must be separated by a Semicolon (;). The Keywords are automatically taken to the Metadata as Keywords.";s:21:"lti_con_prov_category";s:8:"Category";s:26:"lti_con_prov_category_info";s:63:"Category to filter entries when LTI Consumer Object is created.";s:15:"conf_user_ident";s:19:"User identification";s:20:"conf_user_ident_info";s:74:"Standard is frequently the email address. The unique ILIAS platform id is:";s:31:"conf_user_ident_il_uuid_user_id";s:83:"ILIAS user id combined with a unique ILIAS platform id formated as an email adress.";s:36:"conf_user_ident_il_uuid_user_id_info";s:91:"This is identical to each call, but doesn\'t allow a direct conclusion about the ILIAS user.";s:29:"conf_user_ident_il_uuid_login";s:81:"ILIAS Login combined with a unique ILIAS platform id formated as an email adress.";s:34:"conf_user_ident_il_uuid_login_info";s:87:"This is identical to each call, but may allow a direct conclusion about the ILIAS user.";s:35:"conf_user_ident_il_uuid_ext_account";s:86:"External User Id combined with a unique ILIAS platform id formated as an email adress.";s:40:"conf_user_ident_il_uuid_ext_account_info";s:81:"This is identical to each call, but may allow a direct conclusion about the user.";s:26:"conf_user_ident_real_email";s:14:"E-Mail Address";s:31:"conf_user_ident_real_email_info";s:108:"Sends E-Mail Address of user as identification (Warning: an E-Mail Address might be used by multiple users!)";s:14:"conf_user_name";s:9:"User name";s:19:"conf_user_name_info";s:45:"Sending an user name is usually not required.";s:19:"conf_user_name_none";s:6:"No one";s:24:"conf_user_name_none_info";s:27:"Sends \'-\' instead of a name";s:24:"conf_user_name_firstname";s:10:"First name";s:29:"conf_user_name_firstname_info";s:48:"Sends the first name of the user name from ILIAS";s:23:"conf_user_name_lastname";s:19:"Title and last name";s:28:"conf_user_name_lastname_info";s:70:"Sends Mister or Ms/Mrs. (unless otherwise specified) and the last name";s:23:"conf_user_name_fullname";s:11:"Entire name";s:28:"conf_user_name_fullname_info";s:37:"Sends title, first name and last name";s:33:"lti_con_prov_privacy_setting_conf";s:21:"Configuration Options";s:33:"lti_con_prov_privacy_setting_info";s:42:"Configuration Options for Privacy Settings";s:36:"lti_con_prov_privacy_setting_default";s:40:"Default Settings, changeable for Objects";s:34:"lti_con_prov_privacy_setting_force";s:39:"Settings are not changeable for Objects";s:30:"lti_con_prov_external_provider";s:17:"External Provider";s:35:"lti_con_prov_external_provider_info";s:245:"A hint will be shown to users when dealing with an external Provider. An external Provider is characterized by insufficient influence on the Provider by the operator of the ILIAS-installation. This is the case when there are no rights to delete.";s:34:"lti_con_prov_mastery_score_default";s:21:"Default Mastery Score";s:39:"lti_con_prov_mastery_score_default_info";s:106:"The Learning Progress will be evaluated from the Provider Outcome Service and the mastery score threshold.";s:26:"lti_con_prov_use_xapi_info";s:33:"Provider supports xAPI-Statements";s:28:"lti_con_prov_xapi_launch_url";s:19:"URL of LRS Endpoint";s:33:"lti_con_prov_xapi_launch_url_info";s:33:"Please add full URL with https://";s:28:"lti_con_prov_xapi_launch_key";s:19:"Key of LRS Endpoint";s:33:"lti_con_prov_xapi_launch_key_info";s:6:" ";s:31:"lti_con_prov_xapi_launch_secret";s:22:"Secret of LRS Endpoint";s:36:"lti_con_prov_xapi_launch_secret_info";s:6:" ";s:26:"lti_con_prov_custom_params";s:44:"Custom Parameters for this specific Provider";s:31:"lti_con_prov_custom_params_info";s:58:"Please enter them in the form param1=value1; param2=value2";s:26:"lti_con_prov_group_options";s:37:"Options to group and filter Providers";s:18:"lti_con_prov_hints";s:5:"Hints";s:20:"lti_con_prov_remarks";s:16:"Internal Remarks";s:24:"lti_action_edit_provider";s:13:"Edit Provider";s:36:"lti_action_accept_provider_as_global";s:48:"Accept Provider as Global Provider for all Users";s:37:"lti_action_accept_providers_as_global";s:26:"Accept Providers as Global";s:39:"lti_action_reset_provider_to_user_scope";s:39:"Reset Provider as User Defined Provider";s:40:"lti_action_reset_providers_to_user_scope";s:31:"Reset Providers as User Defined";s:27:"lti_delete_consume_provider";s:15:"Delete Provider";s:28:"lti_delete_consume_providers";s:16:"Delete Providers";s:8:"tab_info";s:4:"Info";s:11:"tab_content";s:7:"Content";s:12:"tab_settings";s:8:"Settings";s:14:"tab_statements";s:20:"Learning Experiences";s:26:"lti_provider_not_avail_msg";s:38:"LTI Provider is set to \'Not Available\'";s:22:"subtab_object_settings";s:15:"Object Settings";s:18:"subtab_certificate";s:11:"Certificate";s:24:"subtab_provider_settings";s:21:"LTI Provider Settings";s:17:"lti_settings_form";s:15:"Object Settings";s:13:"provider_info";s:13:"Used Provider";s:10:"title_info";s:24:"Give the object a title.";s:16:"description_info";s:46:"The description will be shown below the title.";s:11:"online_info";s:55:"This makes the object visible and usable for the users.";s:13:"launch_method";s:18:"Options for Launch";s:8:"use_xapi";s:16:"Use xAPI-Support";s:13:"use_xapi_info";s:43:"This LTI Provider supports xAPI-Statements.";s:11:"activity_id";s:11:"Activity ID";s:16:"activity_id_info";s:68:"This Activity ID is used by the LTI Provider to identify Statements.";s:15:"show_statements";s:28:"Display Learning Experiences";s:20:"show_statements_info";s:122:"The Learning Experiences of other users could be displayed if the right \'View learning experiences of other users\' is set.";s:11:"tab_scoring";s:7:"Ranking";s:17:"highscore_enabled";s:7:"Ranking";s:21:"highscore_description";s:107:"The names of other users could be displayed if the right \'View learning experiences of other users\' is set.";s:21:"highscore_achieved_ts";s:4:"Date";s:33:"highscore_achieved_ts_description";s:61:"A column containing the date will be included in the ranking.";s:15:"highscore_score";s:5:"Score";s:27:"highscore_score_description";s:62:"A column containing the score will be included in the ranking.";s:20:"highscore_percentage";s:10:"Percentage";s:32:"highscore_percentage_description";s:76:"A column containing the score as percentage will be included in the ranking.";s:15:"highscore_wtime";s:8:"Duration";s:27:"highscore_wtime_description";s:65:"A column containing the duration will be included in the ranking.";s:14:"highscore_mode";s:4:"Mode";s:19:"highscore_own_table";s:22:"Participant\'s Own Rank";s:31:"highscore_own_table_description";s:62:"Participants are advised of their own position in the ranking.";s:19:"highscore_top_table";s:11:"Top Ranking";s:31:"highscore_top_table_description";s:68:"Participants are presented with a table containing the top rankings.";s:20:"highscore_all_tables";s:38:"Participant\'s Own Rank and Top Ranking";s:32:"highscore_all_tables_description";s:89:"Participants get information about the top ranking and their own position in the ranking.";s:17:"highscore_top_num";s:21:"Length of Top Ranking";s:29:"highscore_top_num_description";s:66:"Specify how many ranks are to be included in the top ranking list.";s:22:"highscore_top_num_unit";s:7:"entries";s:21:"lti_user_role_created";s:59:"The recommended global role for LTI users has been created.";s:24:"lti_create_lti_user_role";s:44:"Create recommended global role for LTI users";s:18:"lti_user_role_info";s:183:"The recommended global role for LTI users has not yet been created in this installation. This special global role contains only the permission \'visible\' for repository and categories.";}'))); @@ -34490,7 +34493,7 @@ function setupILIASDatabase() 'module' => array('text', 'feed'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:14:{s:30:"block_feed_block_feed_url_info";s:28:"Must be a valid RSS/Atom URL";s:25:"block_feed_block_feed_url";s:8:"Feed URL";s:21:"block_feed_block_head";s:17:"External Web Feed";s:22:"block_feed_block_title";s:5:"Title";s:27:"feed_disable_rep_feeds_info";s:108:"Disables presentation of external web feeds in case of an unexpected problem due to an external feed source.";s:22:"feed_disable_rep_feeds";s:14:"Hide Web Feeds";s:15:"feed_feed_items";s:12:"Feed Item(s)";s:17:"feed_loading_feed";s:15:"Loading Feed...";s:21:"feed_no_js_click_here";s:37:"If feed is not displayed, click here.";s:17:"feed_no_valid_url";s:26:"The Feed URL is not valid.";s:21:"feed_open_source_page";s:18:"Open in New Window";s:13:"feed_settings";s:27:"External Web Feeds Settings";s:11:"feed_import";s:11:"Import Feed";s:17:"feed_no_local_url";s:70:"The URL could not be verified. Please enter a valid external Feed URL.";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'file'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:28:{s:21:"file_new_version_info";s:64:"Create new file version. Previous versions will not be modified.";s:16:"file_new_version";s:18:"Create New Version";s:17:"replace_file_info";s:43:"All previous file versions will be deleted.";s:11:"upload_info";s:4:"File";s:16:"upload_info_desc";s:45:"Manage Uploads and Versions in Tab "Versions"";s:24:"generate_sanitize_report";s:31:"Report about inaccessible files";s:16:"file_uploaded_by";s:11:"Uploaded by";s:9:"file_copy";s:9:"Copy File";s:13:"file_download";s:13:"Download File";s:21:"repository_disk_quota";s:30:"Soft Disk Quota for Repository";s:26:"repository_disk_quota_info";s:139:"If activated, the disk-quota of the magazine will be checked for each user and e-mails will be sent to administrators and users optionally.";s:11:"file_import";s:11:"Import File";s:28:"general_upload_error_occured";s:42:"An unexpected error occured during upload.";s:29:"file_suffix_custom_expl_black";s:19:"Explizite Blacklist";s:34:"file_suffix_custom_expl_black_info";s:52:"Dateien mit diesen Endungen werden nicht akzeptiert.";s:25:"file_suffix_default_white";s:24:"Default Suffix Whitelist";s:30:"file_suffix_default_white_info";s:39:"Default list of accepted file suffixes.";s:24:"file_suffix_custom_black";s:23:"Custom Suffix Blacklist";s:29:"file_suffix_custom_black_info";s:58:"These suffixes will be removed from the default whitelist.";s:24:"file_suffix_custom_white";s:23:"Custom Suffix Whitelist";s:29:"file_suffix_custom_white_info";s:54:"These suffixes will be added to the default whitelist.";s:25:"file_suffix_overall_white";s:23:"Overal Suffix Whitelist";s:30:"file_suffix_overall_white_info";s:49:"Resulting overall list of accepted file suffixes.";s:84:"file_upload_info_file_with_critical_unknown_extension_later_renamed_when_downloading";s:121:"The uploaded file contains a critical or unknown file ending. The file ending will be changed to .sec for every download.";s:29:"personal_resources_disk_quota";s:38:"Hard Disk Quota for Personal Resources";s:34:"personal_resources_disk_quota_info";s:300:"Allows definition of a hard disk quota for each user account and each global role. This quota only affects files in the personal resources and in portfolios. As soon as a user exceeds the defined quota, ILIAS will prohibit the user to upload more files until the used disk space is again under quota.";s:41:"personal_resources_quota_exceeded_warning";s:61:"You have exceeded the disk quota for your personal resources.";s:38:"personal_resources_quota_status_legend";s:65:"You are using %1$s of your available disk quota of %2$s (%3$d%%).";}'))); +'module' => array('text', 'file'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:31:{s:21:"file_new_version_info";s:64:"Create new file version. Previous versions will not be modified.";s:16:"file_new_version";s:18:"Create New Version";s:17:"replace_file_info";s:43:"All previous file versions will be deleted.";s:11:"upload_info";s:4:"File";s:16:"upload_info_desc";s:45:"Manage Uploads and Versions in Tab "Versions"";s:24:"generate_sanitize_report";s:31:"Report about inaccessible files";s:16:"file_uploaded_by";s:11:"Uploaded by";s:9:"file_copy";s:9:"Copy File";s:13:"file_download";s:13:"Download File";s:21:"repository_disk_quota";s:30:"Soft Disk Quota for Repository";s:26:"repository_disk_quota_info";s:139:"If activated, the disk-quota of the magazine will be checked for each user and e-mails will be sent to administrators and users optionally.";s:11:"file_import";s:11:"Import File";s:28:"general_upload_error_occured";s:42:"An unexpected error occured during upload.";s:29:"file_suffix_custom_expl_black";s:19:"Explizite Blacklist";s:34:"file_suffix_custom_expl_black_info";s:52:"Dateien mit diesen Endungen werden nicht akzeptiert.";s:25:"file_suffix_default_white";s:24:"Default Suffix Whitelist";s:30:"file_suffix_default_white_info";s:39:"Default list of accepted file suffixes.";s:24:"file_suffix_custom_black";s:23:"Custom Suffix Blacklist";s:29:"file_suffix_custom_black_info";s:58:"These suffixes will be removed from the default whitelist.";s:24:"file_suffix_custom_white";s:23:"Custom Suffix Whitelist";s:29:"file_suffix_custom_white_info";s:54:"These suffixes will be added to the default whitelist.";s:25:"file_suffix_overall_white";s:23:"Overal Suffix Whitelist";s:30:"file_suffix_overall_white_info";s:49:"Resulting overall list of accepted file suffixes.";s:84:"file_upload_info_file_with_critical_unknown_extension_later_renamed_when_downloading";s:121:"The uploaded file contains a critical or unknown file ending. The file ending will be changed to .sec for every download.";s:29:"personal_resources_disk_quota";s:38:"Hard Disk Quota for Personal Resources";s:34:"personal_resources_disk_quota_info";s:300:"Allows definition of a hard disk quota for each user account and each global role. This quota only affects files in the personal resources and in portfolios. As soon as a user exceeds the defined quota, ILIAS will prohibit the user to upload more files until the used disk space is again under quota.";s:29:"personal_workspace_disk_quota";s:38:"Hard Disk Quota for Personal Workspace";s:41:"personal_workspace_quota_exceeded_warning";s:61:"You have exceeded the disk quota for your personal workspace.";s:38:"personal_workspace_quota_status_legend";s:65:"You are using %1$s of your available disk quota of %2$s (%3$d%%).";s:41:"personal_resources_quota_exceeded_warning";s:61:"You have exceeded the disk quota for your personal resources.";s:38:"personal_resources_quota_status_legend";s:65:"You are using %1$s of your available disk quota of %2$s (%3$d%%).";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'fm'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:7:{s:15:"fm_settings_tab";s:12:"File Manager";s:18:"fm_settings_active";s:19:"Enable File Manager";s:23:"fm_settings_active_info";s:119:"Users can open categories, courses, groups and folders using the ‘Open With File Manager’ action in the repository.";s:17:"fm_settings_local";s:21:"Show Local Filesystem";s:22:"fm_settings_local_info";s:186:"If enabled, the file manager starts with two frames, one shows the local filesystem, the other contains the view on the ILIAS repository. If disabled, only the ILIAS repository is shown.";s:20:"fm_settings_filesize";s:24:"Maximum Upload File Size";s:25:"fm_settings_filesize_info";s:67:"Enter the maximum allowed file size for uploaded files in mebibyte.";}'))); @@ -34622,7 +34625,7 @@ function setupILIASDatabase() 'module' => array('text', 'poll'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:59:{s:8:"poll_new";s:12:"Add New Poll";s:8:"poll_add";s:8:"Add Poll";s:9:"poll_copy";s:9:"Copy Poll";s:9:"poll_edit";s:9:"Edit Poll";s:13:"poll_question";s:8:"Question";s:10:"poll_image";s:5:"Image";s:17:"poll_view_results";s:15:"Display Results";s:24:"poll_view_results_always";s:6:"Always";s:23:"poll_view_results_never";s:5:"Never";s:28:"poll_view_results_after_vote";s:10:"After Vote";s:30:"poll_view_results_after_period";s:19:"After Voting Period";s:27:"poll_activation_online_info";s:59:"Activate this setting to make the poll accessible to users.";s:11:"poll_answer";s:6:"Answer";s:12:"poll_answers";s:16:"Possible Answers";s:14:"poll_sortorder";s:5:"Order";s:15:"poll_percentage";s:18:"Current Percentage";s:9:"poll_vote";s:4:"Vote";s:26:"poll_block_message_offline";s:21:"This poll is offline.";s:27:"poll_block_message_inactive";s:36:"This poll will be available from %s.";s:32:"poll_block_message_already_voted";s:31:"You already voted in this poll.";s:29:"poll_block_message_no_answers";s:24:"This poll is incomplete.";s:18:"poll_votes_no_edit";s:88:"This poll already contains votes. You cannot edit the poll until you delete these votes.";s:15:"poll_population";s:15:"%s Participants";s:17:"poll_delete_votes";s:16:"Delete All Votes";s:22:"poll_delete_votes_sure";s:42:"Are you sure you want to delete all votes?";s:30:"poll_voting_period_and_results";s:25:"Voting Period and Results";s:26:"poll_voting_period_limited";s:21:"Limited Voting Period";s:13:"poll_absolute";s:13:"Current Votes";s:31:"poll_block_results_available_on";s:36:"The results will be available on %s.";s:11:"poll_import";s:11:"Import Poll";s:11:"poll_result";s:7:"Results";s:23:"poll_voting_period_info";s:23:"Deadline for Voting: %s";s:26:"poll_max_number_of_answers";s:41:"Maximum Number Of Answers per Participant";s:22:"poll_vote_error_single";s:23:"Please select 1 answer.";s:21:"poll_vote_error_multi";s:38:"Please select no more than %s answers.";s:19:"poll_result_sorting";s:7:"Sorting";s:27:"poll_result_sorting_answers";s:27:"In the order of the answers";s:25:"poll_result_sorting_votes";s:31:"By number of votes (descending)";s:9:"poll_mode";s:4:"Mode";s:19:"poll_mode_anonymous";s:9:"Anonymous";s:24:"poll_mode_anonymous_info";s:44:"Votes cannot be traced back to participants.";s:18:"poll_mode_personal";s:8:"Personal";s:23:"poll_mode_personal_info";s:98:"A list of participants with their respective votes is available when having sufficient permission.";s:26:"poll_non_anonymous_warning";s:65:"Your name and vote are visible for administrators in the results.";s:19:"poll_result_answers";s:5:"Votes";s:17:"poll_result_users";s:12:"Participants";s:27:"poll_notification_subscribe";s:21:"Activate Notification";s:29:"poll_notification_unsubscribe";s:23:"Deactivate Notification";s:30:"poll_vote_notification_subject";s:19:"Poll "%s": new vote";s:27:"poll_vote_notification_body";s:39:"the following poll has received a vote.";s:27:"poll_vote_notification_link";s:12:"Link to Poll";s:29:"poll_vote_notification_reason";s:95:"You are receiving this e-mail because you activated notifications for the poll mentioned above.";s:13:"poll_comments";s:8:"Comments";s:20:"poll_show_results_as";s:15:"Show Results as";s:13:"poll_barchart";s:9:"Bar Chart";s:13:"poll_piechart";s:9:"Pie Chart";s:22:"poll_anonymous_warning";s:45:"Your name is not visible in the poll results.";s:41:"poll_view_results_after_period_impossible";s:33:"The voting period is not limited.";s:28:"poll_voting_period_full_info";s:27:"Voting period from %s to %s";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'prg'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:246:{s:29:"form_msg_file_wrong_file_type";s:16:"Wrong file type.";s:7:"prg_new";s:19:"New Study Programme";s:7:"prg_add";s:19:"Add Study Programme";s:8:"prg_edit";s:20:"Edit Study Programme";s:8:"prg_type";s:20:"Study Programme Type";s:14:"prg_assessment";s:26:"Study Programme Assessment";s:10:"prg_points";s:6:"Points";s:10:"prg_status";s:6:"Status";s:16:"prg_status_draft";s:5:"Draft";s:17:"prg_status_active";s:6:"Active";s:19:"prg_status_outdated";s:8:"Outdated";s:22:"prg_status_in_progress";s:11:"In Progress";s:20:"prg_status_completed";s:9:"Completed";s:21:"prg_status_accredited";s:10:"Accredited";s:23:"prg_status_not_relevant";s:12:"Not Relevant";s:12:"prg_possible";s:8:"Possible";s:17:"prg_completion_by";s:13:"Completion by";s:14:"prg_changed_by";s:10:"Changed by";s:17:"prg_manual_status";s:13:"Manual Status";s:19:"prg_points_required";s:15:"Points Required";s:18:"prg_points_current";s:14:"Points Current";s:15:"prg_custom_plan";s:11:"Custom Plan";s:14:"prg_belongs_to";s:10:"Belongs to";s:24:"prg_show_individual_plan";s:20:"Show Individual Plan";s:15:"prg_remove_user";s:11:"Remove User";s:19:"prg_mark_accredited";s:15:"Mark Accredited";s:21:"prg_unmark_accredited";s:17:"Unmark Accredited";s:27:"prg_mark_accredited_success";s:46:"Accredited Program Node for User successfully.";s:29:"prg_unmark_accredited_success";s:48:"Unaccredited Program Node for User successfully.";s:23:"prg_remove_user_success";s:26:"Removed User successfully.";s:12:"prg_type_add";s:20:"Study Programme Type";s:12:"prg_subtypes";s:8:"Subtypes";s:15:"prg_subtype_add";s:15:"Add new subtype";s:20:"prg_type_custom_icon";s:12:"Custom Icons";s:25:"prg_type_custom_icon_info";s:16:"Custom icon info";s:30:"prg_type_msg_error_custom_icon";s:24:"Error while storing icon";s:24:"prg_type_assign_amd_sets";s:29:"Assign advanced metadata sets";s:27:"prg_type_available_amd_sets";s:32:"Available Advanced Metadata sets";s:13:"prg_type_edit";s:12:"Edit subtype";s:20:"prg_type_msg_deleted";s:15:"Deleted subtype";s:26:"prg_type_msg_unable_delete";s:88:"Unable to delete type because it is still assigned to the following Study Programmes: %s";s:43:"prg_type_msg_missing_title_default_language";s:73:"There must be set a default language and a title for the default language";s:19:"prg_save_tree_order";s:15:"Save tree order";s:21:"prg_cancel_tree_order";s:18:"Dismiss tree order";s:26:"prg_saved_order_successful";s:22:"Saved order successful";s:18:"prg_async_settings";s:8:"Settings";s:13:"prg_open_node";s:19:"Switch to this node";s:16:"prg_async_create";s:18:"Add new tree-child";s:19:"prg_create_new_node";s:15:"Create new node";s:19:"prg_create_new_leaf";s:15:"Create new leaf";s:46:"prg_please_select_a_course_for_creating_a_leaf";s:54:"Please select a course for creating a course link leaf";s:18:"prg_deleted_safely";s:23:"Node was deleted safely";s:30:"prg_not_allowed_node_to_delete";s:39:"You are not allowed to delete this node";s:31:"prg_added_course_ref_successful";s:38:"New course link was added successfully";s:10:"prg_manage";s:6:"Manage";s:8:"prg_view";s:4:"View";s:28:"prg_update_from_current_plan";s:24:"Update from current Plan";s:21:"prg_update_successful";s:27:"Saved changes successfully!";s:31:"prg_update_from_plan_successful";s:39:"Updated from current plan successfully!";s:7:"warning";s:8:"Warning!";s:17:"prg_progress_info";s:72:"You have %1$d points. The Study Programme is completed with %2$d points.";s:19:"prg_progress_status";s:20:" %1$d of %2$d Points";s:33:"prg_progress_status_with_child_sp";s:29:" %1$d of possible %2$d Points";s:25:"prg_no_members_not_active";s:51:"Can\'t add members, as this programme is not active.";s:26:"prg_type_msg_missing_title";s:22:"Title cannot be empty.";s:16:"prg_added_member";s:38:"The new member was added successfully.";s:17:"prg_added_members";s:40:"The new members were added successfully.";s:33:"prg_acknowledge_completed_courses";s:29:"Acknowledge Completed Courses";s:25:"prg_multi_mark_accredited";s:10:"Accredited";s:27:"prg_multi_unmark_accredited";s:17:"Unmark Accredited";s:21:"prg_multi_remove_user";s:11:"Remove User";s:23:"prg_multi_mark_relevant";s:13:"Mark Relevant";s:25:"prg_multi_unmark_relevant";s:15:"Unmark Relevant";s:34:"prg_multi_update_from_current_plan";s:24:"Update From Current Plan";s:33:"prg_mark_accredited_multi_success";s:33:"Mark Selected Users As Accredited";s:35:"prg_unmark_accredited_multi_success";s:35:"Unmark Selected Users As Accredited";s:31:"prg_mark_relevant_multi_success";s:31:"Mark Selected Users As Relevant";s:35:"prg_mark_not_relevant_multi_success";s:33:"Unmark Selected Users As Relevant";s:24:"prg_remove_users_success";s:21:"Remove Selected Users";s:34:"prg_remove_users_partitial_success";s:33:"Remove Selected Users Particially";s:29:"prg_remove_users_not_possible";s:34:"Remove Selected Users Not Possible";s:41:"prg_update_from_current_plan_not_possible";s:37:"Update From Current Plan Not Possible";s:46:"prg_update_from_current_plan_partitial_success";s:35:"Update From Current Plan Partically";s:36:"prg_update_from_current_plan_success";s:24:"Update From Current Plan";s:20:"prg_no_user_selected";s:16:"No User Selected";s:12:"prg_prg_type";s:20:"Study Programme Type";s:32:"prg_show_programmes_on_pd_always";s:49:"Study Programmes are always visible on Dashboard.";s:35:"prg_show_programmes_on_pd_only_read";s:75:"Study Programmes are only visible on Dashboard with ‘read’ permissions.";s:40:"prg_more_objects_without_read_permission";s:80:"Study Programme contains more objects you can\'t see because of less permissions.";s:26:"prg_can_not_manage_in_repo";s:79:"You\'re not allowed to manage this Study Programme, because of user assignments.";s:19:"prg_show_programmes";s:10:"Visibility";s:15:"prg_assign_date";s:15:"Assignment date";s:15:"prg_assigned_by";s:11:"Assigned by";s:20:"prg_points_reachable";s:17:"Points Obtainable";s:12:"prg_deadline";s:8:"Deadline";s:17:"prg_status_failed";s:6:"failed";s:15:"assignment_date";s:15:"Assignment Date";s:15:"completion_date";s:15:"Completion Date";s:15:"prg_no_deadline";s:24:"No fixed prozessing time";s:19:"prg_deadline_period";s:41:"Processing time is determined inividually";s:24:"prg_deadline_period_desc";s:55:"The programme must be finished within a given timespan.";s:17:"prg_deadline_date";s:37:"Processing time expires at fixed date";s:22:"prg_deadline_date_desc";s:50:"The programme must be finished until a given date.";s:29:"prg_no_validity_qualification";s:26:"Long-Lasting qualification";s:29:"prg_validity_of_qualification";s:35:"Validity of Achieved Qualifications";s:29:"validity_qualification_period";s:34:"Qualification expires individually";s:34:"validity_qualification_period_desc";s:21:"days after completion";s:27:"validity_qualification_date";s:35:"Qualification expires at fixed date";s:32:"validity_qualification_date_desc";s:11:"expiry date";s:14:"prg_no_restart";s:19:"No restart required";s:14:"restart_period";s:18:"Restart obligatory";s:19:"restart_period_desc";s:18:"days before expiry";s:20:"sp_certificate_title";s:28:"Title of the Study Programme";s:26:"sp_certificate_description";s:34:"Description of the Study Programme";s:19:"sp_certificate_type";s:27:"Type of the Study Programme";s:21:"sp_certificate_points";s:40:"Amount of points that have been acquired";s:30:"sp_certificate_completion_date";s:18:"Date of completion";s:34:"sp_certificate_progress_expires_at";s:31:"Date of expiry of qualification";s:19:"prg_completion_date";s:15:"Completion date";s:15:"prg_expiry_date";s:11:"Expiry date";s:12:"prg_validity";s:8:"Validity";s:15:"prg_still_valid";s:11:"still valid";s:13:"prg_not_valid";s:9:"not valid";s:47:"prg_restart_assignments_temporal_progress_title";s:34:"Restart Studyprogramme assignments";s:46:"prg_restart_assignments_temporal_progress_desc";s:66:"Restart Studyprogramme assignments with progresses about to expire";s:39:"prg_invalidate_expired_progresses_title";s:43:"Limited validity of Studyprogramme progress";s:38:"prg_invalidate_expired_progresses_desc";s:59:"Marks expired progresses at Studyprogrammes as \'not passed\'";s:9:"prg_orgus";s:20:"Organisational Units";s:24:"content_automation_title";s:58:"Automatically add and remove Courses from these categories";s:18:"content_automation";s:18:"Content Automation";s:14:"last_edited_by";s:11:"Last Editor";s:11:"last_edited";s:11:"Last edited";s:12:"add_category";s:12:"Add Category";s:22:"modal_categories_title";s:24:"Category to be monitored";s:8:"category";s:14:"Category RefId";s:8:"prgr_new";s:27:"Create Study Programme Link";s:14:"prgr_edit_info";s:58:"Please choose one Study Programme for creating a new link.";s:38:"prgr_may_not_create_circular_reference";s:103:"This Study Programme may not be linked here since the parent object is alredy linked within the target.";s:35:"prg_validity_of_qualification_limit";s:20:"Qualification Expiry";s:37:"prg_validity_of_qualification_restart";s:7:"Restart";s:21:"prg_deadline_settings";s:17:"Processing Period";s:17:"edit_participants";s:12:"Edit Members";s:16:"auto_memberships";s:21:"Membership Automation";s:4:"orgu";s:19:"Organisational Unit";s:3:"rol";s:4:"Role";s:21:"auto_membership_title";s:33:"Sources for Membership Automation";s:25:"add_automembership_source";s:10:"Add Source";s:24:"auto_membership_src_type";s:4:"Type";s:20:"membership_source_id";s:2:"Id";s:33:"membership_source_id_byline_objid";s:31:"Please use the object-id";s:33:"membership_source_id_byline_refid";s:34:"Please use the reference-id";s:26:"modal_automembership_title";s:24:"Automatismus hinzufügen";s:22:"membership_source_type";s:6:"Source";s:18:"prg_autoassignment";s:6:"(auto)";s:36:"prg_some_users_may_not_be_accredited";s:34:"Partially marked users accredited.";s:45:"prg_some_users_may_not_be_unmarked_accredited";s:36:"Partially unmarked users accredited.";s:41:"prg_some_users_may_not_be_marked_relevant";s:26:"Partially marked relevant.";s:45:"prg_some_users_may_not_be_marked_not_relevant";s:28:"Partially unmarked relevant.";s:20:"prg_formatted_period";s:7:"%d days";s:20:"deadline_information";s:39:"Information regarding processing period";s:19:"dealine_period_info";s:32:"Days to process after assignment";s:17:"dealine_date_info";s:13:"Deadline date";s:14:"vq_information";s:55:"Information regarding validity of achived qualification";s:14:"vq_period_info";s:53:"Days until qualification will expire after achivement";s:12:"vq_date_info";s:35:"Qualification expires at fixed date";s:19:"restart_information";s:77:"Information regarding automatic restart upon pending qualification expiration";s:19:"restart_period_info";s:61:"Days before qualification expiration to restart qualification";s:27:"access_ctr_by_orgu_position";s:57:"Access control according to Organisational Unit Positions";s:33:"could_not_add_users_no_permissons";s:53:"Could not assign %d Users due to lacking permissions.";s:18:"not_a_valid_cat_id";s:39:"%s is not a valid ref-id of a category.";s:23:"prg_mail_permanent_link";s:97:"Click on the following link to find all of the information you need regarding the study programm:";s:9:"prg_title";s:5:"Title";s:24:"re_assigned_mail_subject";s:43:"Renewed participation in the study programm";s:21:"re_assigned_mail_body";s:74:"%s %s,

you were reassigned to study program \'%s\' as participants.";s:30:"info_to_re_assign_mail_subject";s:55:"Reminder of renewed participation in the study programm";s:27:"info_to_re_assign_mail_body";s:115:"%s %s,

The validity of their participation in the study programm \'% s\' expires soon. Please sign in again.";s:33:"prg_user_not_restarted_time_input";s:21:"Reminder mail restart";s:38:"prg_user_not_restarted_time_input_info";s:96:"Reminder Mail Reminds the user x days before the invalidation that he must restart the programm.";s:30:"prg_processing_ends_no_success";s:21:"Reminder mail failing";s:35:"prg_processing_ends_no_success_info";s:81:"Reminds the user x days before the program expires that he is at risk of failing.";s:26:"prg_cron_job_configuration";s:29:"Configuration automatic Mails";s:21:"send_re_assigned_mail";s:28:"E-mail renewed participation";s:26:"send_re_assigned_mail_info";s:57:"Send an e-mail to automatically re-join the sudy program.";s:27:"send_info_to_re_assign_mail";s:23:"E-mail reminder restart";s:32:"send_info_to_re_assign_mail_info";s:63:"Send an e-mail to remind the user to restart the study program.";s:28:"prg_user_risky_to_fail_title";s:40:"Send warning mail about possible failure";s:27:"prg_user_risky_to_fail_desc";s:95:"Sends users a warning mail if they are at the risk to fail a study programme due to a deadline.";s:28:"prg_user_not_restarted_title";s:31:"Send warning mail about restart";s:27:"prg_user_not_restarted_desc";s:118:"Sends users a warning mail if a qualification at a study programme expires and they haven\'t restarted the program yet.";s:23:"send_risky_to_fail_mail";s:25:"E-mail in case of failure";s:28:"send_risky_to_fail_mail_info";s:70:"Send an e-mail if the user is at risk of failure of the study program.";s:20:"prg_dash_label_valid";s:6:"Valid:";s:22:"prg_dash_label_minimum";s:19:"Minimum Completion:";s:19:"prg_dash_label_gain";s:19:"Current Completion:";s:21:"prg_dash_label_status";s:7:"Status:";s:27:"prg_dash_label_finish_until";s:13:"Finish until:";s:27:"prg_dash_label_restart_from";s:13:"Restart from:";s:10:"percentage";s:1:"%";s:12:"prg_status_1";s:11:"In Progress";s:12:"prg_status_2";s:9:"Completed";s:12:"prg_status_3";s:10:"Accredited";s:12:"prg_status_4";s:12:"Not Relevant";s:12:"prg_status_5";s:6:"failed";s:25:"prg_multi_change_deadline";s:15:"Change deadline";s:28:"prg_multi_change_expire_date";s:18:"Change expire date";s:18:"update_expire_date";s:32:"Successfully update expire date.";s:15:"update_deadline";s:29:"Successfully update deadline.";s:26:"error_updating_expire_date";s:34:"Error during updating expire date.";s:23:"error_updating_deadline";s:31:"Error during updating deadline.";s:10:"select_crs";s:18:"Search for Courses";s:10:"select_grp";s:17:"Search for Groups";s:11:"select_role";s:16:"Search for Roles";s:10:"select_org";s:30:"Search for Organisational Unit";s:9:"label_crs";s:11:"Course Name";s:9:"label_grp";s:10:"Group Name";s:10:"label_role";s:9:"Role Name";s:30:"modal_member_auto_select_title";s:33:"Select source for auto assignment";s:26:"prg_auto_member_select_crs";s:7:"Courses";s:26:"prg_auto_member_select_grp";s:6:"Groups";s:27:"prg_auto_member_select_role";s:5:"Roles";s:21:"prg_quali_still_valid";s:25:"Qualification still valid";s:19:"prg_quali_not_valid";s:23:"Qualification not valid";s:15:"prg_type_byline";s:56:"Set a type to use certain custom metadata sets or icons.";s:17:"prg_points_byline";s:134:"Students get a certain amount of points when they succeed in this programme and need to get this many points in subsequent programmes.";s:17:"prg_status_byline";s:68:"Use the status to control if this programme is assigned to students.";s:15:"prg_description";s:11:"Description";s:8:"prg_link";s:4:"Link";s:22:"prg_mail_context_title";s:32:"Study Programme: Mail to Members";s:21:"prg_mail_context_info";s:92:"For the participant e-mails on the member and learning progress screens of a study programme";s:23:"prg_additional_settings";s:19:"Additional Features";s:18:"prg_access_by_orgu";s:45:"Access Control by Organisation Unit Positions";s:25:"prg_access_by_orgu_byline";s:96:"If enabled, additional access control rules can be defined by positions in organisational units.";s:17:"msg_fill_required";s:32:"Please fill all required fields.";s:22:"prg_profile_not_public";s:34:"Profile of the user is not public.";s:27:"prg_delete_nothing_selected";s:43:"Please select at least one entry to delete.";s:23:"prg_delete_confirmation";s:50:"Do you really want to delete the selected entries?";s:18:"prg_confirm_delete";s:6:"Delete";s:10:"prg_cancel";s:6:"Cancel";s:18:"prg_delete_failure";s:14:"Delete failed.";s:18:"prg_delete_success";s:27:"Successfuly delete entries.";s:30:"prg_delete_single_confirmation";s:48:"Do you really want to delete the selected entry?";s:25:"prg_delete_single_success";s:25:"Successfuly delete entry.";s:26:"risky_to_fail_mail_subject";s:70:"Reminder, that the deadline for the study program will soon be reached";s:23:"risky_to_fail_mail_body";s:88:"%s %s,

the deadline for completing the study program \'%s\' will soon be reached.";s:25:"prg_update_progress_title";s:37:"Set Progress to Failed after Deadline";s:31:"prg_update_progress_description";s:68:"Set Progress from \'In Progress\' to \'failed\' after Crossing Deadline.";}'))); +'module' => array('text', 'prg'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:247:{s:29:"form_msg_file_wrong_file_type";s:16:"Wrong file type.";s:7:"prg_new";s:19:"New Study Programme";s:7:"prg_add";s:19:"Add Study Programme";s:8:"prg_edit";s:20:"Edit Study Programme";s:8:"prg_type";s:20:"Study Programme Type";s:14:"prg_assessment";s:26:"Study Programme Assessment";s:10:"prg_points";s:6:"Points";s:10:"prg_status";s:6:"Status";s:16:"prg_status_draft";s:5:"Draft";s:17:"prg_status_active";s:6:"Active";s:19:"prg_status_outdated";s:8:"Outdated";s:22:"prg_status_in_progress";s:11:"In Progress";s:20:"prg_status_completed";s:9:"Completed";s:21:"prg_status_accredited";s:10:"Accredited";s:23:"prg_status_not_relevant";s:12:"Not Relevant";s:12:"prg_possible";s:8:"Possible";s:17:"prg_completion_by";s:13:"Completion by";s:14:"prg_changed_by";s:10:"Changed by";s:17:"prg_manual_status";s:13:"Manual Status";s:19:"prg_points_required";s:15:"Points Required";s:18:"prg_points_current";s:14:"Points Current";s:15:"prg_custom_plan";s:11:"Custom Plan";s:14:"prg_belongs_to";s:10:"Belongs to";s:24:"prg_show_individual_plan";s:20:"Show Individual Plan";s:15:"prg_remove_user";s:11:"Remove User";s:19:"prg_mark_accredited";s:15:"Mark Accredited";s:21:"prg_unmark_accredited";s:17:"Unmark Accredited";s:27:"prg_mark_accredited_success";s:46:"Accredited Program Node for User successfully.";s:29:"prg_unmark_accredited_success";s:48:"Unaccredited Program Node for User successfully.";s:23:"prg_remove_user_success";s:26:"Removed User successfully.";s:12:"prg_type_add";s:20:"Study Programme Type";s:12:"prg_subtypes";s:8:"Subtypes";s:15:"prg_subtype_add";s:15:"Add new subtype";s:20:"prg_type_custom_icon";s:12:"Custom Icons";s:25:"prg_type_custom_icon_info";s:16:"Custom icon info";s:30:"prg_type_msg_error_custom_icon";s:24:"Error while storing icon";s:24:"prg_type_assign_amd_sets";s:29:"Assign advanced metadata sets";s:27:"prg_type_available_amd_sets";s:32:"Available Advanced Metadata sets";s:13:"prg_type_edit";s:12:"Edit subtype";s:20:"prg_type_msg_deleted";s:15:"Deleted subtype";s:26:"prg_type_msg_unable_delete";s:88:"Unable to delete type because it is still assigned to the following Study Programmes: %s";s:43:"prg_type_msg_missing_title_default_language";s:73:"There must be set a default language and a title for the default language";s:19:"prg_save_tree_order";s:15:"Save tree order";s:21:"prg_cancel_tree_order";s:18:"Dismiss tree order";s:26:"prg_saved_order_successful";s:22:"Saved order successful";s:18:"prg_async_settings";s:8:"Settings";s:13:"prg_open_node";s:19:"Switch to this node";s:16:"prg_async_create";s:18:"Add new tree-child";s:19:"prg_create_new_node";s:15:"Create new node";s:19:"prg_create_new_leaf";s:15:"Create new leaf";s:46:"prg_please_select_a_course_for_creating_a_leaf";s:54:"Please select a course for creating a course link leaf";s:18:"prg_deleted_safely";s:23:"Node was deleted safely";s:30:"prg_not_allowed_node_to_delete";s:39:"You are not allowed to delete this node";s:31:"prg_added_course_ref_successful";s:38:"New course link was added successfully";s:10:"prg_manage";s:6:"Manage";s:8:"prg_view";s:4:"View";s:28:"prg_update_from_current_plan";s:24:"Update from current Plan";s:21:"prg_update_successful";s:27:"Saved changes successfully!";s:31:"prg_update_from_plan_successful";s:39:"Updated from current plan successfully!";s:7:"warning";s:8:"Warning!";s:17:"prg_progress_info";s:72:"You have %1$d points. The Study Programme is completed with %2$d points.";s:19:"prg_progress_status";s:20:" %1$d of %2$d Points";s:33:"prg_progress_status_with_child_sp";s:29:" %1$d of possible %2$d Points";s:25:"prg_no_members_not_active";s:51:"Can\'t add members, as this programme is not active.";s:26:"prg_type_msg_missing_title";s:22:"Title cannot be empty.";s:16:"prg_added_member";s:38:"The new member was added successfully.";s:17:"prg_added_members";s:40:"The new members were added successfully.";s:33:"prg_acknowledge_completed_courses";s:29:"Acknowledge Completed Courses";s:25:"prg_multi_mark_accredited";s:10:"Accredited";s:27:"prg_multi_unmark_accredited";s:17:"Unmark Accredited";s:21:"prg_multi_remove_user";s:11:"Remove User";s:23:"prg_multi_mark_relevant";s:13:"Mark Relevant";s:25:"prg_multi_unmark_relevant";s:15:"Unmark Relevant";s:34:"prg_multi_update_from_current_plan";s:24:"Update From Current Plan";s:33:"prg_mark_accredited_multi_success";s:33:"Mark Selected Users As Accredited";s:35:"prg_unmark_accredited_multi_success";s:35:"Unmark Selected Users As Accredited";s:31:"prg_mark_relevant_multi_success";s:31:"Mark Selected Users As Relevant";s:35:"prg_mark_not_relevant_multi_success";s:33:"Unmark Selected Users As Relevant";s:24:"prg_remove_users_success";s:21:"Remove Selected Users";s:34:"prg_remove_users_partitial_success";s:33:"Remove Selected Users Particially";s:29:"prg_remove_users_not_possible";s:34:"Remove Selected Users Not Possible";s:41:"prg_update_from_current_plan_not_possible";s:37:"Update From Current Plan Not Possible";s:46:"prg_update_from_current_plan_partitial_success";s:35:"Update From Current Plan Partically";s:36:"prg_update_from_current_plan_success";s:24:"Update From Current Plan";s:20:"prg_no_user_selected";s:16:"No User Selected";s:12:"prg_prg_type";s:20:"Study Programme Type";s:32:"prg_show_programmes_on_pd_always";s:49:"Study Programmes are always visible on Dashboard.";s:35:"prg_show_programmes_on_pd_only_read";s:75:"Study Programmes are only visible on Dashboard with ‘read’ permissions.";s:40:"prg_more_objects_without_read_permission";s:80:"Study Programme contains more objects you can\'t see because of less permissions.";s:26:"prg_can_not_manage_in_repo";s:79:"You\'re not allowed to manage this Study Programme, because of user assignments.";s:19:"prg_show_programmes";s:10:"Visibility";s:15:"prg_assign_date";s:15:"Assignment date";s:15:"prg_assigned_by";s:11:"Assigned by";s:20:"prg_points_reachable";s:17:"Points Obtainable";s:12:"prg_deadline";s:8:"Deadline";s:17:"prg_status_failed";s:6:"failed";s:15:"assignment_date";s:15:"Assignment Date";s:15:"completion_date";s:15:"Completion Date";s:15:"prg_no_deadline";s:24:"No fixed prozessing time";s:19:"prg_deadline_period";s:41:"Processing time is determined inividually";s:24:"prg_deadline_period_desc";s:55:"The programme must be finished within a given timespan.";s:17:"prg_deadline_date";s:37:"Processing time expires at fixed date";s:22:"prg_deadline_date_desc";s:50:"The programme must be finished until a given date.";s:29:"prg_no_validity_qualification";s:26:"Long-Lasting qualification";s:29:"prg_validity_of_qualification";s:35:"Validity of Achieved Qualifications";s:29:"validity_qualification_period";s:34:"Qualification expires individually";s:34:"validity_qualification_period_desc";s:21:"days after completion";s:27:"validity_qualification_date";s:35:"Qualification expires at fixed date";s:32:"validity_qualification_date_desc";s:11:"expiry date";s:14:"prg_no_restart";s:19:"No restart required";s:14:"restart_period";s:18:"Restart obligatory";s:19:"restart_period_desc";s:18:"days before expiry";s:20:"sp_certificate_title";s:28:"Title of the Study Programme";s:26:"sp_certificate_description";s:34:"Description of the Study Programme";s:19:"sp_certificate_type";s:27:"Type of the Study Programme";s:21:"sp_certificate_points";s:40:"Amount of points that have been acquired";s:30:"sp_certificate_completion_date";s:18:"Date of completion";s:34:"sp_certificate_progress_expires_at";s:31:"Date of expiry of qualification";s:19:"prg_completion_date";s:15:"Completion date";s:15:"prg_expiry_date";s:11:"Expiry date";s:12:"prg_validity";s:8:"Validity";s:15:"prg_still_valid";s:11:"still valid";s:13:"prg_not_valid";s:9:"not valid";s:47:"prg_restart_assignments_temporal_progress_title";s:34:"Restart Studyprogramme assignments";s:46:"prg_restart_assignments_temporal_progress_desc";s:66:"Restart Studyprogramme assignments with progresses about to expire";s:39:"prg_invalidate_expired_progresses_title";s:43:"Limited validity of Studyprogramme progress";s:38:"prg_invalidate_expired_progresses_desc";s:59:"Marks expired progresses at Studyprogrammes as \'not passed\'";s:9:"prg_orgus";s:20:"Organisational Units";s:24:"content_automation_title";s:58:"Automatically add and remove Courses from these categories";s:18:"content_automation";s:18:"Content Automation";s:14:"last_edited_by";s:11:"Last Editor";s:11:"last_edited";s:11:"Last edited";s:12:"add_category";s:12:"Add Category";s:22:"modal_categories_title";s:24:"Category to be monitored";s:8:"category";s:14:"Category RefId";s:8:"prgr_new";s:27:"Create Study Programme Link";s:14:"prgr_edit_info";s:58:"Please choose one Study Programme for creating a new link.";s:38:"prgr_may_not_create_circular_reference";s:103:"This Study Programme may not be linked here since the parent object is alredy linked within the target.";s:35:"prg_validity_of_qualification_limit";s:20:"Qualification Expiry";s:37:"prg_validity_of_qualification_restart";s:7:"Restart";s:21:"prg_deadline_settings";s:17:"Processing Period";s:17:"edit_participants";s:12:"Edit Members";s:16:"auto_memberships";s:21:"Membership Automation";s:4:"orgu";s:19:"Organisational Unit";s:3:"rol";s:4:"Role";s:21:"auto_membership_title";s:33:"Sources for Membership Automation";s:25:"add_automembership_source";s:10:"Add Source";s:24:"auto_membership_src_type";s:4:"Type";s:20:"membership_source_id";s:2:"Id";s:33:"membership_source_id_byline_objid";s:31:"Please use the object-id";s:33:"membership_source_id_byline_refid";s:34:"Please use the reference-id";s:26:"modal_automembership_title";s:24:"Automatismus hinzufügen";s:22:"membership_source_type";s:6:"Source";s:18:"prg_autoassignment";s:6:"(auto)";s:36:"prg_some_users_may_not_be_accredited";s:34:"Partially marked users accredited.";s:45:"prg_some_users_may_not_be_unmarked_accredited";s:36:"Partially unmarked users accredited.";s:41:"prg_some_users_may_not_be_marked_relevant";s:26:"Partially marked relevant.";s:45:"prg_some_users_may_not_be_marked_not_relevant";s:28:"Partially unmarked relevant.";s:20:"prg_formatted_period";s:7:"%d days";s:20:"deadline_information";s:39:"Information regarding processing period";s:19:"dealine_period_info";s:32:"Days to process after assignment";s:17:"dealine_date_info";s:13:"Deadline date";s:14:"vq_information";s:55:"Information regarding validity of achived qualification";s:14:"vq_period_info";s:53:"Days until qualification will expire after achivement";s:12:"vq_date_info";s:35:"Qualification expires at fixed date";s:19:"restart_information";s:77:"Information regarding automatic restart upon pending qualification expiration";s:19:"restart_period_info";s:61:"Days before qualification expiration to restart qualification";s:27:"access_ctr_by_orgu_position";s:57:"Access control according to Organisational Unit Positions";s:33:"could_not_add_users_no_permissons";s:53:"Could not assign %d Users due to lacking permissions.";s:18:"not_a_valid_cat_id";s:39:"%s is not a valid ref-id of a category.";s:23:"prg_mail_permanent_link";s:97:"Click on the following link to find all of the information you need regarding the study programm:";s:9:"prg_title";s:5:"Title";s:24:"re_assigned_mail_subject";s:43:"Renewed participation in the study programm";s:21:"re_assigned_mail_body";s:74:"%s %s,

you were reassigned to study program \'%s\' as participants.";s:30:"info_to_re_assign_mail_subject";s:55:"Reminder of renewed participation in the study programm";s:27:"info_to_re_assign_mail_body";s:115:"%s %s,

The validity of their participation in the study programm \'% s\' expires soon. Please sign in again.";s:33:"prg_user_not_restarted_time_input";s:21:"Reminder mail restart";s:38:"prg_user_not_restarted_time_input_info";s:96:"Reminder Mail Reminds the user x days before the invalidation that he must restart the programm.";s:30:"prg_processing_ends_no_success";s:21:"Reminder mail failing";s:35:"prg_processing_ends_no_success_info";s:81:"Reminds the user x days before the program expires that he is at risk of failing.";s:26:"prg_cron_job_configuration";s:29:"Configuration automatic Mails";s:21:"send_re_assigned_mail";s:28:"E-mail renewed participation";s:26:"send_re_assigned_mail_info";s:57:"Send an e-mail to automatically re-join the sudy program.";s:27:"send_info_to_re_assign_mail";s:23:"E-mail reminder restart";s:32:"send_info_to_re_assign_mail_info";s:63:"Send an e-mail to remind the user to restart the study program.";s:28:"prg_user_risky_to_fail_title";s:40:"Send warning mail about possible failure";s:27:"prg_user_risky_to_fail_desc";s:95:"Sends users a warning mail if they are at the risk to fail a study programme due to a deadline.";s:28:"prg_user_not_restarted_title";s:31:"Send warning mail about restart";s:27:"prg_user_not_restarted_desc";s:118:"Sends users a warning mail if a qualification at a study programme expires and they haven\'t restarted the program yet.";s:23:"send_risky_to_fail_mail";s:25:"E-mail in case of failure";s:28:"send_risky_to_fail_mail_info";s:70:"Send an e-mail if the user is at risk of failure of the study program.";s:20:"prg_dash_label_valid";s:6:"Valid:";s:22:"prg_dash_label_minimum";s:19:"Minimum Completion:";s:19:"prg_dash_label_gain";s:19:"Current Completion:";s:21:"prg_dash_label_status";s:7:"Status:";s:27:"prg_dash_label_finish_until";s:13:"Finish until:";s:27:"prg_dash_label_restart_from";s:13:"Restart from:";s:10:"percentage";s:1:"%";s:12:"prg_status_1";s:11:"In Progress";s:12:"prg_status_2";s:9:"Completed";s:12:"prg_status_3";s:10:"Accredited";s:12:"prg_status_4";s:12:"Not Relevant";s:12:"prg_status_5";s:6:"failed";s:25:"prg_multi_change_deadline";s:15:"Change deadline";s:28:"prg_multi_change_expire_date";s:18:"Change expire date";s:18:"update_expire_date";s:32:"Successfully update expire date.";s:15:"update_deadline";s:29:"Successfully update deadline.";s:26:"error_updating_expire_date";s:34:"Error during updating expire date.";s:23:"error_updating_deadline";s:31:"Error during updating deadline.";s:10:"select_crs";s:18:"Search for Courses";s:10:"select_grp";s:17:"Search for Groups";s:11:"select_role";s:16:"Search for Roles";s:10:"select_org";s:30:"Search for Organisational Unit";s:9:"label_crs";s:11:"Course Name";s:9:"label_grp";s:10:"Group Name";s:10:"label_role";s:9:"Role Name";s:30:"modal_member_auto_select_title";s:33:"Select source for auto assignment";s:26:"prg_auto_member_select_crs";s:7:"Courses";s:26:"prg_auto_member_select_grp";s:6:"Groups";s:27:"prg_auto_member_select_role";s:5:"Roles";s:21:"prg_quali_still_valid";s:25:"Qualification still valid";s:19:"prg_quali_not_valid";s:23:"Qualification not valid";s:15:"prg_type_byline";s:56:"Set a type to use certain custom metadata sets or icons.";s:17:"prg_points_byline";s:134:"Students get a certain amount of points when they succeed in this programme and need to get this many points in subsequent programmes.";s:17:"prg_status_byline";s:68:"Use the status to control if this programme is assigned to students.";s:15:"prg_description";s:11:"Description";s:8:"prg_link";s:4:"Link";s:22:"prg_mail_context_title";s:32:"Study Programme: Mail to Members";s:21:"prg_mail_context_info";s:92:"For the participant e-mails on the member and learning progress screens of a study programme";s:23:"prg_additional_settings";s:19:"Additional Features";s:18:"prg_access_by_orgu";s:45:"Access Control by Organisation Unit Positions";s:25:"prg_access_by_orgu_byline";s:96:"If enabled, additional access control rules can be defined by positions in organisational units.";s:17:"msg_fill_required";s:32:"Please fill all required fields.";s:22:"prg_profile_not_public";s:34:"Profile of the user is not public.";s:27:"prg_delete_nothing_selected";s:43:"Please select at least one entry to delete.";s:23:"prg_delete_confirmation";s:50:"Do you really want to delete the selected entries?";s:18:"prg_confirm_delete";s:6:"Delete";s:10:"prg_cancel";s:6:"Cancel";s:18:"prg_delete_failure";s:14:"Delete failed.";s:18:"prg_delete_success";s:27:"Successfuly delete entries.";s:30:"prg_delete_single_confirmation";s:48:"Do you really want to delete the selected entry?";s:25:"prg_delete_single_success";s:25:"Successfuly delete entry.";s:26:"risky_to_fail_mail_subject";s:70:"Reminder, that the deadline for the study program will soon be reached";s:23:"risky_to_fail_mail_body";s:88:"%s %s,

the deadline for completing the study program \'%s\' will soon be reached.";s:25:"prg_update_progress_title";s:37:"Set Progress to Failed after Deadline";s:31:"prg_update_progress_description";s:68:"Set Progress from \'In Progress\' to \'failed\' after Crossing Deadline.";s:16:"no_srctype_or_id";s:29:"Id and type may not be empty.";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'prtf'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:99:{s:15:"prtf_portfolios";s:10:"Portfolios";s:18:"prtf_add_portfolio";s:13:"Add Portfolio";s:19:"prtf_edit_portfolio";s:14:"Edit Portfolio";s:21:"prtf_create_portfolio";s:13:"Add Portfolio";s:22:"prtf_portfolio_created";s:15:"Portfolio added";s:19:"prtf_set_as_default";s:17:"Set As My Profile";s:27:"prtf_sure_delete_portfolios";s:56:"Are you sure you want to delete the following portfolio?";s:22:"prtf_portfolio_deleted";s:17:"Portfolio deleted";s:13:"prtf_add_page";s:8:"Add Page";s:17:"prtf_page_created";s:12:"Page created";s:32:"prtf_sure_delete_portfolio_pages";s:73:"Are you sure you want to delete the following portfolio page / blog page?";s:27:"prtf_portfolio_page_deleted";s:30:"Portfolio / blog page deleted.";s:21:"prtf_first_page_title";s:18:"Type of first page";s:27:"prtf_save_status_and_titles";s:22:"Save Status and Titles";s:22:"prtf_default_portfolio";s:10:"My Profile";s:18:"prtf_exercise_info";s:63:"This portfolio is part of the assignment "%s" of exercise "%s".";s:23:"prtf_finalize_portfolio";s:29:"Finalize and Submit Portfolio";s:14:"prtf_finalized";s:33:"The portfolio has been submitted.";s:13:"prtf_settings";s:24:"Portfolio Administration";s:25:"prtf_preview_banner_width";s:12:"Banner Width";s:26:"prtf_preview_banner_height";s:13:"Banner Height";s:19:"prtf_preview_banner";s:13:"Custom Banner";s:11:"prtf_banner";s:6:"Banner";s:18:"prtf_no_blogs_info";s:90:"Your "%s" does not contain any blogs. Create blogs to use them as part of your portfolios.";s:13:"prtf_add_blog";s:8:"Add Blog";s:28:"prtf_exercise_submitted_info";s:99:"You submitted your portfolio on %s. Additionally, you might want to save a copy for your own files.";s:20:"prtf_public_comments";s:15:"Public Comments";s:14:"prtf_copy_page";s:12:"Copy Page(s)";s:23:"prtf_existing_portfolio";s:18:"Existing Portfolio";s:18:"prtf_new_portfolio";s:13:"New Portfolio";s:17:"prtf_pages_copied";s:27:"The pages have been copied.";s:20:"prtf_profile_picture";s:23:"Display Profile Picture";s:20:"prtf_use_page_layout";s:15:"Use Page Layout";s:19:"prtf_tab_portfolios";s:13:"My Portfolios";s:20:"prtf_tab_other_users";s:25:"Portfolios of Other Users";s:21:"prtf_unset_as_default";s:19:"Unset As My Profile";s:24:"prtf_preview_banner_info";s:32:"Default size is 1370x100 pixels.";s:37:"prtf_set_default_publish_confirmation";s:132:"The portfolio needs to be shared at least with all registered users. Should it be visible to the internet without registration, too?";s:29:"prtf_unset_default_share_info";s:85:"Then changes were saved. Please check the current settings for the portfolio sharing.";s:15:"prtf_allow_html";s:21:"Allow HTML/Javascript";s:20:"prtf_allow_html_info";s:107:"Enables users to include HTML and/or Javascript in their portfolio pages. This can lead to security issues.";s:37:"prtf_template_editor_placeholder_info";s:51:"This placeholder will be replaced in the portfolio.";s:18:"prtf_creation_mode";s:13:"New Portfolio";s:27:"prtf_creation_mode_template";s:20:"Create from Template";s:26:"prtf_creation_mode_scratch";s:23:"Create without Template";s:32:"prtf_template_import_blog_create";s:15:"Create New Blog";s:31:"prtf_template_import_blog_reuse";s:17:"Use Existing Blog";s:32:"prtf_template_import_blog_ignore";s:16:"Remove Blog Page";s:35:"prtf_create_template_from_portfolio";s:9:"Portfolio";s:40:"prtf_create_template_from_portfolio_info";s:68:"Select a portfolio to use its content and settings for the template.";s:34:"prtf_template_import_quota_failure";s:81:"This portfolio template cannot be copied because it would exceed your disk quota.";s:15:"prtf_properties";s:20:"Portfolio Properties";s:10:"prtf_style";s:15:"Portfolio Style";s:31:"prtf_template_import_new_skills";s:69:"If activated, these items will be added to your personal competences.";s:35:"prtf_page_element_teaser_my_courses";s:63:"The portfolio will display a list of your current courses here.";s:34:"prtf_page_element_my_courses_title";s:18:"Course Memberships";s:31:"prtf_page_element_teaser_skills";s:54:"The portfolio will display your competence level here.";s:38:"prtf_page_element_teaser_blog_template";s:66:"The portfolio will display a blog of your personal resources here.";s:43:"prtf_page_element_teaser_consultation_hours";s:62:"The portfolio will display a consultation hours calendar here.";s:33:"prtf_page_element_teaser_settings";s:8:"Settings";s:33:"prtf_page_element_my_courses_info";s:90:"This is a list of all my courses which are currently online and where I have a membership.";s:21:"prtf_allow_my_courses";s:29:"Page Element ‘My Courses’";s:26:"prtf_allow_my_courses_info";s:71:"Enables to include a list of current course memberships in a portfolio.";s:22:"prtf_blog_page_created";s:20:"Blog has been added.";s:23:"prtf_edit_embedded_blog";s:14:"Edit Blog "%s"";s:28:"prtf_back_to_portfolio_owner";s:14:"Edit Portfolio";s:22:"prtf_manage_portfolios";s:17:"Manage Portfolios";s:31:"prtf_set_default_publish_global";s:34:"Share with unregistered users also";s:35:"prtf_set_default_publish_registered";s:32:"Share with registered users only";s:24:"prtf_shared_offline_info";s:62:"A portfolio has to be online to be accessible by shared users.";s:10:"pdf_export";s:10:"PDF Export";s:17:"prtf_add_new_blog";s:12:"Add New Blog";s:22:"prtf_add_new_blog_info";s:54:"The new blog will be added to your personal resources.";s:22:"prtf_add_existing_blog";s:17:"Use Existing Blog";s:36:"prtf_portfolio_created_from_template";s:142:"This is the preview of your new portfolio. To add pages and manage the content of the portfolio click on "Edit Portfolio" on top of this page.";s:8:"prtf_pdf";s:13:"Export as PDF";s:20:"prtf_print_selection";s:14:"Page Selection";s:14:"prtf_all_pages";s:9:"All Pages";s:19:"prtf_selected_pages";s:14:"Selected Pages";s:18:"prtf_print_options";s:7:"Options";s:11:"prtf_author";s:6:"Author";s:9:"prtf_link";s:4:"Link";s:18:"prtf_date_of_print";s:13:"Date of Print";s:14:"prtf_signature";s:15:"Signature Field";s:19:"prtf_signature_info";s:66:"Adds a field to the print where the author can sign the portfolio.";s:19:"prtf_signature_date";s:15:"Date, Signature";s:13:"prtf_copy_tab";s:8:"Copy Tab";s:15:"prtt_title_info";s:105:"Please note that this will be also the default title for all portfolios being created form this template.";s:17:"prtf_edit_content";s:12:"Edit Content";s:15:"prtf_set_online";s:10:"Set Online";s:16:"prtf_set_offline";s:11:"Set Offline";s:18:"prtf_no_submission";s:13:"No Submission";s:18:"prtf_submission_on";s:15:"Submitted on $1";s:26:"prtf_no_offline_share_info";s:57:"A portfolio has to be online to be shared by other users.";s:24:"prtf_has_been_set_online";s:30:"Portfolio has been set online.";s:20:"prtf_decl_authorship";s:25:"Declaration of Authorship";s:24:"prtf_download_submission";s:19:"Download Submission";s:19:"prtf_page_type_prtf";s:14:"Portfolio Page";s:19:"prtf_page_type_prtt";s:23:"Portfolio Template Page";}'))); @@ -34643,7 +34646,7 @@ function setupILIASDatabase() 'module' => array('text', 'rating'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:25:{s:18:"rating_your_rating";s:11:"Your Rating";s:14:"rat_one_rating";s:10:"One Rating";s:17:"rat_not_rated_yet";s:13:"Not Rated Yet";s:14:"rat_nr_ratings";s:10:"%s Ratings";s:17:"rating_categories";s:17:"Rating Categories";s:19:"rating_add_category";s:12:"Add Category";s:22:"rating_category_create";s:15:"Create Category";s:19:"rating_category_add";s:3:"Add";s:23:"rating_category_created";s:17:"Category created.";s:20:"rating_category_edit";s:13:"Edit Category";s:22:"rating_category_update";s:4:"Save";s:23:"rating_category_updated";s:15:"Category saved.";s:23:"rating_update_positions";s:10:"Save Order";s:27:"rating_category_delete_sure";s:109:"Are you sure you want to delete the following rating categories? All ratings for that category will be lost.";s:23:"rating_category_deleted";s:17:"Category deleted.";s:21:"rating_overlay_submit";s:13:"Submit Rating";s:19:"rating_number_votes";s:10:"%s Ratings";s:22:"rating_export_category";s:8:"Category";s:18:"rating_export_date";s:4:"Date";s:20:"rating_export_rating";s:6:"Rating";s:23:"rating_new_objects_auto";s:21:"Default Object Rating";s:28:"rating_new_objects_auto_info";s:73:"Rating is activated by default for new files, learning modules and wikis.";s:22:"rating_activate_rating";s:13:"Enable Rating";s:27:"rating_activate_rating_info";s:39:"if enabled, users can rate this object.";s:13:"rating_remove";s:13:"Remove Rating";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'rbac'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:851:{s:32:"rbac_form_copy_roles_adjust_type";s:28:"Kind of Adapting Permissions";s:36:"rbac_form_copy_roles_adjust_type_add";s:15:"Add permissions";s:38:"rbac_form_copy_roles_adjust_type_clone";s:16:"Copy permissions";s:39:"rbac_form_copy_roles_adjust_type_remove";s:18:"Remove permissions";s:41:"rbac_form_copy_roles_adjust_type_add_info";s:146:"Adds SELECTED permissions of the selected role or role template to the default permissions of the target role. Unselected permissions are ignored.";s:43:"rbac_form_copy_roles_adjust_type_clone_info";s:184:"All permissions of the selected role or role template overwrite all default permissions of the target role. This applies to selected and unselected permissions in the template or role.";s:44:"rbac_form_copy_roles_adjust_type_remove_info";s:119:"Removes the SELECTED permissions of the selected role or role template from the default permissions of the target role.";s:34:"rbac_form_copy_roles_adjust_button";s:17:"Adapt Permissions";s:31:"rbac_form_copy_roles_ce_add_yes";s:44:"Add selected permissions to existing objects";s:30:"rbac_form_copy_roles_ce_add_no";s:31:"Only adjust default permissions";s:36:"rbac_form_copy_roles_ce_add_yes_info";s:130:"Both the existing permission defaults of the target role and the permission settings of existing objects are extended accordingly.";s:35:"rbac_form_copy_roles_ce_add_no_info";s:120:"Only the existing default permission of the target role are extended. Permissions of existing objects remain unaffected.";s:33:"rbac_form_copy_roles_ce_clone_yes";s:23:"Change existing objects";s:32:"rbac_form_copy_roles_ce_clone_no";s:29:"DO NOT adapt existing objects";s:38:"rbac_form_copy_roles_ce_clone_yes_info";s:160:"Existing permission settings are overwritten accordingly and are applied in their entirety to all existing objects with all selected and unselected permissions.";s:37:"rbac_form_copy_roles_ce_clone_no_info";s:141:"Existing default permissions of the target role are overwritten. But the permission settings of the already existing objects are not changed.";s:34:"rbac_form_copy_roles_ce_remove_yes";s:47:"Reduce existing objects by selected permissions";s:33:"rbac_form_copy_roles_ce_remove_no";s:31:"Reduce only default permissions";s:39:"rbac_form_copy_roles_ce_remove_yes_info";s:138:"The selected permissions are removed from the permission defaults of the target role and from the permission settings of existing objects.";s:38:"rbac_form_copy_roles_ce_remove_no_info";s:148:"Selected permissions are only removed from the default permissions of the target role. The permission settings of existing objects are not adjusted.";s:19:"il_sess_participant";s:19:"Session Participant";s:21:"il_sess_status_closed";s:30:"Non-Participant Closed Session";s:29:"positions_override_operations";s:24:"Override global Settings";s:13:"amend_grading";s:23:"Amend finalized grading";s:20:"accs_edit_permission";s:73:"User can change permissions of Accessibility Settings in Administration.";s:9:"accs_read";s:65:"User has read access to Accessibility Settings in Administration.";s:12:"accs_visible";s:53:"Accessibility Settings are visible in Administration.";s:10:"accs_write";s:55:"User can edit Accessibility Settings in Administration.";s:19:"adm_edit_permission";s:66:"User can change permissions of General Settings in Administration.";s:8:"adm_read";s:59:"User has read access to General Settings in Administration.";s:11:"adm_visible";s:47:"General Settings are visible in Administration.";s:9:"adm_write";s:49:"User can edit General Settings in Administration.";s:24:"adopt_perm_from_template";s:24:"Copy Permission Settings";s:20:"adve_edit_permission";s:61:"User can change permission settings of Editing administration";s:9:"adve_read";s:46:"User has read access to Editing Administration";s:12:"adve_visible";s:33:"Editing Administration is visible";s:10:"adve_write";s:48:"User can edit settings of Editing Administration";s:20:"assf_edit_permission";s:73:"User can change permission settings of Test and Assessment administration";s:9:"assf_read";s:55:"User has read access Test and Assessment Administration";s:12:"assf_visible";s:45:"Test and Assessment administration is visible";s:10:"assf_write";s:60:"User can edit settings of Test and Assessment Administration";s:20:"auth_edit_permission";s:85:"User can change permission settings of Authentication and Registration administration";s:9:"auth_read";s:73:"User has read access to administration of Authentication and Registration";s:12:"auth_visible";s:60:"Administration of Authentication and Registration is visible";s:10:"auth_write";s:58:"User can edit settings for Authentication and Registration";s:26:"cat_cat_administrate_users";s:69:"User can create and administrate local user accounts in this category";s:8:"cat_copy";s:22:"User can copy category";s:10:"cat_delete";s:32:"User can move or delete category";s:19:"cat_edit_permission";s:35:"User can change permission settings";s:14:"cat_read_users";s:58:"User can read local user accounts created in this category";s:8:"cat_read";s:32:"User has read access to category";s:11:"cat_visible";s:19:"Category is visible";s:9:"cat_write";s:53:"User can edit settings of category and manage content";s:20:"cert_edit_permission";s:66:"User can change permission settings of Certificates administration";s:9:"cert_read";s:51:"User has read access to Certificates Administration";s:12:"cert_visible";s:38:"Certificates Administration is visible";s:10:"cert_write";s:53:"User can edit settings in Certificates Administration";s:32:"change_existing_object_type_desc";s:78:"This will also change the permissions of already existing objects of that type";s:28:"change_existing_objects_desc";s:215:"The permission settings of this role will be adopted to ALL existing objects. If you want to change permissions only for specific object types please click the checkboxes to the right of the appropriate object type.";s:23:"change_existing_objects";s:23:"Change Existing Objects";s:29:"change_existing_prefix_single";s:6:"Change";s:22:"change_existing_prefix";s:15:"Change Existing";s:29:"change_existing_suffix_single";s:6:" ";s:22:"change_existing_suffix";s:6:" ";s:8:"crs_copy";s:20:"User can copy course";s:16:"rbac_create_fold";s:13:"Create Folder";s:10:"crs_delete";s:30:"User can move or delete course";s:26:"crs_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"crs_edit_permission";s:35:"User can change permission settings";s:8:"crs_join";s:20:"User can join course";s:9:"crs_leave";s:32:"User can unsubscribe from course";s:8:"crs_read";s:30:"User has read access to course";s:11:"crs_visible";s:17:"Course is visible";s:9:"crs_write";s:48:"User can edit course settings and manage content";s:19:"edit_roleassignment";s:20:"Edit role assignment";s:8:"exc_copy";s:22:"User can copy exercise";s:10:"exc_delete";s:32:"User can move or delete exercise";s:26:"exc_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"exc_edit_permission";s:35:"User can change permission settings";s:8:"exc_read";s:32:"User can participate at exercise";s:11:"exc_visible";s:19:"Exercise is visible";s:9:"exc_write";s:50:"User can edit settings and assignments of exercise";s:20:"extt_edit_permission";s:74:"User can change permission settings of Third Party Software administration";s:9:"extt_read";s:62:"User has read access to administration of Third Party Software";s:12:"extt_visible";s:49:"Administration of Third Party Software is visible";s:10:"extt_write";s:46:"User can edit settings of Third Party Software";s:11:"feed_delete";s:32:"User can move or delete web feed";s:20:"feed_edit_permission";s:35:"User can change permission settings";s:9:"feed_read";s:33:"User can read content of web feed";s:10:"feed_write";s:31:"User can edit web feed settings";s:9:"file_copy";s:18:"User can copy file";s:11:"file_delete";s:28:"User can move or delete file";s:20:"file_edit_permission";s:35:"User can change permission settings";s:9:"file_read";s:22:"User can download file";s:12:"file_visible";s:15:"File is visible";s:10:"file_write";s:58:"User can edit file settings and upload new version of file";s:9:"fold_copy";s:20:"User can copy folder";s:11:"fold_delete";s:30:"User can move or delete folder";s:27:"fold_edit_learning_progress";s:40:"User can edit learning progress settings";s:20:"fold_edit_permission";s:35:"User can change permission settings";s:9:"fold_read";s:30:"User has read access to folder";s:12:"fold_visible";s:17:"Folder is visible";s:10:"fold_write";s:51:"User can edit settings of folder and manage content";s:13:"frm_add_reply";s:28:"Users can reply to a posting";s:14:"frm_add_thread";s:25:"User can add a new thread";s:8:"frm_copy";s:19:"User can copy forum";s:10:"frm_delete";s:29:"User can move or delete forum";s:19:"frm_edit_permission";s:35:"User can change permission settings";s:16:"frm_moderate_frm";s:41:"User can edit, censor and delete postings";s:8:"frm_read";s:27:"User can read forum content";s:11:"frm_visible";s:16:"Forum is visible";s:9:"frm_write";s:43:"User can edit forum settings and moderators";s:8:"glo_copy";s:22:"User can copy glossary";s:10:"glo_delete";s:32:"User can move or delete glossary";s:19:"glo_edit_permission";s:35:"User can change permission settings";s:8:"glo_read";s:30:"User can read glossary content";s:11:"glo_visible";s:19:"Glossary is visible";s:9:"glo_write";s:46:"User can edit content and settings of glossary";s:8:"grp_copy";s:19:"User can copy group";s:10:"grp_delete";s:29:"User can move or delete group";s:26:"grp_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"grp_edit_permission";s:35:"User can change permission settings";s:8:"grp_join";s:19:"User can join group";s:9:"grp_leave";s:31:"User can unsubscribe from group";s:8:"grp_read";s:29:"User has read access to group";s:11:"grp_visible";s:16:"Group is visible";s:9:"grp_write";s:47:"User can edit group settings and manage content";s:9:"htlm_copy";s:34:"User can copy HTML learning module";s:11:"htlm_delete";s:44:"User can move or delete HTML learning module";s:27:"htlm_edit_learning_progress";s:40:"User can edit learning progress settings";s:20:"htlm_edit_permission";s:35:"User can change permission settings";s:9:"htlm_read";s:34:"User can read HTML learning module";s:12:"htlm_visible";s:31:"HTML learning module is visible";s:10:"htlm_write";s:58:"User can edit content and settings of HTML learning module";s:7:"lm_copy";s:35:"User can copy ILIAS learning module";s:9:"lm_delete";s:45:"User can move or delete ILIAS learning module";s:25:"lm_edit_learning_progress";s:40:"User can edit learning progress settings";s:18:"lm_edit_permission";s:35:"User can change permission settings";s:7:"lm_read";s:35:"User can read ILIAS learning module";s:10:"lm_visible";s:32:"ILIAS Learning Module is visible";s:8:"lm_write";s:59:"User can edit content and settings of ILIAS learning module";s:20:"lngf_edit_permission";s:62:"User can change permission settings of Language administration";s:9:"lngf_read";s:47:"User has read access to Language administration";s:12:"lngf_visible";s:34:"Language administration is visible";s:10:"lngf_write";s:87:"User can edit settings in Language administration and use extended language maintenance";s:20:"lrss_edit_permission";s:72:"User can change permission settings of Learning Resources administration";s:9:"lrss_read";s:51:"Read access to administration of Learning Resources";s:12:"lrss_visible";s:47:"Administration of Learning Resources is visible";s:10:"lrss_write";s:62:"User can edit settings of Learning Resources in administration";s:9:"mail_read";s:43:"User has read access to Mail administration";s:14:"mail_smtp_mail";s:52:"User can send e-mails per SMTP to external addresses";s:12:"mail_visible";s:30:"Mail administration is visible";s:10:"mail_write";s:45:"User can edit settings in Mail administration";s:9:"mcst_copy";s:23:"User can copy mediacast";s:11:"mcst_delete";s:33:"User can move or delete mediacast";s:20:"mcst_edit_permission";s:35:"User can change permission settings";s:9:"mcst_read";s:23:"User can read mediacast";s:12:"mcst_visible";s:20:"Mediacast is visible";s:10:"mcst_write";s:47:"User can edit content and settings of mediacast";s:10:"mep_delete";s:34:"User can move or delete media pool";s:19:"mep_edit_permission";s:35:"User can change permission settings";s:8:"mep_read";s:62:"User has read access to media pool and can reuse media objects";s:11:"mep_visible";s:21:"Media pool is visible";s:9:"mep_write";s:48:"User can edit content and settings of media pool";s:20:"mobs_edit_permission";s:73:"User can change permission settings in Media Objects/Pools administration";s:9:"mobs_read";s:58:"User has read access to Media Objects/Pools administration";s:12:"mobs_visible";s:45:"Media Objects/Pools administration is visible";s:10:"mobs_write";s:60:"User can edit settings in Media Objects/Pools administration";s:20:"nwss_edit_permission";s:72:"User can change permission settings in News and Web Feeds administration";s:9:"nwss_read";s:56:"User has read access to ews and Web Feeds administration";s:12:"nwss_visible";s:44:"News and Web Feeds administration is visible";s:10:"nwss_write";s:59:"User can edit settings in News and Web Feeds administration";s:18:"ps_edit_permission";s:70:"User can change permission settings of Privacy/Security administration";s:21:"ps_export_member_data";s:49:"User can export member data in courses and groups";s:7:"ps_read";s:55:"User has read access to Privacy/Security administration";s:10:"ps_visible";s:42:"Privacy/Security administration is visible";s:8:"ps_write";s:57:"User can edit settings in Privacy/Security administration";s:8:"qpl_copy";s:37:"User can copy question pool for tests";s:10:"qpl_delete";s:37:"User can move or delete question pool";s:19:"qpl_edit_permission";s:35:"User can change permission settings";s:8:"qpl_read";s:61:"User can read test questions in pool and insert them in tests";s:11:"qpl_visible";s:24:"Question pool is visible";s:9:"qpl_write";s:58:"User can edit test questions and settings of question pool";s:15:"rbac_create_cat";s:17:"Create Categories";s:20:"root_edit_permission";s:35:"User can change permission settings";s:9:"root_read";s:48:"User has read access to Repository - Home";s:12:"root_visible";s:35:"Repository - Home is visible";s:10:"root_write";s:69:"User can edit settings of Repository - Home and manage content";s:9:"sahs_copy";s:35:"User can copy SCORM learning module";s:11:"sahs_delete";s:45:"User can move or delete SCORM learning module";s:27:"sahs_edit_learning_progress";s:40:"User can edit learning progress settings";s:20:"sahs_edit_permission";s:35:"User can change permission settings";s:9:"sahs_read";s:35:"User can read SCORM learning module";s:12:"sahs_visible";s:32:"SCORM learning module is visible";s:10:"sahs_write";s:59:"User can edit content and settings of SCORM learning module";s:20:"seas_edit_permission";s:60:"User can change permission settings or Search administration";s:9:"seas_read";s:45:"User has read access to Search administration";s:11:"seas_search";s:39:"User can use the global search in ILIAS";s:12:"seas_visible";s:32:"Search administration is visible";s:10:"seas_write";s:38:"Edit settings in Search administration";s:9:"sess_copy";s:21:"User can copy session";s:8:"spl_copy";s:39:"User can copy question pool for surveys";s:10:"spl_delete";s:37:"User can move or delete question pool";s:19:"spl_edit_permission";s:35:"User can change permission settings";s:8:"spl_read";s:64:"User can read survey questions in pool and insert them in survey";s:11:"spl_visible";s:24:"Question pool is visible";s:9:"spl_write";s:60:"User can edit survey questions and settings of question pool";s:20:"stys_edit_permission";s:71:"User can change permission settings of Layout and Styles administration";s:9:"stys_read";s:56:"User has read access to Layout and Styles administration";s:12:"stys_visible";s:43:"Layout and Styles administration is visible";s:8:"svy_copy";s:20:"User can copy survey";s:10:"svy_delete";s:30:"User can move or delete survey";s:19:"svy_edit_permission";s:35:"User can change permission settings";s:10:"svy_invite";s:34:"User can invite others to a survey";s:8:"svy_read";s:32:"User can participate at a survey";s:11:"svy_visible";s:17:"Survey is visible";s:9:"svy_write";s:44:"User can edit content and settings of survey";s:20:"tags_edit_permission";s:61:"User can change permission settings in Tagging administration";s:9:"tags_read";s:46:"User has read access to Tagging administration";s:12:"tags_visible";s:33:"Tagging administration is visible";s:10:"tags_write";s:48:"User can edit settings in Tagging administration";s:11:"trac_delete";s:29:"User can delete tracking data";s:20:"trac_edit_permission";s:77:"Change permission settings in Statistics and Learning Progress administration";s:9:"trac_read";s:71:"User has read access to Statistics and Learning Progress administration";s:12:"trac_visible";s:58:"Statistics and Learning Progress administration is visible";s:8:"tst_copy";s:18:"User can copy test";s:10:"tst_delete";s:28:"User can move or delete test";s:26:"tst_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"tst_edit_permission";s:35:"User can change permission settings";s:8:"tst_read";s:25:"User can perform the test";s:15:"tst_tst_results";s:41:"User has access to test results of others";s:11:"tst_visible";s:15:"Test is visible";s:9:"tst_write";s:42:"User can edit content and settings of test";s:11:"usrf_delete";s:29:"User can delete user accounts";s:20:"usrf_edit_permission";s:58:"User can change permission settings in User administration";s:24:"usrf_edit_roleassignment";s:47:"User can change role assignment of user account";s:23:"usrf_push_desktop_items";s:60:"User is allowed to add recommended content for role members.";s:15:"usrf_read_users";s:66:"User has read access to local user accounts (local administrators)";s:9:"usrf_read";s:43:"User has read access to User administration";s:12:"usrf_visible";s:30:"User administration is visible";s:10:"usrf_write";s:36:"Edit settings in User administration";s:9:"webr_copy";s:21:"User can copy weblink";s:11:"webr_delete";s:31:"User can move or delete weblink";s:20:"webr_edit_permission";s:35:"User can change permission settings";s:9:"webr_read";s:30:"User can read and use weblinks";s:12:"webr_visible";s:18:"Weblink is visible";s:10:"webr_write";s:34:"User can edit settings of weblinks";s:9:"wiki_copy";s:18:"User can copy wiki";s:11:"wiki_delete";s:28:"User can move or delete wiki";s:17:"wiki_edit_content";s:35:"User can create and edit wiki pages";s:20:"wiki_edit_permission";s:35:"User can change permission settings";s:9:"wiki_read";s:26:"User can read wiki content";s:12:"wiki_visible";s:15:"Wiki is visible";s:10:"wiki_write";s:30:"User can edit settings of wiki";s:24:"upload_blacklisted_files";s:16:"Bypass blacklist";s:29:"facs_upload_blacklisted_files";s:43:"Upload indexed file types despite blacklist";s:15:"cals_edit_event";s:61:"User can create and edit public calendars and events in ILIAS";s:20:"cals_edit_permission";s:63:"User can change permission settings for Calendar administration";s:9:"cals_read";s:47:"User has read access to Calendar Administration";s:12:"cals_visible";s:34:"Calendar Administration is visible";s:10:"cals_write";s:49:"User can edit settings of Calendar Administration";s:9:"catr_copy";s:27:"User can copy category link";s:11:"catr_delete";s:37:"User can move or delete category link";s:20:"catr_edit_permission";s:35:"User can change permission settings";s:12:"catr_visible";s:24:"Category link is visible";s:10:"catr_write";s:39:"User can edit settings of category link";s:20:"cmps_edit_permission";s:83:"User can change permission settings of Plugins, Modules and Services administration";s:9:"cmps_read";s:71:"User has read access to administration of Plugins, Modules and Services";s:12:"cmps_visible";s:67:"Administration of Plugins, Modules and Services settings is visible";s:10:"cmps_write";s:55:"User can edit settings of Plugins, Modules and Services";s:16:"rbac_create_sess";s:14:"Create Session";s:14:"crs_edit_event";s:20:"Edit Calendar Events";s:9:"crsr_copy";s:25:"User can copy course link";s:11:"crsr_delete";s:35:"User can move or delete course link";s:20:"crsr_edit_permission";s:35:"User can change permission settings";s:12:"crsr_visible";s:22:"Course link is visible";s:10:"crsr_write";s:37:"User can edit settings of course link";s:22:"edit_learning_progress";s:22:"Edit Learning Progress";s:20:"facs_edit_permission";s:71:"User can change permission settings of Files and Folders administration";s:9:"facs_read";s:59:"User has read access to administration of Files and Folders";s:12:"facs_visible";s:46:"Administration of Files and Folders is visible";s:10:"facs_write";s:61:"User can edit settings in administration of Files and Folders";s:16:"filter_all_roles";s:33:"Show all roles of current context";s:19:"filter_global_roles";s:22:"Show only global roles";s:25:"filter_local_roles_object";s:46:"Show only local roles defined at this position";s:18:"filter_local_roles";s:40:"Show only local roles of current context";s:25:"filter_roles_local_policy";s:53:"Show only roles using a local policy at this position";s:14:"grp_edit_event";s:20:"Edit Calendar Events";s:22:"info_user_view_changed";s:17:"User view changed";s:5:"leave";s:11:"Unsubscribe";s:20:"mcts_edit_permission";s:63:"User can change permission settings in Mediacast administration";s:9:"mcts_read";s:48:"User has read access to Mediacast administration";s:12:"mcts_visible";s:35:"Mediacast administration is visible";s:10:"mcts_write";s:50:"User can edit settings in Mediacast administration";s:19:"mds_edit_permission";s:62:"User can change permission settings in Metadata administration";s:8:"mds_read";s:47:"User has read access to Metadata administration";s:11:"mds_visible";s:34:"Metadata administration is visible";s:9:"mds_write";s:49:"User can edit settings in Metadata administration";s:20:"msg_no_roles_of_type";s:47:"No Roles available with selected filter setting";s:11:"mme_visible";s:38:"Administration of Main Menu is visible";s:8:"mme_read";s:51:"User has read access to administration of Main Menu";s:9:"mme_write";s:50:"User can edit settings of Main Menu administration";s:19:"mme_edit_permission";s:63:"User can change permission settings of Main Menu administration";s:20:"dshs_edit_permission";s:63:"User can change permission settings of Dashboard administration";s:9:"dshs_read";s:48:"User has read access to Dashboard administration";s:12:"dshs_visible";s:35:"Dashboard administration is visible";s:10:"dshs_write";s:41:"Edit settings of Dashboard administration";s:22:"perm_class_create_desc";s:69:"Determine which object types may be created under the current object.";s:17:"perm_class_create";s:18:"Create new Objects";s:22:"perm_class_object_desc";s:27:"Object-specific operations.";s:17:"perm_class_object";s:18:"Special Operations";s:20:"perm_local_role_desc";s:83:"This role is locally defined at the current object and correspond to a local policy";s:15:"perm_local_role";s:10:"Local Role";s:26:"perm_use_local_policy_desc";s:106:"If local policy is activated, you may define different default permission settings for the current object.";s:21:"perm_use_local_policy";s:16:"Use local policy";s:32:"rbac_change_existing_confirm_tbl";s:42:"Settings for ‘Change Existing Objects’";s:31:"rbac_delete_local_policies_info";s:105:"If activated, all local policies will be deleted. The object permissions will be rewritten and protected.";s:26:"rbac_delete_local_policies";s:21:"Delete Local Policies";s:16:"rbac_delete_role";s:11:"Delete Role";s:29:"rbac_keep_local_policies_info";s:131:"Choose this mode for keeping all local policies. The object permissions will be adapted to these policies and afterwards protected.";s:24:"rbac_keep_local_policies";s:19:"Keep Local Policies";s:19:"rbac_local_policies";s:14:"Local Policies";s:20:"rbac_role_delete_qst";s:122:"Are you sure you want to delete the following role?
All permissions granted by this role will be deleted permanently.";s:21:"rbac_role_delete_self";s:143:"Attention: You are assigned to this role. If you continue this delete operation, you may loose access to some ILIAS materials.";s:22:"rbac_role_exists_alert";s:85:"A role with the same name already exists in this context. Please choose another name.";s:43:"rbac_unprotected_delete_local_policies_info";s:110:"If activated, all local policies will be deleted. Permissions in courses and groups will be newly initialized.";s:41:"rbac_unprotected_keep_local_policies_info";s:44:"Choose this mode to keep all local policies.";s:11:"rcrs_delete";s:34:"User can move or delete ECS Course";s:20:"rcrs_edit_permission";s:35:"User can change permission settings";s:9:"rcrs_read";s:23:"User can use ECS Course";s:12:"rcrs_visible";s:21:"ECS Course is visible";s:10:"rcrs_write";s:36:"User can edit settings of ECS Course";s:20:"recf_edit_permission";s:70:"User can change permission settings of Restored Objects administration";s:9:"recf_read";s:55:"User has read access to Restored Objects administration";s:12:"recf_visible";s:42:"Restored Objects administration is visible";s:10:"recf_write";s:68:"Edit Settings and restore objects in Restored Objects administration";s:16:"rbac_create_catr";s:20:"Create Category Link";s:15:"rbac_create_crs";s:13:"Create Course";s:16:"rbac_create_crsr";s:18:"Create Course Link";s:15:"rbac_create_exc";s:15:"Create Exercise";s:16:"rbac_create_feed";s:15:"Create Web Feed";s:16:"rbac_create_file";s:11:"Upload File";s:15:"rbac_create_frm";s:12:"Create Forum";s:15:"rbac_create_glo";s:15:"Create Glossary";s:15:"rbac_create_grp";s:12:"Create Group";s:16:"rbac_create_htlm";s:27:"Create HTML Learning Module";s:14:"rbac_create_lm";s:28:"Create ILIAS Learning Module";s:16:"rbac_create_mcst";s:16:"Create Mediacast";s:15:"rbac_create_mep";s:17:"Create Media Pool";s:15:"rbac_create_qpl";s:25:"Create Question Pool Test";s:16:"rbac_create_rcrs";s:17:"Create ECS Course";s:16:"rbac_create_sahs";s:28:"Create SCORM Learning Module";s:15:"rbac_create_spl";s:27:"Create Question Pool Survey";s:15:"rbac_create_svy";s:13:"Create Survey";s:15:"rbac_create_tst";s:11:"Create Test";s:16:"rbac_create_webr";s:14:"Create Weblink";s:16:"rbac_create_wiki";s:11:"Create Wiki";s:11:"sess_delete";s:31:"User can move or delete session";s:15:"sess_edit_event";s:20:"Edit Calendar Events";s:20:"sess_edit_permission";s:35:"User can change permission settings";s:9:"sess_read";s:32:"User has read access to sessions";s:12:"sess_visible";s:20:"Sessions are visible";s:10:"sess_write";s:42:"User can edit session content and settings";s:20:"svyf_edit_permission";s:56:"User change permission settings in Survey administration";s:9:"svyf_read";s:45:"User has read access to Survey administration";s:12:"svyf_visible";s:32:"Survey administration is visible";s:10:"svyf_write";s:38:"Edit settings in Survey administration";s:11:"wfe_visible";s:44:"Administration of Workflow Engine is visible";s:8:"wfe_read";s:57:"User has read access to administration of Workflow Engine";s:9:"wfe_write";s:56:"User can edit settings of Workflow Engine administration";s:19:"wfe_edit_permission";s:69:"User can change permission settings of Workflow Engine administration";s:25:"mail_mail_to_global_roles";s:35:"User can send mails to global roles";s:30:"rbac_msg_user_already_assigned";s:51:"The chosen users are already assigned to this role.";s:23:"rbac_add_new_local_role";s:18:"Add New Local Role";s:27:"cals_add_consultation_hours";s:54:"User can offer and edit consultation hours in calendar";s:8:"rbac_log";s:3:"Log";s:12:"rbac_changes";s:7:"Changes";s:22:"rbac_log_operation_add";s:24:"Added Operation for "%s"";s:22:"rbac_log_operation_rmv";s:26:"Removed Operation for "%s"";s:24:"rbac_log_inheritance_add";s:28:"Stopped Inheritance for "%s"";s:24:"rbac_log_inheritance_rmv";s:28:"Allowed Inheritance for "%s"";s:22:"rbac_log_source_object";s:13:"Source object";s:25:"rbac_log_edit_permissions";s:16:"Edit Permissions";s:20:"rbac_log_move_object";s:11:"Move Object";s:20:"rbac_log_link_object";s:11:"Link Object";s:20:"rbac_log_copy_object";s:11:"Copy Object";s:22:"rbac_log_create_object";s:13:"Create Object";s:22:"rbac_log_edit_template";s:18:"Edit Role Template";s:31:"rbac_log_edit_template_existing";s:38:"Use Role Template for Existing Objects";s:21:"rbac_log_change_owner";s:22:"Change Owner of Object";s:22:"rbac_log_changed_owner";s:16:"Changed Owner to";s:21:"rbac_role_rights_copy";s:16:"Copy Permissions";s:27:"rbac_role_rights_copy_empty";s:4:"None";s:37:"rbac_role_rights_copy_change_existing";s:23:"Change Existing Objects";s:16:"perm_global_role";s:11:"Global Role";s:26:"perm_protected_global_role";s:21:"Protected Global Role";s:25:"perm_protected_local_role";s:20:"Protected Local Role";s:27:"perm_role_path_info_created";s:22:"Created in %1$s "%2$s"";s:31:"perm_role_path_info_inheritance";s:35:"using local policy from %1$s "%2$s"";s:10:"read_users";s:28:"Read Access to User Accounts";s:22:"cat_administrate_users";s:32:"Administrate Local User Accounts";s:15:"edit_permission";s:18:"Change Permissions";s:10:"edit_event";s:13:"Edit Calendar";s:20:"book_edit_permission";s:52:"User can change permission settings for booking pool";s:12:"book_visible";s:23:"Booking pool is visible";s:9:"book_read";s:49:"User can book resources / objects in booking pool";s:11:"book_delete";s:36:"User can move or delete booking pool";s:10:"book_write";s:50:"User can edit settings and content of booking pool";s:16:"rbac_create_book";s:19:"Create Booking Pool";s:5:"write";s:13:"Edit Settings";s:17:"rbac_local_policy";s:12:"Local Policy";s:15:"role_block_role";s:10:"Block Role";s:23:"role_confirm_block_role";s:16:"Save Role Status";s:12:"role_blocked";s:29:": Role will be blocked";s:14:"role_unblocked";s:31:": Role will be unblocked";s:20:"role_block_role_desc";s:67:"The access to this and all subordinated objects is will be revoked.";s:28:"role_confirm_block_role_info";s:208:"The following steps will be performed for the action "Block Role":

- the role permissions of this and all subordinated objects will be blocked.
- the new permission settings will be protected.";s:30:"role_confirm_unblock_role_info";s:115:"The following steps will be performed for the action "Unblock Role":

- the local policy will be deleted.";s:30:"role_confirm_block_role_header";s:71:"Do you really want to change the block role status of the chosen roles?";s:9:"smtp_mail";s:11:"SMTP E-Mail";s:20:"mail_to_global_roles";s:12:"Global Mails";s:9:"add_reply";s:9:"Add Reply";s:10:"add_thread";s:10:"Add Thread";s:12:"moderate_frm";s:8:"Moderate";s:27:"rbac_repository_permissions";s:22:"Repository Permissions";s:22:"rbac_admin_permissions";s:26:"Administration Permissions";s:22:"add_consultation_hours";s:22:"Add Consultation Hours";s:18:"export_member_data";s:16:"Access User Data";s:42:"rbac_change_existing_objects_desc_new_role";s:77:"The permission settings of this role will be adopted to ALL existing objects.";s:12:"frma_visible";s:31:"Forum Administration is visible";s:9:"frma_read";s:44:"User has read access to Forum Administration";s:10:"frma_write";s:46:"User can edit settings in Forum Administration";s:20:"frma_edit_permission";s:59:"User can change permission settings of Forum administration";s:15:"rbac_create_usr";s:39:"User is allowed to create user accounts";s:27:"precondition_obligatory_alt";s:30:"Precondition must be fulfilled";s:31:"precondition_not_obligatory_alt";s:24:"Precondition is optional";s:20:"active_preconditions";s:13:"Preconditions";s:23:"precondition_obligatory";s:10:"Compulsory";s:28:"precondition_obligatory_info";s:62:"Compulsory preconditions must be fulfilled, for having access.";s:32:"precondition_obligatory_settings";s:21:"Precondition Settings";s:27:"precondition_num_obligatory";s:28:"Number of Required Materials";s:30:"precondition_num_optional_info";s:83:"Please enter the minimum number of materials required to fulfill this precondition.";s:6:"invite";s:18:"Inviting to survey";s:16:"rbac_global_rolt";s:20:"Global Role Template";s:19:"rbac_role_selection";s:9:"Role Type";s:16:"rbac_auto_global";s:26:"Auto generated global role";s:14:"rbac_ud_global";s:24:"User defined global role";s:15:"rbac_auto_local";s:25:"Auto generated local role";s:13:"rbac_ud_local";s:23:"User defined local role";s:14:"rbac_auto_rolt";s:28:"Auto generated role template";s:12:"rbac_ud_rolt";s:26:"User defined role template";s:19:"rbac_context_global";s:6:"Global";s:12:"chtr_visible";s:20:"Chat Room is visible";s:9:"chtr_read";s:42:"User can join and participate at chat room";s:10:"chtr_write";s:49:"User can edit settings of chat room and ban users";s:20:"chtr_edit_permission";s:49:"User can change Permission Settings for Chat Room";s:13:"chtr_moderate";s:41:"User can moderate discussion in chat room";s:12:"otpl_visible";s:47:"Administration of Didactic Templates is visible";s:9:"otpl_read";s:57:"User has read access to Didactic Templates administration";s:10:"otpl_write";s:44:"User can edit settings of Didactic Templates";s:20:"otpl_edit_permission";s:75:"User can change permission settings in administration of Didactic Templates";s:21:"rbac_back_to_overview";s:17:"Back to Role List";s:24:"rbac_choose_copy_targets";s:52:"Please enter a query for selecting the target roles.";s:24:"rbac_select_copy_targets";s:30:"Please select the target roles";s:15:"rbac_role_title";s:10:"Role Title";s:19:"rbac_copy_behaviour";s:18:"Role Copy Settings";s:32:"rbac_not_change_existing_objects";s:30:"Do NOT change existing objects";s:14:"rbac_copy_role";s:9:"Copy Role";s:18:"rbac_copy_finished";s:17:"Finished copying.";s:24:"rbac_precondition_source";s:17:"Condition Trigger";s:24:"rbac_precondition_target";s:26:"Condition limits access to";s:22:"rbac_precondition_mode";s:4:"Mode";s:26:"rbac_precondition_mode_all";s:17:"All Preconditions";s:31:"rbac_precondition_mode_all_info";s:54:"All preconditions need to be fulfilled to give access.";s:29:"rbac_precondition_mode_subset";s:23:"Subset of Preconditions";s:34:"rbac_precondition_mode_subset_info";s:113:"A subset of preconditions need to be fulfilled to give access. Some preconditions may still be set as compulsory.";s:33:"rbac_precondition_save_obligatory";s:15:"Save Compulsory";s:34:"rbac_precondition_minimum_optional";s:49:"At least 2 preconditions have to remain optional.";s:12:"prfa_visible";s:35:"Portfolio administration is visible";s:9:"prfa_read";s:48:"User has read access to Portfolio administration";s:10:"prfa_write";s:50:"User can edit settings in Portfolio administration";s:20:"prfa_edit_permission";s:63:"User can change permission settings of Portfolio administration";s:12:"skmg_visible";s:47:"Competence Management administration is visible";s:9:"skmg_read";s:63:"User has read access to administration of Competence Management";s:10:"skmg_write";s:47:"User can edit settings of Competence Management";s:20:"skmg_edit_permission";s:75:"User can change permission settings of Competence Management administration";s:12:"blga_visible";s:30:"Blog Administration is visible";s:9:"blga_read";s:43:"User has read access to Blog Administration";s:10:"blga_write";s:45:"User can edit settings in Blog Administration";s:20:"blga_edit_permission";s:58:"User can change permission settings of Blog administration";s:8:"moderate";s:8:"Moderate";s:16:"rbac_create_chtr";s:16:"Create Chat Room";s:19:"rbac_edit_condition";s:17:"Edit Precondition";s:26:"rbac_condition_delete_sure";s:60:"Are you sure you want to delete the following preconditions?";s:18:"tst_tst_statistics";s:34:"User has access to test statistics";s:12:"blog_visible";s:15:"Blog is visible";s:9:"blog_read";s:26:"User can read blog content";s:9:"blog_copy";s:18:"User can copy blog";s:10:"blog_write";s:27:"User can edit blog settings";s:11:"blog_delete";s:28:"User can move or delete blog";s:20:"blog_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_blog";s:11:"Create Blog";s:10:"trac_write";s:64:"Edit settings in Statistics and Learning Progress administration";s:11:"dcl_visible";s:26:"Data Collection is visible";s:8:"dcl_read";s:30:"Read access to Data Collection";s:8:"dcl_copy";s:29:"User can copy data collection";s:9:"dcl_write";s:53:"User can edit settings and content of data collection";s:10:"dcl_delete";s:39:"User can move or delete data collection";s:19:"dcl_edit_permission";s:35:"User can change permission settings";s:13:"dcl_add_entry";s:25:"User can add/edit entries";s:15:"rbac_create_dcl";s:22:"Create Data Collection";s:12:"poll_visible";s:15:"Poll is visible";s:9:"poll_read";s:28:"User can participate at poll";s:10:"poll_write";s:39:"User can edit poll settings and content";s:11:"poll_delete";s:28:"User can move or delete poll";s:9:"poll_copy";s:18:"User can copy poll";s:20:"poll_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_poll";s:11:"Create Poll";s:15:"fld_create_poll";s:11:"Create Poll";s:20:"hlps_edit_permission";s:58:"User can change permissions of Help System administration.";s:9:"hlps_read";s:51:"User has read access to Help System administration.";s:12:"hlps_visible";s:38:"Help System administration is visible.";s:10:"hlps_write";s:61:"User can edit settings of Help System and upload new versions";s:16:"rbac_import_role";s:11:"Import Role";s:18:"rbac_role_imported";s:27:"The role has been imported.";s:13:"internal_mail";s:13:"Internal Mail";s:18:"mail_internal_mail";s:41:"User can use internal mail system (ILIAS)";s:9:"itgr_read";s:32:"User can see items in item group";s:10:"itgr_write";s:48:"User can edit content and settings of item group";s:9:"itgr_copy";s:24:"User can copy item group";s:11:"itgr_delete";s:34:"User can move or delete item group";s:20:"itgr_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_itgr";s:17:"Create Item Group";s:10:"contribute";s:10:"Contribute";s:15:"blog_contribute";s:24:"User can create postings";s:14:"lp_other_users";s:45:"See learning progress overview of other users";s:19:"trac_lp_other_users";s:45:"See learning progress overview of other users";s:20:"ecss_edit_permission";s:55:"User can edit permission settings of ECS administration";s:9:"ecss_read";s:34:"User can read general ECS settings";s:12:"ecss_visible";s:24:"ECS settings are visible";s:10:"ecss_write";s:26:"User can edit ECS settings";s:11:"rfil_delete";s:32:"User can move or delete ECS File";s:20:"rfil_edit_permission";s:35:"User can change permission settings";s:9:"rfil_read";s:21:"User can use ECS File";s:12:"rfil_visible";s:19:"ECS File is visible";s:10:"rfil_write";s:34:"User can edit settings of ECS File";s:11:"rgrp_delete";s:33:"User can move or delete ECS Group";s:20:"rgrp_edit_permission";s:35:"User can change permission settings";s:9:"rgrp_read";s:22:"User can use ECS Group";s:12:"rgrp_visible";s:20:"ECS Group is visible";s:10:"rgrp_write";s:35:"User can edit settings of ECS Group";s:11:"rglo_delete";s:36:"User can move or delete ECS Glossary";s:20:"rglo_edit_permission";s:35:"User can change permission settings";s:9:"rglo_read";s:25:"User can use ECS Glossary";s:12:"rglo_visible";s:23:"ECS Glossary is visible";s:10:"rglo_write";s:38:"User can edit settings of ECS Glossary";s:10:"rlm_delete";s:43:"User can move or delete ECS Learning Module";s:19:"rlm_edit_permission";s:35:"User can change permission settings";s:8:"rlm_read";s:32:"User can use ECS Learning Module";s:11:"rlm_visible";s:30:"ECS Learning Module is visible";s:9:"rlm_write";s:45:"User can edit settings of ECS Learning Module";s:11:"rtst_delete";s:32:"User can move or delete ECS Test";s:20:"rtst_edit_permission";s:35:"User can change permission settings";s:9:"rtst_read";s:21:"User can use ECS Test";s:12:"rtst_visible";s:19:"ECS Test is visible";s:10:"rtst_write";s:34:"User can edit settings of ECS Test";s:11:"rwik_delete";s:32:"User can move or delete ECS Wiki";s:20:"rwik_edit_permission";s:35:"User can change permission settings";s:9:"rwik_read";s:21:"User can use ECS Wiki";s:12:"rwik_visible";s:19:"ECS Wiki is visible";s:10:"rwik_write";s:34:"User can edit settings of ECS Wiki";s:11:"rcat_delete";s:36:"User can move or delete ECS Category";s:20:"rcat_edit_permission";s:35:"User can change permission settings";s:9:"rcat_read";s:25:"User can use ECS Category";s:12:"rcat_visible";s:23:"ECS Category is visible";s:10:"rcat_write";s:38:"User can edit settings of ECS Category";s:12:"itgr_visible";s:21:"Item group is visible";s:11:"chtr_delete";s:33:"User can move or delete chat room";s:16:"dcl_edit_content";s:12:"Edit entries";s:12:"bibl_visible";s:23:"Bibliography is visible";s:9:"bibl_read";s:34:"User can read bibliography content";s:9:"bibl_copy";s:17:"Copy Bibliography";s:10:"bibl_write";s:35:"User can edit bibliography settings";s:11:"bibl_delete";s:36:"User can move or delete bibliography";s:20:"bibl_edit_permission";s:35:"User can change permission settings";s:12:"bibs_visible";s:38:"Bibliography-Administration is visible";s:9:"bibs_read";s:34:"User can read bibliography content";s:10:"bibs_write";s:35:"User can edit bibliography settings";s:11:"bibs_delete";s:31:"User can delete library entries";s:9:"bibs_copy";s:26:"User can copy bibliography";s:20:"bibs_edit_permission";s:35:"User can change permission settings";s:19:"edit_userassignment";s:20:"Edit User Assignment";s:20:"sysc_edit_permission";s:44:"User can change permissions of System Check.";s:9:"sysc_read";s:37:"User has read access to System Check.";s:12:"sysc_visible";s:24:"System Check is visible.";s:10:"sysc_write";s:30:"User can execute System Check.";s:12:"delete_files";s:12:"Delete Files";s:16:"cld_delete_files";s:42:"Users can delete Files in the cloud object";s:14:"delete_folders";s:14:"Delete Folders";s:18:"cld_delete_folders";s:44:"Users can delete Folders in the cloud object";s:13:"files_visible";s:13:"Files Visible";s:17:"cld_files_visible";s:37:"Files are visible in the cloud object";s:15:"folders_visible";s:15:"Folders Visible";s:19:"cld_folders_visible";s:39:"Folders are visible in the cloud object";s:14:"folders_create";s:14:"Create Folders";s:18:"cld_folders_create";s:42:"Folders may be created in the cloud object";s:11:"cld_visible";s:23:"Cloud Object is visible";s:8:"cld_read";s:28:"User can open a Cloud Object";s:9:"cld_write";s:35:"User can edit cloud object settings";s:10:"cld_delete";s:28:"User can delete cloud object";s:14:"cld_permission";s:35:"User can change permission settings";s:10:"cld_upload";s:41:"User can upload files to the cloud object";s:12:"cld_download";s:45:"User can download files from the cloud object";s:19:"cld_edit_permission";s:35:"User can change permission settings";s:12:"prtt_visible";s:29:"Portfolio Template is visible";s:9:"prtt_read";s:42:"User has read access to portfolio template";s:9:"prtt_copy";s:32:"User can copy portfolio template";s:10:"prtt_write";s:56:"User can edit settings and content of portfolio template";s:11:"prtt_delete";s:42:"User can move or delete portfolio template";s:20:"prtt_edit_permission";s:58:"User can change permission settings for portfolio template";s:30:"rbac_info_only_position_access";s:213:"You are presented only with those members with a Position within your organisational unit. Members with other organisational Positions are not shown to you but may reside in this coures without being shown to you.";s:21:"org_op_access_results";s:36:"Access Results of Subordinated Users";s:26:"org_op_manage_participants";s:32:"Manage Subordinated Participants";s:25:"org_op_score_participants";s:31:"Score Subordinated Participants";s:30:"org_op_write_learning_progress";s:42:"Set learning Progress of subordinate users";s:30:"org_op_edit_submissions_grades";s:31:"Edit submissions of other users";s:24:"org_op_view_certificates";s:39:"View certificates of subordinated users";s:23:"org_op_view_competences";s:38:"View competences of subordinated users";s:23:"rbac_copy_role_add_perm";s:15:"Add Permissions";s:26:"rbac_copy_role_remove_perm";s:18:"Remove Permissions";s:19:"rbac_copy_role_copy";s:16:"Copy Permissions";s:16:"rbac_create_prtt";s:25:"Create Portfolio Template";s:16:"glo_edit_content";s:21:"User can edit content";s:16:"rbac_create_rolt";s:24:"Create new Role Template";s:16:"rbac_create_role";s:15:"Create new Role";s:16:"il_orgu_employee";s:28:"Organisational Unit Employee";s:16:"il_orgu_superior";s:28:"Organisational Unit Superior";s:16:"rbac_create_bibl";s:19:"Create Bibliography";s:15:"rbac_create_cld";s:19:"Create Cloud Object";s:12:"crss_visible";s:32:"Course administration is visible";s:9:"crss_read";s:45:"User has read access to Course administration";s:10:"crss_write";s:38:"Edit settings in Course administration";s:20:"crss_edit_permission";s:60:"User can change permission settings in Course administration";s:12:"grps_visible";s:31:"Group administration is visible";s:9:"grps_read";s:44:"User has read access to Group administration";s:10:"grps_write";s:37:"Edit settings in Group administration";s:20:"grps_edit_permission";s:59:"User can change permission settings in Group administration";s:12:"wiks_visible";s:30:"Wiki administration is visible";s:9:"wiks_read";s:43:"User has read access to Wiki administration";s:10:"wiks_write";s:36:"Edit settings in Wiki administration";s:20:"wiks_edit_permission";s:58:"User can change permission settings in Wiki administration";s:11:"tos_visible";s:42:"Terms of Service administration is visible";s:8:"tos_read";s:55:"User has read access to Terms of Service administration";s:9:"tos_write";s:48:"Edit settings in Terms of Service administration";s:19:"tos_edit_permission";s:70:"User can change permission settings in Terms of Service administration";s:12:"wbrs_visible";s:33:"Weblink administration is visible";s:9:"wbrs_read";s:46:"User has read access to Weblink administration";s:10:"wbrs_write";s:39:"Edit settings in Weblink administration";s:20:"wbrs_edit_permission";s:61:"User can change permission settings in Weblink administration";s:12:"reps_visible";s:36:"Repository administration is visible";s:9:"reps_read";s:49:"User has read access to Repository administration";s:10:"reps_write";s:42:"Edit settings in Repository administration";s:20:"reps_edit_permission";s:64:"User can change permission settings in Repository administration";s:27:"orgu_view_learning_progress";s:22:"View Learning Progress";s:12:"orgu_visible";s:30:"Organisational Unit is visible";s:9:"orgu_read";s:43:"User has read access to Organisational Unit";s:10:"orgu_write";s:45:"User can edit settings of Organisational Unit";s:15:"orgu_read_users";s:69:"User can read local user accounts created in this Organisational Unit";s:27:"orgu_cat_administrate_users";s:80:"User can create and administrate local user accounts in this Organisational Unit";s:11:"orgu_delete";s:43:"User can move or delete Organisational Unit";s:20:"orgu_edit_permission";s:35:"User can change permission settings";s:9:"orgu_copy";s:24:"Copy Organisational Unit";s:31:"orgu_view_learning_progress_rec";s:45:"View Learning Progress of Unit incl. Subunits";s:16:"rbac_create_orgu";s:27:"Create Organisational Units";s:15:"statistics_read";s:15:"View Statistics";s:20:"wiki_statistics_read";s:15:"View Statistics";s:12:"excs_visible";s:34:"Exercise administration is visible";s:9:"excs_read";s:47:"User has read access to Exercise administration";s:10:"excs_write";s:40:"Edit settings in Exercise administration";s:20:"excs_edit_permission";s:62:"User can change permission settings in Exercise administration";s:12:"taxs_visible";s:34:"Taxonomy administration is visible";s:9:"taxs_read";s:47:"User has read access to Taxonomy administration";s:10:"taxs_write";s:40:"Edit settings in Taxonomy administration";s:20:"taxs_edit_permission";s:62:"User can change permission settings in Taxonomy administration";s:22:"read_learning_progress";s:37:"View learning progress of other users";s:26:"crs_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"grp_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"fold_read_learning_progress";s:46:"User can view learning progress of other users";s:25:"lm_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"htlm_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"sahs_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"tst_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"exc_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"sess_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"file_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"mcst_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"lso_read_learning_progress";s:46:"User can view learning progress of other users";s:16:"condition_failed";s:6:"Failed";s:27:"condition_learning_progress";s:29:"Derive from Learning Progress";s:22:"rbac_precondition_hide";s:11:"Hide Object";s:27:"rbac_precondition_hide_info";s:152:" This option allows to hide the object for users who currently have not fulfilled the preconditions. Therefore, all not accessible content is invisible.";s:32:"rbac_cant_import_role_wrong_type";s:46:"Can\'t import a role from item %s into item %s.";s:8:"ilias_id";s:8:"ILIAS-ID";s:6:"redact";s:6:"Redact";s:11:"blog_redact";s:49:"User can edit postings of other contributors, too";s:20:"edit_wiki_navigation";s:15:"Edit Navigation";s:17:"delete_wiki_pages";s:12:"Delete Pages";s:24:"activate_wiki_protection";s:13:"Set Read-Only";s:16:"rbac_permissions";s:11:"Permissions";s:16:"wiki_html_export";s:11:"Export HTML";s:25:"wiki_edit_wiki_navigation";s:20:"Edit Wiki Navigation";s:22:"wiki_delete_wiki_pages";s:17:"Delete Wiki Pages";s:29:"wiki_activate_wiki_protection";s:27:"Set Wiki Pages to Read-Only";s:21:"wiki_wiki_html_export";s:19:"Export Wiki as HTML";s:12:"cadm_visible";s:41:"User connection administration is visible";s:9:"cadm_read";s:54:"User has read access to user connection administration";s:10:"cadm_write";s:55:"User has write access to user connection administration";s:20:"cadm_edit_permission";s:35:"User can change permission settings";s:20:"logs_edit_permission";s:59:"User can edit permission settings of Logging administration";s:9:"logs_read";s:38:"User can read general Logging settings";s:12:"logs_visible";s:28:"Logging settings are visible";s:10:"logs_write";s:30:"User can edit Logging settings";s:11:"prg_visible";s:26:"Study Programme is visible";s:8:"prg_copy";s:29:"User can copy Study Programme";s:9:"prg_write";s:41:"User can edit settings of Study Programme";s:10:"prg_delete";s:31:"User can delete Study Programme";s:19:"prg_edit_permission";s:35:"User can change permission settings";s:15:"rbac_create_prg";s:22:"Create Study Programme";s:12:"prgs_visible";s:41:"Study Programme administration is visible";s:9:"prgs_read";s:54:"User has read access to Study Programme administration";s:10:"prgs_write";s:47:"Edit settings in Study Programme administration";s:20:"prgs_edit_permission";s:60:"Change permission settings in Study Programme administration";s:9:"feed_copy";s:21:"User can copy webfeed";s:8:"prg_read";s:39:"User has read access to Study Programme";s:12:"awra_visible";s:46:"‘Who is online?’ administration is visible";s:9:"awra_read";s:59:"User has read access to ‘Who is online?’ administration";s:10:"awra_write";s:52:"Edit settings in ‘Who is online?’ administration";s:20:"awra_edit_permission";s:74:"User can change permission settings in ‘Who is online?’ administration";s:26:"svy_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"svy_edit_learning_progress";s:40:"User can edit learning progress settings";s:12:"read_results";s:14:"Survey Results";s:16:"svy_read_results";s:43:"User has access to survey results of others";s:27:"sess_edit_learning_progress";s:40:"User can edit learning progress settings";s:8:"mep_copy";s:24:"User can copy media pool";s:17:"sty_write_content";s:19:"Edit Content Styles";s:21:"stys_sty_write_custom";s:19:"Edit Content Styles";s:16:"sty_write_system";s:18:"Edit System Styles";s:21:"stys_sty_write_system";s:18:"Edit System Styles";s:21:"sty_write_page_layout";s:17:"Edit Page Layouts";s:26:"stys_sty_write_page_layout";s:17:"Edit Page Layouts";s:9:"grpr_copy";s:24:"User can copy group link";s:11:"grpr_delete";s:34:"User can move or delete group link";s:20:"grpr_edit_permission";s:35:"User can change permission settings";s:12:"grpr_visible";s:21:"Group link is visible";s:10:"grpr_write";s:36:"User can edit settings of group link";s:16:"rbac_create_grpr";s:17:"Create Group Link";s:12:"bdga_visible";s:31:"Badge administration is visible";s:9:"bdga_read";s:42:"User can read badge administration content";s:10:"bdga_write";s:43:"User can edit badge administration settings";s:20:"bdga_edit_permission";s:35:"User can change permission settings";s:13:"news_add_news";s:8:"Add News";s:17:"grp_news_add_news";s:38:"Add and edit own news entries in group";s:17:"crs_news_add_news";s:39:"Add and edit own news entries in course";s:12:"iass_visible";s:32:"Individual Assessment is visible";s:9:"iass_read";s:40:"Read content of an Individual Assessment";s:27:"iass_read_learning_progress";s:62:"View learning progress information of an Individual Assessment";s:27:"iass_edit_learning_progress";s:62:"Edit learning progress information of an Individual Assessment";s:9:"iass_copy";s:29:"Copy an Individual Assessment";s:10:"iass_write";s:29:"Edit an Individual Assessment";s:11:"iass_delete";s:31:"Delete an Individual Assessment";s:17:"iass_edit_members";s:40:"Edit members of an Individual Assessment";s:20:"iass_edit_permission";s:44:"Edit permissions of an Individual Assessment";s:12:"edit_members";s:14:"Manage members";s:18:"prg_manage_members";s:33:"Manage members of Study Programme";s:16:"rbac_create_iass";s:28:"Create Individual Assessment";s:18:"grp_manage_members";s:23:"Manage Members of Group";s:18:"crs_manage_members";s:24:"Manage Members of Course";s:9:"book_copy";s:26:"User can copy booking pool";s:27:"file_edit_learning_progress";s:40:"User can edit learning progress settings";s:22:"stys_sty_write_content";s:19:"Edit Content Styles";s:9:"grp_grade";s:22:"Grade Members of Group";s:9:"crs_grade";s:23:"Grade Members of Course";s:19:"wiki_edit_page_meta";s:23:"Edit Wiki Page Metadata";s:23:"edit_submissions_grades";s:27:"Edit Submissions and Grades";s:27:"exc_edit_submissions_grades";s:36:"User can edit submissions and grades";s:15:"release_objects";s:15:"Release Objects";s:20:"ltis_release_objects";s:41:"User can release Objects for LTI Consumer";s:12:"ltis_visible";s:29:"LTI administration is visible";s:9:"ltis_read";s:42:"User has read access to LTI administration";s:10:"ltis_write";s:44:"User can edit settings in LTI administration";s:20:"ltis_edit_permission";s:57:"User can change permission settings in LTI administration";s:12:"copa_visible";s:23:"Content Page is visible";s:9:"copa_read";s:26:"User can read Content Page";s:9:"copa_copy";s:17:"Copy Content Page";s:10:"copa_write";s:26:"User can edit Content Page";s:11:"copa_delete";s:36:"User can move or delete Content Page";s:20:"copa_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_copa";s:19:"Create Content Page";s:27:"copa_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"copa_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"sess_manage_members";s:32:"Manage Participants of a Session";s:16:"manage_materials";s:16:"Manage Materials";s:21:"sess_manage_materials";s:24:"Manage Session Materials";s:11:"lso_visible";s:28:"Learning Sequence is visible";s:8:"lso_copy";s:31:"User can copy Learning Sequence";s:9:"lso_write";s:43:"User can edit settings of Learning Sequence";s:10:"lso_delete";s:33:"User can delete Learning Sequence";s:18:"lso_lp_other_users";s:46:"User can view learning progress of other users";s:15:"rbac_create_lso";s:24:"Create Learning Sequence";s:18:"sess_edit_metadata";s:13:"Edit Metadata";s:18:"iass_amend_grading";s:42:"Amend gradings in an Individual Assessment";s:8:"lso_read";s:38:"Users can access the Learning Sequence";s:18:"lso_manage_members";s:35:"Manage members of Learning Sequence";s:19:"lso_edit_permission";s:56:"User can change permission settings of Learning Sequence";s:15:"lso_participate";s:41:"User can subscribe to a Learning Sequence";s:17:"lso_unparticipate";s:45:"User can unsubscribe from a Learning Sequence";s:26:"lso_edit_learning_progress";s:40:"User can edit learning progress settings";s:27:"mcst_edit_learning_progress";s:40:"User can edit learning progress settings";s:24:"dshs_change_presentation";s:37:"Change presentation of dashboard view";s:19:"change_presentation";s:19:"Change Presentation";s:28:"rbac_add_recommended_content";s:19:"Recommended Content";s:33:"rbac_add_recommended_content_info";s:80:"Adds the current object \'%1\' for all members of the role as recommended content.";s:13:"read_outcomes";s:40:"View learning experiences of other users";s:20:"add_consume_provider";s:29:"Add Own LTI Provider Settings";s:25:"ltis_add_consume_provider";s:51:"User can add own provider settings for LTI consumer";s:11:"lti_visible";s:23:"LTI consumer is visible";s:8:"lti_read";s:25:"User can see LTI consumer";s:17:"lti_read_outcomes";s:60:"User can see learning experiences and ranking of other users";s:26:"lti_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"lti_edit_learning_progress";s:40:"User can edit learning progress settings";s:8:"lti_copy";s:26:"User can copy LTI consumer";s:9:"lti_write";s:38:"User can edit settings of LTI consumer";s:10:"lti_delete";s:36:"User can move or delete LTI consumer";s:19:"lti_edit_permission";s:35:"User can change permission settings";s:15:"rbac_create_lti";s:19:"Create LTI Consumer";s:12:"cmix_visible";s:27:"xAPI/cmi5 Object is visible";s:9:"cmix_read";s:29:"User can see xAPI/cmi5 Object";s:18:"cmix_read_outcomes";s:60:"User can see learning experiences and ranking of other users";s:27:"cmix_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"cmix_edit_learning_progress";s:40:"User can edit learning progress settings";s:9:"cmix_copy";s:30:"User can copy xAPI/cmi5 Object";s:10:"cmix_write";s:42:"User can edit settings of xAPI/cmi5 Object";s:11:"cmix_delete";s:40:"User can move or delete xAPI/cmi5 Object";s:20:"cmix_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_cmix";s:23:"Create xAPI/cmi5 Object";s:9:"prgr_copy";s:39:"User can copy links to study programmes";s:11:"prgr_delete";s:49:"User can move or delete links to study programmes";s:20:"prgr_edit_permission";s:35:"User can change permission settings";s:12:"prgr_visible";s:53:"Links to study programmes are visible and can be used";s:10:"prgr_write";s:51:"User can edit settings of links to study programmes";s:16:"rbac_create_prgr";s:30:"Create link to study programme";}'))); +'module' => array('text', 'rbac'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:853:{s:32:"rbac_form_copy_roles_adjust_type";s:28:"Kind of Adapting Permissions";s:36:"rbac_form_copy_roles_adjust_type_add";s:15:"Add permissions";s:38:"rbac_form_copy_roles_adjust_type_clone";s:16:"Copy permissions";s:39:"rbac_form_copy_roles_adjust_type_remove";s:18:"Remove permissions";s:41:"rbac_form_copy_roles_adjust_type_add_info";s:146:"Adds SELECTED permissions of the selected role or role template to the default permissions of the target role. Unselected permissions are ignored.";s:43:"rbac_form_copy_roles_adjust_type_clone_info";s:184:"All permissions of the selected role or role template overwrite all default permissions of the target role. This applies to selected and unselected permissions in the template or role.";s:44:"rbac_form_copy_roles_adjust_type_remove_info";s:119:"Removes the SELECTED permissions of the selected role or role template from the default permissions of the target role.";s:34:"rbac_form_copy_roles_adjust_button";s:17:"Adapt Permissions";s:31:"rbac_form_copy_roles_ce_add_yes";s:44:"Add selected permissions to existing objects";s:30:"rbac_form_copy_roles_ce_add_no";s:31:"Only adjust default permissions";s:36:"rbac_form_copy_roles_ce_add_yes_info";s:130:"Both the existing permission defaults of the target role and the permission settings of existing objects are extended accordingly.";s:35:"rbac_form_copy_roles_ce_add_no_info";s:120:"Only the existing default permission of the target role are extended. Permissions of existing objects remain unaffected.";s:33:"rbac_form_copy_roles_ce_clone_yes";s:23:"Change existing objects";s:32:"rbac_form_copy_roles_ce_clone_no";s:29:"DO NOT adapt existing objects";s:38:"rbac_form_copy_roles_ce_clone_yes_info";s:160:"Existing permission settings are overwritten accordingly and are applied in their entirety to all existing objects with all selected and unselected permissions.";s:37:"rbac_form_copy_roles_ce_clone_no_info";s:141:"Existing default permissions of the target role are overwritten. But the permission settings of the already existing objects are not changed.";s:34:"rbac_form_copy_roles_ce_remove_yes";s:47:"Reduce existing objects by selected permissions";s:33:"rbac_form_copy_roles_ce_remove_no";s:31:"Reduce only default permissions";s:39:"rbac_form_copy_roles_ce_remove_yes_info";s:138:"The selected permissions are removed from the permission defaults of the target role and from the permission settings of existing objects.";s:38:"rbac_form_copy_roles_ce_remove_no_info";s:148:"Selected permissions are only removed from the default permissions of the target role. The permission settings of existing objects are not adjusted.";s:19:"il_sess_participant";s:19:"Session Participant";s:21:"il_sess_status_closed";s:30:"Non-Participant Closed Session";s:29:"positions_override_operations";s:24:"Override global Settings";s:13:"amend_grading";s:23:"Amend finalized grading";s:20:"accs_edit_permission";s:73:"User can change permissions of Accessibility Settings in Administration.";s:9:"accs_read";s:65:"User has read access to Accessibility Settings in Administration.";s:12:"accs_visible";s:53:"Accessibility Settings are visible in Administration.";s:10:"accs_write";s:55:"User can edit Accessibility Settings in Administration.";s:19:"adm_edit_permission";s:66:"User can change permissions of General Settings in Administration.";s:8:"adm_read";s:59:"User has read access to General Settings in Administration.";s:11:"adm_visible";s:47:"General Settings are visible in Administration.";s:9:"adm_write";s:49:"User can edit General Settings in Administration.";s:24:"adopt_perm_from_template";s:24:"Copy Permission Settings";s:20:"adve_edit_permission";s:61:"User can change permission settings of Editing administration";s:9:"adve_read";s:46:"User has read access to Editing Administration";s:12:"adve_visible";s:33:"Editing Administration is visible";s:10:"adve_write";s:48:"User can edit settings of Editing Administration";s:20:"assf_edit_permission";s:73:"User can change permission settings of Test and Assessment administration";s:9:"assf_read";s:55:"User has read access Test and Assessment Administration";s:12:"assf_visible";s:45:"Test and Assessment administration is visible";s:10:"assf_write";s:60:"User can edit settings of Test and Assessment Administration";s:20:"auth_edit_permission";s:85:"User can change permission settings of Authentication and Registration administration";s:9:"auth_read";s:73:"User has read access to administration of Authentication and Registration";s:12:"auth_visible";s:60:"Administration of Authentication and Registration is visible";s:10:"auth_write";s:58:"User can edit settings for Authentication and Registration";s:26:"cat_cat_administrate_users";s:69:"User can create and administrate local user accounts in this category";s:8:"cat_copy";s:22:"User can copy category";s:10:"cat_delete";s:32:"User can move or delete category";s:19:"cat_edit_permission";s:35:"User can change permission settings";s:14:"cat_read_users";s:58:"User can read local user accounts created in this category";s:8:"cat_read";s:32:"User has read access to category";s:11:"cat_visible";s:19:"Category is visible";s:9:"cat_write";s:53:"User can edit settings of category and manage content";s:20:"cert_edit_permission";s:66:"User can change permission settings of Certificates administration";s:9:"cert_read";s:51:"User has read access to Certificates Administration";s:12:"cert_visible";s:38:"Certificates Administration is visible";s:10:"cert_write";s:53:"User can edit settings in Certificates Administration";s:32:"change_existing_object_type_desc";s:78:"This will also change the permissions of already existing objects of that type";s:28:"change_existing_objects_desc";s:215:"The permission settings of this role will be adopted to ALL existing objects. If you want to change permissions only for specific object types please click the checkboxes to the right of the appropriate object type.";s:23:"change_existing_objects";s:23:"Change Existing Objects";s:29:"change_existing_prefix_single";s:6:"Change";s:22:"change_existing_prefix";s:15:"Change Existing";s:29:"change_existing_suffix_single";s:6:" ";s:22:"change_existing_suffix";s:6:" ";s:8:"crs_copy";s:20:"User can copy course";s:16:"rbac_create_fold";s:13:"Create Folder";s:10:"crs_delete";s:30:"User can move or delete course";s:26:"crs_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"crs_edit_permission";s:35:"User can change permission settings";s:8:"crs_join";s:20:"User can join course";s:9:"crs_leave";s:32:"User can unsubscribe from course";s:8:"crs_read";s:30:"User has read access to course";s:11:"crs_visible";s:17:"Course is visible";s:9:"crs_write";s:48:"User can edit course settings and manage content";s:19:"edit_roleassignment";s:20:"Edit role assignment";s:8:"exc_copy";s:22:"User can copy exercise";s:10:"exc_delete";s:32:"User can move or delete exercise";s:26:"exc_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"exc_edit_permission";s:35:"User can change permission settings";s:8:"exc_read";s:32:"User can participate at exercise";s:11:"exc_visible";s:19:"Exercise is visible";s:9:"exc_write";s:50:"User can edit settings and assignments of exercise";s:20:"extt_edit_permission";s:74:"User can change permission settings of Third Party Software administration";s:9:"extt_read";s:62:"User has read access to administration of Third Party Software";s:12:"extt_visible";s:49:"Administration of Third Party Software is visible";s:10:"extt_write";s:46:"User can edit settings of Third Party Software";s:11:"feed_delete";s:32:"User can move or delete web feed";s:20:"feed_edit_permission";s:35:"User can change permission settings";s:9:"feed_read";s:33:"User can read content of web feed";s:10:"feed_write";s:31:"User can edit web feed settings";s:9:"file_copy";s:18:"User can copy file";s:11:"file_delete";s:28:"User can move or delete file";s:20:"file_edit_permission";s:35:"User can change permission settings";s:9:"file_read";s:22:"User can download file";s:12:"file_visible";s:15:"File is visible";s:10:"file_write";s:58:"User can edit file settings and upload new version of file";s:9:"fold_copy";s:20:"User can copy folder";s:11:"fold_delete";s:30:"User can move or delete folder";s:27:"fold_edit_learning_progress";s:40:"User can edit learning progress settings";s:20:"fold_edit_permission";s:35:"User can change permission settings";s:9:"fold_read";s:30:"User has read access to folder";s:12:"fold_visible";s:17:"Folder is visible";s:10:"fold_write";s:51:"User can edit settings of folder and manage content";s:13:"frm_add_reply";s:28:"Users can reply to a posting";s:14:"frm_add_thread";s:25:"User can add a new thread";s:8:"frm_copy";s:19:"User can copy forum";s:10:"frm_delete";s:29:"User can move or delete forum";s:19:"frm_edit_permission";s:35:"User can change permission settings";s:16:"frm_moderate_frm";s:41:"User can edit, censor and delete postings";s:8:"frm_read";s:27:"User can read forum content";s:11:"frm_visible";s:16:"Forum is visible";s:9:"frm_write";s:43:"User can edit forum settings and moderators";s:8:"glo_copy";s:22:"User can copy glossary";s:10:"glo_delete";s:32:"User can move or delete glossary";s:19:"glo_edit_permission";s:35:"User can change permission settings";s:8:"glo_read";s:30:"User can read glossary content";s:11:"glo_visible";s:19:"Glossary is visible";s:9:"glo_write";s:46:"User can edit content and settings of glossary";s:8:"grp_copy";s:19:"User can copy group";s:10:"grp_delete";s:29:"User can move or delete group";s:26:"grp_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"grp_edit_permission";s:35:"User can change permission settings";s:8:"grp_join";s:19:"User can join group";s:9:"grp_leave";s:31:"User can unsubscribe from group";s:8:"grp_read";s:29:"User has read access to group";s:11:"grp_visible";s:16:"Group is visible";s:9:"grp_write";s:47:"User can edit group settings and manage content";s:9:"htlm_copy";s:34:"User can copy HTML learning module";s:11:"htlm_delete";s:44:"User can move or delete HTML learning module";s:27:"htlm_edit_learning_progress";s:40:"User can edit learning progress settings";s:20:"htlm_edit_permission";s:35:"User can change permission settings";s:9:"htlm_read";s:34:"User can read HTML learning module";s:12:"htlm_visible";s:31:"HTML learning module is visible";s:10:"htlm_write";s:58:"User can edit content and settings of HTML learning module";s:7:"lm_copy";s:35:"User can copy ILIAS learning module";s:9:"lm_delete";s:45:"User can move or delete ILIAS learning module";s:25:"lm_edit_learning_progress";s:40:"User can edit learning progress settings";s:18:"lm_edit_permission";s:35:"User can change permission settings";s:7:"lm_read";s:35:"User can read ILIAS learning module";s:10:"lm_visible";s:32:"ILIAS Learning Module is visible";s:8:"lm_write";s:59:"User can edit content and settings of ILIAS learning module";s:20:"lngf_edit_permission";s:62:"User can change permission settings of Language administration";s:9:"lngf_read";s:47:"User has read access to Language administration";s:12:"lngf_visible";s:34:"Language administration is visible";s:10:"lngf_write";s:87:"User can edit settings in Language administration and use extended language maintenance";s:20:"lrss_edit_permission";s:72:"User can change permission settings of Learning Resources administration";s:9:"lrss_read";s:51:"Read access to administration of Learning Resources";s:12:"lrss_visible";s:47:"Administration of Learning Resources is visible";s:10:"lrss_write";s:62:"User can edit settings of Learning Resources in administration";s:9:"mail_read";s:43:"User has read access to Mail administration";s:14:"mail_smtp_mail";s:52:"User can send e-mails per SMTP to external addresses";s:12:"mail_visible";s:30:"Mail administration is visible";s:10:"mail_write";s:45:"User can edit settings in Mail administration";s:9:"mcst_copy";s:23:"User can copy mediacast";s:11:"mcst_delete";s:33:"User can move or delete mediacast";s:20:"mcst_edit_permission";s:35:"User can change permission settings";s:9:"mcst_read";s:23:"User can read mediacast";s:12:"mcst_visible";s:20:"Mediacast is visible";s:10:"mcst_write";s:47:"User can edit content and settings of mediacast";s:10:"mep_delete";s:34:"User can move or delete media pool";s:19:"mep_edit_permission";s:35:"User can change permission settings";s:8:"mep_read";s:62:"User has read access to media pool and can reuse media objects";s:11:"mep_visible";s:21:"Media pool is visible";s:9:"mep_write";s:48:"User can edit content and settings of media pool";s:20:"mobs_edit_permission";s:73:"User can change permission settings in Media Objects/Pools administration";s:9:"mobs_read";s:58:"User has read access to Media Objects/Pools administration";s:12:"mobs_visible";s:45:"Media Objects/Pools administration is visible";s:10:"mobs_write";s:60:"User can edit settings in Media Objects/Pools administration";s:20:"nwss_edit_permission";s:72:"User can change permission settings in News and Web Feeds administration";s:9:"nwss_read";s:56:"User has read access to ews and Web Feeds administration";s:12:"nwss_visible";s:44:"News and Web Feeds administration is visible";s:10:"nwss_write";s:59:"User can edit settings in News and Web Feeds administration";s:18:"ps_edit_permission";s:70:"User can change permission settings of Privacy/Security administration";s:21:"ps_export_member_data";s:49:"User can export member data in courses and groups";s:7:"ps_read";s:55:"User has read access to Privacy/Security administration";s:10:"ps_visible";s:42:"Privacy/Security administration is visible";s:8:"ps_write";s:57:"User can edit settings in Privacy/Security administration";s:8:"qpl_copy";s:37:"User can copy question pool for tests";s:10:"qpl_delete";s:37:"User can move or delete question pool";s:19:"qpl_edit_permission";s:35:"User can change permission settings";s:8:"qpl_read";s:61:"User can read test questions in pool and insert them in tests";s:11:"qpl_visible";s:24:"Question pool is visible";s:9:"qpl_write";s:58:"User can edit test questions and settings of question pool";s:15:"rbac_create_cat";s:17:"Create Categories";s:20:"root_edit_permission";s:35:"User can change permission settings";s:9:"root_read";s:48:"User has read access to Repository - Home";s:12:"root_visible";s:35:"Repository - Home is visible";s:10:"root_write";s:69:"User can edit settings of Repository - Home and manage content";s:9:"sahs_copy";s:35:"User can copy SCORM learning module";s:11:"sahs_delete";s:45:"User can move or delete SCORM learning module";s:27:"sahs_edit_learning_progress";s:40:"User can edit learning progress settings";s:20:"sahs_edit_permission";s:35:"User can change permission settings";s:9:"sahs_read";s:35:"User can read SCORM learning module";s:12:"sahs_visible";s:32:"SCORM learning module is visible";s:10:"sahs_write";s:59:"User can edit content and settings of SCORM learning module";s:20:"seas_edit_permission";s:60:"User can change permission settings or Search administration";s:9:"seas_read";s:45:"User has read access to Search administration";s:11:"seas_search";s:39:"User can use the global search in ILIAS";s:12:"seas_visible";s:32:"Search administration is visible";s:10:"seas_write";s:38:"Edit settings in Search administration";s:9:"sess_copy";s:21:"User can copy session";s:8:"spl_copy";s:39:"User can copy question pool for surveys";s:10:"spl_delete";s:37:"User can move or delete question pool";s:19:"spl_edit_permission";s:35:"User can change permission settings";s:8:"spl_read";s:64:"User can read survey questions in pool and insert them in survey";s:11:"spl_visible";s:24:"Question pool is visible";s:9:"spl_write";s:60:"User can edit survey questions and settings of question pool";s:20:"stys_edit_permission";s:71:"User can change permission settings of Layout and Styles administration";s:9:"stys_read";s:56:"User has read access to Layout and Styles administration";s:12:"stys_visible";s:43:"Layout and Styles administration is visible";s:8:"svy_copy";s:20:"User can copy survey";s:10:"svy_delete";s:30:"User can move or delete survey";s:19:"svy_edit_permission";s:35:"User can change permission settings";s:10:"svy_invite";s:34:"User can invite others to a survey";s:8:"svy_read";s:32:"User can participate at a survey";s:11:"svy_visible";s:17:"Survey is visible";s:9:"svy_write";s:44:"User can edit content and settings of survey";s:20:"tags_edit_permission";s:61:"User can change permission settings in Tagging administration";s:9:"tags_read";s:46:"User has read access to Tagging administration";s:12:"tags_visible";s:33:"Tagging administration is visible";s:10:"tags_write";s:48:"User can edit settings in Tagging administration";s:11:"trac_delete";s:29:"User can delete tracking data";s:20:"trac_edit_permission";s:77:"Change permission settings in Statistics and Learning Progress administration";s:9:"trac_read";s:71:"User has read access to Statistics and Learning Progress administration";s:12:"trac_visible";s:58:"Statistics and Learning Progress administration is visible";s:8:"tst_copy";s:18:"User can copy test";s:10:"tst_delete";s:28:"User can move or delete test";s:26:"tst_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"tst_edit_permission";s:35:"User can change permission settings";s:8:"tst_read";s:25:"User can perform the test";s:15:"tst_tst_results";s:41:"User has access to test results of others";s:11:"tst_visible";s:15:"Test is visible";s:9:"tst_write";s:42:"User can edit content and settings of test";s:11:"usrf_delete";s:29:"User can delete user accounts";s:20:"usrf_edit_permission";s:58:"User can change permission settings in User administration";s:24:"usrf_edit_roleassignment";s:47:"User can change role assignment of user account";s:23:"usrf_push_desktop_items";s:60:"User is allowed to add recommended content for role members.";s:15:"usrf_read_users";s:66:"User has read access to local user accounts (local administrators)";s:9:"usrf_read";s:43:"User has read access to User administration";s:12:"usrf_visible";s:30:"User administration is visible";s:10:"usrf_write";s:36:"Edit settings in User administration";s:9:"webr_copy";s:21:"User can copy weblink";s:11:"webr_delete";s:31:"User can move or delete weblink";s:20:"webr_edit_permission";s:35:"User can change permission settings";s:9:"webr_read";s:30:"User can read and use weblinks";s:12:"webr_visible";s:18:"Weblink is visible";s:10:"webr_write";s:34:"User can edit settings of weblinks";s:9:"wiki_copy";s:18:"User can copy wiki";s:11:"wiki_delete";s:28:"User can move or delete wiki";s:17:"wiki_edit_content";s:35:"User can create and edit wiki pages";s:20:"wiki_edit_permission";s:35:"User can change permission settings";s:9:"wiki_read";s:26:"User can read wiki content";s:12:"wiki_visible";s:15:"Wiki is visible";s:10:"wiki_write";s:30:"User can edit settings of wiki";s:24:"upload_blacklisted_files";s:16:"Bypass blacklist";s:29:"facs_upload_blacklisted_files";s:43:"Upload indexed file types despite blacklist";s:15:"cals_edit_event";s:61:"User can create and edit public calendars and events in ILIAS";s:20:"cals_edit_permission";s:63:"User can change permission settings for Calendar administration";s:9:"cals_read";s:47:"User has read access to Calendar Administration";s:12:"cals_visible";s:34:"Calendar Administration is visible";s:10:"cals_write";s:49:"User can edit settings of Calendar Administration";s:9:"catr_copy";s:27:"User can copy category link";s:11:"catr_delete";s:37:"User can move or delete category link";s:20:"catr_edit_permission";s:35:"User can change permission settings";s:12:"catr_visible";s:24:"Category link is visible";s:10:"catr_write";s:39:"User can edit settings of category link";s:20:"cmps_edit_permission";s:83:"User can change permission settings of Plugins, Modules and Services administration";s:9:"cmps_read";s:71:"User has read access to administration of Plugins, Modules and Services";s:12:"cmps_visible";s:67:"Administration of Plugins, Modules and Services settings is visible";s:10:"cmps_write";s:55:"User can edit settings of Plugins, Modules and Services";s:16:"rbac_create_sess";s:14:"Create Session";s:14:"crs_edit_event";s:20:"Edit Calendar Events";s:9:"crsr_copy";s:25:"User can copy course link";s:11:"crsr_delete";s:35:"User can move or delete course link";s:20:"crsr_edit_permission";s:35:"User can change permission settings";s:12:"crsr_visible";s:22:"Course link is visible";s:10:"crsr_write";s:37:"User can edit settings of course link";s:22:"edit_learning_progress";s:22:"Edit Learning Progress";s:20:"facs_edit_permission";s:71:"User can change permission settings of Files and Folders administration";s:9:"facs_read";s:59:"User has read access to administration of Files and Folders";s:12:"facs_visible";s:46:"Administration of Files and Folders is visible";s:10:"facs_write";s:61:"User can edit settings in administration of Files and Folders";s:16:"filter_all_roles";s:33:"Show all roles of current context";s:19:"filter_global_roles";s:22:"Show only global roles";s:25:"filter_local_roles_object";s:46:"Show only local roles defined at this position";s:18:"filter_local_roles";s:40:"Show only local roles of current context";s:25:"filter_roles_local_policy";s:53:"Show only roles using a local policy at this position";s:14:"grp_edit_event";s:20:"Edit Calendar Events";s:22:"info_user_view_changed";s:17:"User view changed";s:5:"leave";s:11:"Unsubscribe";s:20:"mcts_edit_permission";s:63:"User can change permission settings in Mediacast administration";s:9:"mcts_read";s:48:"User has read access to Mediacast administration";s:12:"mcts_visible";s:35:"Mediacast administration is visible";s:10:"mcts_write";s:50:"User can edit settings in Mediacast administration";s:19:"mds_edit_permission";s:62:"User can change permission settings in Metadata administration";s:8:"mds_read";s:47:"User has read access to Metadata administration";s:11:"mds_visible";s:34:"Metadata administration is visible";s:9:"mds_write";s:49:"User can edit settings in Metadata administration";s:20:"msg_no_roles_of_type";s:47:"No Roles available with selected filter setting";s:11:"mme_visible";s:38:"Administration of Main Menu is visible";s:8:"mme_read";s:51:"User has read access to administration of Main Menu";s:9:"mme_write";s:50:"User can edit settings of Main Menu administration";s:19:"mme_edit_permission";s:63:"User can change permission settings of Main Menu administration";s:20:"dshs_edit_permission";s:63:"User can change permission settings of Dashboard administration";s:9:"dshs_read";s:48:"User has read access to Dashboard administration";s:12:"dshs_visible";s:35:"Dashboard administration is visible";s:10:"dshs_write";s:41:"Edit settings of Dashboard administration";s:22:"perm_class_create_desc";s:69:"Determine which object types may be created under the current object.";s:17:"perm_class_create";s:18:"Create new Objects";s:22:"perm_class_object_desc";s:27:"Object-specific operations.";s:17:"perm_class_object";s:18:"Special Operations";s:20:"perm_local_role_desc";s:83:"This role is locally defined at the current object and correspond to a local policy";s:15:"perm_local_role";s:10:"Local Role";s:26:"perm_use_local_policy_desc";s:106:"If local policy is activated, you may define different default permission settings for the current object.";s:21:"perm_use_local_policy";s:16:"Use local policy";s:32:"rbac_change_existing_confirm_tbl";s:42:"Settings for ‘Change Existing Objects’";s:31:"rbac_delete_local_policies_info";s:105:"If activated, all local policies will be deleted. The object permissions will be rewritten and protected.";s:26:"rbac_delete_local_policies";s:21:"Delete Local Policies";s:16:"rbac_delete_role";s:11:"Delete Role";s:29:"rbac_keep_local_policies_info";s:131:"Choose this mode for keeping all local policies. The object permissions will be adapted to these policies and afterwards protected.";s:24:"rbac_keep_local_policies";s:19:"Keep Local Policies";s:19:"rbac_local_policies";s:14:"Local Policies";s:20:"rbac_role_delete_qst";s:122:"Are you sure you want to delete the following role?
All permissions granted by this role will be deleted permanently.";s:21:"rbac_role_delete_self";s:143:"Attention: You are assigned to this role. If you continue this delete operation, you may loose access to some ILIAS materials.";s:22:"rbac_role_exists_alert";s:85:"A role with the same name already exists in this context. Please choose another name.";s:43:"rbac_unprotected_delete_local_policies_info";s:110:"If activated, all local policies will be deleted. Permissions in courses and groups will be newly initialized.";s:41:"rbac_unprotected_keep_local_policies_info";s:44:"Choose this mode to keep all local policies.";s:11:"rcrs_delete";s:34:"User can move or delete ECS Course";s:20:"rcrs_edit_permission";s:35:"User can change permission settings";s:9:"rcrs_read";s:23:"User can use ECS Course";s:12:"rcrs_visible";s:21:"ECS Course is visible";s:10:"rcrs_write";s:36:"User can edit settings of ECS Course";s:20:"recf_edit_permission";s:70:"User can change permission settings of Restored Objects administration";s:9:"recf_read";s:55:"User has read access to Restored Objects administration";s:12:"recf_visible";s:42:"Restored Objects administration is visible";s:10:"recf_write";s:68:"Edit Settings and restore objects in Restored Objects administration";s:16:"rbac_create_catr";s:20:"Create Category Link";s:15:"rbac_create_crs";s:13:"Create Course";s:16:"rbac_create_crsr";s:18:"Create Course Link";s:15:"rbac_create_exc";s:15:"Create Exercise";s:16:"rbac_create_feed";s:15:"Create Web Feed";s:16:"rbac_create_file";s:11:"Upload File";s:15:"rbac_create_frm";s:12:"Create Forum";s:15:"rbac_create_glo";s:15:"Create Glossary";s:15:"rbac_create_grp";s:12:"Create Group";s:16:"rbac_create_htlm";s:27:"Create HTML Learning Module";s:14:"rbac_create_lm";s:28:"Create ILIAS Learning Module";s:16:"rbac_create_mcst";s:16:"Create Mediacast";s:15:"rbac_create_mep";s:17:"Create Media Pool";s:15:"rbac_create_qpl";s:25:"Create Question Pool Test";s:16:"rbac_create_rcrs";s:17:"Create ECS Course";s:16:"rbac_create_sahs";s:28:"Create SCORM Learning Module";s:15:"rbac_create_spl";s:27:"Create Question Pool Survey";s:15:"rbac_create_svy";s:13:"Create Survey";s:15:"rbac_create_tst";s:11:"Create Test";s:16:"rbac_create_webr";s:14:"Create Weblink";s:16:"rbac_create_wiki";s:11:"Create Wiki";s:11:"sess_delete";s:31:"User can move or delete session";s:15:"sess_edit_event";s:20:"Edit Calendar Events";s:20:"sess_edit_permission";s:35:"User can change permission settings";s:9:"sess_read";s:32:"User has read access to sessions";s:12:"sess_visible";s:20:"Sessions are visible";s:10:"sess_write";s:42:"User can edit session content and settings";s:20:"svyf_edit_permission";s:56:"User change permission settings in Survey administration";s:9:"svyf_read";s:45:"User has read access to Survey administration";s:12:"svyf_visible";s:32:"Survey administration is visible";s:10:"svyf_write";s:38:"Edit settings in Survey administration";s:11:"wfe_visible";s:44:"Administration of Workflow Engine is visible";s:8:"wfe_read";s:57:"User has read access to administration of Workflow Engine";s:9:"wfe_write";s:56:"User can edit settings of Workflow Engine administration";s:19:"wfe_edit_permission";s:69:"User can change permission settings of Workflow Engine administration";s:25:"mail_mail_to_global_roles";s:35:"User can send mails to global roles";s:30:"rbac_msg_user_already_assigned";s:51:"The chosen users are already assigned to this role.";s:23:"rbac_add_new_local_role";s:18:"Add New Local Role";s:27:"cals_add_consultation_hours";s:54:"User can offer and edit consultation hours in calendar";s:8:"rbac_log";s:3:"Log";s:12:"rbac_changes";s:7:"Changes";s:22:"rbac_log_operation_add";s:24:"Added Operation for "%s"";s:22:"rbac_log_operation_rmv";s:26:"Removed Operation for "%s"";s:24:"rbac_log_inheritance_add";s:28:"Stopped Inheritance for "%s"";s:24:"rbac_log_inheritance_rmv";s:28:"Allowed Inheritance for "%s"";s:22:"rbac_log_source_object";s:13:"Source object";s:25:"rbac_log_edit_permissions";s:16:"Edit Permissions";s:20:"rbac_log_move_object";s:11:"Move Object";s:20:"rbac_log_link_object";s:11:"Link Object";s:20:"rbac_log_copy_object";s:11:"Copy Object";s:22:"rbac_log_create_object";s:13:"Create Object";s:22:"rbac_log_edit_template";s:18:"Edit Role Template";s:31:"rbac_log_edit_template_existing";s:38:"Use Role Template for Existing Objects";s:21:"rbac_log_change_owner";s:22:"Change Owner of Object";s:22:"rbac_log_changed_owner";s:16:"Changed Owner to";s:21:"rbac_role_rights_copy";s:16:"Copy Permissions";s:27:"rbac_role_rights_copy_empty";s:4:"None";s:37:"rbac_role_rights_copy_change_existing";s:23:"Change Existing Objects";s:16:"perm_global_role";s:11:"Global Role";s:26:"perm_protected_global_role";s:21:"Protected Global Role";s:25:"perm_protected_local_role";s:20:"Protected Local Role";s:27:"perm_role_path_info_created";s:22:"Created in %1$s "%2$s"";s:31:"perm_role_path_info_inheritance";s:35:"using local policy from %1$s "%2$s"";s:10:"read_users";s:28:"Read Access to User Accounts";s:22:"cat_administrate_users";s:32:"Administrate Local User Accounts";s:15:"edit_permission";s:18:"Change Permissions";s:10:"edit_event";s:13:"Edit Calendar";s:20:"book_edit_permission";s:52:"User can change permission settings for booking pool";s:12:"book_visible";s:23:"Booking pool is visible";s:9:"book_read";s:49:"User can book resources / objects in booking pool";s:11:"book_delete";s:36:"User can move or delete booking pool";s:10:"book_write";s:50:"User can edit settings and content of booking pool";s:16:"rbac_create_book";s:19:"Create Booking Pool";s:5:"write";s:13:"Edit Settings";s:17:"rbac_local_policy";s:12:"Local Policy";s:15:"role_block_role";s:10:"Block Role";s:23:"role_confirm_block_role";s:16:"Save Role Status";s:12:"role_blocked";s:29:": Role will be blocked";s:14:"role_unblocked";s:31:": Role will be unblocked";s:20:"role_block_role_desc";s:67:"The access to this and all subordinated objects is will be revoked.";s:28:"role_confirm_block_role_info";s:208:"The following steps will be performed for the action "Block Role":

- the role permissions of this and all subordinated objects will be blocked.
- the new permission settings will be protected.";s:30:"role_confirm_unblock_role_info";s:115:"The following steps will be performed for the action "Unblock Role":

- the local policy will be deleted.";s:30:"role_confirm_block_role_header";s:71:"Do you really want to change the block role status of the chosen roles?";s:9:"smtp_mail";s:11:"SMTP E-Mail";s:20:"mail_to_global_roles";s:12:"Global Mails";s:9:"add_reply";s:9:"Add Reply";s:10:"add_thread";s:10:"Add Thread";s:12:"moderate_frm";s:8:"Moderate";s:27:"rbac_repository_permissions";s:22:"Repository Permissions";s:22:"rbac_admin_permissions";s:26:"Administration Permissions";s:22:"add_consultation_hours";s:22:"Add Consultation Hours";s:18:"export_member_data";s:16:"Access User Data";s:42:"rbac_change_existing_objects_desc_new_role";s:77:"The permission settings of this role will be adopted to ALL existing objects.";s:12:"frma_visible";s:31:"Forum Administration is visible";s:9:"frma_read";s:44:"User has read access to Forum Administration";s:10:"frma_write";s:46:"User can edit settings in Forum Administration";s:20:"frma_edit_permission";s:59:"User can change permission settings of Forum administration";s:15:"rbac_create_usr";s:39:"User is allowed to create user accounts";s:27:"precondition_obligatory_alt";s:30:"Precondition must be fulfilled";s:31:"precondition_not_obligatory_alt";s:24:"Precondition is optional";s:20:"active_preconditions";s:13:"Preconditions";s:23:"precondition_obligatory";s:10:"Compulsory";s:28:"precondition_obligatory_info";s:62:"Compulsory preconditions must be fulfilled, for having access.";s:32:"precondition_obligatory_settings";s:21:"Precondition Settings";s:27:"precondition_num_obligatory";s:28:"Number of Required Materials";s:30:"precondition_num_optional_info";s:83:"Please enter the minimum number of materials required to fulfill this precondition.";s:6:"invite";s:18:"Inviting to survey";s:16:"rbac_global_rolt";s:20:"Global Role Template";s:19:"rbac_role_selection";s:9:"Role Type";s:16:"rbac_auto_global";s:26:"Auto generated global role";s:14:"rbac_ud_global";s:24:"User defined global role";s:15:"rbac_auto_local";s:25:"Auto generated local role";s:13:"rbac_ud_local";s:23:"User defined local role";s:14:"rbac_auto_rolt";s:28:"Auto generated role template";s:12:"rbac_ud_rolt";s:26:"User defined role template";s:19:"rbac_context_global";s:6:"Global";s:12:"chtr_visible";s:20:"Chat Room is visible";s:9:"chtr_read";s:42:"User can join and participate at chat room";s:10:"chtr_write";s:49:"User can edit settings of chat room and ban users";s:20:"chtr_edit_permission";s:49:"User can change Permission Settings for Chat Room";s:13:"chtr_moderate";s:41:"User can moderate discussion in chat room";s:12:"otpl_visible";s:47:"Administration of Didactic Templates is visible";s:9:"otpl_read";s:57:"User has read access to Didactic Templates administration";s:10:"otpl_write";s:44:"User can edit settings of Didactic Templates";s:20:"otpl_edit_permission";s:75:"User can change permission settings in administration of Didactic Templates";s:21:"rbac_back_to_overview";s:17:"Back to Role List";s:24:"rbac_choose_copy_targets";s:52:"Please enter a query for selecting the target roles.";s:24:"rbac_select_copy_targets";s:30:"Please select the target roles";s:15:"rbac_role_title";s:10:"Role Title";s:19:"rbac_copy_behaviour";s:18:"Role Copy Settings";s:32:"rbac_not_change_existing_objects";s:30:"Do NOT change existing objects";s:14:"rbac_copy_role";s:9:"Copy Role";s:18:"rbac_copy_finished";s:17:"Finished copying.";s:24:"rbac_precondition_source";s:17:"Condition Trigger";s:24:"rbac_precondition_target";s:26:"Condition limits access to";s:22:"rbac_precondition_mode";s:4:"Mode";s:26:"rbac_precondition_mode_all";s:17:"All Preconditions";s:31:"rbac_precondition_mode_all_info";s:54:"All preconditions need to be fulfilled to give access.";s:29:"rbac_precondition_mode_subset";s:23:"Subset of Preconditions";s:34:"rbac_precondition_mode_subset_info";s:113:"A subset of preconditions need to be fulfilled to give access. Some preconditions may still be set as compulsory.";s:33:"rbac_precondition_save_obligatory";s:15:"Save Compulsory";s:34:"rbac_precondition_minimum_optional";s:49:"At least 2 preconditions have to remain optional.";s:12:"prfa_visible";s:35:"Portfolio administration is visible";s:9:"prfa_read";s:48:"User has read access to Portfolio administration";s:10:"prfa_write";s:50:"User can edit settings in Portfolio administration";s:20:"prfa_edit_permission";s:63:"User can change permission settings of Portfolio administration";s:12:"skmg_visible";s:47:"Competence Management administration is visible";s:9:"skmg_read";s:63:"User has read access to administration of Competence Management";s:10:"skmg_write";s:47:"User can edit settings of Competence Management";s:20:"skmg_edit_permission";s:75:"User can change permission settings of Competence Management administration";s:12:"blga_visible";s:30:"Blog Administration is visible";s:9:"blga_read";s:43:"User has read access to Blog Administration";s:10:"blga_write";s:45:"User can edit settings in Blog Administration";s:20:"blga_edit_permission";s:58:"User can change permission settings of Blog administration";s:8:"moderate";s:8:"Moderate";s:16:"rbac_create_chtr";s:16:"Create Chat Room";s:19:"rbac_edit_condition";s:17:"Edit Precondition";s:26:"rbac_condition_delete_sure";s:60:"Are you sure you want to delete the following preconditions?";s:18:"tst_tst_statistics";s:34:"User has access to test statistics";s:12:"blog_visible";s:15:"Blog is visible";s:9:"blog_read";s:26:"User can read blog content";s:9:"blog_copy";s:18:"User can copy blog";s:10:"blog_write";s:27:"User can edit blog settings";s:11:"blog_delete";s:28:"User can move or delete blog";s:20:"blog_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_blog";s:11:"Create Blog";s:10:"trac_write";s:64:"Edit settings in Statistics and Learning Progress administration";s:11:"dcl_visible";s:26:"Data Collection is visible";s:8:"dcl_read";s:30:"Read access to Data Collection";s:8:"dcl_copy";s:29:"User can copy data collection";s:9:"dcl_write";s:53:"User can edit settings and content of data collection";s:10:"dcl_delete";s:39:"User can move or delete data collection";s:19:"dcl_edit_permission";s:35:"User can change permission settings";s:13:"dcl_add_entry";s:25:"User can add/edit entries";s:15:"rbac_create_dcl";s:22:"Create Data Collection";s:12:"poll_visible";s:15:"Poll is visible";s:9:"poll_read";s:28:"User can participate at poll";s:10:"poll_write";s:39:"User can edit poll settings and content";s:11:"poll_delete";s:28:"User can move or delete poll";s:9:"poll_copy";s:18:"User can copy poll";s:20:"poll_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_poll";s:11:"Create Poll";s:15:"fld_create_poll";s:11:"Create Poll";s:20:"hlps_edit_permission";s:58:"User can change permissions of Help System administration.";s:9:"hlps_read";s:51:"User has read access to Help System administration.";s:12:"hlps_visible";s:38:"Help System administration is visible.";s:10:"hlps_write";s:61:"User can edit settings of Help System and upload new versions";s:16:"rbac_import_role";s:11:"Import Role";s:18:"rbac_role_imported";s:27:"The role has been imported.";s:13:"internal_mail";s:13:"Internal Mail";s:18:"mail_internal_mail";s:41:"User can use internal mail system (ILIAS)";s:9:"itgr_read";s:32:"User can see items in item group";s:10:"itgr_write";s:48:"User can edit content and settings of item group";s:9:"itgr_copy";s:24:"User can copy item group";s:11:"itgr_delete";s:34:"User can move or delete item group";s:20:"itgr_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_itgr";s:17:"Create Item Group";s:10:"contribute";s:10:"Contribute";s:15:"blog_contribute";s:24:"User can create postings";s:14:"lp_other_users";s:45:"See learning progress overview of other users";s:19:"trac_lp_other_users";s:45:"See learning progress overview of other users";s:20:"ecss_edit_permission";s:55:"User can edit permission settings of ECS administration";s:9:"ecss_read";s:34:"User can read general ECS settings";s:12:"ecss_visible";s:24:"ECS settings are visible";s:10:"ecss_write";s:26:"User can edit ECS settings";s:11:"rfil_delete";s:32:"User can move or delete ECS File";s:20:"rfil_edit_permission";s:35:"User can change permission settings";s:9:"rfil_read";s:21:"User can use ECS File";s:12:"rfil_visible";s:19:"ECS File is visible";s:10:"rfil_write";s:34:"User can edit settings of ECS File";s:11:"rgrp_delete";s:33:"User can move or delete ECS Group";s:20:"rgrp_edit_permission";s:35:"User can change permission settings";s:9:"rgrp_read";s:22:"User can use ECS Group";s:12:"rgrp_visible";s:20:"ECS Group is visible";s:10:"rgrp_write";s:35:"User can edit settings of ECS Group";s:11:"rglo_delete";s:36:"User can move or delete ECS Glossary";s:20:"rglo_edit_permission";s:35:"User can change permission settings";s:9:"rglo_read";s:25:"User can use ECS Glossary";s:12:"rglo_visible";s:23:"ECS Glossary is visible";s:10:"rglo_write";s:38:"User can edit settings of ECS Glossary";s:10:"rlm_delete";s:43:"User can move or delete ECS Learning Module";s:19:"rlm_edit_permission";s:35:"User can change permission settings";s:8:"rlm_read";s:32:"User can use ECS Learning Module";s:11:"rlm_visible";s:30:"ECS Learning Module is visible";s:9:"rlm_write";s:45:"User can edit settings of ECS Learning Module";s:11:"rtst_delete";s:32:"User can move or delete ECS Test";s:20:"rtst_edit_permission";s:35:"User can change permission settings";s:9:"rtst_read";s:21:"User can use ECS Test";s:12:"rtst_visible";s:19:"ECS Test is visible";s:10:"rtst_write";s:34:"User can edit settings of ECS Test";s:11:"rwik_delete";s:32:"User can move or delete ECS Wiki";s:20:"rwik_edit_permission";s:35:"User can change permission settings";s:9:"rwik_read";s:21:"User can use ECS Wiki";s:12:"rwik_visible";s:19:"ECS Wiki is visible";s:10:"rwik_write";s:34:"User can edit settings of ECS Wiki";s:11:"rcat_delete";s:36:"User can move or delete ECS Category";s:20:"rcat_edit_permission";s:35:"User can change permission settings";s:9:"rcat_read";s:25:"User can use ECS Category";s:12:"rcat_visible";s:23:"ECS Category is visible";s:10:"rcat_write";s:38:"User can edit settings of ECS Category";s:12:"itgr_visible";s:21:"Item group is visible";s:11:"chtr_delete";s:33:"User can move or delete chat room";s:16:"dcl_edit_content";s:12:"Edit entries";s:12:"bibl_visible";s:23:"Bibliography is visible";s:9:"bibl_read";s:34:"User can read bibliography content";s:9:"bibl_copy";s:17:"Copy Bibliography";s:10:"bibl_write";s:35:"User can edit bibliography settings";s:11:"bibl_delete";s:36:"User can move or delete bibliography";s:20:"bibl_edit_permission";s:35:"User can change permission settings";s:12:"bibs_visible";s:38:"Bibliography-Administration is visible";s:9:"bibs_read";s:34:"User can read bibliography content";s:10:"bibs_write";s:35:"User can edit bibliography settings";s:11:"bibs_delete";s:31:"User can delete library entries";s:9:"bibs_copy";s:26:"User can copy bibliography";s:20:"bibs_edit_permission";s:35:"User can change permission settings";s:19:"edit_userassignment";s:20:"Edit User Assignment";s:20:"sysc_edit_permission";s:44:"User can change permissions of System Check.";s:9:"sysc_read";s:37:"User has read access to System Check.";s:12:"sysc_visible";s:24:"System Check is visible.";s:10:"sysc_write";s:30:"User can execute System Check.";s:12:"delete_files";s:12:"Delete Files";s:16:"cld_delete_files";s:42:"Users can delete Files in the cloud object";s:14:"delete_folders";s:14:"Delete Folders";s:18:"cld_delete_folders";s:44:"Users can delete Folders in the cloud object";s:13:"files_visible";s:13:"Files Visible";s:17:"cld_files_visible";s:37:"Files are visible in the cloud object";s:15:"folders_visible";s:15:"Folders Visible";s:19:"cld_folders_visible";s:39:"Folders are visible in the cloud object";s:14:"folders_create";s:14:"Create Folders";s:18:"cld_folders_create";s:42:"Folders may be created in the cloud object";s:11:"cld_visible";s:23:"Cloud Object is visible";s:8:"cld_read";s:28:"User can open a Cloud Object";s:9:"cld_write";s:35:"User can edit cloud object settings";s:10:"cld_delete";s:28:"User can delete cloud object";s:14:"cld_permission";s:35:"User can change permission settings";s:10:"cld_upload";s:41:"User can upload files to the cloud object";s:12:"cld_download";s:45:"User can download files from the cloud object";s:19:"cld_edit_permission";s:35:"User can change permission settings";s:21:"edit_in_online_editor";s:21:"Open in online editor";s:25:"cld_edit_in_online_editor";s:45:"User can open and edit files in online editor";s:12:"prtt_visible";s:29:"Portfolio Template is visible";s:9:"prtt_read";s:42:"User has read access to portfolio template";s:9:"prtt_copy";s:32:"User can copy portfolio template";s:10:"prtt_write";s:56:"User can edit settings and content of portfolio template";s:11:"prtt_delete";s:42:"User can move or delete portfolio template";s:20:"prtt_edit_permission";s:58:"User can change permission settings for portfolio template";s:30:"rbac_info_only_position_access";s:213:"You are presented only with those members with a Position within your organisational unit. Members with other organisational Positions are not shown to you but may reside in this coures without being shown to you.";s:21:"org_op_access_results";s:36:"Access Results of Subordinated Users";s:26:"org_op_manage_participants";s:32:"Manage Subordinated Participants";s:25:"org_op_score_participants";s:31:"Score Subordinated Participants";s:30:"org_op_write_learning_progress";s:42:"Set learning Progress of subordinate users";s:30:"org_op_edit_submissions_grades";s:31:"Edit submissions of other users";s:24:"org_op_view_certificates";s:39:"View certificates of subordinated users";s:23:"org_op_view_competences";s:38:"View competences of subordinated users";s:23:"rbac_copy_role_add_perm";s:15:"Add Permissions";s:26:"rbac_copy_role_remove_perm";s:18:"Remove Permissions";s:19:"rbac_copy_role_copy";s:16:"Copy Permissions";s:16:"rbac_create_prtt";s:25:"Create Portfolio Template";s:16:"glo_edit_content";s:21:"User can edit content";s:16:"rbac_create_rolt";s:24:"Create new Role Template";s:16:"rbac_create_role";s:15:"Create new Role";s:16:"il_orgu_employee";s:28:"Organisational Unit Employee";s:16:"il_orgu_superior";s:28:"Organisational Unit Superior";s:16:"rbac_create_bibl";s:19:"Create Bibliography";s:15:"rbac_create_cld";s:19:"Create Cloud Object";s:12:"crss_visible";s:32:"Course administration is visible";s:9:"crss_read";s:45:"User has read access to Course administration";s:10:"crss_write";s:38:"Edit settings in Course administration";s:20:"crss_edit_permission";s:60:"User can change permission settings in Course administration";s:12:"grps_visible";s:31:"Group administration is visible";s:9:"grps_read";s:44:"User has read access to Group administration";s:10:"grps_write";s:37:"Edit settings in Group administration";s:20:"grps_edit_permission";s:59:"User can change permission settings in Group administration";s:12:"wiks_visible";s:30:"Wiki administration is visible";s:9:"wiks_read";s:43:"User has read access to Wiki administration";s:10:"wiks_write";s:36:"Edit settings in Wiki administration";s:20:"wiks_edit_permission";s:58:"User can change permission settings in Wiki administration";s:11:"tos_visible";s:42:"Terms of Service administration is visible";s:8:"tos_read";s:55:"User has read access to Terms of Service administration";s:9:"tos_write";s:48:"Edit settings in Terms of Service administration";s:19:"tos_edit_permission";s:70:"User can change permission settings in Terms of Service administration";s:12:"wbrs_visible";s:33:"Weblink administration is visible";s:9:"wbrs_read";s:46:"User has read access to Weblink administration";s:10:"wbrs_write";s:39:"Edit settings in Weblink administration";s:20:"wbrs_edit_permission";s:61:"User can change permission settings in Weblink administration";s:12:"reps_visible";s:36:"Repository administration is visible";s:9:"reps_read";s:49:"User has read access to Repository administration";s:10:"reps_write";s:42:"Edit settings in Repository administration";s:20:"reps_edit_permission";s:64:"User can change permission settings in Repository administration";s:27:"orgu_view_learning_progress";s:22:"View Learning Progress";s:12:"orgu_visible";s:30:"Organisational Unit is visible";s:9:"orgu_read";s:43:"User has read access to Organisational Unit";s:10:"orgu_write";s:45:"User can edit settings of Organisational Unit";s:15:"orgu_read_users";s:69:"User can read local user accounts created in this Organisational Unit";s:27:"orgu_cat_administrate_users";s:80:"User can create and administrate local user accounts in this Organisational Unit";s:11:"orgu_delete";s:43:"User can move or delete Organisational Unit";s:20:"orgu_edit_permission";s:35:"User can change permission settings";s:9:"orgu_copy";s:24:"Copy Organisational Unit";s:31:"orgu_view_learning_progress_rec";s:45:"View Learning Progress of Unit incl. Subunits";s:16:"rbac_create_orgu";s:27:"Create Organisational Units";s:15:"statistics_read";s:15:"View Statistics";s:20:"wiki_statistics_read";s:15:"View Statistics";s:12:"excs_visible";s:34:"Exercise administration is visible";s:9:"excs_read";s:47:"User has read access to Exercise administration";s:10:"excs_write";s:40:"Edit settings in Exercise administration";s:20:"excs_edit_permission";s:62:"User can change permission settings in Exercise administration";s:12:"taxs_visible";s:34:"Taxonomy administration is visible";s:9:"taxs_read";s:47:"User has read access to Taxonomy administration";s:10:"taxs_write";s:40:"Edit settings in Taxonomy administration";s:20:"taxs_edit_permission";s:62:"User can change permission settings in Taxonomy administration";s:22:"read_learning_progress";s:37:"View learning progress of other users";s:26:"crs_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"grp_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"fold_read_learning_progress";s:46:"User can view learning progress of other users";s:25:"lm_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"htlm_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"sahs_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"tst_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"exc_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"sess_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"file_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"mcst_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"lso_read_learning_progress";s:46:"User can view learning progress of other users";s:16:"condition_failed";s:6:"Failed";s:27:"condition_learning_progress";s:29:"Derive from Learning Progress";s:22:"rbac_precondition_hide";s:11:"Hide Object";s:27:"rbac_precondition_hide_info";s:152:" This option allows to hide the object for users who currently have not fulfilled the preconditions. Therefore, all not accessible content is invisible.";s:32:"rbac_cant_import_role_wrong_type";s:46:"Can\'t import a role from item %s into item %s.";s:8:"ilias_id";s:8:"ILIAS-ID";s:6:"redact";s:6:"Redact";s:11:"blog_redact";s:49:"User can edit postings of other contributors, too";s:20:"edit_wiki_navigation";s:15:"Edit Navigation";s:17:"delete_wiki_pages";s:12:"Delete Pages";s:24:"activate_wiki_protection";s:13:"Set Read-Only";s:16:"rbac_permissions";s:11:"Permissions";s:16:"wiki_html_export";s:11:"Export HTML";s:25:"wiki_edit_wiki_navigation";s:20:"Edit Wiki Navigation";s:22:"wiki_delete_wiki_pages";s:17:"Delete Wiki Pages";s:29:"wiki_activate_wiki_protection";s:27:"Set Wiki Pages to Read-Only";s:21:"wiki_wiki_html_export";s:19:"Export Wiki as HTML";s:12:"cadm_visible";s:41:"User connection administration is visible";s:9:"cadm_read";s:54:"User has read access to user connection administration";s:10:"cadm_write";s:55:"User has write access to user connection administration";s:20:"cadm_edit_permission";s:35:"User can change permission settings";s:20:"logs_edit_permission";s:59:"User can edit permission settings of Logging administration";s:9:"logs_read";s:38:"User can read general Logging settings";s:12:"logs_visible";s:28:"Logging settings are visible";s:10:"logs_write";s:30:"User can edit Logging settings";s:11:"prg_visible";s:26:"Study Programme is visible";s:8:"prg_copy";s:29:"User can copy Study Programme";s:9:"prg_write";s:41:"User can edit settings of Study Programme";s:10:"prg_delete";s:31:"User can delete Study Programme";s:19:"prg_edit_permission";s:35:"User can change permission settings";s:15:"rbac_create_prg";s:22:"Create Study Programme";s:12:"prgs_visible";s:41:"Study Programme administration is visible";s:9:"prgs_read";s:54:"User has read access to Study Programme administration";s:10:"prgs_write";s:47:"Edit settings in Study Programme administration";s:20:"prgs_edit_permission";s:60:"Change permission settings in Study Programme administration";s:9:"feed_copy";s:21:"User can copy webfeed";s:8:"prg_read";s:39:"User has read access to Study Programme";s:12:"awra_visible";s:46:"‘Who is online?’ administration is visible";s:9:"awra_read";s:59:"User has read access to ‘Who is online?’ administration";s:10:"awra_write";s:52:"Edit settings in ‘Who is online?’ administration";s:20:"awra_edit_permission";s:74:"User can change permission settings in ‘Who is online?’ administration";s:26:"svy_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"svy_edit_learning_progress";s:40:"User can edit learning progress settings";s:12:"read_results";s:14:"Survey Results";s:16:"svy_read_results";s:43:"User has access to survey results of others";s:27:"sess_edit_learning_progress";s:40:"User can edit learning progress settings";s:8:"mep_copy";s:24:"User can copy media pool";s:17:"sty_write_content";s:19:"Edit Content Styles";s:21:"stys_sty_write_custom";s:19:"Edit Content Styles";s:16:"sty_write_system";s:18:"Edit System Styles";s:21:"stys_sty_write_system";s:18:"Edit System Styles";s:21:"sty_write_page_layout";s:17:"Edit Page Layouts";s:26:"stys_sty_write_page_layout";s:17:"Edit Page Layouts";s:9:"grpr_copy";s:24:"User can copy group link";s:11:"grpr_delete";s:34:"User can move or delete group link";s:20:"grpr_edit_permission";s:35:"User can change permission settings";s:12:"grpr_visible";s:21:"Group link is visible";s:10:"grpr_write";s:36:"User can edit settings of group link";s:16:"rbac_create_grpr";s:17:"Create Group Link";s:12:"bdga_visible";s:31:"Badge administration is visible";s:9:"bdga_read";s:42:"User can read badge administration content";s:10:"bdga_write";s:43:"User can edit badge administration settings";s:20:"bdga_edit_permission";s:35:"User can change permission settings";s:13:"news_add_news";s:8:"Add News";s:17:"grp_news_add_news";s:38:"Add and edit own news entries in group";s:17:"crs_news_add_news";s:39:"Add and edit own news entries in course";s:12:"iass_visible";s:32:"Individual Assessment is visible";s:9:"iass_read";s:40:"Read content of an Individual Assessment";s:27:"iass_read_learning_progress";s:62:"View learning progress information of an Individual Assessment";s:27:"iass_edit_learning_progress";s:62:"Edit learning progress information of an Individual Assessment";s:9:"iass_copy";s:29:"Copy an Individual Assessment";s:10:"iass_write";s:29:"Edit an Individual Assessment";s:11:"iass_delete";s:31:"Delete an Individual Assessment";s:17:"iass_edit_members";s:40:"Edit members of an Individual Assessment";s:20:"iass_edit_permission";s:44:"Edit permissions of an Individual Assessment";s:12:"edit_members";s:14:"Manage members";s:18:"prg_manage_members";s:33:"Manage members of Study Programme";s:16:"rbac_create_iass";s:28:"Create Individual Assessment";s:18:"grp_manage_members";s:23:"Manage Members of Group";s:18:"crs_manage_members";s:24:"Manage Members of Course";s:9:"book_copy";s:26:"User can copy booking pool";s:27:"file_edit_learning_progress";s:40:"User can edit learning progress settings";s:22:"stys_sty_write_content";s:19:"Edit Content Styles";s:9:"grp_grade";s:22:"Grade Members of Group";s:9:"crs_grade";s:23:"Grade Members of Course";s:19:"wiki_edit_page_meta";s:23:"Edit Wiki Page Metadata";s:23:"edit_submissions_grades";s:27:"Edit Submissions and Grades";s:27:"exc_edit_submissions_grades";s:36:"User can edit submissions and grades";s:15:"release_objects";s:15:"Release Objects";s:20:"ltis_release_objects";s:41:"User can release Objects for LTI Consumer";s:12:"ltis_visible";s:29:"LTI administration is visible";s:9:"ltis_read";s:42:"User has read access to LTI administration";s:10:"ltis_write";s:44:"User can edit settings in LTI administration";s:20:"ltis_edit_permission";s:57:"User can change permission settings in LTI administration";s:12:"copa_visible";s:23:"Content Page is visible";s:9:"copa_read";s:26:"User can read Content Page";s:9:"copa_copy";s:17:"Copy Content Page";s:10:"copa_write";s:26:"User can edit Content Page";s:11:"copa_delete";s:36:"User can move or delete Content Page";s:20:"copa_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_copa";s:19:"Create Content Page";s:27:"copa_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"copa_edit_learning_progress";s:40:"User can edit learning progress settings";s:19:"sess_manage_members";s:32:"Manage Participants of a Session";s:16:"manage_materials";s:16:"Manage Materials";s:21:"sess_manage_materials";s:24:"Manage Session Materials";s:11:"lso_visible";s:28:"Learning Sequence is visible";s:8:"lso_copy";s:31:"User can copy Learning Sequence";s:9:"lso_write";s:43:"User can edit settings of Learning Sequence";s:10:"lso_delete";s:33:"User can delete Learning Sequence";s:18:"lso_lp_other_users";s:46:"User can view learning progress of other users";s:15:"rbac_create_lso";s:24:"Create Learning Sequence";s:18:"sess_edit_metadata";s:13:"Edit Metadata";s:18:"iass_amend_grading";s:42:"Amend gradings in an Individual Assessment";s:8:"lso_read";s:38:"Users can access the Learning Sequence";s:18:"lso_manage_members";s:35:"Manage members of Learning Sequence";s:19:"lso_edit_permission";s:56:"User can change permission settings of Learning Sequence";s:15:"lso_participate";s:41:"User can subscribe to a Learning Sequence";s:17:"lso_unparticipate";s:45:"User can unsubscribe from a Learning Sequence";s:26:"lso_edit_learning_progress";s:40:"User can edit learning progress settings";s:27:"mcst_edit_learning_progress";s:40:"User can edit learning progress settings";s:24:"dshs_change_presentation";s:37:"Change presentation of dashboard view";s:19:"change_presentation";s:19:"Change Presentation";s:28:"rbac_add_recommended_content";s:19:"Recommended Content";s:33:"rbac_add_recommended_content_info";s:80:"Adds the current object \'%1\' for all members of the role as recommended content.";s:13:"read_outcomes";s:40:"View learning experiences of other users";s:20:"add_consume_provider";s:29:"Add Own LTI Provider Settings";s:25:"ltis_add_consume_provider";s:51:"User can add own provider settings for LTI consumer";s:11:"lti_visible";s:23:"LTI consumer is visible";s:8:"lti_read";s:25:"User can see LTI consumer";s:17:"lti_read_outcomes";s:60:"User can see learning experiences and ranking of other users";s:26:"lti_read_learning_progress";s:46:"User can view learning progress of other users";s:26:"lti_edit_learning_progress";s:40:"User can edit learning progress settings";s:8:"lti_copy";s:26:"User can copy LTI consumer";s:9:"lti_write";s:38:"User can edit settings of LTI consumer";s:10:"lti_delete";s:36:"User can move or delete LTI consumer";s:19:"lti_edit_permission";s:35:"User can change permission settings";s:15:"rbac_create_lti";s:19:"Create LTI Consumer";s:12:"cmix_visible";s:27:"xAPI/cmi5 Object is visible";s:9:"cmix_read";s:29:"User can see xAPI/cmi5 Object";s:18:"cmix_read_outcomes";s:60:"User can see learning experiences and ranking of other users";s:27:"cmix_read_learning_progress";s:46:"User can view learning progress of other users";s:27:"cmix_edit_learning_progress";s:40:"User can edit learning progress settings";s:9:"cmix_copy";s:30:"User can copy xAPI/cmi5 Object";s:10:"cmix_write";s:42:"User can edit settings of xAPI/cmi5 Object";s:11:"cmix_delete";s:40:"User can move or delete xAPI/cmi5 Object";s:20:"cmix_edit_permission";s:35:"User can change permission settings";s:16:"rbac_create_cmix";s:23:"Create xAPI/cmi5 Object";s:9:"prgr_copy";s:39:"User can copy links to study programmes";s:11:"prgr_delete";s:49:"User can move or delete links to study programmes";s:20:"prgr_edit_permission";s:35:"User can change permission settings";s:12:"prgr_visible";s:53:"Links to study programmes are visible and can be used";s:10:"prgr_write";s:51:"User can edit settings of links to study programmes";s:16:"rbac_create_prgr";s:30:"Create link to study programme";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'rcat'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:1:{s:9:"rcat_call";s:17:"Call ECS Category";}'))); @@ -34688,7 +34691,7 @@ function setupILIASDatabase() 'module' => array('text', 'scov'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:4:{s:11:"crsv_create";s:24:"Create SCORM Certificate";s:16:"crsv_create_info";s:67:"Select a completed learning module to generate a certificate for it";s:11:"scov_create";s:24:"Create SCORM Certificate";s:16:"scov_create_info";s:64:"Select a completed SCORM module to generate a certificate for it";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'search'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:133:{s:18:"add_members_header";s:11:"Add Members";s:19:"adv_md_search_title";s:27:"Search in Extended Metadata";s:14:"append_results";s:14:"Append results";s:18:"last_search_result";s:18:"Last Search Result";s:21:"lucene_activate_field";s:15:"Activate Search";s:30:"lucene_advanced_settings_table";s:15:"Search Settings";s:24:"lucene_advanced_settings";s:15:"Advanced Search";s:22:"lucene_all_occurrences";s:26:"... %s other occurrence(s)";s:10:"lucene_and";s:3:"AND";s:10:"lucene_cpu";s:25:"Maximum Number of Threads";s:17:"lucene_create_ini";s:25:"Create Configuration File";s:28:"lucene_default_operator_info";s:196:"Please choose the default operator for boolean queries. In default mode (‘AND’) terms are considered to be in conjunction. In ‘OR’ mode terms without any modifiers are considered optional.";s:23:"lucene_default_operator";s:16:"Default Operator";s:19:"lucene_download_ini";s:27:"Download Configuration File";s:20:"lucene_err_ampersand";s:81:"Queries containing the special characters && must be in the form: term1 && term2.";s:21:"lucene_err_and_or_not";s:82:"Queries containing AND/OR/NOT must be in the form: term1 AND|OR|NOT|AND NOT term2.";s:19:"lucene_err_asterisk";s:79:"The wildcard (*) character must be preceded by at least one alphabet or number.";s:16:"lucene_err_caret";s:92:"The caret (^) character must be preceded by alphanumeric characters and followed by numbers.";s:16:"lucene_err_colon";s:123:"Field declarations (:) must be preceded by at least one alphabet or number and followed by at least one alphabet or number.";s:27:"lucene_err_exclamation_mark";s:80:"Queries containing the special character (!) must be in the form: term1 ! term2.";s:28:"lucene_err_parenthesis_empty";s:48:"Parentheses must contain at least one character.";s:33:"lucene_err_parenthesis_not_closed";s:27:"Parentheses must be closed.";s:21:"lucene_err_plus_minus";s:74:"(+) and (-) modifiers must be followed by at least one alphabet or number.";s:24:"lucene_err_question_mark";s:84:"The question mark (?) character must be preceded by at least one alphabet or number.";s:27:"lucene_err_quotes_not_empty";s:47:"Quotes (") must contain at least one character.";s:17:"lucene_err_quotes";s:33:"Please close all quote (") marks.";s:23:"lucene_general_settings";s:16:"General Settings";s:16:"lucene_host_info";s:60:"Please enter the hostname or Ip-address for the java server.";s:11:"lucene_host";s:4:"Host";s:22:"lucene_index_path_info";s:54:"Please enter a directory name for storing index files.";s:17:"lucene_index_path";s:25:"Directory for Index Files";s:27:"lucene_last_index_time_info";s:71:"Please modify this settings only if you have installed an index backup.";s:22:"lucene_last_index_time";s:21:"Last Index Generation";s:12:"lucene_level";s:9:"Log-Level";s:15:"lucene_log_info";s:134:"Enter the absolute path to a file in which log messages will we written. If the file does not exist, it will be created automatically.";s:10:"lucene_log";s:15:"Path to Logfile";s:19:"lucene_max_sub_info";s:102:"Please enter maximum number of sub-items (Forum threads, Glossary terms...) that are shown by default.";s:14:"lucene_max_sub";s:19:"Number of Sub-items";s:21:"lucene_more_hits_link";s:15:"%s more hits...";s:20:"lucene_num_frag_info";s:63:"Please choose the maximum number of highlighted text fragments.";s:20:"lucene_num_fragments";s:24:"Number of Text Fragments";s:9:"lucene_or";s:2:"OR";s:11:"lucene_port";s:4:"Port";s:22:"lucene_relevance_short";s:9:"Relevance";s:16:"lucene_relevance";s:27:"Relevance of Search Results";s:19:"lucene_settings_tab";s:6:"Lucene";s:21:"lucene_settings_title";s:15:"Lucene Settings";s:26:"lucene_show_relevance_info";s:132:"Search results are sorted by their relevance. If activated, the relevance is shown as additional information for each search result.";s:21:"lucene_show_relevance";s:14:"Show Relevance";s:21:"lucene_size_frag_info";s:61:"Please choose the maximum size of highlighted text fragments.";s:21:"lucene_size_fragments";s:22:"Size of Text Fragments";s:21:"lucene_tbl_create_ini";s:27:"Create Java-Server Ini-File";s:13:"search_adv_md";s:17:"Extended Metadata";s:15:"search_advanced";s:15:"Advanced Search";s:16:"search_all_words";s:37:"All words (AND)";s:15:"search_any_word";s:35:"Any word (OR)";s:10:"search_any";s:9:"-- Any --";s:16:"search_area_info";s:52:"Please select an area where the search should start.";s:11:"search_area";s:4:"Area";s:27:"search_auto_complete_length";s:36:"Number of Auto Complete List Entries";s:25:"search_choose_object_type";s:30:"Please choose one object type.";s:14:"search_content";s:12:"Page Content";s:16:"search_crs_title";s:11:"Course Name";s:19:"search_details_info";s:58:"Detailed search. Please select one or more resource types.";s:13:"search_direct";s:13:"Direct search";s:16:"search_fast_info";s:64:"Search for titles, descriptions and keywords in all object types";s:22:"search_for_crs_members";s:18:"Search for Courses";s:22:"search_for_grp_members";s:17:"Search for Groups";s:23:"search_for_role_members";s:16:"Search for Roles";s:16:"search_for_users";s:16:"Search for users";s:16:"search_full_info";s:55:"Choose this option to search in a large amount of data.";s:16:"search_grp_title";s:10:"Group Name";s:22:"search_hide_adv_search";s:20:"Hide Advanced Search";s:12:"search_index";s:14:"Indexed search";s:16:"search_like_info";s:39:"Choose this option to get best results.";s:20:"search_limit_reached";s:107:"Your search produced more than %s hits. You can restrict the search terms to receive more detailed results.";s:10:"search_lom";s:12:"LOM Metadata";s:13:"search_lucene";s:13:"Lucene search";s:20:"search_minimum_three";s:51:"Your search must be at least three characters long.";s:27:"search_no_connection_lucene";s:32:"Cannot connect to Lucene server.";s:20:"search_no_match_hint";s:228:"Your search for %s did not match any documents.

Suggestions:
• Make sure all words are spelled correctly.
• Try different keywords.
• Try more general keywords.
• Try fewer keywords.";s:15:"search_no_match";s:37:"Your search did not match any results";s:19:"search_no_selection";s:22:"You made no selection.";s:14:"search_results";s:14:"Search Results";s:17:"search_role_title";s:9:"Role Name";s:25:"search_select_search_area";s:18:"Select Search Area";s:23:"search_term_combination";s:11:"Combination";s:24:"search_title_description";s:19:"Title / Description";s:14:"search_tst_svy";s:13:"Tests/Surveys";s:11:"search_type";s:4:"Type";s:20:"search_user_extended";s:20:"Extended User Search";s:11:"search_user";s:5:"Users";s:12:"search_users";s:12:"Search Users";s:5:"until";s:5:"up to";s:23:"search_item_filter_form";s:14:"Search by Type";s:28:"search_item_filter_form_info";s:52:"Search can be restricted to the chosen object types.";s:13:"lucene_max_fs";s:25:"Maximum File Size (in MB)";s:18:"lucene_max_fs_info";s:76:"Defines the file size limit. Bigger files will not be included in the index.";s:25:"search_err_user_not_exist";s:43:"A user with that login name does not exist.";s:21:"lucene_offline_filter";s:13:"Online-Status";s:20:"search_option_online";s:6:"Online";s:21:"search_option_offline";s:7:"Offline";s:21:"search_filter_by_type";s:14:"Filter by Type";s:10:"search_off";s:3:"Off";s:37:"search_add_members_from_container_grp";s:26:"Add Users of Current Group";s:37:"search_add_members_from_container_crs";s:27:"Add Users of Current Course";s:15:"search_mime_pdf";s:9:"PDF Files";s:16:"search_mime_word";s:10:"Word Files";s:17:"search_mime_excel";s:11:"Excel Files";s:22:"search_mime_powerpoint";s:16:"Powerpoint Files";s:17:"search_mime_image";s:6:"Images";s:25:"lucene_show_sub_relevance";s:23:"Show Sub-Item Relevance";s:23:"search_mime_filter_form";s:16:"Mime Type Filter";s:28:"search_mime_filter_form_info";s:50:"Search can be restricted to the chosen mime types.";s:22:"lucene_prefix_wildcard";s:23:"Prefix Wildcard Queries";s:27:"lucene_prefix_wildcard_info";s:63:"Supports prefix wildcard queries: ‘*LIAS’ finds ‘ILIAS’";s:23:"search_user_search_form";s:27:"Search in Personal Profiles";s:28:"search_user_search_info_form";s:82:"Data in personal profiles of users is indexed and can be used to search for users.";s:19:"search_minimum_info";s:47:"Your search must be at least %s characters long";s:25:"search_show_inactive_user";s:19:"Show Inactive Users";s:30:"search_show_inactive_user_info";s:58:"If enabled, the user search will show inactive users, too.";s:24:"search_show_limited_user";s:30:"Show Users with Limited Access";s:29:"search_show_limited_user_info";s:103:"If enabled, the user search will also show users with limited access outside their allowed time period.";s:16:"search_filter_cd";s:23:"Filter by Creation Date";s:21:"search_created_before";s:25:"Objects created before...";s:20:"search_created_after";s:21:"Objects created after";s:17:"search_created_on";s:20:"Objects create on...";s:17:"search_newer_than";s:18:"Objects newer than";s:19:"search_cdate_filter";s:23:"Filter by Creation Date";s:24:"search_cdate_filter_info";s:82:"If enabled, the object search can be filtered by an optional creation date filter.";s:10:"btn_search";s:6:"Search";s:23:"search_for_orgu_members";s:31:"Search for Organisational Units";s:11:"select_orgu";s:27:"Select Organisational Units";}'))); +'module' => array('text', 'search'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:135:{s:18:"add_members_header";s:11:"Add Members";s:12:"search_field";s:18:"Search Input Field";s:19:"adv_md_search_title";s:27:"Search in Extended Metadata";s:14:"append_results";s:14:"Append results";s:18:"last_search_result";s:18:"Last Search Result";s:21:"lucene_activate_field";s:15:"Activate Search";s:30:"lucene_advanced_settings_table";s:15:"Search Settings";s:24:"lucene_advanced_settings";s:15:"Advanced Search";s:22:"lucene_all_occurrences";s:26:"... %s other occurrence(s)";s:10:"lucene_and";s:3:"AND";s:10:"lucene_cpu";s:25:"Maximum Number of Threads";s:17:"lucene_create_ini";s:25:"Create Configuration File";s:28:"lucene_default_operator_info";s:196:"Please choose the default operator for boolean queries. In default mode (‘AND’) terms are considered to be in conjunction. In ‘OR’ mode terms without any modifiers are considered optional.";s:23:"lucene_default_operator";s:16:"Default Operator";s:19:"lucene_download_ini";s:27:"Download Configuration File";s:20:"lucene_err_ampersand";s:81:"Queries containing the special characters && must be in the form: term1 && term2.";s:21:"lucene_err_and_or_not";s:82:"Queries containing AND/OR/NOT must be in the form: term1 AND|OR|NOT|AND NOT term2.";s:19:"lucene_err_asterisk";s:79:"The wildcard (*) character must be preceded by at least one alphabet or number.";s:16:"lucene_err_caret";s:92:"The caret (^) character must be preceded by alphanumeric characters and followed by numbers.";s:16:"lucene_err_colon";s:123:"Field declarations (:) must be preceded by at least one alphabet or number and followed by at least one alphabet or number.";s:27:"lucene_err_exclamation_mark";s:80:"Queries containing the special character (!) must be in the form: term1 ! term2.";s:28:"lucene_err_parenthesis_empty";s:48:"Parentheses must contain at least one character.";s:33:"lucene_err_parenthesis_not_closed";s:27:"Parentheses must be closed.";s:21:"lucene_err_plus_minus";s:74:"(+) and (-) modifiers must be followed by at least one alphabet or number.";s:24:"lucene_err_question_mark";s:84:"The question mark (?) character must be preceded by at least one alphabet or number.";s:27:"lucene_err_quotes_not_empty";s:47:"Quotes (") must contain at least one character.";s:17:"lucene_err_quotes";s:33:"Please close all quote (") marks.";s:23:"lucene_general_settings";s:16:"General Settings";s:16:"lucene_host_info";s:60:"Please enter the hostname or Ip-address for the java server.";s:11:"lucene_host";s:4:"Host";s:22:"lucene_index_path_info";s:54:"Please enter a directory name for storing index files.";s:17:"lucene_index_path";s:25:"Directory for Index Files";s:27:"lucene_last_index_time_info";s:71:"Please modify this settings only if you have installed an index backup.";s:22:"lucene_last_index_time";s:21:"Last Index Generation";s:12:"lucene_level";s:9:"Log-Level";s:15:"lucene_log_info";s:134:"Enter the absolute path to a file in which log messages will we written. If the file does not exist, it will be created automatically.";s:10:"lucene_log";s:15:"Path to Logfile";s:19:"lucene_max_sub_info";s:102:"Please enter maximum number of sub-items (Forum threads, Glossary terms...) that are shown by default.";s:14:"lucene_max_sub";s:19:"Number of Sub-items";s:21:"lucene_more_hits_link";s:15:"%s more hits...";s:20:"lucene_num_frag_info";s:63:"Please choose the maximum number of highlighted text fragments.";s:20:"lucene_num_fragments";s:24:"Number of Text Fragments";s:9:"lucene_or";s:2:"OR";s:11:"lucene_port";s:4:"Port";s:22:"lucene_relevance_short";s:9:"Relevance";s:16:"lucene_relevance";s:27:"Relevance of Search Results";s:19:"lucene_settings_tab";s:6:"Lucene";s:21:"lucene_settings_title";s:15:"Lucene Settings";s:26:"lucene_show_relevance_info";s:132:"Search results are sorted by their relevance. If activated, the relevance is shown as additional information for each search result.";s:21:"lucene_show_relevance";s:14:"Show Relevance";s:21:"lucene_size_frag_info";s:61:"Please choose the maximum size of highlighted text fragments.";s:21:"lucene_size_fragments";s:22:"Size of Text Fragments";s:21:"lucene_tbl_create_ini";s:27:"Create Java-Server Ini-File";s:13:"search_adv_md";s:17:"Extended Metadata";s:15:"search_advanced";s:15:"Advanced Search";s:16:"search_all_words";s:37:"All words (AND)";s:15:"search_any_word";s:35:"Any word (OR)";s:10:"search_any";s:9:"-- Any --";s:16:"search_area_info";s:52:"Please select an area where the search should start.";s:11:"search_area";s:4:"Area";s:27:"search_auto_complete_length";s:36:"Number of Auto Complete List Entries";s:25:"search_choose_object_type";s:30:"Please choose one object type.";s:14:"search_content";s:12:"Page Content";s:16:"search_crs_title";s:11:"Course Name";s:19:"search_details_info";s:58:"Detailed search. Please select one or more resource types.";s:13:"search_direct";s:13:"Direct search";s:16:"search_fast_info";s:64:"Search for titles, descriptions and keywords in all object types";s:22:"search_for_crs_members";s:18:"Search for Courses";s:22:"search_for_grp_members";s:17:"Search for Groups";s:23:"search_for_role_members";s:16:"Search for Roles";s:16:"search_for_users";s:16:"Search for users";s:16:"search_full_info";s:55:"Choose this option to search in a large amount of data.";s:16:"search_grp_title";s:10:"Group Name";s:22:"search_hide_adv_search";s:20:"Hide Advanced Search";s:12:"search_index";s:14:"Indexed search";s:16:"search_like_info";s:39:"Choose this option to get best results.";s:20:"search_limit_reached";s:107:"Your search produced more than %s hits. You can restrict the search terms to receive more detailed results.";s:10:"search_lom";s:12:"LOM Metadata";s:13:"search_lucene";s:13:"Lucene search";s:20:"search_minimum_three";s:51:"Your search must be at least three characters long.";s:27:"search_no_connection_lucene";s:32:"Cannot connect to Lucene server.";s:20:"search_no_match_hint";s:228:"Your search for %s did not match any documents.

Suggestions:
• Make sure all words are spelled correctly.
• Try different keywords.
• Try more general keywords.
• Try fewer keywords.";s:15:"search_no_match";s:37:"Your search did not match any results";s:19:"search_no_selection";s:22:"You made no selection.";s:14:"search_results";s:14:"Search Results";s:17:"search_role_title";s:9:"Role Name";s:25:"search_select_search_area";s:18:"Select Search Area";s:23:"search_term_combination";s:11:"Combination";s:24:"search_title_description";s:19:"Title / Description";s:14:"search_tst_svy";s:13:"Tests/Surveys";s:11:"search_type";s:4:"Type";s:20:"search_user_extended";s:20:"Extended User Search";s:11:"search_user";s:5:"Users";s:12:"search_users";s:12:"Search Users";s:5:"until";s:5:"up to";s:23:"search_item_filter_form";s:14:"Search by Type";s:28:"search_item_filter_form_info";s:52:"Search can be restricted to the chosen object types.";s:13:"lucene_max_fs";s:25:"Maximum File Size (in MB)";s:18:"lucene_max_fs_info";s:76:"Defines the file size limit. Bigger files will not be included in the index.";s:25:"search_err_user_not_exist";s:43:"A user with that login name does not exist.";s:21:"lucene_offline_filter";s:13:"Online-Status";s:20:"search_option_online";s:6:"Online";s:21:"search_option_offline";s:7:"Offline";s:21:"search_filter_by_type";s:14:"Filter by Type";s:10:"search_off";s:3:"Off";s:9:"search_on";s:2:"On";s:37:"search_add_members_from_container_grp";s:26:"Add Users of Current Group";s:37:"search_add_members_from_container_crs";s:27:"Add Users of Current Course";s:15:"search_mime_pdf";s:9:"PDF Files";s:16:"search_mime_word";s:10:"Word Files";s:17:"search_mime_excel";s:11:"Excel Files";s:22:"search_mime_powerpoint";s:16:"Powerpoint Files";s:17:"search_mime_image";s:6:"Images";s:25:"lucene_show_sub_relevance";s:23:"Show Sub-Item Relevance";s:23:"search_mime_filter_form";s:16:"Mime Type Filter";s:28:"search_mime_filter_form_info";s:50:"Search can be restricted to the chosen mime types.";s:22:"lucene_prefix_wildcard";s:23:"Prefix Wildcard Queries";s:27:"lucene_prefix_wildcard_info";s:63:"Supports prefix wildcard queries: ‘*LIAS’ finds ‘ILIAS’";s:23:"search_user_search_form";s:27:"Search in Personal Profiles";s:28:"search_user_search_info_form";s:82:"Data in personal profiles of users is indexed and can be used to search for users.";s:19:"search_minimum_info";s:47:"Your search must be at least %s characters long";s:25:"search_show_inactive_user";s:19:"Show Inactive Users";s:30:"search_show_inactive_user_info";s:58:"If enabled, the user search will show inactive users, too.";s:24:"search_show_limited_user";s:30:"Show Users with Limited Access";s:29:"search_show_limited_user_info";s:103:"If enabled, the user search will also show users with limited access outside their allowed time period.";s:16:"search_filter_cd";s:23:"Filter by Creation Date";s:21:"search_created_before";s:25:"Objects created before...";s:20:"search_created_after";s:21:"Objects created after";s:17:"search_created_on";s:20:"Objects create on...";s:17:"search_newer_than";s:18:"Objects newer than";s:19:"search_cdate_filter";s:23:"Filter by Creation Date";s:24:"search_cdate_filter_info";s:82:"If enabled, the object search can be filtered by an optional creation date filter.";s:10:"btn_search";s:6:"Search";s:23:"search_for_orgu_members";s:31:"Search for Organisational Units";s:11:"select_orgu";s:27:"Select Organisational Units";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'sess'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:84:{s:10:"sess_title";s:16:"Title of Session";s:31:"sess_participation_refused_info";s:52:"Your participation for this event has been canceled.";s:14:"sess_bt_refuse";s:18:"Cannot Participate";s:23:"sess_part_table_excused";s:7:"Excused";s:12:"notification";s:12:"Notification";s:30:"sess_registration_notification";s:12:"Notification";s:35:"sess_registration_notification_info";s:99:"Shows column in tab \'Participants\' to select users being notified about new or leaving participants";s:24:"sess_notification_option";s:6:"Option";s:32:"sess_notification_option_inherit";s:19:"Inherit from Parent";s:37:"sess_notification_option_inherit_info";s:114:"Use the parent notification settings (e.g. notification settings from course or group) for members of this session";s:31:"sess_notification_option_manual";s:12:"Set manually";s:36:"sess_notification_option_manual_info";s:75:"Notification setting for users has to be set manually in tab \'Participants\'";s:19:"sess_mem_tbl_header";s:20:"Session Participants";s:13:"objs_crs_role";s:12:"Course Roles";s:13:"objs_grp_role";s:11:"Group Roles";s:27:"sess_part_filter_registered";s:15:"Only Registered";s:29:"sess_part_filter_participated";s:13:"Only Attended";s:15:"sess_print_list";s:13:"Generate List";s:11:"sess_import";s:14:"Import Session";s:24:"sess_members_print_title";s:20:"Session Participants";s:9:"sess_copy";s:12:"Copy Session";s:37:"sess_mail_permanent_link_participants";s:68:"Click on the following link to edit the participants of the session:";s:24:"sess_mail_permanent_link";s:90:"Click on the following link to find all of the information you need regarding the session:";s:13:"sess_reg_type";s:23:" Registration Procedure";s:15:"sess_reg_direct";s:21:"Declare Participation";s:20:"sess_reg_direct_info";s:56:"User has to click ‘Attend’ to participate in session";s:16:"sess_reg_request";s:23:"Apply for Participation";s:17:"sess_reg_disabled";s:25:"No Registration Necessary";s:21:"sess_reg_request_info";s:83:"An administrator has to decide upon each user\'s apply for participating in session.";s:22:"sess_reg_disabled_info";s:56:"Users do not need to register to participate in session.";s:26:"sess_reg_max_members_short";s:17:"Number of Members";s:20:"sess_reg_max_members";s:25:"Limited Number of Members";s:25:"sess_reg_max_members_info";s:67:"Define the maximum number of users that can participate in session.";s:21:"sess_reg_waiting_list";s:12:"Waiting List";s:16:"sess_section_reg";s:21:"Registration Settings";s:32:"sess_setting_header_presentation";s:12:"Presentation";s:16:"sess_users_added";s:42:"Registered selected users for the session.";s:27:"sess_users_already_assigned";s:48:"The user is already registered for this session.";s:28:"sess_users_removed_from_list";s:59:"The selected users have been removed from the waiting list.";s:28:"sess_msg_applicants_assigned";s:36:"Applicant(s) registered for session.";s:27:"sess_msg_applicants_removed";s:31:"Applicant(s) removed from list.";s:23:"sess_registered_confirm";s:117:"Participation requires confirmation by an administrator. You will be notified when your application has been handled.";s:27:"sess_reg_max_users_exceeded";s:78:"A registration is not possible, since the maximum number of users id exceeded.";s:30:"sess_reg_max_users_exceeded_wl";s:69:"The maximum number of users for this session appointment is exceeded.";s:20:"sess_reg_added_to_wl";s:40:"You have been added to the waiting list.";s:21:"sess_mail_sub_dec_sub";s:37:"Registration refused for session "%s"";s:21:"sess_mail_sub_dec_bod";s:74:"we regret to say that your registration has been refused for session "%s".";s:21:"sess_mail_sub_acc_sub";s:29:"Registration for Session "%s"";s:21:"sess_mail_sub_acc_bod";s:42:"you have been registered for session "%s".";s:14:"sess_lp_preset";s:26:"Activate Learning Progress";s:19:"sess_lp_preset_info";s:69:"Activates the learning progress for all session events to be created.";s:26:"sess_reg_waiting_list_none";s:4:"None";s:33:"sess_reg_waiting_list_no_autofill";s:17:"Without Auto-Fill";s:38:"sess_reg_waiting_list_no_autofill_info";s:95:"If the maximum number of users is exceeded, new registrations will be placed on a waiting list.";s:30:"sess_reg_waiting_list_autofill";s:14:"With Auto-Fill";s:35:"sess_reg_waiting_list_autofill_info";s:190:"Participants are recruited from the waiting list automatically on cancellations. This should not be used with the "Apply for Participation" registration procedure as autofill will bypass it.";s:23:"sess_max_members_needed";s:67:"A maximum number of members is needed for the waiting list feature.";s:26:"sess_list_reg_limit_places";s:11:"Free places";s:19:"sess_accept_request";s:20:"Accept Participation";s:22:"sess_new_registrations";s:12:"Join Request";s:9:"sess_open";s:12:"Open Session";s:21:"sess_filter_all_types";s:9:"All types";s:24:"sess_filter_not_assigned";s:12:"Not Assigned";s:16:"sess_is_assigned";s:11:"is Assigned";s:17:"sess_show_members";s:17:"Show Participants";s:27:"sess_show_participants_info";s:69:"If activated, session participants can access the participant gallery";s:26:"sess_member_administration";s:17:"Edit Participants";s:20:"sess_members_gallery";s:15:"Session Gallery";s:35:"sess_mail_context_participant_title";s:29:"Session: Mail to Participants";s:34:"sess_mail_context_participant_info";s:90:"For the participant e-mails on the participants and learning progress screens of a session";s:15:"mail_sess_roles";s:26:"Send Mail to Session Roles";s:22:"send_mail_participants";s:27:"All Participants of Session";s:19:"il_sess_participant";s:20:"Session Participants";s:14:"sess_mail_type";s:20:"Mail to Participants";s:21:"sess_mail_admins_only";s:23:"For Administrators only";s:26:"sess_mail_admins_only_info";s:97:"Only administrators can use the feature ‘Mail to Participants’ in the ‘Participants’ tab.";s:13:"sess_mail_all";s:20:"For all Participants";s:18:"sess_mail_all_info";s:94:"All participants can use the feature ‘Mail to Participants’ in the ‘Participants’ tab.";s:12:"sess_contact";s:7:"Contact";s:17:"sess_mem_contacts";s:16:"Tutorial Support";s:12:"sess_members";s:12:"Participants";s:22:"sess_material_assigned";s:8:"Assigned";s:26:"sess_material_not_assigned";s:12:"Not Assigned";s:11:"sess_assign";s:6:"Assign";}'))); @@ -34778,7 +34781,7 @@ function setupILIASDatabase() 'module' => array('text', 'cond'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:1:{s:25:"cond_under_parent_control";s:57:"Preconditions are under the control of the parent object.";}'))); $ilDB->insert("lng_modules", array( -'module' => array('text', 'mme'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:76:{s:4:"main";s:9:"Main Menu";s:15:"subtab_topitems";s:9:"Top Items";s:15:"subtab_subitems";s:5:"Items";s:8:"tab_back";s:4:"Back";s:11:"topitem_add";s:12:"Add Top Item";s:7:"restore";s:15:"Reset Main Menu";s:19:"msg_restore_confirm";s:135:"All Custom Items and Translations will be deleted, all Standard items will be reset to factory default. All customization will be lost.";s:12:"msg_restored";s:26:"Main Menu completely reset";s:12:"topitem_edit";s:4:"Edit";s:14:"topitem_delete";s:6:"Delete";s:17:"topitem_translate";s:9:"Translate";s:16:"topitem_position";s:8:"Position";s:13:"topitem_title";s:5:"Title";s:14:"topitem_active";s:6:"Active";s:18:"topitem_subentries";s:5:"Items";s:16:"topitem_provider";s:8:"Provider";s:15:"topitem_actions";s:7:"Actions";s:19:"topitem_type_parent";s:8:"Top Item";s:17:"topitem_type_link";s:4:"Link";s:21:"topitem_title_default";s:24:"Title (Default Language)";s:28:"topitem_title_default_byline";s:66:"Other Translations can be added with the Translation Action after.";s:21:"topitem_active_byline";s:37:"Activate this Top Item for all users.";s:12:"topitem_type";s:4:"Type";s:19:"topitem_type_byline";s:53:"Top Items can be links directly or can contain Items.";s:12:"topitem_icon";s:4:"Icon";s:19:"topitem_icon_byline";s:84:"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.";s:11:"subitem_add";s:8:"Add Item";s:12:"subitem_edit";s:4:"Edit";s:14:"subitem_delete";s:6:"Delete";s:17:"subitem_translate";s:9:"Translate";s:10:"sub_parent";s:8:"Top Item";s:12:"sub_position";s:8:"Position";s:9:"sub_title";s:5:"Title";s:8:"sub_type";s:4:"Type";s:10:"sub_active";s:6:"Active";s:10:"sub_status";s:6:"Status";s:12:"sub_provider";s:8:"Provider";s:11:"sub_actions";s:7:"Actions";s:8:"sub_icon";s:4:"Icon";s:15:"sub_icon_byline";s:84:"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.";s:11:"button_save";s:4:"Save";s:19:"table_show_inactive";s:13:"Show inactive";s:17:"sub_title_default";s:24:"Title (Default Language)";s:24:"sub_title_default_byline";s:66:"Additional languages can be added via the action link "Translate".";s:15:"sub_type_byline";s:66:"Specific type for the Item additional configuration may be needed.";s:17:"sub_active_byline";s:33:"Activate this Item for all users.";s:13:"add_languages";s:12:"Add Language";s:19:"mm_translation_lang";s:8:"Language";s:20:"mm_translation_trans";s:11:"Translation";s:16:"additional_langs";s:20:"Additional Languages";s:19:"msg_languages_added";s:15:"Added languages";s:22:"msg_translations_saved";s:18:"Translations saved";s:24:"msg_translations_deleted";s:20:"Translations deleted";s:14:"topitem_css_id";s:6:"CSS-ID";s:17:"err_uri_not_valid";s:26:"Please provide a valid URL";s:9:"type_lost";s:4:"Lost";s:20:"component_not_active";s:27:"Component is not activated.";s:26:"item_must_be_always_active";s:20:"Item must be active.";s:19:"msg_subitem_deleted";s:13:"Item deleted.";s:19:"msg_topitem_deleted";s:13:"Item deleted.";s:22:"subitem_confirm_delete";s:48:"Do you really want to delete the following Item?";s:22:"topitem_confirm_delete";s:48:"Do you really want to delete the following Item?";s:14:"field_external";s:13:"External Link";s:19:"field_external_info";s:42:"Link will be opnened in a separate Window.";s:9:"field_url";s:3:"URL";s:14:"field_url_info";s:47:"Link to the desired website, lead by http(s)://";s:12:"field_ref_id";s:18:"ILIAS Reference-ID";s:17:"field_ref_id_info";s:131:"The Reference-ID of the desired ILIAS-Object from the Repository, you find the Reference-ID in the URL of a object (...?ref_id=123)";s:20:"type_top_parent_item";s:9:"Container";s:18:"type_top_link_item";s:4:"Link";s:14:"type_separator";s:9:"Separator";s:19:"type_separator_info";s:118:"The title of this item will be displayed in a grey banner. If you do not enter any title, a simple line will be shown.";s:9:"type_link";s:4:"Link";s:14:"type_link_list";s:9:"Link List";s:12:"type_complex";s:7:"Complex";s:20:"type_repository_link";s:15:"Repository-Link";}'))); +'module' => array('text', 'mme'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:78:{s:5:"flush";s:17:"Remove Lost Items";s:19:"msg_subitem_flushed";s:19:"Lost Items removed.";s:4:"main";s:9:"Main Menu";s:15:"subtab_topitems";s:9:"Top Items";s:15:"subtab_subitems";s:5:"Items";s:8:"tab_back";s:4:"Back";s:11:"topitem_add";s:12:"Add Top Item";s:7:"restore";s:15:"Reset Main Menu";s:19:"msg_restore_confirm";s:135:"All Custom Items and Translations will be deleted, all Standard items will be reset to factory default. All customization will be lost.";s:12:"msg_restored";s:26:"Main Menu completely reset";s:12:"topitem_edit";s:4:"Edit";s:14:"topitem_delete";s:6:"Delete";s:17:"topitem_translate";s:9:"Translate";s:16:"topitem_position";s:8:"Position";s:13:"topitem_title";s:5:"Title";s:14:"topitem_active";s:6:"Active";s:18:"topitem_subentries";s:5:"Items";s:16:"topitem_provider";s:8:"Provider";s:15:"topitem_actions";s:7:"Actions";s:19:"topitem_type_parent";s:8:"Top Item";s:17:"topitem_type_link";s:4:"Link";s:21:"topitem_title_default";s:24:"Title (Default Language)";s:28:"topitem_title_default_byline";s:66:"Other Translations can be added with the Translation Action after.";s:21:"topitem_active_byline";s:37:"Activate this Top Item for all users.";s:12:"topitem_type";s:4:"Type";s:19:"topitem_type_byline";s:53:"Top Items can be links directly or can contain Items.";s:12:"topitem_icon";s:4:"Icon";s:19:"topitem_icon_byline";s:84:"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.";s:11:"subitem_add";s:8:"Add Item";s:12:"subitem_edit";s:4:"Edit";s:14:"subitem_delete";s:6:"Delete";s:17:"subitem_translate";s:9:"Translate";s:10:"sub_parent";s:8:"Top Item";s:12:"sub_position";s:8:"Position";s:9:"sub_title";s:5:"Title";s:8:"sub_type";s:4:"Type";s:10:"sub_active";s:6:"Active";s:10:"sub_status";s:6:"Status";s:12:"sub_provider";s:8:"Provider";s:11:"sub_actions";s:7:"Actions";s:8:"sub_icon";s:4:"Icon";s:15:"sub_icon_byline";s:84:"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.";s:11:"button_save";s:4:"Save";s:19:"table_show_inactive";s:13:"Show inactive";s:17:"sub_title_default";s:24:"Title (Default Language)";s:24:"sub_title_default_byline";s:66:"Additional languages can be added via the action link "Translate".";s:15:"sub_type_byline";s:66:"Specific type for the Item additional configuration may be needed.";s:17:"sub_active_byline";s:33:"Activate this Item for all users.";s:13:"add_languages";s:12:"Add Language";s:19:"mm_translation_lang";s:8:"Language";s:20:"mm_translation_trans";s:11:"Translation";s:16:"additional_langs";s:20:"Additional Languages";s:19:"msg_languages_added";s:15:"Added languages";s:22:"msg_translations_saved";s:18:"Translations saved";s:24:"msg_translations_deleted";s:20:"Translations deleted";s:14:"topitem_css_id";s:6:"CSS-ID";s:17:"err_uri_not_valid";s:26:"Please provide a valid URL";s:9:"type_lost";s:4:"Lost";s:20:"component_not_active";s:27:"Component is not activated.";s:26:"item_must_be_always_active";s:20:"Item must be active.";s:19:"msg_subitem_deleted";s:13:"Item deleted.";s:19:"msg_topitem_deleted";s:13:"Item deleted.";s:22:"subitem_confirm_delete";s:48:"Do you really want to delete the following Item?";s:22:"topitem_confirm_delete";s:48:"Do you really want to delete the following Item?";s:14:"field_external";s:13:"External Link";s:19:"field_external_info";s:42:"Link will be opnened in a separate Window.";s:9:"field_url";s:3:"URL";s:14:"field_url_info";s:47:"Link to the desired website, lead by http(s)://";s:12:"field_ref_id";s:18:"ILIAS Reference-ID";s:17:"field_ref_id_info";s:131:"The Reference-ID of the desired ILIAS-Object from the Repository, you find the Reference-ID in the URL of a object (...?ref_id=123)";s:20:"type_top_parent_item";s:9:"Container";s:18:"type_top_link_item";s:4:"Link";s:14:"type_separator";s:9:"Separator";s:19:"type_separator_info";s:118:"The title of this item will be displayed in a grey banner. If you do not enter any title, a simple line will be shown.";s:9:"type_link";s:4:"Link";s:14:"type_link_list";s:9:"Link List";s:12:"type_complex";s:7:"Complex";s:20:"type_repository_link";s:15:"Repository-Link";}'))); $ilDB->insert("lng_modules", array( 'module' => array('text', 'like'), 'lang_key' => array('text', 'en'), 'lang_array' => array('clob', 'a:2:{s:8:"reaction";s:8:"Reaction";s:4:"like";s:4:"Like";}'))); @@ -39198,7 +39201,7 @@ function setupILIASDatabase() 'obj_id' => array('integer', '37'), 'type' => array('text', 'typ'), 'title' => array('text', 'frm'), 'description' => array('text', 'Forum object'), 'owner' => array('integer', '-1'), 'create_date' => array('timestamp', '2002-07-15 15:54:22'), 'last_update' => array('timestamp', '2003-08-15 12:36:40'), 'import_id' => array('text', ''), 'offline' => array('integer', ''))); $ilDB->insert("object_data", array( -'obj_id' => array('integer', '70'), 'type' => array('text', 'lng'), 'title' => array('text', 'en'), 'description' => array('text', 'installed'), 'owner' => array('integer', '-1'), 'create_date' => array('timestamp', ''), 'last_update' => array('timestamp', '2020-11-27 18:33:52'), 'import_id' => array('text', ''), 'offline' => array('integer', ''))); +'obj_id' => array('integer', '70'), 'type' => array('text', 'lng'), 'title' => array('text', 'en'), 'description' => array('text', 'installed'), 'owner' => array('integer', '-1'), 'create_date' => array('timestamp', ''), 'last_update' => array('timestamp', '2021-02-05 14:17:06'), 'import_id' => array('text', ''), 'offline' => array('integer', ''))); $ilDB->insert("object_data", array( 'obj_id' => array('integer', '71'), 'type' => array('text', 'lng'), 'title' => array('text', 'de'), 'description' => array('text', 'not_installed'), 'owner' => array('integer', '6'), 'create_date' => array('timestamp', '2003-08-15 10:25:19'), 'last_update' => array('timestamp', '2015-12-22 16:29:24'), 'import_id' => array('text', ''), 'offline' => array('integer', ''))); @@ -41358,7 +41361,7 @@ function setupILIASDatabase() $pk_fields = array("map_id"); $ilDB->addPrimaryKey("pdfgen_map", $pk_fields); -$ilDB->createSequence("pdfgen_map", 5); +$ilDB->createSequence("pdfgen_map", 6); $ilDB->insert("pdfgen_map", array( 'map_id' => array('integer', '1'), 'service' => array('text', 'Test'), 'purpose' => array('text', 'PrintViewOfQuestions'), 'preferred' => array('text', 'PhantomJS'), 'selected' => array('text', 'PhantomJS'))); @@ -41372,6 +41375,9 @@ function setupILIASDatabase() $ilDB->insert("pdfgen_map", array( 'map_id' => array('integer', '4'), 'service' => array('text', 'Portfolio'), 'purpose' => array('text', 'ContentExport'), 'preferred' => array('text', 'PhantomJS'), 'selected' => array('text', 'PhantomJS'))); +$ilDB->insert("pdfgen_map", array( +'map_id' => array('integer', '5'), 'service' => array('text', 'Survey'), 'purpose' => array('text', 'Results'), 'preferred' => array('text', 'PhantomJS'), 'selected' => array('text', 'PhantomJS'))); + // // pdfgen_purposes @@ -41404,7 +41410,7 @@ function setupILIASDatabase() $pk_fields = array("purpose_id"); $ilDB->addPrimaryKey("pdfgen_purposes", $pk_fields); -$ilDB->createSequence("pdfgen_purposes", 5); +$ilDB->createSequence("pdfgen_purposes", 6); $ilDB->insert("pdfgen_purposes", array( 'purpose_id' => array('integer', '1'), 'service' => array('text', 'Test'), 'purpose' => array('text', 'PrintViewOfQuestions'))); @@ -41418,6 +41424,9 @@ function setupILIASDatabase() $ilDB->insert("pdfgen_purposes", array( 'purpose_id' => array('integer', '4'), 'service' => array('text', 'Portfolio'), 'purpose' => array('text', 'ContentExport'))); +$ilDB->insert("pdfgen_purposes", array( +'purpose_id' => array('integer', '5'), 'service' => array('text', 'Survey'), 'purpose' => array('text', 'Results'))); + // // pdfgen_renderer @@ -41500,7 +41509,7 @@ function setupILIASDatabase() $pk_fields = array("availability_id"); $ilDB->addPrimaryKey("pdfgen_renderer_avail", $pk_fields); -$ilDB->createSequence("pdfgen_renderer_avail", 11); +$ilDB->createSequence("pdfgen_renderer_avail", 13); $ilDB->insert("pdfgen_renderer_avail", array( 'availability_id' => array('integer', '1'), 'service' => array('text', 'Test'), 'purpose' => array('text', 'PrintViewOfQuestions'), 'renderer' => array('text', 'PhantomJS'))); @@ -41526,6 +41535,12 @@ function setupILIASDatabase() $ilDB->insert("pdfgen_renderer_avail", array( 'availability_id' => array('integer', '9'), 'service' => array('text', 'Test'), 'purpose' => array('text', 'UserResult'), 'renderer' => array('text', 'WkhtmlToPdf'))); +$ilDB->insert("pdfgen_renderer_avail", array( +'availability_id' => array('integer', '11'), 'service' => array('text', 'Survey'), 'purpose' => array('text', 'Results'), 'renderer' => array('text', 'PhantomJS'))); + +$ilDB->insert("pdfgen_renderer_avail", array( +'availability_id' => array('integer', '12'), 'service' => array('text', 'Survey'), 'purpose' => array('text', 'Results'), 'renderer' => array('text', 'WkhtmlToPdf'))); + // // personal_clipboard @@ -58187,7 +58202,7 @@ function setupILIASDatabase() 'module' => array('text', 'cmix'), 'keyword' => array('text', 'ilias_uuid'), 'value' => array('clob', 'f269323f-fa99-4102-81fa-2e6ee79d13e8'))); $ilDB->insert("settings", array( -'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_6'), 'value' => array('clob', '36'))); +'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_6'), 'value' => array('clob', '42'))); $ilDB->insert("settings", array( 'module' => array('text', 'common'), 'keyword' => array('text', 'ilfrmreadidx1'), 'value' => array('clob', '1'))); @@ -65873,7 +65888,7 @@ function setupILIASDatabase() ) ,"login" => array ( "notnull" => false - ,"length" => 80 + ,"length" => 190 ,"fixed" => false ,"type" => "text" ) diff --git a/setup/sql/ilias3.sql b/setup/sql/ilias3.sql index 34fc52be2f65..444fc43413dd 100644 --- a/setup/sql/ilias3.sql +++ b/setup/sql/ilias3.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.17 Distrib 10.3.25-MariaDB, for debian-linux-gnu (x86_64) +-- MySQL dump 10.18 Distrib 10.3.27-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: ilias_release -- ------------------------------------------------------ --- Server version 10.3.25-MariaDB-0+deb10u1 +-- Server version 10.3.27-MariaDB-0+deb10u1 -- -- Table structure for table `acc_access_key` @@ -5559,6 +5559,7 @@ INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammemembersgui','ilobjfilegui', INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammemembersgui','ilstudyprogrammemailmembersearchgui',''); INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammemembersgui','ilstudyprogrammechangeexpiredategui',''); INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammemembersgui','ilstudyprogrammechangedeadlinegui',''); +INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammemembersgui','ilformpropertydispatchgui',''); INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammegui','ilpermissiongui',''); INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammegui','ilinfoscreengui',''); INSERT INTO `ctrl_calls` VALUES ('ilobjstudyprogrammegui','ilcommonactiondispatchergui',''); @@ -5789,13 +5790,13 @@ INSERT INTO `ctrl_classfile` VALUES ('iltestpassoverviewtablegui','Modules/Test/ INSERT INTO `ctrl_classfile` VALUES ('iltestdynamicquestionsetstatistictablegui','Modules/Test/classes/tables/class.ilTestDynamicQuestionSetStatisticTableGUI.php','','','11'); INSERT INTO `ctrl_classfile` VALUES ('iltestpassdetailsoverviewtablegui','Modules/Test/classes/tables/class.ilTestPassDetailsOverviewTableGUI.php','','','12'); INSERT INTO `ctrl_classfile` VALUES ('iltestrandomquestionsetnonavailablepoolstablegui','Modules/Test/classes/tables/class.ilTestRandomQuestionSetNonAvailablePoolsTableGUI.php','','','13'); -INSERT INTO `ctrl_classfile` VALUES ('iltestquestionbrowsertablegui','Modules/Test/classes/tables/class.ilTestQuestionBrowserTableGUI.php','','','14'); -INSERT INTO `ctrl_classfile` VALUES ('ilassessmentfolderlogtablegui','Modules/Test/classes/tables/class.ilAssessmentFolderLogTableGUI.php','','','15'); +INSERT INTO `ctrl_classfile` VALUES ('ilassessmentfolderlogtablegui','Modules/Test/classes/tables/class.ilAssessmentFolderLogTableGUI.php','','','14'); +INSERT INTO `ctrl_classfile` VALUES ('iltestquestionbrowsertablegui','Modules/Test/classes/tables/class.ilTestQuestionBrowserTableGUI.php','','','15'); INSERT INTO `ctrl_classfile` VALUES ('ilassessmentfolderlogadministrationtablegui','Modules/Test/classes/tables/class.ilAssessmentFolderLogAdministrationTableGUI.php','','','16'); INSERT INTO `ctrl_classfile` VALUES ('iltestaggregatedresultstablegui','Modules/Test/classes/tables/class.ilTestAggregatedResultsTableGUI.php','','','17'); INSERT INTO `ctrl_classfile` VALUES ('iltestpassmanualscoringoverviewtablegui','Modules/Test/classes/tables/class.ilTestPassManualScoringOverviewTableGUI.php','','','18'); -INSERT INTO `ctrl_classfile` VALUES ('iltestdetailedevaluationstatisticstablegui','Modules/Test/classes/tables/class.ilTestDetailedEvaluationStatisticsTableGUI.php','','','19'); -INSERT INTO `ctrl_classfile` VALUES ('ilresultsbyquestiontablegui','Modules/Test/classes/tables/class.ilResultsByQuestionTableGUI.php','','','1a'); +INSERT INTO `ctrl_classfile` VALUES ('ilresultsbyquestiontablegui','Modules/Test/classes/tables/class.ilResultsByQuestionTableGUI.php','','','19'); +INSERT INTO `ctrl_classfile` VALUES ('iltestdetailedevaluationstatisticstablegui','Modules/Test/classes/tables/class.ilTestDetailedEvaluationStatisticsTableGUI.php','','','1a'); INSERT INTO `ctrl_classfile` VALUES ('iltimingoverviewtablegui','Modules/Test/classes/tables/class.ilTimingOverviewTableGUI.php','','','1b'); INSERT INTO `ctrl_classfile` VALUES ('ilevaluationalltablegui','Modules/Test/classes/tables/class.ilEvaluationAllTableGUI.php','','','1c'); INSERT INTO `ctrl_classfile` VALUES ('iltestrandomquestionsetsourcepooldefinitionlisttablegui','Modules/Test/classes/tables/class.ilTestRandomQuestionSetSourcePoolDefinitionListTableGUI.php','','','1d'); @@ -5859,8 +5860,8 @@ INSERT INTO `ctrl_classfile` VALUES ('ilsessionoverviewtablegui','Modules/Sessio INSERT INTO `ctrl_classfile` VALUES ('ilsessionoverviewgui','Modules/Session/classes/class.ilSessionOverviewGUI.php','','','2z'); INSERT INTO `ctrl_classfile` VALUES ('ilsessionparticipantstablegui','Modules/Session/classes/class.ilSessionParticipantsTableGUI.php','','','30'); INSERT INTO `ctrl_classfile` VALUES ('ilsessionmembershipregistrationsettingsgui','Modules/Session/classes/class.ilSessionMembershipRegistrationSettingsGUI.php','','','31'); -INSERT INTO `ctrl_classfile` VALUES ('ilobjsessionlistgui','Modules/Session/classes/class.ilObjSessionListGUI.php','','','32'); -INSERT INTO `ctrl_classfile` VALUES ('ilsessionmembershipgui','Modules/Session/classes/class.ilSessionMembershipGUI.php','','','33'); +INSERT INTO `ctrl_classfile` VALUES ('ilsessionmembershipgui','Modules/Session/classes/class.ilSessionMembershipGUI.php','','','32'); +INSERT INTO `ctrl_classfile` VALUES ('ilobjsessionlistgui','Modules/Session/classes/class.ilObjSessionListGUI.php','','','33'); INSERT INTO `ctrl_classfile` VALUES ('ilobjsessiongui','Modules/Session/classes/class.ilObjSessionGUI.php','','','34'); INSERT INTO `ctrl_classfile` VALUES ('ilsessionclassificationpathgui','Modules/Session/classes/class.ilSessionClassificationPathGUI.php','','','35'); INSERT INTO `ctrl_classfile` VALUES ('illticonsumerembeddedcontentgui','Modules/LTIConsumer/classes/class.ilLTIConsumerEmbeddedContentGUI.php','','','36'); @@ -5904,8 +5905,8 @@ INSERT INTO `ctrl_classfile` VALUES ('ildcltableviewtablegui','Modules/DataColle INSERT INTO `ctrl_classfile` VALUES ('ildcltablevieweditformgui','Modules/DataCollection/classes/TableView/class.ilDclTableViewEditFormGUI.php','','','48'); INSERT INTO `ctrl_classfile` VALUES ('ildcltableviewgui','Modules/DataCollection/classes/TableView/class.ilDclTableViewGUI.php','','','49'); INSERT INTO `ctrl_classfile` VALUES ('ilobjdatacollectionlistgui','Modules/DataCollection/classes/class.ilObjDataCollectionListGUI.php','','','4a'); -INSERT INTO `ctrl_classfile` VALUES ('ildclexportgui','Modules/DataCollection/classes/class.ilDclExportGUI.php','','','4b'); -INSERT INTO `ctrl_classfile` VALUES ('ildclexporttablegui','Modules/DataCollection/classes/class.ilDclExportTableGUI.php','','','4c'); +INSERT INTO `ctrl_classfile` VALUES ('ildclexporttablegui','Modules/DataCollection/classes/class.ilDclExportTableGUI.php','','','4b'); +INSERT INTO `ctrl_classfile` VALUES ('ildclexportgui','Modules/DataCollection/classes/class.ilDclExportGUI.php','','','4c'); INSERT INTO `ctrl_classfile` VALUES ('ilobjbibliographiclistgui','Modules/Bibliographic/classes/class.ilObjBibliographicListGUI.php','','','4d'); INSERT INTO `ctrl_classfile` VALUES ('ilbibllibrarytablegui','Modules/Bibliographic/classes/Admin/Library/class.ilBiblLibraryTableGUI.php','','','4e'); INSERT INTO `ctrl_classfile` VALUES ('ilbibllibrarygui','Modules/Bibliographic/classes/Admin/Library/class.ilBiblLibraryGUI.php','','','4f'); @@ -5964,8 +5965,8 @@ INSERT INTO `ctrl_classfile` VALUES ('asserrortextgui','Modules/TestQuestionPool INSERT INTO `ctrl_classfile` VALUES ('ilassquestionhintrequestgui','Modules/TestQuestionPool/classes/class.ilAssQuestionHintRequestGUI.php','','','5w'); INSERT INTO `ctrl_classfile` VALUES ('ilunitconfigurationgui','Modules/TestQuestionPool/classes/class.ilUnitConfigurationGUI.php','','','5x'); INSERT INTO `ctrl_classfile` VALUES ('illocalunitconfigurationgui','Modules/TestQuestionPool/classes/class.ilLocalUnitConfigurationGUI.php','','','5y'); -INSERT INTO `ctrl_classfile` VALUES ('ilasshintpagegui','Modules/TestQuestionPool/classes/class.ilAssHintPageGUI.php','','','5z'); -INSERT INTO `ctrl_classfile` VALUES ('ilassquestionpagegui','Modules/TestQuestionPool/classes/class.ilAssQuestionPageGUI.php','','','60'); +INSERT INTO `ctrl_classfile` VALUES ('ilassquestionpagegui','Modules/TestQuestionPool/classes/class.ilAssQuestionPageGUI.php','','','5z'); +INSERT INTO `ctrl_classfile` VALUES ('ilasshintpagegui','Modules/TestQuestionPool/classes/class.ilAssHintPageGUI.php','','','60'); INSERT INTO `ctrl_classfile` VALUES ('ilassspecfeedbackpagegui','Modules/TestQuestionPool/classes/feedback/class.ilAssSpecFeedbackPageGUI.php','','','61'); INSERT INTO `ctrl_classfile` VALUES ('ilassgenfeedbackpagegui','Modules/TestQuestionPool/classes/feedback/class.ilAssGenFeedbackPageGUI.php','','','62'); INSERT INTO `ctrl_classfile` VALUES ('asslongmenugui','Modules/TestQuestionPool/classes/class.assLongMenuGUI.php','','','63'); @@ -6158,8 +6159,8 @@ INSERT INTO `ctrl_classfile` VALUES ('ilscormorganizationsgui','Modules/ScormAic INSERT INTO `ctrl_classfile` VALUES ('ilscormmanifestgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMManifestGUI.php','','','ba'); INSERT INTO `ctrl_classfile` VALUES ('ilscormresourcegui','Modules/ScormAicc/classes/SCORM/class.ilSCORMResourceGUI.php','','','bb'); INSERT INTO `ctrl_classfile` VALUES ('ilscormorganizationgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMOrganizationGUI.php','','','bc'); -INSERT INTO `ctrl_classfile` VALUES ('ilscormpresentationgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMPresentationGUI.php','','','bd'); -INSERT INTO `ctrl_classfile` VALUES ('ilscormitemgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMItemGUI.php','','','be'); +INSERT INTO `ctrl_classfile` VALUES ('ilscormitemgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMItemGUI.php','','','bd'); +INSERT INTO `ctrl_classfile` VALUES ('ilscormpresentationgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMPresentationGUI.php','','','be'); INSERT INTO `ctrl_classfile` VALUES ('ilscormresourcesgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMResourcesGUI.php','','','bf'); INSERT INTO `ctrl_classfile` VALUES ('ilscormobjectgui','Modules/ScormAicc/classes/SCORM/class.ilSCORMObjectGUI.php','','','bg'); INSERT INTO `ctrl_classfile` VALUES ('ilscormtrackingitemsperuserfiltergui','Modules/ScormAicc/classes/class.ilSCORMTrackingItemsPerUserFilterGUI.php','','','bh'); @@ -6343,8 +6344,8 @@ INSERT INTO `ctrl_classfile` VALUES ('ilmailgui','Services/Mail/classes/class.il INSERT INTO `ctrl_classfile` VALUES ('ilmailformplaceholderspropertygui','Services/Mail/classes/class.ilMailFormPlaceholdersPropertyGUI.php','','','gf'); INSERT INTO `ctrl_classfile` VALUES ('ilmailformattachmentpropertygui','Services/Mail/classes/class.ilMailFormAttachmentPropertyGUI.php','','','gg'); INSERT INTO `ctrl_classfile` VALUES ('ilmailoptionsformgui','Services/Mail/classes/class.ilMailOptionsFormGUI.php','','','gh'); -INSERT INTO `ctrl_classfile` VALUES ('ilmailformgui','Services/Mail/classes/class.ilMailFormGUI.php','','','gi'); -INSERT INTO `ctrl_classfile` VALUES ('ilmailtemplatetablegui','Services/Mail/classes/class.ilMailTemplateTableGUI.php','','','gj'); +INSERT INTO `ctrl_classfile` VALUES ('ilmailtemplatetablegui','Services/Mail/classes/class.ilMailTemplateTableGUI.php','','','gi'); +INSERT INTO `ctrl_classfile` VALUES ('ilmailformgui','Services/Mail/classes/class.ilMailFormGUI.php','','','gj'); INSERT INTO `ctrl_classfile` VALUES ('ilmailtemplateselectinputgui','Services/Mail/classes/Form/class.ilMailTemplateSelectInputGUI.php','','','gk'); INSERT INTO `ctrl_classfile` VALUES ('ilmailquickfilterinputgui','Services/Mail/classes/Form/class.ilMailQuickFilterInputGUI.php','','','gl'); INSERT INTO `ctrl_classfile` VALUES ('ilincomingmailinputgui','Services/Mail/classes/Form/class.ilIncomingMailInputGUI.php','','','gm'); @@ -6363,8 +6364,8 @@ INSERT INTO `ctrl_classfile` VALUES ('iluserprivacysettingsgui','Services/User/S INSERT INTO `ctrl_classfile` VALUES ('ilpersonalsettingsgui','Services/User/Settings/classes/class.ilPersonalSettingsGUI.php','','','gz'); INSERT INTO `ctrl_classfile` VALUES ('ilusersgallerygui','Services/User/Gallery/classes/class.ilUsersGalleryGUI.php','','','h0'); INSERT INTO `ctrl_classfile` VALUES ('ilcustomuserfieldsgui','Services/User/classes/class.ilCustomUserFieldsGUI.php','','','h1'); -INSERT INTO `ctrl_classfile` VALUES ('ilaccountcodesgui','Services/User/classes/class.ilAccountCodesGUI.php','','','h2'); -INSERT INTO `ctrl_classfile` VALUES ('ilusertablegui','Services/User/classes/class.ilUserTableGUI.php','','','h3'); +INSERT INTO `ctrl_classfile` VALUES ('ilusertablegui','Services/User/classes/class.ilUserTableGUI.php','','','h2'); +INSERT INTO `ctrl_classfile` VALUES ('ilaccountcodesgui','Services/User/classes/class.ilAccountCodesGUI.php','','','h3'); INSERT INTO `ctrl_classfile` VALUES ('iluserprofilebadgegui','Services/User/classes/Badges/class.ilUserProfileBadgeGUI.php','','','h4'); INSERT INTO `ctrl_classfile` VALUES ('ilaccountcodestablegui','Services/User/classes/class.ilAccountCodesTableGUI.php','','','h5'); INSERT INTO `ctrl_classfile` VALUES ('iluserrolestartingpointtablegui','Services/User/classes/class.ilUserRoleStartingPointTableGUI.php','','','h6'); @@ -6376,11 +6377,11 @@ INSERT INTO `ctrl_classfile` VALUES ('ilcustomuserfieldsettingstablegui','Servic INSERT INTO `ctrl_classfile` VALUES ('iluserlptablegui','Services/User/classes/class.ilUserLPTableGUI.php','','','hc'); INSERT INTO `ctrl_classfile` VALUES ('iluserclipboardtablegui','Services/User/classes/class.ilUserClipboardTableGUI.php','','','hd'); INSERT INTO `ctrl_classfile` VALUES ('ilobjuserfoldergui','Services/User/classes/class.ilObjUserFolderGUI.php','','','he'); -INSERT INTO `ctrl_classfile` VALUES ('iluserstartingpointgui','Services/User/classes/class.ilUserStartingPointGUI.php','','','hf'); -INSERT INTO `ctrl_classfile` VALUES ('ilobjusergui','Services/User/classes/class.ilObjUserGUI.php','','','hg'); +INSERT INTO `ctrl_classfile` VALUES ('ilobjusergui','Services/User/classes/class.ilObjUserGUI.php','','','hf'); +INSERT INTO `ctrl_classfile` VALUES ('iluserstartingpointgui','Services/User/classes/class.ilUserStartingPointGUI.php','','','hg'); INSERT INTO `ctrl_classfile` VALUES ('iluserprofileinfosettingsgui','Services/User/ProfilePrompt/classes/class.ilUserProfileInfoSettingsGUI.php','','','hh'); -INSERT INTO `ctrl_classfile` VALUES ('iluseractionadmingui','Services/User/Actions/classes/class.ilUserActionAdminGUI.php','','','hi'); -INSERT INTO `ctrl_classfile` VALUES ('iluseractiongui','Services/User/Actions/classes/class.ilUserActionGUI.php','','','hj'); +INSERT INTO `ctrl_classfile` VALUES ('iluseractiongui','Services/User/Actions/classes/class.ilUserActionGUI.php','','','hi'); +INSERT INTO `ctrl_classfile` VALUES ('iluseractionadmingui','Services/User/Actions/classes/class.ilUserActionAdminGUI.php','','','hj'); INSERT INTO `ctrl_classfile` VALUES ('iluseractionadmintablegui','Services/User/Actions/classes/class.ilUserActionAdminTableGUI.php','','','hk'); INSERT INTO `ctrl_classfile` VALUES ('ilpersonalprofilegui','Services/User/Profile/classes/class.ilPersonalProfileGUI.php','','','hl'); INSERT INTO `ctrl_classfile` VALUES ('ilprofilechecklistgui','Services/User/Profile/classes/class.ilProfileChecklistGUI.php','','','hm'); @@ -6625,8 +6626,8 @@ INSERT INTO `ctrl_classfile` VALUES ('ilcheckboxlistoverlaygui','Services/UIComp INSERT INTO `ctrl_classfile` VALUES ('ilexplorerbasegui','Services/UIComponent/Explorer2/classes/class.ilExplorerBaseGUI.php','','','o9'); INSERT INTO `ctrl_classfile` VALUES ('ilsplitbuttongui','Services/UIComponent/SplitButton/classes/class.ilSplitButtonGUI.php','','','oa'); INSERT INTO `ctrl_classfile` VALUES ('ilexplorerselectinputgui','Services/UIComponent/Explorer2/classes/class.ilExplorerSelectInputGUI.php','','','ob'); -INSERT INTO `ctrl_classfile` VALUES ('iltabsgui','Services/UIComponent/Tabs/classes/class.ilTabsGUI.php','','','oc'); -INSERT INTO `ctrl_classfile` VALUES ('iltreeexplorergui','Services/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php','','','od'); +INSERT INTO `ctrl_classfile` VALUES ('iltreeexplorergui','Services/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php','','','oc'); +INSERT INTO `ctrl_classfile` VALUES ('iltabsgui','Services/UIComponent/Tabs/classes/class.ilTabsGUI.php','','','od'); INSERT INTO `ctrl_classfile` VALUES ('illightboxgui','Services/UIComponent/Lightbox/classes/class.ilLightboxGUI.php','','','oe'); INSERT INTO `ctrl_classfile` VALUES ('ilgroupedlistgui','Services/UIComponent/GroupedList/classes/class.ilGroupedListGUI.php','','','of'); INSERT INTO `ctrl_classfile` VALUES ('ilobjcalendarsettingsgui','Services/Calendar/classes/class.ilObjCalendarSettingsGUI.php','','','og'); @@ -14179,30 +14180,18 @@ CREATE TABLE `lng_data` ( -- Dumping data for table `lng_data` -- -INSERT INTO `lng_data` VALUES ('rbac','excs_read','en','User has read access to Exercise administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','excs_visible','en','Exercise administration is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','cdf_edited_by_self','en','by the User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_cdf_tbl_last_edit','en','Updated (Course-specific Data)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_cdf_tbl_last_edit','en','Updated (Group-specific Data)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_max_size_attachments_total_error','en','The allowed attachment size is:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_max_size_attachments_total','en','Please enter the maximum file size allowed as attachment per mail. This setting is not related to other resource limits, e.g. upload_max_filesize etc. (since you can attach multiple files).',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','autocomplete_more','en','more',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tagging','tagging_other_users','en','Tags of Other Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_show_comments_tagging_in_lists_tags','en','Display tags instead of number',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_tag_cloud_info','en','The ‘Tag Cloud’ block will be displayed inside the ‘Content’ tab.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_tag_cloud','en','Tag Cloud',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_sort_desc','en','Sort Descending',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_sort_asc','en','Sort Ascending',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiki_statistics_read','en','View Statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','statistics_read','en','View Statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_ratings','en','Number of Ratings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_footnotes','en','Number of Footnotes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_characters','en','Number of Characters',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_words','en','Number of Words',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_characters','en','Number of Characters',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_footnotes','en','Number of Footnotes',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_external_links','en','Number of External Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_internal_links','en','Number of Internal Links',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_read','en','Number of Read Accesses',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_user_edit','en','Number of Users Who Edited Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_read','en','Number of Read Accesses',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_changes_avg','en','Average Number of Changes',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_page_changes','en','Number of Changes',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_footnotes_avg','en','Average Number of Footnotes per Page',NULL,NULL); @@ -14220,9 +14209,9 @@ INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_num_rating_avg','en','Average N INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_num_rating','en','Number of Ratings',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_user_edit_pages_avg','en','Average Number of Users Who Edited Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_user_edit_pages','en','Number of Users Who Edited Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_deleted_pages','en','Number of Deleted Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_read_pages','en','Number of Read Accesses',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_figure','en','Figure',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_deleted_pages','en','Number of Deleted Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_stat_scope','en','Timeframe',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_template','en','Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_templ','en','Insert Content Template',NULL,NULL); @@ -14230,12 +14219,12 @@ INSERT INTO `lng_data` VALUES ('wiki','wiki_create_page','en','Create Page',NULL INSERT INTO `lng_data` VALUES ('wiki','wiki_empty_page','en','Empty Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_template','en','Page Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_new_page','en','New Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_page_not_exist_select_templ','en','This page does not exist yet. Please select a template for the new page.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_empty_page_template','en','Empty Page Template on Page Creation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_page_not_exist_select_templ','en','This page does not exist yet. Please select a template for the new page.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_add_template','en','Set Template Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_templ_add_to_page','en','Available for Being Added to Existing Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_template_added','en','Template page added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_templ_new_pages','en','Available on Page Creation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_template_added','en','Template page added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_remove_template_status','en','Remove Template Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_template_status_removed','en','Template status removed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_templates','en','Page Templates',NULL,NULL); @@ -14256,29 +14245,29 @@ INSERT INTO `lng_data` VALUES ('cntr','cntr_taxonomy_show_sideblock','en','Show INSERT INTO `lng_data` VALUES ('cntr','cntr_taxonomy_sideblock_settings','en','Presentation Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','cntr_tax_none_available','en','There are no taxonomies available.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_overall_limit_warning','en','You have reached the maximum number of bookings.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_overall_limit','en','Limit number of bookings',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_overall_limit_info','en','Maximum number of bookings for each user in this booking pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_cdf_edit_member','en','Edit Course Relevant User Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_overall_limit','en','Limit number of bookings',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_cdf_edit_member','en','Edit Group Relevant User Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_cdf_edit_member','en','Edit Course Relevant User Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_admin_settings_repository','en','Repository Taxonomies',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_taxs_desc','en','Global Taxonomy Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_taxs','en','Taxonomy',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','obj_excs_desc','en','Global Exercise Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('exercise','exc_admin_settings','en','Exercise Administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_taxonomies','en','Taxonomies',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','obj_excs_desc','en','Global Exercise Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_excs','en','Exercise',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_amd_page_list','en','Insert Page List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_taxonomies','en','Taxonomies',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_update_amd_page_list','en','Edit Page List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_advmd_block_title','en','Advanced Metadata of Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_amd_page_list','en','Insert Page List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_amd_page_list','en','Insert Page List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_advmd_block_title','en','Advanced Metadata of Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_wpg','en','Wiki Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_results_view_own','en','Participants can View Own Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_mail_own_results_subject','en','Survey \"%s\" - Your Answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_results_view_own','en','Participants can View Own Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_mail_own_results','en','Mail given answers',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_view_own_results','en','View given answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_nav_sortorder','en','Order of Blocks',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_enable_nav_authors_info','en','List of blog authors is displayed. Clicking a username shows all postings of this author.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_view_own_results','en','View given answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_enable_nav_authors','en','Authors',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_enable_nav_authors_info','en','List of blog authors is displayed. Clicking a username shows all postings of this author.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_enable_keywords_info','en','Keywords can be set for postings. Clicking a keyword shows all postings tagged with this keyword.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_enable_keywords','en','Keywords',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_list_num_postings_info','en','This setting is only used if no specific month is selected.',NULL,NULL); @@ -14289,64 +14278,64 @@ INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list_num_month_info', INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list_num_month','en','Total Number of shown months',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list_num_detail_info','en','Latest postings are listed by date in reverse chronological order. Older postings are available via their month.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list_num_detail','en','Total number of postings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode','en','Postings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list','en','Show List of Months',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list_info','en','All months with postings are listed in the ‘Postings’ block.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode_month_list','en','Show List of Months',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_nav_mode','en','Postings',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_presentation_overview','en','Initial Overview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_presentation_frame','en','Blog Presentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_settings_navigation','en','Navigation Column',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_results_finished','en','Survey finished',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_settings_navigation','en','Navigation Column',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_presentation_frame','en','Blog Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_number_suffix','en','Suffix',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_text_multi','en','Multiline',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_section','en','Migration of the deleted options',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_text_max_length','en','Maximum Length',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','udf_type_float','en','Float',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','udf_type_location','en','Location',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_number_decimals','en','Decimals',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition','en','Please confirm the new definition settings.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_option','en','Deleted Option',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_option_remove','en','Remove value',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_option_overwrite','en','Set value to',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_number_max','en','Maximum Value',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_section','en','Migration of the deleted options',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_option_remove','en','Remove value',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition_select_option','en','Deleted Option',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_confirm_definition','en','Please confirm the new definition settings.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_number_decimals','en','Decimals',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','udf_type_location','en','Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_number_min','en','Minimum Value',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','udf_type_integer','en','Integer',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_change_notification_body_approve','en','the following blog posting needs approval.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','udf_type_float','en','Float',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_presentation','en','Presentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_not_available','en','n/a',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_confirm_cancel_aggregation','en','Number of Cancellations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_help_no_valid_tooltip_id','en','The tooltip ID you have entered was not valid.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','udf_type_integer','en','Integer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_number_max','en','Maximum Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ical_url','en','iCal-URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_help_no_valid_tooltip_id','en','The tooltip ID you have entered was not valid.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_confirm_cancel_aggregation','en','Number of Cancellations',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_not_available','en','n/a',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_change_notification_body_approve','en','the following blog posting needs approval.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_max_notification_age_info','en','Please define the maximum age of postings to send notifications for. It is recommended to choose a higher value than the scheduled interval.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_max_notification_age_unit','en','Day(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_max_notification_age','en','Max. Notification Age',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','spl_save_obligatory_state','en','Save Compulsory States',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_max_notification_age','en','Max. Notification Age',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','post_reply_count','en','Re(%s):',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','cloze_gap_size_info','en','If you enter a value greater than 0, this gap text field will be created with the fixed length of this value. If you do not enter a value, the gap text field will be created with the value of the global fixed length.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','move_thread_to_forum','en','Move Thread to other Forum',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_piechart','en','Pie Chart',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','merge_posts_into_thread','en','Merge Postings into other Thread',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_barchart','en','Bar Chart',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_comments','en','Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_show_results_as','en','Show Results as',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_no_adv_md','en','No Advanced Meta Data available.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_comments','en','Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_unit_info','en','Please note that the selected result unit must also be activated in ‘Available units’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tolerance_info','en','The tolerance specifies an allowable percentage deviation from the result value. With a tolerance of 0, only the exact result value is evaluated to be correct.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','intprecision_info','en','‘Divisible by’ affects only the creation of variables, if the value for the precision is 0. In this case, you define for ‘Divisible by’ an integer value, which must be divisible by with the created variable. A value of 10 thus generates only integers that are divisible by 10. A value of 5 produces integers that are divisible by 5, etc. For a precision of 0, ‘Divisible by’ is a mandatory field and must contain a positive integer. The default value is 1 for any integers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','additional_rating_info','en','Please note that the values given here are expressed as percentages and these must add up to 100.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','fq_no_restriction_info','en','Both decimals and fractions are accepted as input.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_units_info','en','The selected units are offered to the learner as part of an answer. The learner has to choose one unit.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','advanced_editing_tst_editing_desc','en','Activates ILIAS Page Editor for feedback and hint text editing.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','fq_precision_info','en','Enter the number of desired decimal places.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','advanced_editing_tst_editing_desc','en','Activates ILIAS Page Editor for feedback and hint text editing.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_server_title','en','Name of ECS Configuration',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','advanced_editing_tst_editing','en','Page Editor for additional question content',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_def_feedb_deactivated','en','Default feedback texts are currently deactivated in the learning module settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_def_feedb_activated','en','Default feedback texts are currently activated in the learning module settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_your_text','en','Your Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_completion_by_tutor','en','Only manual by tutor',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_passed_status_determination','en','Determination of Status ‘Passed’',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_completion_by_tutor','en','Only manual by tutor',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_min_nr_info','en','This value must be equal or higher than the number of compulsory assignments.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_passing_exc','en','Passing the Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_publishing','en','Publishing',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_passing_exc','en','Passing the Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_notification','en','Personal Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_show_taxonomy_info','en','The taxonomy will be visible in the presentation view of the glossary and can be used to select referenced terms.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_content_settings','en','Content',NULL,NULL); @@ -14364,76 +14353,76 @@ INSERT INTO `lng_data` VALUES ('prtf','prtf_page_element_teaser_consultation_hou INSERT INTO `lng_data` VALUES ('prtf','prtf_page_element_teaser_blog_template','en','The portfolio will display a blog of your personal resources here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_page_element_teaser_skills','en','The portfolio will display your competence level here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_page_element_my_courses_title','en','Course Memberships',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_update_my_courses','en','Edit My Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_page_element_teaser_my_courses','en','The portfolio will display a list of your current courses here.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_update_my_courses','en','Edit My Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_my_courses','en','Insert My Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_my_courses','en','Insert My Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_abstract_image_pixels','en','Px',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_abstract_image_width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_abstract_image_height','en','Height',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_abstract_image_width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_abstract_image_info','en','Images which are smaller will not be used.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_abstract_shorten_characters','en','Characters',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_abstract_image','en','Add Image To Abstract',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_abstract_shorten_characters','en','Characters',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_abstract_shorten_length','en','Maximum Length',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_abstract_shorten','en','Shorten Abstract',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_post_booking_text_info','en','Use placeholders to communicate specifics on reservations.
[OBJECT] will be replaced by the respective Booking Object.
[PERIOD] will be replaced by the respective schedule.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','orgu_view_learning_progress_rec','en','View Learning Progress of Unit incl. Subunits',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_orgu','en','Create Organisational Units',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','orgu_view_learning_progress_rec','en','View Learning Progress of Unit incl. Subunits',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','orgu_copy','en','Copy Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','orgu_delete','en','User can move or delete Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','orgu_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','orgu_copy','en','Copy Organisational Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','orgu_write','en','User can edit settings of Organisational Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','orgu_read_users','en','User can read local user accounts created in this Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','orgu_cat_administrate_users','en','User can create and administrate local user accounts in this Organisational Unit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','orgu_read_users','en','User can read local user accounts created in this Organisational Unit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','orgu_write','en','User can edit settings of Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','orgu_read','en','User has read access to Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','orgu_visible','en','Organisational Unit is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','orgu_view_learning_progress','en','View Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_create_portfolio_no_template','en','Do not use template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_vote_notification_reason','en','You are receiving this e-mail because you activated notifications for the poll mentioned above.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_vote_notification_link','en','Link to Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_vote_notification_body','en','the following poll has received a vote.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_vote_notification_link','en','Link to Poll',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_vote_notification_reason','en','You are receiving this e-mail because you activated notifications for the poll mentioned above.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_vote_notification_subject','en','Poll \"%s\": new vote',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_notification_unsubscribe','en','Deactivate Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_notification_subscribe','en','Activate Notification',NULL,NULL); -INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_matriculation','en','Matriculation number of the user',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_notification_unsubscribe','en','Deactivate Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','mailparticipantdata_placeholder','en','These placeholders are replaced by actual user data if ‘Privacy’ is ‘With Names’:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_matriculation','en','Matriculation number of the user',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_var_user_matriculation','en','12345',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_XK','en','Kosovo',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','usr_id','en','User ID',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_result_answers','en','Votes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_XK','en','Kosovo',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_result_users','en','Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_result_answers','en','Votes',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_non_anonymous_warning','en','Your name and vote are visible for administrators in the results.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_mode_personal_info','en','A list of participants with their respective votes is available when having sufficient permission.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_mode_anonymous_info','en','Votes cannot be traced back to participants.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_mode_personal','en','Personal',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_mode_anonymous_info','en','Votes cannot be traced back to participants.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_mode_anonymous','en','Anonymous',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_definition','en','Edit Definition',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_mode','en','Mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_result_sorting_votes','en','By number of votes (descending)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_definitions','en','Edit Definitions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_definition','en','Edit Definition',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_result_sorting_votes','en','By number of votes (descending)',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_result_sorting_answers','en','In the order of the answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_result_sorting','en','Sorting',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_vote_error_single','en','Please select 1 answer.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_vote_error_multi','en','Please select no more than %s answers.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_vote_error_single','en','Please select 1 answer.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_max_number_of_answers','en','Maximum Number Of Answers per Participant',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','objects_duplicated','en','Objects copied',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','msg_no_downloadable_objects','en','No downloadable objects found.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_multilang_deactivated','en','Multilingualism has been deactivated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','cntr_container_only_on_their_own','en','Categories, courses, groups, folders or study programmes can only be copied as single objects. Please select one item only.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_multilang_deactivated','en','Multilingualism has been deactivated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_deactivate_multilang_conf','en','Do you really want to deactivate multilingualism? Only contents of the master language will be kept.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_activate_multilang','en','Activate Multilingualism',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_deactivate_multilang','en','Deactivate Multilingualism',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_add_languages','en','Add Languages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_activate_multilang','en','Activate Multilingualism',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_activate_content_lang','en','Activate Translation for Page Editing',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_multilang_title_descr_only','en','Translation is activated for title and description only. Translation support for Page editing (‘Customize Page’) needs additional activation.',NULL,NULL); INSERT INTO `lng_data` VALUES ('init','init_error_authentication_fail','en','Authentication failed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('init','init_error_maintenance','en','The server is not available due to maintenance. We apologise for any inconvenience.',NULL,NULL); INSERT INTO `lng_data` VALUES ('init','init_error_redirect_info','en','Redirect not supported by context.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('init','init_error_maintenance','en','The server is not available due to maintenance. We apologise for any inconvenience.',NULL,NULL); INSERT INTO `lng_data` VALUES ('init','init_error_redirect_click','en','Please click to continue.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_loc_subtab_creation','en','Create',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','info_stop_offline_mode_sure','en','Note: The learning progress achieved in offline mode are lost. Are you sure?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','stop_user_offline_mode_for_user','en','Stop offline mode for',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','stop_user_offline_mode','en','Stop offline mode',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','stop_user_offline_mode_for_user','en','Stop offline mode for',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_offline_mode_disable_not_allowed_info','en','Since the learning module is currently used in offline mode, the offline mode can not be disabled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','offline_mode_users_info','en','Users can be manually taken from the Off-line Mode and after doing so these users can again use the online-version of the learning module. This makes sense if e.g. the laptop with the learning modules was stolen.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','offline_mode_users','en','Users in offline mode',NULL,NULL); @@ -14468,105 +14457,105 @@ INSERT INTO `lng_data` VALUES ('crs','crs_mail_all_info','en','Members, administ INSERT INTO `lng_data` VALUES ('crs','crs_mail_tutors_only_info','en','Only administrators and tutors can use the feature ‘Mail to Members’ in the ‘Members’ tab.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_reg_no_selfreg','en','No Self-enrolment',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_status_determination_lp_info','en','When the learning progress changes to ‘Completed’, the course status ‘Passed’ will be set automatically. Tutors still can overwrite the status manually.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cron','cron_action_reset_sure_multi','en','Are you sure you want to reset the following cron-jobs?',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_deactivate_sure_multi','en','Are you sure you want to deactivate the following cron-jobs?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cron','cron_action_reset_sure_multi','en','Are you sure you want to reset the following cron-jobs?',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_activate_sure_multi','en','Are you sure you want to activate the following cron-jobs?',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_reminder_cron_info','en','If activated, users will be reminded to participate in surveys.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_user_sync_cron_info','en','If activated, user accounts will be imported from the LDAP directory and synchronised continuously as an option.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_object_statistics_info','en','If activated, the basic data for the usage statistics will be gathered and processed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','repository_disk_quota_info','en','If activated, the disk-quota of the magazine will be checked for each user and e-mails will be sent to administrators and users optionally.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_suggested_resources','en','Suggested Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','exc_next_deadline_single','en','Deadline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_suggested_resources','en','Suggested Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_no_nodes_selectable','en','Currently there are no competences selectable.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_choose_role','en','Choose Role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_status_publish_info','en','Item can be used if all parents are published, too. Once items are used, the status cannot be set to draft anymore, neither can they be deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_status','en','Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_status_outdated','en','Outdated',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_status_outdated_info','en','Item cannot be newly selected by users as personal skill, or newly assigned to repository objects or skill profiles. However existing assignments and data are still presented.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_status','en','Status',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','reps_write','en','Edit settings in Repository administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','reps_edit_permission','en','User can change permission settings in Repository administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_posting_not_found','en','This blog posting is not available.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_cannot_delete_nodes_in_use','en','Some items cannot be deleted, because they are still in use.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_status_publish_info','en','Item can be used if all parents are published, too. Once items are used, the status cannot be set to draft anymore, neither can they be deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_status_publish','en','Published',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_status_draft','en','Draft (Offline)',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_status_draft_info','en','Item will be hidden.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_status_publish','en','Published',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_cannot_delete_nodes_in_use','en','Some items cannot be deleted, because they are still in use.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_posting_not_found','en','This blog posting is not available.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wbrs_edit_permission','en','User can change permission settings in Weblink administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','reps_visible','en','Repository administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','reps_read','en','User has read access to Repository administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','reps_write','en','Edit settings in Repository administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','reps_edit_permission','en','User can change permission settings in Repository administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wbrs_write','en','Edit settings in Weblink administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wbrs_read','en','User has read access to Weblink administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','wbrs_visible','en','Weblink administration is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tos_edit_permission','en','User can change permission settings in Terms of Service administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tos_write','en','Edit settings in Terms of Service administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tos_read','en','User has read access to Terms of Service administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tos_visible','en','Terms of Service administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiks_edit_permission','en','User can change permission settings in Wiki administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tos_visible','en','Terms of Service administration is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tos_read','en','User has read access to Terms of Service administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tos_write','en','Edit settings in Terms of Service administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tos_edit_permission','en','User can change permission settings in Terms of Service administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','wbrs_visible','en','Weblink administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiks_write','en','Edit settings in Wiki administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','wiks_read','en','User has read access to Wiki administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','wiks_visible','en','Wiki administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grps_edit_permission','en','User can change permission settings in Group administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','wiks_visible','en','Wiki administration is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','wiks_read','en','User has read access to Wiki administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grps_write','en','Edit settings in Group administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','grps_visible','en','Group administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grps_read','en','User has read access to Group administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','crss_edit_permission','en','User can change permission settings in Course administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','grps_visible','en','Group administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crss_write','en','Edit settings in Course administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','crss_edit_permission','en','User can change permission settings in Course administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crss_read','en','User has read access to Course administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crss_visible','en','Course administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_confirm_cancel','en','Are you sure you want to cancel the following reservations?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_bibl','en','Create Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_cld','en','Create Cloud Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_template_import_new_skills','en','If activated, these items will be added to your personal competences.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_bibl','en','Create Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_obj_profiles','en','Profile(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_obj_users','en','User(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_obj_objects','en','Object(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_prof','en','Used in Skill Profiles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_obj_users','en','User(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_res','en','Repository Objects Assigned as Suggested Resource',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_mat','en','Users assigned material from their personal resources',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_user','en','Assigned to Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_prof','en','Used in Skill Profiles',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_pers','en','Selected by Users as Personal Skill',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_number','en','Number',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_gen','en','General Use in Repository Objects',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_user','en','Assigned to Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_mat','en','Users assigned material from their personal resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_usage','en','Usage',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_type','en','Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_number','en','Number',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_usage_type_info_gen','en','General Use in Repository Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_choose_wiki','en','Choose Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_wiki_page','en','Wiki Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('scov','crsv_create','en','Create SCORM Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('scov','crsv_create_info','en','Select a completed learning module to generate a certificate for it',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crsv','crsv_create','en','Create Course Certificate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crsv','crsv_create_info','en','Select a completed course to generate a certificate for it',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_scov','en','SCORM Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_type_scov','en','Certificate: SCORM',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_list_scov','en','SCORM Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crsv','crsv_create','en','Create Course Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crsv','crsv_create_info','en','Select a completed course to generate a certificate for it',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wsp','wsp_list_crsv','en','Course Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_crsv','en','Course Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_type_crsv','en','Certificate: Course',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wsp','wsp_list_crsv','en','Course Certificate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_news_item_def_visibility_public_info','en','Current news are accessible in a public RSS webfeed. They should not contain confidential information.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_news_item_def_visibility_users_info','en','Only authenticated users have access to current news.',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_presentation','en','Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_webfeed','en','RSS Web Feed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_news_item_def_visibility_users_info','en','Only authenticated users have access to current news.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_news_item_def_visibility_public_info','en','Current news are accessible in a public RSS webfeed. They should not contain confidential information.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tool_setting_calendar_info','en','A calendar is available and the ‘Calendar’ block is displayed in the ‘Contents’ tab.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_tool_setting_news_info','en','The ‘News’ block will be displayed inside the ‘Content’ tab.',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_info_tab_info','en','The ‘Info’ tab will be displayed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_tool_setting_news_info','en','The ‘News’ block will be displayed inside the ‘Content’ tab.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','il_orgu_employee','en','Organisational Unit Employee',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','il_orgu_superior','en','Organisational Unit Superior',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','lm_rate_page','en','Rate page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','lm_rating','en','Rate Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rating','rating_remove','en','Remove Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','lm_activate_rating','en','Activate Rating For Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_rate_overall','en','Rate Wiki',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_prtt','en','Create Portfolio Template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','glo_edit_content','en','User can edit content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_rolt','en','Create new Role Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','lm_rating','en','Rate Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rating','rating_remove','en','Remove Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','lm_rate_page','en','Rate page',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_role','en','Create new Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_activation_list_gui','en','Availability',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_obj_already_deleted','en','The object has already been deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','glo_edit_content','en','User can edit content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_rolt','en','Create new Role Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_prtt','en','Create Portfolio Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_no_comments','en','No comment has been posted yet.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_nacc_timelimit','en','User access period',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_nacc_if_timelimit','en','This text is only included, if the user has a limited access period.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_obj_already_deleted','en','The object has already been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_mail_body_timelimit','en','Your account has a limited period of validity: %s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','inform_user_mail_info','en','If activated, an e-mail will be sent to the user. Its content can be defined in Administration > User Management > Settings > New Account Mail.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_nacc_if_timelimit','en','This text is only included, if the user has a limited access period.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_instruction_files','en','Instruction Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_mail_new_user_confirmation','en','Request for account confirmation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','inform_user_mail_info','en','If activated, an e-mail will be sent to the user. Its content can be defined in Administration > User Management > Settings > New Account Mail.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_create_team','en','Create Team',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_create_team_times_up_warning','en','You cannot create a team anymore - please contact your tutor.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_member_remove_sure','en','Are you sure you want to remove the following members of your team? Please be aware that all files they have uploaded will also be removed from your team.',NULL,NULL); @@ -14574,37 +14563,37 @@ INSERT INTO `lng_data` VALUES ('rep','rep_new_item_menu','en','‘Add New Item INSERT INTO `lng_data` VALUES ('cmps','cmps_repository_object_types','en','Repository Object Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_templates','en','Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_multi_feedb_info','en','On this screen you can upload multiple feedbacks in one file. First click on ‘Download ZIP Structure’, save the ZIP file and extract it on your local computer. Put the feedback files into the corresponding user directories. Now compress the whole directory as one ZIP file again. Browse your local filesystem for the file and select it as the ‘Multi-Feedback File’ in the form below. After that click ‘Upload’. A confirmation screen will list the files. Please avoid using any special characters in your file names.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_delete_rule','en','Delete Mapping',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_list_excv','en','Exercise Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_list_tstv','en','Test Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','fq_formula_desc','en','You may enter predefined variables ($v1 to $vn), defined results (e.g. $r1), braces for expressions, mathematical operators + (addition), - (subtraction), * (multiplication), / (division), ^ (nth power), the constants ‘pi’ for pi and ‘e’ for euler\'s constant, as well as the functions ‘sin’, ‘sinh’, ‘arcsin’, ‘asin’, ‘arcsinh’, ‘asinh’, ‘cos’, ‘cosh’, ‘arccos’, ‘acos’, ‘arccosh’, ‘acosh’, ‘tan’, ‘tanh’, ‘arctan’, ‘atan’, ‘arctanh’, ‘atanh’, ‘sqrt’, ‘abs’, ‘ln’ and ‘log’.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_delete_rule','en','Delete Mapping',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','simple_xls','en','Simple Excel Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_add_category','en','Add Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_add_unit','en','Add Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','fq_question_desc','en','You can define variables by inserting $v1, $v2 ... $vn, results by inserting $r1, $r2 .... $rn at the desired position in the question text. Click on the button ‘Parse Question’ to create editing forms for variables and results.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_col_ordering','en','Column Ordering',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','simple_xls','en','Simple Excel Export',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_content','en','Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_communication','en','Communication',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_assessment','en','Assessment',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_feedback','en','Feedback and Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_organisation','en','Organisation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_add_new_def_grp_content','en','Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_no_feedback_dir_found_in_zip','en','The directory structure of the uploaded zip-archive could not be processed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_no_team_yet','en','Not assigned to a team',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_push_tracking_ok','en','Transfer of tracking data was successful.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_hide_taxonomy','en','Hide Taxonomy',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_no_team_yet','en','Not assigned to a team',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_push_tracking','en','Transferring tracking data to ILIAS. Please wait a moment.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sop','sop_msg_export_tracking','en','Transferring tracking data to SCORM Offline Manager. Please wait some seconds',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_export_content','en','Transferring content to SCORM Offline Manager. This might need a moment. Please be patient.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sop','sop_msg_export_tracking','en','Transferring tracking data to SCORM Offline Manager. Please wait some seconds',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_export_ok','en','Transferring content and tracking data was successful',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_export_failure','en','Transferring content or data to SCORM Offline Manager was not successful.',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_close_lm','en','The learning module is still open. Please close the SCORM Offline Player.',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_msg_lm_not_exists','en','The learning module does either not exist or is inactive in the SCORM Offline Manager.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','offline_mode','en','Use offline',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sop','sop_push_tracking','en','Import tracking data',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_purge_cache','en','Delete offline cache of Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sop','sop_push_tracking','en','Import tracking data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','offline_mode','en','Use offline',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_text_push_tracking','en','Import offline tracking data to ILIAS and switch to online mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sop','sop_start_som','en','Start SOM',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_text_start_som','en','Start SCORM Offline Manager',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sop','sop_start_som','en','Start SOM',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_start_sop','en','Start Learning Module offline',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_text_start_offline','en','Start Learning Module in offline mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('sop','sop_desc_export','en','A learning module in offline mode can only be used offline. Once the tracking data has been imported back to ILIAS, the learning module will be online again.',NULL,NULL); @@ -14622,6 +14611,8 @@ INSERT INTO `lng_data` VALUES ('common','obj_wiks','en','Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_reservation_failed_overbooked','en','The booking failed because the object is not available anymore.',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_auth_settings','en','Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_captcha_anonymous_wiki','en','Activate captcha for anonymous in wikis. Please keep in mind that this may effect the accessibility of your installation.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_auth_login','en','Authentication Login',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_auth_reg','en','Authentication Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_captcha_anonymous_reg','en','Activate captcha for anonymous in registration form. Please keep in mind that this may effect the accessibility of your installation.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_captcha_anonymous_auth','en','Activate captcha for anonymous in login form. Please keep in mind that this may effect the accessibility of your installation.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_captcha_anonymous_frm','en','Activate captcha for anonymous in forums. Please keep in mind that this may effect the accessibility of your installation.',NULL,NULL); @@ -14635,27 +14626,27 @@ INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_passed_or_failed', INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_passed','en','keep tracking data if achieved status is passed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_completed_not_failed_or_passed','en','keep tracking data if achieved status is completed or passed, but not failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_no','en','always (recommended)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_info_2004','en','After a user has acquired the tracking status set above for a chapter /SCO, this Status is locked. No further tracking data will recorded for these chapters / SCOs in later visits. Select \'always\' if the learning module makes use of Sequencing & Navigation according to SCORM 2004.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_2004','en','Lock Tracking Status Once it is Established',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_sc_auto_review_info_2004','en','After a user has acquired the tracking status set above for a chapter /SCO, this Status is locked. No further tracking data will recorded for these chapters / SCOs in later visits. Select \'always\' if the learning module makes use of Sequencing & Navigation according to SCORM 2004.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_login_as_learner_id_info','en','If enabled, the Username instead of the User ID is set for cmi.learner_id.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','adve_char_selector_settings','en','Character Selector',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_login_as_learner_id','en','SCORM 2004: set ILIAS Username as cmi.learner_id',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','adve_char_selector_settings','en','Character Selector',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_unicode_all','en','All Unicode Blocks',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info6b','en','Ranges are also possible in Unicode notation',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info6a','en','U+00C0-U+00CF',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info5a','en','U+00C0',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info5b','en','A character can also be defined in Unicode notation (case insensitive)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info4b','en','Ranges of characters can be defined with a ‘-’',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info5a','en','U+00C0',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info4a','en','A-Z',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info4b','en','Ranges of characters can be defined with a ‘-’',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info3b','en','It is possible to put more characters on one button',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info3a','en','A BC D',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info2b','en','Characters are separated by space, generating separate selector buttons',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info2a','en','A B C',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info2b','en','Characters are separated by space, generating separate selector buttons',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items_info1','en','The custom selection will be listed before the selected blocks. Please add your characters in the following style:',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_custom_items','en','Custom Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_blocks_info','en','All characters of the selected blocks will be listed, but not all of them may be supported by the current browser font.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','char_selector_blocks','en','Available Special Character Sets (Unicode)',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_enabled_user','en','Enable Menu for Selecting Special Characters',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','char_selector_blocks','en','Available Special Character Sets (Unicode)',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_enabled_test','en','Special Character Selector is On',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_enabled_info_user','en','In tests a menu for selecting special characters will be displayed. However individual tests can prevent this setting from becoming effective and not display the special character menu despite your choice about activating it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','char_selector_enabled_info_test','en','Regardless of a user\'s individual setting the Ω-button for switching on the special character selector will be displayed in the test. Special characters can be entered.',NULL,NULL); @@ -14688,39 +14679,39 @@ INSERT INTO `lng_data` VALUES ('content','save_new','en','Save and New',NULL,NUL INSERT INTO `lng_data` VALUES ('form','captcha_code','en','User Verification',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','email_not_match','en','Your entries for the e-mail address don\'t match! Please re-enter your e-mail address.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_retype_email','en','Retype E-Mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','search_content','en','Search Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_reservation_available','en','%s available',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','search_content','en','Search Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_save_all','en','Save All',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_save_selected','en','Save Selected',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_multilinguality','en','Multilingualism',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_style','en','Portfolio Template Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_properties','en','Portfolio Properties',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_style','en','Portfolio Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_multilinguality','en','Multilingualism',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_properties','en','Portfolio Template Properties',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_properties','en','Blog Properties',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_style','en','Portfolio Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_properties','en','Portfolio Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_style','en','Blog Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_download_zip_no_attachments','en','Could not find any attachments.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_properties','en','Blog Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_period_until','en','Until',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_download_zip_no_attachments','en','Could not find any attachments.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_period_from','en','From',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_period','en','Period',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_filter_only_with_attachments','en','With Attachments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_filter_only_unread','en','Only Unread',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_txt','en','Filter messages by',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_filter_only_unread','en','Only Unread',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_filter_only_with_attachments','en','With Attachments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_field_placeholder','en','Filter these messages ...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_filter_attach','en','Attachments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_body','en','Body',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_filter_attach','en','Attachments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_subject','en','Subject',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_filter_sender','en','Sender',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter_recipients','en','Recipients',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_filter_sender','en','Sender',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_filter','en','Filter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','msg_confirm_delete_filter','en','Do you like to delete the following filter?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_msg_translations_deleted','en','Translations were deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_msg_translations_saved','en','Translations were saved',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_translation_desc','en','Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_translation_trans','en','Translation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_translation_lang','en','Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_deleted','en','The Filter was deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_translation_lang','en','Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','changes_saved','en','Changes were saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_form_title','en','Add new filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_ep','en','Ending Page Number',NULL,NULL); @@ -14730,53 +14721,53 @@ INSERT INTO `lng_data` VALUES ('bibl','ris_default_u2','en','User Defined',NULL, INSERT INTO `lng_data` VALUES ('bibl','ris_default_t3','en','Tertiary Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_t2','en','Secondary Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_t1','en','Primary Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','ris_default_n1','en','Notes',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_n2','en','Abstract',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','ris_default_n1','en','Notes',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_m1','en','Number',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_kw','en','Keywords',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','ris_default_cy','en','Place Published',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_id','en','Reference ID',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','ris_default_l3','en','Related records',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','ris_default_cy','en','Place Published',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_a2','en','Location in Archives',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','ris_default_l3','en','Related records',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_ur','en','URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_m3','en','Misc. 3',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','ris_default_pb','en','Publisher',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_sn','en','ISSN/ISBN/ASIN',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_vl','en','Volume',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','ris_default_pb','en','Publisher',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_ja','en','Periodical in which article was published',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_au','en','Author',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris_default_py','en','Publication year',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','ris_default_ti','en','Book title',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_organization','en','Organizaton',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','ris_default_ti','en','Book title',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_series','en','Series',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_type','en','Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bib_default_howpublished','en','Published as',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_edition','en','Edition',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bib_default_howpublished','en','Published as',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_publisher','en','Publisher',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_address','en','Address',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_month','en','Month',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_abstract','en','Abstract',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bib_default_cite','en','Bib Cite',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_note','en','Note',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bib_default_keywords','en','Keywords',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bib_default_cite','en','Bib Cite',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_isbn','en','ISSN/ISBN',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bib_default_year','en','Year',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_url','en','URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bib_default_keywords','en','Keywords',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bib_default_year','en','Year',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_volume','en','Volume',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bib_default_pages','en','Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_number','en','Number',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bib_default_pages','en','Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_author','en','Author',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bib_default_journal','en','Journal',NULL,NULL); INSERT INTO `lng_data` VALUES ('mob','mob_srt_files_deleted','en','Subtitle files have been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_copy','en','Copy Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('mob','mob_really_delete_srt','en','Do you really want to delete the following srt files?',NULL,NULL); INSERT INTO `lng_data` VALUES ('mob','mob_file','en','File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mob','mob_subtitle_file','en','Subtitle File',NULL,NULL); INSERT INTO `lng_data` VALUES ('mob','mob_language','en','Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('mob','mob_subtitle_files','en','Subtitle Files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mob','mob_subtitle_file','en','Subtitle File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mob','mob_subtitles','en','Subtitles',NULL,NULL); INSERT INTO `lng_data` VALUES ('mob','mob_general','en','General',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mob','mob_subtitles','en','Subtitles',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_result_mail_notification_info','en','On finishing the survey the answers of each participant will be sent to the defined recipients.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_disable_def_feedback_info','en','If disabled, answered questions will not show any feedback for the learner. You need to provide custom feedbacks for your questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_disable_def_feedback','en','Disable Default Question Feedback',NULL,NULL); @@ -14822,24 +14813,24 @@ INSERT INTO `lng_data` VALUES ('search','search_mime_pdf','en','PDF Files',NULL, INSERT INTO `lng_data` VALUES ('content','cont_cach_mode_manual_info','en','Only the consultation hours of the following groups will be published.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cach_mode_manual','en','Manual',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cach_mode_automatic_info','en','All your consultation hours will be published.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_cach_mode','en','Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cach_mode_automatic','en','Automatic',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_cach_mode','en','Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_update_consultation_hours','en','Edit Consultation Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_consultation_hours','en','Insert Consultation Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_consultation_hours','en','Insert Consultation Hours',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_mail_tutors_only','en','For Administrators only',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_all','en','For all Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_mail_tutors_only','en','For Administrators only',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_type','en','Mail to Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_passed_status_manual_by','en','Manual by',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_mail_type','en','Mail to Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_mail_tutors_only','en','For Tutors and Administrators only',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_mail_all','en','For all Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_mail_tutors_only','en','For Tutors and Administrators only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_mail_type','en','Mail to Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_passed_status_system','en','System',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','simple_user_import','en','XML User Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_passed_status_manual_by','en','Manual by',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_import','en','Import Portfolio Template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','advanced_rating_info','en','The advanced rating is only available if a unit is assigned to the result. Further rating settings are displayed after saving the specified units.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','advanced_rating','en','Advanced Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','simple_user_import','en','XML User Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','rating','en','Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','advanced_rating','en','Advanced Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','advanced_rating_info','en','The advanced rating is only available if a unit is assigned to the result. Further rating settings are displayed after saving the specified units.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','variable_x','en','Variable %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_x','en','Result %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_units_of_category_x','en','Units of Category: %s',NULL,NULL); @@ -14857,19 +14848,19 @@ INSERT INTO `lng_data` VALUES ('assessment','result_co_frac_info','en','Canceled INSERT INTO `lng_data` VALUES ('assessment','result_frac_info','en','i.e.: 1/3 and 2/6 are valid results',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_dec_info','en','Valid results are i.e.: 2,3 and 2.3',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','no_result_type','en','No Restrictions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','result_co_frac','en','Coprime Fraction',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_frac','en','Fraction',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','result_co_frac','en','Coprime Fraction',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_dec','en','Decimal',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','result_type_selection','en','Result Type Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_duplicate_results','en','You used a result variable more than once. This is not allowed in the question text.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','intprecision','en','Divisible By',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','errRecursionInResult','en','The formula contains an infinite recursion.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','intprecision','en','Divisible By',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_save_order','en','Save Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_category_not_exist','en','The requested category does not exist.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_sequence','en','Sequence',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_sel_cat_sel_unit','en','Selected Category: %s, Selected Unit: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','selected_category','en','Selected Category: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_unit_deletion_errors_p_s','en','Could not delete unit:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','selected_category','en','Selected Category: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_unit_deletion_errors_p','en','Could not delete certain units:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_unit_deletion_errors_f_s','en','Cannot delete unit:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_unit_deletion_errors_f','en','Cannot delete certain units:',NULL,NULL); @@ -14885,8 +14876,8 @@ INSERT INTO `lng_data` VALUES ('assessment','un_cat_deletion_errors_f','en','Can INSERT INTO `lng_data` VALUES ('assessment','un_deleted_categories_s','en','Deletion successfully processed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_deleted_categories','en','Deletion successfully processed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_sure_delete_categories_s','en','Are you sure you want to delete the selected category?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','err_wrong_categoryname','en','The category already exists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','un_sure_delete_categories','en','Are you sure you want to delete the selected categories?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','err_wrong_categoryname','en','The category already exists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_rating_advanced_not_allowed','en','A rating other than simple rating is not allowed since you are offering multiple result units with an identical base unit.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_unit_is_baseunit','en','The unit cannot be deleted. It is used as base unit by other units.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_unit_in_results','en','The unit cannot be deleted. It is already in use in one or more test questions.',NULL,NULL); @@ -14894,41 +14885,41 @@ INSERT INTO `lng_data` VALUES ('assessment','err_unit_in_variables','en','The un INSERT INTO `lng_data` VALUES ('assessment','unit_placeholder','en','** New Unit **',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','baseunit','en','Base Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','factor','en','Factor',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','new_category','en','New Unit Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','new_unit','en','New Unit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','new_category','en','New Unit Category',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','categories','en','Categories',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','category','en','Category',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','units','en','Units',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','suggest_range','en','Suggest Range',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','rated_value','en','Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','rated_unit','en','Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','suggest_range','en','Suggest Range',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','units','en','Units',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','category','en','Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','categories','en','Categories',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','rated_sign','en','Sign',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','rating_sign','en','Rate Sign',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','rating_value','en','Rate Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','rating_unit','en','Rate Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','rating_sign','en','Rate Sign',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','rated_sign','en','Sign',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_wrong_rating_advanced','en','Please make sure that the addition of the advanced rating settings equals to 100 percent',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','err_range','en','The maximum range must be greater than the minimum range',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_no_formula','en','You must enter a formula',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','result_units','en','Available Units',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','precision','en','Precision',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','err_range','en','The maximum range must be greater than the minimum range',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tolerance','en','Tolerance (%)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','result_units','en','Available Units',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','range_min','en','Range (Minimum)',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','range_max','en','Range (Maximum)',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','rating_simple','en','Simple Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','unit','en','Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','select_unit','en','--- Select Unit ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','formula','en','Formula',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','results','en','Results',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','select_unit','en','--- Select Unit ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','variables','en','Variables',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','results','en','Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','parseQuestion','en','Parse Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_multi_feedback_files','en','Multi-Feedback Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assFormulaQuestion','en','Formula Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_multi_feedback_file','en','Multi-Feedback File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_multi_feedback_files','en','Multi-Feedback Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_download_zip_structure','en','Download ZIP Structure',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_multi_feedback','en','Evaluation for many Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('glo','glo_term','en','Glossary Term',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_play_cnt','en','Played',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_download_cnt','en','Downloaded',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_play_cnt','en','Played',NULL,NULL); +INSERT INTO `lng_data` VALUES ('glo','glo_term','en','Glossary Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('fold','fold_settings','en','Folder Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_hide_head_foot_print','en','Hide custom header and footer in print view',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_glo_in_lm','en','Should all glossary terms be linked in the learning module now?',NULL,NULL); @@ -14936,8 +14927,8 @@ INSERT INTO `lng_data` VALUES ('content','cont_auto_glossaries','en','Auto-Linke INSERT INTO `lng_data` VALUES ('content','cont_glossaries','en','Glossaries',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_missing_info_deadline','en','To see your received feedback, you still have to give %1$s feedbacks. Access will be granted on: %2$s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_missing_info','en','To see your received feedback, you still have to give %s feedbacks.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_deadline_reached','en','Feedback time is up.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_deadline_info_button','en','Deadline: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_deadline_reached','en','Feedback time is up.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_deadline_info','en','Feedback can be given up to this date and received feedback is only accessible from then on.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_deadline','en','Feedback Deadline',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_object_added','en','A new Cloud object has been added',NULL,NULL); @@ -14947,14 +14938,14 @@ INSERT INTO `lng_data` VALUES ('orgu','orgu_type_available_amd_sets','en','Avail INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_error_custom_icon','en','Could not save the custom icon',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_adv_settings','en','Advanced Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_custom_icon','en','Custom Icon for this Organisational Unit Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_type','en','Organisational Unit Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_orgu_type','en','Organisational Unit Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_settings','en','Organisational Unit Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_type','en','Organisational Unit Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_custom_icon_info','en','All Organisational Units having this type assigned will use the icon in the tree and header.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_missing_title_default_language','en','There must be set a default language and a title for the default language',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_setting_default_lang_prevented','en','Setting \'%s\' as default language prevented by plugins: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_deassign_amd_prevented','en','Deassigning AMDRecord prevented by plugins: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_assign_amd_prevented','en','Assigning AMDRecord prevented by plugins: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_deassign_amd_prevented','en','Deassigning AMDRecord prevented by plugins: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_updating_prevented','en','Updating of object prevented by plugins: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_setting_member_prevented','en','Setting \'%s\' prevented by plugins: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_type_msg_deletion_prevented','en','Deletion of object prevented by plugins: %s',NULL,NULL); @@ -14971,35 +14962,35 @@ INSERT INTO `lng_data` VALUES ('orgu','ext_id_updated','en','The external ID has INSERT INTO `lng_data` VALUES ('orgu','ext_id','en','External ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','edit_translations','en','Title and Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','view_learning_progress_rec','en','View Learning Progress of Unit incl. Subunits',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','local_staff','en','Employees %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','rec_staff','en','Employees %s incl. Subunits',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','placeholder','en','...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','simple_import','en','Simple XML Import',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','simple_xml','en','Simple XML Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','import_xml_file','en','Import File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','simple_xml','en','Simple XML Export',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','simple_import','en','Simple XML Import',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','placeholder','en','...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','rec_staff','en','Employees %s incl. Subunits',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','local_staff','en','Employees %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_import','en','Import Organisational Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_add','en','Add Organisational Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_new','en','New Organisational Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_already_deleted','en','The object was already deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','import_failed','en','The import failed. Make sure your file is in the xml format and has a valid structure.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_already_deleted','en','The object was already deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_new','en','New Organisational Unit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_add','en','Add Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','import_terminated_with_errors','en','The import terminated with errors.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','import_terminated_with_warnings','en','The import terminated with warnings',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','import_successful','en','The import terminated successfully. Created: %s, edited/moved: %s, deleted: %s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','ou_parent_id_not_valid','en','The ou_parent_id could not be found.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','user_changed_successful','en','The user has been changed successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','change_to_employee','en','Change to employee',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','users_successfuly_added','en','The user has been added successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','change_to_superior','en','Change to superior',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','show_learning_progress','en','Show Learning Progress',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','users_successfuly_added','en','The user has been added successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','Actions','en','Actions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','show_learning_progress','en','Show Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','superior','en','Superior',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','employee','en','Employee',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','msg_deleted','en','Deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','Staff','en','Staff',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','employee','en','Employee',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','confirm_deletion_button','en','Delete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','msg_deleted','en','Deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','msg_assignment_to_employee_done','en','Assignment to the employee role successful',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_staff','en','Staff',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','confirm_deletion_and_assign','en','Delete and Assign Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_staff','en','Staff',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','il_orgu_superior','en','Superior',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','deassign_user_successful','en','Users have been successfully deassigned from this role.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_staff_deassign','en','Are you sure you want to deassign these users from this role?',NULL,NULL); @@ -15018,71 +15009,71 @@ INSERT INTO `lng_data` VALUES ('orgu','org_op_read_learning_progress','en','View INSERT INTO `lng_data` VALUES ('orgu','orgunit_position_permissions_not_active_for','en','You cannot override the position specific permissions for the type:',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','org_op_score_participants','en','Score Subordinated Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','org_op_score_participants','en','Score Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','org_op_manage_participants','en','Manage Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','org_op_manage_participants','en','Manage Subordinated Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','org_op_manage_participants','en','Manage Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','org_op_access_results','en','Access Results of Subordinated Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','org_op_access_results','en','Access Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','org_op_manage_members','en','Manage Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_enable_my_staff_info','en','Shows learning progress of own employees.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_enable_my_staff','en','Enable ‘Staff’',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_enable_my_staff_info','en','Shows learning progress of own employees.',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','remove_successful','en','User was removed successfully.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mst','mst_download_certificate','en','Download Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','msg_position_udpated','en','Position aktualisiert',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mst','mst_download_certificate','en','Download Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_cert_issued_on','en','Issued On',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mst','mst_profile_not_fulfilled','en','Fulfilled',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_profile_fulfilled','en','Not met, yet',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mst','mst_profile_not_fulfilled','en','Fulfilled',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_courses_of','en','Enrolments of %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mst','mst_show_courses','en','Enrolments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_memb_status_registered','en','Registered',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mst','mst_show_courses','en','Enrolments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_memb_status_waitinglist','en','Waiting List',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_memb_status_requested','en','Requested',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_opt_all','en','All',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mst','mst_please_select_course','en','Please select a course.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_select_course','en','Select Course',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mst','mst_please_select_course','en','Please select a course.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_list_competences','en','Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_list_certificates','en','Certificates',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_list_courses','en','Enrolments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','over','en','Over',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','scope','en','In',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','my_staff','en','Staff',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_my_staff','en','Staff',NULL,NULL); INSERT INTO `lng_data` VALUES ('mst','mst_list_users','en','Staff List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','my_staff','en','Staff',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','scope','en','In',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','over','en','Over',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','over_-1','en','Everyone',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','scope_3','en','All Organisational Units',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','scope_2','en','Same and Subsequent Organisational Units',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','scope_1','en','Same Organisational Unit',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','add_position','en','Add Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','positions','en','Positions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','add_position','en','Add Position',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','scope_1','en','Same Organisational Unit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','scope_2','en','Same and Subsequent Organisational Units',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','authority','en','Authority',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','authorities','en','Authorities',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','user_assignments_recursive','en','User Assignments Subtree',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','user_assignments','en','User Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','msg_confirm_d_ua','en','Would you like to assign these person to the position Employee of their respective Organisational Units?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','remove_user','en','Remove',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','msg_confirm_remove_user','en','Would you really like to remove the following User from the Position %s?',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','msg_confirm_deletion','en','Would you really like to delete the following Position?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','remove_user','en','Remove',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_orgunit_positions_info','en','If enabled, additional access control rules can be defined by positions in organisational units.',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_orgunit_positions','en','Access Control by Organisation Unit Positions',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_info_only_position_access','en','You are presented only with those members with a Position within your organisational unit. Members with other organisational Positions are not shown to you but may reside in this coures without being shown to you.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','view_learning_progress','en','View Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','view_learning_progress_rec','en','View Learning Progress of Unit incl. Subunits',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','il_orgu_superior','en','Superior',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','il_orgu_employee','en','Employee',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','view_learning_progress','en','View Learning Progress',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','il_orgu_superior','en','Superior',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_orgu','en','Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_orgu_description','en','Creating and editing organisational structure',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','add_value','en','Add New Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_orgu','en','Organisational Units',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','org_units','en','Organisational Units',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','fieldtitle_allow_chars','en','Not allowed chars: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_plachverification','en','Placeholder Certificate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','add_value','en','Add New Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_auth_failed_no_object_created','en','Authentication failed, no Cloud Object has been created.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_verification_placeh','en','Click and edit to insert certificate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','fieldtitle_allow_chars','en','Not allowed chars: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_verification_placehl','en','Certificate Placeholder',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_plachverification','en','Placeholder Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','git_last_commit','en','Last Commit: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','git_hash_short','en','Commit Hash (short): %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_verification_placeh','en','Click and edit to insert certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','git_revision','en','Number: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','svn_path','en','Path: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','git_hash_short','en','Commit Hash (short): %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','svn_root','en','Root: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','svn_path','en','Path: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','svn_revision_last_change','en','Last Changed Revision: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','svn_revision_current','en','Current Revision: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','vc_information_not_determined','en','ILIAS could not determine any version control information.',NULL,NULL); @@ -15093,11 +15084,11 @@ INSERT INTO `lng_data` VALUES ('prtf','prtf_template_import_quota_failure','en', INSERT INTO `lng_data` VALUES ('prtf','prtf_create_template_from_portfolio_info','en','Select a portfolio to use its content and settings for the template.',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_create_template_from_portfolio','en','Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_template_import_blog_ignore','en','Remove Blog Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_template_import_blog_reuse','en','Use Existing Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_template_import_blog_create','en','Create New Blog',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_template_import_blog_reuse','en','Use Existing Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_creation_mode_scratch','en','Create without Template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_creation_mode_template','en','Create from Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_creation_mode','en','New Portfolio',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_creation_mode_template','en','Create from Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_template_editor_placeholder_info','en','This placeholder will be replaced in the portfolio.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_template_inherit_info','en','Use the profile settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_activation_limited_visibility_info','en','If chosen, the portfolio template is visible even outside of the given availability.',NULL,NULL); @@ -15110,8 +15101,8 @@ INSERT INTO `lng_data` VALUES ('rbac','prtt_read','en','User has read access to INSERT INTO `lng_data` VALUES ('rbac','prtt_visible','en','Portfolio Template is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_edit','en','Edit Portfolio Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_copy','en','Copy Portfolio Template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtt','prtt_add','en','Create Portfolio Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtt','prtt_new','en','New Portfolio Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtt','prtt_add','en','Create Portfolio Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_prtt_duplicate','en','Copy Portfolio Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_prtt','en','Portfolio Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_prtt','en','Portfolio Template',NULL,NULL); @@ -15134,31 +15125,31 @@ INSERT INTO `lng_data` VALUES ('rep','rep_new_item_group_unassigned','en','Not A INSERT INTO `lng_data` VALUES ('ps','ps_password_settings','en','Password Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_user_starting_point_invalid_info','en','This feature is currently not active.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','obj_book_duplicate','en','Copy Booking Pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_no_peers_reviewed_yet','en','There was no feedback given yet.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_copy','en','Copy Booking Pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_no_peers_reviewed_yet','en','There was no feedback given yet.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_activate_rating_info','en','if enabled, users can rate this object.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_activate_rating','en','Enable Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_new_objects_auto_info','en','Rating is activated by default for new files, learning modules and wikis.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_new_objects_auto','en','Default Object Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_user_sync_cron','en','LDAP User Synchronization',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_grps_desc','en','General settings for Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_external_setting_edit','en','Edit Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_grps_desc','en','General settings for Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_grps','en','Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_crss_desc','en','General settings for Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_crss','en','Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_wbrs_desc','en','General settings for Web Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('cmps','cmps_slots','en','Slots',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_wbrs','en','Weblink',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_custom_icons','en','Custom Icons',NULL,NULL); INSERT INTO `lng_data` VALUES ('cmps','cmps_enable_creation','en','Enable Creation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_custom_icons','en','Custom Icons',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_object_lists','en','Object Lists',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_rep','en','Repository',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_reps_desc','en','General settings for the Repository',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_reps','en','Repository',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_https','en','HTTPS',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_reps','en','Repository',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_rep','en','Repository',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_start_page_info','en','If there does not exist a page with this title yet, a new page will be created.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_offline_mode_allow_info','en','Users can use the learning module without connecting to the Internet in the SCORM Offline Player. They download the learning module using the ▼-menu. The learning module is presented with an add-on to the Firefox browser. The tracking data are transferred when the user clicks on ‘finish offline mode’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_offline_mode_allow','en','Enable Offline Mode',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_offline_mode_allow_info','en','Users can use the learning module without connecting to the Internet in the SCORM Offline Player. They download the learning module using the ▼-menu. The learning module is presented with an add-on to the Firefox browser. The tracking data are transferred when the user clicks on ‘finish offline mode’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_finished_reason','en','You are receiving this e-mail because you activated notifications for the survey mentioned above.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_finished_introduction','en','The following participant has finished the survey.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_change_notification_reason','en','You are receiving this e-mail because you activated notifications for the blog mentioned above.',NULL,NULL); @@ -15183,63 +15174,65 @@ INSERT INTO `lng_data` VALUES ('common','preview_status_missing','en','No previe INSERT INTO `lng_data` VALUES ('common','preview_status_failed','en','Failed to create the preview.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_status_pending','en','The preview has not been created yet. Please try again later.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_status_deleting','en','The preview gets deleted...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','preview_delete','en','Delete Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_status_creating','en','The preview gets created. This may take some time...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','preview_delete','en','Delete Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_create','en','Create Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','max_previews_per_object_info','en','Defines the maximum number of preview images that are created per file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','max_previews_per_object','en','Number of preview images per file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','enable_preview','en','Enable Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_preview_info','en','Enable this option to display preview images on supported file types.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_settings','en','File Preview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','enable_preview','en','Enable Preview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','preview_none','en','Preview (not created yet)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_show','en','Show Preview',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','preview_none','en','Preview (not created yet)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview','en','Preview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_updated','en','Your feedback has been saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_rating','en','Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_updated','en','Your feedback has been saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_no_peers','en','There are no peers to give feedback for.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review_give','en','Give Feedback',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_peer_review','en','Peer-Feedback',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_add_members_from_container_grp','en','Add Users of Current Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_add_members_from_container_crs','en','Add Users of Current Course',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_text_assignment_show','en','Show Text',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_add_members_from_container_grp','en','Add Users of Current Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_remove_appraisees','en','Remove Appraisee(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_files_returned_text','en','Assignment Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_text_assignment_edit','en','Edit Text',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_text_assignment_show','en','Show Text',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_files_returned_text','en','Assignment Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_type_text','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_confirm_booking_schedule_number_of_objects_info','en','Please state the numbers of objects to book.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_confirm_booking_schedule_number_of_objects','en','Booking Confirmation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_multi_download_info','en','Enables that multiple folders/files can be selected to download them as zip archive.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','enable_multi_download','en','«Download multiple objects» enabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_obj_perm_download','en','You do not have sufficient rights to download the following objects:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','enable_multi_download','en','«Download multiple objects» enabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','download_multiple_objects','en','Download Multiple Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','download_selected_items','en','Download',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_obj_no_download','en','cannot be downloaded.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','download_selected_items','en','Download',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_without_session_info','en','This ensures the storage of SCORM 2004 learning data even if ILIAS session expired. For SCORM 1.2, storage without session is always enabled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_without_session','en','SCORM 2004: enable storing data without session',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_allow_html_info','en','Enables users to include HTML and/or Javascript in their blog postings. This can lead to security issues.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_member_filter','en','Members of Course / Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_mandatory_filter_info','en','Please set at least one filter attribute. Text filters have to be at least 4 characters long.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_date_filter','en','Shared From',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_object_type','en','Type of Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_user_filter','en','Login/Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_object_type','en','Type of Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_type','en','Shared With',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_date','en','Date of Share',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','cld_download','en','User can download files from the cloud object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','edit_in_online_editor','en','Open in online editor',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','cld_edit_in_online_editor','en','User can open and edit files in online editor',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','cld_upload','en','User can upload files to the cloud object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','cld_download','en','User can download files from the cloud object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_permission','en','User can change permission settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','cld_upload','en','User can upload files to the cloud object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_delete','en','User can delete cloud object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','cld_write','en','User can edit cloud object settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','folders_create','en','Create Folders',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_folders_create','en','Folders may be created in the cloud object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_visible','en','Cloud Object is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_read','en','User can open a Cloud Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','cld_write','en','User can edit cloud object settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','folders_visible','en','Folders Visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_folders_visible','en','Folders are visible in the cloud object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','delete_folders','en','Delete Folders',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_delete_folders','en','Users can delete Folders in the cloud object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','files_visible','en','Files Visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_files_visible','en','Files are visible in the cloud object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','folders_visible','en','Folders Visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','delete_files','en','Delete Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cld_delete_files','en','Users can delete Files in the cloud object',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_header_solution','en','Best Solution:',NULL,NULL); @@ -15248,8 +15241,8 @@ INSERT INTO `lng_data` VALUES ('assessment','tst_show_solution_compare_desc','en INSERT INTO `lng_data` VALUES ('assessment','tst_show_solution_compare','en','Show Best Solution in ‘Detailed Results’',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_cld','en','Cloud Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cld','en','Cloud Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cld','cld_upload_files','en','Upload Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_upload_failed','en','Upload Failed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cld','cld_upload_files','en','Upload Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_upload_failed_max_filesize','en','Upload Failed (Max. File Size exceeded)',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_unknown_exception','en','Unknown Exception',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_service_specific_settings','en','Specific Settings',NULL,NULL); @@ -15269,11 +15262,11 @@ INSERT INTO `lng_data` VALUES ('cld','cld_no_service_active','en','No cloud-plug INSERT INTO `lng_data` VALUES ('cld','cld_invalid_input','en','Invalid Input',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_new','en','New Cloud Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_info_add_folder_to_current_directory','en','Add Folder to current directory',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cld','cld_id_does_not_exist_in_file_tree_in_session','en','ID does not exist in file tree in session:',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_info_add_file_to_current_directory','en','Add File to current directory',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cld','cld_id_does_not_exist_in_file_tree_in_session','en','ID does not exist in file tree in session:',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_id_already_exists_in_file_tree_in_session','en','ID already exists in file tree in session:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cld','cld_folder_name','en','Folder Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_folder_not_existing_on_service','en','Folder not existing on service:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cld','cld_folder_name','en','Folder Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_folder_creation_failed','en','Folder Creation Failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_folder_created','en','Folder created',NULL,NULL); INSERT INTO `lng_data` VALUES ('cld','cld_folder_already_existing_on_service','en','Folder already existing on service:',NULL,NULL); @@ -15324,8 +15317,8 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_courseType','en','Course Type INSERT INTO `lng_data` VALUES ('tax','tax_assigned_items','en','Assigned Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_item_sorting','en','Support Sorting of Assigned Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_node_sorting','en','Sorting of Nodes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tax','tax_max_one_tax','en','You can use maximum one taxonomy in this context.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_added','en','Taxonomy has been created.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tax','tax_max_one_tax','en','You can use maximum one taxonomy in this context.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','exp_file_created','en','Export file created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','redirection_url','en','URL of webpage',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','redirect_always','en','always to defined webpage',NULL,NULL); @@ -15367,18 +15360,18 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_cron_reminder_days','en','Nu INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_cron_reminder','en','Send Consultation Hour Reminder',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking_reminder_body','en','your appointment with \"%s\" starts soon.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking_reminder_subject','en','Reminder for \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_export_apps','en','Booked Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking_message_tbl','en','Comment',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_field_ch','en','Consultation Hour Appointments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_assign_participants','en','Assign Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_export_apps','en','Booked Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_cancel_booking_sure','en','Do you really want to cancel the following bookings?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_assign_participants','en','Assign Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_delete_booking_sure','en','Do you really want to delete the following bookings?',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_canceled_bookings','en','The selected bookings have been canceled.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_app_bookings','en','Bookings',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_deleted_bookings','en','The selected bookings have been deleted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_reject_booking','en','Cancel Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_bookings_tbl','en','Booked Appointments',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_app_bookings','en','Bookings',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_delete_booking','en','Delete Booking',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_reject_booking','en','Cancel Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_grp_delete_sure','en','Do you really want to delete the following consultation hour groups?',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_grp_no_assignment','en','-- Not Assigned --',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_grp_selection','en','Assignment to Consultation Hour Groups',NULL,NULL); @@ -15401,22 +15394,22 @@ INSERT INTO `lng_data` VALUES ('registration','registration_codes_roles_limitati INSERT INTO `lng_data` VALUES ('registration','registration_codes_roles_title','en','Role for New Accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_codes_roles_local','en','Local Role(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_codes_no_assigned_role','en','No Predefined Assigned Role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rpc_pdf_generation','en','PDF-Generation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rpc_pdf_font','en','Fonts',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rpc_pdf_font_info','en','Additional fonts for the generation of PDF files. Other fonts than ‘Helvetica’ and ‘unifont’ must be installed on the ILIAS server.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_reminder_link','en','URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_rename_folder','en','Rename Folder',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_link','en','Link to Survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rpc_pdf_generation','en','PDF-Generation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_reminder_subject','en','Survey \"%s\" was not finished',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_reminder_salutation','en','Hello %s,',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_reminder_body','en','the following survey has not been finished by you yet',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_link','en','Link to Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_salutation','en','Hello %s,',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_body','en','The following survey has been finished by all participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_subject','en','All participants have finished the survey \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_recipients_invalid','en','Please state users with write permission.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_recipients','en','Tutors (Login[s])',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_notification_target_group_invited_info','en','Number of current recipients: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_tutor_setting','en','One E-Mail after all Participants Finished',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_notification_target_group_invited_info','en','Number of current recipients: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_target_group_parent_course_inactive','en','No parent course/group given - no reminders will be sent!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_target_group_parent_course','en','All members of parent course/group',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_notification_target_group','en','Target Group',NULL,NULL); @@ -15426,11 +15419,11 @@ INSERT INTO `lng_data` VALUES ('survey','survey_reminder_end','en','End',NULL,NU INSERT INTO `lng_data` VALUES ('survey','survey_reminder_start','en','Start',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_reminder_setting','en','Remind Users to Participate',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_add_folder','en','Add New Sub-folder',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_results','en','Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_analysis','en','Analysis',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_all_survey_competences','en','All Survey Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_raters','en','Raters',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_results','en','Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_gap_analysis','en','Gap Analysis',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_all_survey_competences','en','All Survey Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_eval_competences','en','Competence Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_appraisee_close_table','en','Closed on',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_sure_appraisee_close','en','Are you sure you want to close the survey for all of your raters?',NULL,NULL); @@ -15443,11 +15436,11 @@ INSERT INTO `lng_data` VALUES ('survey','survey_360_raters_status_info','en','Ra INSERT INTO `lng_data` VALUES ('survey','survey_360_appraisee_info','en','Appraisee Info',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_rate_other_appraisees','en','Rate appraisees',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_no_closed_appraisees','en','No appraisee has closed his survey yet.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_360_appraisee_is_closed','en','The appraisee has closed his survey.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_back','en','Back',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_360_appraisee_is_closed','en','The appraisee has closed his survey.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_competences','en','Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_skl_comp_assignm_not_supported','en','Competence assignment is not supported for this question type.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_rater_finished','en','Survey Finished',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_competences','en','Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_raters_finished','en','Raters Finished',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_rater_subject_default','en','You have been invited as rater to a 360° survey.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_rater_message_content_anonymous_default','en','Your survey access code is [code]. You can start the survey in your web browser using the URL [url].',NULL,NULL); @@ -15470,11 +15463,11 @@ INSERT INTO `lng_data` VALUES ('survey','survey_skill_level','en','Competence Le INSERT INTO `lng_data` VALUES ('survey','survey_skill_thresholds','en','Competence Thresholds',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_remove_competence','en','Remove Competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_assign_competence','en','Assign Competence',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_skill','en','Competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_activate_skill_service','en','Activate Competence Service',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_skill_assign','en','Question/Competence Assignment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_confirm_level_resources_removal','en','Do you really want to remove the following resources from the competence level?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_skill','en','Competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_add_resource','en','Add Resource',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_confirm_level_resources_removal','en','Do you really want to remove the following resources from the competence level?',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_resources','en','Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_confirm_user_removal','en','Do you really want to remove the following users from this profile?',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_add_user_to_profile','en','Add users or roles to profile',NULL,NULL); @@ -15483,12 +15476,12 @@ INSERT INTO `lng_data` VALUES ('skmg','skmg_assign_user','en','Assign User',NULL INSERT INTO `lng_data` VALUES ('skmg','skmg_assigned_users','en','Assigned Roles and Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_confirm_remove_level_ass','en','So you really want to remove the following competence levels from the profile?',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_select_skill_level_assign','en','Please select a skill.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_profile','en','Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_remove_levels','en','Remove Levels',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_profile','en','Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_assign_level','en','Assign Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_assigned_skill_levels','en','Assigned Competence Levels',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_delete_profiles','en','Do you really want to delete the following profiles?',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_edit_profile','en','Edit Profile',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_delete_profiles','en','Do you really want to delete the following profiles?',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_add_profile','en','Add Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_profiles','en','Profiles',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_appraisee','en','Appraisee',NULL,NULL); @@ -15498,8 +15491,8 @@ INSERT INTO `lng_data` VALUES ('survey','survey_360_add_self_appraisee','en','Ad INSERT INTO `lng_data` VALUES ('survey','survey_360_no_appraisees','en','There are currently no appraisees for you to rate.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_add_external_rater','en','Add External Rater',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_sure_delete_raters','en','Are you sure you want to remove the following raters for %s?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_360_edit_raters','en','Manage Raters',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_sure_delete_appraises','en','Are you sure you want to remove the following appraisees?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_360_edit_raters','en','Manage Raters',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_results_all','en','All Feedbacks',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_appraisees','en','Appraisees',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_results_own','en','Access to Feedback of Own Raters',NULL,NULL); @@ -15507,126 +15500,126 @@ INSERT INTO `lng_data` VALUES ('survey','survey_360_results_none','en','No Acces INSERT INTO `lng_data` VALUES ('survey','survey_360_results','en','Access To Results For Appraisees',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_self_appraisee','en','Open 360° Feedback',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_self_raters','en','Appraisees Select Own Raters',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_360_self_evaluation','en','Self-Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_360_mode','en','360° Feedback',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_360_self_evaluation','en','Self-Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_code_delete_sure','en','Are you sure you want to delete the following access codes?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_posting_edit_approval_info','en','Posting remains to be approved by a tutor before being published.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_delete_own_account_aborted','en','Aborted deletion, account was not changed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','edit_userassignment','en','Edit User Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_posting_edit_approval_info','en','Posting remains to be approved by a tutor before being published.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','frm_import','en','Import Forum',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_delete_own_account_logout_confirmation','en','Your account has been flagged for deletion. Please authenticate to continue the process.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_delete_own_account_logout_button','en','Proceed to Authentication',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','file_version_replace','en','All versions replaced',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_version_rollback','en','Rollback to version %s from %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_rollback','en','Make this the current version',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','edit_questions','en','Edit Questions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','frm_import','en','Import Forum',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','file_rollback_done','en','File version %s is now the current version.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','file_version_new_version','en','New version',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_version_create','en','Initial version',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','file_version_replace','en','All versions replaced',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','file_version_new_version','en','New version',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','file_rollback_done','en','File version %s is now the current version.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_rollback_select_exact_one','en','Only one file version can be selected to make it the current version.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_versions_deleted','en','The selected file versions were successfully deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_confirm_delete_all_versions','en','You selected all file versions. This will delete the whole file object. Do you want to continue?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','file_confirm_delete_versions','en','Are you sure to delete the following file versions?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','download_link','en','Download Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','file_confirm_delete_versions','en','Are you sure to delete the following file versions?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','concurrent_uploads_info','en','Defines the number of files that can be uploaded per upload process at the same time.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','concurrent_uploads','en','Number of concurrent uploads',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_repository_dnd_upload_info','en','Enables that files can be dragged from the computer directly onto an object in the repository to start uploading the files into this object.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_repository_dnd_upload','en','Enable in Repository',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','upload_settings','en','Upload Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','enable_dnd_upload','en','Enable drag-and-drop upload',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_dnd_upload_info','en','Files can be uploaded with drag-and-drop from the local computer if enabled.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','error_extraction_failed','en','The extraction of the archive and its directories failed. Probably because you don’t have the permission to create folders or categories within this object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','enable_dnd_upload','en','Enable drag-and-drop upload',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','upload_settings','en','Upload Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','drop_files_on_repo_obj_info','en','Drop the files here to upload them into this object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','error_extraction_failed','en','The extraction of the archive and its directories failed. Probably because you don’t have the permission to create folders or categories within this object.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','extracting','en','Extracting...',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','uploading','en','Uploading...',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','error_upload_was_zero_bytes','en','The upload failed as this is a folder, the file size is 0 bytes or exceeded the max. upload size or the file was renamed meanwhile.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','error_empty_file_or_folder','en','The file size is 0 bytes or it is a folder.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','upload_pending','en','Pending',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','upload_files','en','Upload files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','upload_files_title','en','Upload files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cancel_file_upload','en','Do you really want to cancel all pending uploads?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','upload_files','en','Upload files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','num_of_selected_files','en','%s file(s) selected',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','drag_file_here','en','Drag-and-drop your file here',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','selected_files','en','Selected files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','drag_files_here','en','Drag-and-drop your files here',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','select_files_from_computer','en','Select Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','drag_file_here','en','Drag-and-drop your file here',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','show_all_details','en','Show all details',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','select_files_from_computer','en','Select Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','drag_files_here','en','Drag-and-drop your files here',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hide_all_details','en','Hide all details',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_lp_list_gui_info','en','If activated, the learning progress status is included in objects lists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_collection_tlt_learner_subitem','en','You have spent %s of the %s needed for completion (%s%%).',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_list_gui','en','Dashboard, Repository, Search',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_collection_manual_learner_lm_info','en','Activate all chapters you completed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_lp_list_gui_info','en','If activated, the learning progress status is included in objects lists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_collection_tlt_learner_info','en','The learning progress for this object is based on the typical learning time.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_collection_manual_learner_lm_info','en','Activate all chapters you completed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_collection_manual_learner_changed_ts','en','Changed on',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_collection_manual_learner_info','en','The learning progress for this object has to be set manually.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection_manual_info','en','Users decide themselves if they have accomplished a chapter of the learning module. After completing a chapter, users have to set this chapter\'s status to ‘Completed’ on the \'Info\'-tab.
Chapters can be selected as Progress-relevant on this screen after you have saved this setting.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection_manual','en','Users Monitor and Set Status per Chapter Themselves',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection_tlt_info','en','The status will be automatically set according to time a user spends working on the chapters . The status \'Completed\' is assigned once users exceed the minimally required Typical Learning Time for all progress-relevant chapters.
The Typical Learning Time per chapter can be set on this screen after you have saved this setting.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection_tlt','en','Minimally Required Amount of Time Spent per Chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','bibs_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_edit_role_assignment','en','Edit Role -> Group Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','bibs_delete','en','User can delete library entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibs_copy','en','User can copy bibliography',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','bibs_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibs_write','en','User can edit bibliography settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','bibs_delete','en','User can delete library entries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','bibl_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibs_visible','en','Bibliography-Administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibs_read','en','User can read bibliography content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','bibl_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibl_delete','en','User can move or delete bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','bibl_copy','en','Copy Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibl_write','en','User can edit bibliography settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','bibl_copy','en','Copy Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibl_read','en','User can read bibliography content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','filter_type_info','en','Please choose a filter type for the field.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','bibl_visible','en','Bibliography is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','filter_type_info','en','Please choose a filter type for the field.',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_field_info','en','Please choose a field for which you want to add a filter.',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_type_3','en','Multi-Selectinput',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_type_2','en','Selectinput',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_type_1','en','Textinput',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','identifier','en','Identifier',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','standard','en','Standard',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','translate','en','Translate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','standard','en','Standard',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','order','en','Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibtex','en','Bibtex',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','ris','en','Ris',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','fields','en','Fields',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','custom','en','Custom',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','field','en','Field',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','custom','en','Custom',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','filter_type','en','Filter Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','add_filter','en','Add Filter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','news_title_updated','en','Bibliography list updated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_library_img','en','Image-URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_settings_new','en','Add Library',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_settings_edit','en','Edit Library',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','news_title_created','en','New bibliography list added',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_settings_new','en','Add Library',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','obj_bibl_duplicate','en','Duplicate Bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','detail_view','en','Detail View',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_settings_libraries','en','Libraries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_library_name','en','Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','news_title_updated','en','Bibliography list updated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','add_filter','en','Add Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_library_url','en','Base-URL',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_library_img','en','Image-URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_library_name','en','Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_settings_libraries','en','Libraries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','detail_view','en','Detail View',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibliography_file','en','Bibliography File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','obj_bibl_duplicate','en','Duplicate Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_edit','en','Edit Bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','override_entries','en','Override Entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','Type','en','Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_import','en','Import Bibliography',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','override_entries','en','Override Entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','download_original_file','en','Download Original File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_add','en','Add Bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('bibl','bibl_link_online','en','Lookup inventory',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_import','en','Import Bibliography',NULL,NULL); INSERT INTO `lng_data` VALUES ('bibl','bibl_new','en','New Bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_bibs_desc','en','Bibliography Administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_link_online','en','Lookup inventory',NULL,NULL); +INSERT INTO `lng_data` VALUES ('bibl','bibl_add','en','Add Bibliography',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_bibl','en','Bibliographies',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_bibs','en','Bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','dcl_edit_content','en','Edit entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_bibs_desc','en','Bibliography Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_bibl','en','Bibliography',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_bibl','en','Bibliographies',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','dcl_edit_content','en','Edit entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_rbac_roles_without_read_access_on_any_standard_view','en','The following rbac roles have read access on the data collection, but no read access on any standard view of a table:',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_no_read_access_on_any_standard_view','en','You don\'t have read access on any standard view of a table.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_no_export_fields_available','en','No fields activated for export. Mark at least one field as exportable in the table settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_no_export_content_available','en','No data available for export.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_no_export_data_available','en','No data or fields available for export.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_supported_filetypes_desc','en','You can set the allowed extensions comma seperated. For example: pdf, docx',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_supported_filetypes','en','Allowed file-extensions',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_export_finished','en','Export finished',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_supported_filetypes','en','Allowed file-extensions',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_export_started','en','Asynchronous Export started',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_save_record','en','Save Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dlc_xls_async_export','en','Asynchronous XLSX-Export',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_save_record','en','Save Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_storing_records_no_permission','en','You have no permission to change the record afterwards.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_storing_records','en','Please validate and confirm your input.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_save_confirmation_desc','en','Users have to confirm a new DataCollection entry.',NULL,NULL); @@ -15656,8 +15649,8 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_last_edited_by_description','en','The INSERT INTO `lng_data` VALUES ('dcl','dcl_last_edit_by','en','Last edited by',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_last_edited_by','en','Last edited by',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_owner_description','en','The owner of the entry.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_owner','en','Owner',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_owner_name','en','Owner (Name)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_owner','en','Owner',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_last_update_description','en','The date the entry was last edited.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_last_update','en','Last Edited',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_creation_date_description','en','The date on which the entry was created.',NULL,NULL); @@ -15669,15 +15662,15 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_fields_deleted','en','Deleted fiel INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_delete_fields','en','Do you really want to delete these fields?',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_comments_desc','en','Displays the number of comments for a Entry.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_comments','en','Comments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_desc','en','Descending Order (DESC)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_asc','en','Ascending Order (ASC)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_desc','en','Descending Order (DESC)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_please_select','en','--- Please select ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_title_not_matching','en','The titles of the excel sheet and the Data Collection table do not match. Rename the sheet for a successfull import.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_title_unique','en','There exists already a table with this title. Title must be unique.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_field_title_unique','en','There exists already a field with this title. Title must be unique.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_simulate_info','en','Simulating the import will not add any fields into the Data Collection but may give you feedback on problems with the import file, thus helping you to prevent corrupted entries.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_multiple_selection','en','Multiple Selection',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_field_title_unique','en','There exists already a field with this title. Title must be unique.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_simulate_import','en','Simulate Import',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_simulate_info','en','Simulating the import will not add any fields into the Data Collection but may give you feedback on problems with the import file, thus helping you to prevent corrupted entries.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_file_format_description','en','The file needs to be an excel .XLSX file with the data you want to import on the first sheet. In the first row there have to be exactly the names of the fields (case sensitive) you want to import and in the following rows you can add the values. It is strongly recommended to simulate your import first. When importing reference or selection fields with multi selection, commas and/or semicolons can be used as delimiters.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_import_records .xls','en','Excel-Import',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_std_field_not_importable','en',' - Standard fields are not importable.',NULL,NULL); @@ -15686,29 +15679,29 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_max_import','en','The maximum amount o INSERT INTO `lng_data` VALUES ('dcl','dcl_import_terminated','en','The import terminated. Entries added',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_file_not_readable','en','The file could not be read. Please make sure to upload an XLSX file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_no_such_reference','en','The following value is not available in the reference table:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_no_warnings','en','The import terminated with no warnings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_not_supported_in_import','en','This type of field is not supported in the import',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_no_warnings','en','The import terminated with no warnings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_no_executable_job_selected','en','Please select at least one executable cron-job.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_edit_success','en','Schedule updated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_reset_success','en','Cron-Job reset.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_deactivate_success','en','Cron-Job deactivated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cron','cron_action_activate_success','en','Cron-Job activated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_run_fail','en','Cron-Job failed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cron','cron_action_activate_success','en','Cron-Job activated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_run_success','en','Cron-Job run successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_reset_sure','en','Are you sure you want to reset the cron-job \"%s\"?',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_deactivate_sure','en','Are you sure you want to deactivate the cron-job \"%s\"?',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_activate_sure','en','Are you sure you want to activate the cron-job \"%s\"?',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_run_sure','en','Are you sure you want to run the cron-job \"%s\"?',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_run','en','Execute',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cron','cron_running_since','en','Running since',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_changed_by_crontab','en','SYSTEM',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cron','cron_running_since','en','Running since',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_value','en','Interval',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_type','en','Schedule',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_in_days','en','Every %s days',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_in_hours','en','Every %s hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_in_minutes','en','Every %s minutes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cron','cron_schedule_quarterly','en','Quarterly',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_yearly','en','Yearly',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cron','cron_schedule_quarterly','en','Quarterly',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_monthly','en','Monthly',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_weekly','en','Weekly',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule_daily','en','Daily',NULL,NULL); @@ -15716,8 +15709,8 @@ INSERT INTO `lng_data` VALUES ('cron','cron_status_inactive','en','Inactive',NUL INSERT INTO `lng_data` VALUES ('cron','cron_status_active','en','Active',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_edit','en','Edit',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_reset','en','Reset',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cron','cron_action_deactivate','en','Deactivate',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_action_activate','en','Activate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cron','cron_action_deactivate','en','Deactivate',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cro_job_rc_job_auto_deactivation_time_limit','en','Cron job deactivated because it has been inactive for 3 hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cro_job_rc_job_no_result','en','Cron job did not return a proper result',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cro_job_rc_job_manual_reset','en','Cron job re-activated by admin',NULL,NULL); @@ -15727,8 +15720,8 @@ INSERT INTO `lng_data` VALUES ('cron','cron_result_status_ok','en','Ok',NULL,NUL INSERT INTO `lng_data` VALUES ('cron','cron_result_status_no_action','en','Ok, no processing',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_result_status_invalid_configuration','en','Invalid Configuration',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_last_run','en','Last Run',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cron','cron_result','en','Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_result_info','en','Result Info',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cron','cron_result','en','Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_status_info','en','Status Info',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_status','en','Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('cron','cron_schedule','en','Schedule',NULL,NULL); @@ -15739,19 +15732,19 @@ INSERT INTO `lng_data` VALUES ('assessment','oq_btn_define_pictures','en','Switc INSERT INTO `lng_data` VALUES ('assessment','oq_btn_define_terms','en','Switch to term definition view',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','oq_btn_nest_pictures','en','Switch to picture nesting view',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','oq_btn_nest_terms','en','Switch to term nesting view',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','merged_threads_successfully','en','The selected threads were merged successfully',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','switch_threads_for_merge','en','The selected thread is older than the target thread. To ensure a successful merge, the source and target thread will be switched.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_merge_target','en','Target: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','merged_threads_successfully','en','The selected threads were merged successfully',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_merge_src','en','Selected Thread: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','error_same_thread_ids','en','Source and target thread have to be different.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_selected_merge_src','en','Selected Thread to Merge: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_merge_src','en','Selected Thread: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','not_allowed_to_merge_into_another_forum','en','It is not possible to merge threads of different forums.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_selected_merge_src','en','Selected Thread to Merge: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','merge','en','Merge',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','please_choose_target','en','Please choose a thread as merge target.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_sure_merge_threads','en','Are you sure you want to merge these threads? Warning: This action can not be undone.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_toggle_draft_admin','en','Deactivate Blog Posting',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','merge','en','Merge',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_sticky_threads_manual_sorting','en','Manual Sorting of ‘Sticky Threads’',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_sticky_threads_manual_sorting_info','en','‘Sticky Threads’ are always listed at the top of the list of threads. The ‘Sticky Threads’ can be sorted manually.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_sticky_threads_manual_sorting','en','Manual Sorting of ‘Sticky Threads’',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_sticky_threads_latest_at_top_info','en','‘Sticky Threads’ are always listed at the top of the list of threads. Within the ‘Sticky Threads’ the thread with the latest posting iss listed at top.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_sticky_threads_latest_at_top','en','‘Sticky Threads’ at Top',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','sorting_manual_sticky','en','Manual sorting of sticky threads',NULL,NULL); @@ -15762,18 +15755,18 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_sync_trees','en','Synchronise Director INSERT INTO `lng_data` VALUES ('tos','tos_account_reg_not_possible','en','A self registration is not possible because of a missing user agreement. Please contact your system administrator for further information.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_crit_type_usr_language_info','en','The criterion is fulfilled if the selected language is set for a user profile. Please note that this criterion type can be attached only once.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_crit_type_usr_language','en','Profile Language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tos','tos_crit_type_usr_global_role_info','en','The criterion is fulfilled if the user is assigned to the selected role.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_crit_type_usr_global_role','en','User has Global Role',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tos','tos_crit_type_usr_global_role_info','en','The criterion is fulfilled if the user is assigned to the selected role.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_criterion_assignment_must_be_unique_update','en','You cannot change the criterion as desired. There is already an identical criterion attached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_criterion_assignment_must_be_unique_insert','en','You cannot attach this criterion with this value. There is already an identical criterion attached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_no_documents_exist_cant_save','en','Currently there are no terms of service documents at all. Please add at least one document before activated this service..',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_period_until','en','Until',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_no_documents_exist','en','Currently there are no terms of service documents at all.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tos','tos_period','en','Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_period_from','en','From',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','tos_accepted_content','en','Accepted Content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tos','tos_period','en','Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_last_modified','en','Last Change',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_acceptance_history','en','Acceptance History',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','tos_accepted_content','en','Accepted Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','tos_not_accepted_yet','en','Not accepted yet',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_tbl_hist_head_criteria','en','Criteria',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_tbl_hist_head_document','en','Document',NULL,NULL); @@ -15786,10 +15779,10 @@ INSERT INTO `lng_data` VALUES ('tos','tos_deleted_documents_p','en','The documen INSERT INTO `lng_data` VALUES ('tos','tos_deleted_documents_s','en','The document has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_sure_delete_documents_p','en','Are you sure you want to delete the selected documents?',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_sure_delete_documents_s','en','Are you sure you want to delete the document?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tos','tos_document','en','Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_form_criterion','en','Criterion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tos','tos_form_attach_criterion_head','en','Attach Criterion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tos','tos_document','en','Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_form_edit_criterion_head','en','Edit Criterion Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tos','tos_form_attach_criterion_head','en','Attach Criterion',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_doc_crit_changed','en','The criterion has been changed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_doc_crit_attached','en','The criterion has been attached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tos','tos_doc_crit_detached','en','The criterion has been detached.',NULL,NULL); @@ -15836,69 +15829,70 @@ INSERT INTO `lng_data` VALUES ('common','edited_on','en','Edited on',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_term_must_belong_to_glo','en','The action can only be performed on terms, which are defined in this glossary.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','itgr_visible','en','Item group is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_anonymous_user_missing_perm','en','Anonymous users currently have no permission to access this learning module.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_custom_menu_entries','en','Custom Menu Entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_dir_relation','en','Directory Reference',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_custom_menu_entries','en','Custom Menu Entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_current_dir','en','Current Directory',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_filter_by_values','en','Filter by Attribute Values',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_add_attribute_btn','en','Add Attribute',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_delete_attribute_btn','en','Delete Last Attribute',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_add_attribute_btn','en','Add Attribute',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_subdir_name','en','Subdirectory Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_subdir_type','en','Subdirectory Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_subdir_value','en','Subdirectory Value',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_subdir_type','en','Subdirectory Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_create_subdirs','en','Create Subdirectories',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_filter_info','en','Manual values, comma separated',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_all_values','en','All Values',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_filter','en','Filter Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_form_all_values','en','All Values',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_mapping_form_title','en','Course Assignment for Category:',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_overview','en','Mapping Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_attributes','en','Mapping Attributes',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_atts_table','en','Attribute Mapping Configuration',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_lecturer','en','Lecturer',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_title','en','Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_member_auth_type','en','Authentication Mode (Participants)',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_term','en','Term',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_orgunit','en','Organisational Unit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_member_auth_type','en','Authentication Mode (Participants)',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_organisation','en','Organisation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_att_orgunit','en','Organisational Unit',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_multiple_atts','en','Multiple Attributes',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_all_in_one_cat','en','Course Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_all_in_one_info','en','Create all new courses in one category.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_all_in_one','en','Course in one Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_def_cat','en','Default Category',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_all_in_one_info','en','Create all new courses in one category.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_def_cat_info','en','Please enter the id of a category where all courses will be created that cannot be handled by other rules.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_def_cat','en','Default Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cmap_enable','en','Course Allocation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_on','en','On',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_off','en','Off',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rcat_write','en','User can edit settings of ECS Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_filter_by_type','en','Filter by Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rcat_visible','en','ECS Category is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rcat_write','en','User can edit settings of ECS Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rcat_read','en','User can use ECS Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rcat_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rcat_delete','en','User can move or delete ECS Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rwik_write','en','User can edit settings of ECS Wiki',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rwik_read','en','User can use ECS Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rwik_visible','en','ECS Wiki is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rwik_edit_permission','en','User can change permission settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rwik_read','en','User can use ECS Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rwik_delete','en','User can move or delete ECS Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rtst_write','en','User can edit settings of ECS Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rtst_visible','en','ECS Test is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rtst_read','en','User can use ECS Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rtst_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rtst_delete','en','User can move or delete ECS Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rlm_write','en','User can edit settings of ECS Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rlm_visible','en','ECS Learning Module is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rlm_write','en','User can edit settings of ECS Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rlm_read','en','User can use ECS Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rlm_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rlm_delete','en','User can move or delete ECS Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rglo_read','en','User can use ECS Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rglo_visible','en','ECS Glossary is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rglo_write','en','User can edit settings of ECS Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rglo_edit_permission','en','User can change permission settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rglo_visible','en','ECS Glossary is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rglo_read','en','User can use ECS Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rglo_delete','en','User can move or delete ECS Glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rglo_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rgrp_write','en','User can edit settings of ECS Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rgrp_visible','en','ECS Group is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rgrp_read','en','User can use ECS Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rgrp_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rfil_write','en','User can edit settings of ECS File',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rgrp_delete','en','User can move or delete ECS Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rfil_write','en','User can edit settings of ECS File',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rfil_visible','en','ECS File is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rfil_read','en','User can use ECS File',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rfil_edit_permission','en','User can change permission settings',NULL,NULL); @@ -15916,9 +15910,9 @@ INSERT INTO `lng_data` VALUES ('rbac','ecss_visible','en','ECS settings are visi INSERT INTO `lng_data` VALUES ('rbac','ecss_read','en','User can read general ECS settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','ecss_edit_permission','en','User can edit permission settings of ECS administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_ecss_desc','en','General ECS Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('webr','invalid_links_tbl','en','Invalid Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tool_setting_news','en','News',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_ecss','en','ECS',NULL,NULL); -INSERT INTO `lng_data` VALUES ('webr','invalid_links_tbl','en','Invalid Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_status_legend','en','Legend',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_status_deleted','en','Deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_status_mapped','en','Mapped',NULL,NULL); @@ -15927,16 +15921,16 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_status_pending_unmapped','en','Pending INSERT INTO `lng_data` VALUES ('ecs','ecs_status_pending_unmapped_discon','en','Pending (mapped, disconnection possible)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_webcal_sync','en','External Calendar Synchronisation',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_webcal_sync_info','en','Automatically synchronise external calendars every x minutes.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','lp_other_users','en','See learning progress overview of other users',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','trac_lp_other_users','en','See learning progress overview of other users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','error_reading_file','en','There was an error reading the file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','lp_other_users','en','See learning progress overview of other users',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','sort_by_date','en','By Date',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_option_offline','en','Offline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','error_reading_file','en','There was an error reading the file',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_option_online','en','Online',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_option_offline','en','Offline',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','help_assign_help_ids','en','Chapter/Screen-IDs Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_lp_learner_access','en','View Own Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_learner_access_info','en','If active, users can access their own learning progress status.',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','file_download','en','Download File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_lp_learner_access','en','View Own Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_mail_notification_body','en','you have been invited to an appointment.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_mail_notification_subject','en','Appointment Invitation: \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cg_notification','en','Course/Group Notification',NULL,NULL); @@ -15951,10 +15945,10 @@ INSERT INTO `lng_data` VALUES ('mcst','mcst_no_extraction_possible','en','Sorry, INSERT INTO `lng_data` VALUES ('mcst','mcst_image_extracted','en','Image has been extracted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','edit_assignments','en','Edit Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_extract_preview_image','en','Extract Preview Image',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_manage','en','Manage',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_play','en','Play',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_list','en','List',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_gallery','en','Tiles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_manage','en','Manage',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_list','en','List',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_viewmode','en','Presentation Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_question_pool_usage_inactive_info','en','The questions can be added to a question pool manually later but are created only for this survey first.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_question_pool_usage_inactive','en','Questions are created directly in the survey.',NULL,NULL); @@ -15966,28 +15960,28 @@ INSERT INTO `lng_data` VALUES ('content','cont_sc_usession_info','en','Periodica INSERT INTO `lng_data` VALUES ('content','cont_auto_last_visited_info','en','Users are presented with the SCO/Asset they most recently visited when opening the learning module again.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_debugging','en','Debugging',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_rte_settings','en','RTE Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_scorm_options','en','SCORM Options',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_presentation','en','Presentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_highlight_class','en','Highlight Class',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_scorm_options','en','SCORM Options',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','qpl_copy','en','Copy Question Pool Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_mode_plugin','en','Plugin',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rating','rating_export_rating','en','Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_highlight_class','en','Highlight Class',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_export_date','en','Date',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rating','rating_export_rating','en','Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_mode_plugin','en','Plugin',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_export_category','en','Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_all_topics','en','All Topics',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_topic','en','Topic',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_selected_topic','en','Selected Topic',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_initial_attached_content','en','Initial Extra Content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_topic','en','Topic',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_deleted_confirmation','en','Your account has been deleted. An e-mail containing detailed information has been sent to you.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_import','en','Import Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_import','en','Import Blog',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_import','en','Import Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','system_check_no_owner','en','Ownerless Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_number_votes','en','%s Ratings',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_permissions_form','en','User actions',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_empty_detailed_view_success','en','The detailed view definition has been deleted successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_delete_detailed_view_text','en','The detailed view definition of entries of this table will be removed irreversibly, the entries and fields themselves will not be changed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_table_info_title','en','Info',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_delete_detailed_view_title','en','Do you really want to delete this detailed view?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_table_info_title','en','Info',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_delete_field','en','Do you really want to delete this field?',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_deactivate_view','en','Deactivate this view',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_activate_view','en','Activate this view',NULL,NULL); @@ -15996,8 +15990,8 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_visible','en','Visible for all users', INSERT INTO `lng_data` VALUES ('dcl','dcl_no_content_warning','en','Attention, the Data Collection is online but does not have content yet!',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_contribute_other_roles','en','In addition to the list of ‘Contributors’, users with one of the following roles can also add postings: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','blog_contribute','en','User can create postings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','il_blog_contributor','en','Blog Author',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_add_contributor','en','Add Contributor',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','il_blog_contributor','en','Blog Author',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_activation_limited_visibility_info','en','Outside the indicated period, only the title of the survey will be displayed while the question are not accessible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_activation_online_info','en','Only if a survey is online, users can participate in it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_block_results_available_on','en','The results will be available on %s.',NULL,NULL); @@ -16014,19 +16008,19 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_text_area','en','Textarea',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_ilias_reference_link','en','Show as link in table view',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_reference_link_info','en','Detailed View must be active in referenced table',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_reference_link','en','Show as link to referenced entry',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_absolute','en','Current Votes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_link','en','Link to exercise',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_subject_add','en','Added as team member to upload assignment of exercise \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_body_add','en','you have been added to a team upload assignment.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_subject_rmv','en','Removed from a team upload assignment of exercise \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_body_rmv','en','you have been removed from a team upload assignment.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_link','en','Link to exercise',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_absolute','en','Current Votes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_body_add','en','you have been added to a team upload assignment.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_team_notification_subject_add','en','Added as team member to upload assignment of exercise \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_download_info','en','Download Additional Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_post_booking_file','en','File',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_post_booking_text','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_post_booking_information','en','Post Booking Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_additional_info_file','en','Additional Description',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','sess_copy','en','Copy Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','events','en','Sessions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','sess_copy','en','Copy Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_needs_approval','en','Posting is not yet approved',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_approve','en','Approve Posting',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_enable_approval_info','en','Postings are published only after being approved by a user with permission ‘Edit Settings’ for this blog.',NULL,NULL); @@ -16052,31 +16046,31 @@ INSERT INTO `lng_data` VALUES ('poll','poll_voting_period_and_results','en','Vot INSERT INTO `lng_data` VALUES ('poll','poll_delete_votes_sure','en','Are you sure you want to delete all votes?',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_delete_votes','en','Delete All Votes',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_population','en','%s Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_copy','en','Copy Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_copy','en','Copy Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('webr','webr_copy','en','Copy Weblink',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_copy','en','Copy Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_copy','en','Copy Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','file_copy','en','Copy File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('webr','webr_copy','en','Copy Weblink',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_copy','en','Copy Forum',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_copy','en','Copy Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('cat','cat_copy','en','Copy Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_copy','en','Copy Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tool_setting_calendar','en','Calendar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_copy','en','Copy Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_display_action_menu','en','Enable possibility to copy or link the referenced module',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_error_parsing_expression','en','Error parsing expression',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_prop_expression_info','en','Supported operators: %s
Supported functions: %s
Use brackets ‘(’, ‘)’ to group calculations.
Concatenate strings and placeholders with &: ‘The result is ’ & [[Int 1]] * [[Int2]]
Using functions: SUM([[Int 1]];[[Int 2]])

Available fields (click on title to copy field inside expression):
%s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_prop_expression','en','Expression',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_notimage_exception','en','The file has to be a picture.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_formula','en','Formula',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_prop_expression','en','Expression',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_height','en','Height',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_notimage_exception','en','The file has to be a picture.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_status','en','Your Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_mob','en','Media Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_width','en','Width',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_ilias_reference','en','Link to an ILIAS module',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_learning_progress','en','Show the learning progress of the linked module of the viewer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_ilias_reference','en','Link to an ILIAS module',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_settings_saved','en','Table Settings have been saved.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_rating','en','Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_editable_in_table_gui','en','Please vote in the table view.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_rating','en','Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_legend_placeholders','en','Placeholders',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_table_edited','en','Table Settings saved',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_edit_table','en','Edit Table Settings',NULL,NULL); @@ -16088,14 +16082,14 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_setting_global_vis_repos','en', INSERT INTO `lng_data` VALUES ('dcl','dcl_url','en','URL or E-Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_limit_end','en','End',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_limit_start','en','Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_limited','en','Limited Add / Edit / Delete Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_delete_perm','en','User can delete entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_limited','en','Limited Add / Edit / Delete Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_edit_perm','en','User can edit entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_add_perm','en','User can add entries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_locked_tooltip','en','Disable this field for users to edit. Does not include roles with the permission \'Edit Settings\'',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_locked','en','Locked',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_notification_deactivated','en','Notification Deactivated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_locked_tooltip','en','Disable this field for users to edit. Does not include roles with the permission \'Edit Settings\'',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_notification_activated','en','Notification Activated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_notification_deactivated','en','Notification Deactivated',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_notification_deactivate_dcl','en','Deactivate Notification for Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_changed_by','en','Changed by',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_notification_activate_dcl','en','Activate Notification for Data Collection',NULL,NULL); @@ -16109,92 +16103,92 @@ INSERT INTO `lng_data` VALUES ('rbac','contribute','en','Contribute',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_change_notification_subject','en','Data Collection \"%s\" has been changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('rtst','rtst_call','en','Call ECS Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tst_export_enabled','en','Release this Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_tst_export_obj_settings','en','Test Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tst_export_disabled','en','Do not release this Test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_tst_export_obj_settings','en','Test Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tst_export','en','Test Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_rtst','en','ECS Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_rtst','en','ECS Tests',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_prtf','en','Portfolio',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_rtst','en','ECS Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_excv','en','Exercise Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_field_modified','en','Field updated',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tstv','en','Test Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_create_field','en','Create Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_update_field','en','Update Field',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_edit_field','en','Edit Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_edit_record','en','Edit Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_update_record','en','Update Entry',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_edit_field','en','Edit Field',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_grp_export_enabled','en','Release this Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rgrp','rgrp_call','en','Call ECS Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_grp_export_disabled','en','Do not release this Group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_grp_export_enabled','en','Release this Group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_grp_export_obj_settings','en','Group Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_grp_export','en','Group Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rfil','rfil_version_tstamp','en','Upload Date',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_rgrp','en','ECS Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_grp_export_obj_settings','en','Group Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_rgrp','en','ECS Groups',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_rgrp','en','ECS Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_file_export_enabled','en','Release this File',NULL,NULL); INSERT INTO `lng_data` VALUES ('rfil','rfil_call','en','Call ECS File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_file_export_disabled','en','Do not release this File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rfil','rfil_version_tstamp','en','Upload Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_file_export_obj_settings','en','File Release Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_file_export_disabled','en','Do not release this File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rglo','rglo_call','en','Call ECS Glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_rfil','en','ECS File',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_rfil','en','ECS Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_file_export','en','File Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_rfil','en','ECS File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rglo','rglo_call','en','Call ECS Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_glo_export_disabled','en','Do not release this Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_glo_export_enabled','en','Release this Glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_rglo','en','ECS Glossaries',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_glo_export','en','Glossary Releases',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_glo_export_obj_settings','en','Glossary Release Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export_enabled','en','Release this Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rlm','rlm_call','en','Call ECS Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_glo_export_disabled','en','Do not release this Glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_glo_export_enabled','en','Release this Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_rglo','en','ECS Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_rglo','en','ECS Glossaries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_rlm','en','ECS Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_rlm','en','ECS Learning Modules',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export','en','Learning Module Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export_obj_settings','en','Learning Module Release Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rlm','rlm_call','en','Call ECS Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export_disabled','en','Do not release this Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export_enabled','en','Release this Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export_obj_settings','en','Learning Module Release Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_lm_export','en','Learning Module Releases',NULL,NULL); INSERT INTO `lng_data` VALUES ('rwik','rwik_call','en','Call ECS Wiki',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_rlm','en','ECS Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_rlm','en','ECS Learning Modules',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_wiki_export_disabled','en','Do not release this Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_wiki_export_enabled','en','Release this Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_availability','en','Availability',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_wiki_export_obj_settings','en','Wiki Release Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_wiki_export_disabled','en','Do not release this Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_wiki_export','en','Wiki Releases',NULL,NULL); INSERT INTO `lng_data` VALUES ('rcat','rcat_call','en','Call ECS Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_rwik','en','ECS Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_rwik','en','ECS Wikis',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_export_enabled','en','Release this Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_export_disabled','en','Do not release this Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_crs_export_enabled','en','Release this Course',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_export','en','Category Releases',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_export_obj_settings','en','Category Release Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_crs_export_obj_settings','en','Course Release Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_export','en','Category Releases',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_crs_export_disabled','en','Do not release this Course',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_crs_export_enabled','en','Release this Course',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_crs_export_obj_settings','en','Course Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_crs_export','en','Course Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','search_at_current_position','en','At Current Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','search_globally','en','Globally',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','search_at_current_position','en','At Current Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_element_refers_removed_itgr','en','This content element refers to an item group that has been removed in the meantime.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_resources_of_type','en','Resources of Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_record_deleted','en','Entry deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_confirm_delete_record','en','Delete this Entry?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_record_deleted','en','Entry deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_save_order','en','Save Order',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_table_created','en','Table created',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_save','en','Save Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_description','en','Field Description',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_table_created','en','Table created',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_order','en','Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_fieldtitle','en','Field Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_check_values','en','Check Values sent from SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_check_values_info','en','The Test Tool will check whether the values sent from the SCOs adhere to the SCORM standard.
The SCORM Standard is very demanding concerning the saving of values. Not all learning modules meet the requirements of the standard. This Options allows checking if the module adheres to the Standard or not. Do not check this option if you just want to check if ILIAS can run this module or not.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_check_values','en','Check Values sent from SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_auto_last_visited','en','Continue with Chapter Last Visited',NULL,NULL); -INSERT INTO `lng_data` VALUES ('itgr','itgr_assignment','en','Assignment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','itgr_new','en','New Item Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','itgr_add','en','Add Item Group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('itgr','itgr_item','en','Item',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','itgr_new','en','New Item Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('itgr','itgr_assignment','en','Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('itgr','itgr_assigned_materials','en','Assigned Materials',NULL,NULL); +INSERT INTO `lng_data` VALUES ('itgr','itgr_item','en','Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('itgr','itgr_materials','en','Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_votes_no_edit','en','This poll already contains votes. You cannot edit the poll until you delete these votes.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_itgr','en','Create Item Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','itgr_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','itgr_copy','en','User can copy item group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','itgr_delete','en','User can move or delete item group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','itgr_copy','en','User can copy item group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','itgr_write','en','User can edit content and settings of item group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','itgr_read','en','User can see items in item group',NULL,NULL); INSERT INTO `lng_data` VALUES ('itgr','itgr_edit','en','Edit Item Groups',NULL,NULL); @@ -16210,75 +16204,75 @@ INSERT INTO `lng_data` VALUES ('common','objs_rcat','en','ECS Categories',NULL,N INSERT INTO `lng_data` VALUES ('rbac','rbac_role_imported','en','The role has been imported.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_import_role','en','Import Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_poll_duplicate','en','Copy Poll',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','add_entry','en','Add/Edit entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_module_uploaded','en','Help package uploaded.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','add_entry','en','Add/Edit entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_sure_delete_help_modules','en','Are you sure that these packages should be deleted?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('help','help_modules','en','Help Packages',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_help_file','en','Help Package File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('help','help_modules','en','Help Packages',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_member_passed_status_changed','en','Passed Status Changed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_matrix_layout_percentages_sum_invalid','en','The column settings do not sum up to 100%.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_list_reg_limit_full','en','No places left',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_reg_limit_places','en','Free places',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_matrix_layout_percentages_sum_invalid','en','The column settings do not sum up to 100%.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_reg','en','Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_list_reg_noreg','en','No Registration Possible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_list_reg_limit_full','en','No places left',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_reg_period','en','Registration Period',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_list_reg_noreg','en','No Registration Possible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_reg_end','en','Registration End',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_reg_start','en','Registration Begin',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','hlps_visible','en','Help System administration is visible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','hlps_write','en','User can edit settings of Help System and upload new versions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','hlps_visible','en','Help System administration is visible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','hlps_read','en','User has read access to Help System administration.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_hlps','en','Help System',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','hlps_edit_permission','en','User can change permissions of Help System administration.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_hlps','en','Help System',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_hlps_desc','en','Settings for the online help',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','lucene_offline_filter','en','Online-Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','crs_list_reg_limit_places','en','Free places',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','lucene_offline_filter','en','Online-Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','crs_list_reg_limit_full','en','No places left',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','crs_list_reg','en','Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','crs_list_reg_period','en','Registration Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','crs_list_reg_noreg','en','No Registration Possible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','crs_list_reg_period','en','Registration Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','crs_list_reg_end','en','Registration End',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_show_x','en','Show %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','crs_list_reg_start','en','Registration Begin',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_create_pdfeed','en','Add New Webfeed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','block_show_pdfrmpostdraft','en','Show Postings Drafts',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','block_show_chatviewer','en','Show Chat Viewer',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_show_pdbookm','en','Show Bookmarks',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','block_show_pdfrmpostdraft','en','Show Postings Drafts',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_show_pdnotes','en','Show Notes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','block_show_chatviewer','en','Show Chat Viewer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','block_show_pdtag','en','Show My Tags',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_show_pdnews','en','Show News',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_show_pdmail','en','Show Mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','block_show_pdtag','en','Show My Tags',NULL,NULL); -INSERT INTO `lng_data` VALUES ('registration','reg_allowed_domains_info','en','Use * as wildcard and ; as separator. E.g. \"*@ilias.de\". Registration codes override these rules.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','block_show_pdcal','en','Show Calendar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('registration','reg_allowed_domains_info','en','Use * as wildcard and ; as separator. E.g. \"*@ilias.de\". Registration codes override these rules.',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_allowed_domains','en','Allowed E-Mail Address Domains',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_email_domains','en','The following e-mail address domains are valid: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_show_adv','en','Show Advanced Knowledge',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_hide_adv','en','Hide Advanced Knowledge',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_show_adv','en','Show Advanced Knowledge',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_AdvancedKnowledge','en','Advanced Knowledge',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_user_starting_point_info','en','Select the page or object which is shown after login.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_add_assignment','en','Add Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_user_starting_point','en','Personal Starting Point',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_cat_assignments','en','Style/Category Assignments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_substyle','en','Substyle',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cal_sync_success','en','Successfully synchronised calendar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_substyle','en','Substyle',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_cat_assignments','en','Style/Category Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cal_synchronize','en','Synchronise Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_remote_url','en','URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_remote','en','Web Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_assign_categories','en','Assign Categories',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_rl','en','Calendar Location',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_remote_url','en','URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_local','en','Local Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_move_user_styles','en','Change Style of Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_rl','en','Calendar Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_substyles','en','Substyles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_assign_categories','en','Assign Categories',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_get_link','en','Select Target Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('form','form_link_internal','en','Inside ILIAS',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_move_user_styles','en','Change Style of Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_link_external','en','World Wide Web',NULL,NULL); +INSERT INTO `lng_data` VALUES ('form','form_link_internal','en','Inside ILIAS',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_imported_success','en','Imported %1$s appointments.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_converted_file','en','File has been converted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_videoalternative_title','en','Alternative Video File (Use in Browser)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_import_file_info','en','Choose the file, that contains your calendar appointments.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_import_file','en','Import File',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_import_tbl','en','Import Appointments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_import_appointments','en','Import Appointments',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_import_file','en','Import File',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_add_calendar','en','Add Calendar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_import_appointments','en','Import Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_keep_minimal_x_items_info','en','Number of older items held available regardless of the system wide defined RSS period.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_keep_minimal_x_items','en','Keeping Older Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_ref_delete_confirmation_info','en','Would you like to remove the following members from this course? If these members are to be removed from courses linked into this course, please activate the respective checkboxes.',NULL,NULL); @@ -16288,8 +16282,8 @@ INSERT INTO `lng_data` VALUES ('crs','crs_ref_member_update_info','en','Alle neu INSERT INTO `lng_data` VALUES ('crs','crs_ref_member_update','en','Neue Mitglieder hinzufügen',NULL,NULL); INSERT INTO `lng_data` VALUES ('objref','objref_failure_target_type','en','Das Ziel des Links muss vom folgendem Typ sein:',NULL,NULL); INSERT INTO `lng_data` VALUES ('objref','objref_title_settings','en','Titel des verlinkten Objekts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('objref','objref_edit_title','en','Titel',NULL,NULL); INSERT INTO `lng_data` VALUES ('objref','objref_reuse_title','en','Titel des verlinkten Objekts übernehmen',NULL,NULL); +INSERT INTO `lng_data` VALUES ('objref','objref_edit_title','en','Titel',NULL,NULL); INSERT INTO `lng_data` VALUES ('objref','objref_edit_ref','en','Ziel des Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('objref','objref_custom_title','en','Eigenen Titel verwenden',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_preview_picture_info','en','Only supported by the following main media types:',NULL,NULL); @@ -16297,33 +16291,33 @@ INSERT INTO `lng_data` VALUES ('mcst','mcst_preview_picture','en','Preview Pictu INSERT INTO `lng_data` VALUES ('cat','cat_import','en','Import Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_filter_has_status','en','Show also objects with status ‘not attempted’',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','imprint','en','Legal Notice',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_imprint_inactive','en','Legal notice is not active and users are not able to access it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_imprint','en','Legal Notice',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_imprint_inactive','en','Legal notice is not active and users are not able to access it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_log_add_file','en','Added file %s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_log_create_team','en','Team created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_log_add_member','en','Added member %s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_team_log','en','Team Log',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_log_remove_member','en','Removed member %s.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_team_log','en','Team Log',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_private_calendars','en','Private Calendars',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_profile_data','en','Profile Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_bookmarks','en','Bookmarks',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_import_personal_data','en','Import Personal Data',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','pd_download_last_export_file','en','Download Last Export File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','pd_export_profile','en','Export Personal Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_at_least_one','en','There has to be at least 1 team member.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','pd_export_profile','en','Export Personal Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','pd_download_last_export_file','en','Download Last Export File',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_members','en','Team Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_team','en','Team',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_team_member_add','en','Add Team Member (Search)',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_team_member_container_add','en','Add Team Member from Course/Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_team_member_add','en','Add Team Member (Search)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_team','en','Team',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_member','en','Mail to Member',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_type_upload_team','en','Team Upload',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_mc_to_sc_confirmation','en','Swichting from multiple selection to single selection might lead to a loss of data in existing entries. Are you sure to continue?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_filter_changeable','en','Filter changeable',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_field_visible','en','Visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_std_filter','en','Standardfilter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_filter_changeable','en','Filter changeable',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_tableview_fieldsettings','en','Fieldspecific Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_tableview_confirm_delete','en','Do you really want to delete the following View?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_std_filter','en','Standardfilter',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_tableviews_confirm_delete','en','Do you really want to delete the following Views?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_tableview_confirm_delete','en','Do you really want to delete the following View?',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_info_alternatives','en','You do not have enough permissions to view this record, or there is no detailed view defined for this view. Choose a view from the list below to view the record anyway.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_tableviews_order_updated','en','Order of views updated',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_tables_confirm_delete','en','Do you really want to delete the following Tables?',NULL,NULL); @@ -16337,8 +16331,8 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_msg_tableview_updated','en','View upda INSERT INTO `lng_data` VALUES ('dcl','dcl_delete_tables','en','Delete Tables',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_delete_views','en','Delete Views',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_tableview_add','en','Add New View',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_tableview','en','View',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_detailed_view','en','Detailed View',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_tableview','en','View',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_tableviews_table','en','Views of Selected Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_tableviews','en','Views',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_select','en','Select for Presentation',NULL,NULL); @@ -16349,8 +16343,8 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_create_fields','en','Click a table in INSERT INTO `lng_data` VALUES ('dcl','dcl_no_fields_yet','en','There are no fields defined for this table thus you cannot create any entries yet.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_export_enabled','en','Allow export function for all users',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_no_search_results_found_for','en','No modules have been found for',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_any','en','Any',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_noturl_exception','en','You have to enter a Link (beginning with http:// or www.) or an e-mail address.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_any','en','Any',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_not_checked','en','Not checked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_checked','en','Checked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_unknown_exception','en','The value you entered is not valid.',NULL,NULL); @@ -16361,22 +16355,22 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_wrong_regex','en','The text you entere INSERT INTO `lng_data` VALUES ('dcl','dcl_wrong_length','en','The text you entered is to long.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_max_digits','en','Maximum Number of Digits',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_max_text_length','en','Maximum Length',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_regex_info','en','(without delimiter)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_filter','en','Available in filter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_regex_info','en','(without delimiter)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_regex','en','Regular Expression',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_length_info','en','(for more than 200 characters, use the additional option Text Area)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_length','en','Length',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_field_required','en','Required',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_field_description','en','Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_fileupload','en','Fileupload',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_field_description','en','Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_datetime','en','Date Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_date_selection','en','Date Selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_boolean','en','Boolean',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_reference','en','Reference',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_boolean','en','Boolean',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_text','en','Text Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_text_selection','en','Text Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_datatype','en','Datatype',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_number','en','Integer',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_text','en','Text Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_edit','en','Update Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_new_field','en','New Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_new_table','en','New Table',NULL,NULL); @@ -16384,87 +16378,87 @@ INSERT INTO `lng_data` VALUES ('dcl','dcl_table_create','en','Create Table',NULL INSERT INTO `lng_data` VALUES ('dcl','dcl_view_viewdefinition','en','Detailed View',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_list_fields','en','Fields Of Selected Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_list_tables','en','Available Tables',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_field_datatype','en','Field Data Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_required','en','Required Field',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_field_datatype','en','Field Data Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_add_new_table','en','Add New Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_add_new_view','en','Add New View',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_add_new_field','en','Add New Field',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_add_new_table','en','Add New Table',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_list_fields','en','Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_list_visibility_and_filter','en','Visibility and filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_add_new_record','en','Add New Entry',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_list_fields','en','Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_table_id','en','Table ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_activate_notification','en','Enable Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_neutral_answer','en','Text for a Neutral Answer (‘Not Specified’, ‘I don\'t know’ etc.)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_block_message_already_voted','en','You already voted in this poll.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_block_message_no_answers','en','This poll is incomplete.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_block_message_inactive','en','This poll will be available from %s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_block_message_already_voted','en','You already voted in this poll.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_vote','en','Vote',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_block_message_offline','en','This poll is offline.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_sortorder','en','Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_percentage','en','Current Percentage',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_vote','en','Vote',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_answers','en','Possible Answers',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_sortorder','en','Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_answer','en','Answer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_view_results_after_period','en','After Voting Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_activation_online_info','en','Activate this setting to make the poll accessible to users.',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_view_results_after_vote','en','After Vote',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_view_results_after_period','en','After Voting Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_view_results_always','en','Always',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_view_results_never','en','Never',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_image','en','Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_view_results','en','Display Results',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','fld_create_poll','en','Create Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_question','en','Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_image','en','Image',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','fld_create_poll','en','Create Poll',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','poll_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_poll','en','Create Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','poll_copy','en','User can copy poll',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','poll_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','poll_delete','en','User can move or delete poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','poll_read','en','User can participate at poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','poll_write','en','User can edit poll settings and content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_edit','en','Edit Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','poll_visible','en','Poll is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('poll','poll_add','en','Add Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_copy','en','Copy Poll',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_edit','en','Edit Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('poll','poll_new','en','Add New Poll',NULL,NULL); -INSERT INTO `lng_data` VALUES ('poll','poll_add','en','Add Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_poll','en','Polls',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_poll_dupliate:','en','Copy Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_sahs_duplicate','en','Copy Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_poll','en','Poll',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_wiki_duplicate','en','Copy Wiki',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','enable_thread_ratings_info','en','If activated users are allowed to rate threads.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','enable_thread_ratings','en','Thread Rating',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','number_of_threads','en','Displayed Number of Threads per Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','enable_thread_ratings_info','en','If activated users are allowed to rate threads.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_rating','en','Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','number_of_threads','en','Displayed Number of Threads per Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','sort_by_posts','en','By Reply',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_forum_notification_disabled','en','You will no longer be notified about new messages in this forum.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_glo_duplicate','en','Copy Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_htlm_duplicate','en','Copy HTML Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_mcst_duplicate','en','Copy Mediacast',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_mep_duplicate','en','Copy Media Pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_glo_duplicate','en','Copy Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_confirm_booking_no_schedule','en','Are you sure you want to book the following object?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_mep_duplicate','en','Copy Media Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none','en','No Schedule',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none_info','en','This type can be used for seminar papers, seminar places and such.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_fixed_info','en','This type can be used for rooms, video projectors and such.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','booking_nr_of_items','en','Nr of Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_fixed','en','Fixed Schedule',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','booking_nr_of_items','en','Nr of Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_activation_limited_visibility_info','en','Before and after the indicated period it is only the test\'s title that will be displayed. The participants cannot take the test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_activation_online_info','en','If online, participants can take the test.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_visibility_until','en','Limited Availability Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_overlay_submit','en','Submit Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_visibility_until','en','Limited Availability Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_deactivate_page_rating','en','Deactivate Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_activate_page_rating','en','Activate Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_activate_extended_rating','en','Activate Rating Categories',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_activate_new_page_rating','en','Activate Rating For New Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rating','rating_category_deleted','en','Category deleted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_accented','en','Accented',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_no','en','No Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_light','en','Light',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rating','rating_category_deleted','en','Category deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_dark','en','Dark',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_accented','en','Accented',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_highlight_mode','en','Highlight Mode',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_light','en','Light',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_hover','en','Hover',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_always','en','Always',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_category_delete_sure','en','Are you sure you want to delete the following rating categories? All ratings for that category will be lost.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rating','rating_category_updated','en','Category saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_update_positions','en','Save Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_category_update','en','Save',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rating','rating_category_updated','en','Category saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_category_edit','en','Edit Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_category_created','en','Category created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_category_add','en','Add',NULL,NULL); @@ -16483,42 +16477,42 @@ INSERT INTO `lng_data` VALUES ('rep','rep_activation_limited_end','en','Finish T INSERT INTO `lng_data` VALUES ('rep','rep_activation_limited_start','en','Start Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_activation_access','en','Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_activation_online_info','en','Set the course online to make it visible and available for course members. If not, only course administrators and tutors will have access to it.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_activation_online','en','Online',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_activation_availability','en','Availability',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tax','tax_please_select_target','en','Please select the target.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tax','tax_manual','en','Manual',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_activation_online','en','Online',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_order_nr','en','Order Nr',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_target_within_nodes','en','The target must not be a sub-node of the selected items.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','glo_show_taxonomy','en','Show Taxonomy',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tax','tax_please_select_target','en','Please select the target.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ical_infoscreen','en','Subscribe',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_alphabetical','en','Alphabetical',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tax','tax_manual','en','Manual',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','soap_connect_timeout','en','Connection Timeout',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','soap_connect_timeout_info','en','The maximum time in seconds until a connect attempt to the SOAP-Webservice is interrupted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','glo_show_taxonomy','en','Show Taxonomy',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_matriculation','en','Attribute for Matriculation Number',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_at_least_one_moderator','en','There has to be at least one moderator.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','select_max_one_thread','en','Please select one thread only!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_dcl_duplicate','en','Copy Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','freetext_answers','en','Open Answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_at_least_one_moderator','en','There has to be at least one moderator.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_dcl_duplicate','en','Copy Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_err_formula_field_not_found','en','Field with title \'%s\' not found',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_dcl','en','Create Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_field_title_change_warning','en','You changed the title of the field hence some placeholders in the view definition might be broken. Those have to be fixed manually should the occasion arise.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','dcl_add_entry','en','User can add/edit entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_dcl','en','Create Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dcl_edit_permission','en','User can change permission settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','dcl_add_entry','en','User can add/edit entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dcl_delete','en','User can move or delete data collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dcl_write','en','User can edit settings and content of data collection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','dcl_copy','en','User can copy data collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dcl_read','en','Read access to Data Collection',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','dcl_copy','en','User can copy data collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dcl_visible','en','Data Collection is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_tables','en','Tables',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_invalid_regex_config','en','The regular expression configured for this field is invalid. Check the settings to solve the problem.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_import','en','Import Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_in_export','en','In Export',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_copy','en','Copy Data Collection',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_tables','en','Tables',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_import','en','Import Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_edit','en','Edit Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_add','en','Create Data Collection',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_copy','en','Copy Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_new','en','Create New Data Collection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dcl','dcl_record','en','Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('dcl','dcl_hello','en','Dear',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dcl','dcl_record','en','Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_dcl','en','Data Collections',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_dcl','en','Data Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','trac_write','en','Edit settings in Statistics and Learning Progress administration',NULL,NULL); @@ -16526,19 +16520,19 @@ INSERT INTO `lng_data` VALUES ('user','user_delete_own_account','en','Delete Acc INSERT INTO `lng_data` VALUES ('rbac','rbac_create_blog','en','Create Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','blog_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','blog_delete','en','User can move or delete blog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','blog_copy','en','User can copy blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','blog_write','en','User can edit blog settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','blog_copy','en','User can copy blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','blog_read','en','User can read blog content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','blog_visible','en','Blog is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_copy','en','Copy Blog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_blog_duplicate','en','Copy Blog',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','blog_visible','en','Blog is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_blog','en','Blogs',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_blog_duplicate','en','Copy Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_toggle_tooltips_info','en','Show Help Tooltips for menues and tabs.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('help','help_toggle_tooltips','en','Help Tooltips',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_open_online_help','en','Open Online Help',NULL,NULL); +INSERT INTO `lng_data` VALUES ('help','help_toggle_tooltips','en','Help Tooltips',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_filter','en','Filter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('help','help_all','en','All',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_component','en','Component',NULL,NULL); +INSERT INTO `lng_data` VALUES ('help','help_all','en','All',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_tt_text','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_tooltip_id','en','Tooltip ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_tooltips','en','Help Tooltips',NULL,NULL); @@ -16554,9 +16548,9 @@ INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_requested_hint_c INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_table_column_hint_index','en','Index',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_index_column_label','en','Hint %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_back_to_question','en','Back to Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_confirm_request','en','Request Hint',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_cancel_request','en','Back to Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_request_confirmation','en','Do you really want to request hint %s? For this hint %s point(s) will be deducted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_cancel_request','en','Back to Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_confirm_request','en','Request Hint',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','button_show_requested_question_hints','en','Show Requested Hints',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','button_request_next_question_hint','en','Request Next Hint',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','button_request_question_hint','en','Request Hint',NULL,NULL); @@ -16598,8 +16592,8 @@ INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_table_no_items', INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_table_header','en','Hints for Question: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_question_hints_tab','en','Hints',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_setting_offer_hints_info','en','Participants request hints to answer a question. With every hint presented the maximum number of points to be earned decreases.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_setting_offer_hints_label','en','Hints',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_current_term','en','Current Term',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_setting_offer_hints_label','en','Hints',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_code_role_info','en','If you use a registration code, the role selection may be superseded by the code.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_ownership','en','Repository Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_tab_ownership','en','My Repository Objects',NULL,NULL); @@ -16612,9 +16606,9 @@ INSERT INTO `lng_data` VALUES ('common','remove_entries','en','Remove Entries',N INSERT INTO `lng_data` VALUES ('user','user_lv_do_not_store','en','Never remember last visited',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_lv_keep_only_for_session','en','Remember only during current session',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_lv_keep_entries','en','Remember last visited',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_ordering_manual','en','Manual',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_store_last_visited','en','Last Visited',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_ordering_title','en','Titles in Alphabetical Order',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_ordering_manual','en','Manual',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_ordering_creation_date_desc','en','By Creation Date Newest Item on Top',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_ordering_creation_date_asc','en','By Creation Date, Oldest Item on Top',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_ordering','en','Sorting',NULL,NULL); @@ -16626,14 +16620,14 @@ INSERT INTO `lng_data` VALUES ('user','user_delete_own_account_notification_emai INSERT INTO `lng_data` VALUES ('blog','blog_enable_rss','en','Activate RSS',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_enable_rss_info','en','The RSS feed is public and independent of blog sharing or user permissions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_allow_delete_own_account','en','Allow users to delete own account',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_multiple_reference_deletion_intro','en','Further references exist for this object.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_multiple_reference_deletion_instruction','en','Please select the ones which should also be deleted:',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_object_references_cannot_be_read','en','No permissions for %s more references.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_multiple_reference_deletion_intro','en','Further references exist for this object.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_no_permission_to_delete','en','No permission to delete',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_goto_parent_membership_info','en','Only members can access the target object.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_closed_misc','en','Misc.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_members_print_title','en','Group Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_members_print_title','en','Session Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_members_print_title','en','Group Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_print_list','en','Generate List',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_file_basename','en','Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('cptch','cptch_freetype_support_needed','en','To use this feature you need to enable freetype support in your PHP.',NULL,NULL); @@ -16641,10 +16635,10 @@ INSERT INTO `lng_data` VALUES ('forum','cont_captcha_code','en','Code',NULL,NULL INSERT INTO `lng_data` VALUES ('cptch','cptch_wrong_input','en','Wrong Input',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_captcha_code','en','Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_captcha_verification','en','User Verification',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_lm_duplicate','en','Copy Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_edit_date','en','Edit Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_edit_date_info','en','Publication status does not depend on this date.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_course_group_notification_link','en','Link:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_lm_duplicate','en','Copy Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_notify_manscoring_done_body_msg_topic','en','Your test has been graded manually:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_notify_manscoring_done_body_msg_reason','en','You have received this notification, because you participated in this test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_subject_course_group_notification','en','Daily Mail for %s',NULL,NULL); @@ -16661,17 +16655,17 @@ INSERT INTO `lng_data` VALUES ('content','cont_online_help_ids','en','Screen-IDs INSERT INTO `lng_data` VALUES ('assessment','tst_manscoring_question_section_header','en','Question: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_pass_overview_for_participant','en','Test Passes for Participant: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_edit_scoring','en','Edit Scoring',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_participant','en','Participant',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_participant_status','en','Participant Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_question','en','Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_participant','en','Participant',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_session_statistics_mode_year','en','Year',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','file_uploaded_by','en','Uploaded by',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_shorten_description_length','en','Maximum number of characters',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_shorten_description_info','en','If activated all descriptions in object lists are presented with a maximum number of characters.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_rep_shorten_description','en','Limited Length of Descriptions',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_order','en','Order',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tax','tax_create_node','en','Create Node',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_rep_shorten_description','en','Limited Length of Descriptions',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_new_tax_node','en','New Node',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tax','tax_create_node','en','Create Node',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_nodes','en','Nodes',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','tax_node','en','Node',NULL,NULL); INSERT INTO `lng_data` VALUES ('tax','obj_taxn','en','Node',NULL,NULL); @@ -16687,11 +16681,11 @@ INSERT INTO `lng_data` VALUES ('trac','trac_current_system_load','en','Current S INSERT INTO `lng_data` VALUES ('trac','trac_session_statistics_mode_month','en','Month',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_session_statistics_mode_week','en','Week',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_session_statistics_mode_day','en','Day',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_status_determination_manual','en','Only Manual by Tutors',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_status_determination_lp','en','Through Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_status_determination_sync','en','The course status will be automatically set to \'passed\' once a learner completed all activities which determine the learning progress. Progress that was made before the change of settings will be accounted for, manually set \'passed\' course status remain unchanged. Do you want to set the course status of all members based on their current learning progress now?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_course_status_of_users','en','Passing the Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_status_determination','en','Determination of Status \'Passed\'',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_status_determination_manual','en','Only Manual by Tutors',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_course_status_of_users','en','Passing the Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_sync_session_stats_success','en','Data aggregation was done successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_sync_session_stats','en','Aggregate Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_session_statistics_no_data','en','No data for this statistics could be found.',NULL,NULL); @@ -16750,42 +16744,42 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_node_mapping_status_1','en','Mapping o INSERT INTO `lng_data` VALUES ('ecs','ecs_cms_directory_trees_tbl','en','CMS Directory Trees',NULL,NULL); INSERT INTO `lng_data` VALUES ('exercise','exc_start_date_should_be_before_end_date','en','Start time should be before deadline.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lm_comments_desc','en','Allow users to share comments on every page of the learning module.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_unregistered','en','You have been unregistered.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_last_rep_visited','en','Repository/Last Visited',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_dashboard','en','Dashboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_registered','en','You have been registered.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_unregistered','en','You have been unregistered.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_last_rep_visited','en','Repository/Last Visited',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_share_with_users','en','Share with users',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_has_datasets_warning_page_view_link','en','Participant Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_has_datasets_warning_page_view','en','The test already contains data sets. You cannot edit the test questions until you remove these data sets.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ignore_required_fields_info','en','If activated, you can submit this form without filling out all mandatory fields. The new user has to add the missing information on the personal profile after the next login.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ignore_required_fields','en','Ignore required fields',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ignore_required_fields_info','en','If activated, you can submit this form without filling out all mandatory fields. The new user has to add the missing information on the personal profile after the next login.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tst_tst_statistics','en','User has access to test statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_starter_delete_sure','en','Are you sure you want to delete the following start objects?',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_condition_delete_sure','en','Are you sure you want to delete the following preconditions?',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_edit_condition','en','Edit Precondition',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','continue','en','continue',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_blank_columns','en','Additional Columns',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wfld','wfld_edit','en','Edit Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_enable_comments','en','Enable Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cal_deleted','en','The calendars have been deleted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wfld','wfld_edit','en','Edit Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_toggle_final','en','Publish Posting',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_toggle_draft','en','Withdraw Publication',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_task_publishing_draft_title','en','Publishing of Draft \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_draft','en','Draft',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_draft_info','en','The posting is withdrawn and no longer published.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_err_user_not_exist','en','A user with that login name does not exist.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_draft','en','Draft',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_chtr','en','Create Chat Room',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_err_user_not_exist','en','A user with that login name does not exist.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','server_disabled','en','The Chat is Disabled',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','apache_auth','en','Apache Authentication',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','moderate','en','Moderate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','chta_write','en','Edit Chat Room Administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','apache_auth','en','Apache Authentication',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','chta_edit_permission','en','Change Permission Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','chta_write','en','Edit Chat Room Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','chta_read','en','Read access to Chat Room Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','chta_visible','en','Chat Room Administration is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_notification_activated','en','Notification Activated',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_notification_deactivated','en','Notification Deactivated',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_notification_toggle_off','en','Deactivate Notification',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_notification_activated','en','Notification Activated',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_notification_toggle_on','en','Activate Notification',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_notification_toggle_off','en','Deactivate Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_change_notification_link','en','Link to Blog Posting',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_change_notification_body_comment','en','the following blog posting has been commented.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_change_notification_body_update','en','the following blog posting has been updated.',NULL,NULL); @@ -16825,18 +16819,18 @@ INSERT INTO `lng_data` VALUES ('exc','exc_direct_submit_blog','en','Would you li INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_sco_points_max','en','placeholder
for points
max',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_sco_points_raw','en','placeholder
for points',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_sco_points_scaled','en','placeholder
for points
in percent',NULL,NULL); -INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_title_sco','en','title',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_sco_title','en','placeholder
for title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_title_sco','en','title',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_scos','en','The following items were selected to determine the overall learning progress status and are available for statements in the certificate:',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_no_sco','en','If items are selected to determine the overall learning progress status, titles and points for these items could be displayed in certificate.',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','success_status_by_score_scaled','en','Because there is a value for cmi.scaled_passing_score, the value for cmi.success_status is evaluated by the LMS! This is done by comparing the value for cmi.scaled_passing_score with the value for cmi.score.scaled. The value for cmi.success_status is currently:',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','completion_status_by_progress_measure','en','Because there is a value for cmi.completion_threshold, the value for cmi.completion_status is evaluated by the LMS! This is done by comparing the value for cmi.completion_threshold with the value for cmi.progress_measure. The value for cmi.completion_status is currently:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_time_from_lms','en','Processing Time Determination by ILIAS',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_comments','en','Store Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_comments_info','en','Some SCORM 2004 learning modules allow users providing comments within the module. This option allows saving those comments.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_objectives_info','en','If you ensured that this learning module runs properly, this option improves performance.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_objectives','en','Store Learning Objectives Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_comments','en','Store Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_interactions_info_12','en','Results from interactions in SCORM 1.2 learning modules are simply stored. This option will improve performance.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_objectives','en','Store Learning Objectives Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_objectives_info','en','If you ensured that this learning module runs properly, this option improves performance.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_interactions_info','en','Typically results from interactions in learning modules are simply stored without being read / loaded again. If you ensured this is how your learning module operates, this option will improve performance.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_interactions','en','Store Results of Interactions',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sequencing','en','Sequencing and Navigation',NULL,NULL); @@ -16847,13 +16841,13 @@ INSERT INTO `lng_data` VALUES ('crs','crs_link_show_all_next_sessions','en','Sho INSERT INTO `lng_data` VALUES ('crs','crs_link_hide_prev_sessions','en','Hide previous sessions',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_link_show_all_prev_sessions','en','Show all previous sessions',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cp_question_diff_formats_info','en','Please note that some formatting is not supported in content modules.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','precondition_toggle','en','Preconditions that need to be fulfilled to access this object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','precondition_required_itemlist','en','Required Precondition',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_save_obligatory','en','Save Compulsory',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_minimum_optional','en','At least 2 preconditions have to remain optional.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_mode_all_info','en','All preconditions need to be fulfilled to give access.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','precondition_required_itemlist','en','Required Precondition',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','precondition_toggle','en','Preconditions that need to be fulfilled to access this object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_mode_subset','en','Subset of Preconditions',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_mode_subset_info','en','A subset of preconditions need to be fulfilled to give access. Some preconditions may still be set as compulsory.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_save_obligatory','en','Save Compulsory',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_mode_all_info','en','All preconditions need to be fulfilled to give access.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_mode_all','en','All Preconditions',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_mode','en','Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_precondition_target','en','Condition limits access to',NULL,NULL); @@ -16875,10 +16869,10 @@ INSERT INTO `lng_data` VALUES ('rbac','rbac_choose_copy_targets','en','Please en INSERT INTO `lng_data` VALUES ('rbac','rbac_back_to_overview','en','Back to Role List',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_exercisetitle','en','Exercise Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_mark','en','Users mark',NULL,NULL); -INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_passed_exercise','en','‘Passed’ or ‘Failed’',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','adve_activation','en','Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','adve_use_tiny_mce','en','Enable TinyMCE for WYSIWYG Editing',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_datetime_completed','en','Date and time of completion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_passed_exercise','en','‘Passed’ or ‘Failed’',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','adve_activation','en','Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_date_completed','en','Date of completion',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_unset_as_default','en','Unset As My Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_default_settings','en','Personal Default Settings',NULL,NULL); @@ -16886,8 +16880,8 @@ INSERT INTO `lng_data` VALUES ('survey','survey_question_title','en','Question T INSERT INTO `lng_data` VALUES ('blog','blog_navigation','en','Postings',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','end_whisper','en','Cancel',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_notification_deactivated','en','Notification Deactivated',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_deactivate_notification','en','Deactivate Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_notification_activated','en','Notification Activated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_deactivate_notification','en','Deactivate Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_activate_notification','en','Activate Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_notification_deactivated','en','Notification Deactivated',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_notification_activated','en','Notification Activated',NULL,NULL); @@ -16915,16 +16909,16 @@ INSERT INTO `lng_data` VALUES ('chatroom','history_cleared','en','The message hi INSERT INTO `lng_data` VALUES ('chatroom','ban_question','en','Do you really want to ban the user from current room?',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','kick_question','en','Do you really want to kick the user from current room?',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','user_in_ilias','en','Search and invite user from ILIAS',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','scope','en','Room/Private Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','user_in_room','en','Invite user from current chat room',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','scope','en','Room/Private Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_deactivated','en','Notification Deactivated',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_actions','en','Page Actions',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','invite_to_private_room','en','Invite to Current Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','delete_private_room','en','Delete Private Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','left_private_room','en','Left private room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','leave_private_room','en','Leave Private Room',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','chat_anonymous_not_allowed','en','Please login to use the chat.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chat_cannot_connect_to_server','en','ILIAS cannot build a socket connection to the chat server.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','chat_anonymous_not_allowed','en','Please login to use the chat.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','whisper_to','en','Whisper to #user#',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','speak_to','en','Speak to #user#',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','hint_display_past_msgs','en','Number of previous messages shown when chat room is entered. A value of ‘0’ disables this feature.',NULL,NULL); @@ -16945,26 +16939,26 @@ INSERT INTO `lng_data` VALUES ('rbac','otpl_edit_permission','en','User can chan INSERT INTO `lng_data` VALUES ('rbac','otpl_write','en','User can edit settings of Didactic Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','otpl_visible','en','Administration of Didactic Templates is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','otpl_read','en','User has read access to Didactic Templates administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','obj_otpl_desc','en','Template for creating new objects with predefined permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_otpl','en','Didactic Templates',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','obj_otpl_desc','en','Template for creating new objects with predefined permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_link_only_unassigned','en','You have selected at least one question that is already linked to a question pool. Only unassigned questions can be added to a question pool.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','kicked_from_private_room','en','You have been kicked from the private room #title#.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','private_room_entered_user','en','The user #username# has entered the private room #title#.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','private_room_entered','en','Welcome to the private room #title#.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','private_room_left','en','The user #user# has left the private room #title#.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','private_room_closed','en','The chat room #title# has been closed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','user_invited','en','The user has been invited.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','user_kicked','en','The user #user# has been kicked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','user_invited_self','en','#user# invited you to the chat room #room#.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','user_invited','en','The user has been invited.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','welcome_to_chat','en','Welcome to the chat room',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','chtr_moderate','en','User can moderate discussion in chat room',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_edit_tpl','en','Edit Didactic Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_login_editor','en','Loginscreen Editor',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_rate_page','en','Rate this Wiki Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_unblock_page','en','Grant Write Access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_delete_page','en','Delete Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_rename','en','Rename',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_block_page','en','Set Read-Only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_unblock_page','en','Grant Write Access',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_delete_page','en','Delete Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_mode','en','Edit Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_show_comments_tagging_in_lists','en','Show number of notes, comments and tags in object lists',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_password_for','en','Password for',NULL,NULL); @@ -17027,9 +17021,9 @@ INSERT INTO `lng_data` VALUES ('exc','exc_select_blog_info','en','Please select INSERT INTO `lng_data` VALUES ('exc','exc_select_portfolio','en','Use Existing Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_select_blog','en','Use Existing Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_exercise_submitted_info','en','You submitted your portfolio on %s. Additionally, you might want to save a copy for your own files.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','chtr_add','en','Add Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_exercise_submitted_info','en','Your last submission was on %s. Please check the export file: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chtr_new','en','New Chat Room',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','chtr_add','en','Add Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','server_further_information','en','You can find further information about the server configuration in the readme file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','public_room','en','Public room',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','notice','en','Notice',NULL,NULL); @@ -17085,16 +17079,16 @@ INSERT INTO `lng_data` VALUES ('scormdebug','show_only_important_API-calls','en' INSERT INTO `lng_data` VALUES ('scormdebug','hide','en','hide',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','all_API-calls_shown','en','All API-calls are currently shown.',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','description_for','en','description for',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','undefined_color','en','undefined color',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','unknown','en','unknown',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','strange_error','en','strange error',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','undefined_color','en','undefined color',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','strange_API-Call','en','strange API-Call',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','error','en','error',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','strange_error','en','strange error',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','i_fuchsia','en','fuchsia: tolerated value because sent value is not rejected',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','i_gray','en','gray: error corrected by ILIAS',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','i_red','en','red: error!',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','i_orange','en','orange: attention please!',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','i_green','en','green: okay',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','i_red','en','red: error!',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','adl.nav.request_valid.choice','en','Used by a SCO to determine if a Choice navigation request for a particular activity will succeed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','adl.nav.request_valid.previous','en','Used by a SCO to determine if a Previous navigation request will succeed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','adl.nav.request_valid.continue','en','Used by a SCO to determine if a Continue navigation request will succeed.',NULL,NULL); @@ -17106,10 +17100,10 @@ INSERT INTO `lng_data` VALUES ('scormdebug','cmi.success_status','en','Indicates INSERT INTO `lng_data` VALUES ('scormdebug','cmi.session_time','en','Amount of time that the learner has spent in the current learner session for this SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score.max','en','Maximum value in the range for the raw score',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score.min','en','Minimum value in the range for the raw score',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score.raw','en','Number that reflects the performance of the learner relative to the range bounded by the values of min and max',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score.scaled','en','Number that reflects the performance of the learner',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score._children','en','Listing of supported data model elements',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score.raw','en','Number that reflects the performance of the learner relative to the range bounded by the values of min and max',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.scaled_passing_score','en','Scaled passing score required to master the SCO',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','cmi.score._children','en','Listing of supported data model elements',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.progress_measure','en','Measure of the progress the learner has made toward completing the SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.description','en','Provides a brief informative description of the objective',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.progress_measure','en','Measure of the progress the learner has made toward completing the objective',NULL,NULL); @@ -17117,17 +17111,17 @@ INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.completion_status' INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.success_status','en','Indicates whether the learner has mastered the objective',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score.max','en','Maximum value, for the objective, in the range for the raw score',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score.min','en','Minimum value, for the objective, in the range for the raw score',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score._children','en','Listing of supported data model elements',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score.scaled','en','Number that reflects the performance of the learner for the objective',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score.raw','en','Number that reflects the performance of the learner, for the objective, relative to the range bounded by the values of min and max',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.id','en','Unique label for the objective',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score._children','en','Listing of supported data model elements',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives.n.score.scaled','en','Number that reflects the performance of the learner for the objective',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives._count','en','Current number of objectives being stored by the LMS',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.objectives._children','en','Listing of supported data model elements',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','cmi.max_time_allowed','en','Amount of accumulated time the learner is allowed to use a SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.mode','en','Identifies one of three possible modes in which the SCO may be presented to the learner',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','cmi.learner_preference.audio_captioning','en','Specifies whether captioning text corresponding to audio is displayed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','cmi.max_time_allowed','en','Amount of accumulated time the learner is allowed to use a SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.location','en','The learner\'s current location in the SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.learner_preference.delivery_speed','en','The learner\'s preferred relative speed of content delivery',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','cmi.learner_preference.audio_captioning','en','Specifies whether captioning text corresponding to audio is displayed',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.learner_preference.language','en','The learner\'s preferred language for SCOs with multilingual capability',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.learner_preference.audio_level','en','Specifies an intended change in perceived audio level',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','cmi.learner_preference._children','en','Listing of supported data model elements',NULL,NULL); @@ -17200,83 +17194,83 @@ INSERT INTO `lng_data` VALUES ('scormdebug','error101','en','General Exception', INSERT INTO `lng_data` VALUES ('scormdebug','error0','en','No error',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_debug_deactivated','en','The test tool is currently globally deactivated in the ILIAS administration (Administration » Learning Resources).',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_debug_deactivate12','en','A Test Tool will be displayed in the presentation mode of the learning module. Based on the data provided by it the interaction of the learning module and ILIAS can be evaluated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('scormdebug','scormdebug_global_activate_info','en','If enabled, the SCORM test tool can be activated for desired learning modules. If disabled, the test tool is deactivated for all learning modules.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_debug_deactivate','en','A Test Tool will be displayed in the presentation mode of the learning module. Based on the data provided by it the interaction of the learning module and ILIAS can be evaluated. To use the Test Tool, the navigation tree has to be switched on.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('scormdebug','scormdebug_global_activate_info','en','If enabled, the SCORM test tool can be activated for desired learning modules. If disabled, the test tool is deactivated for all learning modules.',NULL,NULL); INSERT INTO `lng_data` VALUES ('scormdebug','scormdebug_global_activate','en','Enable SCORM test tool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_open_normal','en','Opens in a New Tab or Alternatively in a New Window, Without ILIAS Main Menu',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_open','en','Presentation of Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_view_inherit_info','en','The group presentation type is adopted from a parent course.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_view_inherit','en','Default',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_view_info_simple','en','This content presentation lists all items in one block.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_view_inherit_info','en','The group presentation type is adopted from a parent course.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_open','en','Presentation of Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_open_normal','en','Opens in a New Tab or Alternatively in a New Window, Without ILIAS Main Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_presentation_type','en','Presentation Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_view_info_simple','en','This content presentation lists all items in one block.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_view_info_by_type','en','This content presentation groups all items by resource type.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_save_sync','en','Save and Sync Question Copies',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_setting_header_presentation','en','Group Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_setting_header_registration','en','Group Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','pd_enable_prtf','en','Enable Portfolios',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_add_blog','en','Add Blog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_account_code_used','en','Your account has been re-activated. Please login once again for security reasons.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','pd_enable_prtf','en','Enable Portfolios',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_save_sync','en','Save and Sync Question Copies',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_setting_header_presentation','en','Group Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_no_blogs_info','en','Your \"%s\" does not contain any blogs. Create blogs to use them as part of your portfolios.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_account_code_used','en','Your account has been re-activated. Please login once again for security reasons.',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_account_code_title','en','Account Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_account_code','en','Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_account_code_info','en','To re-activate your account you can use an ILIAS account code.',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_code_required_info','en','A pre-defined code is mandatory for the registration process.',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_code_optional_info','en','If you have got a registration code, please enter it here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_setting_info','en','Inactive Accounts can be re-activated by users with pre-defined codes.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_account_code_valid_until_unlimited','en','Unlimited',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_setting','en','Enable Account Re-Activation By Code',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_account_code_valid_until_unlimited','en','Unlimited',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_not_valid','en','The given registration code is either invalid or already has been used.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_generated_all','en','All Dates',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_account_code_used','en','Date Of Use',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_generated','en','Date Of Generation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_account_code_used','en','Date Of Use',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_valid_until_dynamic','en','Number of Days',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_valid_until_static','en','End Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code_valid_until','en','Valid Until',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_code','en','Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_codes_number','en','Number Of Codes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_account_codes_export','en','Export Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_codes_edit_header','en','Add Codes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_account_codes_export','en','Export Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_account_codes_add','en','Add Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','unable_to_connect','en','The connection to the chat server could not be established.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_chtr','en','Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','settings_has_been_saved','en','Settings has been saved',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','kicked','en','You have been kicked from this chat room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','unban','en','Unban',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','banned','en','You have been banned from this chat room',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','kicked','en','You have been kicked from this chat room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','lost_connection','en','The connection to the chat server was interrupted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','auto_scroll','en','Scroll to Bottom',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','public_chat_created','en','The public chat room has been added to the repository.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','auto_scroll','en','Scroll to Bottom',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chat_smilies_initialized','en','Chat smileys initialized',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chat_smilies_dir_not_exists','en','Smilies directory does not exist.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_confirm_delete_smiley','en','Are you sure you want to delete the selected smiley?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom_adm','chatserver_settings_title','en','Chatserver Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','osd_intervall','en','Refreshinterval',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom_adm','chatserver_settings_title','en','Chatserver Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','general_settings_title','en','General Chat Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','enable_osd','en','Repository Chat: Enable On-Screen Notifications',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','https','en','HTTPS',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chat_enabled','en','Enable Chat',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','client_settings','en','General Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','server_settings','en','Chatserver Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_current_smiley_image','en','Current Smiley Icon',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_smiley_image_only_if_changed','en','Choose a new smiley icon only if the current one is to be replaced.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_current_smiley_image','en','Current Smiley Icon',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_current_smiley_image_path','en','Current Smiley',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom_adm','smiley','en','Smilies',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_edit_smiley','en','Edit Smiley',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom_adm','smiley','en','Smilies',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','protocol','en','Protocol',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','obj_chta_desc','en','Chat Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_upload_smiley','en','Upload Smiley',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','obj_chta_desc','en','Chat Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_smiley_keywords_one_per_line_note','en','One Keyword per Line',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_smiley_keywords','en','Keywords',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_image_path','en','Path to Smiley',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_smiley_keywords','en','Keywords',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_add_smiley','en','Add Smiley',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_smiley_image','en','Smiley',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_delete_selected','en','Delete Selected Smileys',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom_adm','chatroom_available_smilies','en','Available Smileys',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','main','en','Main Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','ban_table_title','en','Banned Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','history_byday_title','en','Show Conversation per Day',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','history_bysession_title','en','Show Conversation per Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','settings_title','en','Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','history_byday_title','en','Show Conversation per Day',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_invitation_short','en','Please click the title link to enter the chat room.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_invitation_long','en','[SALUTATION] You have been invited to a chat room: Chat Room Title: [ROOM_NAME] Invited by: [INVITER_NAME] URL: [LINK] To join the chat room, please follow the given URL.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_invitation','en','\"[INVITER_NAME]\" invites you into chat room \"[ROOM_NAME]\"',NULL,NULL); @@ -17286,12 +17280,12 @@ INSERT INTO `lng_data` VALUES ('chatroom','chat_to_mainroom','en','To Main Room' INSERT INTO `lng_data` VALUES ('chatroom','chat_connection_disconnected','en','--- #username# left the chat room ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_connection_established','en','+++ #username# has entered chat room +++',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_whisper','en','Whisper',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','chat_ban','en','Ban',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_address','en','Address',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','chat_kick','en','Kick',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','chat_ban','en','Ban',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_invite','en','Invite',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','chat_join','en','Join',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','chat_kick','en','Kick',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_mainroom','en','Main Room',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','chat_join','en','Join',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_message_display','en','Options',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_message_options','en','Display',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_message_to_all','en','To All',NULL,NULL); @@ -17301,8 +17295,8 @@ INSERT INTO `lng_data` VALUES ('chatroom','duration_to','en','To',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','duration_from','en','From',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','enter','en','Enter Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','custom_username','en','Custom Username',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','select_custom_username','en','Select Custom Username',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','session','en','Session',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','select_custom_username','en','Select Custom Username',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','permissions','en','Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','bans','en','Bans',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','autogen_usernames_info','en','Pattern for auto generated user names that is assigned to anonymous user accounts. ‘#’ will be automatically replaced by a number.',NULL,NULL); @@ -17310,51 +17304,51 @@ INSERT INTO `lng_data` VALUES ('chatroom','settings_general','en','General',NULL INSERT INTO `lng_data` VALUES ('chatroom','enable_history','en','Enable History',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','allow_custom_usernames','en','Allow Custom User Names',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','autogen_usernames','en','Auto Generated User Names',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','allow_anonymous','en','Allow Anonymous Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','period','en','Period',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','allow_anonymous','en','Allow Anonymous Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','history_by_session','en','Session History',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','no_username_given','en','Please choose a username',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','history_by_day','en','Daily History',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_chta','en','Chat Room',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','history_by_day','en','Daily History',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_chtr','en','Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','chtr_edit_permission','en','User can change Permission Settings for Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','chtr_write','en','User can edit settings of chat room and ban users',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','chtr_read','en','User can join and participate at chat room',NULL,NULL); -INSERT INTO `lng_data` VALUES ('notes','notes_comments','en','Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','chtr_visible','en','Chat Room is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('notes','notes_comments','en','Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_removed_from_favourites','en','The item has been removed from your favourites.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('notes','note_update_note','en','Update Note',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_added_to_favourites','en','The item has been added to your favourites.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('notes','note_update_comment','en','Update Comment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('notes','note_update_note','en','Update Note',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','note_add_comment','en','Add Comment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_preview_banner','en','Custom Banner',NULL,NULL); +INSERT INTO `lng_data` VALUES ('notes','note_update_comment','en','Update Comment',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_banner','en','Banner',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','note_add_note','en','Add Note',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_preview_banner','en','Custom Banner',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_preview_banner_height','en','Banner Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_preview_banner_width','en','Banner Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_settings','en','Portfolio Administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_preview_banner','en','Custom Banner',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_preview_banner_height','en','Banner Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_preview_banner_width','en','Banner Width',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_preview_banner_height','en','Banner Height',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_preview_banner','en','Custom Banner',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_settings','en','Blog Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_prfa_desc','en','Global Portfolio Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','obj_blga_desc','en','Global Blog Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_prfa','en','Portfolio',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','obj_blga_desc','en','Global Blog Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','obj_blga','en','Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_finalized','en','The portfolio has been submitted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_exercise_info','en','This portfolio is part of the assignment \"%s\" of exercise \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_finalize_portfolio','en','Finalize and Submit Portfolio',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_exercise_info','en','This portfolio is part of the assignment \"%s\" of exercise \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_finalized','en','The Blog has been submitted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_finalize_blog','en','Finalize and Submit Blog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_exercise_info','en','This blog is part of the assignment \"%s\" of exercise \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_copy_question_into_page','en','Copy into Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_exercise_info','en','This blog is part of the assignment \"%s\" of exercise \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select_other_qpool','en','Select other Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_context_global','en','Global',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_import_failed','en','Importing the didactic template failed with message:',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_ud_rolt','en','User defined role template',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_auto_rolt','en','Auto generated role template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_ud_local','en','User defined local role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_auto_local','en','Auto generated local role',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_ud_local','en','User defined local role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_ud_global','en','User defined global role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_auto_global','en','Auto generated global role',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_import_success','en','Successfully imported didactic template',NULL,NULL); @@ -17364,39 +17358,39 @@ INSERT INTO `lng_data` VALUES ('didactic','didactic_do_export','en','Export',NUL INSERT INTO `lng_data` VALUES ('didactic','didactic_deactivated_msg','en','Deactivated didactic templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_activated_msg','en','Activated didactic templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_copy_question_from_pool','en','Copy Question from Pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('blog','blog_banner','en','Banner',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_question','en','New Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('blog','blog_banner','en','Banner',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_edit','en','Edit Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_delete_msg','en','Deleted didactic templates.',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_confirm_delete_msg','en','Do you really want to delete the following didactic templates?',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_copy_suc_message','en','Copied didactic template',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_available_templates','en','Available Didactic Templates',NULL,NULL); -INSERT INTO `lng_data` VALUES ('didactic','didactic_adm_tab','en','Didactic Templates',NULL,NULL); -INSERT INTO `lng_data` VALUES ('didactic','didactic_import_btn','en','Import Didactic Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_applicable_for','en','Applicable for',NULL,NULL); +INSERT INTO `lng_data` VALUES ('didactic','didactic_import_btn','en','Import Didactic Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('didactic','didactic_adm_tab','en','Didactic Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_list_indent','en','Indent List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_nlist','en','Numbered List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_list_outdent','en','Outdent List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_blist','en','Bullet List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_more_character_styles','en','...more character styles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_cc_imp','en','Important',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_nlist','en','Numbered List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cc_emp','en','Emphatic',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_cc_imp','en','Important',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_more_character_styles','en','...more character styles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_blist','en','Bullet List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cc_str','en','Strong',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_paragraph_styles','en','Paragraph Styles',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_role_selection','en','Role Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_paragraph_styles','en','Paragraph Styles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_allow_chars','en','Allowed chars: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_next_deadline','en','Next Deadline',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_global_rolt','en','Global Role Template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cms_dir_tree','en','CMS Directory Trees',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_no_valid_role','en','There is currently no valid role for new accounts. Please contact your administrator.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cms_dir_tree','en','CMS Directory Trees',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cc_mapping_overview','en','Mapping Overview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_campus_connect_title','en','CampusConnect Mappings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_invalid_import_type_cms','en','The import type ‘Campus Management’ can be chosen only once.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_campus_connect_title','en','CampusConnect Mappings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_node_mapping_create_empty_info','en','Usable only in combination with course mapping, which will be activated automatically.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_node_mapping_create_empty','en','Create Categories only, which contain Courses',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_import_cms','en','Campus Management',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_node_mapping_activate','en','Enable Directory Mapping',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','scorm_create_export_file_html_one','en','Create Export File (HTML, One Page, Review Mode)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_import_cms','en','Campus Management',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_personal_data','en','Edit Personal Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_mapping_exp_tbl','en','Mapping ILIAS Advanced Meta Data to ECS-Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_mapping_rcrs','en','Mapping for ECS Courses',NULL,NULL); @@ -17404,108 +17398,108 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_tab_export','en','Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_mapping_crs','en','Mapping for Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tab_import','en','Import',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_cannot_online_due_to_switched_quest_set_type_setting','en','The test cannot be set to online, because the test mode setting has been changed. You have to set a test mode relating question config before the test can be set to online.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_set_offline_due_to_switched_question_set_type_setting','en','The test has been set to offline, because the test mode setting has been changed. You have to set a new test mode relating question config before the test can be set to online again.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_edit_settings','en','Edit Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_milestone_settings','en','Milestones',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_set_offline_due_to_switched_question_set_type_setting','en','The test has been set to offline, because the test mode setting has been changed. You have to set a new test mode relating question config before the test can be set to online again.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cache_settings','en','Cache',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_milestone_settings','en','Milestones',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','mark_moderator_posts_desc','en','If activated moderator posts will be highlighted',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','mark_moderator_posts','en','Mark moderator posts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','test_is_offline','en','You cannot start the test! The test is offline.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_materials','en','Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_remove_skills','en','Remove Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_really_remove_skills','en','Do you really want to remove the following competences from your list?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_assign_materials','en','Assign Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_add_skill','en','Add Competence',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_selectable','en','Selectable',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_remove_skills','en','Remove Competences',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_materials','en','Materials',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','test_is_offline','en','You cannot start the test! The test is offline.',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_selectable_info','en','Allows user to select this category as a personal competence.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_selectable','en','Selectable',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_edit_sktr','en','Edit Competence Template Reference',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','skills','en','Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_list_skills','en','List Competences',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_new_sktr','en','New Competence Template Reference',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_assign_materials','en','Assign Materials',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_add_skill','en','Add Competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('blog','blog_preview','en','Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_community','en','Community',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_insert_skill_template_reference_from_clip','en','Insert Competence Template Reference from Clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_new_sktr','en','New Competence Template Reference',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','cannot_switch_to_online_no_questions_andor_no_mark_steps','en','The status cannot be changed to "online" because there are no questions and/or no marks in the test!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','apache_auth_domains_description','en','Enter one domain per line to allow redirection to this target.
If ILIAS is reachable by more than one domain please enter all target you want to allow.
Example: example.com allows the redirection to http://example.com and http://www.example.com and all pages located there.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','apache_auth_domains','en','Allowed Redirection Domains',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','apache_auth_security','en','Security Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_template','en','Competence Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_insert_skill_template_reference_from_clip','en','Insert Competence Template Reference from Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_templates','en','Competence Templates',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_template','en','Competence Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','apache_auth_security','en','Security Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','apache_auth_domains','en','Allowed Redirection Domains',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','apache_auth_domains_description','en','Enter one domain per line to allow redirection to this target.
If ILIAS is reachable by more than one domain please enter all target you want to allow.
Example: example.com allows the redirection to http://example.com and http://www.example.com and all pages located there.',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_previous_step','en','Previous Step',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_next_step','en','Next Step',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_self_evaluation','en','Self-Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_please_select_your_skill_levels','en','Please select your competence levels.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_save_self_evaluation','en','Finish Self-Evaluation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_self_evaluations','en','Self-Evaluations',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_sure_delete_self_evaluation','en','Do you really want to delete the following self-evaluations?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_self_evaluations','en','Self-Evaluations',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_save_self_evaluation','en','Finish Self-Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_no_skills','en','No Competences',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_your_self_evaluation','en','Your Self-Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_execute_self_evaluation','en','Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_please_select_self_skill','en','Start a new Self Evaluation. Competence:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_your_self_evaluation','en','Your Self-Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_edit_scat','en','Edit Competence Category',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_please_select_self_skill','en','Start a new Self Evaluation. Competence:',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_cert_skill_trigger_title','en','Competence Trigger Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_cert_skill_title','en','Competence Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_cert_skill_level_title','en','Competence Level Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_management_deactivated','en','Competence Management is currently deactivated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_cert_skill_title','en','Competence Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_select_trigger','en','Select Trigger',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_no_trigger','en','No Trigger',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_management_deactivated','en','Competence Management is currently deactivated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_remove_trigger','en','Remove Trigger',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_level_trigger','en','Competence Level Trigger',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_no_trigger','en','No Trigger',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skill','en','Competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_levels','en','Competence Levels',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_really_delete_levels','en','Do you really want to delete the following competence levels?',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_update_order','en','Update Order',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_trigger','en','Trigger',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_new_level','en','New Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_edit_level','en','Edit Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_nr','en','Nr',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','scat','en','Competence Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_add_level','en','Add Level',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_trigger','en','Trigger',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skill_level','en','Competence Level',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skll','en','Basic Competence',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_add_level','en','Add Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_skmg_desc','en','Manage competences and competence categories.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_selected_items_have_been_cut','en','Selected items have been cut.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skll','en','Basic Competence',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','scat','en','Competence Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_selected_items_have_been_copied','en','Selected items have been copied.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('skmg','skmg_insert_skill_category_from_clip','en','Insert Competence Categories from Clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_selected_items_have_been_cut','en','Selected items have been cut.',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_insert_basic_skill_from_clip','en','Insert Basic Competences from Clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('skmg','skmg_insert_skill_category_from_clip','en','Insert Competence Categories from Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_skills','en','Competences',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_enable_skmg','en','Activate Competence Management',NULL,NULL); INSERT INTO `lng_data` VALUES ('skmg','skmg_settings','en','Competence Management Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_apache_pass','en','Password',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_skmg','en','Competence Management',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_apache_pass','en','Password',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_apache_user','en','Username',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_auth_type_apache','en','Username/Password',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_auth_type_cert','en','Certificate-Base',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_auth_type','en','Authentication Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_object_statistics','en','Object Statistics',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_auth_type','en','Authentication Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_choose_from_folder','en','Choose from Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cert_valid_until','en','Certificate valid until',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_choose_from_mep','en','Choose from Pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_maintenance','en','Maintenance',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_switch_to_media_pool','en','Switch to other Media Pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_maintenance','en','Maintenance',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_type_webr','en','Weblink',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_portfolios','en','Portfolios',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_portfolios_desc','en','Users can create portfolios and use them as profile.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_profile_portfolio','en','If you want to use a portfolio as your profile, go to the portfolio section and set ‘My Profile’ for that portfolio.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_portfolios_desc','en','Users can create portfolios and use them as profile.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_portfolios','en','Portfolios',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','portfolio','en','Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_default_portfolio','en','My Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_account_inactive','en','Inactive Account',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_enable_grp_member_notification_info','en','ILIAS will automatically send an e-mail to every group member if his or her membership status is changed. This setting applies to all groups on the platform.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_enable_grp_member_notification','en','Notify Group Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_enable_crs_member_notification_info','en','ILIAS will automatically send an e-mail to every course member if his or her membership status is changed. This setting applies to all courses on the platform.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_enable_crs_member_notification','en','Notify Course Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_enable_grp_member_notification','en','Notify Group Members',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_portfolio_created','en','Portfolio was created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_member_notification','en','Participant Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_blog_created','en','Blog was created.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_portfolio_created','en','Portfolio was created.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_create_portfolio','en','Create Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_create_blog_select_info','en','Please select the resource folder to add the blog to.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_create_blog','en','Create Blog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_create_portfolio','en','Create Portfolio',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_portfolio_returned','en','Assignment Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_blog_returned','en','Assignment Blog',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_portfolio_returned','en','Assignment Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_type_portfolio','en','Portfolio',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_type_upload','en','Upload',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_type_blog','en','Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_save_status_and_titles','en','Save Status and Titles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_type_upload','en','Upload',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_first_page_title','en','Type of first page',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_type_warning','en','Currently, there are no booking objects available. To use the booking pool you need to create booking objects.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_warning_edit','en','Currently, there is no schedule available. To use the booking pool you need to create a schedule for booking (or switch to a different type of pool).',NULL,NULL); @@ -17530,8 +17524,8 @@ INSERT INTO `lng_data` VALUES ('content','cont_enable_page_history','en','Page H INSERT INTO `lng_data` VALUES ('content','cont_missing_snippet','en','Missing Content Snippet. The snippet has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_content_snippet_used_in_older_versions','en','Please note: This snippet is used in older versions of some pages. If these pages are rolled back to a version that includes this snippet, the snippet will be missing in the page.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_set_layout','en','Set Layout',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_current_usages','en','Current Usages',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_all_usages','en','Include History',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_current_usages','en','Current Usages',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_exp_ids_not_resp_format3','en','The ID must not start with a number.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_up_dir_copy','en','Copy Files from Upload Directory (Keeps files in the upload directory)',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_up_dir_move','en','Move Files from Upload Directory (Faster)',NULL,NULL); @@ -17541,8 +17535,8 @@ INSERT INTO `lng_data` VALUES ('mep','mep_upload_dir_files','en','Files from Upl INSERT INTO `lng_data` VALUES ('mep','mep_sel_upload_dir_files','en','Select Files/Directories',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_create_from_upload_dir','en','Create Media Objects from Upload Directory',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','mob_upload_dir_info','en','Server directory from which multiple files can be used to create media objects in media pools. Only ILIAS administrators will see a selection of files from this directory. Please enter a full server path without trailing slash.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','mob_upload_dir','en','Upload Directory',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_exp_id_used_multiple','en','Export ID used multiple times',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','mob_upload_dir','en','Upload Directory',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','content_some_export_ids_multiple_times','en','Some export IDs are used multiple times. This will lead to missing pages in the export.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_saved_export_ids','en','Saved HTML Export IDs.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_exp_ids_not_resp_format2','en','Please check and correct your input.',NULL,NULL); @@ -17562,164 +17556,164 @@ INSERT INTO `lng_data` VALUES ('wsp','wsp_shared_with','en','Shared With',NULL,N INSERT INTO `lng_data` VALUES ('wsp','wsp_permissions','en','Share',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tbl_import_type','en','Import Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tbl_export','en','Export',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','imported','en','imported',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tbl_import','en','Import',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','imported','en','imported',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','user_criteria_desc','en','Unique user criteria that is used for test results import/export. This is needed to identify identical users on different ILIAS systems.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','user_criteria','en','Unique user criteria',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_not_configured','en','Not configured',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_deactivate','en','Deactivate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_not_configured','en','Not configured',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_activate','en','Activate',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_server_addr','en','Server Address',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_tbl_active','en','Active',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_available_ecs','en','Available ECS',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_add_new_ecs','en','Add New ECS',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_sync_success','en','The selected questions were updated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cron_task_scheduler','en','ECS Task Scheduler',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cron_task_scheduler_info','en','ECS tasks will be executed according to the schedule settings. Only neccessary, if ECS servers are configured.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cron_task_scheduler','en','ECS Task Scheduler',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_sync_success','en','The selected questions were updated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_sync_question_copies','en','Sync Question Copies',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_sync_question_copies_info','en','The selected questions will be replaced with the current pool version.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_sync_insufficient_permissions','en','Insufficient Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_login_page','en','Add Login Page Element',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_update_login_page','en','Edit Login Page Element',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','login_page_switch_ipe','en','Use ILIAS page editor',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','login_page_editor_switched','en','The active page editor has been changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','login_page_activate','en','Activate Editor for Selected Languages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_update_login_page','en','Edit Login Page Element',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','cntr_adopt_content','en','Adopt Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','login_page_switch_rte','en','Use Rich-text editor',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','login_page_switch_ipe','en','Use ILIAS page editor',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','container_import_zip_file_invalid','en','The uploaded file is not a valid ILIAS export file. To upload a directory structure please use a file object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_available_question_pools','en','Available Pools',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_question_pool_title','en','Pool Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','allow_user_toggle_noti','en','Member is allowed to deactivate notification',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ov_some_correct','en','You have correctly answered [x] out of [y] questions.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ov_wrong_answered','en','The following questions were not answered or answered wrong',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','yearly','en','yearly',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_available_question_pools','en','Available Pools',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_qover','en','Edit Question Overview',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ov_wrong_answered','en','The following questions were not answered or answered wrong',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ov_all_correct','en','You have correctly answered all questions.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_qover_list_wrong_q_info','en','A list of wrong or not answered questions will be displayed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ov_some_correct','en','You have correctly answered [x] out of [y] questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_qover_list_wrong_q','en','List of Wrong Answered Questions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_qover_list_wrong_q_info','en','A list of wrong or not answered questions will be displayed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_qover','en','Edit Question Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_qover_short_message_info','en','A message ‘You have correctly answered C out of Y questions of this unit.’ will be displayed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_qover','en','Insert Question Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_qover_short_message','en','Status Message',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_qover','en','Question Overview',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_qover','en','Insert Question Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_edit_heading','en','Edit Heading',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_delete_heading','en','Remove Heading',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_qover','en','Question Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_clipboard_notice','en','There are question(s) in the clipboard. Select the target position or empty the clipboard.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_edit_multiple','en','Edit Paragraph Sequence',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_questions_to_clipboard_cut','en','Question(s) were copied to the clipboard. Please select a target or empty the clipboard.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_questions_to_clipboard_copy','en','Question(s) were copied to the clipboard. Please select a target or empty the clipboard.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_questions_to_clipboard_cut','en','Question(s) were copied to the clipboard. Please select a target or empty the clipboard.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_edit_multiple','en','Edit Paragraph Sequence',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_remove_format','en','Remove Format',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_import_page_layout','en','Import Page Layout',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_iim','en','Interactive Image Content Popup',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_marker','en','Interactive Image Marker',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_import_page_layout','en','Import Page Layout',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_permission_all_pw_info','en','After providing the password this object is visible for all users of the internet.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_permission_all_info','en','This object is visible for all users of the internet.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_permission_registered_info','en','This object is shared with all registered users.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wsp','wsp_set_permission_all','en','World Wide Web',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_set_permission_registered','en','All Registered Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_correct_answer_also','en','Also correct is:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wsp','wsp_set_permission_all','en','World Wide Web',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_upload_pending','en','Pending file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_correct_answer_also','en','Also correct is:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_correct_answers_also','en','Also correct are:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cont_iim_content_popups_info','en','Content popups appear, when the user clicks on interactive parts of the background image. On this screen you only define the popups. Their content can be edited on the editing screen of the page.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cont_iim_overlay_info','en','Overlay images are used to alter (e.g. highlight) parts of the background image when the mouse hovers over them. After uploading the images, you can select them in the ‘Triggers’ tab.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cont_iim_create_info','en','Please upload the background picture for the interactive image.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_drag_element_click_save','en','Drag and drop the element to the desired position. Then hit ‘Save’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_not_found','en','User not found',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_marker_position','en','Edit Marker Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_popup_position','en','Edit Popup Position',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_marker_position','en','Edit Marker Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_overlay_position','en','Edit Overlay Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_marker','en','New Marker',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_really_delete_triggers','en','Do you really want to delete the following triggers?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_new_trigger_area','en','New Trigger Area',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_popups_have_been_deleted','en','Popups have been deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_new_trigger_area','en','New Trigger Area',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_really_delete_popups','en','Do you really want to delete the following popups?',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_popup','en','New Popup',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_overlays_have_been_deleted','en','Overlays have been deleted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_really_delete_overlays','en','Do you really want to delete the following overlays?',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','invite','en','Inviting to survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_really_delete_overlays','en','Do you really want to delete the following overlays?',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_base_image','en','Edit Background Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_base_image','en','Background Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_saved_interactive_image','en','Created Interactive Image',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_profile_preview','en','Preview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_trigger_area','en','Trigger Area',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_marker','en','Marker',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_overlay_image','en','Overlay Image',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_trigger_area','en','Trigger Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_profile_preview','en','Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_content_popup','en','Content Popup',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_WholePicture','en','Whole Picture',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_add_images','en','Add Images',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_overlay_image','en','Overlay Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_add_popup','en','Add Popup',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_WholePicture','en','Whole Picture',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_content_popups','en','Content Popups',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_overlay_images','en','Overlay Images',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_add_images','en','Add Images',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_update_blog','en','Edit Blog Posting',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_active_areas','en','Triggers',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_content_popups','en','Content Popups',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_blog','en','Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_blog','en','Add Blog Posting',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_update_blog','en','Edit Blog Posting',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_blog','en','Insert Blog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_blog','en','Blog',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_verification_object','en','Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_update_verification','en','Edit Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_verification','en','Add Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_vrfc','en','Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_verification','en','Insert Certificate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_verification','en','Add Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_manual_info','en','Use the following data:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_inherit','en','Automatic',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_inherit_info','en','Use your profile settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_verification','en','Insert Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_manual','en','Manual',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_inherit_info','en','Use your profile settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_profile_mode_inherit','en','Automatic',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_profile_mode','en','Mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_update_profile','en','Edit Published Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_profile','en','Publish Personal Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_update_profile','en','Edit Published Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_prof','en','Personal Data',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_profile','en','Insert Personal Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_portfolio_page_deleted','en','Portfolio / blog page deleted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_page_created','en','Page created',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_profile','en','Insert Personal Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_sure_delete_portfolio_pages','en','Are you sure you want to delete the following portfolio page / blog page?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_page_created','en','Page created',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_add_page','en','Add Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_portfolio_deleted','en','Portfolio deleted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_portfolio_created','en','Portfolio added',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_set_as_default','en','Set As My Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_sure_delete_portfolios','en','Are you sure you want to delete the following portfolio?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_set_as_default','en','Set As My Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_create_portfolio','en','Add Portfolio',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_portfolio_created','en','Portfolio added',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_edit_portfolio','en','Edit Portfolio',NULL,NULL); -INSERT INTO `lng_data` VALUES ('prtf','prtf_portfolios','en','Portfolios',NULL,NULL); INSERT INTO `lng_data` VALUES ('prtf','prtf_add_portfolio','en','Add Portfolio',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qetcorr','en','Error Text Corrected',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prtf','prtf_portfolios','en','Portfolios',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qordul','en','Order List',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qetitem','en','Error Text Item',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_qordli','en','Order List Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qimgd','en','Image Details Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_qordli','en','Order List Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qimg','en','Question Image',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_iim','en','Interactive Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_iim','en','Insert Interactive Image',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','saving','en','Saving...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_iim','en','Interactive Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','cont_insert_after_chap','en','Insert items after chapter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','saving','en','Saving...',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','cont_insert_into_chap','en','Insert items inside chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_choose_pages_chap_scos_ass_only','en','Please select either pages, SCOs, assets or chapters only.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','copy_questions_success','en','The question(s) has been copied.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','copy_no_questions_selected','en','Please select at least one question to copy.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_course_group_notifications_desc','en','If enabled, Participants can subscribe to a daily summary of news.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_fn','en','Footnote',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_course_group_notifications','en','Daily Mail for Groups and Course News',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_fn','en','Footnote',NULL,NULL); INSERT INTO `lng_data` VALUES ('excv','excv_create_info','en','Select a completed exercise to generate a certificate for it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('excv','excv_create','en','Create Exercise Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tstv','tstv_create','en','Create Test Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('tstv','tstv_create_info','en','Select a completed test to generate a certificate for it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_type_excv','en','Certificate: Exercise',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tstv','tstv_create_info','en','Select a completed test to generate a certificate for it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_tex','en','Latex Code',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tstv','tstv_create','en','Create Test Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','adve_use_physical_info','en','This setting replaces the semantic style class buttons for strong, emphatic and important with physical attribute buttons b (bold), i (italic) and u (underline). Please note, that this may result in inconsistencies, if the style editor is used and other physical attributes are assigned to the strong/emphatic/important style classes.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','adve_use_physical','en','Use b/i/u instead of str/emp/imp',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','adve_pe_general','en','General',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_char_style_code','en','Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_char_style_acc','en','Accentuated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_char_style_code','en','Code',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','adve_pe_general','en','General',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','adve_use_physical','en','Use b/i/u instead of str/emp/imp',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_char_style_quot','en','Quotation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_link_to_wiki','en','Link to Wiki Page (Insert Brackets)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_standard','en','Standard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_char_style_com','en','Comment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_standard','en','Standard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_link_to_wiki','en','Link to Wiki Page (Insert Brackets)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_to_external','en','Link to External Website',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_to_internal','en','Link to ILIAS Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('tagging','tagging_set_tag','en','Set Tags',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_more_functions','en','More',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_saving','en','Saving...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lists','en','Lists',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_char_format','en','Character',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_par_format','en','Paragraph',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_char_format','en','Character',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lists','en','Lists',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_more_functions','en','More',NULL,NULL); INSERT INTO `lng_data` VALUES ('wsp','wsp_type_tstv','en','Certificate: Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_auto_notification_info','en','New members get a mail notification when added to the group.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_auto_notification','en','Welcome-Mail For New Members',NULL,NULL); @@ -17730,55 +17724,55 @@ INSERT INTO `lng_data` VALUES ('rbac','precondition_num_optional_info','en','Ple INSERT INTO `lng_data` VALUES ('exc','exc_completion_by_submission_info','en','If enabled, the submission of at least one file causes the completion of an assignment. The score could be manually changed later. Switching this setting does not effect already submitted solutions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_completion_by_submission','en','Completed by Submission',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_completion_by_submission_info','en','If enabled, the submission of at least one file causes the completion of this question by granting the maximum score for this question. The score could be manually changed later. Switching this setting does not effect already submitted solutions.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_subject_setting','en','Subject setting',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_completion_by_submission','en','Completed by Submission',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','empty_subject','en','On reply the user has to enter a new title.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_subject_setting','en','Subject setting',NULL,NULL); INSERT INTO `lng_data` VALUES ('cntr','edit_questions','en','Edit Questions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','empty_subject','en','On reply the user has to enter a new title.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_cannot_preview_survey','en','Preview not available',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_cancel_preview','en','Cancel Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_remove_question','en','Are you sure you want to remove the following question from the test?',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_activate_media','en','Activate Media',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_activate_js','en','Activate Javascript Mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_deactivate_media','en','Deactivate Media',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_activate_html','en','Activate HTML Rendering',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_deactivate_media','en','Deactivate Media',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_deactivate_js','en','Activate Form Mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_presentation_view','en','Presentation View',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_deactivate_html','en','Deactivate HTML Rendering',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_presentation_view','en','Presentation View',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_activate_page','en','Activate Notification for Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_activate_wiki','en','Activate Notification for Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_deactivate_page','en','Deactivate Notification for Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_deactivate_wiki','en','Deactivate Notification for Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_notification_activated','en','Notification Activated (Single Page)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_edit_settings','en','Edit Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_activated','en','Notification Activated (Whole Wiki)',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_order','en','Sort Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_lists','en','Page Lists',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_notification_activated','en','Notification Activated (Whole Wiki)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_functions','en','Wiki Functions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_navigation','en','Wiki Navigation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','behind','en','Behind',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_edit_settings','en','Edit Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_auto_block_title','en','Page Header',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','behind','en','Behind',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_navigation','en','Wiki Navigation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_functions','en','Wiki Functions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_result','en','Test Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','first','en','First',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rat_one_rating','en','One Rating',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rat_not_rated_yet','en','Not Rated Yet',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rat_nr_ratings','en','%s Ratings',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','copy_and_link_to_questionpool','en','Add to question pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_test_contains_obligatory_questions','en','To end this test you have to answer all compulsory questions (*).',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_setting_enable_obligations_info','en','Only if all compulsory questions are answered ths test can be finished. Compulsory questions can be defined in the ‘List view’. For participants the option ‘Show List of Questions’ should be activated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_test_contains_obligatory_questions','en','To end this test you have to answer all compulsory questions (*).',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_setting_enable_obligations_label','en','Compulsory Questions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','not_all_obligations_answered','en','You must answer all compulsory questions before you can finish the test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','obligatory','en','Compulsory',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','saveOrderAndObligations','en','Save Order and Obligations',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','saveOrder','en','Save Order',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','test_using_template_link','en','Do not use template anymore',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_edit_questions','en','Edit Questions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','test_using_template_link','en','Do not use template anymore',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_template_reset','en','The template has been removed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_confirm_template_reset','en','Are you sure that you do not want to use the template anymore?',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assessment_existing_pool','en','Use existing question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assessment_new_pool','en','Create new question pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','assessment_pool_selection','en','Pool Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assessment_no_pool','en','Do not use question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_move_page','en','Move Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','assessment_pool_selection','en','Pool Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_delete_page','en','Delete Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_anonymity_anonymous_test','en','Results without Names / Anonymous Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_presentation_properties','en','Administering the Test: Behavior of the Question',NULL,NULL); @@ -17806,11 +17800,11 @@ INSERT INTO `lng_data` VALUES ('survey','survey_block_hidden','en','hidden',NULL INSERT INTO `lng_data` VALUES ('survey','survey_show_blocktitle_description','en','If activated the block title will be shown in the survey.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_show_blocktitle','en','Show Block Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_behind_page','en','Behind',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_delete_page','en','Delete Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_at_beginning','en','At The Beginning',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_delete_page','en','Delete Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_existing_pool','en','Use existing question pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_no_pool','en','Do not use question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_new_pool','en','Create new question pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_no_pool','en','Do not use question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_pool_selection','en','Pool Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_question_pool_usage','en','Question Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_question_pool','en','Question Pool',NULL,NULL); @@ -17819,33 +17813,33 @@ INSERT INTO `lng_data` VALUES ('survey','survey_template_reset','en','The templa INSERT INTO `lng_data` VALUES ('survey','survey_confirm_template_reset','en','Are you sure that you do not want to use the template anymore?',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','adm_settings_templates','en','Settings Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_create_question','en','Create Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','test_prev_question','en','Previous Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_jump_to','en','Jump to Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','test_prev_question','en','Previous Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','test_next_question','en','Next Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','questions_per_page_view','en','Page View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hide_visible_sections','en','Hide More Information »',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','questions_per_page_view','en','Page View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','show_hidden_sections','en','Show More Information »',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_using_template_link','en','Do not use template anymore',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_using_template','en','This survey uses the template %s. If you do not want to use a template and have access to all settings, please click here: %s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_has_datasets_warning_page_view_link','en','Edit Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','survey_dnd_paste','en','Paste',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_has_datasets_warning_page_view','en','The survey already contains data sets. You cannot edit the survey questions until you remove these datasets.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','survey_dnd_paste','en','Paste',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_dnd_clear_clipboard','en','Clear Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_dnd_split_page','en','Split Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_dnd_move_next','en','Move to Next Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_dnd_move_previous','en','Move to Previous Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_settings_template','en','Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_per_page_view','en','Page View',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_rename_page','en','Rename Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_new_page_name','en','New Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_page_already_exists','en','A page with this title already exists.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_settings_template','en','Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_rename_page','en','Rename Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_last_edited','en','Last edited',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_page_blocked','en','Wiki page is set to read-only. Only users with «Edit Settings» permission have write access.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_page_already_exists','en','A page with this title already exists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_unblocked','en','Write permission granted for users.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_page_blocked','en','Wiki page is set to read-only. Only users with «Edit Settings» permission have write access.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_toc_info','en','This lists all headings linked to the content at the beginning of each page if that page uses at least two headings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_page_toc','en','Enable Page Overview Block',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_page_toc','en','Page Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_add_new_question','en','Create Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_page_toc','en','Page Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_jump_to','en','Jump to',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_next_question','en','Next Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_prev_question','en','Previous Page',NULL,NULL); @@ -17860,39 +17854,39 @@ INSERT INTO `lng_data` VALUES ('administration','adm_settings_templates','en','S INSERT INTO `lng_data` VALUES ('wiki','wiki_imp_page_added','en','Page added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_ordering_and_indent_saved','en','Ordering and Indentation saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_removed_imp_pages','en','Important pages removed from list.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_save_ordering_and_indent','en','Save Ordering and Indentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_sure_remove_imp_pages','en','Do you really want to remove the following pages from the list of important pages?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_save_ordering_and_indent','en','Save Ordering and Indentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_indentation','en','Indentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_grouped_material_obligatory_err','en','The number materials which must be passed has to be greater than 0 and smaller than the number of materials of the grouping.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','precondition_obligatory_settings','en','Precondition Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','precondition_num_obligatory','en','Number of Required Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_ordering','en','Ordering',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','precondition_num_obligatory','en','Number of Required Materials',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','precondition_obligatory_settings','en','Precondition Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_grouped_material_obligatory_err','en','The number materials which must be passed has to be greater than 0 and smaller than the number of materials of the grouping.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rep_main_page','en','Home',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','personal_settings','en','Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_scormmaxpoints','en','Maximum value in the range for the raw score of the last relevant sco (most suitable for a final exam)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_login','en','Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('certificate','certificate_var_user_login','en','jdoe',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_group_materials_save','en','Save Number of Compulsory Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_login','en','Login',NULL,NULL); -INSERT INTO `lng_data` VALUES ('certificate','certificate_ph_scormmaxpoints','en','Maximum value in the range for the raw score of the last relevant sco (most suitable for a final exam)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','personal_settings','en','Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rep_main_page','en','Home',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mep','mobs_restrict_file_types_info','en','Enter a comma separated list of file suffixes (e.g. jpg,gif) that are allowed to be uploaded into media objects. If no value is entered, all file types are allowed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mobs_restrict_file_types','en','Allowed File Types',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sahs','sahs_activate_expert_mode','en','Activate Sequencing Expert Mode',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mep','mobs_restrict_file_types_info','en','Enter a comma separated list of file suffixes (e.g. jpg,gif) that are allowed to be uploaded into media objects. If no value is entered, all file types are allowed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_activate_expert_mode_info','en','The sequencing expert mode allows you to directly edit the sequencing information of the package tree. If you are unsure what this means we recommend to use the default sequencing behaviour.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sahs','sahs_import_sequencing','en','Import Sequencing',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sahs','sahs_activate_expert_mode','en','Activate Sequencing Expert Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_import_sequencing_info','en','Import sequencing information from package (Sequencing Expert Mode).',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sahs','sahs_import_sequencing','en','Import Sequencing',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_std_sequencing_info','en','Use ILIAS standard sequencing behaviour.',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_std_sequencing','en','Standard Sequencing',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_authoring_mode','en','Authoring Mode',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sahs','sahs_authoring_mode_info','en','The SCORM ZIP package must have been created with the ILIAS SCORM editor and it must have been exported as SCORM 1.2/2004 package.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_edit','en','Edit Booking Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo_import','en','Import Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sahs','sahs_authoring_mode_info','en','The SCORM ZIP package must have been created with the ILIAS SCORM editor and it must have been exported as SCORM 1.2/2004 package.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_add','en','Add Booking Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_new','en','New Booking Pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_add','en','Add Booking Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preconditions_optional_hint','en','You have to fulfill %s of the following preconditions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','preconditions_obligatory_hint','en','You have to fulfill all of the following preconditions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_release_materials','en','Disintegrate Grouping with Optional Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_group_materials','en','Create Grouping with Optional Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_sco_fmess','en','SCORM Final Message',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_release_materials','en','Disintegrate Grouping with Optional Materials',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','preconditions_obligatory_hint','en','You have to fulfill all of the following preconditions',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_choose_special_page','en','Choose Special Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_sco_fmess','en','SCORM Final Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_choose_page_template','en','Choose Page Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_special_page','en','Insert Special Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_ass_from_clip','en','Paste Assets from Clipboard',NULL,NULL); @@ -17957,8 +17951,8 @@ INSERT INTO `lng_data` VALUES ('sahs','sahs_hide_objectives_page_info','en','If INSERT INTO `lng_data` VALUES ('sahs','sahs_hide_objectives_page','en','Hide Description/Objectives Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_login_page_element','en','Insert Login Page Element',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_anonymous_fora','en','Allow posting with pseudonym',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','enable_anonymous_fora_desc','en','If this option is disabled, the feature ‘Posting with pseudonym’ is not available in forums anymore.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_ass','en','Asset',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','enable_anonymous_fora_desc','en','If this option is disabled, the feature ‘Posting with pseudonym’ is not available in forums anymore.',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_ass','en','Insert Asset',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_new_asset','en','New Asset',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_sync_obj_stats_success','en','Data has been updated.',NULL,NULL); @@ -17977,8 +17971,8 @@ INSERT INTO `lng_data` VALUES ('trac','trac_object_stat_access','en','Usage Inte INSERT INTO `lng_data` VALUES ('trac','trac_read_count_spent_seconds','en','Time Spent / Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_added_tab','en','Panel added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','question_changed_in_survey_only','en','Question was changed only in survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_save_ordering_and_titles','en','Save ordering and titles',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_wrong_answers_single','en','Incorrect Choice.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_save_ordering_and_titles','en','Save ordering and titles',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_first_and_last_access','en','First and Last Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_report_owner','en','Owner of Report',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_report_date','en','Date of Report',NULL,NULL); @@ -17988,9 +17982,9 @@ INSERT INTO `lng_data` VALUES ('trac','trac_object_name','en','Name of Object',N INSERT INTO `lng_data` VALUES ('trac','trac_name_of_installation','en','Name of Installation',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_view_mode_all','en','All Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_view_mode_collection','en','Only objects that determine the overall status',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_usr','en','User is allowed to create user accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_all','en','All',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_view_mode','en','View Mode',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_usr','en','User is allowed to create user accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','nr_following_sessions','en','%1d following session(s)...',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','frma_edit_permission','en','User can change permission settings of Forum administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','frma_write','en','User can edit settings in Forum Administration',NULL,NULL); @@ -17998,8 +17992,8 @@ INSERT INTO `lng_data` VALUES ('rbac','frma_visible','en','Forum Administration INSERT INTO `lng_data` VALUES ('rbac','frma_read','en','User has read access to Forum Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_exp_sc_short_desc','en','In the ‘Statistics’-tab an additional export option is offered. It generates a spreadsheet for item analysis outside of ILIAS. This option only works for tests purely composed of Single Choice Questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_exp_sc_short','en','Item Analysis Export for Pure Single Choice Tests',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_salutation','en','Hello %s,',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','apache_auth_authenticate_on_login_page','en','Try Apache authentication when entering the login page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_salutation','en','Hello %s,',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','err_auth_apache_failed','en','The authentication has failed. Maybe you have no valid user certificate or your smart card is not inserted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','apache_settings_changed_success','en','Configuration saved',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','auth_apache','en','Apache',NULL,NULL); @@ -18037,15 +18031,15 @@ INSERT INTO `lng_data` VALUES ('rbac','rbac_change_existing_objects_desc_new_rol INSERT INTO `lng_data` VALUES ('rbac','export_member_data','en','Access User Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_remove_local_file','en','Delete the custom language file',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_local_file_deleted','en','The custom language file was deleted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_error_local_missed','en','The custom language file does not exist!',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_error_delete_local','en','The custom language file can\'t be deleted!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_error_local_missed','en','The custom language file does not exist!',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_error_write_global','en','The standard language file can\'t be written!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_delete_local_additions','en','Delete local additions in the database',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_merge_local_changes','en','Merge local changes into the standard language file',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_added','en','Local additions only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_merge_local_changes','en','Merge local changes into the standard language file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_delete_local_additions','en','Delete local additions in the database',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_merged','en','Local changes merged into the standard language file',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','ordering_answer_sequence_info','en','The answer sequence you define here will be taken as the correct solution sequence.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grp_assignments','en','Assignments of Course Members to Groups',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','ordering_answer_sequence_info','en','The answer sequence you define here will be taken as the correct solution sequence.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_import','en','Import Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('fold','fold_import','en','Import Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_learning_progress_settings_info','en','Activate extended data',NULL,NULL); @@ -18055,19 +18049,19 @@ INSERT INTO `lng_data` VALUES ('common','follow_link_to_read_mails','en','click INSERT INTO `lng_data` VALUES ('common','cron_mail_notification_message_info','en','If enabled, all users will get notifications with complete mail message by external mail.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cron_mail_notification_message','en','Send Mail Notifications with Mail-Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','add_consultation_hours','en','Add Consultation Hours',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_others','en','Others',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','dont_use_questionpool','en','Don\'t insert the questions in a question pool (only available in this test)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_others','en','Others',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_sum','en','Sum',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_average','en','Average',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_determination_info_crs_tutor','en','This selection is not connected to the learning progress status.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_determination_tutor','en','Display of objects in learning progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cronjob_last_start_unknown','en','Indeterminate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','disk_quota_summary_subject','en','Summary of Exceeded Disk Quota',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','currently_used_disk_space','en','Currently used disk space',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','disk_quota_summary_subject','en','Summary of Exceeded Disk Quota',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrf_profile_link','en','Link to user profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','disk_quota_exceeded_headline','en','The following users have exceeded their disk quota:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','disk_quota_summary_rctp_desc','en','Enter the user names (comma-separated) of those users who shall receive a daily report with users currently exceeding the disk quota.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','disk_quota_summary_rctp','en','Recipients',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','disk_quota_summary_rctp_desc','en','Enter the user names (comma-separated) of those users who shall receive a daily report with users currently exceeding the disk quota.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_disk_quota_summary_mail_desc','en','The disk quota summary is a daily notification containing all users, who exceeded their disk quota.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','enable_disk_quota_summary_mail','en','Send Disk Quota Summary',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','cronjob_last_start','en','Last Start of the Cron Job',NULL,NULL); @@ -18075,15 +18069,15 @@ INSERT INTO `lng_data` VALUES ('trac','trac_mode_deactivated_info_new','en','The INSERT INTO `lng_data` VALUES ('common','sess_mode','en','Session Mode',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sess_load_dependent_session_handling','en','Load Dependent Session Handling',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sess_fixed_duration','en','Fixed Session Duration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_admin_permissions','en','Administration Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_export_excel','en','Start Excel Export',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_admin_permissions','en','Administration Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_repository_permissions','en','Repository Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','mailnottype','en','Send notification even if a user finishes a test pass',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_allow_codes_info','en','Users are also allowed to register via codes.',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_confirmation_hash_life_time','en','Lifetime',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','reg_allow_codes','en','Allow Codes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','moderate_frm','en','Moderate',NULL,NULL); INSERT INTO `lng_data` VALUES ('webr','webr_import','en','Import Weblink',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','moderate_frm','en','Moderate',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','add_reply','en','Add Reply',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','add_thread','en','Add Thread',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','smtp_mail','en','SMTP E-Mail',NULL,NULL); @@ -18091,8 +18085,8 @@ INSERT INTO `lng_data` VALUES ('rbac','mail_to_global_roles','en','Global Mails' INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_unknown_repository_object','en','The given repository object ref-id is not valid.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_target_object_info','en','Consultation hours will be displayed in a block to the right of the course / group content. To restrict the display of consultation hours to specific courses or groups, please enter the Ref-ID of the said objects. You find the Ref-ID in the URL of the respective objects. Add more than one Ref-ID separated by comma. Regardless of that, consultation hours may also appear in your e-portfolios.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_target_object','en','Repository Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_unknown_user','en','The given login does not match any user.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_manager_info','en','Login of the user who will manage your consultation hours.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_unknown_user','en','The given login does not match any user.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_manager','en','Consultation Hour Manager',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','role_confirm_block_role_header','en','Do you really want to change the block role status of the chosen roles?',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','role_confirm_unblock_role_info','en','The following steps will be performed for the action \"Unblock Role\":

- the local policy will be deleted.',NULL,NULL); @@ -18100,114 +18094,114 @@ INSERT INTO `lng_data` VALUES ('rbac','role_confirm_block_role_info','en','The f INSERT INTO `lng_data` VALUES ('rbac','role_block_role_desc','en','The access to this and all subordinated objects is will be revoked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','role_unblocked','en',': Role will be unblocked',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','role_blocked','en',': Role will be blocked',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','role_block_role','en','Block Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','role_confirm_block_role','en','Save Role Status',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','write','en','Edit Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','role_block_role','en','Block Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_local_policy','en','Local Policy',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','write','en','Edit Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_limit_grp_crs_info','en','This relies on and automatically activates the ‘Synchronize Tree Frame’ feature.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_not','en','Not',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_page','en','New Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_chap','en','New Chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_not','en','Not',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_export_members','en','Export Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_role_status','en','Role/Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_agreement_required','en','You have to accept the user agreement, if you want to access the group content.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','read_count_avg','en','Average page views',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','create_date_max','en','Latest Registration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_export_members','en','Export Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','user_total','en','User Total',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','create_date_min','en','Earliest Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','registration_filter','en','Date of Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_agree','en','Acceptance',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','create_date_max','en','Latest Registration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','read_count_avg','en','Average page views',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_user_agreement','en','Released Data Types',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_agree','en','Acceptance',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','registration_filter','en','Date of Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_agreement_header','en','User Agreement',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_info_agreement','en','The following data types are visible for group administrators:',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_info_agree','en','I accept, that the above data types are visible for group administrators.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_book','en','Create Booking Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','optional_filter_hint','en','Please activate one of the optional filters.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_book','en','Create Booking Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','book_write','en','User can edit settings and content of booking pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','book_delete','en','User can move or delete booking pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','book_read','en','User can book resources / objects in booking pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','book_delete','en','User can move or delete booking pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','book_visible','en','Booking pool is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','book_edit_permission','en','User can change permission settings for booking pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_set_delete','en','Delete',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','X_reservations_of','en','%s reservations of',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','edit_event','en','Edit Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_set_cancel','en','Cancel Reservation',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','reservation_deleted','en','Reservation deleted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_set_cancel','en','Cancel Reservation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','edit_event','en','Edit Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','edit_permission','en','Change Permissions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','cat_administrate_users','en','Administrate Local User Accounts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','read_users','en','Read Access to User Accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_user_agreement_info','en','Visible Personal Data for Group Administrators',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_all','en','Show all',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','read_users','en','Read Access to User Accounts',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','cat_administrate_users','en','Administrate Local User Accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_info_new_grp_type','en','New Group Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_all','en','Show all',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_fromto','en','Date Range',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_public_log_info','en','Users having the \"read\" permission only will also see reservations of other users.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_public_log','en','Public Reservations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','perm_role_path_info_inheritance','en','using local policy from %1$s \"%2$s\"',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_public_log_info','en','Users having the \"read\" permission only will also see reservations of other users.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_role_path_info_created','en','Created in %1$s \"%2$s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','perm_protected_global_role','en','Protected Global Role',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','perm_role_path_info_inheritance','en','using local policy from %1$s \"%2$s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_protected_local_role','en','Protected Local Role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_cdf_data_fields','en','Available User Fields',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_cdf_edit_field','en','Edit Data Field',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','perm_protected_global_role','en','Protected Global Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_global_role','en','Global Role',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_cdf_edit_field','en','Edit Data Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_personal_book','en','Personal Bookings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking','en','Resource Booking',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_cdf_data_fields','en','Available User Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_reservations_list','en','Reservations',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_cal_entry','en','Booking of:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_reservation_status_5','en','Cancelled',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking','en','Resource Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_period','en','Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_log','en','Reservations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_reservation_failed','en','Your booking has failed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_reservation_status_5','en','Cancelled',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_reservation_confirmed','en','Your booking has been confirmed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_reservation_failed','en','Your booking has failed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_confirm_reg_info','en','Please confirm the registration for this appointment.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_confirm_unreg_info','en','Please confirm the cancellation of this registration.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_confirm_booking','en','Confirm Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_registered_users','en','Registered Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_confirm_booking','en','Confirm Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_reservation_title','en','Booking Reservation for',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_unregister','en','Unregister',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','country_selection','en','Country (Drop Down Selection)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','country_free_text','en','Country (Free Text Input)',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_hours','en','Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_reservation_fix_info','en','The reservation can only be done for fixed hours.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_register','en','Register',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','country_free_text','en','Country (Free Text Input)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','country_selection','en','Country (Drop Down Selection)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_book','en','Booking Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_book','en','Booking Pools',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_pool_added','en','A booking pool has been added.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_register','en','Register',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_reg_unregister','en','Unregister',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cg_registration_info','en','Gives users the possibility to register to course and group appointments.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_registrations','en','Appointment Registrations',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cg_registrations','en','Registration for Course/Group Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_confirm_delete','en','Do you really want to delete the following items?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_registrations','en','Appointment Registrations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_schedule_deleted','en','The booking schedule has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_updated','en','The booking schedule has been updated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_schedule_deleted','en','The booking schedule has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_added','en','A booking schedule has been added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_object_deleted','en','The booking object has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_object_updated','en','The booking object has been updated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_object_added','en','A booking object has been added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_deadline_info','en','Minimum time between booking and booked period',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_schedule_slot','en','Slot',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_deadline','en','Deadline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_schedule_slot','en','Slot',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_days_info','en','Valid booking times for each day (HH:MM-HH:MM)',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type','en','Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_days','en','Weekdays',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_add_schedule','en','Add Schedule',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_edit_schedule','en','Edit Schedule',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_is_used','en','Is Used',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_add_schedule','en','Add Schedule',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_add_object','en','Add Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_edit_object','en','Edit Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_objects_list','en','Booking Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_add_object','en','Add Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule','en','Schedule',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_book','en','Book',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_back_to_list','en','Back to List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_book','en','Book',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_no_of_objects','en','No. of Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedules','en','Schedules',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_booking_types','en','Booking Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sel_country','en','Country',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TL','en','Timor-Leste',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sel_country','en','Country',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_RS','en','Serbia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PS','en','Palestinian Territories (Occupied)',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MF','en','Saint Martin (French part)',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_ME','en','Montenegro',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_JE','en','Jersey',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IM','en','Isle of Man',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_JE','en','Jersey',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_HK','en','Hong Kong',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GG','en','Guernsey',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BL','en','Saint Barthélemy',NULL,NULL); @@ -18228,12 +18222,12 @@ INSERT INTO `lng_data` VALUES ('survey','msg_no_message_deleted','en','Please se INSERT INTO `lng_data` VALUES ('survey','msg_message_deleted','en','Messagetext deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','msg_no_message_inserted','en','Please select a message text',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','msg_message_inserted','en','Messagetext inserted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','delete_saved_message','en','Delete Message Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','insert_saved_message','en','Insert Message Text',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','delete_saved_message','en','Delete Message Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','saved_messages','en','Available messages',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','save_reuse_title','en','Message text title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','workingtime','en','Working time',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','save_reuse_message','en','Save message text for later use',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','workingtime','en','Working time',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','msg_min_max_exact_answers','en','Please check exactly %s answer(s).',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','msg_duplicate_scale','en','Please enter unique scale values.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','msg_min_max_nr_answers','en','Please check at least %s and at most %s answers.',NULL,NULL); @@ -18291,7 +18285,6 @@ INSERT INTO `lng_data` VALUES ('survey','nr_max_answers','en','Maximum',NULL,NUL INSERT INTO `lng_data` VALUES ('survey','err_maxvaluegeminvalue','en','The maximum value must be greater or equal than the minimum value and less or equal than the maximum number of answers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','use_min_answers','en','Answer selections',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','use_min_answers_option','en','Set a number of answer selections',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_cancellation_subject','en','The appointment \"%s\" has been cancelled',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_cancellation_body','en','your appointment with %s has been cancelled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_cancellation_user','en','This is a copy from the original mail to user:',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_existing','en','Reuse',NULL,NULL); @@ -18300,13 +18293,13 @@ INSERT INTO `lng_data` VALUES ('survey','use_other_answer','en','Open answer',NU INSERT INTO `lng_data` VALUES ('survey','question_mr_no_other_answer','en','Please enter a text for the other answer',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','question_mr_no_other_answer_checked','en','You need to select the checkbox if you enter a text for an answer',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','question_sr_no_other_answer_checked','en','You need to select the radio button if you enter a text for an answer',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_confirmation_body','en','your appointment with %s has been booked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_confirmation_link','en','Link to the appointment:',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_confirmation_user','en','This is a copy from the original mail to user:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_cancellation_subject','en','The appointment \"%s\" has been cancelled',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_confirmation_body','en','your appointment with %s has been booked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_booking_confirmation_subject','en','The appointment \"%s\" has been booked',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','add_re_to_subject','en','Add ‘Re: ’ to subject on reply',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','enter_new_subject','en','Please enter a new subject',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_confirm_booking_info','en','Please confirm the booking for this appointment.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','add_re_to_subject','en','Add ‘Re: ’ to subject on reply',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_confirm_booking','en','Confirm Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cancel_booking_info','en','Please confirm the cancellation of this booking.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cancel_booking','en','Cancel Booking',NULL,NULL); @@ -18318,22 +18311,23 @@ INSERT INTO `lng_data` VALUES ('crs','crs_reg_code_enabled_info','en','Besides t INSERT INTO `lng_data` VALUES ('grp','grp_reg_code','en','Admission per Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_reg_code_link','en','Link for Direct Admission',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_reg_code_enabled_info','en','Besides the chosen registration procedure and permissions this option allows users to enter directly by using the following link.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_book','en','Book Appointment',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_cancel_booking','en','Cancel Booking',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking_owner','en','Owner',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_confirm_booking_info','en','Please confirm the booking for this appointment.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_current_bookings','en','Current Bookings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_whole_wiki','en','Whole Wiki',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_selected_pages','en','Selected Pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_book','en','Book Appointment',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_whole_glossary','en','Whole Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_selected_terms','en','Selected Terms',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_order','en','Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_consultation_hours_for','en','Consultation hours for',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_download_no_download','en','Download will not be available to users, since the download feature is not activated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_booking_owner','en','Owner',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_no_download_file_available','en','There is currently no public download file available.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','htlm_import','en','Import HTML Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_selection','en','Selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('form','form_alphabet_all','en','All',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_whole_wiki','en','Whole Wiki',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_selected_pages','en','Selected Pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_download_no_download','en','Download will not be available to users, since the download feature is not activated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_download_no_menu','en','Download will not be available to users since the learning module menu is not activated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('form','form_alphabet_all','en','All',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_adm_enable_alpha_nav','en','Alphabetical Navigation in User Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_never','en','Never',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_third_and_more','en','Third or More',NULL,NULL); @@ -18341,62 +18335,62 @@ INSERT INTO `lng_data` VALUES ('content','cont_second','en','Second',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_correct_after_first','en','First Try Correct',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_users_answered','en','Users Answered',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_role_rights_copy_change_existing','en','Change Existing Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_role_rights_copy_empty','en','None',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_role_rights_copy','en','Copy Permissions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_role_rights_copy_empty','en','None',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','rbac_log_age_info','en','Maximum age of log entries in month',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_ch','en','Consultation Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','rbac_log_age','en','Keep Log Entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_personal_ch','en','Personal Consultation Hours',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_ch','en','Consultation Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_num_appointments_info','en','Please define the number of sequent appointments.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_deadline_info','en','Please define the number of hours until the registration is blocked.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_deadline','en','Latest Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_num_bookings','en','Booking per Appointment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_duration','en','Duration of Each Appointment',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_num_appointments','en','Number of Appointments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_change_owner','en','Change Owner of Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_num_bookings','en','Booking per Appointment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_deadline','en','Latest Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_changed_owner','en','Changed Owner to',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_add_sequence','en','Add Consultation Hours Sequence',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_duration','en','Duration of Each Appointment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','rbac_log','en','Permission Log',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_change_owner','en','Change Owner of Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','rbac_log_info','en','Enable logging of all changes to object permissions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_edit_template','en','Edit Role Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','rbac_log','en','Permission Log',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_edit_template_existing','en','Use Role Template for Existing Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_create_object','en','Create Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_link_object','en','Link Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_edit_template','en','Edit Role Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_copy_object','en','Copy Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_create_object','en','Create Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_move_object','en','Move Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_link_object','en','Link Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_inheritance_rmv','en','Allowed Inheritance for \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_source_object','en','Source object',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_edit_permissions','en','Edit Permissions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_inheritance_rmv','en','Allowed Inheritance for \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_operation_add','en','Added Operation for \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_log_operation_rmv','en','Removed Operation for \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log_inheritance_add','en','Stopped Inheritance for \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_changes','en','Changes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','app_consultation_hours','en','Consultation Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_log','en','Log',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_form_info','en','This option enables the management of personal consultation hours in the calendar.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_changes','en','Changes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_operation_add','en','Added Operation for \"%s\"',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_log_operation_rmv','en','Removed Operation for \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_form','en','Enable Consultation Hours',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','app_consultation_hours','en','Consultation Hours',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_form_info','en','This option enables the management of personal consultation hours in the calendar.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_ch_form_header','en','Consultation Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cals_add_consultation_hours','en','User can offer and edit consultation hours in calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_back_to_cal','en','Back to Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_delete_recurrences','en','Delete all recurrences',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_delete_single','en','Delete only this appointment',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_manage','en','Manage Calendars',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_unshare','en','Cancel Sharing',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_back_to_search','en','Back to Search',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_unshare','en','Cancel Sharing',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_back_to_list','en','Back to List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_upcoming_events_header','en','Upcoming Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_import','en','Import Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_import','en','Import Exercise',NULL,NULL); -INSERT INTO `lng_data` VALUES ('feed','feed_import','en','Import Feed',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_repeat_until','en','Repeat until',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_page_link','en','URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_upcoming_events_header','en','Upcoming Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_link','en','URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('feed','feed_import','en','Import Feed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_page_link','en','URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_page_body_comment','en','a comment has been added to the following wiki page',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_page_body_delete','en','the following wiki page has been deleted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_page_body_update','en','the following wiki page has been updated',NULL,NULL); INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_subject','en','Wiki \"%1$s\" has been changed: %2$s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_submission_notification_link','en','Link to exercise: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('wiki','wiki_change_notification_page_body_update','en','the following wiki page has been updated',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_submission_notification_subject','en','Exercise \"%s\" - New submission uploaded',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_submission_notification_link','en','Link to exercise: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_submission_notification_body','en','A new submission for exercise \"%s\" has been uploaded.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_submission_notification_info','en','You will be notified when submissions are uploaded. This is a personal setting which does not affect other administrators of the exercise.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_submission_notification','en','E-Mail Notification on Submissions',NULL,NULL); @@ -18405,8 +18399,8 @@ INSERT INTO `lng_data` VALUES ('wiki','wiki_import','en','Import Wiki',NULL,NULL INSERT INTO `lng_data` VALUES ('crs','crs_add_to_group','en','Add to Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_groups_nr','en','Number of Memberships',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_members_groups','en','Memberships in Groups',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','info_answer_type_change','en','The question already contains images. You can\'t change the answer type to multi-line answers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_custom_user_fields','en','Group Relevant User Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','info_answer_type_change','en','The question already contains images. You can\'t change the answer type to multi-line answers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_custom_user_fields','en','Course Relevant User Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('tbl','tbl_export_csv','en','Export CSV',NULL,NULL); INSERT INTO `lng_data` VALUES ('tbl','tbl_export_excel','en','Export Excel',NULL,NULL); @@ -18414,11 +18408,11 @@ INSERT INTO `lng_data` VALUES ('administration','group_export','en','Visible in INSERT INTO `lng_data` VALUES ('search','search_item_filter_form_info','en','Search can be restricted to the chosen object types.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_item_filter_form','en','Search by Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_add_new_local_role','en','Add New Local Role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_adm_notification_info','en','Choose this option, to send optional mail notifications to course/group participants about changed appointments.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_grp_notification_body','en','an appointment has been changed in group \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_crs_notification_body','en','an appointment has been changed in course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_notification','en','Mail Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_notification_info','en','If enabled, all course/group participants will be notified per mail about this appointment.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_adm_notification_info','en','Choose this option, to send optional mail notifications to course/group participants about changed appointments.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_grp_notification_body','en','an appointment has been changed in group \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_crs_new_notification_body','en','a new appointment has been created in course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_grp_new_notification_body','en','a new appointment has been created in group \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_notification_salutation','en','Dear course participant,',NULL,NULL); @@ -18438,37 +18432,37 @@ INSERT INTO `lng_data` VALUES ('administration','adm_sql','en','SQL',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_db_bench_sorted_by_sql','en','Sorted by SQL',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_db_bench_slowest_first','en','Slowest First',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_db_bench_chronological','en','Chronological',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_db_benchmark_user_desc','en','Only measurements for this user will be made.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_db_benchmark_user','en','User Account Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_activate_db_benchmark_desc','en','Benchmarking will be automatically disabled after one request.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_db_benchmark_user_desc','en','Only measurements for this user will be made.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_db_benchmark','en','DB Benchmark',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_activate_db_benchmark','en','Activate Benchmark',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_alignment','en','Alignment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_set_alignment','en','Set Alignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_activate_db_benchmark_desc','en','Benchmarking will be automatically disabled after one request.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_msg_user_already_assigned','en','The chosen users are already assigned to this role.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sorting_info_inherit','en','The sorting mode is adopted from a parent course/group.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_alignment','en','Alignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_set_alignment','en','Set Alignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sort_inherit_prefix','en','Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','backto_lua','en','Back to Local User Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','restrict_user_access_info','en','Enabled this option only if you want to restrict the access to user accounts. If enabled access to local and global user accounts is only granted when a role has the permission ‘Read Access to User Account’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','restrict_user_access','en','Restricted Access to User Accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','enable_local_user_administration_info','en','If enabled, local user accounts can be administrated in categories and organisational units.',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','enable_local_user_administration','en','Enable Local User Administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_summary','en','Summary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_shape_whole_picture','en','Edit Shape (Whole Picture)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_rss_title_format_news_obj','en','News Headline (Object Title)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_summary','en','Summary',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_rss_title_format_obj_news','en','Object Title - News Headline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_rss_title_format_news_obj','en','News Headline (Object Title)',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_rss_title_format','en','Title Format of RSS Entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_add_news','en','Add News',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_overwrite','en','Overwrite',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_keep_existing','en','Keep Existing',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_paste_characteristics','en','Paste Style Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_style_classes_copied','en','Style classes have been copied.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_attached_to','en','Attached to',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_paste_characteristics','en','Paste Style Classes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_paste_style_classes','en','Paste Style Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_if_style_class_already_exists','en','If style class already exists...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_overwrite','en','Overwrite',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_keep_existing','en','Keep Existing',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_copied_please_select_target','en','The style classes have been copied. Please open the target style and click ‘Paste Style Classes’.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_delete_other_selected','en','Continue',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_paste_style_classes','en','Paste Style Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_all_styles_obligatory','en','All selected styles are compulsory and cannot be deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_delete_other_selected','en','Continue',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_some_styles_obligatory_delete_rest','en','The following style classes are compulsory and cannot be deleted. Do you want to continue and delete the remaining selected style classes?',NULL,NULL); INSERT INTO `lng_data` VALUES ('tbl','tbl_template_created','en','The current view has been saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('tbl','tbl_template_deleted','en','The saved view has been deleted.',NULL,NULL); @@ -18477,14 +18471,14 @@ INSERT INTO `lng_data` VALUES ('cmps','cmps_configure','en','Configure',NULL,NUL INSERT INTO `lng_data` VALUES ('tbl','tbl_templates','en','View',NULL,NULL); INSERT INTO `lng_data` VALUES ('tbl','tbl_template_create','en','Save Current View',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_limit_grp_crs','en','Show limited context tree in courses and groups.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_all_types','en','All Resource Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_all_types_info','en','All types of resources are listed in the tree.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_only_cntr','en','Container Only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_all_types','en','All Resource Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_only_cntr_info','en','Only categories, courses and groups are listed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_only_cntr','en','Container Only',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_rep_tree_presentation','en','Repository Tree Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_editing_view','en','Editing View',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','glo_full_definitions','en','Full Definitions',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_full_definitions_info','en','Terms and definitions are fully displayed in the main view.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','glo_full_definitions','en','Full Definitions',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_text_snippet_length_info','en','Length of the text snippet of the definition that is shown in the overview.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_text_snippet_length','en','Definition Snippet Length',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_table_form_info','en','Terms and definition are first shown in a two-column overview. Clicking the term opens the full content of a term on a separate screen.',NULL,NULL); @@ -18561,17 +18555,17 @@ INSERT INTO `lng_data` VALUES ('rep','rep_dependent_object','en','Resource with INSERT INTO `lng_data` VALUES ('rep','rep_object_to_delete','en','To Delete',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_dependencies','en','Dependencies',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_create_link','en','Create Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_percentage','en','Percentage',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lk_file','en','File/Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select_file','en','Select File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lk_file','en','File/Document',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_percentage','en','Percentage',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_spent_seconds','en','Time Spent',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_read_count','en','Access Number',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_first_access','en','First Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dont_use_questionpool','en','Don\'t insert the questions in a question pool (only available in this survey)',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_search_users','en','Search for participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_search_users','en','Search Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_to_global_roles_not_allowed','en','%1$s (it is not allowed to send mails to global roles)',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mail_mail_to_global_roles','en','User can send mails to global roles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_to_global_roles_not_allowed','en','%1$s (it is not allowed to send mails to global roles)',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_post_activation_mail','en','Unless the following posting is not activated, it is not visible for other forum users. You receive this e-mail because you are assigned as moderator and have the permission to activate this posting.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reached_session_limit','en','The limit of online users is reached. Please try again later.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_max_idle_after_first_request_info','en','All sessions that idles for at least this period of time after first request will be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.',NULL,NULL); @@ -18730,24 +18724,24 @@ INSERT INTO `lng_data` VALUES ('trac','trac_mode_exercise_returned_info','en','T INSERT INTO `lng_data` VALUES ('trac','trac_mode_event','en','Tutors Monitor and Record Attendance',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mode_deactivated','en','Learning Progress is Deactivated',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection','en','Status is Determined by a Collection of Items',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection_info','en','A user\'s learning progress status is determined by the learning progress status of a collection of items: If the status of all items in the collection is ‘Completed’ the overall status is ‘Completed’ .
Items can be assigned to the collection on this screen after saving this setting.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_mark','en','Mark',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_mode_collection_info','en','A user\'s learning progress status is determined by the learning progress status of a collection of items: If the status of all items in the collection is ‘Completed’ the overall status is ‘Completed’ .
Items can be assigned to the collection on this screen after saving this setting.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_determination','en','Items Determining the Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_determination_info_sco','en','Select the items that determine the overall learning progress status of the SCORM learning module.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lp_determination_info_crs','en','Select the items that determine the overall learning progress status.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_learning_progress','en','Learning Progress',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_info_edited','en','Set the status to ‘Completed’ if you think you have processed all content.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_last_access','en','Last Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_in_progress','en','In Progress',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_info_edited','en','Set the status to ‘Completed’ if you think you have processed all content.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_hide','en','Hide',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_hide_selected','en','Hide Selected Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_filter_hidden','en','Hidden',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_failed','en','Failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_filter_area','en','Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_failed','en','Failed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','trac_crs_objects','en','Course Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_edit_collection','en','Please assign materials. If the status of all assigned items is ‘Completed’ the overall status is completed by the user.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_completed','en','Completed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','trac_crs_objects','en','Course Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_comment','en','Remark',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_collection_deassign','en','Deselect for Learning Progress Determination',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_collection_assign','en','Select for Learning Progress Determination',NULL,NULL); @@ -18757,8 +18751,8 @@ INSERT INTO `lng_data` VALUES ('trac','trac_anonymized_info','en','If enabled, a INSERT INTO `lng_data` VALUES ('trac','trac_anonymized_info_short','en','(Anonymized)',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','select_one','en','Please select one object',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','search_terms','en','Search Term(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('trac','obj_types','en','Object Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','search_area_info','en','Please choose one object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('trac','obj_types','en','Object Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','meta_typical_learning_time','en','Typical learning time',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','last_login','en','Last Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','info_valid_request','en','The maximum valid time between two requests of a user.',NULL,NULL); @@ -18783,8 +18777,8 @@ INSERT INTO `lng_data` VALUES ('survey','users_invited','en','%s users have been INSERT INTO `lng_data` VALUES ('survey','users_skipped','en','Users Skipped',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','users_answered','en','Users Answered',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','used','en','used',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','use_anonymous_id','en','Show Survey Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','use_browser_print_function','en','Please use the print function of your web browser.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','use_anonymous_id','en','Show Survey Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','upper_limit','en','Upper Limit',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','use_anonymous_id_desc','en','If checked, the username in anonymized surveys will be shown as the survey code, otherwise the text ‘Anonymous’ will be shown.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','unfold','en','Unfold',NULL,NULL); @@ -18837,40 +18831,40 @@ INSERT INTO `lng_data` VALUES ('survey','spl_paste_no_objects','en','There are n INSERT INTO `lng_data` VALUES ('survey','spl_online_property','en','Online',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','spl_online_property_description','en','If the question pool is not online, it cannot be used in surveys.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','spl_move_select_none','en','Please check at least one question to select it for moving',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','spl_move_same_pool','en','It has no effect to move questions from inside the same question pool.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','spl_move_insert_clipboard','en','The selected question(s) are marked for moving',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','spl_move_same_pool','en','It has no effect to move questions from inside the same question pool.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','spl_copy_select_none','en','Please check at least one question to copy it to the clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','skipped','en','skipped',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','spl_copy_insert_clipboard','en','The selected question(s) are copied to the clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','show_questiontext','en','Display the Question Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','select_target_position_for_move_question','en','Please select a target position to move the question(s) and press one of the insert buttons!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','select_value','en','Enter a Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','selection','en','Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','show_questiontext_description','en','If this checkbox is selected, for every question in the question block the question text will be shown. If this checkbox is not selected, the question text of every question in the question block will be hidden.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','select_target_position_for_move_question','en','Please select a target position to move the question(s) and press one of the insert buttons!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','select_relation','en','Select a Relation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','select_questionpool','en','Please select a question pool to store the created question',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','select_questionpool_short','en','Question Pool Survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','select_option','en','--- Please select an option ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','select_prior_question','en','Select a prior question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','select_option','en','--- Please select an option ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','search_users','en','Search Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','search_term','en','Search Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','search_roles','en','Found Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','search_groups','en','Found Groups',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','scale','en','Scale',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','search_for','en','Search for',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','scale','en','Scale',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','save_phrase','en','Save as Phrase',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','save_phrase_introduction','en','If you want to save the answers below as default phrase, please enter a phrase title. You can access a default phrase whenever you want to add a phrase to an ordinal question.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','save_obligatory_state','en','Save Compulsory States and Order',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','row_text','en','Row Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','resume_survey','en','Resume the Survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','results','en','Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','reset_filter','en','Reset Filter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','results','en','Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','remove_questions','en','Are you sure you want to remove the following question(s) and/or question block(s) from the survey?',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','remove_question','en','Remove',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','ratio_non_absolute','en','Ratio-Non-Absolute',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','questiontype','en','Question Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','ratio_absolute','en','Ratio-Absolute',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','questions','en','Questions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','questiontype','en','Question Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','questions_removed','en','Question(s) and/or question block(s) removed!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','questions_inserted','en','Question(s) inserted!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','questionblocks','en','Question Blocks',NULL,NULL); @@ -18882,8 +18876,8 @@ INSERT INTO `lng_data` VALUES ('survey','question_obligatory','en','The question INSERT INTO `lng_data` VALUES ('survey','question_not_checked','en','Please check one of the offered answers!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','question_mr_not_checked','en','Please check at least one of the offered answers!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','qpl_unfold_select_none','en','Please select at least one question block if you want to unfold question blocks!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','qpl_savephrase_exists','en','The phrase title already exists! Please enter another phrase title.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','qpl_savephrase_empty','en','Please enter a phrase title!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','qpl_savephrase_exists','en','The phrase title already exists! Please enter another phrase title.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','qpl_questions_deleted','en','Question(s) deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','qpl_phrases_deleted','en','Phrase(s) deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','qpl_export_select_none','en','Please check at least one question to export it',NULL,NULL); @@ -18895,10 +18889,10 @@ INSERT INTO `lng_data` VALUES ('survey','qpl_confirm_delete_questions','en','Are INSERT INTO `lng_data` VALUES ('survey','qpl_confirm_delete_phrases','en','Are you sure you want to delete the following phrase(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','preview','en','Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','please_select','en','-- please select --',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','percentage_of_selections','en','Percentage of selections',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','phrase_added','en','Phrase added',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','phrase_saved','en','The phrase was saved successfully!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','outro','en','Concluding Remarks',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','percentage_of_selections','en','Percentage of selections',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','phrase_added','en','Phrase added',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','or','en','or',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','orientation','en','Orientation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','on','en','On',NULL,NULL); @@ -18944,26 +18938,26 @@ INSERT INTO `lng_data` VALUES ('survey','matrix_neutral_column_separator','en',' INSERT INTO `lng_data` VALUES ('survey','matrix_neutral_column_separator_description','en','Select the check box if you want to have a separator (thick line) between the neutral column and the other columns in the output of the Matrix Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_neutral_answer','en','Text for a Neutral Column (‘Not Specified’, ‘I don\'t know’ etc.)',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_left_pole','en','Left Pole',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','matrix_columns','en','Matrix Columns',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_column_settings','en','Matrix Column Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','matrix_columns','en','Matrix Columns',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_column_separators','en','Column Separators',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_column_separators_description','en','Select the check box if you want to have separators (thin lines) between the columns in the output of the Matrix Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_bipolar_adjectives','en','Bipolar Adjectives',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','matrix_appearance','en','Appearance',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','matrix_bipolar_adjectives_description','en','You may use a pair of bipolar adjectives to scale the column responses to words, short phrases, or texts',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','matrix_appearance','en','Appearance',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','materials','en','Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','materials_deleted','en','Material(s) have been removed from the question.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','material','en','Material',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','material_added_successfully','en','You successfully set a material link!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','manage_phrases','en','My Phrases',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','maintenance','en','Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','layout','en','Layout',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','legend','en','Legend',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','lower_limit','en','Lower Limit',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','last_update','en','Updated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','layout','en','Layout',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','legend','en','Legend',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','language_changed','en','Language changed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','introduction','en','Introductory Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','invited_users','en','Selected Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','introduction','en','Introductory Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','internal_link','en','Internal Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','insert_missing_questionblock','en','Please select at least one question block to insert it into the survey!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','insert_missing_question','en','Please select at least one question to insert it into the survey!',NULL,NULL); @@ -18975,9 +18969,9 @@ INSERT INTO `lng_data` VALUES ('survey','import_no_file_selected','en','No file INSERT INTO `lng_data` VALUES ('survey','import_error_opening_file','en','Error opening the import file!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','import_error_closing_file','en','Error closing the import file!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','horizontal','en','Horizontal',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','harmonic_mean','en','Harmonic Mean',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','heading','en','Heading',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','glossary_term','en','Glossary Term',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','harmonic_mean','en','Harmonic Mean',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','given_answers','en','Given Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','geometric_mean','en','Geometric Mean',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','filter','en','Filter',NULL,NULL); @@ -18992,10 +18986,10 @@ INSERT INTO `lng_data` VALUES ('survey','evaluation_access','en','Participants\' INSERT INTO `lng_data` VALUES ('survey','evaluation_access_participants','en','All Survey Participants can Access the Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','evaluation_access_info','en','You have access to the survey results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','evaluation_access_off','en','Participants Cannot Access Results',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','err_no_pool_name','en','Please enter the name of a survey question pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','error_retrieving_anonymous_survey','en','The system could not find your survey data for survey code "%s". Please check the survey code you have entered!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','evaluation_access_all','en','All Registered Users can Access the Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','enter_valid_number_of_codes','en','Please enter a valid number to generate survey access codes!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','err_no_pool_name','en','Please enter the name of a survey question pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','error_retrieving_anonymous_survey','en','The system could not find your survey data for survey code "%s". Please check the survey code you have entered!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','enter_phrase_title','en','Please enter a Phrase Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','enter_anonymous_id','en','Survey Access Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','end_date','en','End Date',NULL,NULL); @@ -19029,68 +19023,68 @@ INSERT INTO `lng_data` VALUES ('survey','description_maxchars','en','If nothing INSERT INTO `lng_data` VALUES ('survey','define_questionblock','en','Define Question Block',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_yes','en','yes',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_verygood','en','very good',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_varying','en','varying',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_stronglyundesired','en','strongly undesired',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_true','en','true',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_undecided','en','undecided',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_undesired','en','undesired',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_stronglydisagree','en','strongly disagree',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_sometimes','en','sometimes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_varying','en','varying',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_stronglyundesired','en','strongly undesired',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_stronglyagree','en','strongly agree',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_stronglydesired','en','strongly desired',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_stronglydisagree','en','strongly disagree',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_sometimes','en','sometimes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_should','en','should',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_shouldnot','en','should not',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_rarely','en','rarely',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_should','en','should',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_notacceptable','en','not acceptable',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_poor','en','poor',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_no','en','no',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_notacceptable','en','not acceptable',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_never','en','never',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_mustnot','en','must not',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_neutral','en','neutral',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_must','en','must',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_mustnot','en','must not',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_mostcertainly','en','most certainly',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_mostcertainlynot','en','most certainly not',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_morepositive','en','more positive',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_mostcertainly','en','most certainly',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_good','en','good',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','dc_manytimes','en','many times',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_morenegative','en','more negative',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_fair','en','fair',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_false','en','false',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_good','en','good',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','dc_manytimes','en','many times',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_disagree','en','disagree',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_desired','en','desired',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_definitelytrue','en','definitely true',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_always','en','always',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_definitelyfalse','en','definitely false',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','create_new','en','Create New',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','dc_agree','en','agree',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','create_date','en','Created',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','create_new','en','Create New',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','continue','en','Continue >>',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','constraints','en','Routing',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','contains','en','Contains',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','constraints','en','Routing',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','constraints_no_questions_or_questionblocks_selected','en','Please select at least one question or question block!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','constraints_no_nonessay_available','en','There are no previous questions available to define routing rules. The following types are supported: Metric, Single Choice and Multiple Choice question.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','constraints_list_of_entities','en','Available hooks for routing rules',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','constraints_introduction','en','You can add a routing rule to a single question or a question block with multiple questions. Depending on the specific answer given to an earlier question participants get presented with a defined next question. Thus questions irrelevant to a participant will not be asked and the survey gets shorter or more specific depending on the answers provided earlier. No routing rules can be set for the first question or question block in a survey.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','constraints_first_question_description','en','The first entity could not have any routing because there are no previous questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','constraint_add','en','Add Routing Rule',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','constraints_first_question_description','en','The first entity could not have any routing because there are no previous questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','confirm_sync_questions','en','The question you changed is a copy which has been created for use with the active survey. Do you want to change the original of the question too?',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','confirm_remove_heading','en','Are you sure you want to remove the heading?',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','confirm_delete_single_user_data','en','Are you sure you want remove the participants? This will delete any survey data of the selected users.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','confirm_delete_all_user_data','en','Are you sure you want to delete all user data of the survey?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','concatenation','en','Concatenation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','combobox','en','Combobox',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','concatenation','en','Concatenation',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','codes','en','Access Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','codes_deleted','en','Code(s) deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','codes_created','en','Code(s) created',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','chart','en','Chart',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','category_nr_selected','en','Number of selections',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','category','en','Answer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','chart','en','Chart',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','categories','en','Answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','category_nr_selected','en','Number of selections',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','cannot_switch_to_online_no_questions','en','The status cannot be changed to "online" because there are no questions in the survey!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','cannot_read_survey','en','You do not possess sufficient permissions to read the survey data!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','cannot_participate_survey','en','You do not possess sufficient permissions to participate in the survey!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','cannot_manage_phrases','en','You do not possess sufficient permissions to manage the phrases!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','cancel_survey','en','Suspend the Survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','cannot_manage_phrases','en','You do not possess sufficient permissions to manage the phrases!',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','before','en','before',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','browse_for_questions','en','Add from Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','back','en','Back',NULL,NULL); @@ -19101,12 +19095,12 @@ INSERT INTO `lng_data` VALUES ('survey','anonymize_anonymous_introduction','en', INSERT INTO `lng_data` VALUES ('survey','anonymization','en','Anonymization',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','already_completed_survey','en','You have already finished the survey! You are not able to enter the survey again.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','adm_no_special_users','en','There are no special users defined who are able to run a survey more than once.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','add_phrase','en','Add Phrase',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','add_heading','en','Add Heading',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','add_material','en','Add Material',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','style_current_style','en','Current Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','style_delete_style','en','Delete Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','add_phrase','en','Add Phrase',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','style_edit_style','en','Edit Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','add_heading','en','Add Heading',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','style_delete_style','en','Delete Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','style_current_style','en','Current Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_word_spacing','en','Word Spacing',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_width_height','en','Width x Height',NULL,NULL); @@ -19116,19 +19110,19 @@ INSERT INTO `lng_data` VALUES ('style','sty_vertical_align','en','Vertical Align INSERT INTO `lng_data` VALUES ('style','sty_vaccordion_templates','en','Vert. Accordion Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_va_ihead_class','en','Vert. Accordion Item Header',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_va_icont_class','en','Vert. Accordion Item Content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_va_cntr_class','en','Vert. Accordion Container',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_va_icntr_class','en','Vert. Accordion Item Container',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_va_cntr_class','en','Vert. Accordion Container',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type','en','Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_va_icont','en','Vert. Accordion Item Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_va_ihead','en','Vert. Accordion Item Header',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_va_icntr','en','Vert. Accordion Item Container',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_va_icont','en','Vert. Accordion Item Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_va_cntr','en','Vert. Accordion Container',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_text_inline','en','Character',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_text_block','en','Text Block',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_table','en','Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_table_cell','en','Table Cell',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_sco_title','en','SCO Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_table','en','Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_section','en','Section',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_sco_title','en','SCO Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_sco_obj','en','SCO Objective',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_sco_keyw','en','SCO Keywords',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_sco_desc','en','SCO Description',NULL,NULL); @@ -19140,46 +19134,46 @@ INSERT INTO `lng_data` VALUES ('style','sty_type_qinput','en','Text Input',NULL, INSERT INTO `lng_data` VALUES ('style','sty_type_qfeedw','en','Feedback, Wrong',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qfeedr','en','Feedback, Right',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_qanswer','en','Answer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_page_title','en','Page Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_tnav','en','Top Navigation',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_rnavlink','en','Right Navigation Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_page_title','en','Page Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_rnavimage','en','Right Navigation Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_rnav','en','Right Navigation',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_lnavlink','en','Left Navigation Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_page_lnavimage','en','Left Navigation Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_lnav','en','Left Navigation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_page_lnavimage','en','Left Navigation Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_fn','en','Footnote',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_frame','en','Page Frame',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_page_bnav','en','Bottom Navigation',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_page_cont','en','Page Container',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_page_bnav','en','Bottom Navigation',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_media_cont','en','Media Container',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_media_caption','en','Media Caption',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_list_u','en','Bulleted List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_list_o','en','Numbered List',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_list_item','en','List Item',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_list_o','en','Numbered List',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_link','en','Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_heading3','en','Heading 3',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_heading2','en','Heading 2',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_heading1','en','Heading 1',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_heading2','en','Heading 2',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_ha_ihead','en','Hor. Accordion Item Header',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_ha_icont','en','Hor. Accordion Item Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_ha_icntr','en','Hor. Accordion Item Container',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_type_flist','en','File List',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_ha_cntr','en','Hor. Accordion Container',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_type_flist','en','File List',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_flist_li','en','File List Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_flist_head','en','File List Heading',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_flist_cont','en','File List Container',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_type_flist_a','en','File List Item Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_top','en','Top',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_text','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_top_bottom_padding','en','Cell Padding Top/Bottom',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_text','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_text_transform','en','Text Transform',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_text_inline_char','en','Text (Character)',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_text_indent','en','Text Indentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_text_decoration','en','Text Decoration',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_text_block_char','en','Text (Block)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_templates','en','Templates',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_text_decoration','en','Text Decoration',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_text_align','en','Text Alignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_templates','en','Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_template_name','en','Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_template_layout','en','Template Layout',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_tag_normal','en','Normal',NULL,NULL); @@ -19219,33 +19213,33 @@ INSERT INTO `lng_data` VALUES ('style','sty_nr_learning_modules','en','Number of INSERT INTO `lng_data` VALUES ('style','sty_name','en','Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_msg_input_must_be_numeric','en','Input must be numeric.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_msg_color_must_only_include','en','The color name may only include the following characters:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_msg_characteristic_must_only_include','en','The title of style classes must start with a letter and only include the following characters:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_move_style','en','Change Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_move_lm_styles','en','Change Style of Learning Modules',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_move_style','en','Change Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_msg_characteristic_must_only_include','en','The title of style classes must start with a letter and only include the following characters:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_min_height','en','Minimum Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_margin','en','Margin',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_media_char','en','Media',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_min_height','en','Minimum Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_margin_and_padding','en','Margin and Padding',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_link_char','en','Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_list_char','en','List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_link_char','en','Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_line_height','en','Line Height',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_lightness_header_text','en','Lightness Header Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_lightness_header_bg','en','Lightness Header Background',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_lightness_header_text','en','Lightness Header Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_lightness_cell2_text','en','Lightness Cell 2 Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_lightness_cell1_text','en','Lightness Cell 1 Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_lightness_cell2_bg','en','Lightness Cell 2 Background',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_lightness_cell1_text','en','Lightness Cell 1 Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_lightness_cell1_bg','en','Lightness Cell 1 Background',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_letter_spacing','en','Letter Spacing',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_lightness_border','en','Lightness Border',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_left','en','Left',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_letter_spacing','en','Letter Spacing',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_left_right_padding','en','Cell Padding Left/Right',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_individual_styles','en','Individual Styles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_images','en','Images',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_left_right_padding','en','Cell Padding Left/Right',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_import_stylesheet','en','Import Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_horizontal','en','Horizontal',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_image_file','en','Image File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_height','en','Height',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_images','en','Images',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_horizontal','en','Horizontal',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_hide','en','Hide',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_height','en','Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_haccordion_templates','en','Hor. Accordion Templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_ha_ihead_class','en','Hor. Accordion Item Header',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_ha_icont_class','en','Hor. Accordion Item Content',NULL,NULL); @@ -19253,8 +19247,8 @@ INSERT INTO `lng_data` VALUES ('style','sty_ha_icntr_class','en','Hor. Accordion INSERT INTO `lng_data` VALUES ('style','sty_ha_cntr_class','en','Hor. Accordion Container',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_generate_template','en','Generate Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_font_weight','en','Font Weight',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_font_variant','en','Font Variant',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_font_style','en','Font Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_font_variant','en','Font Variant',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_font_size','en','Font Size',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_font_family','en','Font Family',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_float','en','Float',NULL,NULL); @@ -19264,8 +19258,8 @@ INSERT INTO `lng_data` VALUES ('style','sty_even_row_class','en','Even Rows',NUL INSERT INTO `lng_data` VALUES ('style','sty_even_col_class','en','Even Columns',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_edit_template','en','Edit Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_disable_auto_margins','en','Disable Auto Margins',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_del_template','en','Delete Templates and Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_disable_auto_margins_info','en','Disables automatic setting of left/right to 0px, if media objects or tables are left/right aligned.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_del_template','en','Delete Templates and Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_del_template_keep_classes','en','Delete and keep Style Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_default_style','en','Default Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_cursor','en','Cursor',NULL,NULL); @@ -19279,14 +19273,14 @@ INSERT INTO `lng_data` VALUES ('style','sty_confirm_del_ind_styles_desc','en','A INSERT INTO `lng_data` VALUES ('style','sty_confirm_color_deletion','en','Confirm Color Deletion',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_confirm_char_deletion','en','Are you sure that you want to delete the following style class(es)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_commands','en','Commands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_colors','en','Colors',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_color','en','Color',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_colors','en','Colors',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_color_name','en','Color Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_color_info','en','Predefined colors make it easy to reuse a color for different purposes. You refer to a predefined color by using its name with a leading ‘!’ for any color attribute in your style classes. To use a flavour, append a lightness value in brackets to the color name, e.g. ‘!MyColor(20)’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_color_flavors','en','Color Flavors',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_color_code','en','Color Code',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_color_already_exists','en','A color with this name already exists in this style.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_col_head_class','en','Column Header',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_color_already_exists','en','A color with this name already exists in this style.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_col_foot_class','en','Column Footer',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_clear','en','Clear',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_characteristic_already_exists','en','A style class with this title already exists within this style.',NULL,NULL); @@ -19301,39 +19295,39 @@ INSERT INTO `lng_data` VALUES ('style','sty_based_on','en','Based on',NULL,NULL) INSERT INTO `lng_data` VALUES ('style','sty_base_color','en','Base Color',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_background','en','Background',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_background_repeat','en','Background Repeat',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_background_position','en','Background Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_background_image','en','Background Image',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_background_position','en','Background Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_background_color','en','Background Color',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_background_attachment','en','Background Attachment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_added_characteristic','en','Added style class.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_all','en','All',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_added_characteristic','en','Added style class.',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_add_template','en','Add Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_add_pgl','en','Add Page Layout',NULL,NULL); -INSERT INTO `lng_data` VALUES ('style','sty_add_color','en','Add Color',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_add_image','en','Add Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_add_characteristic','en','Add Style Class',NULL,NULL); +INSERT INTO `lng_data` VALUES ('style','sty_add_color','en','Add Color',NULL,NULL); INSERT INTO `lng_data` VALUES ('style','sty_acopy','en','Copy',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_activate_new','en','New Accounts with Approval',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_activate_new_info','en','If checked any new account creation has to be approved by an administrator.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_activate_new','en','New Accounts with Approval',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_update_roles','en','Role Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_update_role_ass_table','en','Edit Role Assignment Rule',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_settings','en','Shibboleth Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_rules_tables','en','Active Role Assignment Rules',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_rule_type','en','Type of Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_rule_condition','en','Condition',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_rule_type','en','Type of Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_role_selection','en','Role Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_role_name','en','ILIAS Role Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_role_name_info','en','Please choose either a global role or enter the name of a local role.',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_role_by_plugin','en','By Plugin',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_role_by_attribute','en','Shibboleth Attribute',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_role_assignment','en','Role Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_role_ass_table','en','New Rule for Role Assignments',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_plugin','en','Assignment by Plugin',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_role_assignment','en','Role Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_remove_deprecated','en','Deassign Deprecated Roles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_plugin_info','en','Validate the role assignment with a plugin. Please enter a valid plugin id.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_plugin','en','Assignment by Plugin',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_plugin_id','en','Plugin Id',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_missing_role','en','Please select one role.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_plugin_info','en','Validate the role assignment with a plugin. Please enter a valid plugin id.',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_new_rule','en','Add new Rule',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_missing_role','en','Please select one role.',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_missing_plugin_id','en','Please enter a valid plugin id.',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_missing_attr_value','en','Please enter the attribute value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_missing_attr_name','en','Please enter the attribute name.',NULL,NULL); @@ -19350,8 +19344,8 @@ INSERT INTO `lng_data` VALUES ('shib','shib_attribute_name','en','Attribute Name INSERT INTO `lng_data` VALUES ('shib','shib_attr_info','en','Assign by a specific attribute in the Shibboleth User Profile.',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_assignment_type','en','Kind of Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('shib','shib_add_remove','en','Add/Remove Roles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('shib','shib_add_missing','en','Assign Missing Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','until','en','up to',NULL,NULL); +INSERT INTO `lng_data` VALUES ('shib','shib_add_missing','en','Assign Missing Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_users','en','Search Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_user','en','Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_user_extended','en','Extended User Search',NULL,NULL); @@ -19366,13 +19360,13 @@ INSERT INTO `lng_data` VALUES ('search','search_no_selection','en','You made no INSERT INTO `lng_data` VALUES ('search','search_no_match','en','Your search did not match any results',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_no_match_hint','en','Your search for %s did not match any documents.

Suggestions:
• Make sure all words are spelled correctly.
• Try different keywords.
• Try more general keywords.
• Try fewer keywords.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_no_connection_lucene','en','Cannot connect to Lucene server.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_minimum_three','en','Your search must be at least three characters long.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_lucene','en','Lucene search',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_minimum_three','en','Your search must be at least three characters long.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_lom','en','LOM Metadata',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_limit_reached','en','Your search produced more than %s hits. You can restrict the search terms to receive more detailed results.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_like_info','en','Choose this option to get best results.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_hide_adv_search','en','Hide Advanced Search',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_limit_reached','en','Your search produced more than %s hits. You can restrict the search terms to receive more detailed results.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_index','en','Indexed search',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_hide_adv_search','en','Hide Advanced Search',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_grp_title','en','Group Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_full_info','en','Choose this option to search in a large amount of data.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_for_users','en','Search for users',NULL,NULL); @@ -19380,10 +19374,10 @@ INSERT INTO `lng_data` VALUES ('search','search_for_role_members','en','Search f INSERT INTO `lng_data` VALUES ('search','search_for_grp_members','en','Search for Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_for_crs_members','en','Search for Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_fast_info','en','Search for titles, descriptions and keywords in all object types',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_details_info','en','Detailed search. Please select one or more resource types.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_direct','en','Direct search',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_content','en','Page Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_crs_title','en','Course Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','search_details_info','en','Detailed search. Please select one or more resource types.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_content','en','Page Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_choose_object_type','en','Please choose one object type.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_area','en','Area',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','search_auto_complete_length','en','Number of Auto Complete List Entries',NULL,NULL); @@ -19401,8 +19395,8 @@ INSERT INTO `lng_data` VALUES ('search','lucene_show_relevance_info','en','Searc INSERT INTO `lng_data` VALUES ('search','lucene_settings_title','en','Lucene Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_settings_tab','en','Lucene',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_relevance','en','Relevance of Search Results',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','lucene_port','en','Port',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_relevance_short','en','Relevance',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','lucene_port','en','Port',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_or','en','OR',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_num_fragments','en','Number of Text Fragments',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_num_frag_info','en','Please choose the maximum number of highlighted text fragments.',NULL,NULL); @@ -19411,12 +19405,12 @@ INSERT INTO `lng_data` VALUES ('search','lucene_max_sub','en','Number of Sub-ite INSERT INTO `lng_data` VALUES ('search','lucene_max_sub_info','en','Please enter maximum number of sub-items (Forum threads, Glossary terms...) that are shown by default.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_log','en','Path to Logfile',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_log_info','en','Enter the absolute path to a file in which log messages will we written. If the file does not exist, it will be created automatically.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','lucene_last_index_time','en','Last Index Generation',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_level','en','Log-Level',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','lucene_last_index_time','en','Last Index Generation',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_last_index_time_info','en','Please modify this settings only if you have installed an index backup.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_index_path','en','Directory for Index Files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('search','lucene_host','en','Host',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_index_path_info','en','Please enter a directory name for storing index files.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','lucene_host','en','Host',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_host_info','en','Please enter the hostname or Ip-address for the java server.',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_general_settings','en','General Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','lucene_err_quotes','en','Please close all quote (\") marks.',NULL,NULL); @@ -19444,6 +19438,7 @@ INSERT INTO `lng_data` VALUES ('search','lucene_activate_field','en','Activate S INSERT INTO `lng_data` VALUES ('search','last_search_result','en','Last Search Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','append_results','en','Append results',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','adv_md_search_title','en','Search in Extended Metadata',NULL,NULL); +INSERT INTO `lng_data` VALUES ('search','search_field','en','Search Input Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('search','add_members_header','en','Add Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_unit','en','SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_sequencing','en','Sequencing',NULL,NULL); @@ -19461,8 +19456,8 @@ INSERT INTO `lng_data` VALUES ('sahs','sahs_learning_objectives','en','Learning INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_sco','en','Insert SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_pagelayout','en','Insert Template Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_page','en','Insert Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_chapter','en','Insert Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('sahs','sahs_chapter','en','Chapter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sahs','sahs_insert_chapter','en','Insert Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_intro6','en','After that procedure you may add any learning or working resource to your category.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_intro5','en','By clicking on the title of the category you enter your category.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_intro4','en','In the following form, enter a title and a description, and click on %s.',NULL,NULL); @@ -19481,9 +19476,9 @@ INSERT INTO `lng_data` VALUES ('registration','registration_code','en','Code',NU INSERT INTO `lng_data` VALUES ('registration','registration_codes_roles','en','Global Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_codes_number','en','Number Of Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_codes_edit_header','en','Add Codes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('registration','registration_codes_export','en','Export Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_reg_type_codes_info','en','This type allows self-registration of users but requires a valid code.',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_codes_add','en','Add Codes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('registration','registration_codes_export','en','Export Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_tab_settings','en','Registration Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_tab_codes','en','Registration Codes',NULL,NULL); INSERT INTO `lng_data` VALUES ('registration','registration_reg_type_codes','en','Registration with Codes',NULL,NULL); @@ -19553,21 +19548,21 @@ INSERT INTO `lng_data` VALUES ('rbac','wfe_visible','en','Administration of Work INSERT INTO `lng_data` VALUES ('rbac','svyf_write','en','Edit settings in Survey administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svyf_visible','en','Survey administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svyf_read','en','User has read access to Survey administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','svyf_edit_permission','en','User change permission settings in Survey administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sess_write','en','User can edit session content and settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','sess_read','en','User has read access to sessions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','svyf_edit_permission','en','User change permission settings in Survey administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sess_visible','en','Sessions are visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','sess_edit_event','en','Edit Calendar Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sess_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','sess_delete','en','User can move or delete session',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','sess_read','en','User has read access to sessions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','sess_edit_event','en','Edit Calendar Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_wiki','en','Create Wiki',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','sess_delete','en','User can move or delete session',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_webr','en','Create Weblink',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_tst','en','Create Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_svy','en','Create Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_spl','en','Create Question Pool Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_sahs','en','Create SCORM Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','rbac_create_qpl','en','Create Question Pool Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_rcrs','en','Create ECS Course',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','rbac_create_qpl','en','Create Question Pool Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_mep','en','Create Media Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_mcst','en','Create Mediacast',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_lm','en','Create ILIAS Learning Module',NULL,NULL); @@ -19601,35 +19596,35 @@ INSERT INTO `lng_data` VALUES ('rbac','rbac_keep_local_policies_info','en','Choo INSERT INTO `lng_data` VALUES ('rbac','rbac_delete_role','en','Delete Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_delete_local_policies','en','Delete Local Policies',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_delete_local_policies_info','en','If activated, all local policies will be deleted. The object permissions will be rewritten and protected.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','perm_use_local_policy','en','Use local policy',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_change_existing_confirm_tbl','en','Settings for ‘Change Existing Objects’',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','perm_use_local_policy','en','Use local policy',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_use_local_policy_desc','en','If local policy is activated, you may define different default permission settings for the current object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','perm_local_role_desc','en','This role is locally defined at the current object and correspond to a local policy',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_local_role','en','Local Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_class_object','en','Special Operations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','perm_local_role_desc','en','This role is locally defined at the current object and correspond to a local policy',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_class_object_desc','en','Object-specific operations.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','perm_class_create','en','Create new Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','perm_class_create_desc','en','Determine which object types may be created under the current object.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','dshs_read','en','User has read access to Dashboard administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dshs_visible','en','Dashboard administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dshs_write','en','Edit settings of Dashboard administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','perm_class_create_desc','en','Determine which object types may be created under the current object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','dshs_read','en','User has read access to Dashboard administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','dshs_edit_permission','en','User can change permission settings of Dashboard administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mme_edit_permission','en','User can change permission settings of Main Menu administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mme_write','en','User can edit settings of Main Menu administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mme_read','en','User has read access to administration of Main Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mme_visible','en','Administration of Main Menu is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','msg_no_roles_of_type','en','No Roles available with selected filter setting',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','mds_visible','en','Metadata administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mds_write','en','User can edit settings in Metadata administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mds_read','en','User has read access to Metadata administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','mds_visible','en','Metadata administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mds_edit_permission','en','User can change permission settings in Metadata administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcts_write','en','User can edit settings in Mediacast administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcts_visible','en','Mediacast administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcts_read','en','User has read access to Mediacast administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcts_edit_permission','en','User can change permission settings in Mediacast administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','leave','en','Unsubscribe',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','grp_edit_event','en','Edit Calendar Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','info_user_view_changed','en','User view changed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','grp_edit_event','en','Edit Calendar Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','filter_roles_local_policy','en','Show only roles using a local policy at this position',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','filter_local_roles','en','Show only local roles of current context',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','filter_local_roles_object','en','Show only local roles defined at this position',NULL,NULL); @@ -19642,16 +19637,16 @@ INSERT INTO `lng_data` VALUES ('rbac','facs_edit_permission','en','User can chan INSERT INTO `lng_data` VALUES ('rbac','edit_learning_progress','en','Edit Learning Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crsr_write','en','User can edit settings of course link',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crsr_visible','en','Course link is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','crsr_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crsr_delete','en','User can move or delete course link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','crs_edit_event','en','Edit Calendar Events',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','crsr_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','crsr_copy','en','User can copy course link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','crs_edit_event','en','Edit Calendar Events',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_sess','en','Create Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cmps_write','en','User can edit settings of Plugins, Modules and Services',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cmps_visible','en','Administration of Plugins, Modules and Services settings is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cmps_read','en','User has read access to administration of Plugins, Modules and Services',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','cmps_edit_permission','en','User can change permission settings of Plugins, Modules and Services administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','catr_write','en','User can edit settings of category link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','cmps_edit_permission','en','User can change permission settings of Plugins, Modules and Services administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','catr_visible','en','Category link is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','catr_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','catr_delete','en','User can move or delete category link',NULL,NULL); @@ -19662,8 +19657,8 @@ INSERT INTO `lng_data` VALUES ('rbac','cals_read','en','User has read access to INSERT INTO `lng_data` VALUES ('rbac','cals_edit_permission','en','User can change permission settings for Calendar administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','cals_edit_event','en','User can create and edit public calendars and events in ILIAS',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','facs_upload_blacklisted_files','en','Upload indexed file types despite blacklist',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','upload_blacklisted_files','en','Bypass blacklist',NULL,NULL); INSERT INTO `lng_data` VALUES ('rating','rating_your_rating','en','Your Rating',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','upload_blacklisted_files','en','Bypass blacklist',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','unassist_disabled_no_access','en','Username assistance is not enabled. Please contact the system administration for further assistance: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_disabled_no_access','en','Password assistance is not enabled. Please contact the system administration for further assistance: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_username_mail_body','en','These are the active username found for the given e-mail address: %s This message has been created automatically by the following ILIAS Server: %s You (or somebody with IP %s) have requested support for forgotten user names for the e-mail address \'%s\'. Please check the following and act as suggested:: -You have requested this e-mail by accident: Delete this e-mail. -You are sure, that you never requested this e-mail: Please contact %s. - If you requested this e-mail, please proceed as follows:: 1. Start your internet browser. 2. Enter the following url: %s Important: The address is a single line. If you see this address split into multiple lines, then your e-mail program has inserted these line breaks. 3. Your Browser now shows the Password-Service. Use this page together with one of the usernames and the according e-mail address to retrieve a new password.',NULL,NULL); @@ -19673,8 +19668,8 @@ INSERT INTO `lng_data` VALUES ('pwassist','pwassist_mail_subject','en','ILIAS Pa INSERT INTO `lng_data` VALUES ('pwassist','pwassist_mail_sent_generic','en','A message has been sent to the email address defined in ILIAS. Please check your mail box.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_mail_sent','en','A message has been sent to %1$s. Please check your mail box.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_mail_body','en','Register a new password for your user account: %1$s This message has been generated automatically by the ILIAS server %2$s You (or someone at %3$s) has asked for password assistance for the user account \"%4$s\". Please check carefully the conditions listed below, and proceed accordingly: - If you have used the password assistance form on the ILIAS server by accident: Delete this mail. - If you are certain, that you never asked for password assistance at this ILIAS server: Please contact %5$s. - If you asked for password assistance, please proceed as follows: 1. Open your browser. 2. Enter the following address in your browser: %6$s Important: The address is a single line. If you see this address split into multiple lines, then your e-mail program has inserted these line breaks. 3. On the web page shown by your browser, enter a new password for your user account. Please note, that for security reasons, you can perform the three steps above only exactly once and for a limited time only. Afterwards the address becomes invalid, and you have to use the password assistance page on the ILIAS server again.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pwassist','pwassist_login_not_match','en','Please enter another username. The username you have entered does not match the username for which you had asked for password assistance.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_enter_username_and_new_password','en','Enter the username and the new password in the fields below.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pwassist','pwassist_login_not_match','en','Please enter another username. The username you have entered does not match the username for which you had asked for password assistance.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_enter_username_and_email','en','Enter a username and the associated e-mail address in the fields shown below. ILIAS will send a message to that e-mail address. The message contains an address for a web page, where you can enter a new password for the user account. In case you are unable to assign a password to your user account using this form, contact your course administration or send an e-mail to %1$s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','pwassist_enter_email','en','Please enter an e-mail address and submit the form. ILIAS will send an e-mail to that address. The e-mail contains all user names which have registered this e-mail address. Choose a suitable username and use the password service to retrieve a new password. If you do not retrieve any e-mail by this service please contact your course admin or %1$s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwassist','password_assistance','en','Password Assistance',NULL,NULL); @@ -19683,10 +19678,10 @@ INSERT INTO `lng_data` VALUES ('ps','show_privacy','en','Privacy',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_warning_modify','en','Attention: Minimum one user has accepted the user agreement. Modifying these settings will reset all user agreements.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_user_selection','en','Participants Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_type_txt_long','en','Text Field (Optional Values)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_type_text','en','Text Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_type_select','en','Select Field',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_size','en','Files Size',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_type_text','en','Text Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_type_select_long','en','Selection Box (Fixed Values)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_size','en','Files Size',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_show_grp_access','en','Show last access time of group participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_show_crs_access','en','Show last access time of course participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_select_one','en','Please select one export file',NULL,NULL); @@ -19703,9 +19698,9 @@ INSERT INTO `lng_data` VALUES ('ps','ps_password_special_chars_enabled_info','en INSERT INTO `lng_data` VALUES ('ps','ps_password_min_length','en','Minimum Password Size',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_min_length_info','en','Sets the minimum size of account passwords. If set to 0, the passwords anyway have to have a minimum size of 1. If the required length is altered, the new requirement will be applied only to those accounts that were created or changed after the new length was set. Existing accounts are not affected.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_max_length','en','Maximum Password Size',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_password_max_age','en','Maximum Password Age',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_max_length_info','en','Sets the maximum size of account passwords. Set this to 0 for disabling this option.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_max_age_info','en','Sets the maximum age of passwords in days. Set this to 0 for disabling this option.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_password_max_age','en','Maximum Password Age',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_chars_and_numbers_enabled','en','Force Characters and Numbers',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_chars_and_numbers_enabled_info','en','If enabled, passwords have to contain characters and numbers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_password_change_on_first_login_enabled','en','Change Password on First Login',NULL,NULL); @@ -19727,10 +19722,10 @@ INSERT INTO `lng_data` VALUES ('ps','ps_export_files','en','Export Files',NULL,N INSERT INTO `lng_data` VALUES ('ps','ps_export_data','en','Data Types of the Personal Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_export_groups','en','Visibility of User Profile Data in Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_export_course','en','Visibility of User Profile Data in Courses',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_export_confirm_group','en','User Confirmation when Entering Groups',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_export_admin','en','Administrators',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_export_confirm','en','User Confirmation when Entering Courses',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','ps_export_confirm_group','en','User Confirmation when Entering Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_error_message_password_min3_because_chars_numbers_sc','en','Minimum password size may not be less than %s if password have to contain characters, numbers and special characters.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ps','ps_export_admin','en','Administrators',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_error_message_password_min2_because_chars_numbers','en','Minimum password size may not be less than %s if password have to contain characters and numbers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_error_message_password_min1_because_chars','en','Minimum password size may not be less than %s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ps','ps_error_message_password_max_less_min','en','Maximum password size may not be less than minimum password size.',NULL,NULL); @@ -19768,8 +19763,8 @@ INSERT INTO `lng_data` VALUES ('pd','pd_view_select_at_least_one','en','You have INSERT INTO `lng_data` VALUES ('pd','pd_personal_items_default_view','en','Default View',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_personal_items_default_view_info','en','Choose the preferred view of Personal Items.',NULL,NULL); INSERT INTO `lng_data` VALUES ('pd','pd_my_memberships_intro2','en','This is your personal space for all courses and groups you participate in. Currently, there aren\'t any memberships assigned to you. To become a member of a course or group, there are two ways:
  1. You can join courses or groups provided that joining them has been allowed by their administrators.
  2. An administratrator of a course or group can assign a membership to you.

In any case, the respective objects will appear automatically in this place.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('pd','pd_my_memberships_intro','en','Welcome to Your Memberships',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_show_comments','en','Show Comments',NULL,NULL); +INSERT INTO `lng_data` VALUES ('pd','pd_my_memberships_intro','en','Welcome to Your Memberships',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_public_comments','en','Public Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_notes_deleted','en','The notes have been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_note_deleted','en','The note has been deleted.',NULL,NULL); @@ -19781,8 +19776,8 @@ INSERT INTO `lng_data` VALUES ('notes','notes_all_comments','en','All Comments', INSERT INTO `lng_data` VALUES ('notes','notes_add_comment','en','Add Comment',NULL,NULL); INSERT INTO `lng_data` VALUES ('notes','notes_activate_comments','en','Activate Public Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','lso_news_online_txt','en','A new object for your learning sequence was just published.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','priv_feed_settings','en','Private Newsfeed settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','lso_news_online_title','en','A new learning sequence object is online!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','priv_feed_settings','en','Private Newsfeed settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','priv_feed_disabled','en','Private Newsfeed disabled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','passwd_equals_ilpasswd','en','Please enter a password different from your ILIAS-password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_x_postings','en','%s Postings have been added.',NULL,NULL); @@ -19804,17 +19799,17 @@ INSERT INTO `lng_data` VALUES ('news','news_period_1_month','en','Last Month',NU INSERT INTO `lng_data` VALUES ('news','news_pd_period','en','Dashboard News Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_pd_period_info','en','Defines the time period used for news on the dashboard. Select lower values, if you experience any performance problems.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_nr_of_items','en','Number of Maximum News Items per Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_nr_of_items_info','en','Number of news items that are kept for an object (e.g. a file or a learning module) in the database. Please note, that container objects (e.g. categories, courses) may list more items, because they aggregate news of sub-objects.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_notifications','en','Notifications',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_nr_of_items_info','en','Number of news items that are kept for an object (e.g. a file or a learning module) in the database. Please note, that container objects (e.g. categories, courses) may list more items, because they aggregate news of sub-objects.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_notifications_public','en','Public Notifications',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_notifications_public_info','en','If this option is enabled, notifications can be obtained by personal RSS feeds outside of ILIAS. Please note that this makes notifications accessible without authentication.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_no_news_items','en','No news available.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_notifications_public_info','en','If this option is enabled, notifications can be obtained by personal RSS feeds outside of ILIAS. Please note that this makes notifications accessible without authentication.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_news_item_visibility','en','Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_news_items','en','News Item(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_no_js_click_here','en','If news are not displayed, click here.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_news_item_visibility','en','Access',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_news_item_visibility_info','en','Public news can be accessed without authentication outside of ILIAS via RSS. Please do not include any confidential information.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_news_item_head','en','News Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_news_item_title','en','Headline',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_news_item_visibility_info','en','Public news can be accessed without authentication outside of ILIAS via RSS. Please do not include any confidential information.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_news_item_content','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_news_item_content_long','en','Long Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_news_item_content_long_info','en','This text will not be published via RSS.',NULL,NULL); @@ -19822,17 +19817,17 @@ INSERT INTO `lng_data` VALUES ('news','news_internal_news','en','News',NULL,NULL INSERT INTO `lng_data` VALUES ('news','news_loading_news','en','Loading News...',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_hide_news_per_date','en','Show News After',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_hide_news_per_date_info','en','Only news that are newer than a certain date will be displayed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_hide_news_date','en','Starting Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_hide_news_block','en','Hide News Block',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_hide_news_date','en','Starting Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_hide_news_block_info','en','Hide block in learner\'s view. The news block will only be visible for users with write permission.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_hidden_news_block','en','Block is currently hidden in learner\'s view.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_get_priv_feed_title','en','Personal private Feed-URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_get_priv_feed_info','en','This is a personal private news feed URL. The feed includes news that are declared as public and private by the author. This feed is protected by a password, which can be changed under ‘Settings’. Please do not share this URL with other people. Please replace -password- in this URL with your Feed-Password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_get_feed_url','en','Get Feed URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_get_feed_title','en','Personal Feed URL',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_get_feed_info','en','This is a personal news feed URL. The feed includes only news that are declared as public by the author. The feed is not protected by any authentication procedure. Please do not share this URL with other people.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_first_letter_of_word_notification','en','N',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_feed_url','en','Feed URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_first_letter_of_word_notification','en','N',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_get_feed_info','en','This is a personal news feed URL. The feed includes only news that are declared as public by the author. The feed is not protected by any authentication procedure. Please do not share this URL with other people.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_feed_url_for','en','Feed URL for \'%s\'',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_enable_private_feed','en','Enable private RSS Feed',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_enable_private_feed_info','en','If this option is enabled, public and private news can be obtained by personal RSS feeds outside of ILIAS. Authentication is provided by password.',NULL,NULL); @@ -19841,10 +19836,10 @@ INSERT INTO `lng_data` VALUES ('news','news_enable_internal_rss_info','en','Allo INSERT INTO `lng_data` VALUES ('news','news_enable_internal_news','en','Enable Internal News',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_enable_internal_news_info','en','Activates news blocks for categories, courses, groups and other objects. Users can subscribe to news and news are presented on the dashboard.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_edit_news_settings','en','Edit Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_cache','en','News Cache (Minutes)',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_default_visibility','en','Default Access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_cache_info','en','Update news blocks all x minutes. ‘0’ means every time. Higher values improve performance, but news may link to non-accessible items.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_cache','en','News Cache (Minutes)',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_block_news_for_context','en','News',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_cache_info','en','Update news blocks all x minutes. ‘0’ means every time. Higher values improve performance, but news may link to non-accessible items.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_block_information','en','The News block lists all news that are related to your Favourites.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_allow_shorter_periods','en','Allow Shorter Periods',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_allow_shorter_periods_info','en','Users may select shorter news periods on the dashboard.',NULL,NULL); @@ -19853,23 +19848,23 @@ INSERT INTO `lng_data` VALUES ('news','news_allow_longer_periods_info','en','Use INSERT INTO `lng_data` VALUES ('news','news_all_items','en','News for all favourite items',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_1_postings','en','One posting has been added.',NULL,NULL); INSERT INTO `lng_data` VALUES ('news','news_1_file_updated','en','One file has been updated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('news','news_1_file_created','en','One file has been added.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','sco_propagate','en','Propagate to all SCOs',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_yes','en','Yes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','sco_propagate','en','Propagate to all SCOs',NULL,NULL); +INSERT INTO `lng_data` VALUES ('news','news_1_file_created','en','One file has been added.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_very_low','en','Very Low',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_very_easy','en','Very Easy',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_very_high','en','Very High',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_very_low','en','Very Low',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_very_difficult','en','Very Difficult',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_value','en','Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_version','en','Version',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_value','en','Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_validator','en','Validator',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_unknown','en','Unknown',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_unavailable','en','Unavailable',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_typical_learning_time','en','Typical Learning Time',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_typical_age_range','en','Typical Age Range',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_type','en','Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_title','en','Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_typical_age_range','en','Typical Age Range',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_training','en','Training',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_terminator','en','Terminator',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_technicalvalidator','en','Technical validator',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_technicalimplementer','en','Technical implementer',NULL,NULL); @@ -19920,16 +19915,16 @@ INSERT INTO `lng_data` VALUES ('meta','meta_no_meta_metadata','en','No metadata INSERT INTO `lng_data` VALUES ('meta','meta_no_lifecycle','en','No metadata available for the Lifecycle section.',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_no_educational','en','No metadata available for the Educational section.',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_no_classification','en','No metadata available for the Classification section.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_new_element','en','New Element',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_no_annotation','en','No metadata available for the Annotation section.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_narrative_text','en','Narrative Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_networked','en','Networked',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_new_element','en','New Element',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_name','en','Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_narrative_text','en','Narrative Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_minimum_version','en','Minimum Version',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_mixed','en','Mixed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_minimum_version','en','Minimum Version',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_metadatascheme','en','Metadata Scheme',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_medium','en','Medium',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_meta_metadata','en','Meta-Metadata',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_medium','en','Medium',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_maximum_version','en','Maximum Version',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_manager','en','Manager',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_low','en','Low',NULL,NULL); @@ -19955,8 +19950,8 @@ INSERT INTO `lng_data` VALUES ('meta','meta_l_uk','en','Ukrainian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ug','en','Uigur',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_tw','en','Twi',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_tt','en','Tatar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_ts','en','Tsonga',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_tr','en','Turkish',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_ts','en','Tsonga',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_to','en','Tonga',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_tn','en','Setswana',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_tl','en','Tagalog',NULL,NULL); @@ -19964,60 +19959,60 @@ INSERT INTO `lng_data` VALUES ('meta','meta_l_tk','en','Turkmen',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_th','en','Thai',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ti','en','Tigrinya',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_tg','en','Tajik',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_te','en','Telugu',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ta','en','Tamil',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_te','en','Telugu',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_sv','en','Swedish',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sw','en','Swahili',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_su','en','Sundanese',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_sv','en','Swedish',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_st','en','Sesotho',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_sq','en','Albanian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sr','en','Serbian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ss','en','Siswati',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_st','en','Sesotho',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_so','en','Somali',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_sq','en','Albanian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sm','en','Samoan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sn','en','Shona',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sk','en','Slovak',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sl','en','Slovenian',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_sg','en','Sangho',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_sh','en','Serbo-croatian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_si','en','Singhalese',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_sh','en','Serbo-croatian',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_sg','en','Sangho',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sa','en','Sanskrit',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_sd','en','Sindhi',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_rw','en','Kinyarwanda',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ru','en','Russian',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_rn','en','Kurundi',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ro','en','Romanian',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_qu','en','Quechua',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_rn','en','Kurundi',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_rm','en','Rhaeto-romance',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_qu','en','Quechua',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_pt','en','Portuguese',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ps','en','Pashto; Pushto',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_pl','en','Polish',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_pa','en','Punjabi',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_or','en','Oriya',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_om','en','Afan (oromo)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_oc','en','Occitan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_or','en','Oriya',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_no','en','Norwegian',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_oc','en','Occitan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_nl','en','Dutch',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ne','en','Nepali',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_my','en','Burmese',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_na','en','Nauru',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_mt','en','Maltese',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_my','en','Burmese',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_mr','en','Marathi',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ms','en','Malay',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_mo','en','Moldavian',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_mr','en','Marathi',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_mn','en','Mongolian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ml','en','Malayalam',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_mi','en','Maori',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_mk','en','Macedonian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_mg','en','Malagasy',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_mi','en','Maori',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_lv','en','Latvian;lettish',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_lt','en','Lithuanian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_lo','en','Laothian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ln','en','Lingala',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_la','en','Latin',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ky','en','Kirghiz',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_ks','en','Kashmiri',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ku','en','Kurdish',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_ks','en','Kashmiri',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ko','en','Korean',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_kn','en','Kannada',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_km','en','Cambodian',NULL,NULL); @@ -20036,8 +20031,8 @@ INSERT INTO `lng_data` VALUES ('meta','meta_l_ia','en','Interlingua',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_hy','en','Armenian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_hu','en','Hungarian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_hr','en','Croatian',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_he','en','Hebrew',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_hi','en','Hindi',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_he','en','Hebrew',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ha','en','Hausa',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_gu','en','Gujarati',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_gn','en','Guarani',NULL,NULL); @@ -20048,26 +20043,26 @@ INSERT INTO `lng_data` VALUES ('meta','meta_l_fy','en','Frisian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_fr','en','French',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_fo','en','Faroese',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_fj','en','Fiji',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_fi','en','Finnish',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_fa','en','Persian (farsi)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_fi','en','Finnish',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_eu','en','Basque',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_et','en','Estonian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_es','en','Spanish',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_et','en','Estonian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_eo','en','Esperanto',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_en','en','English',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_de','en','German',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_dz','en','Bhutani',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_el','en','Greek',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_de','en','German',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_cs','en','Czech',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_cy','en','Welsh',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_da','en','Danish',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_cs','en','Czech',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_br','en','Breton',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_ca','en','Catalan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_co','en','Corsican',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_ca','en','Catalan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_br','en','Breton',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_bo','en','Tibetan',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_bh','en','Bihari',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_bi','en','Bislama',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_bn','en','Bengali; Bangla',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_bi','en','Bislama',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_bh','en','Bihari',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_bg','en','Bulgarian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_be','en','Byelorussian',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ba','en','Bashkir',NULL,NULL); @@ -20078,28 +20073,21 @@ INSERT INTO `lng_data` VALUES ('meta','meta_l_ar','en','Arabic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_am','en','Amharic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_af','en','Afrikaans',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_l_ab','en','Abkhazian',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_l_aa','en','Afar',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_kind','en','Kind',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_l_aa','en','Afar',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_keyword','en','Keyword',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_is_version_of','en','Is Version Of',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_is_required_by','en','Is Required By',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_is_referenced_by','en','Is Referenced By',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_is_part_of','en','Is Part Of',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_is_basis_for','en','Is Basis For',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_is_format_of','en','Is Format Of',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_is_basis_for','en','Is Basis For',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_is_based_on','en','Is Based On',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_interactivity_type','en','Interactivity Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_interactivity_level','en','Interactivity Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_intended_end_user_role','en','Intended End User Role',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_interactivity_level','en','Interactivity Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_instructionaldesigner','en','Instructional designer',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_installation_remarks','en','Installation Remarks',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_initiator','en','Initiator',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_info_tlt_not_valid','en','The current value is not valid. Therefore it can not be used other sections, e.g for learning progress statistics. Please insert atypical learning time in hours and/or minutes.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_delete','en','Delete',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_description','en','Description',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_diagramm','en','Diagram',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_difficult','en','Difficult',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_difficulty','en','Difficulty',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_draft','en','Draft',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_duration','en','Duration',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_easy','en','Easy',NULL,NULL); @@ -20131,53 +20119,60 @@ INSERT INTO `lng_data` VALUES ('meta','meta_id','en','Id',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_idea','en','Idea',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_identifier','en','Identifier',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_index','en','Index',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_copyright_and_other_restrictions','en','Copyright and Other Restrictions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_copyright','en','Copyright',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_cost','en','Cost',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_coverage','en','Coverage',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_cp_own','en','Own Copyright Information:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_info_tlt_not_valid','en','The current value is not valid. Therefore it can not be used other sections, e.g for learning progress statistics. Please insert atypical learning time in hours and/or minutes.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_initiator','en','Initiator',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_creator','en','Creator',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_current_value','en','Current value',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_date','en','Date',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_delete','en','Delete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_description','en','Description',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_diagramm','en','Diagram',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_difficult','en','Difficult',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_difficulty','en','Difficulty',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_cp_own','en','Own Copyright Information:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_copyright','en','Copyright',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_cost','en','Cost',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_coverage','en','Coverage',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_contribute','en','Contribute',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_copyright_and_other_restrictions','en','Copyright and Other Restrictions',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_contentprovider','en','Content provider',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_context','en','Context',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_collection','en','Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_competency','en','Competency',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_collection','en','Collection',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_classification','en','Classification',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_ZW','en','Zimbabwe',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_catalog','en','Catalog',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_ZM','en','Zambia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_ZW','en','Zimbabwe',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_ZA','en','South Africa',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_ZM','en','Zambia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_YE','en','Yemen',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_YT','en','Mayotte',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_WF','en','Wallis And Futuna Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_WS','en','Samoa',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_VU','en','Vanuatu',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_WF','en','Wallis And Futuna Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_VN','en','Viet Nam',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_VG','en','Virgin Islands (British)',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_VI','en','Virgin Islands (US)',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_VE','en','Venezuela',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_VG','en','Virgin Islands (British)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_VA','en','Vatican City State',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_VC','en','Saint Vincent And The Grenadines',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_VA','en','Vatican City State',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_UY','en','Uruguay',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_UZ','en','Uzbekistan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_US','en','U.S.A',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_UM','en','U.S. Minor Outlying Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_UG','en','Uganda',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_TW','en','Taiwan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_UM','en','U.S. Minor Outlying Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TZ','en','Tanzania',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_UA','en','Ukraine',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TV','en','Tuvalu',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_TR','en','Turkey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_TW','en','Taiwan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TT','en','Trinidad And Tobago',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TN','en','Tunisia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TO','en','Tonga',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_TJ','en','Tajikistan',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_TK','en','Tokelau',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_TR','en','Turkey',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TM','en','Turkmenistan',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_TG','en','Togo',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_TK','en','Tokelau',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_TJ','en','Tajikistan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TH','en','Thailand',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_TG','en','Togo',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TF','en','French Southern Territories',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TD','en','Chad',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_TC','en','Turks And Caicos Islands',NULL,NULL); @@ -20187,128 +20182,128 @@ INSERT INTO `lng_data` VALUES ('meta','meta_c_SV','en','El Salvador',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_ST','en','Sao Tome And Principe',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SR','en','Suriname',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SO','en','Somalia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_SN','en','Senegal',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SM','en','San Marino',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_SL','en','Siearra Leone',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_SN','en','Senegal',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SK','en','Slovakia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_SL','en','Siearra Leone',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SJ','en','Svalbard And Jan Mayen Islands',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_SG','en','Singapore',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SH','en','St. Helena',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SI','en','Slovenia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_SG','en','Singapore',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SD','en','Sudan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SE','en','Sweden',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_SA','en','Saudi Arabia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SB','en','Solomon Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_SC','en','Seychelles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_RU','en','Russian Federation',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_RW','en','Rwanda',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_RE','en','Reunion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_SA','en','Saudi Arabia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_RO','en','Romania',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_PY','en','Paraguay',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_RU','en','Russian Federation',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_QA','en','Qatar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_RE','en','Reunion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_PY','en','Paraguay',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PT','en','Portugal',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PW','en','Palau',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PR','en','Puerto Rico',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_PN','en','Pitcairn',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_PL','en','Poland',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_PM','en','St. Pierre And Miquelon',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_PH','en','Philippines',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_PK','en','Pakistan',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NO','en','Norway',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NP','en','Nepal',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NR','en','Nauru',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NU','en','Niue',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NZ','en','New Zealand',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_OM','en','Oman',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PA','en','Panama',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PE','en','Peru',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PF','en','French Polynesia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_PG','en','Papua New Guinea',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NI','en','Nicaragua',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_PH','en','Philippines',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_PK','en','Pakistan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_PL','en','Poland',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_PM','en','St. Pierre And Miquelon',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_PN','en','Pitcairn',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NZ','en','New Zealand',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_OM','en','Oman',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NU','en','Niue',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NP','en','Nepal',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NR','en','Nauru',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_NL','en','Netherlands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NF','en','Norfolk Island',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NO','en','Norway',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_NG','en','Nigeria',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_NC','en','New Caledonia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NI','en','Nicaragua',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NF','en','Norfolk Island',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_NE','en','Niger',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_NC','en','New Caledonia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_NA','en','Namibia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MY','en','Malaysia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MZ','en','Mozambique',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MX','en','Mexico',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MY','en','Malaysia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MW','en','Malawi',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MV','en','Maldives',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MX','en','Mexico',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MU','en','Mauritius',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MT','en','Malta',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MV','en','Maldives',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MS','en','Montserrat',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MQ','en','Martinique',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MT','en','Malta',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MR','en','Mauritania',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MQ','en','Martinique',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MP','en','Northern Mariana Islands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MN','en','Mongolia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MO','en','Macau',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_ML','en','Mali',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MM','en','Myanmar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MN','en','Mongolia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_ML','en','Mali',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MK','en','Macedonia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MH','en','Marshall Islands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MG','en','Madagascar',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MD','en','Moldova',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MG','en','Madagascar',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_MC','en','Monaco',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_MA','en','Morocco',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_LV','en','Latvia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_LY','en','Libyan Arab Jamahiriya',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_LU','en','Luxembourg',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_LB','en','Lebanon',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_LC','en','Saint Lucia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_LI','en','Liechtenstein',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_LK','en','Sri Lanka',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_LR','en','Liberia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_LS','en','Lesotho',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_LT','en','Lithuania',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_LU','en','Luxembourg',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_LV','en','Latvia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_LY','en','Libyan Arab Jamahiriya',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_MA','en','Morocco',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_LI','en','Liechtenstein',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_LC','en','Saint Lucia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_LB','en','Lebanon',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_LA','en','Lao People\'s Republic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KZ','en','Kazakhstan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KY','en','Cayman Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KW','en','Kuwait',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KR','en','South Korea (Republic Of Korea)',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KP','en','North Korea (People\'s Republic Of Korea)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_KN','en','Saint Kitts And Nevis',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KM','en','Comoros',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_KN','en','Saint Kitts And Nevis',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KI','en','Kiribati',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KH','en','Cambodia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_KE','en','Kenya',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_KG','en','Kyrgyzstan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_KE','en','Kenya',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_JP','en','Japan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_JO','en','Jordan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_JM','en','Jamaica',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IT','en','Italy',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IS','en','Iceland',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_IR','en','Iran',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IQ','en','Iraq',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_IR','en','Iran',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IO','en','British Indian Ocean Territory',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_IL','en','Israel',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IN','en','India',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_IL','en','Israel',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_IE','en','Ireland',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_ID','en','Indonesia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_HU','en','Hungary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_HT','en','Haiti',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_HN','en','Honduras',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_HR','en','Croatia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_GW','en','Guinea-Bissau',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_HT','en','Haiti',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_HU','en','Hungary',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GY','en','Guyana',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_HM','en','Heard And Nc Donald Islands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_HN','en','Honduras',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_GW','en','Guinea-Bissau',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GU','en','Guam',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GT','en','Guatemala',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_GS','en','South Georgia And The South Sandwich Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GR','en','Greece',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_GP','en','Guadeloupe',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_GS','en','South Georgia And The South Sandwich Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GQ','en','Equatorial Guinea',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_GP','en','Guadeloupe',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GN','en','Guinea',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GM','en','Gambia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GL','en','Greenland',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GI','en','Gibraltar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_GH','en','Ghana',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GF','en','French Guiana',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_GH','en','Ghana',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GE','en','Giorgia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GD','en','Grenada',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_GA','en','Gabon',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_GB','en','United Kingdom',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_GA','en','Gabon',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_FX','en','France, Metropolitan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_FR','en','France',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_FO','en','Faroe Islands',NULL,NULL); @@ -20316,8 +20311,8 @@ INSERT INTO `lng_data` VALUES ('meta','meta_c_FM','en','Micronesia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_FK','en','Falkland Islands',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_FJ','en','Fiji',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_FI','en','Finland',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_ES','en','Spain',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_ET','en','Ethiopia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_ES','en','Spain',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_ER','en','Eritrea',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_EH','en','Western Sahara',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_EG','en','Egypt',NULL,NULL); @@ -20327,75 +20322,75 @@ INSERT INTO `lng_data` VALUES ('meta','meta_c_DZ','en','Algeria',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_DO','en','Dominican Republic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_DM','en','Dominica',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_DK','en','Denmark',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_DJ','en','Djibouti',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_DE','en','Germany',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CZ','en','Czech Republic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CY','en','Cyprus',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CR','en','Costa Rica',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CU','en','Cuba',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CV','en','Cape Verde',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CZ','en','Czech Republic',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_DE','en','Germany',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_DJ','en','Djibouti',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CX','en','Christmas Island',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CN','en','China',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CO','en','Colombia',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CI','en','Ivory Coast',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CK','en','Cook Islands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CL','en','Chile',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CR','en','Costa Rica',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CU','en','Cuba',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CV','en','Cape Verde',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CM','en','Cameroon',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CL','en','Chile',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CK','en','Cook Islands',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CI','en','Ivory Coast',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CH','en','Switzerland',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CG','en','Congo',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CF','en','Central African Republic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_CC','en','Cocos (Keeling) Islands',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_CA','en','Canada',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_BZ','en','Belize',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CF','en','Central African Republic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BY','en','Belarus',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_BV','en','Bouvet Island',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_BZ','en','Belize',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_CA','en','Canada',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BW','en','Botswana',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_BV','en','Bouvet Island',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BT','en','Bhutan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BS','en','Bahamas',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BR','en','Brazil',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_BN','en','Brunei Darussalam',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BO','en','Bolivia',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_BN','en','Brunei Darussalam',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BJ','en','Benin',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BM','en','Bermuda',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BI','en','Burundi',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_BF','en','Burkina Faso',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BG','en','Bulgaria',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BH','en','Bahrain',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_BF','en','Burkina Faso',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_BE','en','Belgium',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BA','en','Bosnia And Herzegowina',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BB','en','Barbados',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_BD','en','Bangladesh',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_AS','en','American Samoa',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_AT','en','Austria',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_BE','en','Belgium',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_AZ','en','Azerbaijan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AU','en','Australia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AW','en','Aruba',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_AZ','en','Azerbaijan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_AT','en','Austria',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_AS','en','American Samoa',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AR','en','Argentina',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_AN','en','Netherlands Antilles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_AO','en','Angola',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AQ','en','Antarctica',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_AO','en','Angola',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_AN','en','Netherlands Antilles',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AM','en','Armenia',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AL','en','Albania',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AI','en','Anguilla',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AG','en','Antigua And Barbuda',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AF','en','Afghanistan',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_c_AE','en','United Arab Emirates',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_c_AD','en','Andorra',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_browser','en','Browser',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_c_AD','en','Andorra',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_author','en','Author',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_atomic','en','Atomic',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_annotation','en','Annotation',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_add','en','Add',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_active','en','Active',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_accessibility_restrictions','en','Accessibility Restrictions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_used','en','Usage',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_time','en','Time:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_used','en','Usage',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_separated_by','en','Separated by %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_record_export_table','en','Export Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_record_list_table','en','Custom Metadata Sets',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_obj_types','en','Assigned Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_record_export_table','en','Export Files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_general_settings','en','General Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_months','en','Month:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_general_settings','en','General Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_fields','en','Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_delimiter','en','Delimiter',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_delimiter_info','en','The delimiter is used in the quick editing screen for keywords and authors separation. Default is ‘,’.',NULL,NULL); @@ -20408,21 +20403,21 @@ INSERT INTO `lng_data` VALUES ('meta','md_copyright_settings','en','Copyright Se INSERT INTO `lng_data` VALUES ('meta','md_copyright_selection','en','Copyright Defaults',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_copyright_preview','en','Copyright (Preview)',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_copyright_enabled','en','Enable Copyright Selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_copyright_edit','en','Edit Copyright Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_copyright_enable_info','en','Choose this option to offer a selection of predefined copyrights.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_copyright_edit','en','Edit Copyright Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_copyright_add','en','Add Copyright Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_advanced','en','Custom Metadata',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_substitution_table','en','Presentation in the Repository',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_show','en','Show',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_substitution_table','en','Presentation in the Repository',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_select_one_file','en','Please choose one file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_searchable','en','Searchable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_records_exported','en','A new export file has been created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_records','en','Included Data Sets',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_record_list','en','Datasets',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_records_exported','en','A new export file has been created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_no_fields','en','No Fields Defined',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_import_record','en','Import Metadata Set',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','md_adv_fields_show','en','Show Field Names',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_file_list','en','Export Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','md_adv_fields_show','en','Show Field Names',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_field_table','en','Edit Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_field_names','en','Field Names',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_field_fields','en','Fields',NULL,NULL); @@ -20442,8 +20437,8 @@ INSERT INTO `lng_data` VALUES ('mep','mobs_always_show_file_manager','en','Alway INSERT INTO `lng_data` VALUES ('mep','mobs_always_show_file_manager_info','en','If deactivated the file manager for media objects will be hidden for simple mime types (e.g. images).',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mobs_activate_pages','en','Use Content Snippets',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mobs_activate_pages_info','en','Allows to create content snippets in media pools. These snippets can be re-used (not edited) in learning modules.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mep','mep_unknown','en','Unknown',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_title_and_description','en','Title and Description',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mep','mep_unknown','en','Unknown',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_thumbnail','en','Thumbnail',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_page_properties','en','Page Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_new_folder','en','New Folder',NULL,NULL); @@ -20462,11 +20457,11 @@ INSERT INTO `lng_data` VALUES ('mep','mep_create_content_snippet','en','Create C INSERT INTO `lng_data` VALUES ('mep','mep_copy_to_mep','en','Copy to Media Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_content_snippet_in_use','en','Content snippet \'%s\' is in use and cannot be deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_all','en','All',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_visibility_users','en','Logged in Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('mep','mep_all_mobs','en','All Media Objects',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_visibility_users','en','Logged in Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_visibility_public','en','Public',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_visibility_info','en','Public items can be accessed via RSS without any authentication.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_videoportable_title','en','Additional Video File for Portable Devices',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_visibility_info','en','Public items can be accessed via RSS without any authentication.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_videoportable_settings_info','en','Comma separated list of file suffixes',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_videoportable_settings_title','en','File Extensions for Video Format',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_unable_to_determin_playtime','en','Unable to determine playtime. Please set it manually be clicking on Edit.',NULL,NULL); @@ -20488,32 +20483,32 @@ INSERT INTO `lng_data` VALUES ('mcst','mcst_media_cast_not_online','en','Mediaca INSERT INTO `lng_data` VALUES ('mcst','mcst_media_cast_not_online_text','en','Mediacast is not online or has been disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_last_submission','en','Last Submission',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_incl_files_in_rss','en','Include Media Files as Attachment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_duration','en','Play Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_edit_item','en','Edit Mediacast Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_edit_settings','en','MediaCast Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_incl_files_in_rss_info','en','If enabled, media files are includes as attachments in the RSS feed. Otherwise the feed just notifies subscribers about new items.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_downloadable','en','Download Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_duration_info','en','If no value is entered, ILIAS tries do determine the play time automatically.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_downloadable_info','en','If this option is enabled, links for downloading mediacast items are provided.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_download_videoportable','en','Download Video Portable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_automatic_detection','en','Automatic Detection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_clear_purpose_title','en','Delete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_duration','en','Play Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_downloadable','en','Download Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_current_value_info','en','Shows the current value of this format.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_default_visibility','en','Default Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_det_playtime','en','Determine Play Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_download_audioportable','en','Download Audio Portable',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_download_standard','en','Download',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_download_videoportable','en','Download Video Portable',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_downloadable_info','en','If this option is enabled, links for downloading mediacast items are provided.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_automatic_detection','en','Automatic Detection',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_clear_purpose_title','en','Delete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mcst','mcst_audioportable_settings_title','en','File Extensions for Audio Format',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_audioportable_title','en','Additional Audio File for Portable Devices',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_audioportable_settings_info','en','Comma separated list of file suffixes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mcst','mcst_audioportable_settings_title','en','File Extensions for Audio Format',NULL,NULL); -INSERT INTO `lng_data` VALUES ('maps','maps_map_type','en','Typ',NULL,NULL); INSERT INTO `lng_data` VALUES ('mcst','mcst_add_new_item','en','Add New Mediacast Item',NULL,NULL); +INSERT INTO `lng_data` VALUES ('maps','maps_map_type','en','Typ',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_open_layers_maps','en','Open Layers Maps',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_google_maps','en','Google Maps',NULL,NULL); -INSERT INTO `lng_data` VALUES ('maps','maps_zoom_level','en','Zoom Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_std_location','en','Default Location',NULL,NULL); -INSERT INTO `lng_data` VALUES ('maps','maps_settings','en','Maps Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('maps','maps_zoom_level','en','Zoom Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_std_location_desc','en','Click map to set location.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('maps','maps_settings','en','Maps Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_lookup_address','en','Lookup Address',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_longitude','en','Longitude',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_latitude','en','Latitude',NULL,NULL); @@ -20522,20 +20517,20 @@ INSERT INTO `lng_data` VALUES ('maps','maps_geolocation_server','en','Server for INSERT INTO `lng_data` VALUES ('maps','maps_tile_server','en','Server for Tiles',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','configure_geolocation','en','Please finish the geolocation configuration in the \"Third Party Software\" administration menu to enable address search.',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_custom_geolocation_server_info','en','Server URL to provide geolocation-data using Nominatim. Your entry should contain the placeholder [QUERY] to define a position for request information. Example: nominatim.example.com/search/[QUERY]?format=json.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('maps','maps_enable_maps_info','en','Activates Maps in user profiles, groups and courses.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('maps','maps_enable_maps','en','Enable Maps',NULL,NULL); INSERT INTO `lng_data` VALUES ('maps','maps_custom_tile_server_info','en','Server URL to provide tile-data. Multiple inputs should be separated by spaces. Defaults is \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('maps','maps_enable_maps','en','Enable Maps',NULL,NULL); +INSERT INTO `lng_data` VALUES ('maps','maps_enable_maps_info','en','Activates Maps in user profiles, groups and courses.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_email_sys_body','en','This is a test e-mail to test the delivery of system mails to the external mail account.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_email_sys_subject','en','Test E-Mail System Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_email_usr_body','en','This is a test e-mail to test the delivery of user mails to the external mail account.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_email_usr_subject','en','Test E-Mail User Mail',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_tbl_head_attachments','en','Attachment',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_firstname_last_name_superior','en','Eine kommaseparierte Liste von Vor- und Nachname des/der jeweiligen Vorgesetzten.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','search_recipients','en','Search Recipients',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','send_mail_to','en','Mail to',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_tbl_head_attachments','en','Attachment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','search_recipients','en','Search Recipients',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','placeholders_advise','en','Personal placeholders are only substituted for recipients in the To field.%sPersonal placeholders of CC and BCC recipients are kept as they are.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_to','en','To',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_error_reading_attachment','en','Could not determine any attachment.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_to','en','To',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_sure_delete','en','Are you sure you want to delete the marked mail(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_sure_delete_folder','en','The folder and its content will be removed permanently',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_sure_delete_file','en','Are you sure you want to delete the selected files?',NULL,NULL); @@ -20555,8 +20550,8 @@ INSERT INTO `lng_data` VALUES ('mail','mail_salutation_m','en','Dear Mr.',NULL,N INSERT INTO `lng_data` VALUES ('mail','mail_salutation_general','en','Output for placeholder [MAIL_SALUTATION], if no salutation is desired or specified',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_salutation_female','en','Output for placeholder [MAIL_SALUTATION], if salutation is \'Ms.\'',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_salutation_f','en','Dear Mrs.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_salutation_anonymous','en','Hello',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_s','en','Mail(s)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_salutation_anonymous','en','Hello',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_options_saved','en','Options saved',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_notification_subject','en','New mail in your inbox',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_no_valid_mailing_list','en','%1$s (no valid mailing list)',NULL,NULL); @@ -20580,12 +20575,12 @@ INSERT INTO `lng_data` VALUES ('mail','mail_my_groups','en','My Groups',NULL,NUL INSERT INTO `lng_data` VALUES ('mail','mail_my_courses','en','My Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_moved','en','The mail has been moved',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_moved_to_trash','en','Mail has been moved to trash',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_move_error','en','Error moving mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_move_to','en','Move to:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_move_error','en','Error moving mail',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_members_of_mailing_list','en','Members of Mailing List',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_message_send','en','Message sent',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_mark_unread','en','Mark mail unread',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_maxsize_attachment_error','en','The upload limit is:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_members_of_mailing_list','en','Members of Mailing List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_mark_unread','en','Mark mail unread',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_mark_read','en','Mark mail read',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_mailing_lists','en','Mailing Lists',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_mailing_lists_no_contact_entries','en','You have no entries in your contacts to add to a list.',NULL,NULL); @@ -20614,10 +20609,10 @@ INSERT INTO `lng_data` VALUES ('mail','mail_empty_trash_confirmation','en','Are INSERT INTO `lng_data` VALUES ('mail','mail_deleted','en','The mail is deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_deleted_entry','en','The entries are deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_crs_list_members_not_available','en','It is not possible to list the members of the marked courses.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_cronjob_notification_info','en','You can activate a periodic notification about new mail here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_crs_list_members_not_available_for_at_least_one_crs','en','The members of at least one selected course can not be listed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','mail_auto_generated_info','en','This mail was automatically sent to you by the ILIAS installation %s, %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_change_to_folder','en','Switch to folder: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_cronjob_notification_info','en','You can activate a periodic notification about new mail here.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_auto_generated_info','en','This mail was automatically sent to you by the ILIAS installation %s, %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_attachments','en','Attachments',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_assign_entry_to_mailing_list','en','Assign an Entry of Your Contacts to Mailing List',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_add_subject','en','Please enter a subject',NULL,NULL); @@ -20625,19 +20620,19 @@ INSERT INTO `lng_data` VALUES ('mail','mail_add_subfolder','en','Add Sub-folder' INSERT INTO `lng_data` VALUES ('mail','mail_add_recipient','en','Please enter a recipient',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_account_mail','en','Account Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_send_html_info','en','If enabled, the body of external e-mails will be embedded in a HTML frame. The corresponding template can be customized by creating a copy of \'./Services/Mail/templates/default/tpl.html_mail_template.html\' at \'./Customizing/global/skin/[SKIN]/Services/Mail/tpl.html_mail_template.html\' .',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','linebreak','en','Line break',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_send_html','en','HTML Frame',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','linebreak','en','Line break',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','invite_to_chat','en','Invite to Chat',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','forward','en','Forward',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','goto_invitation_chat','en','Open Chat Room',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','forward','en','Forward',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','chat_users_without_permission','en','The following users don\'t have access to the selected chat room:',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','chat_users_without_login','en','The following users don\'t have an ILIAS account and can\'t be invited to a chat room:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','chat_users_have_been_invited','en','The following users have been invited:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','current_folder','en','Current Folder: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','activate_serial_letter_placeholders','en','Activate Serial-Letter Placeholders',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mail','bc','en','BCC',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','chat_select_room','en','Select Chat Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','back_to_folder','en','Back to Folder',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','current_folder','en','Current Folder: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','chat_users_have_been_invited','en','The following users have been invited:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','bc','en','BCC',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','activate_serial_letter_placeholders','en','Activate Serial-Letter Placeholders',NULL,NULL); INSERT INTO `lng_data` VALUES ('mail','mail_serial_letter_placeholders','en','Serial-Letter Placeholders',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_user_sync','en','User Synchronization Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_user_sync_info','en','Defines whether new users are automatically created on login or regularly per Cron-Job.',NULL,NULL); @@ -20648,11 +20643,11 @@ INSERT INTO `lng_data` VALUES ('ldap','ldap_user_dn','en','User Search Base',NUL INSERT INTO `lng_data` VALUES ('ldap','ldap_user_attribute','en','Attribute for Login Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_update_roles','en','Role Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_update_field_info','en','Update automatically',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ldap','ldap_tls_conflict','en','LDAP-TLS can not be used in combination with LDAPv2. Please choose LDAP version ‘3’ or disable TLS support.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_tbl_role_ass','en','Active Rules',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ldap','ldap_tls_conflict','en','LDAP-TLS can not be used in combination with LDAPv2. Please choose LDAP version ‘3’ or disable TLS support.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_sync_login','en','On Login',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ldap','ldap_settings','en','Server Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_sync_cron','en','Per Cron-Job',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ldap','ldap_settings','en','Server Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_server_version_info','en','LDAP version to use, usually 3.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_server_url_info','en','A fully qualified URL for specifying the protocol, url and port to connect to. E.g \"ldaps://ldap.ilias.de:636\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_server_short','en','Server URL:',NULL,NULL); @@ -20664,10 +20659,10 @@ INSERT INTO `lng_data` VALUES ('ldap','ldap_server_bind_pass','en','Password',NU INSERT INTO `lng_data` VALUES ('ldap','ldap_server_bind_dn','en','User DN',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_search_filter','en','LDAP Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_search_base_info','en','Gets prepended to basedn when searching for users.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ldap','ldap_scope_one','en','One',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_scope_sub','en','Sub',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ldap','ldap_rule_type','en','Type of Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ldap','ldap_scope_one','en','One',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_rule_condition','en','Condition',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ldap','ldap_rule_type','en','Type of Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_role_settings','en','LDAP Group Synchronization Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_role_selection','en','Role Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('ldap','ldap_role_selection_info','en','Your selection is ambiguous. Please choose one of the following roles.',NULL,NULL); @@ -20769,8 +20764,8 @@ INSERT INTO `lng_data` VALUES ('mathjax','mathjax_server_address','en','Server A INSERT INTO `lng_data` VALUES ('mathjax','mathjax_server_installation','en',' » Installation',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_enable_server_info','en','Activates a server-side rendering of TeX to graphics.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_enable_server','en','Enable MathJax on the Server',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mathjax','mathjax_enable_client','en','Enable MathJax in the Browser',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_home_link','en',' » MathJax',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mathjax','mathjax_enable_client','en','Enable MathJax in the Browser',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_limiter_info','en','Select the inline delimiters as they are configured in your MathJax installation.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_limiter','en','Inline Delimiters',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_settings','en','MathJax Settings',NULL,NULL); @@ -20780,12 +20775,12 @@ INSERT INTO `lng_data` VALUES ('mathjax','mathjax_mathjax','en','MathJax',NULL,N INSERT INTO `lng_data` VALUES ('mathjax','mathjax_enable_mathjax','en','Enable MathJax',NULL,NULL); INSERT INTO `lng_data` VALUES ('mathjax','mathjax_enable_mathjax_info','en','Activates support for MathJax based mathematical output of LaTeX expressions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','wk','en','wk',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','today','en','Today',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','tt_date_format','en','%a, %b %e',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','time','en','Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','today','en','Today',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','time_part','en','(Shift-)Click or drag to change value',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','select_date','en','Select date',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_we','en','We',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','select_date','en','Select date',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_su','en','Su',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_th','en','Th',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_tu','en','Tu',NULL,NULL); @@ -20793,9 +20788,9 @@ INSERT INTO `lng_data` VALUES ('jscalendar','s_mo','en','Mo',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_sa','en','Sa',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_fr','en','Fr',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_12','en','Dec',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','s_10','en','Oct',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_11','en','Nov',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_09','en','Sep',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','s_10','en','Oct',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_08','en','Aug',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_07','en','Jul',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','s_05','en','May',NULL,NULL); @@ -20810,30 +20805,30 @@ INSERT INTO `lng_data` VALUES ('jscalendar','prev_year','en','Prev. year (hold f INSERT INTO `lng_data` VALUES ('jscalendar','next_year','en','Next year (hold for menu)',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','open_calendar','en','Click here to open a calendar for date selection (JavaScript required!)',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','next_month','en','Next month (hold for menu)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','l_we','en','Wednesday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_tu','en','Tuesday',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','l_we','en','Wednesday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_th','en','Thursday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_su','en','Sunday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_sa','en','Saturday',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','l_12','en','December',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','l_fr','en','Friday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_mo','en','Monday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_11','en','November',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','l_12','en','December',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','l_fr','en','Friday',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_10','en','October',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','l_08','en','August',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_09','en','September',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','l_06','en','June',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_07','en','July',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','l_08','en','August',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_05','en','May',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','l_03','en','March',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','l_06','en','June',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_04','en','April',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_02','en','February',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','drag_to_move','en','Drag to move',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','go_today','en','Go Today',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','l_03','en','March',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','l_01','en','January',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','def_date_format','en','%Y-%m-%d',NULL,NULL); -INSERT INTO `lng_data` VALUES ('jscalendar','day_first','en','Display %s first',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','drag_to_move','en','Drag to move',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','go_today','en','Go Today',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','close','en','Close',NULL,NULL); +INSERT INTO `lng_data` VALUES ('jscalendar','day_first','en','Display %s first',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','about_time','en',' Time selection: - Click on any of the time parts to increase it - or Shift-click to decrease it - or click and drag for faster selection.',NULL,NULL); INSERT INTO `lng_data` VALUES ('jscalendar','about_calendar','en','About the calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','reg_grp_max_members','en','Maximum Number of Members',NULL,NULL); @@ -20881,8 +20876,8 @@ INSERT INTO `lng_data` VALUES ('grp','grp_missing_password','en','Please enter a INSERT INTO `lng_data` VALUES ('grp','grp_map_settings','en','Map Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_members_map','en','Group Members Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_members','en','Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_map_location','en','Group Map Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_wl_sub','en','Your registration for group \"%s\"',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_map_location','en','Group Map Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_wl_bod','en','you have been assigned to the waiting list of group \"%s\". You are assigned to position %s on the list. You will receive a message from a group administrator when your request has been approved or rejected.',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_unsubscribe_member_sub','en','Your cancellation of membership in group \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_unsubscribe_member_bod','en','we confirm your cancellation of membership in group %s. We hope that you find an opportunity to participate in another group.',NULL,NULL); @@ -20902,9 +20897,9 @@ INSERT INTO `lng_data` VALUES ('grp','grp_mail_notification_reg_sub','en','User INSERT INTO `lng_data` VALUES ('grp','grp_mail_notification_reg_req_sub','en','Request to join group \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_notification_reg_req_bod2','en','To confirm this registration, go to:',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_notification_reg_req_bod','en','%s has requested membership for group \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_mail_dismiss_sub','en','Membership terminated in group \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_notification_reg_bod','en','%s has registered for group \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_dismiss_bod','en','your membership in group \"%s\" has been terminated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('grp','grp_mail_dismiss_sub','en','Membership terminated in group \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_admission_new_sub','en','Your registration for group \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_mail_admission_new_bod','en','we are pleased to announce your registration for the group \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_join_request','en','Send',NULL,NULL); @@ -20938,10 +20933,10 @@ INSERT INTO `lng_data` VALUES ('forum','topics_please_select_one_action','en','P INSERT INTO `lng_data` VALUES ('forum','topic_close','en','Closed',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','threads_moved_successfully','en','The chosen threads were moved to another forum successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','thread','en','Thread',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','sticky','en','Sticky',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','select_at_least_one_thread','en','Please select at least one thread.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','post_censored_comment_by_moderator','en','Posting Censored, Comment by Moderator',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','sticky','en','Sticky',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','reopen_topics','en','Reopen',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','post_censored_comment_by_moderator','en','Posting Censored, Comment by Moderator',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','post_activation_desc','en','Before being published all postings need to be approved by a moderator.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','new_post','en','New Post',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','no_forum_selected','en','No forum selected for moving the chosen threads',NULL,NULL); @@ -20951,8 +20946,8 @@ INSERT INTO `lng_data` VALUES ('forum','make_topics_non_sticky','en','Make Threa INSERT INTO `lng_data` VALUES ('forum','is_read','en','Mark as Read',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_wizard_page','en','Copy Forum (Step 2/2)',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_sure_delete_threads','en','Are you sure you want to delete the following threads?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_statistics_ranking','en','Number of Postings',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_statistics','en','Statistics',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_statistics_ranking','en','Number of Postings',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_statistics_enabled','en','Enable Statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_statistics_enabled_desc','en','Enable posting statistics for all participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_statistics_disabled_for_participants','en','Statistics are disabled for forum members.',NULL,NULL); @@ -20967,14 +20962,14 @@ INSERT INTO `lng_data` VALUES ('forum','frm_moderators_not_exist_yet','en','Plea INSERT INTO `lng_data` VALUES ('forum','frm_moderators_detached_role_successfully','en','The moderator role was detached for all selected users successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_moderator_role_added_successfully','en','The user was added as moderator successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_moderator_n','en','Moderation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_moderator_f','en','Moderator',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_moderator_m','en','Moderator',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_moderator_f','en','Moderator',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','frm_default_view','en','Default View',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_detach_moderator_role','en','Detach Moderator Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_anonymous_posting','en','Posting with pseudonym',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','frm_default_view','en','Default View',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_anonymous_posting_desc','en','If enabled, registered users can post to this forum only by using a pseudonym or without name. If the option \"Mark moderators posts\" is also enabled, moderators can not use a pseudonym.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','forums_thread','en','Thread',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_your_reply','en','Your Reply',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','forums_thread','en','Thread',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_thread_new_entry','en','New topic has been created',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_thread_marked','en','The thread has been marked as read.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_thread_create_from','en','Created from',NULL,NULL); @@ -21008,8 +21003,8 @@ INSERT INTO `lng_data` VALUES ('forum','forums_count_art','en','Number of Articl INSERT INTO `lng_data` VALUES ('forum','forums_censor_comment','en','Comment of Censor',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_attachments','en','Attachments',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_attachments_add','en','Add attachment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','forums_all_threads_marked_read','en','All threads have been marked as read',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forum_add_quote','en','Add Quotation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','forums_all_threads_marked_read','en','All threads have been marked as read',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','fmr_copy_threads_info','en','You have the possibility to copy single threads. Only the beginning of the chosen threads will be duplicated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','close_topics','en','Close',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','activate_post','en','Approve',NULL,NULL); @@ -21021,20 +21016,20 @@ INSERT INTO `lng_data` VALUES ('form','form_retype_password','en','Retype Passwo INSERT INTO `lng_data` VALUES ('form','form_password_required_for_auth','en','Password is required for the chosen authentication method.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_password_not_allowed_for_auth','en','It is not possible to change the password for the chosen authentication method.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_wrong_date','en','Wrong date. Please enter a valid date.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('form','form_msg_numeric_value_required','en','Please enter a numeric value.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('form','form_msg_value_too_high','en','Value too high. Please enter a lower value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_value_too_low','en','Value too low. Please enter a higher value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_formula_is_required','en','Please enter a correct formula.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('form','form_msg_numeric_value_required','en','Please enter a numeric value.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('form','form_msg_value_too_high','en','Value too high. Please enter a lower value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_wrong_file_type','en','Wrong file type.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_missing_file_ext','en','The uploaded file has no file type exension.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_virus_found','en','Virus found in uploaded file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_upload_stopped_ext','en','File upload stopped by extension.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_size_exceeds','en','The uploaded file exceeds the max. allowed file size.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_partially_uploaded','en','The file could not be uploaded completely.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('form','form_msg_file_missing_tmp_dir','en','Temporary directory for file upload missing.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_msg_file_no_upload','en','This input is required. Please select a file for upload.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('form','form_msg_file_cannot_write_to_disk','en','Cannot write to disk.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('form','form_msg_file_missing_tmp_dir','en','Temporary directory for file upload missing.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_months','en','Months',NULL,NULL); +INSERT INTO `lng_data` VALUES ('form','form_msg_file_cannot_write_to_disk','en','Cannot write to disk.',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_minutes','en','Minutes',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_min_value','en','Minimum Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('form','form_max_value','en','Maximum Value',NULL,NULL); @@ -21059,22 +21054,22 @@ INSERT INTO `lng_data` VALUES ('feed','feed_loading_feed','en','Loading Feed...' INSERT INTO `lng_data` VALUES ('feed','feed_no_js_click_here','en','If feed is not displayed, click here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('feed','feed_feed_items','en','Feed Item(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('feed','feed_disable_rep_feeds','en','Hide Web Feeds',NULL,NULL); -INSERT INTO `lng_data` VALUES ('feed','feed_disable_rep_feeds_info','en','Disables presentation of external web feeds in case of an unexpected problem due to an external feed source.',NULL,NULL); INSERT INTO `lng_data` VALUES ('feed','block_feed_block_title','en','Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('feed','block_feed_block_feed_url','en','Feed URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('feed','feed_disable_rep_feeds_info','en','Disables presentation of external web feeds in case of an unexpected problem due to an external feed source.',NULL,NULL); INSERT INTO `lng_data` VALUES ('feed','block_feed_block_head','en','External Web Feed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('feed','block_feed_block_feed_url','en','Feed URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('feed','block_feed_block_feed_url_info','en','Must be a valid RSS/Atom URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_select_resources','en','Select Resources',NULL,NULL); -INSERT INTO `lng_data` VALUES ('export','export_omit','en','Omit',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_resource','en','Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_omit_resource','en','Omit Resource',NULL,NULL); +INSERT INTO `lng_data` VALUES ('export','export_omit','en','Omit',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_last_file','en','Last File',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_last_export','en','Last Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_last_export_file','en','Use Last Export File',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_export_date','en','Export Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_create','en','Create',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exp','exp_xml','en','XML',NULL,NULL); INSERT INTO `lng_data` VALUES ('export','export_create_new_file','en','Create New Export File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exp','exp_xml','en','XML',NULL,NULL); INSERT INTO `lng_data` VALUES ('exp','exp_scorm','en','SCORM',NULL,NULL); INSERT INTO `lng_data` VALUES ('exp','exp_really_delete','en','Do you really want to delete these export files?',NULL,NULL); INSERT INTO `lng_data` VALUES ('exp','exp_html','en','HTML',NULL,NULL); @@ -21132,49 +21127,49 @@ INSERT INTO `lng_data` VALUES ('exc','exc_mail_permanent_link','en','Click on th INSERT INTO `lng_data` VALUES ('exc','exc_list_submission','en','List All Submissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_hand_in','en','Hand In',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_grades','en','Grades Overview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_fb_files','en','Evaluation Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_grades_overview','en','Grades View',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_fb_files','en','Evaluation Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_export_excel','en','Export (Excel)',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_ended_on','en','Ended On',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_edit_assignments','en','Edit Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_edit_submission','en','Edit Submission',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_edit_assignment','en','Edit Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_edit_assignments','en','Edit Assignments',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_deadline','en','Deadline',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_conf_del_assignments','en','Do you really want to delete the following assignments?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_edit_assignment','en','Edit Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_assignments','en','Assignments',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_conf_del_assignments','en','Do you really want to delete the following assignments?',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_assignments_deleted','en','The assignments have been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_assignment','en','Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_assignment_view','en','Assignment View',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_user_rcp','en','Notification About ECS Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('exc','exc_add_assignment','en','Add Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_add_feedback_file','en','Deposit a Feedback File',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_add_participant','en','Add Participant',NULL,NULL); +INSERT INTO `lng_data` VALUES ('exc','exc_add_assignment','en','Add Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_user_rcp','en','Notification About ECS Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_user_rcp_info','en','Enter one or more login names of users (comma separated) that will be informed about new ECS users per e-mail.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_settings','en','Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_tbl_active_rules','en','Active Rules for Category Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_unique_id','en','Participant-ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_server_url','en','Server URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_settings','en','Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_tbl_active_rules','en','Active Rules for Category Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_server_settings','en','ECS Functionality',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_role','en','Role Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_remote_user_settings','en','Settings for ECS User Accounts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_remote_imported','en','Information about ECS Course has been refreshed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_released','en','Released Objects',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_remote_imported','en','Information about ECS Course has been refreshed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_released_content','en','Released E-Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_read_remote_links','en','Update ECS Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_rcrs_created_body_a','en','A new ECS Course has been created:',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_published_for','en','Published for:',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_publish_for','en','Release for:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_polling_info','en','Please define the polling time for creation and update of Course Links',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_polling','en','Polling Time',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_port','en','Port',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_protocol','en','Protocol',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_publish_as','en','Publish as:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_protocol','en','Protocol',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_port','en','Port',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_polling','en','Polling Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_polling_info','en','Please define the polling time for creation and update of Course Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_participants','en','Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_participants_infos','en','Further Information',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_notifications','en','Notifications',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_not_published','en','No approvals selected.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_no_value','en','Not available',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_no_owner','en','Please select one community name.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_no_value','en','Not available',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_not_published','en','No approvals selected.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_notifications','en','Notifications',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_participants_infos','en','Further Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_new_user_subject','en','New ECS User Account',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_new_user_profile','en','User profile data:',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_new_user_body','en','A new ECS user account has been created.',NULL,NULL); @@ -21189,28 +21184,28 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_key_password','en','Key Password',NULL INSERT INTO `lng_data` VALUES ('ecs','ecs_imported_from','en','Imported From',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_imported_content','en','Imported E-Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_import','en','Imported Objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_import_id_info','en','Please enter the ID of the category, where new Course Links will be created',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_import_id','en','Import ID',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_import_id_info','en','Please enter the ID of the category, where new Course Links will be created',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_ignore_field','en','Disable export/update of this field',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_global_role_info','en','The chosen role will be assigned to newly created ECS user accounts.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_field_term','en','Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_time','en','Time',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_field_study_courses','en','Study Course(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_start','en','Start',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_field_study_courses','en','Study Course(s)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_field_term','en','Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_semester_hours','en','Semester Periods per Week',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_room','en','Room',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_part_id','en','Participant ID',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_field_end','en','End',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_lecturer','en','Lecturer(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_field_credits','en','Credits',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_cycle','en','Cycle',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_day','en','Day',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_field_end','en','End',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_field_courseID','en','Course ID',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_field_credits','en','Credits',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_courseType','en','Course Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_field_courseID','en','Course ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_field_begin','en','Begin',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_export','en','Course Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_export_obj_settings','en','Course Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_export_enabled','en','Release this Course',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_export_obj_settings','en','Course Release Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_export_disabled','en','Do not release this Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_export_created_body_a','en','A new course has been released',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_event_appointment','en','Event Date',NULL,NULL); @@ -21223,25 +21218,25 @@ INSERT INTO `lng_data` VALUES ('ecs','ecs_enable_participant','en','Allow Im/Exp INSERT INTO `lng_data` VALUES ('ecs','ecs_edit_category_mapping','en','Edit Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_econ_rcp','en','Notification About New E-Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_econ_rcp_info','en','Enter one or more login names of users (comma separated) that will be informed about new ECS content per e-mail.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_dns','en','Domainname',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_duration','en','Duration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_connection_settings','en','Connection Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_dns','en','Domainname',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_communities','en','Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_connection_settings','en','Connection Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_client_cert','en','Client Certificate',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cert_key','en','Certificate Key',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_check_import_id','en','The import id is not valid. Please check this setting.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cert_key','en','Certificate Key',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_values','en','Attribute Value',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_category_mapping','en','Assignment to Categories',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_type','en','Assignment Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_fixed','en','Fixed Values',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_type','en','Assignment Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_fixed_info','en','Choose this mode for assigning Course Links to categories based on fixed values.',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_duration','en','Date Range',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_cat_mapping_duration_info','en','Choose this mode for assigning Course Links based on date ranges (e.g start time of a course).',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_ca_cert','en','CA Certificate',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_attribute_name','en','Attribute Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_approval_rcp','en','Notification About Approved Courses',NULL,NULL); -INSERT INTO `lng_data` VALUES ('ecs','ecs_active','en','Enable ECS Functionality',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_approval_rcp_info','en','Enter one or more login names of users (comma separated) that will be informed about new approved courses per e-mail.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ecs','ecs_active','en','Enable ECS Functionality',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_active_header','en','Import/Export Allowed',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_account_duration','en','Activation Period Extension',NULL,NULL); INSERT INTO `lng_data` VALUES ('ecs','ecs_account_duration_info','en','New ECS-User accounts are limited to the session duration. After assigning a user to a course the activation period will be extended by the given number months.',NULL,NULL); @@ -21264,23 +21259,23 @@ INSERT INTO `lng_data` VALUES ('dateplaner','Su_long','en','Sunday',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','Sa_short','en','Sa',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','Sa_long','en','Saturday',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','r_4_weeks','en','Every 4 weeks',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','properties','en','Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','r_14','en','Every 14 days',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','properties','en','Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','of','en','of',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','more','en','More',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','month','en','Month',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','Mo_short','en','Mo',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','Mo_long','en','Monday',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','Mo_short','en','Mo',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','last_change','en','Last changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','keywords','en','Keywords',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','keep','en','Keep',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','keyword','en','Keyword',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','keep','en','Keep',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','inbox','en','Inbox',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','ical_export','en','iCal Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','hour','en','hour',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','grp_cal_reg_start','en','Registration Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','grp_cal_reg_end','en','Registration End',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','group','en','Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','grp_cal_reg_end','en','Registration End',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','free','en','Free',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','Fr_short','en','Fr',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','Fr_long','en','Friday',NULL,NULL); @@ -21318,47 +21313,47 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_unshare_cal','en','Stop Sharing INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_system','en','Public Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_sess','en','Session Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_personal','en','Private Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_info','en','Please choose one calendar type. ‘Public Calendars’ are visible for all ILIAS users.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_timezone_info','en','Please choose the nearest city in your timezone.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_crs','en','Course Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_grp','en','Group Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_task_completion','en','Task Completion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_third','en','Third',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_type_info','en','Please choose one calendar type. ‘Public Calendars’ are visible for all ILIAS users.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_timezone_info','en','Please choose the nearest city in your timezone.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_time_format_info','en','Please choose a format for the input and presentation of time.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_third','en','Third',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_task_completion','en','Task Completion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_sync_disabled','en','Disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_sync_enabled','en','Enabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_table_categories','en','Calendar Selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_sync_disabled','en','Disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_sync_cache','en','Calendar Cache',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_subscription_url','en','Calendar URL:',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_sync_cache_info','en','If activated, new/modified calendar appointments are calculated only every x minutes.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_subscription_info','en','Please use the following address to access your calendar from other applications. You can copy and paste this into any calendar product that supports the ical format.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_subscription_header','en','Calendar Address',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_start','en','Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_calendars','en','Shared Calendars (Invitations)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_header','en','Shared Calendars',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_selected_usr','en','The calendar has been shared with the selected users/roles.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_search_usr_header','en','User Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_share','en','Share',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_decline','en','Decline Invitation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_calendars','en','Shared Calendars (Invitations)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_header','en','Shared Calendars',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_search_header','en','Share Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_search_role_header','en','Role Selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_access_read_only','en','Read-only',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_access_table_col','en','Access',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_search_usr_header','en','User Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_access_read_write','en','Read and Write',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_access_read_only','en','Read-only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_decline','en','Decline Invitation',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_cal_editable','en','Share Calendar (Read and Write)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_shared_access_table_col','en','Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_cal','en','Share Calendar (Read-only)',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_server_tz','en','Server Timezone',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_share_accept','en','Accept Invitation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_search','en','Search Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_second','en','Second',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_search','en','Search Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_search_info_share','en','Please enter the name of the desired user/role for sharing the calendar.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_save_responsible_users','en','Save Responsible Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_rec_err_limit','en','Please enter a valid number of appointments.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_recurrences','en','Recurrences',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_responsible','en','Responsible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_on','en','On:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_on_the','en','On the:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_recurrences','en','Recurrences',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_no_recurrence','en','No Recurrence',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_on_the','en','On the:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_on','en','On:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_rec_err_limit','en','Please enter a valid number of appointments.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_no_ending','en','No End Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_new_ms','en','New Milestone',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_new_app','en','New Appointment',NULL,NULL); @@ -21367,8 +21362,6 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_ms_details','en','Milestone Det INSERT INTO `lng_data` VALUES ('dateplaner','cal_monthly','en','Monthly',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_month_selection','en','Select Month',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_month_s','en','Month(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_month_overview','en','Month Overview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_fifth','en','Fifth',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_first','en','First',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_fourth','en','Fourth',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_fullday_title','en','All Day Event',NULL,NULL); @@ -21376,22 +21369,24 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_fullday','en','Date/Time',NULL, INSERT INTO `lng_data` VALUES ('dateplaner','cal_global_settings','en','Global Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_in','en','in',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_last','en','Last',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_month_overview','en','Month Overview',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_fifth','en','Fifth',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_every','en','Every:',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_enable_group_milestones','en','Enable Milestones',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_enable_group_milestones_desc','en','This option enables milestone planning in the calendar.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_edit_milestone','en','Edit Milestone',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_edit_appointment','en','Edit Appointment',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_edit_category','en','Edit Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_deleted_app','en','The selected appointments have been deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_edit_milestone','en','Edit Milestone',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_details','en','Appointment Details',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_dstart_dend_warn','en','Please check your input. The start of a day should be before the end of the day.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_duration','en','Duration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_edit_appointment','en','Edit Appointment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_deleted_app','en','The selected appointments have been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_delete_app_sure','en','Do you really want to delete the following appointments?',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_del_cal_sure','en','Do you really want to delete the chosen calendars?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_default_calendar','en','Personal Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_del_app_sure','en','Do you really want to delete the selected appointments?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_timezone','en','Default Timezone',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_week_start','en','Default Week Start',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_default_calendar','en','Personal Appointments',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_timezone','en','Default Timezone',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_timezone_info','en','Please choose a default timezone for the presentation of appointments.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_time_format','en','Default Time Format',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_time_format_info','en','Please choose a format for the input and presentation of time.',NULL,NULL); @@ -21408,8 +21403,8 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_day_overview','en','Day Overvie INSERT INTO `lng_data` VALUES ('dateplaner','cal_day_of_month','en','Day of the month',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_def_day_end','en','Default Day End',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_day_end','en','Day End',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_date_format_info','en','Please choose a format for the input of dates.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_daily','en','Daily',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_date_format_info','en','Please choose a format for the input of dates.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_created_milestone','en','Added milestone.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_created_milestone_resp_q','en','Added milestone. Please select users that are responsible to meet the milestone.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_created_appointment','en','Created new appointment.',NULL,NULL); @@ -21419,8 +21414,8 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_change_responsible_users','en', INSERT INTO `lng_data` VALUES ('dateplaner','cal_category_selection','en','Calendar Selection',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_calendar_name','en','Calendar Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_calendar_color','en','Color',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_cal_type','en','Calendar Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cal_details','en','Calendar Details',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_cal_type','en','Calendar Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cache','en','Calendar Cache',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cache_info','en','If activated, personal calendar appointments and appointments in the repository are calculated only every x-minutes.',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_cache_enabled','en','Enabled',NULL,NULL); @@ -21428,11 +21423,11 @@ INSERT INTO `lng_data` VALUES ('dateplaner','cal_cache_disabled','en','Disabled' INSERT INTO `lng_data` VALUES ('dateplaner','cal_assigned_appointments','en','Assigned Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_apps','en','Number of Appointments',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_appointments','en','Appointment(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_all_day','en','All Day',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_add_milestone','en','Add Milestone',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_all_day','en','All Day',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_add_category','en','Create New Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dateplaner','cal_accepted','en','Accepted',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','cal_add_appointment','en','Create Appointment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dateplaner','cal_accepted','en','Accepted',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','c_date','en','Create Event',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','back','en','Back',NULL,NULL); INSERT INTO `lng_data` VALUES ('dateplaner','apply','en','Apply',NULL,NULL); @@ -21443,8 +21438,8 @@ INSERT INTO `lng_data` VALUES ('dateplaner','add_appointment','en','Add Appointm INSERT INTO `lng_data` VALUES ('crs','user_fields','en','User Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','tutor_name','en','Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','tutor_phone','en','Phone',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','tutor_email','en','E-Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timings','en','Timings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','tutor_email','en','E-Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timings_usr_edit','en','Edit Timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timings_timings','en','Timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timings_timings_on','en','Switch Timings Administration On',NULL,NULL); @@ -21452,22 +21447,22 @@ INSERT INTO `lng_data` VALUES ('crs','timings_of','en','Timings Off',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timings_timings_off','en','Switch Timings Administration Off',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timings_edit','en','Edit Timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timing_user_accepted','en','Timings Accepted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','timing_user_accept','en','Accept Timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timing_remark','en','Remark',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timing_tutor_visible','en','Remark is visible for course tutors',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','timing_accept_table','en','Timings: Remarks',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','timing_accepted','en','Accepted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','timing_user_accept','en','Accept Timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','timing_not_accepted','en','Not Accepted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','timing_accepted','en','Accepted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','timing_accept_table','en','Timings: Remarks',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','subscription_times_not_valid','en','The registration period is not valid.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','sess_signature','en','Signature',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','sess_num_next','en','Number of Following Sessions (from tomorrow)',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','sess_num_prev','en','Number of Past Sessions (until yesterday)',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','sess_print_attendance_list','en','Print List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','sess_num_next','en','Number of Following Sessions (from tomorrow)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','sess_limit_info','en','Participants are not presented with the list of all sessions but a limited number of sessions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','sess_limit','en','Limit Number of Sessions Shown',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','sess_attendance_list','en','Attendance List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','sess_gen_attendance_list','en','Generate List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','sess_limit_info','en','Participants are not presented with the list of all sessions but a limited number of sessions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','sess_join_info','en','Please click Attend if you want to take part at this session.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','sess_gen_attendance_list','en','Generate List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','sess_attendance_list','en','Attendance List',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','grouping_change_assignment','en','Change Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','export_members','en','Export Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','events','en','Sessions',NULL,NULL); @@ -21489,11 +21484,11 @@ INSERT INTO `lng_data` VALUES ('crs','event_not_participated','en','Not Particip INSERT INTO `lng_data` VALUES ('crs','event_materials','en','Session Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_location','en','Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_lecturer','en','Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','event_fulltime_info','en','All Day Event',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_files','en','Assigned Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','event_fulltime_info','en','All Day Event',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_file','en','File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','event_edit_members','en','Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_etime_smaller_stime','en','The finish time is earlier than the start time. Please enter a valid time span.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','event_edit_members','en','Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_digit','en','Digit',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_details_workflow','en','Details/Workflow',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_desc','en','Description',NULL,NULL); @@ -21502,62 +21497,62 @@ INSERT INTO `lng_data` VALUES ('crs','event_csv_export','en','CSV Export',NULL,N INSERT INTO `lng_data` VALUES ('crs','event_btn_add','en','Add Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_btn_add_edit','en','Add Session and Assign Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_assign_materials_table','en','Assignment of Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','event_assign_materials_info','en','Assigned materials will be displayed directly below the session.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','event_add_new_event','en','Added new session',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','event_assign_materials_info','en','Assigned materials will be displayed directly below the session.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','edit_timings_list','en','Edit Timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_xml','en','XML',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_wiz_next','en','Save',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_wiz_back','en','Back',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_warn_wl_set_on_waiting_list','en','Some users are already assigned to the waiting list. You can add your join request to the waiting list. You will receive a message from a course administrator when your request has been approved or rejected.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_warn_no_max_set_on_waiting_list','en','The maximum number of course members is exceeded. You can set yourself on the waiting list. You will receive a message from a course administrator when your request has been approved or rejected.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_waiting_list','en','Waiting List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_warn_no_max_set_on_waiting_list','en','The maximum number of course members is exceeded. You can set yourself on the waiting list. You will receive a message from a course administrator when your request has been approved or rejected.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_visibility_until','en','Limited Availability Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_wait_info','en','If the maximum number of users is exceeded, new registrations will be placed on a waiting list.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_view_timing','en','Timings View',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_visibility_limitless','en','Unlimited',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_visibility_until','en','Limited Availability Period',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_view_timing','en','Timings View',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_view_objective','en','Learning Objectives-Driven Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_view_mode','en','Course Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_view_info_timing','en','Presentation mode for timings settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_view_info_objective','en','Course for individualised studying: Performance on learning objectives organises the course work. Content might be recommended based on individual performance in an initial test. A final test can be used to prove learning objective mastery.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_users_removed_from_list','en','The selected users have been removed from the waiting list',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_users_added','en','Added user to the course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_users_already_assigned','en','The user is already assigned to this course',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_users_added','en','Added user to the course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_user_already_assigned','en','The chosen user is already assigned to this course.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_user_agreement','en','Released Data Types',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_user_agreement_info','en','Visible Personal Data for Course Administrators',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_update_subscr_request','en','Update Membership Request',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_unsubscribed_from_crs','en','You have been unsubscribed from this course.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_unsubscribe_member_body','en','We confirm your cancellation of membership in course \"%s\".',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_unsubscribe_member','en','Your cancellation of membership in course \"%s\"',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_update_subscr_request','en','Update Membership Request',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_user_agreement_info','en','Visible Personal Data for Course Administrators',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_unsubscribe_sure','en','Are you sure you want to unsubscribe from this course?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_unsubscribe_member','en','Your cancellation of membership in course \"%s\"',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_unsubscribe_member_body','en','We confirm your cancellation of membership in course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_unlimited','en','Unlimited',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_unblocked_member','en','Access granted in course \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_unblocked','en','Free entrance',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_unblocked_member','en','Access granted in course \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_unblocked_member_body','en','your membership in course \"%s\" has been restored.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_tutors','en','Tutors',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_to','en','Until',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_tutor','en','Tutor',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_to','en','Until',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_visibility','en','If chosen, the material is visible even outside of the given availability.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_visibility_short','en','Visibility',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_update_error','en','Your settings are not valid, please verify the timings for the following course materials:',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_time_frame','en','Time Frame',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_suggested_info','en','Suggested Editing Time',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_sug_end','en','Suggested End',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_sug_begin','en','Suggested Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_start','en','Start Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_sug_end','en','Suggested End',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_start_end_info','en','(Start/End)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_start_end','en','Suggestion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_start','en','Start Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_limit_start_end','en','Latest End Date',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_start_end','en','Suggestion',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_changeable','en','Changeable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_active','en','Enabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_presetting','en','Time Target Enabled',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_planed_info','en','Planed Editing Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_active','en','Enabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_planed_start','en','Planed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_planed_info','en','Planed Editing Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_not_changed','en','Timings not Modified',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_in_days','en','(In Days)',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_info_active','en','(Active)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_end','en','Finish Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_in_days','en','(In Days)',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_from_until','en','(From/Until)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_end','en','Finish Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_early_begin','en','Earliest Start',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_disabled','en','Timings Disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_disabled_info','en','Choose this option to disable any timings.',NULL,NULL); @@ -21584,46 +21579,46 @@ INSERT INTO `lng_data` VALUES ('crs','crs_structure','en','Course structure',NUL INSERT INTO `lng_data` VALUES ('crs','crs_status','en','Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_status_changed','en','Changed status in \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_status_changed_body','en','your status in course \"%s\" has been changed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_starters_already_assigned','en','This object was already assigned.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_starter_deleted','en','Removed assignment.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_start','en','Start',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_starters_already_assigned','en','This object was already assigned.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_start_objects','en','Start Objects',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_start','en','Start',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_sort_title','en','Titles in Alphabetical Order',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_sort_timing_info','en','Sort course items be their activation time or timings settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_sort_activation','en','Sort by Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_sort_manual','en','Sort Manually',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_sort_timing_info','en','Sort course items be their activation time or timings settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_size','en','File size',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_show_members_info','en','If activated, course members can access the members gallery.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_show_members','en','Show Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_settings_saved','en','Settings saved',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_settings','en','Course Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_select_starter','en','Select Start Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_show_members_info','en','If activated, course members can access the members gallery.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_settings_saved','en','Settings saved',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_selected_users','en','Selected Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_select_archive_language','en','Please select a language for the archive',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_select_starter','en','Select Start Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_select_one_archive','en','Please select one archive',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_select_archive_language','en','Please select a language for the archive',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_search_users','en','Search Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_reset_results','en','Reset Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_role_status','en','Role / Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_reject_subscriber','en','Registration refused for \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_reject_subscriber_body','en','we regret to say that your registration has been refused for the course \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_reset_results','en','Reset Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_registration','en','Course Registration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_reject_subscriber_body','en','we regret to say that your registration has been refused for the course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_registration_type','en','Registration Procedure',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_registration_limited','en','Limited Registration Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_registration_deactivated','en','Only course administrators can add users to the course.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_registration_limited','en','Limited Registration Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_reg','en','Registration Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_reg_user_already_subscribed','en','You have already requested membership for this course',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_reg_until','en','Registration Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_reg_subject','en','Message',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_reg_until','en','Registration Period',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_reg_user_already_subscribed','en','You have already requested membership for this course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_reg_max_info','en','Define the maximum number of users that can be assigned to this course.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_print_list','en','Generate List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_presentation_type','en','Presentation Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_password_required','en','This registration procedure requires a password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_pdf','en','PDF',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_presentation_type','en','Presentation Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_passed','en','Passed',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_password_not_valid','en','Your password is not valid',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objectives','en','Learning Objectives',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_password_required','en','This registration procedure requires a password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_other_resources','en','Other Resources',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_passed','en','Passed',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objectives_reseted','en','Reseted results.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objectives','en','Learning Objectives',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objectives_reset_sure','en','You want to delete all results of this course.
All test results will be deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objectives_edit_question_assignments','en','Edit Question Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objectives_deleted','en','Delete learning objectives',NULL,NULL); @@ -21636,18 +21631,18 @@ INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_self_limit_info','en','P INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_self_info','en','Please define the initial test questions. Initial tests are intended to examine the previous knowledge of the course participants.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_materials','en','Assign Course Material',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_materials_info','en','You can assign course materials that are recommended for processing the learning objective.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_final_limit','en','Limits for Final Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_final','en','Final Test Questions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_final_limit','en','Limits for Final Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_final_limit_info','en','Here you can define the limits for the final test questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_wiz_final_info','en','Assignment of final test questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_status','en','Objective Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_self_assessment','en','Questions Assigned to Initial Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_saved_sorting','en','Saved sorting.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objective_result','en','After final test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objective_random_warn','en','You can not use random tests in combination with learning objectives.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_qst_summary','en','Overview Question Assignment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objective_points','en','Point(s)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objective_random_warn','en','You can not use random tests in combination with learning objectives.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objective_result','en','After final test',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_pretest','en','After initial test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objective_points','en','Point(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_modified','en','Updated learning objective.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_not_accomplished','en','Not accomplished',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_overview_objectives','en','Overview',NULL,NULL); @@ -21655,16 +21650,16 @@ INSERT INTO `lng_data` VALUES ('crs','crs_objective_overview_question_assignment INSERT INTO `lng_data` VALUES ('crs','crs_objective_limit_err','en','The required points should not be higher than the total points.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_final_test','en','Questions Assigned to Final Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_err_limit','en','Please enter a percentage number between 1 and 100.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objective_assigned_materials','en','Assigned Learning Materials',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_objective_all_points','en','Total Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_accomplished','en','Accomplished',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_objective_add_mat','en','Assign Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objective_all_points','en','Total Points',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_objective_assigned_materials','en','Assigned Learning Materials',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_obj_required_points','en','Required Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_obj_initial_req_info','en','If this number of points is achieved, no course materials will be recommended for further editing.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_obj_final_req_info','en','If this number of points is achieved, the learning objective is passed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_number_users_added','en','The following number of users has been assigned to the course:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_notify','en','Notify for new registrations',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_nr','en','Nr.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_notify','en','Notify for new registrations',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_notification','en','Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_notification_explanation_admin','en','You receive mail from ILIAS because you are course administrator / tutor with notification enabled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_not_available','en','-Not available-',NULL,NULL); @@ -21681,17 +21676,17 @@ INSERT INTO `lng_data` VALUES ('crs','crs_news','en','Course News',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription','en','User registered for course \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription_request','en','Request to join course \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription_request_body2','en','To confirm this registration, go to:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription_request_body','en','%s has requested membership for course \"%s\".',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription_body','en','%s has registered for course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_new_status','en','Your new status is:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription_body','en','%s has registered for course \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_new_subscription_request_body','en','%s has requested membership for course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_min_one_admin','en','There has to be at least one administrator assigned to this course.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_members','en','Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_members_print_title','en','Course members',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_members_map','en','Course Members Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_members_deleted','en','Deleted members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_member_administration','en','Edit Participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_member','en','Member',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_members_deleted','en','Deleted members',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_member','en','Member',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_member_administration','en','Edit Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_mem_send_mail','en','Send Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_max_members_reached','en','The maximum number of members has been reached',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_materials','en','Materials',NULL,NULL); @@ -21699,8 +21694,8 @@ INSERT INTO `lng_data` VALUES ('crs','crs_map_settings','en','Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_map_location','en','Course Map Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_mail_permanent_link','en','Click on the following link to find all of the information you need regarding the course:',NULL,NULL); INSERT INTO `lng_data` VALUES ('grp','grp_lim_assigned','en','Already assigned to associated group \"%s\".',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_join_request','en','Send',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_lim_assigned','en','Already assigned to associated course \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_join_request','en','Send',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_item_presetting_info','en','Choose this option to offer the learners suggested editing times.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_info_start','en','Please work through all of the course items stated below.
After you have processed all marked objects new course items will be activated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_info_settings','en','Course Information',NULL,NULL); @@ -21723,22 +21718,22 @@ INSERT INTO `lng_data` VALUES ('crs','crs_grp_no_courses_assigned','en','No assi INSERT INTO `lng_data` VALUES ('crs','crs_grp_matriculation_required','en','This course grouping requires an unique matriculation number.
Please insert this value in your personal settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grp_info_reg','en','You can only register to one of this courses:',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grp_enter_title','en','Please enter a title.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_grp_assign_crs','en','Assign course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grp_already_assigned','en','You are already member of this grouping of courses.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','grp_grp_already_assigned','en','You are already member of this grouping of groups.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_grp_assign_crs','en','Assign course',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grp_added_grouping','en','Added new membership limitation.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_groupings','en','Course groupings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grouping_select_one','en','Please select a course grouping.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grouping_delete_sure','en','Do you really want to delete the following membership limitations?',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_grouping_deleted','en','Deleted course grouping.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_general_info','en','General Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_general_informations','en','General Information',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_general_info','en','General Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_from','en','From',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_file','en','File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_export','en','Course export',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_file_download','en','Files for Download',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_file_name','en','File Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_file_size_info','en','Filesize',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_file_name','en','File Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_file_download','en','Files for Download',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_export','en','Course export',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_end','en','End',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_enable_map','en','Enable Course Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_edit_timings','en','Edit Timings',NULL,NULL); @@ -21750,8 +21745,8 @@ INSERT INTO `lng_data` VALUES ('crs','crs_dates','en','Dates',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_create_date','en','Create date',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_count_members','en','Number of members',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_content','en','Course Content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_contact','en','Contact',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_contact_responsibility','en','Responsibility',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_contact','en','Contact',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_contact_phone','en','Telephone',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_contact_name','en','Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_contact_email','en','E-Mail',NULL,NULL); @@ -21770,211 +21765,211 @@ INSERT INTO `lng_data` VALUES ('crs','crs_agree','en','Acceptance',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_administrators','en','Administrators',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_admin','en','Administrator',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_added','en','Added new course',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_added_to_list','en','You have been assigned to the waiting list. You are assigned to position %s on the waiting list.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_added_starters','en','Assigned start object(s).',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_added_to_list','en','You have been assigned to the waiting list. You are assigned to position %s on the waiting list.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_added_objective','en','A new learning objective has been created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_added_new_archive','en','A new archive has been added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_added_member_body','en','we are pleased to announce your registration for the course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_added_member','en','Your registration for course \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_add_remove_from_desktop','en','Add to Favourites',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_add_starter','en','Add Start Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_added_member_body','en','we are pleased to announce your registration for the course \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_add_remove_from_desktop','en','Add to Favourites',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_add_remove_from_desktop_info','en','Allow the members to add course items to their favourites',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_add_objective','en','Add Objective',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_add_html_archive','en','Add HTML archive',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_add_archive_xml','en','Create a XML Archive',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_add_grouping','en','Add Membership Limitation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_add_archive_xml','en','Create a XML Archive',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_add_archive_html','en','Create a HTML Archive',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_activation','en','Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_access','en','Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_accept_subscriber','en','Registration confirmed for \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_accept_subscriber_body','en','we are pleased to confirm your registration for the course \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','contact_email_not_valid','en','the contact e-mail is not valid.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','assigned','en','Assigned',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','activation_times_not_valid','en','The availability period is not valid.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','text_repr','en','Text Representation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','activation_times_not_valid','en','The availability period is not valid.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','assigned','en','Assigned',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','text_repr_info','en','Used for image ‘alt’ attribute.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','st','en','Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','set_public_mode','en','Set public access mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','seq_endsession','en','The current course session has ended.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','st','en','Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','seq_error','en','An internal error in the sequencer occurred.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','seq_toc','en','From the Table Of Contents on the left, choose an activity to begin the course.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','selectHeader','en','Select As Header',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','seq_endsession','en','The current course session has ended.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','seq_close','en','Please close the player-window.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','selectHeader','en','Select As Header',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','selectFooter','en','Select As Footer',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','selected_pages_only','en','Only Selected Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','scplayer_start','en','Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','scplayer_suspendall','en','Suspend All',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','select_a_file','en','Please select a file.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','scplayer_suspendall','en','Suspend All',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_showtree','en','Show Tree',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','scplayer_start','en','Start',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_next','en','Next',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_previous','en','Previous',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_phpmysqlcheck','en','You need enabled JSON-support to use the JavaScript-RTE',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_hidetree','en','Hide Tree',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_expandtree','en','Expand All',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','scplayer_exit','en','Exit',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_exitall','en','Exit All',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_debugger','en','Show test tool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','scplayer_exit','en','Exit',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_continue','en','Continue',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','scplayer_collapsetree','en','Collapse All',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','public_section','en','Public Area',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','saved_media_object','en','Saved media object.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','public_section','en','Public Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','par','en','Paragraph',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','pg','en','Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','Pages','en','Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','par','en','Paragraph',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','msg_page_not_public','en','Page is not public',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','msg_page_no_public_access','en','The page you called is not available in the public area. Only registered users may view this page. Please login first to access this page.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','msg_entry_removed','en','Menu entry removed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','msg_entry_updated','en','Menu entry updated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','msg_entry_removed','en','Menu entry removed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','msg_entry_added','en','Menu entry added',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','mep_folder_created','en','Added new folder.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','lm_menu_select_object_to_add','en','Please select the object you want to add to the menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','lm_menu_select_internal_object','en','Select internal object >>',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','lm_menu_new_entry','en','Create a new menu entry',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','lm_menu_entry_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','lm_menu_entry_target','en','Target',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','lm_menu_entry_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','lm_menu_edit_entry','en','Edit menu entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','import_sco_object','en','Import SCO',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_usages','en','Glossary is used in...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','glo_term_used_in','en','The following resources linking to that term',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','glo_definition_abbr','en','Def.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','copied_to_clipboard','en','Copied object(s) to clipboard.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','glo_term_used_in','en','The following resources linking to that term',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','dgl_pagebreak','en','Pagebreak',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','content_page_history','en','Page History',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','copied_to_clipboard','en','Copied object(s) to clipboard.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_zip_file_invalid','en','File is not a valid import file.
It does not contain a file \'%s\'.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_xml_base','en','xml:base',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_wiki_page_link','en','Wiki Page Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_versions','en','Versions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_validate_file','en','Validate File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_version','en','version',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_users_have_mob_in_clip2','en','user(s).',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_validate_file','en','Validate File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_users_have_mob_in_clip1','en','This media object is in the clipboard of',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_use_same_resource_as_above','en','Use the same resource as above',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_usage','en','Usage',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_uploaded_file','en','Existing File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_use_same_resource_as_above','en','Use the same resource as above',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_upload_dir','en','Upload directory',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_update_section','en','Update Section',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_uploaded_file','en','Existing File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_upload_dir_info','en','Server directory from which large SCORM and HTML packages can be copied instead of being uploaded. Only ILIAS administrators will see a selection of files from this directory. Please enter a full server path without trailing slash.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_update_section','en','Update Section',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_type','en','Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_update_map','en','Edit Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_update_resources','en','Update Resource List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_tree_fixed','en','Tree structure has been fixed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_type','en','Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_tracking_items','en','Tracking Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_tracking_data','en','Tracking Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_tracking_items','en','Tracking Items',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_tree_fixed','en','Tree structure has been fixed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_tracking_byuser','en','By User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_total_time','en','Total Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_tracking_bysco','en','By Chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_toc','en','Content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_total_time','en','Total Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_top','en','Top',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_time_limit_action','en','adlcp:timelimitaction',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_time','en','Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_toc','en','Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_toc_mode','en','Table of Contents Items',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_time','en','Time',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_time_limit_action','en','adlcp:timelimitaction',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_xln','en','External Link:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_str','en','Strong Text:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_tex','en','LaTeX Code:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_xln','en','External Link:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_quot','en','Quotation:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_placehl','en','Text Placeholder',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_placeh','en','Click and edit to insert text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_keyword','en','Keyword',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_imp','en','Important:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_iln','en','Internal Link, e.g.:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_placehl','en','Text Placeholder',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_fn','en','Footnote:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_emp','en','Emphatic Text:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_text_com','en','Comment:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_iln','en','Internal Link, e.g.:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_imp','en','Important:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_keyword','en','Keyword',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_code','en','Code:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_com','en','Comment:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_text_emp','en','Emphatic Text:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_term','en','Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_terms','en','Terms',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_text_acc','en','Accent:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_target_within_source','en','Target must not be within source object.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_term','en','Term',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_tabs_confirm_deletion','en','Are you sure that all panels and their content should be deleted?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_tabs','en','Panels',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_target_missing','en','Target Missing',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_tabs_acc_hor','en','Horizontal Accordion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_tabs','en','Panels',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_tabs_confirm_deletion','en','Are you sure that all panels and their content should be deleted?',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_tabs_acc_ver','en','Vertical Accordion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_table_width','en','Table Width',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_table','en','Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_tabs_acc_hor','en','Horizontal Accordion',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_TableContent','en','Table Content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_table','en','Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_table_width','en','Table Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_table_properties','en','Table Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_table_cellpadding','en','Table Cell Padding',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_table_cell_properties','en','Table Cell Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_table_border','en','Table Border',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_tab_cont_width','en','Content Width',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_tab_cont_height','en','Content Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_syntax_help','en','Syntax Help',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_tab_cont_height','en','Content Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_subchapters','en','Subchapters',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_style','en','Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_structure','en','structure',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_style','en','Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_std_view','en','Standard View',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_std_is_in_dir','en','Deletion not possible. Standard view file is in directory.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_startfile','en','Start File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_status','en','Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_start','en','Start',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_startfile','en','Start File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_start_value','en','Start Value',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_StandardTable','en','Standard Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_start_value_info','en','Enter start value as decimal number. Default is 1.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_start_value','en','Start Value',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_src','en','Source code',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_st_title','en','Chapter Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_StandardTable','en','Standard Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_src_other','en','other',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_src','en','Source code',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_spreadsheet_table','en','Spreadsheet Table',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_span','en','Span',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Special','en','Special',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_span','en','Span',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_snippets_used','en','Used Content Snippets',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_skip_chapter','en','Skip this chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_show_line_numbers','en','Show line numbers',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_show_print_view','en','Show Print View',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_size','en','Size (Bytes)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_shape','en','Shape',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_show_print_view','en','Show Print View',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_show_line_numbers','en','Show line numbers',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_show_info','en','Show Info',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_set_styles','en','Set Styles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_shape','en','Shape',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_set_tab_style_info','en','Activate checkboxes in table cells to set style.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_set_start_file','en','Set Start File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_set_styles','en','Set Styles',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_set_link','en','Edit Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_selected_pg_chap','en','Selected Pages/Chapters',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_set_start_file','en','Set Start File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_selected_items_have_been_cut','en','Selected items have been cut to the clipboard. Click target placeholders to paste them into the learning module.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_selected_pg_chap','en','Selected Pages/Chapters',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_selected_items_have_been_copied','en','Selected items have been copied to the clipboard. Click target placeholders to paste them into the learning module.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select','en','Select',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select_par_or_section','en','Please select at least one paragraph or section.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_select_max_one_item','en','Please select one item only.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select_media_pool','en','Select Media Pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_select_max_one_item','en','Please select one item only.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select_item','en','Select at least one item.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_select_from_upload_dir','en','-- Select from the upload directory --',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_scheduled_activation','en','Scheduled Activation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_score','en','Score',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_scorm_type','en','adlcp:scormtype',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_sc_version','en','Version of Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_score','en','Score',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_scheduled_activation','en','Scheduled Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_usession','en','Prevent from Logging-Out Automatically',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_sc_title','en','title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_running','en','Running',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_passed','en','Passed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_sc_version','en','Version of Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_not_attempted','en','Not attempted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_passed','en','Passed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_running','en','Running',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_sc_title','en','title',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_incomplete','en','Incomplete',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_failed','en','Failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_completed','en','Completed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_stat_browsed','en','Browsed',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_preview','en','Preview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_sc_max_attempt_exceed','en','Max. number of attempts for this module has been reached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_new_version','en','Upload new version',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_saved_map_area','en','Saved map area',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_saved_map_data','en','Saved map data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_sc_max_attempt_exceed','en','Max. number of attempts for this module has been reached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_less_mode_browse','en','Browse',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_sc_less_mode_normal','en','Normal',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_save_widths','en','Save Widths',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_save_spans','en','Save Spans',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_saved_map_data','en','Saved map data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_saved_map_area','en','Saved map area',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_save_positions','en','Save Positions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_save_positions_and_classes','en','Save Positions and Style Classes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_save_all_titles','en','Save Titles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_save_spans','en','Save Spans',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_save_widths','en','Save Widths',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_rvalue','en','Value',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_rowspan','en','Row Span',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_roman_s','en','Roman i, ii, …',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_save_all_titles','en','Save Titles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_save_positions_and_classes','en','Save Positions and Style Classes',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_roman','en','Roman I, II, …',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_rowspan','en','Row Span',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_rollback','en','Rollback',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_right','en','Right',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_roman_s','en','Roman i, ii, …',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_rollback_confirmation','en','Do you really want to restore this old version of the page?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_right','en','Right',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_right_float','en','Right, Floating',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_resource','en','Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_resources','en','Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_revision','en','Revision',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_resource_type','en','type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_resource','en','Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_resource_size_info','en','Without size declaration the size can be controlled by the content style. If neither a size is declared nor the content style contains a rule that determines the size, only images will be displayed in their default size.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_resize_img','en','Resize Image File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_resource_size','en','Original Resource Size / No Size Declaration',NULL,NULL); @@ -21982,79 +21977,79 @@ INSERT INTO `lng_data` VALUES ('content','cont_repository_item','en','Repository INSERT INTO `lng_data` VALUES ('content','cont_replace_mob_feature','en','Replace Media Objects in Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_replace_mob_feature_info','en','Activates a feature that allows you to replace a media object while keeping the other properties of a media instance in the content.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_rename_dir','en','Rename Directory',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_Remark','en','Remark',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ref_images','en','Referenced Images',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_reference','en','Reference',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ref_helptext','en','(e.g. http://www.server.org/myimage.jpg)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_Remark','en','Remark',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Rect','en','Rectangle',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ref_helptext','en','(e.g. http://www.server.org/myimage.jpg)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_question_placehl','en','Question Placeholder',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_question_type','en','Question Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_question_placeh','en','Click and edit to insert question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_qtries','en','Number of Tries for Questions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_purpose','en','Purpose',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_public_access','en','Public Access',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_purpose','en','Purpose',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_qtries','en','Number of Tries for Questions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_question_placeh','en','Click and edit to insert question',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_print_view_pre_glo','en','Prevent Glossary Appendix in Print View',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_print_view','en','Print View',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_print_selection','en','Print View Selection',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_preview','en','Preview',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_previous_rev','en','Previous Revision',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_print_no_page_selected','en','Please select at least one page.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_prerequisites','en','adlcp:prerequisites',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_preview','en','Preview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_please_select','en','please select',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_Poly','en','Polygon',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_position','en','Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_prereq_type','en','adlcp:prerequisites.type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_personal_clipboard','en','Personal Clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pg_title','en','Page Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_position','en','Position',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_Poly','en','Polygon',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_please_select','en','please select',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_please_enter_a_term','en','Please enter a term.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_tab','en','Advanced Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pg_title','en','Page Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_personal_clipboard','en','Personal Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_vacc','en','Accordion (Vertical)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_qst','en','Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_res','en','Resource',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_sec','en','Section',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_tab','en','Advanced Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_par','en','Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_modified','en','Modified Content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_qst','en','Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_new','en','New Content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_mob','en','Media',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_modified','en','Modified Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_map','en','Map',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_mob','en','Media',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_list','en','Advanced List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_incl','en','Content Snippet',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_hacc','en','Accordion (Horizontal)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_pc_dtab','en','Data Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_incl','en','Content Snippet',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_flist','en','File List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_deleted','en','Deleted Content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_paste_table','en','Paste Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_pc_dtab','en','Data Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pc_code','en','Code',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_paste_table','en','Paste Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_parameters','en','parameters',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_paste_from_clipboard','en','Paste from clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_parameter','en','Parameter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pages','en','Pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_parameter','en','Parameter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_page_layout','en','Page Layout',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_pages_and_subchapters','en','Subchapters and Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_page_header','en','Page Header',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_page_layout','en','Page Layout',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_page_deactivated_elements','en','Page contains deactivated elements.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_page_deactivated','en','Page is deactivated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_page_currently_deactivated','en','Sorry, but this page is currently deactivated.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_page_compare','en','Compare Selected Revisions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_page_activation','en','Page Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_orig_size','en','Original Size',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_organization','en','Organization',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_page_activation','en','Page Activation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_page_compare','en','Compare Selected Revisions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_page_currently_deactivated','en','Sorry, but this page is currently deactivated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_organizations','en','Organizations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_online','en','Online',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_organization','en','Organization',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_operation_not_allowed','en','This operation is not allowed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_online','en','Online',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_obj_removed','en','Objects removed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_number_std','en','Standard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_number_type','en','Number Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_numbered_list','en','Numbered List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_number_type','en','Number Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_number_std','en','Standard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_number_of_tabs','en','Number of Panels',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_nr_cols','en','Number of Columns',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_nr_items','en','Number of Items',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_nr_row_footer','en','Footer Rows',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_nr_row_header','en','Header Rows',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_nr_rows','en','Number of Rows',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_nr_row_header','en','Header Rows',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_nr_row_footer','en','Footer Rows',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_nr_items','en','Number of Items',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_nr_cols','en','Number of Columns',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_nr_col_header','en','Header Columns',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_nr_col_footer','en','Footer Columns',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_none','en','None',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_nr_col_footer','en','Footer Columns',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_nomenu','en','Hide Top Navigation Bar',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_no_text','en','No Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_no_subdir_in_zip','en','Zip command failed or import file invalid.
It does not contain a sub-folder \'%s\'.',NULL,NULL); @@ -22065,248 +22060,248 @@ INSERT INTO `lng_data` VALUES ('content','cont_no_manifest','en','No imsmanifest INSERT INTO `lng_data` VALUES ('content','cont_no_glossary','en','No glossary assigned.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_no_caption','en','No Caption',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_no_access','en','No Access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_new_term','en','New Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_next_rev','en','Next Revision',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_new_tab','en','New Panel',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_module_added','en','New version of module uploaded successfully',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_new_mob','en','New Media Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_new_dir','en','New Directory',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_new_tab','en','New Panel',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_new_term','en','New Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_new_file','en','New File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_new_area','en','New Link Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_new_mob','en','New Media Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_name','en','Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_mob_usages','en','Usage',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_new_area','en','New Link Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_new_dir','en','New Directory',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_mob_inst_prop','en','Instance Properties',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_mob_usages','en','Usage',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_mob_def_prop','en','Default Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_mob_from_media_pool','en','Choose From Media Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Mnemonic','en','Mnemonic',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_media_source','en','Media Source',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Media','en','Media (Standard)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_missing_preconditions','en','You need to fulfill the following preconditions to access the chapter \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_media_source','en','Media Source',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_media_placehl','en','Media Placeholder',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_media_placeh','en','Click and edit to insert media',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_mastery_score','en','adlcp:masteryscore',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_max_time_allowed','en','adlcp:maxtimeallowed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_map_file_not_generated','en','Sorry. Unable to generate map file for editing.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_mastery_score','en','adlcp:masteryscore',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_manifest','en','Manifest',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lrs_settings','en','Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_map_file_not_generated','en','Sorry. Unable to generate map file for editing.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lvalue','en','Data element',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lrs_settings','en','Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_location','en','Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_localfile','en','Local File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lm_menu','en','Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lm_properties','en','Learning Module Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lm_menu','en','Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lm_default_layout','en','Default Layout of Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_term','en','Glossary Term',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lk_page','en','Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_term_new','en','Glossary Term (New Frame)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lk_page','en','Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_page_new','en','Page (New Frame)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_page_faq','en','Page (FAQ Frame)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_media_new','en','Media (New Frame)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_media_media','en','Media (Media Frame)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_media_inline','en','Media (Inline)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lk_chapter','en','Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lk_media_faq','en','Media (FAQ Frame)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_lk_chapter_new','en','Chapter (New Frame)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lk_chapter','en','Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_List','en','List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_lk_chapter_new','en','Chapter (New Frame)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_list_properties','en','List Properties',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_list_files','en','List Files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_links','en','Links',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_linked_mobs','en','Linked media objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_Link','en','Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_type','en','Link Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_Link','en','Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_linked_mobs','en','Linked media objects',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_links','en','Links',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_list_files','en','List Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_select','en','Internal Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_link_int','en','Link (internal)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_ext','en','Link (external)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_link_int','en','Link (internal)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_left','en','Left',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_link_area','en','Link Area',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_left_float','en','Left, Floating',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_left','en','Left',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout','en','Layout',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_toc2windyn','en','Table of Contents Dynamic',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_toc2windyn_desc','en','Table of contents in the left, content in the right frame. FAQ, glossary and media links open dynamically a frame at bottom-right.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_toc2win','en','Table of Contents',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_toc2win_desc','en','Table of contents in the left, content in the right frame. FAQ, glossary and media links open in separate window.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_presentation','en','Presentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_presentation_desc','en','Content in the main frame. FAQ, glossary and media links open in separate window. No ILIAS main menu.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_per_page','en','Layout per Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_per_page_info','en','Allow to set individual layouts for each page. This automatically activates the ‘Synchronize Frames’ setting, too.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_fullscreen','en','Full Screen',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_1window_desc','en','Content in the main frame. FAQ, glossary and media links open in separate window.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_1window','en','One Window',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_2window_desc','en','Content in the left frame. FAQ, glossary and media links open in right frame.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_per_page_info','en','Allow to set individual layouts for each page. This automatically activates the ‘Synchronize Frames’ setting, too.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_per_page','en','Layout per Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_presentation_desc','en','Content in the main frame. FAQ, glossary and media links open in separate window. No ILIAS main menu.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_presentation','en','Presentation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_fullscreen_desc','en','Content in the main frame. FAQ, glossary and media links open in separate window. No ILIAS main menu and no navigation bar.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_3window','en','Three Windows',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_2window','en','Two Windows',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_layout_3window_desc','en','Content in the left frame. FAQ and media links open in top-right frame, glossary links in bottom-right frame.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_3window','en','Three Windows',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_layout_fullscreen_desc','en','Content in the main frame. FAQ, glossary and media links open in separate window. No ILIAS main menu and no navigation bar.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_item','en','Item',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_2window_desc','en','Content in the left frame. FAQ, glossary and media links open in right frame.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_1window','en','One Window',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_latest_rev','en','Latest Revision',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_layout_1window_desc','en','Content in the main frame. FAQ, glossary and media links open in separate window.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_item','en','Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_is_visible','en','isvisible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_internal_link','en','internal link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_internal_links','en','Internal Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_invalid_new_module','en','Incompatible module! Please make sure imsmanifest.xml is not changed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_internal_links','en','Internal Links',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_internal_link','en','internal link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_table','en','Insert Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_inst_map_areas','en','Instance Link Areas',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_subchapter','en','Insert Sub-chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_table','en','Insert Table',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_subchapter_from_clip','en','Paste Sub-chapters from Clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_src','en','Insert source code',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_section','en','Insert Section',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_src','en','Insert source code',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_subchapter_from_clip','en','Paste Sub-chapters from Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_par','en','Insert Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_resources','en','Insert Resource List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_page','en','Insert Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_mob','en','Insert Media Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_page_from_clip','en','Paste Pages from Clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_map','en','Insert Map',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_chapter','en','Insert Chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_file_item','en','Insert File Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_file_list','en','Insert File List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_list','en','Insert Advanced List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_insert_chapter_from_clip','en','Paste Chapters from Clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_map','en','Insert Map',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_mob','en','Insert Media Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_file_item','en','Insert File Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_as_subchapter','en','Insert as Sub-chapter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_chapter_from_clip','en','Paste Chapters from Clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_insert_chapter','en','Insert Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_insert_as_chapter','en','Insert as Chapter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_import_validation_errors','en','Some errors occurred during validation of the learning module. The presentation of the learning module may be ok, but it is likely that you are not able to edit the pages that contain errors.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_id_ref','en','identifierref',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_imagemap','en','Image Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_import_id','en','identifier',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_import_tracking','en','Import Tracking Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_import_validation_errors','en','Some errors occurred during validation of the learning module. The presentation of the learning module may be ok, but it is likely that you are not able to edit the pages that contain errors.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_hidenavig','en','Hide Navigation Tree',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_href','en','href',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_html_table','en','HTML Table',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_id_ref','en','identifierref',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_imagemap','en','Image Map',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_height','en','Height in pixels',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_hidenavig','en','Hide Navigation Tree',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_Headline1','en','Headline 1',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_Headline2','en','Headline 2',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Headline3','en','Headline 3',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_height','en','Height in pixels',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_glo_assign','en','Assign Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_glo_create','en','Create Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_glo_detach','en','Detach Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_glo_properties','en','Glossary Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_header','en','Header',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_Headline1','en','Headline 1',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_Headline2','en','Headline 2',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_fullscreen','en','Full Screen',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_general_properties','en','General Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_get_link','en','get link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_glo_assign','en','Assign Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_free_pages','en','Free Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_full_is_in_dir','en','Deletion not possible. Full screen file is in directory.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_fullscreen','en','Full Screen',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_fix_tree','en','Fix structure',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_footer','en','Footer',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_force_all_open','en','Force All Opened',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_format','en','Format',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_first_row_style','en','First Row Style Class',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_free_pages','en','Free Pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_full_is_in_dir','en','Deletion not possible. Full screen file is in directory.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_fix_tree','en','Fix structure',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_fix_tree_confirm','en','Please execute this command only if the tree structure of this learning module is corrupted, e.g. if blank items occur in the explorer view.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_file_unzipped','en','File has been unzipped.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_first_open','en','First Panel Opened',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_first_row_style','en','First Row Style Class',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_files','en','Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_file','en','File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_FileListItem','en','File List Item (Standard)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_files','en','Files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_first_open','en','First Panel Opened',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_file_renamed','en','File has been renamed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_file_from_repository','en','File From Repository',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_file_renamed','en','File has been renamed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_file_unzipped','en','File has been unzipped.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_file_deleted','en','File has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_file_created','en','File has been created.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_enter_a_file','en','Please select a file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Example','en','Example',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Excursus','en','Excursus',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_export_all','en','Export all',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_enter_a_file','en','Please select a file.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_enable_time_scheduled_page_activation','en','Time Scheduled Page Activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_end','en','End',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_enter_a_dir_name','en','Please enter a directory name.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_enable_time_scheduled_page_activation','en','Time Scheduled Page Activation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_empty_question','en','Question editing not finished. Please either click and edit or delete question.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_enable_time_scheduled_page_activation_info','en','If enabled, an activation period (date/time) can be selected in the learning module editor for each page.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_tabs','en','Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_term','en','Edit Term',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_empty_question','en','Question editing not finished. Please either click and edit or delete question.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_style','en','Edit Style',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_tabs','en','Properties',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_shape_circle','en','Edit Shape (Circle)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_shape_polygon','en','Edit Shape (Polygon)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_shape_rectangle','en','Edit Shape (Rectangle)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_src','en','Edit Source Code',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_shape_polygon','en','Edit Shape (Polygon)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_mob','en','Edit Media Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_par','en','Edit Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_shape_circle','en','Edit Shape (Circle)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_mob','en','Edit Media Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_mob_alias_prop','en','Edit Media Object Instance Properties',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_edit_file_list_properties','en','Edit File List Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_edit_lrs_settings','en','Edit Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_width','en','Width',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_select_pctext','en','Select Text Item',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_split_page_next','en','Split to Next Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_edit_file_list_properties','en','Edit File List Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_split_page','en','Split to New Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_textitem','en',' Text Item',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_split_page_next','en','Split to Next Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_row_up','en','Move Row Up',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_row_down','en','Move Row Down',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_select_pctext','en','Select Text Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_plachtext','en','Placeholder Text',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_row_down','en','Move Row Down',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_plachprop','en','Placeholder Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_plachquestion','en','Placeholder Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_pglprop','en','Page Layout Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_plachmedia','en','Placeholder Media',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_plachprop','en','Placeholder Properties',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_paste_clip','en','Paste From Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_paste','en','Paste',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_pglprop','en','Page Layout Properties',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_paste_clip','en','Paste From Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_par','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_new_row_after','en','New Row After',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_new_row_before','en','New Row Before',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_new_item_before','en','New Item Before',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_new_col_before','en','New Column Before',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_new_item_after','en','New Item After',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_new_item_before','en','New Item Before',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_new_col_after','en','New Column After',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_list','en',' Advanced List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_moveafter','en','Move After',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_movebefore','en','Move Before',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_list','en',' Advanced List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_item_down','en','Move Item Down',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_item_up','en','Move Item Up',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_tabs','en','Insert Accordion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_plach','en','Insert Placeholder',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_repobj','en','Insert Resource List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_section','en','Insert Section',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_repobj','en','Insert Resource List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_plach','en','Insert Placeholder',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_pcqst','en','Insert Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_map','en','Insert Map',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_media','en','Insert Image/Media',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_par','en','Insert Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_incl','en','Insert Content Snippet',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_media','en','Insert Image/Media',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_map','en','Insert Map',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_list','en','Insert Advanced List',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_filelist','en','Insert File List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_dtable','en','Insert Data Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_incl','en','Insert Content Snippet',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_code','en','Insert Code',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_atable','en','Insert Advanced Table',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_go','en','Go',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_flist','en',' File List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_enable','en','(De-)Activate Elements',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_dtable','en','Insert Data Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_edit','en','Edit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_enable','en','(De-)Activate Elements',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_flist','en',' File List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_go','en','Go',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_insert_atable','en','Insert Advanced Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_edit_prop','en','Edit Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_edit_files','en','Edit Files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_dtable','en','Data Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_edit_data','en','Edit Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_dtable','en','Data Table',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_delete','en','Delete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_col_left','en','Move Column Left',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_col_right','en','Move Column Right',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_copy_clip','en','Copy to Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_delete_col','en','Delete Column',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_delete_item','en','Delete Item',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_delete_row','en','Delete Row',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_delete','en','Delete',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_col_right','en','Move Column Right',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_class','en','Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_col_left','en','Move Column Left',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_atable','en','Advanced Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_align_right','en','Align: Right',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_atable','en','Advanced Table',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_ed_align_right_float','en','Align: Right Float',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_align_left','en','Align: Left',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_align_left_float','en','Align: Left Float',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_ed_align_center','en','Align: Center',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_downloads','en','Enable Download',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_drag_and_drop_elements','en','Drag and drop content elements on placeholders to move elements.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_align_center','en','Align: Center',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_align_left_float','en','Align: Left Float',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_ed_align_left','en','Align: Left',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_downloads_public_desc','en','Allow download even for anonymous users (in public area)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_download_title','en','Download Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_downloads_desc','en','Offers all public export files for download (e.g. for offline use or import).',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_double_click_to_delete','en','Double-click on content elements to select them for (de-)activation or deletion.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_dir_renamed','en','Directory has been renamed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_dir_file','en','Directory/File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_dir_deleted','en','Directory has been deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_dir_file','en','Directory/File',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_dir_created','en','Directory has been created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_dependencies','en','Dependencies',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_delete_style','en','Delete Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_delete_track_data','en','Delete Tracking Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_definitions','en','Definitions',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_delete_selected','en','Delete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_delete_style','en','Delete Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_definition','en','Definition',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_default','en','Default',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_def_map_areas','en','Default Link Areas',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_def_organization','en','default',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_def_map_areas','en','Default Link Areas',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_def_lesson_mode','en','Record Tracking Data',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_decimal','en','Decimal',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_def_layout','en','Default Layout',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_decimal','en','Decimal',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_debug','en','Enable Test Tool',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_deactivated','en','Deactivated',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_de_activate','en','(De-)Activate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_deactivate_page','en','Deactivate Page',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_de_activate','en','(De-)Activate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_data_from_lms','en','adlcp:datafromlms',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_custom','en','Custom',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_custom_size','en','Fixed Size',NULL,NULL); @@ -22316,135 +22311,135 @@ INSERT INTO `lng_data` VALUES ('content','cont_current_page','en','Current Page' INSERT INTO `lng_data` VALUES ('content','cont_current_chapter','en','Current Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_credits','en','Credits',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_credit_on','en','Grade Tracking Status (Passed or Failed)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_credit_off','en','Tracking Status not Graded',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_credit_mode','en','Grading Tracking Status',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_credit_off','en','Tracking Status not Graded',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_create_mob','en','Create Media Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_could_not_determine_resource_size','en','ILIAS could not automatically determine the resource size.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_copy_to_clipboard','en','Copy to clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_content','en','Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_coords','en','Coordinates',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_copy_to_clipboard','en','Copy to clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_could_not_determine_resource_size','en','ILIAS could not automatically determine the resource size.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_constrain_proportions','en','Constrain Proportions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_content','en','Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_confirm_delete','en','Do you really want to delete this item(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_colspan','en','Col. Span',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_click_tl_corner','en','Please click on the top left corner of the desired area.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_click_next_point','en','Please click on the next point of the polygon.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_click_starting_point','en','Please click on the starting point of the polygon.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_click_next_point','en','Please click on the next point of the polygon.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_click_next_or_save','en','Please click on the next point of the polygon or save the area. (It is not necessary to click again on the starting point of this polygon !)',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_click_circle','en','Please click on a circle point of the desired area.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_click_center','en','Please click on center of the desired area.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_click_br_corner','en','Please click on the bottom right corner of the desired area.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Citation','en','Citation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_citation_selection_not_valid','en','You\'re selection is not valid',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_click_br_corner','en','Please click on the bottom right corner of the desired area.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Circle','en','Circle',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_citation_selection_not_valid','en','You\'re selection is not valid',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_choose_pages_or_chapters_only','en','Please select either pages or chapters only.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_choose_glo','en','Choose Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_choose_mep','en','Choose Media Pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_choose_lm','en','Choose Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_choose_glo','en','Choose Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_choose_characteristic','en','Choose Characteristic',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_choose_characteristic_section','en','Sections',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_choose_characteristic_text','en','Text Elements',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_characteristic','en','Style Class',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_chapters','en','Chapters',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_chapters_and_pages','en','Chapters and Pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_characteristic','en','Style Class',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_choose_characteristic_section','en','Sections',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_chapters_only','en','Chapters only',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_chapters_after_pages','en','Please note that pages have to precede all sub-chapters of the same level.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_chapters_and_pages','en','Chapters and Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_chap_select_target_now','en','Chapter marked for moving. Select target now.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_chapters_after_pages','en','Please note that pages have to precede all sub-chapters of the same level.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_change_type','en','Change Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_chap_and_pages','en','Chapters and Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_change_object_reference','en','Change Object Reference',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_center','en','Center',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_cant_del_full','en','Deletion of full screen file not possible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cant_del_std','en','Deletion of standard view file not possible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_caption','en','Caption',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_bullet_list','en','Bullet List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_center','en','Center',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_change_object_reference','en','Change Object Reference',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_cant_del_full','en','Deletion of full screen file not possible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_cant_copy_folders','en','Folders cannot be copied to clipboard.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_back','en','Back',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_bb_tip','en','Tip: Styles can be applied quickly to selected text.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_behavior','en','Behavior',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Block','en','Block',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_bottom','en','Bottom',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_bullet_list','en','Bullet List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_back','en','Back',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_bb_tip','en','Tip: Styles can be applied quickly to selected text.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_assign_std','en','Assign Standard',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_autoindent','en','Auto Indent',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_autostart','en','Autostart',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_assign_std','en','Assign Standard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_annex','en','Annex',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_areas_deleted','en','Map areas deleted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_assign_characteristic','en','Assign Characteristic',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_assign_full','en','Assign Full Screen',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_assign_characteristic','en','Assign Characteristic',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_anchor','en','Anchor',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_all_pages','en','All Pages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_alphabetic_s','en','Alphabetic a, b, …',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_annex','en','Annex',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_areas_deleted','en','Map areas deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_alphabetic','en','Alphabetic A, B, …',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_alphabetic_s','en','Alphabetic a, b, …',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_all_closed','en','All Closed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_align','en','Alignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_all_pages','en','All Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_adjust_size','en','Adjust Size',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_align','en','Alignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_Additional','en','Additional Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_added_term','en','Term added',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_added_comment','en','Comment has been added to history.',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_add_tab','en','Add Panel',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_add_file','en','Add File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_add_definition','en','Add Definition',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_add_elements','en','Click on placeholders to add new elements.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_add_change_comment','en','Add change comment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_active','en','Enable Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_add_area','en','Add Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_add_change_comment','en','Add change comment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','cont_add_definition','en','Add Definition',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_activation','en','Activation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','cont_active','en','Enable Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_activated','en','Activated',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_activate_page','en','Activate Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_act_number','en','Chapter Numeration',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','citate','en','Citate',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','citate_to','en','Citate To ...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','citate_page','en','Citate this Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','choose_public_pages','en','Choose public accessible pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','citate_from','en','Citate From ...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','citate_page','en','Citate this Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('content','all','en','All',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','choose_public_mode','en','Access for Users not logged-in',NULL,NULL); +INSERT INTO `lng_data` VALUES ('content','all','en','All',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','all_pages','en','Entire Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','zipcode','en','Zip Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','add_menu_entry','en','Add Menu Entry',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','zip','en','Zip Code',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','zipcode','en','Zip Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','zip_test_failed','en','Zip-Test failed. Please contact you ILIAS administrator.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','yesterday','en','Yesterday',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','zip_structure_error','en','Archive contains same file names. Upload aborted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','years','en','Years',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','yes','en','Yes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','year','en','Year',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','write','en','Write',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','wrong_ip_detected','en','Your access is denied because of a wrong client ip.
You are currently using this IP address: %s
Please contact the system administrator.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','wizard_title_info','en','Search for the object you want to duplicate. Please enter the object\'s title or a part of it and click on \'Continue\' to get matching search results.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','with','en','with',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','write','en','Write',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','wizard_search_list','en','Your search produced the following hits. Please select one of them.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','wizard_title_info','en','Search for the object you want to duplicate. Please enter the object\'s title or a part of it and click on \'Continue\' to get matching search results.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','wiki','en','Wiki',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','wiki_write','en','User can edit settings of wiki',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','with','en','with',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','wiki_new','en','New Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiki_read','en','User can read wiki content',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiki_visible','en','Wiki is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','wiki_new','en','New Wiki',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','wiki_write','en','User can edit settings of wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiki_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','wiki_delete','en','User can move or delete wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiki_edit_content','en','User can create and edit wiki pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','width','en','Width',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','wiki_add','en','Add Wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','wiki_copy','en','User can copy wiki',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','week','en','Week',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','weekly','en','weekly',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','wiki_delete','en','User can move or delete wiki',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','weeks','en','Weeks',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','welcome','en','Welcome',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','width','en','Width',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webr','en','Weblink',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webservices','en','SOAP',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webr_sure_delete_items','en','Do you really want to delete the following Weblink(s)?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','webr_visible','en','Weblink is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','week','en','Week',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','weekly','en','weekly',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webr','en','Weblink',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','webr_write','en','User can edit settings of weblinks',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','webr_visible','en','Weblink is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webr_sure_delete_items','en','Do you really want to delete the following Weblink(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','webr_read','en','User can read and use weblinks',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webr_last_check_table','en','Last check:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webr_edit','en','Edit Weblink',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webr_disable_check','en','Disable Validation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webr_last_check_table','en','Last check:',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','webr_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webr_deleted_items','en','Deleted Weblink(s).',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webr_disable_check','en','Disable Validation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','webr_copy','en','User can copy weblink',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','webr_delete','en','User can move or delete weblink',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webr_deleted_items','en','Deleted Weblink(s).',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webr_add','en','Add Weblink',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','webr_copy','en','User can copy weblink',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webr_active','en','Active',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webfolder_mount_dir_with','en','Open this page as a Webfolder with Internet Explorer 6, Konqueror, Nautilus, other Browser.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webfolder_instructions','en','Webfolder instructions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webfolder_mount_dir_with','en','Open this page as a Webfolder with Internet Explorer 6, Konqueror, Nautilus, other Browser.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webfolder_instructions_titletext','en','Open as webfolder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webfolder_instructions_text','en','[WINDOWS]

Instructions for connecting with Windows

  1. Open Windows-Explorer (e.g. key combination Windows + E).
  2. Rightclick on \"This PC\" and select \"Map network drive...\".
  3. Enter the following address as address (you may copy and paste the URL):

    [WEBFOLDER_URI]

  4. Click \"Finish\".
  5. Enter your login and password, and select \"OK\".
  6. You can now access the webfolder from the start menu \"Computer\".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/WINDOWS] [MAC]

Instructions for Mac OS X

  1. Open the Finder.
  2. Choose the menu \'Goto to > Connect to server...\'.
    This opens the window \'connect to server\'.
  3. Enter this URL as server URL:
    [WEBFOLDER_URI]
    und click on \'Connect\'.
  4. Enter your login and password, and select \"OK\".

Your login and password is identical to your local ILIAS login and can be changed via \"Personal Settings\".[/MAC][LINUX]

Instructions for Linux with Konqueror

  1. Open Konqueror Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_KONQUEROR]
    and press enter.
  3. Enter your login and password, and select \"OK\".

Instructions for Linux with Nautilus

  1. Open Nautilus Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_NAUTILUS]
    and press enter.
  3. Enter your login and password, and select \"OK\".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/LINUX]

Tips & Support

  • These steps need to be done only once. You may access your connection again later.
  • Connect to a higher folder. You can always navigate down the tree, but nut upwards.
  • If your computer can not open the WebDAV Connection, please contact ILIAS Support.
',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webfolder_instructions_info','en','The webfolder instructions are shown on browsers, which can not open a webfolder directly. You can use HTML code, and the following placeholders: [WEBFOLDER_TITLE], [WEBFOLDER_URI], [WEBFOLDER_URI], [WEBFOLDER_URI_KONQUEROR], [WEBFOLDER_URI_NAUTILUS], [ADMIN_MAIL], [WINDOWS]...[/WINDOWS], [MAC]...[/MAC], [LINUX]...[/LINUX]. Clear the field to get the default instructions.',NULL,NULL); @@ -22452,237 +22447,237 @@ INSERT INTO `lng_data` VALUES ('common','webfolder_index_of','en','Index of %1$s INSERT INTO `lng_data` VALUES ('common','webfolder_dir_info','en','You got here, because your browser can\'t open webfolders. Read the instructions for opening webfolders.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_doc_delete','en','Delete WebDav Mount Instructions',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_missing_lang','en','There is no english version of the WebDAV Mount Instructions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_chosen_language_already_used','en','There already is another document associated with the chosen language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_tbl_docs_head_title','en','Dokument title',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_upload_instructions','en','Upload Instructions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_chosen_language_already_used','en','There already is another document associated with the chosen language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_tbl_docs_title','en','List of uploaded WebDAV Mount Instructions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_tbl_docs_head_title','en','Dokument title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_sure_delete_documents_s','en','Are you sure you want to delete the Mount Instructions with the following title:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_form_edit_doc_head','en','Edit Mount Instructions Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_mount_instructions','en','Mount Instructions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_sure_delete_documents_s','en','Are you sure you want to delete the Mount Instructions with the following title:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_form_new_doc_head','en','Create new Mount Instructions Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_form_document_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_form_document_title_info','en','This title will be dislayed as the title of the modal when the Mount Instructions are opened',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_form_document','en','Instructions Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_form_document_info','en','Upload a txt or an html file here. After the upload the file will be parsed and processed. For more information',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_form_document','en','Instructions Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_general_settings','en','General Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_add_instructions_btn_label','en','Add Mount Instructions Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_docs_mount_instructions','en','Mount Instructions Documents',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_versioning_info','en','If enabled, already existing files will get a new version instead of beeing overwritten.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_add_instructions_btn_label','en','Add Mount Instructions Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_enable_versioning','en','File Versioning',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav_problem_free_container','en','There are no objects that cause problems in this container.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_versioning_info','en','If enabled, already existing files will get a new version instead of beeing overwritten.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_problem_info_duplicate','en','There is a file with the same title as the info file.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav_problem_free_container','en','There are no objects that cause problems in this container.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_duplicate_detected_title','en','Following objects could not be displayed, because an object with the same Title is already being shown:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','webdav','en','WebDAV',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','webdav_forbidden_chars_title','en','Following files cannot be displayed, because they contain one or more forbidden characters (\\<>/:*?\"|#):',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','webdav','en','WebDAV',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','web_resources','en','Weblinks',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','visible','en','Visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','visitor','en','Visitor',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','visitors','en','Visitors',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','visits','en','Visits',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','visitors','en','Visitors',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','visitor','en','Visitor',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','visible','en','Visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','visible_registration','en','Visible in Registration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','view','en','View',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','view_content','en','View Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','versions','en','Versions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','view_content','en','View Content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','view','en','View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','version','en','Version',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','verification_warning_log','en','Verification warning log',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','verification_failure_log','en','Verification failure log',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','verification_failed','en','Verification failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','vcard','en','Visiting Card',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','vcard_download','en','Download Visiting Card',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','value','en','Value',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','valid','en','Valid',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','vcard_download','en','Download Visiting Card',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','validate','en','Validate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','valid','en','Valid',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_xml_element_inapplicable','en','Element \"%1$s\" is inapplicable for \"%2$s\" action.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_xml_element_for_action_required','en','Element \"%1$s\" must be specified for \"%2$s\" action.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_xml_element_content_illegal','en','Content \"%2$s\" of element \"%1$s\" is illegal.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_xml_attribute_value_inapplicable','en','Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is inapplicable for \"%4$s\" action.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usrimport_xml_attribute_value_illegal','en','Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is illegal.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_xml_attribute_missing','en','Attribute \"%2$s\" in element \"%1$s\" is missing.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usrimport_xml_attribute_value_illegal','en','Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is illegal.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_with_specified_role_not_permitted','en','Import with specified role not permitted.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usrimport_no_update_ext_account_exists','en','Can\'t perform ‘Update’ action. External account already exists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_no_insert_ext_account_exists','en','Can\'t perform ‘Insert’ action. External account already exists.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usrimport_no_update_ext_account_exists','en','Can\'t perform ‘Update’ action. External account already exists.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_login_is_not_unique','en','Login is not unique.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usrimport_global_role_for_action_required','en','At least one global role must be specified for \"%1$s\" action.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_ignore_role','en','Ignore role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usrimport_conflict_handling_info','en','When ‘Ignore on conflict’ is selected, ILIAS ignores an action, if it can not be performed (e. g. an ‘Insert’ action is not done, if there is already a user with the same login in the database.) When ‘Update on conflict’ is selected, ILIAS updates the database if an action can not be performed. (e. g. an ‘Insert’ action is replaced by an ‘Update’ action and the other way around, if a user with the same login exists in the database).',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usrimport_global_role_for_action_required','en','At least one global role must be specified for \"%1$s\" action.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_cant_update','en','Can\'t perform ‘Update’ action. No such user in database.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usrimport_conflict_handling_info','en','When ‘Ignore on conflict’ is selected, ILIAS ignores an action, if it can not be performed (e. g. an ‘Insert’ action is not done, if there is already a user with the same login in the database.) When ‘Update on conflict’ is selected, ILIAS updates the database if an action can not be performed. (e. g. an ‘Insert’ action is replaced by an ‘Update’ action and the other way around, if a user with the same login exists in the database).',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_cant_insert','en','Can\'t perform ‘Insert’ action. User is already in database.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usrimport_form_not_evaluabe','en','The form data couldn\'t be read.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usrimport_wrong_file_count','en','Too many files in import-folder. Please try again.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_cant_delete','en','Can\'t perform ‘Delete’ action. No such user in database.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usrimport_wrong_file_count','en','Too many files in import-folder. Please try again.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usrimport_form_not_evaluabe','en','The form data couldn\'t be read.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_action_ignored','en','Ignored action %1$s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrimport_action_replaced','en','Replaced action %1$s by %2$s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usrf','en','User accounts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','usrf_visible','en','User administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','usrf_write','en','Edit settings in User administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','usrf_visible','en','User administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','usrf_read','en','User has read access to User administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','usrf_read_users','en','User has read access to local user accounts (local administrators)',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','usrf_push_desktop_items','en','User is allowed to add recommended content for role members.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','usrf_read_users','en','User has read access to local user accounts (local administrators)',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','usrf_edit_roleassignment','en','User can change role assignment of user account',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','usrf_edit_permission','en','User can change permission settings in User administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr','en','User',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','usrf_delete','en','User can delete user accounts',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','usrf_edit_permission','en','User can change permission settings in User administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_without_courses','en','Users without courses assigned',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usr_settings_changeable_lua','en','Changeable in Local User Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_skin_style','en','Skin / Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usr_settings_visib_lua','en','Visible in Local User Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_settings_header_profile','en','Standard User Data Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_settings_saved','en','Global user settings saved successfully!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usr_settings_visib_lua','en','Visible in Local User Administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usr_settings_changeable_lua','en','Changeable in Local User Administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_new','en','New User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_settings_explanation_profile','en','Check ‘Visible’ to show fields in the registration form and personal settings. Check ‘Changeable’ to allow the user to change the values. Please note that visible fields can always be entered in the registration form. Required fields are required in the registration form and the personal settings. All data can be changed in the user administration independent on these settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_limited_access_only','en','Users with limited access only',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usr_filter_role','en','Assigned role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_inactive_only','en','Inactive Users only',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usr_filter_groupmember','en','Member of group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usr_filter_role','en','Assigned role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_filter_lastlogin','en','Last login of user',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usr_agreement','en','Terms of Service',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usr_filter_groupmember','en','Member of group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_edit','en','Edit User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_filter_coursemember','en','Member of course',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','usr_active_only','en','Active Users only',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','usr_add','en','Add User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','users','en','Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usr_agreement','en','Terms of Service',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','usr_active_only','en','Active Users only',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','users_online','en','Active Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','users','en','Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','users_not_imported','en','The following users do not exist, their messages cannot become imported',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','userfolder_export_files','en','Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','userfolder_export_xml','en','XML',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','username','en','Username',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','userfolder_export_files','en','Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','userfolder_export_file','en','File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','userfolder_export_excel_x86','en','Microsoft Excel',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','userfolder_export_file_size','en','File size',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','userdata','en','User Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','userfolder_export_excel_x86','en','Microsoft Excel',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','userfolder_export_csv','en','Comma Separated Values',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','userdata','en','User Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user','en','User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_status','en','User Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_toggle_noti','en','Member is not allowed to deactivate notification',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_send_new_account_mail','en','Send new account e-mail',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_status','en','User Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_profile_other','en','Other Information',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_send_new_account_mail','en','Send new account e-mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_not_known','en','Please insert a valid username.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_new_account_mail','en','New Account Mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_imported','en','User import complete.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_language','en','User Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_new_account_mail_desc','en','This mail is sent automatically to users that have self-registered or to those who have been registered by an administrator with enabled setting ‘Send mail to inform user about changes’.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_language','en','User Language',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_imported','en','User import complete.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_imported_with_warnings','en','User import complete with warnings.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_image','en','User Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_import_failed','en','User import failed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_image','en','User Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_ext_account','en','External Account',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_ext_account_desc','en','Account used for external authentication. (CAS, SOAP, LDAP or Radius authentication)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_detail','en','Detail Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_deleted','en','User deleted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_defined_list','en','Custom User Data Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_defined_fields','en','Custom Fields',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_defined_list','en','Custom User Data Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_deactivated','en','User has been disapproved',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_comment','en','User comment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_cant_receive_mail','en','%1$s – user is not allowed to use the mail system.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','user_assignment','en','User Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_added','en','User added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_assignment','en','User Assignment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','user_cant_receive_mail','en','%1$s – user is not allowed to use the mail system.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','user_activated','en','User has been approved',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','use_default_instructions','en','Use default instructions.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','url','en','URL',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','use_customized_instructions','en','Use customized instructions:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','url_to_latex','en','URL to LaTeX CGI script',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','uri','en','URI',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','url_not_found','en','File Not Found',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','url_to_latex','en','URL to LaTeX CGI script',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','url','en','URL',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','uploaded_and_checked','en','The file has been uploaded and checked, you can now start to import it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','upload','en','Upload',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','uploaded_and_checked','en','The file has been uploaded and checked, you can now start to import it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','upload_error_file_not_found','en','Upload error: File not found.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','update','en','Edit',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','update_on_conflict','en','Update on conflict',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','update_applied','en','Update Applied',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','update','en','Edit',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','update_language','en','Update Language',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','update_applied','en','Update Applied',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','unzip','en','Unzip',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','up','en','Up',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','unread','en','Unread',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_remove_from_favourites','en','Remove from Favourites',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','unread','en','Unread',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','uninstalled','en','uninstalled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','unknown','en','UNKNOWN',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','uninstall','en','Uninstall',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','uncheck_all','en','Uncheck all',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','unchecked','en','Unchecked',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','unambiguousness','en','Distinguishing Mark',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','uncheck_all','en','Uncheck all',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ums_explanation','en','Your external account could not be mapped to an ILIAS account. But ILIAS has found an account with your e-mail address. If this is your account, please login with your ILIAS password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ums_explanation_4','en','If none of them is your account, please hit ‘Create New Account’.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ums_explanation_3','en','Your external account could not be mapped to an ILIAS account. But ILIAS has found multiple accounts with your e-mail address. If one of those is your account, please login with your ILIAS password.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ums_explanation_2','en','If this is not your account, please hit ‘Create New Account’.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','udf_type_text','en','Text Field (One Line)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','udf_type_wysiwyg','en','Text Area (WYSIWYG)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','udf_update_select_field','en','Edit Select Box',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','udf_update_text_field','en','Edit Text Field',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','udf_update_wysiwyg_field','en','Edit Text Area (WYSIWYG) Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','uid','en','UID',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ums_create_new_account','en','Create New Account',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','udf_update_wysiwyg_field','en','Edit Text Area (WYSIWYG) Field',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','udf_update_text_field','en','Edit Text Field',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','udf_update_select_field','en','Edit Select Box',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ums_explanation_2','en','If this is not your account, please hit ‘Create New Account’.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ums_explanation_3','en','Your external account could not be mapped to an ILIAS account. But ILIAS has found multiple accounts with your e-mail address. If one of those is your account, please login with your ILIAS password.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','udf_duplicate_entries','en','The values have to be unique.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_field_deleted','en','Deleted field.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_name_already_exists','en','This field name already exists. Please choose a different name.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_required_requires_visib_reg','en','When field is set to ‘required’, it must be set to ‘visible in registration’',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_type_date','en','Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_type_datetime','en','Date and Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_type_select','en','Selection List (Single Choice)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','udf_type_text','en','Text Field (One Line)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','udf_type_wysiwyg','en','Text Area (WYSIWYG)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','typ','en','Object Type Definition',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','type','en','Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_added_field','en','Added new field.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','udf_delete_sure','en','Are you sure you want to delete this field and all assigned user data ?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','udf_duplicate_entries','en','The values have to be unique.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','txt_registered','en','You successfully registered to ILIAS. Please click on the button below to login to ILIAS with your user account.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','typ','en','Object Type Definition',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','type','en','Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','txt_submitted','en','You successfully submitted an account request to ILIAS. Your account request will be reviewed by the system administrators, and should be activated within 48 hours. You will not be able to log in until your account is activated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','txt_registered','en','You successfully registered to ILIAS. Please click on the button below to login to ILIAS with your user account.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tst','en','Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tutors','en','Tutors',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','txt_registered_passw_gen','en','You successfully registered to ILIAS. You should receive an e-Mail including your generated password shortly.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tst_write','en','User can edit content and settings of test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','tst','en','Test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tst_user_not_invited','en','You are not supposed to take this test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tst_visible','en','Test is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_warning_test_not_complete','en','The test is not complete!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','tst_user_not_invited','en','You are not supposed to take this test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_statistics','en','Statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_results','en','Test Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tst_tst_results','en','User has access to test results of others',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tst_run','en','Run',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_statistical_evaluation','en','Statistics',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tst_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_new','en','New test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tst_read','en','User can perform the test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','tst_run','en','Run',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tst_delete','en','User can move or delete test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tst_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tst_edit_permission','en','User can change permission settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tst_copy','en','User can copy test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','tst_delete','en','User can move or delete test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tree','en','Tree',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','treeview','en','Show Sidebar',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tst_add','en','Add test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','tst_copy','en','User can copy test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tree_frame','en','Tree Frame',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','tree','en','Tree',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','translation','en','Translation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','trash','en','Trash',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tracking_settings','en','Learning Progress Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','translation','en','Translation',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','trac_visible','en','Statistics and Learning Progress administration is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','trac_edit_permission','en','Change permission settings in Statistics and Learning Progress administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','trac_read','en','User has read access to Statistics and Learning Progress administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','trac_delete','en','User can delete tracking data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','total','en','Total',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','trac_delete','en','User can delete tracking data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','trac_edit_permission','en','Change permission settings in Statistics and Learning Progress administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','toggleGlobalFixed','en','Toggle Global Fixed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tomorrow','en','Tomorrow',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','toggleGlobalDefault','en','Toggle Global Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','today','en','Today',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','toggleGlobalDefault','en','Toggle Global Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','to','en','To',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','title_required','en','Please insert a title.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_add_to_favourites','en','Add to Favourites',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','to_client_list','en','Client Selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_add_to_favourites','en','Add to Favourites',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','title_required','en','Please insert a title.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','time','en','Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit_until','en','Until (time limit)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit','en','Access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','time','en','Time',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','time_limit_unlimited','en','Unlimited (time limit)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','time_limit_reached','en','Your user account is not active.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit_owner','en','Owner (time limit)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','time_limit_reached','en','Your user account is not active.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','time_limit_unlimited','en','Unlimited (time limit)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit_not_valid','en','The period is not valid.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit_no_users_selected','en','Please select a user.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit_message','en','Message (time limit)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','time_limit_add_time_limit_for_selected','en','Please enter a time period for the selected user(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','time_limit_from','en','From (time limit)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','textbox','en','Textbox',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','thread','en','Thread',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','thumbnail','en','Thumbnail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','time_limit_add_time_limit_for_selected','en','Please enter a time period for the selected user(s)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','thread','en','Thread',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','textbox','en','Textbox',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tests','en','Tests',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','tax','en','Taxonomy',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','term','en','Term',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','test','en','Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','target','en','Target',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','term','en','Term',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tax','en','Taxonomy',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tax_add','en','Add Taxonomy',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tax_new','en','New Taxonomy',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','target','en','Target',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','take_over_structure','en','Adopt Structure',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','take_over_structure_info','en','If activated, directories in the zip file will be mapped to categories or, if used in groups or courses, to folders.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tags_write','en','User can edit settings in Tagging administration',NULL,NULL); @@ -22690,242 +22685,242 @@ INSERT INTO `lng_data` VALUES ('rbac','tags_visible','en','Tagging administratio INSERT INTO `lng_data` VALUES ('rbac','tags_read','en','User has read access to Tagging administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','tagging_my_tags','en','My Tags',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','tags_edit_permission','en','User can change permission settings in Tagging administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','tabs','en','Tabs',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','table_mail_import','en','Mail import',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tabs','en','Tabs',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','systemcheck_cronform','en','Activation of System Check in Cron Job',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','systemcheck_cron','en','Process System Check in Cron Job',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','system','en','System',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','system_styles','en','System Styles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','system_information','en','System Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','system_language','en','System Language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','svy','en','Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','system_check','en','System Check',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','system_information','en','System Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svy_write','en','User can edit content and settings of survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','svy_warning_survey_not_complete','en','The survey is incomplete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','svy','en','Survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','svy_read','en','User can participate at a survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','svy_run','en','Run',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svy_visible','en','Survey is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','svy_read','en','User can participate at a survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','svy_not_finished','en','The survey has not been completed yet',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','svy_warning_survey_not_complete','en','The survey is incomplete',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','svy_not_started','en','You did not take part in this survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','svy_new','en','New survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','svy_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','svy_finished','en','You have completed the survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','svy_not_finished','en','The survey has not been completed yet',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svy_invite','en','User can invite others to a survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','svy_finished','en','You have completed the survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','svy_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svy_delete','en','User can move or delete survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','svy_add','en','Add survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','svy_copy','en','User can copy survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','svy_add','en','Add survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','survey_unlimited_invitation','en','Unlimited Invitation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','survey_defaults','en','Default Settings for Surveys',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sure_delete_selected_users','en','Are you sure you want to delete the selected user(s)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','summary','en','Summary',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','subtabs','en','SubTabs',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','success_message','en','Success Message',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','summary','en','Summary',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','subscription','en','Subscription',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','subobjects','en','Sub-objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','submit','en','Submit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','subobjects','en','Sub-objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','subject','en','Subject',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sub_request_saved','en','Saved membership request',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sub_request_deleted','en','Deleted membership request',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','stys_visible','en','Layout and Styles administration is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','stys_read','en','User has read access to Layout and Styles administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sub_request_saved','en','Saved membership request',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','stys_edit_permission','en','User can change permission settings of Layout and Styles administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','stys_read','en','User has read access to Layout and Styles administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','stys_visible','en','Layout and Styles administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','structure','en','Structure',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sty','en','Style',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','statistic','en','Statistic',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','statistics','en','Statistics',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','status_no_permission','en','No permission granted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','status','en','Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','step','en','Step',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','street','en','Street',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','status_no_permission','en','No permission granted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','status','en','Status',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','statistic','en','Statistic',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','statistics','en','Statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','stat_selected','en','Selected',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','standard_fields','en','Standard Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','startpage','en','ILIAS Login Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ssl','en','SSL (HTTPS)',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','spl_write','en','User can edit survey questions and settings of question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','spl','en','Question Pool Survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','spl_visible','en','Question pool is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ssl','en','SSL (HTTPS)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','standard_fields','en','Standard Fields',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','spl_new','en','New Question Pool Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','spl_read','en','User can read survey questions in pool and insert them in survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','spl_delete','en','User can move or delete question pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','spl_visible','en','Question pool is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','spl_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','spl_new','en','New Question Pool Survey',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','spacer','en','Spacer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','spl_delete','en','User can move or delete question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','spl_add','en','Add Question Pool Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','spl_copy','en','User can copy question pool for surveys',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sorting_title_header','en','Titles in Alphabetical Order',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','spacer','en','Spacer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sorting_info_title','en','Content items are arranged automatically by title in alphabetical order.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sorting_manual_header','en','Manually',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sorting_save','en','Save Sorting',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sorting_info_title','en','Content items are arranged automatically by title in alphabetical order.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sorting_title_header','en','Titles in Alphabetical Order',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sorting_info_manual','en','Content items can be arranged manually in a preferred order. Additionallyi, please define the standard sorting settings for new objects.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sorting_header','en','Content Item Sorting',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','soap_wsdl_path','en','WSDL Path',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sort_by_this_column','en','Sort by this column',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sorting_header','en','Content Item Sorting',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sorting_info_manual','en','Content items can be arranged manually in a preferred order. Additionallyi, please define the standard sorting settings for new objects.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','soap_user_administration','en','Administration via SOAP',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','soap_wsdl_path_info','en','Please enter the path to the ilias wsdl file which should be used for the webservice. If you leave this field blank, the following path will be used per default:%s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','soap_user_administration_desc','en','If enabled, ILIAS can be administrated via SOAP.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','soap_user_administration','en','Administration via SOAP',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','smtp','en','SMTP',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','soap_user_administration_desc','en','If enabled, ILIAS can be administrated via SOAP.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','size','en','Size',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','skin_style','en','Default Skin / Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','simultaneous_login_detected','en','Your access is denied because of a simultaneous login with the same account.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','signature','en','Signature',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','show','en','Show',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','side_frame','en','Side Frame',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','signature','en','Signature',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','show_users_online','en','Show active users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','show_owner','en','Show Owner',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','show_filter','en','Show Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','show_list','en','Show List',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','show_members','en','Display Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','show_details','en','Show Details',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','show_owner','en','Show Owner',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','show_filter','en','Show Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','short_inst_name','en','Short Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','show_details','en','Show Details',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib','en','Shibboleth',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','short_inst_name_info','en','This title will appear in the browser header title bar. If no value is entered, ‘ILIAS’ is used.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_zipcode','en','Attribute for zipcode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib','en','Shibboleth',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_update','en','Update this field on login',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_user_default_role','en','Default role assigned to Shibboleth users',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_title','en','Attribute for title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_update','en','Update this field on login',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_street','en','Attribute for street',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_settings_saved','en','The Shibboleth settings were saved',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_select_home_organization','en','For authentication via %s, please select your organization from the drop down list.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_phone_office','en','Attribute for office phone number',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_select_home_organization','en','For authentication via %s, please select your organization from the drop down list.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_phone_mobile','en','Attribute for mobile phone number',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_login','en','Unique Shibboleth attribute',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_member_of','en','I am a member of ...',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_phone_home','en','Attribute for home phone number',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_login','en','Unique Shibboleth attribute',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_login_type','en','Organization selection',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_login_external_wayf','en','Use external WAYF service',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_login_internal_wayf','en','Use ILIAS WAYF service',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_login_embedded_wayf','en','Design custom login area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_login_external_wayf','en','Use external WAYF service',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_login_embedded_wayf_description','en','If this option is chosen, you can provide any HTML code in the login instructions text area below. This can for example be used to embed an own JavaScript WAYF/Discovery Service or create a custom-tailored design of the login area.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_lastname','en','Attribute for lastname',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_login_button','en','Path to the image of a Shibboleth login button that is used to redirect users to the WAYF specified in the Shibboleth configuration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_language','en','Attribute for language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_invalid_home_organization','en','Please choose a valid organization!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_lastname','en','Attribute for lastname',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_institution','en','Attribute for institution',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_invalid_home_organization','en','Please choose a valid organization!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_idp_list','en','Provide a list of Identity Providers to let the user choose from on the ILIAS login page.
On each line there must be a comma-separated tuple for providerID of IdP (see the Shibboleth metadata file) and Name of IdP as it shall be displayed in the drop-down list.
As an optional third parameter you can add the location of a Shibboleth session initiator that shall be used in case your ILIAS installation is part of a multi federation setup.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_general_wayf_login_instructions','en','In case you are not associated with the given organizations and you need access to a course on this server, please contact the',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_general_login_instructions','en','To log in via %s, please click on the login button and choose your organization of the following page.
If you have questions concerning this, please ask the',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_gender','en','Attribute for salutation (must be ‘m’ or ‘f’)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_firstname','en','Attribute for first name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_federation_name','en','Name of your Shibboleth federation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_email','en','Attribute for e-mail address',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_department','en','Attribute for department',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_email','en','Attribute for e-mail address',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_data_conv','en','Absolute path to data manipulation API',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_data_conv_warning','en','The data manipulation API file you specified cannot be read',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_country','en','Attribute for country',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','shib_active','en','Enable Shibboleth support',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','shib_city','en','Attribute for city',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','setUserLanguage','en','Set User Language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','settings_saved','en','Saved settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','shib_active','en','Enable Shibboleth support',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','settings','en','Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','setSystemLanguage','en','Set System Language',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','settings_saved','en','Saved settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','set','en','Set',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','setSystemLanguage','en','Set System Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','set_online','en','Set Online',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','session_reminder','en','Session-Reminder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','set_offline','en','Set Offline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','session_reminder','en','Session-Reminder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_reminder_session_duration','en','(Session Duration: %s).',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_reminder_lead_time','en','Leadtime',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_reminder_lead_time_info','en','Please specify the lead time for the session reminder in minutes. The reminder displays a warning when only this time span is left before the session expires. Recommended value is 5 (minutes)
The current length of a user session is %s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','session_reminder_info','en','If enabled, you receive a reminder before the online-session of your browser expires.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sess','en','Session',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_reminder_alert','en','Your session expires in %1$s at %2$s! Choose OK to continue your session. If you click Cancel you will not be reminded during the current browser session anymore. Installation: %3$s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sent','en','Sent',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sequence','en','Sequence',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sequences','en','Sequences',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','server_data','en','Server Info',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','server_software','en','Server Software',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','server','en','Server',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','session_reminder_info','en','If enabled, you receive a reminder before the online-session of your browser expires.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sess_copy','en','User can copy session',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sender','en','Sender',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','send','en','Send',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','server','en','Server',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','server_software','en','Server Software',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','server_data','en','Server Info',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sequences','en','Sequences',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','send_mail','en','Send Message',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','send','en','Send',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sender','en','Sender',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sent','en','Sent',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sequence','en','Sequence',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','selected','en','Selected',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','selected_languages_updated','en','The selected languages have been updated (if installed):',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','select','en','Select',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','selected_items_back','en','Back to Personal Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','selected_items','en','Personal Items',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','selected_items_back','en','Back to Personal Items',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','select','en','Select',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','select_question_pool_info','en','As long as the import file contains questions, these questions will be imported to the selected questionpool as well.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','select_questionpool','en','Insert questions into',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','select_one','en','Please select one item.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','select_object_to_link','en','Please select the object which you want to link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','select_max_one_item','en','Please select one item only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','select_object_to_link','en','Please select the object which you want to link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','select_one','en','Please select one item.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','select_file','en','Select File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','second','en','Second',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','seconds','en','Seconds',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','select_all','en','Select All',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','select_at_least_one_object','en','Please choose at least one object.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','seas_write','en','Edit settings in Search administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','select_all','en','Select All',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','seconds','en','Seconds',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','second','en','Second',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','seas_visible','en','Search administration is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','seas_write','en','Edit settings in Search administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','seas_settings','en','Search settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','seas_search','en','User can use the global search in ILIAS',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','seas_read','en','User has read access to Search administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','seas_max_hits','en','Max hits',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','seas_max_hits_info','en','Please enter a number for the maximum number of search results.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','search','en','Search',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','seas_edit_permission','en','User can change permission settings or Search administration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','search','en','Search',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','search_user','en','Search User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','search_results','en','Search Results',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','search_result','en','Search Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','search_new','en','New Search',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','search_result','en','Search Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','search_inactive','en','Include inactive users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','search_in','en','Search in',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','search_for','en','Search For',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','search_engine','en','Readable .html URLs',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','search_active','en','Include active users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','search_engine','en','Readable .html URLs',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','search_for','en','Search For',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','search_in','en','Search in',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_scrom2004','en','Create Export File (SCORM 2004 3rd Edition)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_new','en','Create SCORM Learning Module (Authoring Mode)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_scrom2004_4th','en','Create Export File (SCORM 2004 4th Edition)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_html','en','Create Export File (HTML)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_pdf','en','Create Export File (PDF)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_scrom12','en','Create Export File (SCORM 1.2)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','saved_successfully','en','Saved Successfully',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','save','en','Save',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_pdf','en','Create Export File (PDF)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','scorm_create_export_file_html','en','Create Export File (HTML)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','save_refresh','en','Save and Refresh',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','save_return','en','Save and Return',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','save_settings','en','Save Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','save_user_related_data','en','Save user related access data',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','save_return','en','Save and Return',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','save_refresh','en','Save and Refresh',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','salutation_n','en','No salutation desired',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','salutation','en','Salutation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','save_and_back','en','Save And Back',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','save_message','en','Save as Draft',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','save','en','Save',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','saved_successfully','en','Saved Successfully',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','save_params_for_cron','en','Save Parameter for Cron Job',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','save_message','en','Save as Draft',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','save_and_back','en','Save And Back',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','salutation','en','Salutation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','salutation_n','en','No salutation desired',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','salutation_m','en','Mr.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sahs','en','Learning Module SCORM',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','salutation_f','en','Ms./Mrs.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sahs','en','Learning Module SCORM',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sahs_write','en','User can edit content and settings of SCORM learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sahs_visible','en','SCORM learning module is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sahs_read','en','User can read SCORM learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sahs_insert_sco_from_clip','en','Paste SCOs from Clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sahs_insert_page_from_clip','en','Paste Pages from Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','sahs_insert_chap_from_clip','en','Paste Chapters from Clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','sahs_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','sahs_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sahs_insert_page_from_clip','en','Paste Pages from Clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sahs_delete','en','User can move or delete SCORM learning module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','row','en','Row',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rows','en','Rows',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','sahs_added','en','SCORM Learning Module added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','sahs_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','sahs_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','sahs_copy','en','User can copy SCORM learning module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','sahs_added','en','SCORM Learning Module added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rows','en','Rows',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','root_read','en','User has read access to Repository - Home',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','root_visible','en','Repository - Home is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','root_write','en','User can edit settings of Repository - Home and manage content',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','row','en','Row',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rolt_new','en','New Role Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolt','en','Role Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_create_cat','en','Create Categories',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','root_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','root_read','en','User has read access to Repository - Home',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','root_visible','en','Repository - Home is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rolt_new','en','New Role Template',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolt_edit','en','Edit Role Template',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rolf_visible','en','Roles/role templates are visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rolf_write','en','Edit default permission settings of Roles/role templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolf','en','Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolt_added','en','Role template added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rolf_write','en','Edit default permission settings of Roles/role templates',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolf_read','en','Read access to Roles/role templates',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rolf_visible','en','Roles/role templates are visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rolf_edit_permission','en','Change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolf_edit_userassignment','en','Change user assignment of Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolf_delete','en','Delete Roles/Role templates',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rolf_edit_permission','en','Change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rolf_added','en','Role folder added',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','rolf_create_role','en','Create New Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rolf_create_rolt','en','Create New Role Template',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rolf_create_role','en','Create New Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','roles','en','Roles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','rolf_added','en','Role folder added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','roles_of_import_global','en','Global roles of import file',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','roles_of_import_local','en','Local roles of import file',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role','en','Role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','roles_of_import_global','en','Global roles of import file',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_templates_only','en','Role templates only',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_sure_delete_desk_items','en','Are you sure you want to delete the following assignments?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_select_one_item','en','Please select one object.',NULL,NULL); @@ -22934,47 +22929,47 @@ INSERT INTO `lng_data` VALUES ('common','role_protect_permissions_desc','en','Th INSERT INTO `lng_data` VALUES ('common','role_no_roles_selected','en','Please select a role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_new','en','New Role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_new_search','en','New search',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','role_mailto','en','Mail to all assigned Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_edit','en','Edit Role',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','role_mailto','en','Mail to all assigned Users',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','local_role_assignment','en','Lokale Rollenzuweisung',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','global_role_assignment','en','Globale Rollenzuweisung',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_assignment','en','Role Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_assignment_updated','en','Role assignment has been updated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','role_add_user','en','Add User(s) to role',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','role_added','en','Role added',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rights','en','Rights',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','role_add_user','en','Add User(s) to role',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','resources','en','Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','right','en','Right',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','reset','en','Reset',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','resources','en','Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reset_filter','en','Reset Filter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','res_links_short','en','Links',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','reset','en','Reset',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','res_links','en','Repository Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','required_field','en','Required',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','require_referral_comment','en','Require referral comment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','res_links_short','en','Links',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','require_matriculation','en','Require matriculation number',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','require_referral_comment','en','Require referral comment',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','require_gender','en','Require salutation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','require_hobby','en','Require hobby',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','repository','en','Repository',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','require_email','en','Require e-mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','require_gender','en','Require salutation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','repository_admin','en','Repository Trash and Permissions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','repository','en','Repository',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','reply','en','Reply',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','repository_admin_desc','en','Set permissions for repository items, restore or remove objects from system trash',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','replace_file','en','Replace File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','reply','en','Reply',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','repeat_scan','en','Repeating virus scan...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','repeat_scan_succeded','en','Repeated scan succeeded.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','repeat_scan_failed','en','Repeated scan failed.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','repeat_scan_succeded','en','Repeated scan succeeded.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rename','en','Rename',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','rename_file','en','Rename File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','remove_translation','en','Remove translation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','remove','en','Remove',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','remove_translation','en','Remove translation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','related_to','en','Related to',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','registration','en','New Account Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','registered_users','en','registered Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','registered_user','en','registered User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','registered_since','en','Registered since',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','register','en','Register',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','reg_mail_subject','en','ILIAS eLearning - Your access data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','registered_since','en','Registered since',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','registered_user','en','registered User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_passwd_via_mail','en','Your password will be sent to your e-mail address given below.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','reg_mail_subject','en','ILIAS eLearning - Your access data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_mail_subject_confirmation','en','ILIAS eLearning - Your Confirmation Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_mail_body_text3','en','Further personal information:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_mail_body_text2','en','To access ILIAS use the following data:',NULL,NULL); @@ -22983,9 +22978,9 @@ INSERT INTO `lng_data` VALUES ('common','reg_mail_body_salutation','en','Hello', INSERT INTO `lng_data` VALUES ('common','reg_mail_body_forgot_password_info','en','To get your password, please use the function « Forgot password? » at the login screen to request a new password for this account.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_mail_body_3_confirmation','en','If this e-mail means nothing to you, then it is possible that somebody else has entered your e-mail address either deliberately or accidentally, so please ignore this e-mail.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_mail_body_2_confirmation','en','The link will only be good for %s, after that you will have to try again from the beginning.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','refuse','en','Refuse',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reg_account_confirmation_successful','en','Your user account has been activated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','refresh','en','Refresh',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','refuse','en','Refuse',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','refresh_languages','en','Refresh All Languages',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','referral_comment','en','How did you hear about ILIAS?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','reference_of','en','Reference of:',NULL,NULL); @@ -22993,52 +22988,52 @@ INSERT INTO `lng_data` VALUES ('common','reference_deleted','en','Destination no INSERT INTO `lng_data` VALUES ('common','recipient','en','Recipient',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','readcount_users','en','Number of non-anonymous read accesses',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','readcount_anonymous_users','en','Number of anonymous read accesses',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','quote','en','Quote',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','read','en','Read',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','quit','en','Quit',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','question','en','Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','question_message','en','Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','quit','en','Quit',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','quote','en','Quote',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','query_data','en','Query data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','question_message','en','Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','qpl_visible','en','Question pool is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','qpl_write','en','User can edit test questions and settings of question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','qpl','en','Question Pool Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','qpl_visible','en','Question pool is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','qpl_copy','en','User can copy question pool for tests',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','qpl_delete','en','User can move or delete question pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','qpl_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','qpl_new','en','New Question Pool Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','qpl_read','en','User can read test questions in pool and insert them in tests',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','qpl_add','en','Add Question Pool Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','public_notes','en','Public Notes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','public_profile','en','Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','public','en','public',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','purpose','en','Purpose',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','qpl_add','en','Add Question Pool Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','qpl_copy','en','User can copy question pool for tests',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pub_section','en','Anonymous Access',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pub_section_info','en','If enabled, parts of the system (e.g. repository, workspace, user profiles) can be made available to the internet without authentication. The permissions of the ‘Anonymous’ role will control the access to repository resources.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','ps_write','en','User can edit settings in Privacy/Security administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','ps_visible','en','Privacy/Security administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','ps_read','en','User has read access to Privacy/Security administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','ps_export_member_data','en','User can export member data in courses and groups',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','proxy_status','en','Proxy',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy','en','Proxy-Server',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','ps_edit_permission','en','User can change permission settings of Privacy/Security administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','proxy_status','en','Proxy',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','proxy_port','en','Port',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_status_info','en','To use a proxy in ILIAS (e.g. for web feeds or to check web links) please activate the checkbox above.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','proxy_port','en','Port',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_port_numeric','en','The entered port has to be a numeric value between 0 and 65535',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_port_info','en','Please enter a port between 0 and 65535, e.g.8080.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_socket_error','en','Socket Error: %s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','proxy_not_connectable','en','ILIAS could not build a connection to the defined proxy.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_host','en','Host',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','proxy_not_connectable','en','ILIAS could not build a connection to the defined proxy.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_host_info','en','Please enter a host.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','profile','en','Profile',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','properties','en','Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proxy_connectable','en','Connection established.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','properties','en','Properties',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','profile','en','Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','profile_of','en','Profile of',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','profile_incomplete','en','Your profile is incomplete. Please fill in all required data.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','profile_changed','en','ILIAS eLearning - Your profile has changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','proceed','en','Proceed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pro','en','Pro',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','private_notes','en','Private Notes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','print','en','Print',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','private_notes','en','Private Notes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','print_view','en','Print View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','previous','en','Previous',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','preview_learner_info','en','If enabled, Course and Group administrators have the possibility to view the content form the perspective of a learner.',NULL,NULL); @@ -23051,17 +23046,17 @@ INSERT INTO `lng_data` VALUES ('common','position','en','Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pos_top','en','Top',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pos_left','en','Left',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pos_right','en','Right',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','pos_bottom','en','Bottom',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','port','en','Port',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','please_wait','en','Please wait...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','please_select_a_delivered_file_to_download','en','You must select at least one delivered file to download it!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','port','en','Port',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','pos_bottom','en','Bottom',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','please_select','en','-- Please Select --',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','please_enter_target','en','Please enter a target',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','please_enter_title','en','Please enter a title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','please_select_a_delivered_file_to_download','en','You must select at least one delivered file to download it!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','please_select_a_delivered_file_to_delete','en','You must select at least one delivered file to delete it!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','please_enter_title','en','Please enter a title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','please_enter_target','en','Please enter a target',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','please_choose','en','-- Select --',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','phone','en','Phone',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','phrase','en','Phrase',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','phone','en','Phone',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','phone_office','en','Phone, Office',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','phone_mobile','en','Phone, Mobile',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','phone_home','en','Phone, Home',NULL,NULL); @@ -23070,13 +23065,13 @@ INSERT INTO `lng_data` VALUES ('common','pg_new','en','New page',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','persons','en','Persons',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','personal_picture','en','Avatar',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','personal_profile','en','Profile and Privacy',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','person_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','personal_data','en','Personal Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','permission','en','Permission',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','person_title','en','Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','permission_settings','en','Object Permission Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','perma_link','en','Permanent Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','permission_denied','en','Permission Denied',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','permission_settings','en','Object Permission Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','perm_settings','en','Permissions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','perma_link','en','Permanent Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pathes','en','Paths',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pd_items_news','en','Include News of Personal Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pdf_export','en','PDF Export',NULL,NULL); @@ -23085,53 +23080,53 @@ INSERT INTO `lng_data` VALUES ('common','path_to_zip','en','Path to Zip',NULL,NU INSERT INTO `lng_data` VALUES ('common','path','en','Path',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','path_to_htmldoc','en','Path to HTMLdoc',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','path_to_java','en','Path to Java',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','path_not_set','en','Path not set',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','path_to_convert','en','Path to Convert',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pastePage','en','Paste',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','path_not_set','en','Path not set',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','paste_clipboard_items','en','Paste',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','paste','en','Paste',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pasteChapter','en','Paste',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','password','en','Password',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','paste_clipboard_items','en','Paste',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_to_short','en','The password must have at least a size of %s characters.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','password_must_special_chars','en','The password must contain special characters.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','password','en','Password',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_to_long','en','The password must have at most a size of %s characters.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','password_must_special_chars','en','The password must contain special characters.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_must_chars_and_numbers','en','The password must contain characters and numbers.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_expired','en','Your password is expired and has to be changed as the last change was %s day(s) ago.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_empty','en','The password field must not be empty.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','password_change_on_first_login_demand','en','You have to change your password before you can start using ILIAS services.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','password_assistance_info','en','If password assistance is enabled, a link ‘Forgot Password?’ is shown on the login page of ILIAS. Users can use this link to define a new password for their user account without needing assistance from a system administrator.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','passwd','en','Password',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','passwd_not_match','en','Your entries for the new password don’t match! Please re-enter your new password.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','password_assistance_info','en','If password assistance is enabled, a link ‘Forgot Password?’ is shown on the login page of ILIAS. Users can use this link to define a new password for their user account without needing assistance from a system administrator.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','passwd_wrong','en','The password you entered is wrong!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','passwd_not_match','en','Your entries for the new password don’t match! Please re-enter your new password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','passwd_invalid','en','The new password is invalid! Only the following characters are allowed (minimum 6 characters): A-Z a-z 0-9 _.-+?#*@!$%~',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','passwd_generation','en','Password Generation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','passed','en','Passed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','passwd_generation','en','Password Generation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','parse','en','Parse',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','page','en','Page',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','pages','en','Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','parameter','en','Parameter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','page_layouts','en','Page Layouts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','page_layout','en','Page Layout',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','pages','en','Pages',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','page','en','Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','owner','en','Owner',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','overview','en','Overview',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','overwrite','en','Overwrite',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','page_layout','en','Page Layout',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','page_layouts','en','Page Layouts',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','owner_updated','en','Owner updated.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','overwrite','en','Overwrite',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','overview','en','Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','other','en','Other',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','organization','en','Provider',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','order_by','en','Order by',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','order_by_date','en','By Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','options','en','Options',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','optional_filters','en','Optional Filters',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','option','en','Option',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','on_waiting_list','en','You are on the waiting list',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','online_time','en','Time online (DD:HH:MM:SS)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','online','en','Online',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','operation','en','Operation',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','optimize','en','Optimize',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','option','en','Option',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','optional_filters','en','Optional Filters',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','online_time','en','Time online (DD:HH:MM:SS)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','on_waiting_list','en','You are on the waiting list',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','omit','en','Omit',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','omit_all','en','Omit all',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','old','en','Old',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ok','en','OK',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','old','en','Old',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','offline','en','Offline',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','of','en','Of',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_wiki','en','Wikis',NULL,NULL); @@ -23139,59 +23134,59 @@ INSERT INTO `lng_data` VALUES ('common','objs_webr','en','Weblinks',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_tst','en','Tests',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_svy','en','Surveys',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_st','en','Chapters',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_spl','en','Question Pools Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_sess','en','Sessions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_sahs','en','SCORM Learning Modules',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_role','en','Roles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_spl','en','Question Pools Survey',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_qpl','en','Question Pools Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_qst','en','Questions',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_rcrs','en','ECS Courses',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_mcst','en','Mediacasts',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_role','en','Roles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_sahs','en','SCORM Learning Modules',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_mep','en','Media Pools',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_prg','en','Study Programmes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_qpl','en','Question Pools Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_lres','en','Learning Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_mail','en','Mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_htlm','en','HTML Learning Modules',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_mcst','en','Mediacasts',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_lres','en','Learning Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_lm','en','ILIAS Learning Modules',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_grp','en','Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_glo','en','Glossaries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_file','en','Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_grp','en','Groups',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_htlm','en','HTML Learning Modules',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_fold','en','Folders',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_frm','en','Forums',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_exc','en','Exercises',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_feed','en','Web Feeds',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_file','en','Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_exc','en','Exercises',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objs_catr','en','Category Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_crs','en','Courses',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_crsr','en','Course Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objs_catr','en','Category Link',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','objects','en','Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objf','en','Object definitions',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','objs_cat','en','Categories',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','object','en','Object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','object_id','en','Object-Id',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','objects','en','Objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','object_imported','en','Object imported',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','object_id','en','Object-Id',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','object_duplicated','en','Object copied',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','object_copy_in_progress','en','Started Copying.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj','en','Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','object_added','en','Object added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','object_copy_in_progress','en','Started Copying.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_wiki','en','Wiki',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj','en','Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_webr','en','Weblink',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_webr_duplicate','en','Copy Weblink list',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_usrf_desc','en','Manage user accounts here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_usrf','en','User Management',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_tst','en','Test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_webr_duplicate','en','Copy Weblink list',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_type','en','Object Type',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_user','en','User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_usr','en','User',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_usrf_desc','en','Manage user accounts here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tst_duplicate','en','Copy Test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_trac_desc','en','Statistics and Learning Progress Settings and Overview',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_tst','en','Test',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_trac','en','Statistics and Learning Progress',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_trac_desc','en','Statistics and Learning Progress Settings and Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_taxf','en','Taxonomies',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_tags','en','Tagging',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tax','en','Taxonomy',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_svyf','en','Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_tags_desc','en','Settings for tagging feature.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_tags','en','Tagging',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_svy','en','Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_svyf_desc','en','Platform settings for the Survey Tool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_svy','en','Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_svy_duplicate','en','Copy Survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_stys','en','Layout and Styles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_st','en','Chapter',NULL,NULL); @@ -23239,42 +23234,42 @@ INSERT INTO `lng_data` VALUES ('common','obj_mail_desc','en','Configure global m INSERT INTO `lng_data` VALUES ('common','obj_lrss','en','Learning Modules',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_lrss_desc','en','Configure all types of learning modules.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_lngf','en','Languages',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_lng','en','Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_lngf_desc','en','Manage your system languages here.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_lng','en','Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_lm','en','Learning Module ILIAS',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_ldap_desc','en','Configure global LDAP Settings here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_grp','en','Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_htlm','en','Learning Module HTML',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_grp_duplicate','en','Copy Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_glo','en','Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_frm_duplicate','en','Copy Forum',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_grp_duplicate','en','Copy Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_frm','en','Forum',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_fold','en','Folder',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_file','en','File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_frm_duplicate','en','Copy Forum',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_file_duplicate','en','Duplicate File',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_file_inline','en','Learning Module File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_facs','en','Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_file','en','File',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_feed','en','Web Feed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_extt','en','Third Party Software',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_facs_desc','en','Settings for files and file handling',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_facs','en','Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_extt_desc','en','Configure external software or services that are supported by ILIAS',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_extt','en','Third Party Software',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_exc','en','Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_dbk','en','Digilib Book',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_crs','en','Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_crsr','en','Course Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_crs','en','Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_crs_duplicate','en','Copy Course',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cmps','en','Plugins',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cmps_desc','en','General settings for Plugins',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_chap','en','Chapter',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cert','en','Certificates',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_wfe','en','Workflow Engine',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_chap','en','Chapter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_catr','en','Category Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cert_desc','en','Settings for certificates',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_cat_duplicate','en','Copy Category',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cat','en','Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_catr','en','Category Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','obj_auth','en','Authentication and Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cals_desc','en','General Calendar settings.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_cals','en','Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_cat_duplicate','en','Copy Category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','obj_auth','en','Authentication and Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_auth_desc','en','Configure your authentication mode (local, LDAP, ...) and new account registration settings here.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_assf','en','Test and Assessment',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_assf_desc','en','Platform settings for the Test and Assessment tool',NULL,NULL); @@ -23291,18 +23286,18 @@ INSERT INTO `lng_data` VALUES ('rbac','nwss_visible','en','News and Web Feeds ad INSERT INTO `lng_data` VALUES ('rbac','nwss_edit_permission','en','User can change permission settings in News and Web Feeds administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','edit_metadata','en','Edit Metadata',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','num_users','en','Number of Users',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','notifications','en','Notifications',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','notes','en','Notes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','notifications','en','Notifications',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','notes_and_comments','en','Notes and Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','note','en','Note',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','not_installed','en','Not Installed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','not_logged_in','en','You are not logged in',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','not_implemented_yet','en','Not implemented yet',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','normal','en','Normal',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','not_installed','en','Not Installed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','not_available','en','Not Available',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','not_implemented_yet','en','Not implemented yet',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','none','en','None',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','noc','en','Notification Center',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','normal','en','Normal',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','non_internal_local_roles_only','en','Local roles (only user defined)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','noc','en','Notification Center',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','no_start_file','en','No Start File.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','no_title','en','No Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','no_users_selected','en','Please select one user.',NULL,NULL); @@ -23343,8 +23338,8 @@ INSERT INTO `lng_data` VALUES ('common','msg_undeleted','en','Object(s) restored INSERT INTO `lng_data` VALUES ('common','msg_unit_is_required','en','This input requires a unit. Please enter a correct value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_trash_empty','en','There are no deleted objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_sysrole_not_editable','en','The permission settings of the system role may not be changed. The system role grants all assigned users unlimited access to all objects and functions.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_roleassignment_changed','en','Role assignment changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_sysrole_not_deletable','en','The system role cannot be deleted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_roleassignment_changed','en','Role assignment changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_role_reserved_prefix','en','The prefix ‘il_’ is reserved for automatically generated roles. Please choose another name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_removed','en','Object(s) removed from system.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_perm_adopted_from2','en','(Settings have been saved!)',NULL,NULL); @@ -23354,15 +23349,15 @@ INSERT INTO `lng_data` VALUES ('common','msg_paste_object_not_in_itself','en','I INSERT INTO `lng_data` VALUES ('common','msg_obj_no_link','en','It is not possible to link container objects like categories, courses, groups or folder due to technical reasons. Instead you may link several single objects within such a container to other areas or create a category link, course link or group link.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_obj_modified','en','Modifications saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_obj_may_not_contain_objects_of_type','en','The object %s may not contain objects of type: %s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_obj_exists','en','This object already exists in this folder',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_obj_created','en','Object created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_obj_exists_in_folder','en','The object %s already exists in the folder %s.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_no_title','en','Please enter a title.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_obj_exists','en','This object already exists in this folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_not_available_for_anon','en','The page you have chosen is only accessible for registered users',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_not_in_itself','en','It’s not possible to paste the object in itself',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_no_perm_write','en','You have no permission to write',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_obj_created','en','Object created.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_no_title','en','Please enter a title.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_no_search_result','en','No entries found',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_no_search_string','en','Please enter your query',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_no_perm_write','en','You have no permission to write',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_no_perm_read','en','You have no permission to access this item.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_no_perm_read_lm','en','You have no permission to read this learning module.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_no_perm_read_item','en','You have no permission to access item \'%s’.',NULL,NULL); @@ -23384,8 +23379,8 @@ INSERT INTO `lng_data` VALUES ('common','msg_no_delete_yourself','en','You canno INSERT INTO `lng_data` VALUES ('common','msg_no_default_language','en','No default language specified! You must define one translation as default translation.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_multi_language_selected','en','You selected the same language for different translations!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_min_one_role','en','Each user must have at least one global role!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_linked','en','Selected object(s) linked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_may_not_contain','en','This object may not contain objects of type:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_linked','en','Selected object(s) linked.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_link_clipboard_s','en','Now, please select the desired location, where the selected object should be linked to and click the button Paste.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_link_clipboard_p','en','Now, please select the desired location, where the selected objects should be linked to and click the button Paste.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_last_role_for_registration','en','At least one role must be available in the registration form for new users. This role is currently the only one available.',NULL,NULL); @@ -23393,8 +23388,8 @@ INSERT INTO `lng_data` VALUES ('common','msg_is_last_role','en','You removed the INSERT INTO `lng_data` VALUES ('common','msg_input_is_required','en','This input is required. Please enter a value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_input_does_not_match_regexp','en','Please provide a valid value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_form_save_error','en','The form data could not be saved. Please check the input fields for any error messages.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','msg_failed','en','Sorry, action failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_deleted_roles_rolts','en','Roles and Role Templates deleted',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','msg_failed','en','Sorry, action failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_deleted_role','en','Role deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_deleted_export_files','en','Export file(s) deleted',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_cut_copied','en','Selected object(s) moved.',NULL,NULL); @@ -23405,40 +23400,40 @@ INSERT INTO `lng_data` VALUES ('common','msg_copy_clipboard_source','en','Now, p INSERT INTO `lng_data` VALUES ('common','msg_cloned','en','Selected object(s) copied',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_clear_clipboard','en','Clipboard cleared',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_cancel','en','Action cancelled',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','moveChapter','en','Move',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','movePage','en','Move',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','move','en','Move',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','moveChapter','en','Move',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','move_selected_items','en','Move',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','months','en','Months',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mount_webfolder','en','Open as webfolder',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','months','en','Months',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','monthly','en','monthly',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','month_12_short','en','Dec',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month','en','Month',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_12_long','en','December',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','month_12_short','en','Dec',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_11_short','en','Nov',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_11_long','en','November',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_10_short','en','Oct',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_10_long','en','October',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_09_short','en','Sep',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_09_long','en','September',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','month_08_short','en','Aug',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_08_long','en','August',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','month_08_short','en','Aug',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_07_long','en','July',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_07_short','en','Jul',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_06_short','en','Jun',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','month_05_short','en','May',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_06_long','en','June',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_05_long','en','May',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','month_04_long','en','April',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','month_05_short','en','May',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_04_short','en','Apr',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','month_02_short','en','Feb',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_03_long','en','March',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_03_short','en','Mar',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','month_04_long','en','April',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','month_02_short','en','Feb',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_02_long','en','February',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','month_01_short','en','Jan',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','month_01_long','en','January',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','module','en','module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','month_01_short','en','Jan',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','modules','en','Modules',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','module','en','module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','moderators','en','Moderators',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mobs_write','en','User can edit settings in Media Objects/Pools administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mobs_visible','en','Media Objects/Pools administration is visible',NULL,NULL); @@ -23447,10 +23442,10 @@ INSERT INTO `lng_data` VALUES ('rbac','mobs_edit_permission','en','User can chan INSERT INTO `lng_data` VALUES ('common','missing','en','Missing',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mob','en','Media Object',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','missing_precondition','en','Missing Precondition',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','minutes','en','Minutes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','missing_perm','en','Missing Permission',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','minute','en','Minute',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','migrate','en','Migrate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','minute','en','Minute',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','minutes','en','Minutes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mgs_objects_linked_to_the_following_folders_s','en','The object was linked to the following folder(s).',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mgs_objects_linked_to_the_following_folders_p','en','The objects were linked to the following folder(s).',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','meta_data','en','Metadata',NULL,NULL); @@ -23458,8 +23453,8 @@ INSERT INTO `lng_data` VALUES ('common','message','en','Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','message_no_delivered_files','en','You have not submitted any files.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','message_content','en','Message Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mep','en','Media Pool',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','mep_write','en','User can edit content and settings of media pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mep_visible','en','Media pool is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','mep_write','en','User can edit content and settings of media pool',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mep_read','en','User has read access to media pool and can reuse media objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mep_not_insert_already_exist','en','The following items have not been inserted because they are already in the media pool:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mep_new','en','New Media Pool',NULL,NULL); @@ -23472,13 +23467,13 @@ INSERT INTO `lng_data` VALUES ('common','member','en','Member',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','members','en','Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_waiting_list','en','Users on Waiting List:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','member_status','en','Member Status',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mem_view_close','en','Close Member View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_view_long','en','Member View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_waiting_list_position','en','Your Position on the Waiting List:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mem_view_close','en','Close Member View',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_view_activate','en','Show Member View',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mem_start','en','Registration Start:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_unlimited','en','Unlimited',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_reg_type','en','Registration Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mem_start','en','Registration Start:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_reg_period','en','Registration Period',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_reg_not_started','en','The registration has not started',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mem_reg_expired','en','The registration time is expired.',NULL,NULL); @@ -23491,8 +23486,8 @@ INSERT INTO `lng_data` VALUES ('common','mem_add_to_wl','en','Add to Waiting Lis INSERT INTO `lng_data` VALUES ('common','mcst','en','Mediacast',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcst_write','en','User can edit content and settings of mediacast',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcst_visible','en','Mediacast is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','mcst_read','en','User can read mediacast',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mcst_new','en','New Mediacast',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','mcst_read','en','User can read mediacast',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcst_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcst_delete','en','User can move or delete mediacast',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mcst_copy','en','User can copy mediacast',NULL,NULL); @@ -23504,43 +23499,43 @@ INSERT INTO `lng_data` VALUES ('common','manage_members','en','Manage Members',N INSERT INTO `lng_data` VALUES ('common','only_inactive','en','Only Inactive',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','only_active','en','Only Active',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','all','en','All',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','add_remove_edit_entries_of_main_menu','en','Add, remove or edit entries of the main menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','main_menu','en','Main Menu',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mails_pl','en','Mail(s)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','add_remove_edit_entries_of_main_menu','en','Add, remove or edit entries of the main menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mails','en','Mails',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_z_local','en','User Folders',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mails_pl','en','Mail(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail','en','Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mail_write','en','User can edit settings in Mail administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_settings','en','Mail Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','mail_smtp_mail','en','User can send e-mails per SMTP to external addresses',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_z_local','en','User Folders',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mail_visible','en','Mail administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_sent','en','Mail sent!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_settings','en','Mail Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','mail_smtp_mail','en','User can send e-mails per SMTP to external addresses',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_send_error','en','Error sending mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_select_one','en','You must select one mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_search_no','en','No entries found.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','mail_read','en','User has read access to Mail administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_not_sent','en','Mail not sent!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_no_recipient_found','en','Enter a different mail address. ILIAS couldn\'t find a recipient with this mail address.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_multiple_recipients_found','en','Enter a more specific mail address. ILIAS found multiple possible recipients for this address: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_members','en','Mail to Members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_import_file','en','Export file',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_mails_of','en','Mail',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_multiple_recipients_found','en','Enter a more specific mail address. ILIAS found multiple possible recipients for this address: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_maxsize_attach','en','Max. attachment size',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_mails_of','en','Mail',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_folders','en','Mail Folders',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_e_sent','en','Sent',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_import_file','en','Export file',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_edit_permission','en','User can change permission settings in Mail administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_delete_error','en','Error while deleting',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_d_drafts','en','Drafts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_attachment','en','Mail attachment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','mail_b_inbox','en','Inbox',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_delete_error','en','Error while deleting',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_e_sent','en','Sent',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_c_trash','en','Trash',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_b_inbox','en','Inbox',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','mail_addressbook','en','Contacts',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','lrss_visible','en','Administration of Learning Resources is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','mail_attachment','en','Mail attachment',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lrss_write','en','User can edit settings of Learning Resources in administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lrss_read','en','Read access to administration of Learning Resources',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','lrss_visible','en','Administration of Learning Resources is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lrss_edit_permission','en','User can change permission settings of Learning Resources administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','logs','en','Log Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lres','en','Learning Resources',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','logs','en','Log Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','logout','en','Logout',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','logout_text','en','You logged off from ILIAS. Your session has been closed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','loginname_settings','en','Login Name Settings',NULL,NULL); @@ -23557,41 +23552,41 @@ INSERT INTO `lng_data` VALUES ('common','login_exists','en','There is already a INSERT INTO `lng_data` VALUES ('common','login_data','en','Login data',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','login_as','en','Logged in as',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','logic_or','en','or',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','log_in','en','Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','log_out','en','Logout',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','locator','en','Location:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','local_languages_already_installed','en','Selected custom language file(s) are already installed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','local','en','Local',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','log_in','en','Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','location','en','Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','local_language_files','en','custom language files',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','local_language_file','en','custom language file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','local_languages_already_installed','en','Selected custom language file(s) are already installed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','local','en','Local',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lo','en','Learning Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','local_language_file','en','custom language file',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lngf','en','Languages',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lngf_write','en','User can edit settings in Language administration and use extended language maintenance',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lngf_visible','en','Language administration is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lngf_read','en','User has read access to Language administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lngf_edit_permission','en','User can change permission settings of Language administration',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lm','en','Learning Module ILIAS',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lng','en','Language',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lm','en','Learning Module ILIAS',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lm_write','en','User can edit content and settings of ILIAS learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lm_visible','en','ILIAS Learning Module is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lm_type_scorm2004','en','SCORM 2004 3rd/4th Edition',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lm_type_scorm','en','SCORM 1.2',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','lm_read','en','User can read ILIAS learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lm_new','en','New ILIAS Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','lm_read','en','User can read ILIAS learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lm_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lm_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lm_delete','en','User can move or delete ILIAS learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','lm_copy','en','User can copy ILIAS learning module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lm_add','en','Add ILIAS Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lm_added','en','ILIAS Learning Module added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lm_add','en','Add ILIAS Learning Module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','list_of_questions','en','List of Questions',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','list','en','List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','links_user_id','en','ILIAS user id',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','links_user_name','en','ILIAS username',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_value','en','Parameter Value',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','list_of_questions','en','List of Questions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','links_session_id','en','ILIAS session id',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_select_one','en','- Select one -',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','links_session_id','en','ILIAS session id',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','links_user_id','en','ILIAS user id',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','links_user_name','en','ILIAS username',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_parameter_deleted','en','Parameter deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_no_value_given','en','Please choose a parameter value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_no_name_given','en','Please choose a parameter name.',NULL,NULL); @@ -23601,53 +23596,53 @@ INSERT INTO `lng_data` VALUES ('common','links_dynamic','en','Dynamic Weblink Pa INSERT INTO `lng_data` VALUES ('common','links_dynamic_info','en','If enabled, it is possible to append dynamic parameters to Weblinks.
E.g. the ILIAS user ID or the username.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_dyn_parameter','en','Dynamic Parameters',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','links_add_param','en','Add Parameter:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','link_selected_items','en','Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','link','en','Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','link_selected_items','en','Link',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','link_check_subject','en','[ILIAS] Weblink check',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','link_check','en','Weblink Check',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','link_checker_refreshed','en','Refreshed view',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','link_check_subject','en','[ILIAS] Weblink check',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','link_check_message_disabled','en','Messages disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','link_check_message_enabled','en','Messages enabled',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','link_check_message_b','en','If enabled, you will be informed about invalid links by mail.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','link_check_message_disabled','en','Messages disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','level','en','Level',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','link_all','en','Link all',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','leave_waiting_list','en','Leave Waiting List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','link_check_message_b','en','If enabled, you will be informed about invalid links by mail.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','legend','en','Legend',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','leave_waiting_list','en','Leave Waiting List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ldap','en','LDAP',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','learning module','en','Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','learning_progress','en','Learning Progress',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ldap','en','LDAP',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ldap_tls','en','Use LDAP TLS',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ldap_version','en','LDAP protokoll version',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ldap_read','en','Read access to LDAP settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ldap_server','en','LDAP Server URL',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ldap_basedn','en','LDAP BaseDN',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ldap_configure','en','Configure LDAP Authentication',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ldap_port','en','LDAP Port',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lastname','en','Last Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','launch','en','Launch',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','last_change','en','Last Change',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','last_edited_on','en','Last edited on',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','last_login','en','Last Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','last_refresh','en','Last Refresh',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','last_reminder','en','Last reminder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','last_update','en','Updated',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','last_visited','en','Last Visited',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lastname','en','Last Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','launch','en','Launch',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ldap_basedn','en','LDAP BaseDN',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ldap_configure','en','Configure LDAP Authentication',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','last_login','en','Last Login',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','languages','en','Languages',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','last_access','en','Last Access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','last_change','en','Last Change',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','last_edited_on','en','Last edited on',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','languages_already_uninstalled','en','Selected language(s) are already uninstalled',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','languages_updated','en','All installed languages have been updated',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','language_not_installed','en','is not installed. Please install that language first',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','languages','en','Languages',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','language','en','Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','languages_already_installed','en','Selected language(s) are already installed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lang_timeformat_no_sec','en','H:i',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lang_timeformat','en','H:i:s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','langfile_found','en','Language file found',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lang_sep_thousand','en',',',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lang_size_bytes','en','bytes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lang_size_gb','en','GB',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','language_not_installed','en','is not installed. Please install that language first',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lang_size_kb','en','KB',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lang_size_mb','en','MB',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lang_timeformat_no_sec','en','H:i',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lang_timeformat','en','H:i:s',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lang_sep_decimal','en','.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lang_sep_thousand','en',',',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lang_size_bytes','en','bytes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lang_size_gb','en','GB',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lang_uninstall_changes_confirm','en','Do you really want to clear all local changes of the selected languages and reset them to the default of the current ILIAS version?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lang_uninstall_changes','en','Uninstall Local Changes',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lang_uninstall_confirm','en','Do you really want to uninstall the selected languages?',NULL,NULL); @@ -23664,60 +23659,60 @@ INSERT INTO `lng_data` VALUES ('common','java_server','en','Java-Server',NULL,NU INSERT INTO `lng_data` VALUES ('common','java_server_readme','en','Setup information',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','java_server_port','en','Port',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','java_server_info','en','If activated, it is possible to search in PDF, HTML files and HTML-Learning modules',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','java_server_host','en','Host',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','item','en','Item',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','java_server_host','en','Host',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','is_already_your','en','is already your',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ip_address','en','IP Address',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','invisible_block','en','Invisible Block',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','invisible_block_mess','en','You do not have the permission to view this block.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','invalid_visible_required_options_selected','en','All fields set to required has to be set to visible in registration, too.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','internal_local_roles_only','en','Local roles (only automatically generated)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','institution','en','Institution',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','instant_messengers','en','Instant Messengers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','institution','en','Institution',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','installed','en','Installed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','install','en','Install',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','installed_local','en','Installed With Custom file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','install','en','Install',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','inst_name','en','Installation Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','install_local','en','Install With Custom File',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','inst_info','en','Installation Info',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','inst_id','en','Installation ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','insert','en','Insert',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','inst_id','en','Installation ID',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','insert_object_here','en','Insert at Current Position',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','inline_file_extensions','en','Web-enabled files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','inline_file_extensions_info','en','Files with these extensions are displayed in the browser window.
For example: gif jpg mp3 pdf png
All other files are offered for downloading.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','inform_user_mail','en','Send mail to inform user about changes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_view_of_user','en','User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info','en','Information',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_short','en','Info',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_status_info','en','Permissions of User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_view_of_user','en','User',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_remark_interrupted','en','Role is interrupted at this position. The role\'s default permission settings in effect are located in that position.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_short','en','Info',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_permission_source','en','Effective From*',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_permission_origin','en','Original Position',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_message','en','Information Message',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_remark_interrupted','en','Role is interrupted at this position. The role\'s default permission settings in effect are located in that position.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_not_assigned','en','not assigned',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_owner_of_object','en','Owner of object',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_is_member','en','User is member',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_permission_origin','en','Original Position',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_message','en','Information Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_is_not_member','en','User is not a member',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_from_role','en','Granted by Role / Ownership',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_err_user_not_exist','en','User with that login name or user_id does not exists',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_is_member','en','User is member',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_deleted','en','Object(s) Deleted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_remove_sure','en','Are you sure that you want to remove the following item(s)?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_err_user_not_exist','en','User with that login name or user_id does not exists',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_delete_warning_no_trash','en','(WARNING: Selected Objects will be removed irreversibly from System and may not be recovered anymore!)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_delete_sure','en','Are you sure that you want to delete the following item(s)?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_available_roles','en','Available Roles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_remove_sure','en','Are you sure that you want to remove the following item(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_change_user_view','en','Change User',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_deactivate_sure','en','Are you sure that you want to deactivate the following user(s)?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_assign_sure','en','Are you sure you want to assign the following user(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_assigned','en','assigned',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','info_access_permissions','en','Access Permissions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_available_roles','en','Available Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_activate_sure','en','Are you sure that you want to approve the following user(s) as active user(s)?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_assign_sure','en','Are you sure you want to assign the following user(s)?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','info_access_and_status_info','en','Access- and status information',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','include_local','en','include custom language file when updating language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','inbox','en','Inbox',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','inactive','en','Inactive',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','info_access_permissions','en','Access Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','in','en','in',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','in_use_by','en','In use by',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','inactive','en','Inactive',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','inbox','en','Inbox',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','include_local','en','include custom language file when updating language',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','in_use','en','User Language',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','in_use_by','en','In use by',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','imported','en','imported',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','important','en','Important',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import','en','Import',NULL,NULL); @@ -23731,16 +23726,16 @@ INSERT INTO `lng_data` VALUES ('common','import_qpl','en','Import Question Pool INSERT INTO `lng_data` VALUES ('common','import_lm','en','Import ILIAS Learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import_finished','en','Number of imported messages.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import_file','en','Import File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','import_failure_log','en','Import failure log',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import_file_not_valid','en','The import file is not valid.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','import_failure_log','en','Import failure log',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import_categories','en','Import Categories',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import_cat_table','en','The following table is only meaningful if the checkbox is set',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','image','en','Image',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','import_cat_localrol','en','Create local role for every new category',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','ilias_version','en','ILIAS version',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','il_grp_status_open','en','Group open',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','il_grp_member','en','Group Member',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','ilias_version','en','ILIAS version',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','il_grp_status_closed','en','Group closed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','il_grp_member','en','Group Member',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','il_grp_admin','en','Group Administrator',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','il_frm_moderator','en','Forum moderator',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','il_crs_tutor','en','Course Tutor',NULL,NULL); @@ -23755,82 +23750,82 @@ INSERT INTO `lng_data` VALUES ('common','identifier','en','identifier',NULL,NULL INSERT INTO `lng_data` VALUES ('common','icon','en','Icon',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','i2passwd','en','ILIAS 2 password',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','icon_settings','en','Custom Icons',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','https_not_possible','en','This server is not supporting HTTPS connections.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','http_path','en','HTTP Path',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','http','en','HTTP',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','https_not_possible','en','This server is not supporting HTTPS connections.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','http_not_possible','en','This server is not supporting http requests.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','htlm','en','Learning Module HTML',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','htlm_read','en','User can read HTML learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','htlm_visible','en','HTML learning module is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','htlm_write','en','User can edit content and settings of HTML learning module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','htlm_read','en','User can read HTML learning module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','htlm_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','htlm_new','en','New HTML Learning Module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','htlm_delete','en','User can move or delete HTML learning module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','htlm_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','htlm_edit_permission','en','User can change permission settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','htlm_delete','en','User can move or delete HTML learning module',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','hours','en','Hours',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','htlm_add','en','Add HTML Learning Module',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','htlm_copy','en','User can copy HTML learning module',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','hours','en','Hours',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','host','en','Host',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hour','en','Hour',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','home','en','Public Area',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','hits_per_page','en','Hits/Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hobby','en','Interests/Hobbies',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','home','en','Public Area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','host','en','Host',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','history','en','History',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','hits_per_page','en','Hits/Page',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_webr_update','en','Modified Weblink with title: \"%1\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_webr_delete','en','Deleted Weblink with title: \"%1\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_webr_add','en','Added new Weblink with title: \"%1\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_lm_st_create','en','Chapter created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_lm_pg_create','en','Page created.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_lm_delete_st','en','Chapter \"%1\" [%2] has been deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','hint','en','Hint',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hist_lm_delete_pg','en','Page \"%1\" [%2] has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hide','en','Hide',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','hint','en','Hint',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','height','en','Height',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','help','en','Help',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','HH','en','HH:MM',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','dd_mm_yyyy','en','DD.MM.YYYY',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','hide_details','en','Hide Details',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','hide_filter','en','Hide Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','hide_own_online_status','en','Hide My Online Status',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','hide_filter','en','Hide Filter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','hide_details','en','Hide Details',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','dd_mm_yyyy','en','DD.MM.YYYY',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','HH','en','HH:MM',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','help','en','Help',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','height','en','Height',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','header_zip','en','Upload Multiple Files as Zip-Archive',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','header_title','en','Header Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','header_visible_registration','en','Visible in Registration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp','en','Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','header_searchable','en','Searchable',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','header_title','en','Header Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','header_visible_registration','en','Visible in Registration',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','grp_write','en','User can edit group settings and manage content',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_visible','en','Group is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_wizard_page','en','Copy Group (Step 2/2)',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','grp_write','en','User can edit group settings and manage content',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_select_one_file','en','Please select one file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_removed_from_waiting_list','en','You have been detached from the waiting list of group \"%s\".',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_registration','en','Join Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','grp_read','en','User has read access to group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_registration_completed','en','You have joined the group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_registration','en','Join Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_new','en','New Group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','grp_read','en','User has read access to group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_msg_membership_annulled','en','Cancelled membership.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_msg_member_assigned','en','User(s) assigned as group member(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_msg_applicants_assigned','en','Applicant(s) assigned as group member(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_members_gallery','en','Group Members Gallery',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_mem_send_mail','en','Send Participants a Message',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_mem_change_status','en','Change Participant Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_users','en','List users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_mem_change_status','en','Change Participant Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_list_members','en','List members',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_leave','en','User can unsubscribe from group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_join','en','User can join group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_header_edit_members','en','Edit members',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_edit','en','Edit Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_err_administrator_required','en','Member could not be removed, at least one administrator per group is required !',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_edit','en','Edit Group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_dismiss_myself','en','Are you sure you want to unsubscribe from this group?',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_dismiss_member','en','Are you sure you want to unsubscribe the following member(s) from the group?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_dismiss_myself','en','Are you sure you want to unsubscribe from this group?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_deleted_export_files','en','Deleted selected files.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_copy_threads_info','en','Please decide which materials should be copied, linked or even omitted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_delete','en','User can move or delete group',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','grp_copy','en','User can copy group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_copy_threads_info','en','Please decide which materials should be copied, linked or even omitted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_cancel_waiting_list','en','Do you really want to remove yourself from the waiting list of group \"%s\"?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_btn_unsubscribe','en','Unsubscribe from Group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','grp_added','en','Group added',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','grp_add','en','Add Group',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','grp_added','en','Group added',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','groupings','en','Membership Limitations',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','groups','en','Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','groupings_assigned_obj_grp','en','Assigned Groups',NULL,NULL); @@ -23845,35 +23840,35 @@ INSERT INTO `lng_data` VALUES ('common','group_registration_mode','en','Registra INSERT INTO `lng_data` VALUES ('common','group_password_registration_msg','en','If you know the group password, you can join this group. Please contact a group administrator, if you don\'t know the password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','group_new_registrations','en','Join Requests',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','group_name','en','Group Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','go','en','Go',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','group_members','en','Group Members',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glossary','en','Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','go','en','Go',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','glossaries','en','Glossaries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','global','en','Global',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','global_user','en','Global users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','global','en','Global',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','glossaries','en','Glossaries',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','global_settings','en','Global settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','global_fixed','en','Global Fixed',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','global_default','en','Global Default',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo','en','Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','glo_visible','en','Glossary is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','glo_write','en','User can edit content and settings of glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','glo_visible','en','Glossary is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','glo_new','en','New Glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','glo_read','en','User can read glossary content',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo_mode','en','Mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','glo_new','en','New Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','glo_mode_subtree','en','virtual (entire subtree)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo_mode_normal','en','normal',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','glo_mode_subtree','en','virtual (entire subtree)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo_mode_level','en','virtual (this level only)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo_mode_desc','en','A virtual glossary works like a normal glossary. Additionally it contains the terms from all glossaries that are located on the same level in the repository like the virtual glossary (level) respectively from all glossaries that are located downwards in the repository from the position of the virtual glossary (subtree).',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','glo_edit_permission','en','User can change permission settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','glo_delete','en','User can move or delete glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','glo_added','en','Glossary added',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','glo_copy','en','User can copy glossary',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','glo_delete','en','User can move or delete glossary',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','glo_add','en','Add Glossary',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','glo_added','en','Glossary added',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','general_settings','en','General Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','generate','en','Generate',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','gender','en','Salutation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','general_settings','en','General Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','gender_n','en','No salutation desired',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','gender_m','en','Mr.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','gender_n','en','No salutation desired',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','gender_f','en','Ms.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','gdf_new','en','New Definition',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','gdf_add','en','Add Definition',NULL,NULL); @@ -23900,17 +23895,17 @@ INSERT INTO `lng_data` VALUES ('rbac','frm_add_reply','en','Users can reply to a INSERT INTO `lng_data` VALUES ('common','forums','en','Forums',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_your_name','en','Your Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_use_alias','en','You may use a pseudonym for your posting. If you leave this field blank, your posting will be marked as written by ‘Anonymous’.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','forums_notification_settings','en','Forums Notification Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_threads','en','Threads',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','forums_last_post','en','Latest Article',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','forums_notification_settings','en','Forums Notification Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_new_articles','en','New Articles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','forums_last_post','en','Latest Article',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_forum_notification_enabled','en','You will be notified about new messages in this forum.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_enable_forum_notification','en','Enable Notification for this Forum',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_disable_forum_notification','en','Disable Notification for this Forum',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','forums_articles','en','Articles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forums_anonymous','en','anonym',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','forums_anonymized','en','Forum anonymized',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','forums_articles','en','Articles',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forum','en','Forum',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','forums_anonymized','en','Forum anonymized',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forum_post_replied','en','Your forum entry has been replied.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forum_notify_me','en','Notify me when a direct answer has been given to this posting. Notification about any posting in this thread or forum can be enabled in the upper right Actions menu.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','forum_direct_notification','en','Notification',NULL,NULL); @@ -23919,54 +23914,54 @@ INSERT INTO `lng_data` VALUES ('common','forgot_username','en','Forgot your user INSERT INTO `lng_data` VALUES ('common','forgot_password','en','Forgot your password?',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','force_accept_usr_agreement','en','You must accept the terms of service!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','folders','en','Folders',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','fold','en','Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','folder','en','Folder',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','fold_visible','en','Folder is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','fold','en','Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','fold_write','en','User can edit settings of folder and manage content',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','fold_new','en','New Folder',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','fold_visible','en','Folder is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','fold_read','en','User has read access to folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','fold_edit','en','Edit Folder',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','fold_new','en','New Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','fold_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','fold_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','fold_delete','en','User can move or delete folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','fold_add','en','Add Folder',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','fold_added','en','Folder added',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','fold_copy','en','User can copy folder',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','firstname','en','First Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','flatview','en','Hide Sidebar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filter_users_without_access','en','Only users without access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filter_users_without_disk_usage','en','Only users with no disk space used',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','firstname','en','First Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filter','en','Filter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filter_users_with_disk_usage','en','Only users with disk space used',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filter_users_without_disk_usage','en','Only users with no disk space used',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filter_users_with_exceeded_disk_quota','en','Only users with disk quota exceeded',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filter_users_with_access','en','Only users with access',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','fill_out_all_required_fields','en','Please fill out all required fields',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filename','en','File Name',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','files','en','Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filter_users_without_access','en','Only users without access',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filter_users_with_disk_usage','en','Only users with disk space used',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filesize','en','File Size',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filetype','en','File Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','fill_out_all_required_fields','en','Please fill out all required fields',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filter_users_with_access','en','Only users with access',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_windows_webdav_issue','en','Due to the character # this object is not visible in Windows webfolders',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filename_windows_special_characters','en','Due to one of the characters \\ / : * ? \" < > | this object is not visible in Windows webfolders',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filename_windows_empty_extension','en','Due to the character . at the end of the name this object is not visible in Windows webfolders',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filename','en','File Name',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','files','en','Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_visibility','en','Visibility',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filename_windows_empty_extension','en','Due to the character . at the end of the name this object is not visible in Windows webfolders',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filename_windows_special_characters','en','Due to one of the characters \\ / : * ? \" < > | this object is not visible in Windows webfolders',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_special_filename','en','Objects with names . and .. are not visible in webfolders',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_special_characters','en','Due to the character / this object is not visible in webfolders',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','filename_interoperability','en','Interoperability',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_hidden_unix_file','en','Hidden Unix file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','filename_interoperability','en','Interoperability',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_hidden_backup_file','en','Hidden backup file',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','filename_extension_missing','en','File name extension missing',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file','en','File',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','file_write','en','User can edit file settings and upload new version of file',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rbac','file_visible','en','File is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_version','en','Version Provided in File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','file_visible','en','File is visible',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_valid','en','File is valid!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_updated','en','File has been updated.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_suffix_repl','en','File Upload Suffix Replacement',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','file_suffix_repl_info','en','Enter file types with suffix (separated by comma) that shall be be renamed with a ‘.sec’ when uploaded into webspace to prevent execution of this file. This is done per default for these suffixes:',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','file_read','en','User can download file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','file_suffix_repl_info','en','Enter file types with suffix (separated by comma) that shall be be renamed with a ‘.sec’ when uploaded into webspace to prevent execution of this file. This is done per default for these suffixes:',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_notice','en','Maximum upload size:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','file_not_valid','en','File not valid!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_not_found','en','File Not Found',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','file_not_valid','en','File not valid!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_is_infected','en','The file is infected by a virus.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_info','en','File Information',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_edit','en','Edit File Information',NULL,NULL); @@ -23979,10 +23974,10 @@ INSERT INTO `lng_data` VALUES ('common','file_added','en','File uploaded',NULL,N INSERT INTO `lng_data` VALUES ('common','file_add','en','Upload File',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','file_add_and_metadata','en','Upload File and Edit Metadata',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','field_type','en','Field Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','field_name','en','Field Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','feedback','en','Feedback',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','feedback_recipient','en','Feedback Recipient',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','field_name','en','Field Name',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','feed','en','Web Feed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','feedback_recipient','en','Feedback Recipient',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','feed_write','en','User can edit web feed settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','feed_read','en','User can read content of web feed',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','feed_edit_permission','en','User can change permission settings',NULL,NULL); @@ -23995,34 +23990,34 @@ INSERT INTO `lng_data` VALUES ('rbac','extt_read','en','User has read access to INSERT INTO `lng_data` VALUES ('rbac','extt_edit_permission','en','User can change permission settings of Third Party Software administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ext_link','en','Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','ext_cat_settings','en','Edit Advanced Category Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','export','en','Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','export_html','en','Export as HTML File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','export','en','Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','export_format','en','Export format',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','expanded','en','Expanded',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','expand','en','Expand',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','expand_all','en','Expand All',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exp_html','en','Export HTML',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exercise_time_over','en','The time allocated for completing this exercise is over. Files cannot be submitted anymore!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','excs','en','Exercises',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','execute','en','Execute',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','excs','en','Exercises',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc','en','Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','exc_write','en','User can edit settings and assignments of exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','exc_visible','en','Exercise is visible',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_time_to_send','en','Remaining Working Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_upload_error','en','Error uploading file',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_time_to_send','en','Remaining Working Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_time_over_short','en','Time is up.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_submission','en','Submission',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_status','en','Status',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_sent','en','The exercise has been sent to the selected users',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_status_saved','en','Exercise updated',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_select_one_file','en','Please select exactly one file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_sent_at','en','Sent on
%s',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_save_changes','en','Save',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_sent','en','The exercise has been sent to the selected users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_select_one_file','en','Please select exactly one file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_schedule','en','Schedule',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_save_changes','en','Save',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_new','en','New Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_obj','en','Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','exc_read','en','User can participate at exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_members_comments_saved','en','The exercise comments for the selected user have been saved',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_new','en','New Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_members_assigned','en','Members assigned',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_last_submission','en','Last Submission',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_members_already_assigned','en','These users are already assigned to the assignment.',NULL,NULL); @@ -24035,21 +24030,22 @@ INSERT INTO `lng_data` VALUES ('common','exc_edit','en','New exercise created',N INSERT INTO `lng_data` VALUES ('rbac','exc_edit_permission','en','User can change permission settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_edit_exercise','en','Edit exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','exc_edit_learning_progress','en','User can edit learning progress settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_download_files','en','Download Files',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_deassign_members','en','Remove Participant(s)',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','exc_delete','en','User can move or delete exercise',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_download_files','en','Download Files',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_add','en','Add Exercise',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','exc_added','en','Exercise added',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','exc_copy','en','User can copy exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','exc_date_not_valid','en','The date is not valid',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_added','en','Exercise added',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','event_assign_files','en','File Assignment',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','exc_add','en','Add Exercise',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','event_ass_materials_prop','en','Session Materials',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','error_recipient','en','Error Recipient',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','event_assign_files','en','File Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','error','en','Error',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','error_recipient','en','Error Recipient',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','error_parser','en','Error starting the parser.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','err_wrong_password','en','Wrong Password',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','err_wrong_header','en','Reason: Wrong header.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','err_wrong_login','en','Wrong Login or Password',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','err_wrong_password','en','Wrong Password',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','err_valid_login_account_creation_disabled','en','Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','err_session_expired','en','Your session is expired!',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','err_role_not_assignable','en','You cannot assign users to this role at this location',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','err_no_param','en','No parameter!',NULL,NULL); @@ -25391,11 +25387,11 @@ INSERT INTO `lng_data` VALUES ('assessment','qpl_export_select_none','en','Pleas INSERT INTO `lng_data` VALUES ('assessment','qpl_export_excel','en','Microsoft Excel File',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_delete_select_none','en','Please check at least one question to remove it',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_delete_rbac_error','en','You have no rights to remove this question!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qpl_copy_insert_clipboard','en','The selected question(s) are copied to the clipboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_copy_select_none','en','Please check at least one question to copy it to the clipboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qpl_assessment_total_of_answers','en','Total of Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_assessment_total_of_right_answers','en','Total Percentage of Correct Answers (percentage of maximum points)',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_confirm_delete_questions','en','Are you sure you want to remove the following questions?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qpl_copy_insert_clipboard','en','The selected question(s) are copied to the clipboard',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qpl_assessment_total_of_answers','en','Total of Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_assessment_no_assessment_of_questions','en','There is no assessment of questions available for the selected question. The question has not yet been used in a test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_edit_form_taxonomy','en','Taxonomy \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_edit_form_taxonomy_section','en','Taxonomies',NULL,NULL); @@ -25412,24 +25408,24 @@ INSERT INTO `lng_data` VALUES ('assessment','points_wrong','en','Wrong Selection INSERT INTO `lng_data` VALUES ('assessment','points_wrong_info','en','Enter the negative points for each selected word that is not in the list of the marked errors.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','points_unchecked','en','Points when Unchecked',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','points_short','en','Pt.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','points_checked','en','Points when Checked',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','point','en','Point',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','points_checked','en','Points when Checked',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','please_select','en','-- please select --',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','picture','en','Picture',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','percentile','en','Percentile',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','percentage','en','Percentage',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','percentile','en','Percentile',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','passed_short','en','passed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','passes_finished','en','%s passes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','passed_official','en','passed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','passed_only','en','Passed Tests Only',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','passed_official','en','passed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','passed_status','en','Passed Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_back_to_virtual_pass','en','Back to Question Overview',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_attempt','en','Attempt',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','pass','en','Pass',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','pass_finished','en','%s pass',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','dashboard_tab','en','Dashboard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','participants','en','Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','participants_invitation','en','Manually Selected Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','participants','en','Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','participants_invitation_description','en','This test can only be accessed by users you have manually added in tab ‘Dashboard’.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','output','en','Output',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','output_mode','en','Output Mode',NULL,NULL); @@ -25438,13 +25434,13 @@ INSERT INTO `lng_data` VALUES ('assessment','ordertext_info','en','Please enter INSERT INTO `lng_data` VALUES ('assessment','oq_btn_use_order_terms','en','Use answer terms',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','oq_btn_use_order_pictures','en','Use answer pictures',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','or','en','or',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','numeric_gap','en','Numeric Gap',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','number_of_answers','en','Number of Answers',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','nr_of_correct_answers','en','Number of Requested Answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','numeric_gap','en','Numeric Gap',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','no_user_or_group_selected','en','Please check an option what are you searching for (users, groups, roles)!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','not_yet_accessed','en','Not yet accessed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','no_selection','en','--- No Selection ---',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','nr_of_correct_answers','en','Number of Requested Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','no_target_selected_for_move','en','You must select a target position!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','no_user_or_group_selected','en','Please check an option what are you searching for (users, groups, roles)!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','no_selection','en','--- No Selection ---',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','no_questions_available','en','There are no questions available!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','no_question_selected_for_move','en','Please check at least one question to move it!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','no_passed_mark','en','You must set at least one mark to PASSED! The mark schema was not saved.',NULL,NULL); @@ -25494,8 +25490,8 @@ INSERT INTO `lng_data` VALUES ('assessment','tst_non_avail_pool_msg_status_lost' INSERT INTO `lng_data` VALUES ('assessment','tst_non_avail_pool_msg_status_trashed','en','This question pool is trashed, when it gets removed from system permanently, the test is no longer able to synchronize questions from it.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_non_avail_pools_table','en','Non Available Questionpools',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_filter_tax_node','en','Taxonomy Node',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_filter_taxonomy','en','Taxonomy',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_source_question_pool','en','Question Pool',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_filter_taxonomy','en','Taxonomy',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_src_quest_pool_def_list_table','en','Rules for Random Selection of Questions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_rnd_quest_set_tb_add_pool_btn','en','New Rule for Selection of Questions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','msg_circle_added','en','Circle added',NULL,NULL); @@ -25504,68 +25500,68 @@ INSERT INTO `lng_data` VALUES ('assessment','maxsize','en','Maximum file upload INSERT INTO `lng_data` VALUES ('assessment','maxsize_info','en','Enter the maximum size in bytes that should be allowed for file uploads. If you leave this field empty, the maximum size of this installation will be chosen instead.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','maximum_points','en','Maximum Available Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','maximum_nr_of_tries_reached','en','You have reached the maximum number of passes for this test. The test cannot be entered!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qst_essay_wordcounter_enabled','en','Count Words',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qst_essay_wordcounter_enabled_info','en','The entered words are counted. The number of written words is shown to the participants below the text input field.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qst_essay_wordcounter_enabled','en','Count Words',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qst_essay_allready_written_words','en','Already entered words:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qst_essay_written_words','en','Number of entered words:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qst_essay_chars_remaining','en','Remaining characters:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','material_file','en','Material File',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','material','en','Material',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qst_essay_written_words','en','Number of entered words:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','maxchars','en','Maximum Number of Characters',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','material','en','Material',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','material_file','en','Material File',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','matching_type','en','Matching Question Subtype',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','matching_shuffle_terms','en','Terms only',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','matching_shuffle_terms_definitions','en','Both (Terms and Definitions)',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','matching_shuffle_definitions','en','Definitions only',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','matching_pairs','en','Matching Pairs',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','matches','en','matches',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','matching_pairs','en','Matching Pairs',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_pass_finished_on','en','Test pass finished on',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','mark_tst_ects','en','Your ECTS grade is \"[markects]\" (European Credit Transfer System)',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','grading_mark_msg','en','Your mark is: "[mark]"',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_missing_listentry','en','Open',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_answered_listentry','en','Answered',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_listlabel','en','Compulsory Questions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_answered_msg','en','You filled out all compulsory questions.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_answered_listentry','en','Answered',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_missing_msg','en','You didn‘t filled out all compulsory questions.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','grading_obligations_answered_msg','en','You filled out all compulsory questions.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','grading_status_failed_msg','en','Sorry, you failed the test.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','grading_status_passed_msg','en','Congratulations, you passed the test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','mark_schema','en','Mark Schema',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','grading_status_passed_msg','en','Congratulations, you passed the test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring','en','Manual Scoring',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring_results_pass','en','Manual Scored Questions for Pass %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring_questions_not_found','en','This test pass does not contain question types which can be scored manually.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring_not_allowed','en','The Manual Scoring wasn‘t activated for a question type. You are not allowed to use this tab.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring_none','en','Unscored Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring_hint','en','You have added at least one question which may require manual scoring. To avoid that participants get already access to the test results before you finished manual scoring, please define a suitable date for the access to the test results.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','maintenance','en','Maintenance',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manscoring_done','en','Scored Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','maintenance','en','Maintenance',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_user_solution_willingly_deleted','en','User deleted the answer.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_user_not_entered_values','en','User did not enter values',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','log_user_answered_question','en','User answered a question and received %s points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_user_entered_values','en','User entered values',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','log_user_answered_question','en','User answered a question and received %s points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_selected_user_data_removed','en','Removed test data of user %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_question_removed','en','Question removed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_question_position_changed','en','Question position changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_question_added','en','Question added at position',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_modified_test','en','The test was modified',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_mark_removed','en','Mark removed',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','log_mark_changed','en','Mark changed',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','log_manual_feedback','en','%s added manual feedback for test person %s and question %s: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_mark_added','en','Mark added',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','log_could_not_enter_test_due_to_simultaneous_users','en','The user could not enter the test because the maximum number of simultaneous users has been reached',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','log_mark_changed','en','Mark changed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_create_new_test','en','Created new test',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','log_manual_feedback','en','%s added manual feedback for test person %s and question %s: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','log_could_not_enter_test_due_to_simultaneous_users','en','The user could not enter the test because the maximum number of simultaneous users has been reached',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_wrong_test_password_entered','en','Participant entered wrong test password.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','locked','en','locked',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','log_answer_changed_points','en','Manual change of points of test person %s from %d to %d points by %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_skl_res_interpretation_hint_msg','en','Please consider that competence results from a single test has a limited significance. The more information is collected per competence, the merrier valid the significance will be. Should there are single competences without any entry, there is to less information collected.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_skl_level_thresholds_missing','en','There are missing thresholds for the relevant competences!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_skl_level_thresholds_link','en','Configure Competence Thresholds',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_skl_level_thresholds_missing','en','There are missing thresholds for the relevant competences!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_msg_skl_qst_assign_points_not_saved','en','The competence points have not been saved. Please check your input.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_msg_skl_qst_assign_points_saved','en','The competence points have been saved.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_save_comp_points','en','Save Competence Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_skl_selection_for_question_header','en','Compence Assignments for Question: %s',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_save_comp_points','en','Save Competence Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_qst_skl_cfg_in_pool_hint_dynquestset','en','The Competence-Question-Assignment for tests with mode \"%s\" is to be done in the corresponding question pool:
%s

The configuration of threshold values is to be done here in the test.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_qst_skl_cfg_in_pool_hint_rndquestset','en','The Competence-Question-Assignment for tests with mode \"%s\" is to be done in the corresponding question pool(s):
%s

The configuration of threshold values is to be done here in the test.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_skl_usg_numq_col','en','Number of Questions in Pool adressing this competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_skl_usg_sklpnt_col','en','Total Sum of Competence-Points per Competence',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_skl_usg_numq_col','en','Number of Questions in Pool adressing this competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_qst_skl_usg_skill_col','en','Competence',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','export_essay_qst_with_html_desc','en','If activated it is possible to export Essay Question with HTML to Excel.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','export_essay_qst_with_html','en','Export Essay Question with HTML code',NULL,NULL); @@ -25579,8 +25575,8 @@ INSERT INTO `lng_data` VALUES ('assessment','ass_lac_show_legend_btn','en','Show INSERT INTO `lng_data` VALUES ('assessment','tst_sol_comp_expressions','en','Comparison Expressions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_solution_compare_cfg','en','Configuration for Solution Compare',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_skill_point_eval_by_solution_compare','en','Evaluation of Competence Points by Solution Compare',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qpl_skill_point_eval_by_quest_result','en','Evaluation of Competence Points by Question Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_skill_point_eval_mode_solution_compare','en','Solution Compare',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qpl_skill_point_eval_by_quest_result','en','Evaluation of Competence Points by Question Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_skill_point_eval_mode_quest_result','en','Question Result',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assClozeTest_NumberOfResultExpression_d','en','The fourth answer option is a select gap and the second option was selected',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assClozeTest_NumberOfResultExpression_e','en','R[4] = +2+',NULL,NULL); @@ -25590,8 +25586,8 @@ INSERT INTO `lng_data` VALUES ('assessment','lacex_assClozeTest_StringResultExpr INSERT INTO `lng_data` VALUES ('assessment','lacex_assClozeTest_StringResultExpression_1_e','en','R[1] = ~Monday~',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assClozeTest_NumericResultExpression_d','en','The second answer option is a numeric gap and was answered with the numeric value 5',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assClozeTest_NumericResultExpression_e','en','R[2] = #5#',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','lacex_assFormulaQuestion_NumericResultExpression_d','en','The first answer option was answered with the numeric value 3.14159',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assFormulaQuestion_NumericResultExpression_e','en','R[1] = #3.14159#',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','lacex_assFormulaQuestion_NumericResultExpression_d','en','The first answer option was answered with the numeric value 3.14159',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assTextSubset_StringResultExpression_e','en','R[2] = ~sodium chloride~',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assTextSubset_StringResultExpression_d','en','For the second answer option the answer „sodium chloride“ was entered',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','lacex_assMatchingQuestion_MatchingResultExpression_d','en','The question\'s terms were assigned to definitions as follows: 1 → 2 and 2 → 3 and 3 → 1',NULL,NULL); @@ -25626,8 +25622,8 @@ INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_exact_seq INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_answer_n','en','Compare the Result with the n-th Answer of the Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_sequence','en','Compare the Result with the Answer Sequence ($a,..,z$)',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_assignment','en','Compare the Result with the Matching n:m',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_number','en','Compare the Result with the Number n',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_text','en','Compare the Result with the text TEXT',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_number','en','Compare the Result with the Number n',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_compare_with_quest_res','en','Compare the Result with the Reached Points in Percent',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_legend_label_operators','en','Operators',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_legend_header_quest_specific','en','Question Specific Expressions',NULL,NULL); @@ -25636,8 +25632,8 @@ INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_res_of_cur_quest','en' INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_brackets','en','Brackets',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_negation','en','Negation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_logical_or','en','Logical OR',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_legend_header_common','en','Expression Logic',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_desc_logical_and','en','Logical AND',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','qpl_lac_legend_header_common','en','Expression Logic',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','legend','en','Legend',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','last_update','en','Updated',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','kiosk','en','Exam View',NULL,NULL); @@ -25655,14 +25651,14 @@ INSERT INTO `lng_data` VALUES ('assessment','imagemap','en','Image Map',NULL,NUL INSERT INTO `lng_data` VALUES ('assessment','identical_scoring','en','Identical Scoring',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','identical_scoring_desc','en','If selected, gaps with identical solutions will be scored, even if the same solution was used twice or more. If not selected, only the first occurrence of the same solution will be scored.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','height','en','Height',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','general','en','General',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','glossary_term','en','Glossary Term',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','general','en','General',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','gap','en','Gap',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_reporting_date','en','Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','form_msg_area_missing_points','en','Please enter points for all areas.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_reporting_date','en','Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','forcejs','en','Force JavaScript output for test questions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_participant_fullname_pattern','en','%2$s, %1$s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','flashfile','en','Flash File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_participant_fullname_pattern','en','%2$s, %1$s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_res_jump_to_participant_btn','en','Jump',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_res_jump_to_participant_hint_opt','en','--Jump to Participant--',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','fixed_participants_hint','en','This test is only accessible for the manually added participants listed below. You can disable this setting by deactivating the checkbox ‘Manually Selected Participants’ in the test settings.',NULL,NULL); @@ -25670,18 +25666,18 @@ INSERT INTO `lng_data` VALUES ('assessment','final_statement','en','Concluding R INSERT INTO `lng_data` VALUES ('assessment','final_statement_show_desc','en','Shows concluding remarks after the test was submitted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','filter_show_questionpools','en','Show Question Pools',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','filter_show_question_types','en','Show Question Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','filter_all_questionpools','en','All Question Pools',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','filter_show_question_types','en','Show Question Types',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','filter_all_question_types','en','All Question Types',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','fill_out_all_required_fields_add_answer','en','Please fill out all required fields before you add answers!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','fileDownload','en','File download',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','fill_out_all_required_fields_add_answer','en','Please fill out all required fields before you add answers!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','file_uploads','en','File Uploads',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','feedback_answers','en','Feedback for Every Answer',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','feedback_incomplete_solution','en','At least one answer is not correct',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','feedback_complete_solution','en','Correct solution',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','feedback_generic','en','Common Solution Feedback',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','failed_short','en','failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','false','en','False',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','failed_short','en','failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','failed_official','en','failed',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','export','en','Export',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','exp_type_spss','en','Comma Separated Value (CSV)',NULL,NULL); @@ -25700,17 +25696,17 @@ INSERT INTO `lng_data` VALUES ('assessment','tst_feedback','en','Feedback',NULL, INSERT INTO `lng_data` VALUES ('assessment','ass_process_lock','en','Use Locking During Test Passes',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','kprim_answers_info','en','The multiple choice question type ‘four times decision right/wrong’ (Type K’, also known as Kprim) gives four answers or additions to a question or an incomplete statement. A decision about the correctness is to be done on all four answers/additions. The maximum points are granted only, if all decisions are correct.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','kprim_instruction_text','en','You have to decide on every statement: [%s] or [%s]',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','option_label_custom_false','en','Label for ‘FALSE’',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_custom_true','en','Label for ‘TRUE’',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','option_label_custom_false','en','Label for ‘FALSE’',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_custom','en','Userdefined Labels',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_not_adequate','en','not adequate',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_adequate','en','adequate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','option_label_not_applicable','en','not applicable',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_adequate_or_not','en','adequate / not adequate',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_applicable','en','applicable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','option_label_not_applicable','en','not applicable',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_applicable_or_not','en','applicable / not applicable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','option_label_plus','en','+',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_minus','en','-',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','option_label_plus','en','+',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_wrong','en','wrong',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_plus_minus','en','+ / -',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label_right','en','right',NULL,NULL); @@ -25718,13 +25714,13 @@ INSERT INTO `lng_data` VALUES ('assessment','option_label_right_wrong','en','rig INSERT INTO `lng_data` VALUES ('assessment','option_label_info','en','The configured phrases will be used as label for the options selectable by the participant.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','option_label','en','Option Labels',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','score_partsol_enabled_info','en','Usually the participant has to answer the question fully correct to get the configured points. With this option the participant gets the half of the configured points with at least three correct decisions.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','score_partsol_enabled','en','Activate Half-Point Scoring',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','errortext','en','Error Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','errors_section','en','Error Data',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','errors','en','Errors',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','score_partsol_enabled','en','Activate Half-Point Scoring',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','errortext_info','en','Please enter the error text. To mark a word as an error please insert a hash sign (#) in front of the word. To mark a group of words as an error please encapsulate the words group between double brackets (i.e.: here is ((an example)) of it). If you press the "Analyze Error Text" button, all marked words will be extracted for further processing.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','error_random_question_generation','en','A fatal error occurred during the generation of your random questions for the test. Please contact your administrator with the following information: The system could not create an active ID for user ID %s and test ID %s.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','errors','en','Errors',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','errors_section','en','Error Data',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','error_open_image_file','en','Error opening an image file!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','error_random_question_generation','en','A fatal error occurred during the generation of your random questions for the test. Please contact your administrator with the following information: The system could not create an active ID for user ID %s and test ID %s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','error_importing_question','en','There was an error importing the question(s) from the file you have selected!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','err_no_numeric_value','en','Please enter a numeric value',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','enter_enough_positive_points_checked','en','At least one answer needs to score. Please enter a positive score for the selection of an answer.',NULL,NULL); @@ -25732,9 +25728,9 @@ INSERT INTO `lng_data` VALUES ('assessment','enter_enough_positive_points','en', INSERT INTO `lng_data` VALUES ('assessment','enter_anonymous_code','en','Enter Anonymous Access Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','enlarge','en','Enlarge',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_conflicting_setting','en','This setting does conflict with another setting.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','end_tag','en','End Tag',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_settings_conflict_message','en','The current configuration uses settings combinations that are not allowed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','element_height','en','Minimum Height',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','end_tag','en','End Tag',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','element_height_info','en','This is the minimum height in pixels for term and definition/picture items during the test output.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','edit_test_questions','en','List View',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','edit_question','en','Edit Question',NULL,NULL); @@ -25757,9 +25753,9 @@ INSERT INTO `lng_data` VALUES ('assessment','duplicate','en','Duplicate',NULL,NU INSERT INTO `lng_data` VALUES ('assessment','duplicate_order_values_entered','en','You have entered duplicate order values!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','duplicate_matching_values_selected','en','You have selected duplicate matching values!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','direct_feedback','en','Verify Your Solution',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','detailed_output_printview','en','Detailed Output with Question Print Views',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','detailed_output_solutions','en','Detailed Output with Question Solutions',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','detailed_evaluation','en','Detailed Evaluation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','detailed_output_printview','en','Detailed Output with Question Print Views',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','detailed_evaluation_show','en','Show Detailed Evaluation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','detailed_evaluation_missing_active_id','en','You must call the ‘Detailed Evaluation’ for a selected participant!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','detailed_evaluation_for','en','Detailed Evaluation for %s',NULL,NULL); @@ -25777,18 +25773,18 @@ INSERT INTO `lng_data` VALUES ('assessment','definitions','en','Definitions',NUL INSERT INTO `lng_data` VALUES ('assessment','definition','en','Definition',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','definition_text','en','Definition Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','definition_image','en','Definition Image',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','create_new','en','Create New',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','customstyle','en','Custom Style',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','create_gaps','en','Create and Refresh Gaps',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','counter','en','Counter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','create_new','en','Create New',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','create_date','en','Created',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','counter','en','Counter',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','coordinates','en','Coordinates',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','confirm_sync_questions','en','The question you changed is a copy which has been created for use with the active test. Do you want to change the original of the question too?',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','confirm_delete_single_user_data','en','Are you sure you want to remove the test data of the selected users?',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','confirm_delete_all_user_data','en','Are you sure you want to delete all user data of the test?',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','concatenation','en','Concatenation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','code','en','Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','codebase','en','Codebase',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','code','en','Code',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_cloze_gap_fb_num_toohigh_label','en','Gap %s - Value too High',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_cloze_gap_fb_num_toolow_label','en','Gap %s - Value too Low',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_cloze_gap_fb_num_rangehit_label','en','Gap %s - Range Hit',NULL,NULL); @@ -25832,24 +25828,24 @@ INSERT INTO `lng_data` VALUES ('assessment','cannot_read_questionpool','en','You INSERT INTO `lng_data` VALUES ('assessment','cannot_execute_test','en','You do not possess sufficient permissions to run the test!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','cannot_edit_test','en','You do not possess sufficient permissions to edit the test!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','cannot_edit_marks','en','There are already learners who ran the test. You can only change the marks if a score reporting date is enabled and the reporting date is not yet reached.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','answer_options','en','Answer Options:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','add_answers','en','Add answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','by','en','by',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','cancel_test','en','Suspend the Test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','add_answers','en','Add answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','answer_options','en','Answer Options:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','longmenu','en','Longmenu',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','correct_answers','en','Correct Answers:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','longmenu_text','en','Long Menu Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','longmenu','en','Longmenu',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','manual_editing','en','Manual Editing',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','info_text_upload','en','Choose an answer text (UTF-8) file to upload.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answers_select','en','Select',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','autocomplete_error','en','Your autocomplete number is to large, you have answers which have less characters, so they would never be displayed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','min_auto_complete','en','Autocomplete',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','backtocallingtest','en','Back to the calling test',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assLongMenu','en','Long Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answers_text_box','en','Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','autosave_failed','en','Autosave failed!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','autosave_success','en','Autosave successful...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','min_auto_complete','en','Autocomplete',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','average_reached_points','en','Average Points',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','backtocallingtest','en','Back to the calling test',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','autosave_success','en','Autosave successful...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','autosave_failed','en','Autosave failed!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assTextSubset','en','Text Subset Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assTextQuestion','en','Essay Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assSingleChoice','en','Multiple Choice Question (Single Answer)',NULL,NULL); @@ -25863,14 +25859,14 @@ INSERT INTO `lng_data` VALUES ('assessment','assMatchingQuestion','en','Matching INSERT INTO `lng_data` VALUES ('assessment','assJavaApplet','en','Java Applet Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assImagemapQuestion','en','Hot Spot / Image Map Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assFlashQuestion','en','Flash Question',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','assFileUpload','en','File Upload Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assErrorText','en','Error Text',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_objective_progress_header','en','Learning Objective Progress',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','assFileUpload','en','File Upload Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','assClozeTest','en','Cloze Question',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_objective_progress_header','en','Learning Objective Progress',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_objectives_progress_header','en','Learning Objectives Progress',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_filter_question_type_enabled','en','Use Question Type as Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_filter_lifecycle_enabled','en','Use Lifecycle as Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_filter_question_type','en','Question Type',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_filter_question_type_enabled','en','Use Question Type as Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_nav_next_locks_current_answer_confirm','en','When you navigate to the next question your answer to the current question will be locked and cannot be changed any longer.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_nav_next_locks_current_answer_header','en','Navigation to Next Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_nav_next_locks_empty_answer_confirm','en','You did not answer the current question. An empty solution will be saved and locked as answer. This answer cannot be changed later on.',NULL,NULL); @@ -25904,18 +25900,18 @@ INSERT INTO `lng_data` VALUES ('assessment','apply','en','Apply',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_msg_rand_quest_set_rule_label','en','Rule %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','applet_parameters','en','Applet Parameters',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','applet_parameter','en','Parameter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','applet_attributes','en','Applet Attributes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','answers_multiline','en','Multi Line Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answers_singleline','en','Single Line Answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','applet_attributes','en','Applet Attributes',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_skl_import_fails_remove_btn','en','Remove this Hint',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','answers_multiline','en','Multi Line Answers',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_failed_imp_qst_skl_assign','en','The question\'s assignments to the following competences could not be created. The according competences could not be identified within the local system.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_failed_imp_skl_thresholds','en','The Import of thresholds for the following competences were skipped, because the according competences within the local system are configured with a different list of levels.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer','en','Answer',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','gap_combination','en','Gap Combination',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer_types','en','Editor for Answers',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','answer_characters','en',' characters allowed, entered number of characters:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer_text','en','Answer Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer_is_wrong','en','Your solution is wrong',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','answer_characters','en',' characters allowed, entered number of characters:',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer_is_right','en','Your solution is correct',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer_is_not_correct_but_positive','en','You\'ve got points for your solution but it’s not the best solution',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','answer_image','en','Answer Image',NULL,NULL); @@ -25925,13 +25921,13 @@ INSERT INTO `lng_data` VALUES ('assessment','allow_images','en','Image Support f INSERT INTO `lng_data` VALUES ('assessment','allowedextensions_info','en','Enter a comma separated list of allowed file extensions if you want to restrict the upload to a given set of file extensions (e.g. doc,xls,odt).',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_answer_aggr_frequency_header','en','Frequency',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','all_available_question_pools','en','All available question pools',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','addSuggestedSolution','en','Add Content for Recapitulation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_answer_aggr_answer_header','en','Answer',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','add_rect','en','Add rectangle area',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','addSuggestedSolution','en','Add Content for Recapitulation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','add_poly','en','Add polygon area',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','add_imagemap','en','Import Image Map',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','add_gap','en','Add Gap Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_msg_rand_quest_set_not_sync','en','The rules for a random selection of questions were newly created or changed. The questions from the pools have to be synchronized in the test before it can be used. This checks also if a random test is possible with the given set of rules.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','add_gap','en','Add Gap Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','add_circle','en','Add circle area',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','action','en','Action',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_question_not_from_pool_info','en','No Pool',NULL,NULL); @@ -25942,8 +25938,8 @@ INSERT INTO `lng_data` VALUES ('assessment','tst_corr_answ_stat_tbl_header_frequ INSERT INTO `lng_data` VALUES ('assessment','tst_corr_answ_stat_tbl_header_answer','en','Answer',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_answers_tbl_subindex','en','Statistics for %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_answers_tbl','en','Statistics',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_qst_form','en','Correction of Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_tab_statistics','en','Statistics',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_qst_form','en','Correction of Points',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_tab_question','en','Question',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_tab_solution','en','Solution',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_corrections_qst_remove_confirmation','en','Do you really want to finally remove the question \"%s (ID: %s)\" from the test?',NULL,NULL); @@ -25959,10 +25955,10 @@ INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode_keyword_relation INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode_keyword_relation_any_desc','en','For any found keyword the corresponding points are granted automatically.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode_keyword_relation_any','en','Automatic Scoring with Keywords on Finding ANY',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode_without_keywords_desc','en','No points are granted unless the tutor\'s manual scoring.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode_without_keywords','en','No Automatic Scoring',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode','en','Scoring Mode',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','ass_mc_sel_lim_setting','en','Answering Limitation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','essay_scoring_mode_without_keywords','en','No Automatic Scoring',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_mc_sel_lim_setting_desc','en','With this setting the number of answers choosable by the participants can be limited.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','ass_mc_sel_lim_setting','en','Answering Limitation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_mc_sel_lim_exhausted_hint','en','Please do not select more than %s of %s answers!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','ass_mc_sel_lim_hint','en','Please select %s of %s answers!',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','solution_contain_keywords','en','Score is granted based on the occurrence of the following keywords:',NULL,NULL); @@ -25973,9 +25969,9 @@ INSERT INTO `lng_data` VALUES ('assessment','char_selector_btn_label','en','&nbs INSERT INTO `lng_data` VALUES ('assessment','tst_pass_waiting_time','en','Waiting Time',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_pass_waiting_info','en','With this option additional passes can not be started before the defined time is lapsed relating to the last finished pass.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_pass_waiting_enabled','en','Force Waiting Time between Passes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('assessment','tst_presentation_settings_section','en','Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','wait_for_next_pass_hint_msg','en','Additional pass is possible on time: %s',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','for','en','for',NULL,NULL); -INSERT INTO `lng_data` VALUES ('assessment','tst_presentation_settings_section','en','Presentation',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_addit_passes_blocked_after_passed_msg','en','You have passed the test. The test cannot be started again.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_block_passes_after_passed_info','en','After a participant has passed the test, no further test passes are allowed to the participant with this option.',NULL,NULL); INSERT INTO `lng_data` VALUES ('assessment','tst_block_passes_after_passed','en','Block Additional Passes After Test is Passed',NULL,NULL); @@ -25988,45 +25984,45 @@ INSERT INTO `lng_data` VALUES ('adve','adve_page_editor_settings','en','ILIAS Pa INSERT INTO `lng_data` VALUES ('adve','adve_grp_test','en','Test and Assessment',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','adve_grp_wiki','en','Wikis',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','adve_grp_scorm','en','SCORM Editing',NULL,NULL); +INSERT INTO `lng_data` VALUES ('adve','adve_grp_lm','en','ILIAS Learning Modules',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','adve_grp_rep','en','Repository Pages',NULL,NULL); INSERT INTO `lng_data` VALUES ('adve','adve_grp_glo','en','Glossaries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('adve','adve_grp_lm','en','ILIAS Learning Modules',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','view_log','en','View details',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','view_last_log','en','View last Scan log',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','usr_loginname_history_info','en','The user changed its login at last at %s. The former login was: %s.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','tree_corrupt','en','Tree is corrupted! See scan log for details.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','systemcheck','en','System check',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','skipped','en','skipped',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','start_scan','en','Start!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','skipped','en','skipped',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','searching_unbound_objs','en','Searching for unbound objects...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','searching_missing_objs','en','Searching for missing objects...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','searching_invalid_refs','en','Searching for invalid references...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','searching_invalid_rolfs','en','Searching for invalid role folders...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','searching_invalid_refs','en','Searching for invalid references...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','searching_invalid_childs','en','Searching for invalid tree entries...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','searching_deleted_objs','en','Searching for deleted objects...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','scanning_system','en','Scanning system...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','scan','en','Scan',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','scanning_system','en','Scanning system...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','scan_details','en','Scan details',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','scan_modes','en','Scan modes used',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','scan_desc','en','Scan system for corrupted/invalid/missing/unbound objects.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','restoring','en','Restoring...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','reuse_of_loginnames_contained_in_history','en','Reuse of Login Names',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','restoring','en','Restoring...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','restoring_unbound_objs','en','Restoring unbound objects and sub-objects...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','restoring_trash','en','Restoring trash...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','restoring_missing_objs','en','Restoring missing objects...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','restore_trash','en','Restore deleted objects',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','restore_trash_desc','en','Restore all objects in trash bin to RecoveryFolder.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','restore_missing','en','Restore missing objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','restore_missing_desc','en','Restore missing and unbound objects to RecoveryFolder.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','removing_invalid_childs','en','Removing invalid tree entries...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','removing_invalid_refs','en','Removing invalid references...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','removing_invalid_rolfs','en','Removing invalid role folders...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','restore_missing','en','Restore missing objects',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','restore_trash_desc','en','Restore all objects in trash bin to RecoveryFolder.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','restore_trash','en','Restore deleted objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','repair_options','en','Repair options',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','purging_unbound_objs','en','Purging unbound objects...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','removing_invalid_rolfs','en','Removing invalid role folders...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','removing_invalid_refs','en','Removing invalid references...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','removing_invalid_childs','en','Removing invalid tree entries...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','purging','en','Purging...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','purging_unbound_objs','en','Purging unbound objects...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','purging_trash','en','Purging trash...',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','purge_type_limit','en','Limit type',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','purging_missing_objs','en','Purging missing objects...',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','purge_type_limit','en','Limit type',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','purge_type_limit_desc','en','If this field contains a value, only objects of the specified type will be purged.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','purge_trash','en','Purge deleted objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','purge_trash_desc','en','Remove all objects in trash bin from system.',NULL,NULL); @@ -26050,42 +26046,42 @@ INSERT INTO `lng_data` VALUES ('administration','loginname_change_blocking_time' INSERT INTO `lng_data` VALUES ('administration','loginname_change_blocking_time_invalidity_info','en','Please insert a numeric value.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','loginname_change_blocking_time_info','en','Insert a period in days that a user has to wait before changing again its login name. If you enter 0, user can change login names anytime.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','log_scan','en','Log scan results',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','log_scan_desc','en','Write scan results to ‘scanlog.log’ in client data directory.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_translation_enabled','en','Page translation enabled',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','log_scan_desc','en','Write scan results to ‘scanlog.log’ in client data directory.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_statistics','en','Statistics',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_settings','en','Language Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_unchanged','en','Unchanged entries only',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_local','en','Local changes only',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_scope_equal','en','Equal to compare language',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_global','en','All entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_scope_equal','en','Equal to compare language',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_different','en','Different from compare language',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_scope_dbremarks','en','Shows only entries with comments in database',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_conflicts','en','Local and update changes',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_scope_dbremarks','en','Shows only entries with comments in database',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_scope_commented','en','Shows only entries with comments in language file',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_save_local_changes','en','Save all changes to the custom language file',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_process_maintenance','en','Process Maintenance',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_mode_existing','en','Existing Entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_save_local_changes','en','Save all changes to the custom language file',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_note_translation','en','Page translation mode is activated for each language separately. Additionally the user needs read and write permission on the language folder.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_mode_existing_keepnew','en','Keep all local changes',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_mode_existing_replace','en','Replace existing entries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_mode_existing_delete','en','Delete existing entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_mode_existing','en','Existing Entries',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_mode_existing_keepnew','en','Keep all local changes',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_mode_existing_keepall','en','Keep all existing entries',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_maintenance','en','Language Maintenance',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_mode_existing_delete','en','Delete existing entries',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_maintain','en','Maintain',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_maintenance','en','Language Maintenance',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_maintain_local_changes','en','Maintain local changes',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_loaded_local','en','The custom language file was loaded into the database.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_import_file','en','Import Language File',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_load_local_changes','en','Load custom language file into the database',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_former_file_equal','en','The file %s is identical to the current language file.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_loaded_local','en','The custom language file was loaded into the database.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_former_file_missing','en','The file %s is missing.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_import_file','en','Import Language File',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_former_file_equal','en','The file %s is identical to the current language file.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_former_file_description','en','To compare your local changes with the changes of the last update, please copy the language file of the previously installed ILIAS version to the path mentioned above. Before the next update you can do this with the option \'Backup the standard language file\' on the maintenance tab.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_file_scope','en','Language file scope',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_file_imported','en','The language file %s was imported.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_export_file','en','Export Language File',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_error_read_local','en','The custom language file does not exist or cannot be read!',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_error_clear_local','en','The local changed could not be cleared in the database!',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','language_compare','en','Compare',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_default_entries','en',' (default entries)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','language_compare','en','Compare',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_cleared_local','en','The local changes were cleared in the database.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_clear_local_changes','en','Clear local changes in the database',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','language_change_settings','en','Change Language Settings',NULL,NULL); @@ -26097,9 +26093,9 @@ INSERT INTO `lng_data` VALUES ('administration','found_none','en','none found.', INSERT INTO `lng_data` VALUES ('administration','dumping_tree','en','Dumping tree...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','dump_tree','en','Dump tree',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','dump_tree_desc','en','Perform an analysis of the tree and print all tree nodes along with analysis data.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','disabled','en','Disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','done','en','Done',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','course_export','en','Visible in Courses',NULL,NULL); -INSERT INTO `lng_data` VALUES ('administration','disabled','en','Disabled',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','cleaning','en','Cleaning...',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','clean','en','Clean up',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','cleaning_final','en','Final cleaning...',NULL,NULL); @@ -26118,30 +26114,30 @@ INSERT INTO `lng_data` VALUES ('administration','adm_locale_info','en','Locale s INSERT INTO `lng_data` VALUES ('administration','adm_item_cmd_asynch','en','Load Resource Action Lists Asynchronously',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_item_cmd_asynch_info','en','Action commands, e.g. in the repository, are loaded asynchronously. This increases performance in general, but slows down loading of action command lists a little bit.',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_pub_section_domain_filter_info','en','Domain filters granting anonymous access. Enter one ore more domains, which allow anonymous access.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_crit_type_usr_language','en','Profile Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','adm_pub_section_domain_filter','en','Domain Filter',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_criterion_assignment_must_be_unique_insert','en','You cannot attach this criterion with this value. There is already an identical criterion attached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_criterion_assignment_must_be_unique_update','en','You cannot change the criterion as desired. There is already an identical criterion attached.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_saved_sorting','en','The sorting has been saved.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_sure_delete_documents_p','en','Are you sure you want to delete the selected documents?',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_crit_type_usr_language','en','Profile Language',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_deleted_documents_s','en','The document has been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_deleted_documents_p','en','The documents have been deleted.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_saved_sorting','en','The sorting has been saved.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_criterion_assignment_must_be_unique_insert','en','You cannot attach this criterion with this value. There is already an identical criterion attached.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_sure_delete_documents_p','en','Are you sure you want to delete the selected documents?',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_document','en','Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_sure_delete_documents_s','en','Are you sure you want to delete the document?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_form_edit_criterion_head','en','Edit Criterion Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_form_criterion','en','Criterion',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_form_edit_criterion_head','en','Edit Criterion Assignment',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_form_attach_criterion_head','en','Attach Criterion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_doc_crit_changed','en','The criterion has been changed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_doc_crit_attached','en','The criterion has been attached.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_doc_crit_changed','en','The criterion has been changed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_doc_crit_detached','en','The criterion has been detached.',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_doc_delete','en','Delete Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_doc_sure_detach_crit','en','Are your sure you want to detach the criterion?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_cell_not_criterion','en','No criterion assigned',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_doc_detach_crit_confirm_title','en','Detach Criterion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_criteria','en','Criteria',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_action_add_criterion','en','Add Criterion',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_created','en','Creation Date',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_cell_not_criterion','en','No criterion assigned',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_last_change','en','Last Change',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_criteria','en','Criteria',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_created','en','Creation Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_sorting','en','Sorting',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_head_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_tbl_docs_title','en','Documents',NULL,NULL); @@ -26150,27 +26146,27 @@ INSERT INTO `lng_data` VALUES ('acc','acc_form_document_new_info','en','Please s INSERT INTO `lng_data` VALUES ('acc','acc_form_document_new','en','Change Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_form_document_info','en','Please select a file from your local filesystem. You can either upload a plain text file, or a simple HTML file. HTML files will be purified, only the contents of the body element will be used.',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_form_document','en','Document',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_form_document_title','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_form_document_title_info','en','Please enter a title for the document.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_form_edit_doc_head','en','Edit Document',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_tree_off','en','Tree Off',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_tree_on','en','Tree On',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_ctrl_cpt_txt','en','Accessibility Control Concept',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_add_document_btn_label','en','Add Document',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_form_new_doc_head','en','Create Document',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_form_edit_doc_head','en','Edit Document',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_form_document_title','en','Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_ctrl_cpt_txt','en','Accessibility Control Concept',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_reply','en','Reply',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_mark_all_read','en','Mark All Read',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_next','en','Next',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_tree_off','en','Tree Off',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_tree_on','en','Tree On',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_previous','en','Previous',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_next','en','Next',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_mark_all_read','en','Mark All Read',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_function','en','Function',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_forward_mail','en','Forward Mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_component','en','Component',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_delete','en','Delete',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_comp_mail','en','Mail',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_comp_global','en','Global',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_component','en','Component',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_comp_frm','en','Forum',NULL,NULL); -INSERT INTO `lng_data` VALUES ('acc','acc_access_key','en','Access Key',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_comp_global','en','Global',NULL,NULL); INSERT INTO `lng_data` VALUES ('acc','acc_access_keys','en','Access Keys',NULL,NULL); +INSERT INTO `lng_data` VALUES ('acc','acc_access_key','en','Access Key',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_all_new_files_offered_already','en','All new files have already been offered for download. For another download, please click on the action links below.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_no_get_target','en','A valid target has not been sent.',NULL,NULL); INSERT INTO `lng_data` VALUES ('exc','exc_target_not_valid','en','Target requested is not valid or incomplete.',NULL,NULL); @@ -26183,20 +26179,20 @@ INSERT INTO `lng_data` VALUES ('itgr','itgr_expandable_closed','en','Expandable INSERT INTO `lng_data` VALUES ('itgr','itgr_always_open','en','Always Open',NULL,NULL); INSERT INTO `lng_data` VALUES ('itgr','itgr_behaviour_info','en','The system will store the opened/closed state for the current user until logout.',NULL,NULL); INSERT INTO `lng_data` VALUES ('itgr','itgr_behaviour','en','Block Behaviour',NULL,NULL); -INSERT INTO `lng_data` VALUES ('itgr','itgr_show_title_info','en','Shows title of item group in presentation for learner.',NULL,NULL); INSERT INTO `lng_data` VALUES ('itgr','itgr_show_title','en','Show Title',NULL,NULL); +INSERT INTO `lng_data` VALUES ('itgr','itgr_show_title_info','en','Shows title of item group in presentation for learner.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pwsp_recalculate_disk_quota_desc','en','Recalculates all disk quota values for the personal resources.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','pwsp_recalculate_disk_quota','en','Personal Resources: Recalculation of Disk Quota',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','frm_task_publishing_draft_title','en','Publishing of Draft \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','adm_autosave_drafts_desc','en','If activated, drafts are saved automatically during editing.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','adm_autosave_drafts','en','Automatically save drafts',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','adm_autosave_ival','en','Interval',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','adm_autosave_drafts','en','Automatically save drafts',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','adm_save_drafts_desc','en','If enabled, registered users are able to save forum postings as draft.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','adm_save_drafts','en','Save drafts',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','enable_send_attachments_desc','en','Please note that file attachments must be stored separately for each notified user. This can cause a high usage of server disk space.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','enable_send_attachments','en','Send attachments with forum notifications',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','forums_edit_draft','en','Edit draft',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','publish','en','Publish',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','forums_edit_draft','en','Edit draft',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','delete_draft_successfully','en','The draft was deleted successfully.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','forums_info_delete_draft','en','Are you sure, you want to delete this draft?',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','save_draft_successfully','en','The draft was saved successfully.',NULL,NULL); @@ -26204,25 +26200,25 @@ INSERT INTO `lng_data` VALUES ('forum','forums_threads_drafts_deleted','en','The INSERT INTO `lng_data` VALUES ('forum','forums_thread_drafts_deleted','en','The selected thread including all postings and drafts have been deleted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','edit_thread_draft','en','Edit thread draft postings created in forums.',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','autosave_post_draft_info','en','This post will be saved automatically as draft every %s seconds.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','autosave_draft_info','en','This draft will be saved automatically every %s seconds.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('forum','sure_delete_drafts','en','Are you sure, you want to delete the selected drafts?',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','restore','en','Restore',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','restore_draft_from_autosave','en','Restore draft',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','autosave_draft_info','en','This draft will be saved automatically every %s seconds.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('mem','mmbr_gallery_user_actions','en','Member Gallery Actions',NULL,NULL); INSERT INTO `lng_data` VALUES ('forum','delete_drafts_successfully','en','The drafts were deleted successfully.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('forum','sure_delete_drafts','en','Are you sure, you want to delete the selected drafts?',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_show_member_export_info','en','Course Members may print a list of participants.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mem','mmbr_gallery_user_actions','en','Member Gallery Actions',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_show_member_export','en','Participants List',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_show_member_export_info','en','Course Members may print a list of participants.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','sess_part_filter_participated','en','Only Attended',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_print_list','en','Generate List',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_show_member_export_settings','en','Participants List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','sess_part_filter_participated','en','Only Attended',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','objs_crs_role','en','Course Roles',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','objs_grp_role','en','Group Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_part_filter_registered','en','Only Registered',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_mem_tbl_header','en','Session Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','objs_crs_role','en','Course Roles',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','objs_grp_role','en','Group Roles',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_scope_list_header','en','Limited to:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('didactic','didactic_scope_list_header','en','Limited to:',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_scope','en','Scope',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_local','en','Local',NULL,NULL); -INSERT INTO `lng_data` VALUES ('didactic','didactic_scope_list_header','en','Limited to:',NULL,NULL); INSERT INTO `lng_data` VALUES ('didactic','didactic_scope','en','Scope',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','udf_type_internallink','en','Internal Link',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','udf_type_externallink','en','External Link',NULL,NULL); @@ -26232,22 +26228,22 @@ INSERT INTO `lng_data` VALUES ('rbac','il_sess_participant','en','Session Partic INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_type_default_info','en','Define the default for unconfigured objects',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_type_default','en','Default Setting',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_type_changeable_no','en','Setting is not changeable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_type_changeable_object','en','Setting is changeable on object level',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_positions_type_active','en','Positions in',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_type_changeable','en','Changeable',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_form','en','Global Organisational Unit Settings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_type_changeable_object','en','Setting is changeable on object level',NULL,NULL); INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_positions','en','Show User Data according to Organisational Unit Positions',NULL,NULL); -INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_positions_type_active','en','Positions in',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_consumer','en','Release for',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_launch_url','en','Url',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_released_objects','en','Object Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_object_release_settings_form','en','Edit LTI Releases',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_consumer','en','Release for',NULL,NULL); +INSERT INTO `lng_data` VALUES ('orgu','orgu_global_set_form','en','Global Organisational Unit Settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_provider','en','LTI Releases',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_launch_url','en','Url',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_object_release_settings_form','en','Edit LTI Releases',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_optional_off','en','Optional mode is not active.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_optional_on_and_passed','en','Optional mode is active and cannot be changed because user is passed.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_optional_unchecked','en','Optional mode was deactivated for this user',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_optional_on','en','Optional mode is active.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_activate_optional_own','en','Optional mode for my course timings',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_optional_unchecked','en','Optional mode was deactivated for this user',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_optional_checked','en','Optional mode was activated for this user',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_activate_optional_own','en','Optional mode for my course timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_activate_optional','en','Optional mode for course timings',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_warning_timing_exists','en','Timings are configured for this object. If you active the availability settings, these timing settings will be reseted.',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_limit_start_end_tt','en','Latest end',NULL,NULL); @@ -26257,78 +26253,78 @@ INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_changeable_tt','en','Tim INSERT INTO `lng_data` VALUES ('crs','crs_timings_time_frame_tt','en','Time frame in days',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_start_end_tt_rel','en','Suggested start after course subscription',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_timings_short_active_tt','en','Activate Timings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('crs','crs_timings_days_after_subsription','en','Day(s) after course subscription',NULL,NULL); INSERT INTO `lng_data` VALUES ('crs','crs_target_group','en','Target Group',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','lti_consumer_inactive','en','LTI tool consumer is disabled.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_tutor','en','LTI Instructor',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_timings_days_after_subsription','en','Day(s) after course subscription',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_member','en','LTI Member',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','lti_consumer_inactive','en','LTI tool consumer is disabled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_admin','en','LTI Administrator',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_edit_consumer','en','Edit LTI Consumer',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_obj_active','en','LTI-Tool Provider',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_tutor','en','LTI Instructor',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_obj_active_info','en','If enabled, this object acts as a LTI tool provider. New LTI users can be automatically assigned to the following local roles.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_obj_active','en','LTI-Tool Provider',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_edit_consumer','en','Edit LTI Consumer',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','auth_lti','en','LTI Auth',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_auth_failed_invalid_key','en','Authentication failed, no valid consumer key given.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lm_only_one_download_per_type','en','Please note that you can only make one file per type (XML, HTML, SCORM) public accessible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_consumer_set_inactive','en','Consumer deactivated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lm_only_one_download_per_type','en','Please note that you can only make one file per type (XML, HTML, SCORM) public accessible.',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_consumer_set_active','en','Consumer activated',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_consumer_deleted','en','Consumer deleted',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_consumer_created','en','Consumer created',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_consumer_updated','en','Consumer updated',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_consumer_created','en','Consumer created',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_settings','en','LTI Settings',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_object_consumer','en','LTI Consumers',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','lti_create_consumer','en','Create Consumer',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_object_consumer','en','LTI Consumers',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','user_lng','en','User Languague',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_consumer_secret','en','Consumer Secret',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','lti_consumer_key','en','Consumer Key',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','consumers','en','Consumers',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','prefix','en','Prefix',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','lti_outcome_info','en','Sendet den Lernfortschrittstatus von LTI-Benutzern an LTI Tool Consumer.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('lti','act_lti_for_obj_type','en','Activate LTI for Type of Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_consumer_key','en','Consumer Key',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','lti_consumer_secret','en','Consumer Secret',NULL,NULL); INSERT INTO `lng_data` VALUES ('lti','gbl_roles_to_users','en','Global Role assigned to LTI Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('lti','act_lti_for_obj_type','en','Activate LTI for Type of Object',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','lti_outcome_info','en','Sendet den Lernfortschrittstatus von LTI-Benutzern an LTI Tool Consumer.',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_ltis_desc','en','Learning Tools Interoperability',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lti_outcome','en','LTI Lernfortschritt Benachrichtigung',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','entered_notification','en','\"%s\" has joined the session \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_ltis','en','LTI',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','deletion_notification','en','\"%s\" has canceled the attendance of session \"%s\".',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','register_notification','en','\"%s\" has applied for session \"%s\".',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','session_mail_subject_deletion','en','Deregistration of user \"%s\" from session \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_mail_subject_entered','en','Joining of user \"%s\" in session \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','session_mail_subject_registered','en','Registration of user \"%s\" for session \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('common','session_mail_subject_deletion','en','Deregistration of user \"%s\" from session \"%s\"',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','sess_notification_option_manual_info','en','Notification setting for users has to be set manually in tab \'Participants\'',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_notification_option_manual','en','Set manually',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','sess_notification_option_manual_info','en','Notification setting for users has to be set manually in tab \'Participants\'',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_notification_option_inherit_info','en','Use the parent notification settings (e.g. notification settings from course or group) for members of this session',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_notification_option_inherit','en','Inherit from Parent',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_notification_option','en','Option',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_registration_notification_info','en','Shows column in tab \'Participants\' to select users being notified about new or leaving participants',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','notification','en','Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_registration_notification','en','Notification',NULL,NULL); -INSERT INTO `lng_data` VALUES ('sess','sess_part_table_excused','en','Excused',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','notification','en','Notification',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_bt_refuse','en','Cannot Participate',NULL,NULL); +INSERT INTO `lng_data` VALUES ('sess','sess_part_table_excused','en','Excused',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_participation_refused_info','en','Your participation for this event has been canceled.',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_filter_fields','en','Filter Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_filter_field','en','Field',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_filter_record','en','Record',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cont','cont_select_fields','en','Select Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_record_title','en','Standard',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cont','cont_filter','en','Filter',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cont','cont_select_fields','en','Select Fields',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_8','en','Object Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cont','cont_filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_7','en','Tutorial Support',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_6','en','Copyright',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_5','en','Author',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_4','en','Keyword',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_1','en','Title',NULL,NULL); -INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_2','en','Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_3','en','Title/Description',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_2','en','Description',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_filter_empty_info','en','Show all items while filter is empty.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('cont','cont_std_filter_title_1','en','Title',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_filter_empty','en','Show on Empty Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_filter_info','en','A filter will be displayed in the content tab.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('obj','cont_filter_empty','en','Please use the filter to see any objects.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_filter','en','Filter',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','msg_wrong_filetypes','en','Allowed Files-Types:',NULL,NULL); INSERT INTO `lng_data` VALUES ('content','cont_lpe_openid_connect_login','en','OpenId Connect Login',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_update_role_info','en','Nur bei Erstanmeldung (automatische Synchronisierung) anwenden',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_role_mapping_table','en','Zurodnung von ILIAS-Rollen zu OpenId Connect Attributen',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_update_field_info','en','Automatisch aktualisieren',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_role_mapping_table','en','Zurodnung von ILIAS-Rollen zu OpenId Connect Attributen',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_roles','en','Rollenzuordnung',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_profile','en','Zuordnung der Profildaten',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings','en','Server-Einstellungen',NULL,NULL); @@ -26345,10 +26341,10 @@ INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_custom_session_duratio INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_custom_session_duration_option','en','Eigene Sitzungsdauer',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_custom_session_duration_type','en','Einstellungen zur Sitzungsdauer',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope_local_info','en','Wenn aktiviert, wird beim Abmelden nur die ILIAS-Sitzung beendet.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope_local','en','nur bei ILIAS abmelden',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope_global_info','en','Wenn aktiviert, wird beim Abmelden sowohl die OpenId Connect Sitzung als auch die ILIAS-Sitzung beendet.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope_global','en','Global abmelden',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope_local','en','nur bei ILIAS abmelden',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope','en','Verhalten beim Abmelden',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_logout_scope_global','en','Global abmelden',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_login_option_default_info','en','Eine Anmeldung beim OpenId Connect Server ist nicht notwendig, wenn bereits eine gültige Sitzung vorliegt.',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_login_option_default','en','Anmeldung nicht erzwingen',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_login_option_enforce_info','en','Eine Anmeldung beim OpenId Connect Server ist in jedem Fall notwendig - auch wenn bereits eine gültige Sitzung vorliegt.',NULL,NULL); @@ -26356,24 +26352,24 @@ INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_login_options','en','A INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_login_option_enforce','en','Anmeldung erzwingen',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_img_file_info','en','Laden Sie ein Bild hoch das auf der Anmeldeseite angezeigt werden soll. Das Bild verlinkt automatisch auf das OpenId Connect Anmeldeskript.',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_img','en','Bild',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_txt','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_txt_val_info','en','Tragen Sie einen Text ein der auf der Anmeldeseite angezeigt werden soll. Der Text verlinkt automatisch auf das OpenId Connect Anmeldeskript.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_le','en','Darstellung Anmeldeseite',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_txt','en','Text',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_secret','en','Client-Schlüssel',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_le','en','Darstellung Anmeldeseite',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_client_id','en','Client-ID',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_activation','en','OpenID Connect aktivieren',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_provider','en','Provider-Url',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_title','en','OpenID Connect Authentifizierung konfigurieren',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_settings_activation','en','OpenID Connect aktivieren',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidconnect','en','OpenID Connect',NULL,NULL); INSERT INTO `lng_data` VALUES ('auth','auth_oidc_role_info','en','OpenID Connect Attribute::Value (e.g: \"roles::employee\").',NULL,NULL); -INSERT INTO `lng_data` VALUES ('auth','auth_oidc_login_element_info','en','Login to ILIAS via OpenID Connect',NULL,NULL); INSERT INTO `lng_data` VALUES ('sess','sess_title','en','Title of Session',NULL,NULL); +INSERT INTO `lng_data` VALUES ('auth','auth_oidc_login_element_info','en','Login to ILIAS via OpenID Connect',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_results_tutor_body','en','Attached you will find the detailed results for the following survey',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','survey_results_tutor_subject','en','Results for survey \"%s\"',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_notification_tutor_results_alert','en','This requires an end date.',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_notification_tutor_results_info','en','After reaching the end data a cron job will send an email with the detailed survey results attached to it.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('survey','svy_notification_tutor_results','en','One E-Mail including Survey Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_export_pdf','en','Export PDF',NULL,NULL); +INSERT INTO `lng_data` VALUES ('survey','svy_notification_tutor_results','en','One E-Mail including Survey Results',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_chart_download','en','Download Chart',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_eval_captions_perc','en','Percentage',NULL,NULL); INSERT INTO `lng_data` VALUES ('survey','svy_eval_captions_abs','en','Absolute',NULL,NULL); @@ -26402,8 +26398,8 @@ INSERT INTO `lng_data` VALUES ('meta','meta_oer_blocked_info','en','Will not be INSERT INTO `lng_data` VALUES ('meta','meta_oer_blocked','en','Ignored by OER Harvester',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_oer_target','en','Category for Release OER Content',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_oer_copyright_selection_info','en','Nur Objekte, die unter den/der ausgewählten Lizenz veröffentlicht sind, werden in die OER-Kategorie verknüpft.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('meta','meta_oer_copyright_selection','en','Lizenzauswahl',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_oer_harvester_desc','en','OER Harvester',NULL,NULL); +INSERT INTO `lng_data` VALUES ('meta','meta_oer_copyright_selection','en','Lizenzauswahl',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','meta_oer_harvester','en','OER Harvester',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','md_adv_edit_complex_option','en','Edit Option Properties',NULL,NULL); INSERT INTO `lng_data` VALUES ('meta','udf_type_address','en','Address',NULL,NULL); @@ -26419,27 +26415,27 @@ INSERT INTO `lng_data` VALUES ('rep','rep_target_location','en','Target Location INSERT INTO `lng_data` VALUES ('rep','rep_failure_trashed_trash','en','You selected objects that cannot be restored to their original location, because their parent objects were deleted. Please uncheck the respective object in the table or select the Restore to New Location instead.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','btn_undelete_new_location','en','Restore (new location)',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','btn_undelete_origin_location','en','Restore (same location)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rep','rep_trash_table_col_deleted_on','en','Deleted on',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_trash_table_col_num_subs','en','Number Subitems',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_trash_table_col_deleted_by','en','Deleted by',NULL,NULL); -INSERT INTO `lng_data` VALUES ('rep','rep_trash_table_col_deleted_on','en','Deleted on',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_no_preferences_for_you','en','No preferences have been stored for you.',NULL,NULL); INSERT INTO `lng_data` VALUES ('rep','rep_trash_table_title','en','Deleted objects below:',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_pref_book_cron_info','en','Automatically book pools using preferences after the deadline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_no_preferences_for_you','en','No preferences have been stored for you.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_pref_book_cron','en','Booking with Preferences',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_all_users','en','All Participants',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_pref_book_cron_info','en','Automatically book pools using preferences after the deadline',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_pref_overview','en','Overview',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_all_users','en','All Participants',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_your_preferences','en','Your Preferences',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_no_bookings_for_you','en','No reservations have been performed for you.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_your_bookings','en','Your Reservations',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_preferences','en','Preferences',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_pref_deadline','en','Deadline',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_your_bookings','en','Your Reservations',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_preference_info','en','Please select %1 preference(s) until %2. After the deadline bookings will be done automatically based on the preferences of all users.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_pref_deadline','en','Deadline',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_nr_of_preferences_info','en','Number of preferences each participant can indicate.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_nr_of_preferences','en','Number of Preferences',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none_preference_info','en','This type can be used for seminar papers, seminar places and such. Participants will indicate their preferences. Items will be assigned automatically after the preferences deadline.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none_preference','en','No Schedule, Using Preferences',NULL,NULL); -INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none_direct','en','No Schedule, Direct Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none_direct_info','en','This type can be used for seminar papers, seminar places and such. Participants can book items directly.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('book','book_schedule_type_none_direct','en','No Schedule, Direct Booking',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_preferences_saved','en','The preferences have been saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_not_enough_preferences','en','You selected not enough preferences. The preferences have not been saved.',NULL,NULL); INSERT INTO `lng_data` VALUES ('book','book_too_many_preferences','en','You selected too many preferences. The preferences have not been saved.',NULL,NULL); @@ -26450,41 +26446,41 @@ INSERT INTO `lng_data` VALUES ('chatroom_adm','osc_adm_browser_noti_label','en', INSERT INTO `lng_data` VALUES ('chatroom','osc_browser_noti_req_permission_error','en','The browser notifications could not be enabled because you did not grant access. Please remove this domain from the list of blocked domains in the notification settings of your browser or operating system.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','osc_browser_noti_no_permission_error','en','Please remove this domain from the list of blocked domains in the notification settings of your browser or operating system. Otherwise you will not be able to receive browser notifications.',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','osc_browser_noti_no_support_error','en','Browser notifications are not supported in your browser. Please ensure you are requesting ILIAS via HTTPS and use a supported browser.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','osc_enable_browser_notifications_label','en','Browser Notifications',NULL,NULL); INSERT INTO `lng_data` VALUES ('chatroom','osc_enable_browser_notifications_info','en','If enabled, a browser notification will be shown if you receive new messages and conversations when the ILIAS browser tab is in background, or if the browser is hidden. You will also receive a browser notification for new messages in a conversation after %s minute(s) of idling if the ILIAS tab is in foreground.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('chatroom','osc_noti_title','en','New Chat Message',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_set_publishing_options','en','Set publishing options',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','osc_noti_title','en','New Chat Message',NULL,NULL); +INSERT INTO `lng_data` VALUES ('chatroom','osc_enable_browser_notifications_label','en','Browser Notifications',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_set_visibilty_options','en','Set visibility options',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','show_own_online_status','en','Show My Online Status',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_profile_data_checked','en','Profile data checked',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_check_profile_data','en','Check profile data',NULL,NULL); -INSERT INTO `lng_data` VALUES ('user','user_publish_options','en','Publish Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_visibility_settings','en','Visibility',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_save_continue','en','Save and Continue',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_profile_data','en','Profile Data',NULL,NULL); +INSERT INTO `lng_data` VALUES ('user','user_publish_options','en','Publish Profile',NULL,NULL); INSERT INTO `lng_data` VALUES ('user','user_privacy_checklist','en','Privacy Checklist',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_dashboard','en','Dashboard',NULL,NULL); INSERT INTO `lng_data` VALUES ('help','help_no_content','en','There is no help content available for the current screen. You may use the search tool.',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_sort_by_start_date','en','Sort by Start Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_sort_by_type','en','Sort by Type',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_sort_by_start_date','en','Sort by Start Date',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_sort_by_location','en','Sort by Location',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_activation','en','activation',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_tile','en','Tile',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_list','en','List',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_avail_presentation','en','Available Presentations',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_default_presentation','en','Default Presentation',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_avail_presentation','en','Available Presentations',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_sortation','en','Sortation',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_presentation','en','Presentation',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_default_sortation','en','Default Sortation',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_avail_sortation','en','Available Sortations',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_enable_mail','en','Mail',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_default_sortation','en','Default Sortation',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_enable_task','en','Tasks',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_enable_mail','en','Mail',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_enable_cal','en','Calendar',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_enable_news','en','News',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_enable_favourites','en','Favourites',NULL,NULL); +INSERT INTO `lng_data` VALUES ('dash','dash_enable_memberships','en','My Courses and Groups',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_view_courses_groups','en','Section ‘My Courses and Groups’',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_view_favourites','en','Section ‘Favourites’',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_enable_cal','en','Calendar',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_enable_memberships','en','My Courses and Groups',NULL,NULL); -INSERT INTO `lng_data` VALUES ('dash','dash_enable_favourites','en','Favourites',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_side_panel','en','Side Panel',NULL,NULL); INSERT INTO `lng_data` VALUES ('dash','dash_main_panel','en','Main Panel',NULL,NULL); INSERT INTO `lng_data` VALUES ('pwsp','pwsp_enable_wsp_links','en','Enable Links',NULL,NULL); @@ -26507,6 +26503,8 @@ INSERT INTO `lng_data` VALUES ('note','note_enable_comments_del_user','en','Comm INSERT INTO `lng_data` VALUES ('administration','adm_communication','en','Communication',NULL,NULL); INSERT INTO `lng_data` VALUES ('administration','org_op_edit_user_accounts','en','Edit User Accounts',NULL,NULL); INSERT INTO `lng_data` VALUES ('note','note_enable_comments','en','Enable Comments',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','tools','en','Tools',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','more','en','More',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_coms','en','Comments',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_coms_desc','en','Comments settings',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','obj_nots','en','Notes',NULL,NULL); @@ -26536,6 +26534,18 @@ INSERT INTO `lng_data` VALUES ('rbac','rbac_form_copy_roles_adjust_type_remove', INSERT INTO `lng_data` VALUES ('rbac','rbac_form_copy_roles_adjust_type','en','Kind of Adapting Permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_form_copy_roles_adjust_type_add','en','Add permissions',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','rbac_form_copy_roles_adjust_type_clone','en','Copy permissions',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_tag_cloud','en','Tag Cloud',NULL,NULL); +INSERT INTO `lng_data` VALUES ('obj','obj_tool_setting_tag_cloud_info','en','The ‘Tag Cloud’ block will be displayed inside the ‘Content’ tab.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('administration','adm_show_comments_tagging_in_lists_tags','en','Display tags instead of number',NULL,NULL); +INSERT INTO `lng_data` VALUES ('tagging','tagging_other_users','en','Tags of Other Users',NULL,NULL); +INSERT INTO `lng_data` VALUES ('common','autocomplete_more','en','more',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_max_size_attachments_total','en','Please enter the maximum file size allowed as attachment per mail. This setting is not related to other resource limits, e.g. upload_max_filesize etc. (since you can attach multiple files).',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mail','mail_max_size_attachments_total_error','en','The allowed attachment size is:',NULL,NULL); +INSERT INTO `lng_data` VALUES ('grp','grp_cdf_tbl_last_edit','en','Updated (Group-specific Data)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('crs','crs_cdf_tbl_last_edit','en','Updated (Course-specific Data)',NULL,NULL); +INSERT INTO `lng_data` VALUES ('ps','cdf_edited_by_self','en','by the User',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','excs_visible','en','Exercise administration is visible',NULL,NULL); +INSERT INTO `lng_data` VALUES ('rbac','excs_read','en','User has read access to Exercise administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','excs_write','en','Edit settings in Exercise administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','excs_edit_permission','en','User can change permission settings in Exercise administration',NULL,NULL); INSERT INTO `lng_data` VALUES ('rbac','taxs_visible','en','Taxonomy administration is visible',NULL,NULL); @@ -29010,6 +29020,8 @@ INSERT INTO `lng_data` VALUES ('crs','crs_lhist_objective_completed','en','Maste INSERT INTO `lng_data` VALUES ('trac','trac_lhist_obj_completed_in','en','$1$ was completed in $2$.',NULL,NULL); INSERT INTO `lng_data` VALUES ('trac','trac_lhist_obj_completed','en','$1$ was completed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('lhist','lhist_learning_history','en','Learning History',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mme','flush','en','Remove Lost Items',NULL,NULL); +INSERT INTO `lng_data` VALUES ('mme','msg_subitem_flushed','en','Lost Items removed.',NULL,NULL); INSERT INTO `lng_data` VALUES ('mme','main','en','Main Menu',NULL,NULL); INSERT INTO `lng_data` VALUES ('mme','subtab_topitems','en','Top Items',NULL,NULL); INSERT INTO `lng_data` VALUES ('mme','subtab_subitems','en','Items',NULL,NULL); @@ -29654,6 +29666,9 @@ INSERT INTO `lng_data` VALUES ('svy','svy_finish_survey','en','Finish survey \'% INSERT INTO `lng_data` VALUES ('pwsp','pwsp_enable_personal_resources','en','Enable personal resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','personal_resources_disk_quota','en','Hard Disk Quota for Personal Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','personal_resources_disk_quota_info','en','Allows definition of a hard disk quota for each user account and each global role. This quota only affects files in the personal resources and in portfolios. As soon as a user exceeds the defined quota, ILIAS will prohibit the user to upload more files until the used disk space is again under quota.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('file','personal_workspace_disk_quota','en','Hard Disk Quota for Personal Workspace',NULL,NULL); +INSERT INTO `lng_data` VALUES ('file','personal_workspace_quota_exceeded_warning','en','You have exceeded the disk quota for your personal workspace.',NULL,NULL); +INSERT INTO `lng_data` VALUES ('file','personal_workspace_quota_status_legend','en','You are using %1$s of your available disk quota of %2$s (%3$d%%).',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','personal_resources','en','Personal Resources',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','personal_resources_quota_exceeded_warning','en','You have exceeded the disk quota for your personal resources.',NULL,NULL); INSERT INTO `lng_data` VALUES ('file','personal_resources_quota_status_legend','en','You are using %1$s of your available disk quota of %2$s (%3$d%%).',NULL,NULL); @@ -30359,6 +30374,7 @@ INSERT INTO `lng_data` VALUES ('common','lso_admin_form_title','en','Settings',N INSERT INTO `lng_data` VALUES ('common','lso_admin_form_byline','en','General Settings for Learning Sequences',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lso_admin_interval_label','en','Learning Progress Polling Interval (seconds)',NULL,NULL); INSERT INTO `lng_data` VALUES ('common','lso_admin_interval_byline','en','Poll Learning Progress every x seconds. Be careful! A low value will increase server-requests and have an impact on overall system performance. Please choose highest value possible!',NULL,NULL); +INSERT INTO `lng_data` VALUES ('prg','no_srctype_or_id','en','Id and type may not be empty.',NULL,NULL); -- -- Table structure for table `lng_log` @@ -30392,7 +30408,7 @@ CREATE TABLE `lng_modules` ( INSERT INTO `lng_modules` VALUES ('acc','en','a:54:{s:14:\"acc_access_key\";s:10:\"Access Key\";s:15:\"acc_access_keys\";s:11:\"Access Keys\";s:12:\"acc_comp_frm\";s:5:\"Forum\";s:15:\"acc_comp_global\";s:6:\"Global\";s:13:\"acc_comp_mail\";s:4:\"Mail\";s:13:\"acc_component\";s:9:\"Component\";s:10:\"acc_delete\";s:6:\"Delete\";s:16:\"acc_forward_mail\";s:12:\"Forward Mail\";s:12:\"acc_function\";s:8:\"Function\";s:17:\"acc_mark_all_read\";s:13:\"Mark All Read\";s:8:\"acc_next\";s:4:\"Next\";s:12:\"acc_previous\";s:8:\"Previous\";s:9:\"acc_reply\";s:5:\"Reply\";s:12:\"acc_tree_off\";s:8:\"Tree Off\";s:11:\"acc_tree_on\";s:7:\"Tree On\";s:16:\"acc_ctrl_cpt_txt\";s:29:\"Accessibility Control Concept\";s:26:\"acc_add_document_btn_label\";s:12:\"Add Document\";s:21:\"acc_form_new_doc_head\";s:15:\"Create Document\";s:22:\"acc_form_edit_doc_head\";s:13:\"Edit Document\";s:23:\"acc_form_document_title\";s:5:\"Title\";s:28:\"acc_form_document_title_info\";s:38:\"Please enter a title for the document.\";s:17:\"acc_form_document\";s:8:\"Document\";s:22:\"acc_form_document_info\";s:193:\"Please select a file from your local filesystem. You can either upload a plain text file, or a simple HTML file. HTML files will be purified, only the contents of the body element will be used.\";s:21:\"acc_form_document_new\";s:14:\"Change Content\";s:26:\"acc_form_document_new_info\";s:233:\"Please select a file from your local filesystem. You can either upload a plain text file, or a simple HTML file. HTML files will be purified, only the contents of the body element will be used. The existing contents will be replaced.\";s:33:\"acc_form_document_content_changed\";s:117:\"The contents of the uploaded file was purified by ILIAS. Please check the result and upload a new file, if necessary.\";s:18:\"acc_tbl_docs_title\";s:9:\"Documents\";s:25:\"acc_tbl_docs_head_sorting\";s:7:\"Sorting\";s:23:\"acc_tbl_docs_head_title\";s:5:\"Title\";s:25:\"acc_tbl_docs_head_created\";s:13:\"Creation Date\";s:29:\"acc_tbl_docs_head_last_change\";s:11:\"Last Change\";s:26:\"acc_tbl_docs_head_criteria\";s:8:\"Criteria\";s:33:\"acc_tbl_docs_action_add_criterion\";s:13:\"Add Criterion\";s:31:\"acc_tbl_docs_cell_not_criterion\";s:21:\"No criterion assigned\";s:33:\"acc_doc_detach_crit_confirm_title\";s:16:\"Detach Criterion\";s:14:\"acc_doc_delete\";s:15:\"Delete Document\";s:24:\"acc_doc_sure_detach_crit\";s:47:\"Are your sure you want to detach the criterion?\";s:21:\"acc_doc_crit_detached\";s:32:\"The criterion has been detached.\";s:21:\"acc_doc_crit_attached\";s:32:\"The criterion has been attached.\";s:20:\"acc_doc_crit_changed\";s:31:\"The criterion has been changed.\";s:30:\"acc_form_attach_criterion_head\";s:16:\"Attach Criterion\";s:28:\"acc_form_edit_criterion_head\";s:25:\"Edit Criterion Assignment\";s:18:\"acc_form_criterion\";s:9:\"Criterion\";s:12:\"acc_document\";s:8:\"Document\";s:27:\"acc_sure_delete_documents_s\";s:45:\"Are you sure you want to delete the document?\";s:27:\"acc_sure_delete_documents_p\";s:55:\"Are you sure you want to delete the selected documents?\";s:23:\"acc_deleted_documents_s\";s:30:\"The document has been deleted.\";s:23:\"acc_deleted_documents_p\";s:32:\"The documents have been deleted.\";s:17:\"acc_saved_sorting\";s:27:\"The sorting has been saved.\";s:46:\"acc_criterion_assignment_must_be_unique_insert\";s:99:\"You cannot attach this criterion with this value. There is already an identical criterion attached.\";s:46:\"acc_criterion_assignment_must_be_unique_update\";s:93:\"You cannot change the criterion as desired. There is already an identical criterion attached.\";s:26:\"acc_crit_type_usr_language\";s:16:\"Profile Language\";s:20:\"acc_last_rep_visited\";s:23:\"Repository/Last Visited\";s:13:\"acc_dashboard\";s:9:\"Dashboard\";}'); INSERT INTO `lng_modules` VALUES ('adm','en','a:7:{s:20:\"adm_support_contacts\";s:17:\"Technical Support\";s:30:\"adm_awrn_support_contacts_info\";s:149:\"All technical support contacts are listed. Users are defined as technical support contacts in the section \"General Settings\" > \"Contact Information\".\";s:25:\"adm_support_contacts_info\";s:133:\"Support contacts used in the footer link and (if activated) in the ‘Who is online?’-Tool. Comma separated list of account logins.\";s:23:\"adm_acc_ctrl_cpt_enable\";s:36:\"Enable Accessibility Control Concept\";s:21:\"adm_acc_ctrl_cpt_desc\";s:84:\"If activated, the link for the Accessibility Control Concept shows up in the Footer.\";s:26:\"adm_accessibility_contacts\";s:30:\"Accessibility Point of Contact\";s:31:\"adm_accessibility_contacts_info\";s:103:\"Contacts for reporting accessibility issues in the footer link. Comma separated list of account logins.\";}'); -INSERT INTO `lng_modules` VALUES ('administration','en','a:274:{s:25:\"org_op_edit_user_accounts\";s:18:\"Edit User Accounts\";s:17:\"adm_communication\";s:13:\"Communication\";s:29:\"adm_pub_section_domain_filter\";s:13:\"Domain Filter\";s:34:\"adm_pub_section_domain_filter_info\";s:99:\"Domain filters granting anonymous access. Enter one ore more domains, which allow anonymous access.\";s:24:\"adm_item_cmd_asynch_info\";s:167:\"Action commands, e.g. in the repository, are loaded asynchronously. This increases performance in general, but slows down loading of action command lists a little bit.\";s:19:\"adm_item_cmd_asynch\";s:41:\"Load Resource Action Lists Asynchronously\";s:15:\"adm_locale_info\";s:155:\"Locale setting influences e.g. sorting in lists. Examples are nl_NL or de_DE. Multiple locales can be separated by comma. The first valid one will be used.\";s:10:\"adm_locale\";s:6:\"Locale\";s:22:\"allow_change_loginname\";s:51:\"Permit Change of Login Names in ‘Personal Data’\";s:16:\"analysis_options\";s:16:\"Analysis options\";s:12:\"analyze_data\";s:33:\"Analyze and repair data integrity\";s:24:\"analyzing_tree_structure\";s:27:\"Analyzing tree structure...\";s:28:\"auth_auth_mode_determination\";s:47:\"Authentication Method Determination (for Login)\";s:14:\"auth_automatic\";s:14:\"Fixed Sequence\";s:12:\"auth_by_user\";s:11:\"By the User\";s:23:\"auth_kind_determination\";s:21:\"Kind of Determination\";s:28:\"auth_mode_determination_info\";s:158:\"Choose either if the users have to select their authentication method on the login screen or if this is managed by a fixed sequence of authentication methods.\";s:10:\"clean_desc\";s:78:\"Remove invalid references and tree entries. Initialize gaps in tree structure.\";s:5:\"clean\";s:8:\"Clean up\";s:14:\"cleaning_final\";s:17:\"Final cleaning...\";s:8:\"cleaning\";s:11:\"Cleaning...\";s:13:\"course_export\";s:18:\"Visible in Courses\";s:8:\"disabled\";s:8:\"Disabled\";s:4:\"done\";s:4:\"Done\";s:14:\"dump_tree_desc\";s:82:\"Perform an analysis of the tree and print all tree nodes along with analysis data.\";s:9:\"dump_tree\";s:9:\"Dump tree\";s:12:\"dumping_tree\";s:15:\"Dumping tree...\";s:10:\"found_none\";s:11:\"none found.\";s:5:\"found\";s:6:\"found.\";s:17:\"history_loginname\";s:18:\"Login Name History\";s:17:\"initializing_gaps\";s:28:\"Initializing gaps in tree...\";s:20:\"language_all_modules\";s:11:\"All modules\";s:24:\"language_change_settings\";s:24:\"Change Language Settings\";s:28:\"language_clear_local_changes\";s:35:\"Clear local changes in the database\";s:22:\"language_cleared_local\";s:47:\"The local changes were cleared in the database.\";s:16:\"language_compare\";s:7:\"Compare\";s:24:\"language_default_entries\";s:18:\" (default entries)\";s:26:\"language_error_clear_local\";s:55:\"The local changed could not be cleared in the database!\";s:25:\"language_error_read_local\";s:58:\"The custom language file does not exist or cannot be read!\";s:20:\"language_export_file\";s:20:\"Export Language File\";s:22:\"language_file_imported\";s:34:\"The language file %s was imported.\";s:19:\"language_file_scope\";s:19:\"Language file scope\";s:32:\"language_former_file_description\";s:282:\"To compare your local changes with the changes of the last update, please copy the language file of the previously installed ILIAS version to the path mentioned above. Before the next update you can do this with the option \'Backup the standard language file\' on the maintenance tab.\";s:26:\"language_former_file_equal\";s:61:\"The file %s is identical to the current language file.\";s:28:\"language_former_file_missing\";s:30:\"The file %s is missing.\";s:20:\"language_import_file\";s:20:\"Import Language File\";s:27:\"language_load_local_changes\";s:43:\"Load custom language file into the database\";s:21:\"language_loaded_local\";s:54:\"The custom language file was loaded into the database.\";s:31:\"language_maintain_local_changes\";s:22:\"Maintain local changes\";s:17:\"language_maintain\";s:8:\"Maintain\";s:20:\"language_maintenance\";s:20:\"Language Maintenance\";s:29:\"language_mode_existing_delete\";s:23:\"Delete existing entries\";s:30:\"language_mode_existing_keepall\";s:25:\"Keep all existing entries\";s:30:\"language_mode_existing_keepnew\";s:22:\"Keep all local changes\";s:30:\"language_mode_existing_replace\";s:24:\"Replace existing entries\";s:22:\"language_mode_existing\";s:16:\"Existing Entries\";s:25:\"language_note_translation\";s:142:\"Page translation mode is activated for each language separately. Additionally the user needs read and write permission on the language folder.\";s:28:\"language_process_maintenance\";s:19:\"Process Maintenance\";s:27:\"language_save_local_changes\";s:44:\"Save all changes to the custom language file\";s:24:\"language_scope_commented\";s:49:\"Shows only entries with comments in language file\";s:24:\"language_scope_conflicts\";s:24:\"Local and update changes\";s:24:\"language_scope_dbremarks\";s:44:\"Shows only entries with comments in database\";s:24:\"language_scope_different\";s:31:\"Different from compare language\";s:20:\"language_scope_equal\";s:25:\"Equal to compare language\";s:21:\"language_scope_global\";s:11:\"All entries\";s:20:\"language_scope_local\";s:18:\"Local changes only\";s:24:\"language_scope_unchanged\";s:22:\"Unchanged entries only\";s:17:\"language_settings\";s:17:\"Language Settings\";s:19:\"language_statistics\";s:10:\"Statistics\";s:28:\"language_translation_enabled\";s:24:\"Page translation enabled\";s:13:\"log_scan_desc\";s:65:\"Write scan results to ‘scanlog.log’ in client data directory.\";s:8:\"log_scan\";s:16:\"Log scan results\";s:35:\"loginname_change_blocking_time_info\";s:138:\"Insert a period in days that a user has to wait before changing again its login name. If you enter 0, user can change login names anytime.\";s:46:\"loginname_change_blocking_time_invalidity_info\";s:30:\"Please insert a numeric value.\";s:30:\"loginname_change_blocking_time\";s:38:\"Blocking Time for Changing Login Names\";s:22:\"loginname_history_info\";s:134:\"If activated, login name changes will be logged in database. This history is accessible in the database table ‘loginname_history’.\";s:16:\"nothing_to_purge\";s:19:\"Nothing to purge...\";s:17:\"nothing_to_remove\";s:20:\"Nothing to remove...\";s:18:\"nothing_to_restore\";s:21:\"Nothing to restore...\";s:12:\"obj_mds_desc\";s:49:\"Configure Metadata and Advanced Metadata Settings\";s:7:\"obj_mds\";s:8:\"Metadata\";s:7:\"options\";s:7:\"Options\";s:14:\"output_options\";s:14:\"Output options\";s:15:\"path_to_mkisofs\";s:15:\"Path to mkisofs\";s:45:\"reuse_of_loginnames_contained_in_history_info\";s:128:\"If activated, it is allowed to reuse any login name that is already saved in the history (even if it belongs to a deleted user).\";s:20:\"purge_age_limit_desc\";s:115:\"If this field contains a value, only objects which were deleted before the specified number of days will be purged.\";s:15:\"purge_age_limit\";s:9:\"Limit age\";s:22:\"purge_count_limit_desc\";s:84:\"If this field contains a value, only the specified number of objects will be purged.\";s:17:\"purge_count_limit\";s:11:\"Limit count\";s:18:\"purge_missing_desc\";s:57:\"Remove all missing and unbound objects found from system.\";s:13:\"purge_missing\";s:21:\"Purge missing objects\";s:16:\"purge_trash_desc\";s:44:\"Remove all objects in trash bin from system.\";s:11:\"purge_trash\";s:21:\"Purge deleted objects\";s:21:\"purge_type_limit_desc\";s:82:\"If this field contains a value, only objects of the specified type will be purged.\";s:16:\"purge_type_limit\";s:10:\"Limit type\";s:20:\"purging_missing_objs\";s:26:\"Purging missing objects...\";s:13:\"purging_trash\";s:16:\"Purging trash...\";s:20:\"purging_unbound_objs\";s:26:\"Purging unbound objects...\";s:7:\"purging\";s:10:\"Purging...\";s:23:\"removing_invalid_childs\";s:32:\"Removing invalid tree entries...\";s:21:\"removing_invalid_refs\";s:30:\"Removing invalid references...\";s:22:\"removing_invalid_rolfs\";s:32:\"Removing invalid role folders...\";s:14:\"repair_options\";s:14:\"Repair options\";s:20:\"restore_missing_desc\";s:54:\"Restore missing and unbound objects to RecoveryFolder.\";s:15:\"restore_missing\";s:23:\"Restore missing objects\";s:18:\"restore_trash_desc\";s:51:\"Restore all objects in trash bin to RecoveryFolder.\";s:13:\"restore_trash\";s:23:\"Restore deleted objects\";s:22:\"restoring_missing_objs\";s:28:\"Restoring missing objects...\";s:15:\"restoring_trash\";s:18:\"Restoring trash...\";s:22:\"restoring_unbound_objs\";s:44:\"Restoring unbound objects and sub-objects...\";s:9:\"restoring\";s:12:\"Restoring...\";s:40:\"reuse_of_loginnames_contained_in_history\";s:20:\"Reuse of Login Names\";s:9:\"scan_desc\";s:58:\"Scan system for corrupted/invalid/missing/unbound objects.\";s:12:\"scan_details\";s:12:\"Scan details\";s:10:\"scan_modes\";s:15:\"Scan modes used\";s:4:\"scan\";s:4:\"Scan\";s:15:\"scanning_system\";s:18:\"Scanning system...\";s:22:\"searching_deleted_objs\";s:32:\"Searching for deleted objects...\";s:24:\"searching_invalid_childs\";s:37:\"Searching for invalid tree entries...\";s:22:\"searching_invalid_refs\";s:35:\"Searching for invalid references...\";s:23:\"searching_invalid_rolfs\";s:37:\"Searching for invalid role folders...\";s:22:\"searching_missing_objs\";s:32:\"Searching for missing objects...\";s:22:\"searching_unbound_objs\";s:32:\"Searching for unbound objects...\";s:7:\"skipped\";s:7:\"skipped\";s:10:\"start_scan\";s:6:\"Start!\";s:11:\"systemcheck\";s:12:\"System check\";s:12:\"tree_corrupt\";s:44:\"Tree is corrupted! See scan log for details.\";s:26:\"usr_loginname_history_info\";s:67:\"The user changed its login at last at %s. The former login was: %s.\";s:13:\"view_last_log\";s:18:\"View last Scan log\";s:8:\"view_log\";s:12:\"View details\";s:19:\"frm_displayed_infos\";s:21:\"Displayed Information\";s:18:\"frm_disp_info_desc\";s:71:\"Please select the attributes which should to be shown in the overviews.\";s:25:\"adm_rep_tree_presentation\";s:28:\"Repository Tree Presentation\";s:22:\"adm_rep_tree_only_cntr\";s:14:\"Container Only\";s:27:\"adm_rep_tree_only_cntr_info\";s:47:\"Only categories, courses and groups are listed.\";s:22:\"adm_rep_tree_all_types\";s:18:\"All Resource Types\";s:27:\"adm_rep_tree_all_types_info\";s:46:\"All types of resources are listed in the tree.\";s:26:\"adm_rep_tree_limit_grp_crs\";s:48:\"Show limited context tree in courses and groups.\";s:16:\"adm_db_benchmark\";s:12:\"DB Benchmark\";s:25:\"adm_activate_db_benchmark\";s:18:\"Activate Benchmark\";s:30:\"adm_activate_db_benchmark_desc\";s:62:\"Benchmarking will be automatically disabled after one request.\";s:21:\"adm_db_benchmark_user\";s:17:\"User Account Name\";s:26:\"adm_db_benchmark_user_desc\";s:45:\"Only measurements for this user will be made.\";s:26:\"adm_db_bench_chronological\";s:13:\"Chronological\";s:26:\"adm_db_bench_slowest_first\";s:13:\"Slowest First\";s:26:\"adm_db_bench_sorted_by_sql\";s:13:\"Sorted by SQL\";s:7:\"adm_sql\";s:3:\"SQL\";s:8:\"adm_time\";s:4:\"Time\";s:27:\"adm_db_bench_by_first_table\";s:32:\"Aggregated by First Table in SQL\";s:17:\"adm_nr_statements\";s:20:\"Number of Statements\";s:9:\"adm_table\";s:5:\"Table\";s:12:\"group_export\";s:17:\"Visible in Groups\";s:31:\"adm_rep_tree_limit_grp_crs_info\";s:84:\"This relies on and automatically activates the ‘Synchronize Tree Frame’ feature.\";s:21:\"language_scope_merged\";s:52:\"Local changes merged into the standard language file\";s:20:\"language_scope_added\";s:20:\"Local additions only\";s:28:\"language_merge_local_changes\";s:51:\"Merge local changes into the standard language file\";s:31:\"language_delete_local_additions\";s:38:\"Delete local additions in the database\";s:27:\"language_error_write_global\";s:44:\"The standard language file can\'t be written!\";s:27:\"language_error_local_missed\";s:40:\"The custom language file does not exist!\";s:27:\"language_error_delete_local\";s:42:\"The custom language file can\'t be deleted!\";s:27:\"language_local_file_deleted\";s:37:\"The custom language file was deleted.\";s:26:\"language_remove_local_file\";s:31:\"Delete the custom language file\";s:22:\"language_merged_global\";s:62:\"The local changes were merged into the standard language file.\";s:20:\"apache_auth_settings\";s:6:\"Apache\";s:15:\"apache_settings\";s:29:\"Configure LDAP Authentication\";s:18:\"apache_enable_auth\";s:36:\"Enable Apache Authentication support\";s:17:\"apache_autocreate\";s:25:\"Enable account generation\";s:19:\"apache_default_role\";s:17:\"Default user role\";s:19:\"apache_enable_local\";s:28:\"Enable local user assignment\";s:18:\"apache_enable_ldap\";s:27:\"Enable LDAP user assignment\";s:26:\"apache_auth_indicator_name\";s:45:\"Indicator-field for successful authentication\";s:27:\"apache_auth_indicator_value\";s:45:\"Indicator-value for successful authentication\";s:33:\"apache_auth_enable_override_login\";s:27:\"Override default login page\";s:33:\"apache_auth_target_override_login\";s:32:\"Target url for custom login page\";s:27:\"apache_auth_username_config\";s:22:\"Username configuration\";s:32:\"apache_auth_username_config_type\";s:4:\"Type\";s:35:\"apache_auth_username_direct_mapping\";s:19:\"Straight assignment\";s:37:\"apache_auth_username_extended_mapping\";s:19:\"Extended assignment\";s:32:\"apache_auth_username_by_function\";s:36:\"Assign user names by custom function\";s:40:\"apache_ldap_hint_ldap_must_be_configured\";s:41:\"LDAP must be configured in administration\";s:45:\"apache_auth_username_direct_mapping_fieldname\";s:20:\"Field for assignment\";s:11:\"auth_apache\";s:6:\"Apache\";s:31:\"apache_settings_changed_success\";s:19:\"Configuration saved\";s:38:\"apache_auth_authenticate_on_login_page\";s:54:\"Try Apache authentication when entering the login page\";s:22:\"adm_settings_templates\";s:18:\"Settings Templates\";s:25:\"adm_add_settings_template\";s:12:\"Add Template\";s:26:\"adm_edit_settings_template\";s:13:\"Edit Template\";s:13:\"adm_hide_tabs\";s:9:\"Hide Tabs\";s:23:\"adm_predefined_settings\";s:19:\"Predefined Settings\";s:9:\"adm_value\";s:16:\"Predefined Value\";s:8:\"adm_hide\";s:21:\"Hide in Settings Form\";s:33:\"adm_sure_delete_settings_template\";s:53:\"Do you really want to delete the following templates?\";s:13:\"user_criteria\";s:20:\"Unique user criteria\";s:18:\"user_criteria_desc\";s:136:\"Unique user criteria that is used for test results import/export. This is needed to identify identical users on different ILIAS systems.\";s:20:\"apache_auth_security\";s:17:\"Security Settings\";s:19:\"apache_auth_domains\";s:27:\"Allowed Redirection Domains\";s:31:\"apache_auth_domains_description\";s:282:\"Enter one domain per line to allow redirection to this target.
If ILIAS is reachable by more than one domain please enter all target you want to allow.
Example: example.com allows the redirection to http://example.com and http://www.example.com and all pages located there.\";s:8:\"obj_blga\";s:4:\"Blog\";s:13:\"obj_blga_desc\";s:20:\"Global Blog Settings\";s:8:\"obj_prfa\";s:9:\"Portfolio\";s:13:\"obj_prfa_desc\";s:25:\"Global Portfolio Settings\";s:13:\"obj_chta_desc\";s:19:\"Chat Administration\";s:25:\"adm_layout_and_navigation\";s:21:\"Layout and Navigation\";s:34:\"adm_show_comments_tagging_in_lists\";s:55:\"Show number of notes, comments and tags in object lists\";s:8:\"obj_otpl\";s:18:\"Didactic Templates\";s:13:\"obj_otpl_desc\";s:69:\"Template for creating new objects with predefined permission settings\";s:27:\"adm_rep_shorten_description\";s:30:\"Limited Length of Descriptions\";s:32:\"adm_rep_shorten_description_info\";s:96:\"If activated all descriptions in object lists are presented with a maximum number of characters.\";s:34:\"adm_rep_shorten_description_length\";s:28:\"Maximum number of characters\";s:11:\"adm_imprint\";s:12:\"Legal Notice\";s:20:\"adm_imprint_inactive\";s:63:\"Legal notice is not active and users are not able to access it.\";s:23:\"adm_user_starting_point\";s:23:\"Personal Starting Point\";s:28:\"adm_user_starting_point_info\";s:53:\"Select the page or object which is shown after login.\";s:30:\"adm_user_starting_point_object\";s:17:\"Repository Object\";s:30:\"adm_user_starting_point_ref_id\";s:12:\"Reference-Id\";s:32:\"adm_user_starting_point_personal\";s:16:\"Personal Setting\";s:37:\"adm_user_starting_point_personal_info\";s:50:\"If activated users may select their starting page.\";s:20:\"adm_adm_role_protect\";s:26:\"Protect Administrator Role\";s:25:\"adm_adm_role_protect_info\";s:93:\"If enabled, only administrator are allowed to de/assign users from/to the administrator role.\";s:21:\"system_check_no_owner\";s:17:\"Ownerless Objects\";s:9:\"adm_https\";s:5:\"HTTPS\";s:25:\"adm_external_setting_edit\";s:13:\"Edit Settings\";s:36:\"adm_user_starting_point_invalid_info\";s:37:\"This feature is currently not active.\";s:14:\"vc_information\";s:32:\"Show Version Control Information\";s:29:\"vc_information_not_determined\";s:58:\"ILIAS could not determine any version control information.\";s:20:\"svn_revision_current\";s:20:\"Current Revision: %s\";s:24:\"svn_revision_last_change\";s:25:\"Last Changed Revision: %s\";s:8:\"svn_root\";s:8:\"Root: %s\";s:8:\"svn_path\";s:8:\"Path: %s\";s:12:\"git_revision\";s:10:\"Number: %s\";s:14:\"git_hash_short\";s:23:\"Commit Hash (short): %s\";s:15:\"git_last_commit\";s:15:\"Last Commit: %s\";s:27:\"adm_captcha_anonymous_short\";s:7:\"Captcha\";s:25:\"adm_captcha_anonymous_frm\";s:122:\"Activate captcha for anonymous in forums. Please keep in mind that this may effect the accessibility of your installation.\";s:26:\"adm_captcha_anonymous_auth\";s:126:\"Activate captcha for anonymous in login form. Please keep in mind that this may effect the accessibility of your installation.\";s:25:\"adm_captcha_anonymous_reg\";s:133:\"Activate captcha for anonymous in registration form. Please keep in mind that this may effect the accessibility of your installation.\";s:26:\"adm_captcha_anonymous_wiki\";s:121:\"Activate captcha for anonymous in wikis. Please keep in mind that this may effect the accessibility of your installation.\";s:8:\"obj_excs\";s:8:\"Exercise\";s:13:\"obj_excs_desc\";s:24:\"Global Exercise Settings\";s:8:\"obj_taxs\";s:8:\"Taxonomy\";s:13:\"obj_taxs_desc\";s:24:\"Global Taxonomy Settings\";s:39:\"adm_show_comments_tagging_in_lists_tags\";s:30:\"Display tags instead of number\";s:34:\"language_mode_existing_delete_info\";s:281:\"Delete all entries in the database before importing the file.
WARNING: The imported language file should be complete, otherwise there will be undefined language variables. If that happens, switch to the tab ‘Maintain’ and choose ‘Clear local changes in the database’.\";s:35:\"language_mode_existing_keepall_info\";s:62:\"Import only new entries that do not yet exist in the database.\";s:35:\"language_mode_existing_keepnew_info\";s:143:\"Import new entries and overwrite all entries that still have their default values. Keep those entries that are already changed in the database.\";s:35:\"language_mode_existing_replace_info\";s:99:\"Import new entries and replace all existing entries with the new values defined in the import file.\";s:26:\"language_scope_global_info\";s:83:\"Export all database entries of this language. This can be used for backup purposes.\";s:25:\"language_scope_local_info\";s:69:\"Export all entries that are locally added or changed in the database.\";s:25:\"language_scope_added_info\";s:176:\"Export all entries that are locally added in the database. This can be used to backup additional development entries before local changes are deleted on the tab ‘Maintain’.\";s:29:\"language_scope_unchanged_info\";s:200:\"Export all default language entries that are not changed in the database. This is the opposite to ‘Local changes only’. Both together are a complete backup of the current language in the database.\";s:26:\"language_scope_merged_info\";s:196:\"Export the standard ILIAS language file with all local changes merged in alphabetically by module and identifier. This can be used to update the standard language file on the ILIAS git repository.\";s:32:\"language_save_local_changes_info\";s:300:\"Save all locally added or changed database entries to the file Customizing/global/lang/ilias_%s.lang.local and set the language status to ‘Installed With Local’. The web server must have write permission in this folder. Please note that this file is the same for all clients of this installation.\";s:32:\"language_load_local_changes_info\";s:163:\"Load the file Customizing/global/lang/ilias_%s.lang.local to the database. New entries of this file are added to the database and existing entries are overwritten.\";s:33:\"language_clear_local_changes_info\";s:145:\"Reset the database entries of this language to the default entries defined in lang/ilias_%s.lang. All local changes or additions will be removed.\";s:36:\"language_delete_local_additions_info\";s:59:\"Delete all entries that were locally added to the database.\";s:33:\"language_merge_local_changes_info\";s:160:\"Merge all local changes and additions alphabetically into the standard language file lang/ilias_%s.lang. The web server must have write permission on this file.\";s:31:\"language_remove_local_file_info\";s:187:\"Remove the file Customizing/global/lang/ilias_%s.lang.local and change the language status from ‘Installed With Local’ to ‘Installed’. The changes in the database are not touched.\";s:18:\"language_save_dist\";s:33:\"Backup the standard language file\";s:23:\"language_save_dist_info\";s:179:\"Create a backup of the standard ILIAS language file in the ILIAS data directory. This helps after an ILIAS update to find conflicst of own changes with updated language variables.\";s:19:\"language_saved_dist\";s:58:\"The backup of the standard ILIAS language file is created.\";s:25:\"language_save_dist_failed\";s:68:\"The backup of the standard ILIAS language file could not be written.\";s:19:\"adm_missing_entries\";s:15:\"Missing Entries\";s:28:\"adm_missing_entry_add_action\";s:3:\"Add\";s:21:\"adm_missing_entry_add\";s:13:\"Add New Entry\";s:35:\"adm_user_starting_point_ref_id_info\";s:168:\"Open the object that you would like to use as Personal Starting Point. Please copy the number directly following \"ref_id=\" in the browser bar into the text input field.\";s:31:\"adm_user_starting_point_inherit\";s:21:\"Use Standard-Settings\";s:36:\"adm_user_starting_point_inherit_info\";s:89:\"The settings that were made by the administrator of the platform as a whole will be used.\";s:26:\"adm_repository_and_objects\";s:22:\"Repository and Objects\";s:19:\"adm_extending_ilias\";s:15:\"Extending ILIAS\";s:19:\"adm_search_and_find\";s:15:\"Search and Find\";s:16:\"adm_achievements\";s:12:\"Achievements\";s:15:\"adm_maintenance\";s:31:\"System Settings and Maintenance\";s:23:\"adm_user_administration\";s:15:\"Users and Roles\";s:22:\"adm_personal_workspace\";s:18:\"Personal Workspace\";}'); +INSERT INTO `lng_modules` VALUES ('administration','en','a:276:{s:25:\"org_op_edit_user_accounts\";s:18:\"Edit User Accounts\";s:17:\"adm_communication\";s:13:\"Communication\";s:29:\"adm_pub_section_domain_filter\";s:13:\"Domain Filter\";s:34:\"adm_pub_section_domain_filter_info\";s:99:\"Domain filters granting anonymous access. Enter one ore more domains, which allow anonymous access.\";s:24:\"adm_item_cmd_asynch_info\";s:167:\"Action commands, e.g. in the repository, are loaded asynchronously. This increases performance in general, but slows down loading of action command lists a little bit.\";s:19:\"adm_item_cmd_asynch\";s:41:\"Load Resource Action Lists Asynchronously\";s:15:\"adm_locale_info\";s:155:\"Locale setting influences e.g. sorting in lists. Examples are nl_NL or de_DE. Multiple locales can be separated by comma. The first valid one will be used.\";s:10:\"adm_locale\";s:6:\"Locale\";s:22:\"allow_change_loginname\";s:51:\"Permit Change of Login Names in ‘Personal Data’\";s:16:\"analysis_options\";s:16:\"Analysis options\";s:12:\"analyze_data\";s:33:\"Analyze and repair data integrity\";s:24:\"analyzing_tree_structure\";s:27:\"Analyzing tree structure...\";s:28:\"auth_auth_mode_determination\";s:47:\"Authentication Method Determination (for Login)\";s:14:\"auth_automatic\";s:14:\"Fixed Sequence\";s:12:\"auth_by_user\";s:11:\"By the User\";s:23:\"auth_kind_determination\";s:21:\"Kind of Determination\";s:28:\"auth_mode_determination_info\";s:158:\"Choose either if the users have to select their authentication method on the login screen or if this is managed by a fixed sequence of authentication methods.\";s:10:\"clean_desc\";s:78:\"Remove invalid references and tree entries. Initialize gaps in tree structure.\";s:5:\"clean\";s:8:\"Clean up\";s:14:\"cleaning_final\";s:17:\"Final cleaning...\";s:8:\"cleaning\";s:11:\"Cleaning...\";s:13:\"course_export\";s:18:\"Visible in Courses\";s:8:\"disabled\";s:8:\"Disabled\";s:4:\"done\";s:4:\"Done\";s:14:\"dump_tree_desc\";s:82:\"Perform an analysis of the tree and print all tree nodes along with analysis data.\";s:9:\"dump_tree\";s:9:\"Dump tree\";s:12:\"dumping_tree\";s:15:\"Dumping tree...\";s:10:\"found_none\";s:11:\"none found.\";s:5:\"found\";s:6:\"found.\";s:17:\"history_loginname\";s:18:\"Login Name History\";s:17:\"initializing_gaps\";s:28:\"Initializing gaps in tree...\";s:20:\"language_all_modules\";s:11:\"All modules\";s:24:\"language_change_settings\";s:24:\"Change Language Settings\";s:28:\"language_clear_local_changes\";s:35:\"Clear local changes in the database\";s:22:\"language_cleared_local\";s:47:\"The local changes were cleared in the database.\";s:16:\"language_compare\";s:7:\"Compare\";s:24:\"language_default_entries\";s:18:\" (default entries)\";s:26:\"language_error_clear_local\";s:55:\"The local changed could not be cleared in the database!\";s:25:\"language_error_read_local\";s:58:\"The custom language file does not exist or cannot be read!\";s:20:\"language_export_file\";s:20:\"Export Language File\";s:22:\"language_file_imported\";s:34:\"The language file %s was imported.\";s:19:\"language_file_scope\";s:19:\"Language file scope\";s:32:\"language_former_file_description\";s:282:\"To compare your local changes with the changes of the last update, please copy the language file of the previously installed ILIAS version to the path mentioned above. Before the next update you can do this with the option \'Backup the standard language file\' on the maintenance tab.\";s:26:\"language_former_file_equal\";s:61:\"The file %s is identical to the current language file.\";s:28:\"language_former_file_missing\";s:30:\"The file %s is missing.\";s:20:\"language_import_file\";s:20:\"Import Language File\";s:27:\"language_load_local_changes\";s:43:\"Load custom language file into the database\";s:21:\"language_loaded_local\";s:54:\"The custom language file was loaded into the database.\";s:31:\"language_maintain_local_changes\";s:22:\"Maintain local changes\";s:17:\"language_maintain\";s:8:\"Maintain\";s:20:\"language_maintenance\";s:20:\"Language Maintenance\";s:29:\"language_mode_existing_delete\";s:23:\"Delete existing entries\";s:30:\"language_mode_existing_keepall\";s:25:\"Keep all existing entries\";s:30:\"language_mode_existing_keepnew\";s:22:\"Keep all local changes\";s:30:\"language_mode_existing_replace\";s:24:\"Replace existing entries\";s:22:\"language_mode_existing\";s:16:\"Existing Entries\";s:25:\"language_note_translation\";s:142:\"Page translation mode is activated for each language separately. Additionally the user needs read and write permission on the language folder.\";s:28:\"language_process_maintenance\";s:19:\"Process Maintenance\";s:27:\"language_save_local_changes\";s:44:\"Save all changes to the custom language file\";s:24:\"language_scope_commented\";s:49:\"Shows only entries with comments in language file\";s:24:\"language_scope_conflicts\";s:24:\"Local and update changes\";s:24:\"language_scope_dbremarks\";s:44:\"Shows only entries with comments in database\";s:24:\"language_scope_different\";s:31:\"Different from compare language\";s:20:\"language_scope_equal\";s:25:\"Equal to compare language\";s:21:\"language_scope_global\";s:11:\"All entries\";s:20:\"language_scope_local\";s:18:\"Local changes only\";s:24:\"language_scope_unchanged\";s:22:\"Unchanged entries only\";s:17:\"language_settings\";s:17:\"Language Settings\";s:19:\"language_statistics\";s:10:\"Statistics\";s:28:\"language_translation_enabled\";s:24:\"Page translation enabled\";s:13:\"log_scan_desc\";s:65:\"Write scan results to ‘scanlog.log’ in client data directory.\";s:8:\"log_scan\";s:16:\"Log scan results\";s:35:\"loginname_change_blocking_time_info\";s:138:\"Insert a period in days that a user has to wait before changing again its login name. If you enter 0, user can change login names anytime.\";s:46:\"loginname_change_blocking_time_invalidity_info\";s:30:\"Please insert a numeric value.\";s:30:\"loginname_change_blocking_time\";s:38:\"Blocking Time for Changing Login Names\";s:22:\"loginname_history_info\";s:134:\"If activated, login name changes will be logged in database. This history is accessible in the database table ‘loginname_history’.\";s:16:\"nothing_to_purge\";s:19:\"Nothing to purge...\";s:17:\"nothing_to_remove\";s:20:\"Nothing to remove...\";s:18:\"nothing_to_restore\";s:21:\"Nothing to restore...\";s:12:\"obj_mds_desc\";s:49:\"Configure Metadata and Advanced Metadata Settings\";s:7:\"obj_mds\";s:8:\"Metadata\";s:7:\"options\";s:7:\"Options\";s:14:\"output_options\";s:14:\"Output options\";s:15:\"path_to_mkisofs\";s:15:\"Path to mkisofs\";s:45:\"reuse_of_loginnames_contained_in_history_info\";s:128:\"If activated, it is allowed to reuse any login name that is already saved in the history (even if it belongs to a deleted user).\";s:20:\"purge_age_limit_desc\";s:115:\"If this field contains a value, only objects which were deleted before the specified number of days will be purged.\";s:15:\"purge_age_limit\";s:9:\"Limit age\";s:22:\"purge_count_limit_desc\";s:84:\"If this field contains a value, only the specified number of objects will be purged.\";s:17:\"purge_count_limit\";s:11:\"Limit count\";s:18:\"purge_missing_desc\";s:57:\"Remove all missing and unbound objects found from system.\";s:13:\"purge_missing\";s:21:\"Purge missing objects\";s:16:\"purge_trash_desc\";s:44:\"Remove all objects in trash bin from system.\";s:11:\"purge_trash\";s:21:\"Purge deleted objects\";s:21:\"purge_type_limit_desc\";s:82:\"If this field contains a value, only objects of the specified type will be purged.\";s:16:\"purge_type_limit\";s:10:\"Limit type\";s:20:\"purging_missing_objs\";s:26:\"Purging missing objects...\";s:13:\"purging_trash\";s:16:\"Purging trash...\";s:20:\"purging_unbound_objs\";s:26:\"Purging unbound objects...\";s:7:\"purging\";s:10:\"Purging...\";s:23:\"removing_invalid_childs\";s:32:\"Removing invalid tree entries...\";s:21:\"removing_invalid_refs\";s:30:\"Removing invalid references...\";s:22:\"removing_invalid_rolfs\";s:32:\"Removing invalid role folders...\";s:14:\"repair_options\";s:14:\"Repair options\";s:20:\"restore_missing_desc\";s:54:\"Restore missing and unbound objects to RecoveryFolder.\";s:15:\"restore_missing\";s:23:\"Restore missing objects\";s:18:\"restore_trash_desc\";s:51:\"Restore all objects in trash bin to RecoveryFolder.\";s:13:\"restore_trash\";s:23:\"Restore deleted objects\";s:22:\"restoring_missing_objs\";s:28:\"Restoring missing objects...\";s:15:\"restoring_trash\";s:18:\"Restoring trash...\";s:22:\"restoring_unbound_objs\";s:44:\"Restoring unbound objects and sub-objects...\";s:9:\"restoring\";s:12:\"Restoring...\";s:40:\"reuse_of_loginnames_contained_in_history\";s:20:\"Reuse of Login Names\";s:9:\"scan_desc\";s:58:\"Scan system for corrupted/invalid/missing/unbound objects.\";s:12:\"scan_details\";s:12:\"Scan details\";s:10:\"scan_modes\";s:15:\"Scan modes used\";s:4:\"scan\";s:4:\"Scan\";s:15:\"scanning_system\";s:18:\"Scanning system...\";s:22:\"searching_deleted_objs\";s:32:\"Searching for deleted objects...\";s:24:\"searching_invalid_childs\";s:37:\"Searching for invalid tree entries...\";s:22:\"searching_invalid_refs\";s:35:\"Searching for invalid references...\";s:23:\"searching_invalid_rolfs\";s:37:\"Searching for invalid role folders...\";s:22:\"searching_missing_objs\";s:32:\"Searching for missing objects...\";s:22:\"searching_unbound_objs\";s:32:\"Searching for unbound objects...\";s:7:\"skipped\";s:7:\"skipped\";s:10:\"start_scan\";s:6:\"Start!\";s:11:\"systemcheck\";s:12:\"System check\";s:12:\"tree_corrupt\";s:44:\"Tree is corrupted! See scan log for details.\";s:26:\"usr_loginname_history_info\";s:67:\"The user changed its login at last at %s. The former login was: %s.\";s:13:\"view_last_log\";s:18:\"View last Scan log\";s:8:\"view_log\";s:12:\"View details\";s:19:\"frm_displayed_infos\";s:21:\"Displayed Information\";s:18:\"frm_disp_info_desc\";s:71:\"Please select the attributes which should to be shown in the overviews.\";s:25:\"adm_rep_tree_presentation\";s:28:\"Repository Tree Presentation\";s:22:\"adm_rep_tree_only_cntr\";s:14:\"Container Only\";s:27:\"adm_rep_tree_only_cntr_info\";s:47:\"Only categories, courses and groups are listed.\";s:22:\"adm_rep_tree_all_types\";s:18:\"All Resource Types\";s:27:\"adm_rep_tree_all_types_info\";s:46:\"All types of resources are listed in the tree.\";s:26:\"adm_rep_tree_limit_grp_crs\";s:48:\"Show limited context tree in courses and groups.\";s:16:\"adm_db_benchmark\";s:12:\"DB Benchmark\";s:25:\"adm_activate_db_benchmark\";s:18:\"Activate Benchmark\";s:30:\"adm_activate_db_benchmark_desc\";s:62:\"Benchmarking will be automatically disabled after one request.\";s:21:\"adm_db_benchmark_user\";s:17:\"User Account Name\";s:26:\"adm_db_benchmark_user_desc\";s:45:\"Only measurements for this user will be made.\";s:26:\"adm_db_bench_chronological\";s:13:\"Chronological\";s:26:\"adm_db_bench_slowest_first\";s:13:\"Slowest First\";s:26:\"adm_db_bench_sorted_by_sql\";s:13:\"Sorted by SQL\";s:7:\"adm_sql\";s:3:\"SQL\";s:8:\"adm_time\";s:4:\"Time\";s:27:\"adm_db_bench_by_first_table\";s:32:\"Aggregated by First Table in SQL\";s:17:\"adm_nr_statements\";s:20:\"Number of Statements\";s:9:\"adm_table\";s:5:\"Table\";s:12:\"group_export\";s:17:\"Visible in Groups\";s:31:\"adm_rep_tree_limit_grp_crs_info\";s:84:\"This relies on and automatically activates the ‘Synchronize Tree Frame’ feature.\";s:21:\"language_scope_merged\";s:52:\"Local changes merged into the standard language file\";s:20:\"language_scope_added\";s:20:\"Local additions only\";s:28:\"language_merge_local_changes\";s:51:\"Merge local changes into the standard language file\";s:31:\"language_delete_local_additions\";s:38:\"Delete local additions in the database\";s:27:\"language_error_write_global\";s:44:\"The standard language file can\'t be written!\";s:27:\"language_error_local_missed\";s:40:\"The custom language file does not exist!\";s:27:\"language_error_delete_local\";s:42:\"The custom language file can\'t be deleted!\";s:27:\"language_local_file_deleted\";s:37:\"The custom language file was deleted.\";s:26:\"language_remove_local_file\";s:31:\"Delete the custom language file\";s:22:\"language_merged_global\";s:62:\"The local changes were merged into the standard language file.\";s:20:\"apache_auth_settings\";s:6:\"Apache\";s:15:\"apache_settings\";s:29:\"Configure LDAP Authentication\";s:18:\"apache_enable_auth\";s:36:\"Enable Apache Authentication support\";s:17:\"apache_autocreate\";s:25:\"Enable account generation\";s:19:\"apache_default_role\";s:17:\"Default user role\";s:19:\"apache_enable_local\";s:28:\"Enable local user assignment\";s:18:\"apache_enable_ldap\";s:27:\"Enable LDAP user assignment\";s:26:\"apache_auth_indicator_name\";s:45:\"Indicator-field for successful authentication\";s:27:\"apache_auth_indicator_value\";s:45:\"Indicator-value for successful authentication\";s:33:\"apache_auth_enable_override_login\";s:27:\"Override default login page\";s:33:\"apache_auth_target_override_login\";s:32:\"Target url for custom login page\";s:27:\"apache_auth_username_config\";s:22:\"Username configuration\";s:32:\"apache_auth_username_config_type\";s:4:\"Type\";s:35:\"apache_auth_username_direct_mapping\";s:19:\"Straight assignment\";s:37:\"apache_auth_username_extended_mapping\";s:19:\"Extended assignment\";s:32:\"apache_auth_username_by_function\";s:36:\"Assign user names by custom function\";s:40:\"apache_ldap_hint_ldap_must_be_configured\";s:41:\"LDAP must be configured in administration\";s:45:\"apache_auth_username_direct_mapping_fieldname\";s:20:\"Field for assignment\";s:11:\"auth_apache\";s:6:\"Apache\";s:31:\"apache_settings_changed_success\";s:19:\"Configuration saved\";s:38:\"apache_auth_authenticate_on_login_page\";s:54:\"Try Apache authentication when entering the login page\";s:22:\"adm_settings_templates\";s:18:\"Settings Templates\";s:25:\"adm_add_settings_template\";s:12:\"Add Template\";s:26:\"adm_edit_settings_template\";s:13:\"Edit Template\";s:13:\"adm_hide_tabs\";s:9:\"Hide Tabs\";s:23:\"adm_predefined_settings\";s:19:\"Predefined Settings\";s:9:\"adm_value\";s:16:\"Predefined Value\";s:8:\"adm_hide\";s:21:\"Hide in Settings Form\";s:33:\"adm_sure_delete_settings_template\";s:53:\"Do you really want to delete the following templates?\";s:13:\"user_criteria\";s:20:\"Unique user criteria\";s:18:\"user_criteria_desc\";s:136:\"Unique user criteria that is used for test results import/export. This is needed to identify identical users on different ILIAS systems.\";s:20:\"apache_auth_security\";s:17:\"Security Settings\";s:19:\"apache_auth_domains\";s:27:\"Allowed Redirection Domains\";s:31:\"apache_auth_domains_description\";s:282:\"Enter one domain per line to allow redirection to this target.
If ILIAS is reachable by more than one domain please enter all target you want to allow.
Example: example.com allows the redirection to http://example.com and http://www.example.com and all pages located there.\";s:8:\"obj_blga\";s:4:\"Blog\";s:13:\"obj_blga_desc\";s:20:\"Global Blog Settings\";s:8:\"obj_prfa\";s:9:\"Portfolio\";s:13:\"obj_prfa_desc\";s:25:\"Global Portfolio Settings\";s:13:\"obj_chta_desc\";s:19:\"Chat Administration\";s:25:\"adm_layout_and_navigation\";s:21:\"Layout and Navigation\";s:34:\"adm_show_comments_tagging_in_lists\";s:55:\"Show number of notes, comments and tags in object lists\";s:8:\"obj_otpl\";s:18:\"Didactic Templates\";s:13:\"obj_otpl_desc\";s:69:\"Template for creating new objects with predefined permission settings\";s:27:\"adm_rep_shorten_description\";s:30:\"Limited Length of Descriptions\";s:32:\"adm_rep_shorten_description_info\";s:96:\"If activated all descriptions in object lists are presented with a maximum number of characters.\";s:34:\"adm_rep_shorten_description_length\";s:28:\"Maximum number of characters\";s:11:\"adm_imprint\";s:12:\"Legal Notice\";s:20:\"adm_imprint_inactive\";s:63:\"Legal notice is not active and users are not able to access it.\";s:23:\"adm_user_starting_point\";s:23:\"Personal Starting Point\";s:28:\"adm_user_starting_point_info\";s:53:\"Select the page or object which is shown after login.\";s:30:\"adm_user_starting_point_object\";s:17:\"Repository Object\";s:30:\"adm_user_starting_point_ref_id\";s:12:\"Reference-Id\";s:32:\"adm_user_starting_point_personal\";s:16:\"Personal Setting\";s:37:\"adm_user_starting_point_personal_info\";s:50:\"If activated users may select their starting page.\";s:20:\"adm_adm_role_protect\";s:26:\"Protect Administrator Role\";s:25:\"adm_adm_role_protect_info\";s:93:\"If enabled, only administrator are allowed to de/assign users from/to the administrator role.\";s:21:\"system_check_no_owner\";s:17:\"Ownerless Objects\";s:9:\"adm_https\";s:5:\"HTTPS\";s:25:\"adm_external_setting_edit\";s:13:\"Edit Settings\";s:36:\"adm_user_starting_point_invalid_info\";s:37:\"This feature is currently not active.\";s:14:\"vc_information\";s:32:\"Show Version Control Information\";s:29:\"vc_information_not_determined\";s:58:\"ILIAS could not determine any version control information.\";s:20:\"svn_revision_current\";s:20:\"Current Revision: %s\";s:24:\"svn_revision_last_change\";s:25:\"Last Changed Revision: %s\";s:8:\"svn_root\";s:8:\"Root: %s\";s:8:\"svn_path\";s:8:\"Path: %s\";s:12:\"git_revision\";s:10:\"Number: %s\";s:14:\"git_hash_short\";s:23:\"Commit Hash (short): %s\";s:15:\"git_last_commit\";s:15:\"Last Commit: %s\";s:27:\"adm_captcha_anonymous_short\";s:7:\"Captcha\";s:25:\"adm_captcha_anonymous_frm\";s:122:\"Activate captcha for anonymous in forums. Please keep in mind that this may effect the accessibility of your installation.\";s:26:\"adm_captcha_anonymous_auth\";s:126:\"Activate captcha for anonymous in login form. Please keep in mind that this may effect the accessibility of your installation.\";s:25:\"adm_captcha_anonymous_reg\";s:133:\"Activate captcha for anonymous in registration form. Please keep in mind that this may effect the accessibility of your installation.\";s:12:\"adm_auth_reg\";s:27:\"Authentication Registration\";s:14:\"adm_auth_login\";s:20:\"Authentication Login\";s:26:\"adm_captcha_anonymous_wiki\";s:121:\"Activate captcha for anonymous in wikis. Please keep in mind that this may effect the accessibility of your installation.\";s:8:\"obj_excs\";s:8:\"Exercise\";s:13:\"obj_excs_desc\";s:24:\"Global Exercise Settings\";s:8:\"obj_taxs\";s:8:\"Taxonomy\";s:13:\"obj_taxs_desc\";s:24:\"Global Taxonomy Settings\";s:39:\"adm_show_comments_tagging_in_lists_tags\";s:30:\"Display tags instead of number\";s:34:\"language_mode_existing_delete_info\";s:281:\"Delete all entries in the database before importing the file.
WARNING: The imported language file should be complete, otherwise there will be undefined language variables. If that happens, switch to the tab ‘Maintain’ and choose ‘Clear local changes in the database’.\";s:35:\"language_mode_existing_keepall_info\";s:62:\"Import only new entries that do not yet exist in the database.\";s:35:\"language_mode_existing_keepnew_info\";s:143:\"Import new entries and overwrite all entries that still have their default values. Keep those entries that are already changed in the database.\";s:35:\"language_mode_existing_replace_info\";s:99:\"Import new entries and replace all existing entries with the new values defined in the import file.\";s:26:\"language_scope_global_info\";s:83:\"Export all database entries of this language. This can be used for backup purposes.\";s:25:\"language_scope_local_info\";s:69:\"Export all entries that are locally added or changed in the database.\";s:25:\"language_scope_added_info\";s:176:\"Export all entries that are locally added in the database. This can be used to backup additional development entries before local changes are deleted on the tab ‘Maintain’.\";s:29:\"language_scope_unchanged_info\";s:200:\"Export all default language entries that are not changed in the database. This is the opposite to ‘Local changes only’. Both together are a complete backup of the current language in the database.\";s:26:\"language_scope_merged_info\";s:196:\"Export the standard ILIAS language file with all local changes merged in alphabetically by module and identifier. This can be used to update the standard language file on the ILIAS git repository.\";s:32:\"language_save_local_changes_info\";s:300:\"Save all locally added or changed database entries to the file Customizing/global/lang/ilias_%s.lang.local and set the language status to ‘Installed With Local’. The web server must have write permission in this folder. Please note that this file is the same for all clients of this installation.\";s:32:\"language_load_local_changes_info\";s:163:\"Load the file Customizing/global/lang/ilias_%s.lang.local to the database. New entries of this file are added to the database and existing entries are overwritten.\";s:33:\"language_clear_local_changes_info\";s:145:\"Reset the database entries of this language to the default entries defined in lang/ilias_%s.lang. All local changes or additions will be removed.\";s:36:\"language_delete_local_additions_info\";s:59:\"Delete all entries that were locally added to the database.\";s:33:\"language_merge_local_changes_info\";s:160:\"Merge all local changes and additions alphabetically into the standard language file lang/ilias_%s.lang. The web server must have write permission on this file.\";s:31:\"language_remove_local_file_info\";s:187:\"Remove the file Customizing/global/lang/ilias_%s.lang.local and change the language status from ‘Installed With Local’ to ‘Installed’. The changes in the database are not touched.\";s:18:\"language_save_dist\";s:33:\"Backup the standard language file\";s:23:\"language_save_dist_info\";s:179:\"Create a backup of the standard ILIAS language file in the ILIAS data directory. This helps after an ILIAS update to find conflicst of own changes with updated language variables.\";s:19:\"language_saved_dist\";s:58:\"The backup of the standard ILIAS language file is created.\";s:25:\"language_save_dist_failed\";s:68:\"The backup of the standard ILIAS language file could not be written.\";s:19:\"adm_missing_entries\";s:15:\"Missing Entries\";s:28:\"adm_missing_entry_add_action\";s:3:\"Add\";s:21:\"adm_missing_entry_add\";s:13:\"Add New Entry\";s:35:\"adm_user_starting_point_ref_id_info\";s:168:\"Open the object that you would like to use as Personal Starting Point. Please copy the number directly following \"ref_id=\" in the browser bar into the text input field.\";s:31:\"adm_user_starting_point_inherit\";s:21:\"Use Standard-Settings\";s:36:\"adm_user_starting_point_inherit_info\";s:89:\"The settings that were made by the administrator of the platform as a whole will be used.\";s:26:\"adm_repository_and_objects\";s:22:\"Repository and Objects\";s:19:\"adm_extending_ilias\";s:15:\"Extending ILIAS\";s:19:\"adm_search_and_find\";s:15:\"Search and Find\";s:16:\"adm_achievements\";s:12:\"Achievements\";s:15:\"adm_maintenance\";s:31:\"System Settings and Maintenance\";s:23:\"adm_user_administration\";s:15:\"Users and Roles\";s:22:\"adm_personal_workspace\";s:18:\"Personal Workspace\";}'); INSERT INTO `lng_modules` VALUES ('adve','en','a:64:{s:12:\"adve_grp_glo\";s:10:\"Glossaries\";s:11:\"adve_grp_lm\";s:22:\"ILIAS Learning Modules\";s:12:\"adve_grp_rep\";s:16:\"Repository Pages\";s:14:\"adve_grp_scorm\";s:13:\"SCORM Editing\";s:13:\"adve_grp_test\";s:19:\"Test and Assessment\";s:13:\"adve_grp_wiki\";s:5:\"Wikis\";s:25:\"adve_page_editor_settings\";s:17:\"ILIAS Page Editor\";s:17:\"adve_rte_settings\";s:14:\"TinyMCE Editor\";s:26:\"adve_text_content_features\";s:17:\"Text Content Menu\";s:15:\"adve_pe_general\";s:7:\"General\";s:17:\"adve_use_physical\";s:32:\"Use b/i/u instead of str/emp/imp\";s:22:\"adve_use_physical_info\";s:334:\"This setting replaces the semantic style class buttons for strong, emphatic and important with physical attribute buttons b (bold), i (italic) and u (underline). Please note, that this may result in inconsistencies, if the style editor is used and other physical attributes are assigned to the strong/emphatic/important style classes.\";s:15:\"adve_activation\";s:10:\"Activation\";s:17:\"adve_use_tiny_mce\";s:34:\"Enable TinyMCE for WYSIWYG Editing\";s:20:\"adve_excass_settings\";s:20:\"Exercise Assignments\";s:32:\"advanced_editing_excass_settings\";s:25:\"Exercise Text Assignments\";s:18:\"adve_blocking_mode\";s:9:\"Edit Lock\";s:12:\"adve_minutes\";s:7:\"Minutes\";s:17:\"adve_minutes_info\";s:91:\"Minutes of inactivity before an edit lock expires and a page can be edited by another user.\";s:19:\"char_selector_admin\";s:75:\"Menu for Selecting Special Characters (Unicode) in Tests and Question Pools\";s:18:\"char_selector_user\";s:56:\"Menu for Selecting Special Characters (Unicode) in Tests\";s:18:\"char_selector_test\";s:37:\"Selector Special Characters (Unicode)\";s:31:\"char_selector_inherit_info_test\";s:162:\"Depending on the settings made in the platforms\' administration or those made by individual users in their settings the Ω-button is displayed in the test or not.\";s:31:\"char_selector_inherit_info_user\";s:89:\"The settings that were made by the administrator of the platform as a whole will be used.\";s:26:\"char_selector_inherit_test\";s:84:\"Settings made either Globally by Administrators or Individually by Users are Applied\";s:26:\"char_selector_inherit_user\";s:21:\"Use Standard-Settings\";s:28:\"char_selector_disabled_admin\";s:99:\"Ω-Button for Activating the Menu for Selecting Special Characters is displayed only if switched on\";s:33:\"char_selector_disabled_info_admin\";s:249:\"The menu for selecting special characters (Unicode) in tests and question pools is activated but the Ω-Button has to be switched on by users in their settings and or in individual tests or questions pools. Test Settings will override user settings.\";s:32:\"char_selector_disabled_info_test\";s:110:\"Regardless of a user\'s individual setting the special character selector is switched off for taking this test.\";s:32:\"char_selector_disabled_info_user\";s:160:\"In tests a menu for selecting special characters will be not displayed. However individual tests ‘force switch on’ the menu though your deactivated it here.\";s:27:\"char_selector_disabled_test\";s:33:\"Special Character Selector is Off\";s:27:\"char_selector_disabled_user\";s:45:\"Disable Menu for Selecting Special Characters\";s:28:\"char_selector_inactive_admin\";s:61:\"Globally Deactivate the Menu for Selecting Special Characters\";s:33:\"char_selector_inactive_info_admin\";s:210:\"The menu for selecting special characters is deactivated for the whole system. Users cannot make individual settings in their personal settings nor can individual tests or questions pools switch on the setting.\";s:27:\"char_selector_enabled_admin\";s:90:\"Ω-Button for Activating the Menu for Selecting Special Characters is Displayed by Default\";s:32:\"char_selector_enabled_info_admin\";s:306:\"The menu for selecting special characters (Unicode) is activated in tests and question pools. It will present users with the selection of Unicode blocks composed below. Users can make individual settings in their personal settings and the setting can be switched on for individual tests or questions pools.\";s:31:\"char_selector_enabled_info_test\";s:169:\"Regardless of a user\'s individual setting the Ω-button for switching on the special character selector will be displayed in the test. Special characters can be entered.\";s:31:\"char_selector_enabled_info_user\";s:225:\"In tests a menu for selecting special characters will be displayed. However individual tests can prevent this setting from becoming effective and not display the special character menu despite your choice about activating it.\";s:26:\"char_selector_enabled_test\";s:32:\"Special Character Selector is On\";s:26:\"char_selector_enabled_user\";s:44:\"Enable Menu for Selecting Special Characters\";s:20:\"char_selector_blocks\";s:42:\"Available Special Character Sets (Unicode)\";s:25:\"char_selector_blocks_info\";s:119:\"All characters of the selected blocks will be listed, but not all of them may be supported by the current browser font.\";s:26:\"char_selector_custom_items\";s:16:\"Custom Selection\";s:32:\"char_selector_custom_items_info1\";s:114:\"The custom selection will be listed before the selected blocks. Please add your characters in the following style:\";s:33:\"char_selector_custom_items_info2a\";s:5:\"A B C\";s:33:\"char_selector_custom_items_info2b\";s:71:\"Characters are separated by space, generating separate selector buttons\";s:33:\"char_selector_custom_items_info3a\";s:6:\"A BC D\";s:33:\"char_selector_custom_items_info3b\";s:51:\"It is possible to put more characters on one button\";s:33:\"char_selector_custom_items_info4a\";s:3:\"A-Z\";s:33:\"char_selector_custom_items_info4b\";s:50:\"Ranges of characters can be defined with a ‘-’\";s:33:\"char_selector_custom_items_info5a\";s:6:\"U+00C0\";s:33:\"char_selector_custom_items_info5b\";s:70:\"A character can also be defined in Unicode notation (case insensitive)\";s:33:\"char_selector_custom_items_info6a\";s:13:\"U+00C0-U+00CF\";s:33:\"char_selector_custom_items_info6b\";s:44:\"Ranges are also possible in Unicode notation\";s:25:\"char_selector_unicode_all\";s:18:\"All Unicode Blocks\";s:27:\"adve_char_selector_settings\";s:18:\"Character Selector\";s:28:\"advanced_editing_tst_editing\";s:43:\"Page Editor for additional question content\";s:33:\"advanced_editing_tst_editing_desc\";s:63:\"Activates ILIAS Page Editor for feedback and hint text editing.\";s:41:\"char_selector_msg_blocks_or_custom_needed\";s:93:\"When you activate the selector, please choose a character block or enter a special selection!\";s:21:\"adve_auto_url_linking\";s:16:\"URL Auto-Linking\";s:26:\"adve_auto_url_linking_info\";s:103:\"Tries to identify URLs like \"http://..\" in text paragraphs and automatically creates links around them.\";s:23:\"char_selector_menu_open\";s:31:\"Open Special Character Selector\";s:24:\"char_selector_menu_close\";s:32:\"Close Special Character Selector\";s:13:\"adve_grp_copa\";s:13:\"Content Pages\";}'); INSERT INTO `lng_modules` VALUES ('assessment','en','a:1515:{s:8:\"autosave\";s:16:\"Automatic saving\";s:13:\"autosave_info\";s:74:\"Answers are automatically saved in specified intervals to avoid data loss.\";s:13:\"autosave_ival\";s:8:\"Interval\";s:29:\"tst_block_passes_after_passed\";s:44:\"Block Additional Passes After Test is Passed\";s:34:\"tst_block_passes_after_passed_info\";s:112:\"After a participant has passed the test, no further test passes are allowed to the participant with this option.\";s:41:\"tst_addit_passes_blocked_after_passed_msg\";s:59:\"You have passed the test. The test cannot be started again.\";s:3:\"for\";s:3:\"for\";s:33:\"tst_presentation_settings_section\";s:12:\"Presentation\";s:27:\"wait_for_next_pass_hint_msg\";s:39:\"Additional pass is possible on time: %s\";s:24:\"tst_pass_waiting_enabled\";s:33:\"Force Waiting Time between Passes\";s:21:\"tst_pass_waiting_info\";s:123:\"With this option additional passes can not be started before the defined time is lapsed relating to the last finished pass.\";s:21:\"tst_pass_waiting_time\";s:12:\"Waiting Time\";s:23:\"char_selector_btn_label\";s:14:\" Ω \";s:50:\"tst_objective_oriented_test_pass_without_questions\";s:62:\"The started pass for test \"%s\" does not contain any questions.\";s:30:\"tst_dyn_quest_set_pool_deleted\";s:61:\"The currently configured question pool \"%s\" has been deleted.\";s:34:\"tst_old_style_rnd_quest_set_broken\";s:162:\"This random test is in a irreparable state, because one or more connected question pools have been deleted. Therefor participants cannot take the test any longer.\";s:25:\"solution_contain_keywords\";s:67:\"Score is granted based on the occurrence of the following keywords:\";s:19:\"ass_mc_sel_lim_hint\";s:31:\"Please select %s of %s answers!\";s:29:\"ass_mc_sel_lim_exhausted_hint\";s:48:\"Please do not select more than %s of %s answers!\";s:22:\"ass_mc_sel_lim_setting\";s:20:\"Answering Limitation\";s:27:\"ass_mc_sel_lim_setting_desc\";s:85:\"With this setting the number of answers choosable by the participants can be limited.\";s:18:\"essay_scoring_mode\";s:12:\"Scoring Mode\";s:35:\"essay_scoring_mode_without_keywords\";s:20:\"No Automatic Scoring\";s:40:\"essay_scoring_mode_without_keywords_desc\";s:56:\"No points are granted unless the tutor\'s manual scoring.\";s:39:\"essay_scoring_mode_keyword_relation_any\";s:46:\"Automatic Scoring with Keywords on Finding ANY\";s:44:\"essay_scoring_mode_keyword_relation_any_desc\";s:73:\"For any found keyword the corresponding points are granted automatically.\";s:39:\"essay_scoring_mode_keyword_relation_all\";s:46:\"Automatic Scoring with Keywords on Finding ALL\";s:44:\"essay_scoring_mode_keyword_relation_all_desc\";s:64:\"The points are granted automatically, if all keywords are found.\";s:39:\"essay_scoring_mode_keyword_relation_one\";s:46:\"Automatic Scoring with Keywords on Finding ONE\";s:44:\"essay_scoring_mode_keyword_relation_one_desc\";s:71:\"The points are granted automatically, if at least one keyword is found.\";s:19:\"mark_schema_invalid\";s:66:\"The mark schema does not validate. Please create a correct schema.\";s:25:\"assessment_scoring_adjust\";s:18:\"Enable corrections\";s:30:\"assessment_scoring_adjust_desc\";s:78:\"Enables the corrections feature to allow modifications to questions in a test.\";s:42:\"assessment_log_scoring_adjustment_activate\";s:38:\"Question types available in adjustment\";s:38:\"assessment_log_scoring_adjustment_desc\";s:199:\"Question types checked here are available in adjustment. This setting is regardless of the current ability of the question types, e.g. a question that does not support adjustment is still shown here.\";s:39:\"tst_corrections_qst_remove_confirmation\";s:78:\"Do you really want to finally remove the question \"%s (ID: %s)\" from the test?\";s:28:\"tst_corrections_tab_question\";s:8:\"Question\";s:28:\"tst_corrections_tab_solution\";s:8:\"Solution\";s:30:\"tst_corrections_tab_statistics\";s:10:\"Statistics\";s:24:\"tst_corrections_qst_form\";s:20:\"Correction of Points\";s:27:\"tst_corrections_answers_tbl\";s:10:\"Statistics\";s:36:\"tst_corrections_answers_tbl_subindex\";s:17:\"Statistics for %s\";s:36:\"tst_corr_answ_stat_tbl_header_answer\";s:6:\"Answer\";s:39:\"tst_corr_answ_stat_tbl_header_frequency\";s:9:\"Frequency\";s:26:\"tst_corr_add_as_answer_btn\";s:21:\"Add as Correct Answer\";s:17:\"qpl_reset_preview\";s:13:\"Reset Preview\";s:21:\"qst_preview_reset_msg\";s:27:\"The preview has been reset.\";s:31:\"tst_question_not_from_pool_info\";s:7:\"No Pool\";s:6:\"action\";s:6:\"Action\";s:10:\"add_circle\";s:15:\"Add circle area\";s:7:\"add_gap\";s:12:\"Add Gap Text\";s:31:\"tst_msg_rand_quest_set_not_sync\";s:239:\"The rules for a random selection of questions were newly created or changed. The questions from the pools have to be synchronized in the test before it can be used. This checks also if a random test is possible with the given set of rules.\";s:12:\"add_imagemap\";s:16:\"Import Image Map\";s:8:\"add_poly\";s:16:\"Add polygon area\";s:8:\"add_rect\";s:18:\"Add rectangle area\";s:20:\"addSuggestedSolution\";s:30:\"Add Content for Recapitulation\";s:29:\"tst_answer_aggr_answer_header\";s:6:\"Answer\";s:32:\"tst_answer_aggr_frequency_header\";s:9:\"Frequency\";s:28:\"all_available_question_pools\";s:28:\"All available question pools\";s:12:\"allow_images\";s:25:\"Image Support for Answers\";s:22:\"allowedextensions_info\";s:144:\"Enter a comma separated list of allowed file extensions if you want to restrict the upload to a given set of file extensions (e.g. doc,xls,odt).\";s:17:\"allowedextensions\";s:23:\"Allowed File Extensions\";s:17:\"analyze_errortext\";s:18:\"Analyze Error Text\";s:12:\"answer_image\";s:12:\"Answer Image\";s:34:\"answer_is_not_correct_but_positive\";s:68:\"You\'ve got points for your solution but it’s not the best solution\";s:15:\"answer_is_right\";s:24:\"Your solution is correct\";s:15:\"answer_is_wrong\";s:22:\"Your solution is wrong\";s:17:\"answer_characters\";s:50:\" characters allowed, entered number of characters:\";s:11:\"answer_text\";s:11:\"Answer Text\";s:12:\"answer_types\";s:18:\"Editor for Answers\";s:15:\"gap_combination\";s:15:\"Gap Combination\";s:6:\"answer\";s:6:\"Answer\";s:29:\"tst_failed_imp_skl_thresholds\";s:174:\"The Import of thresholds for the following competences were skipped, because the according competences within the local system are configured with a different list of levels.\";s:29:\"tst_failed_imp_qst_skl_assign\";s:152:\"The question\'s assignments to the following competences could not be created. The according competences could not be identified within the local system.\";s:31:\"ass_skl_import_fails_remove_btn\";s:16:\"Remove this Hint\";s:17:\"answers_multiline\";s:18:\"Multi Line Answers\";s:18:\"answers_singleline\";s:19:\"Single Line Answers\";s:17:\"applet_attributes\";s:17:\"Applet Attributes\";s:16:\"applet_parameter\";s:9:\"Parameter\";s:17:\"applet_parameters\";s:17:\"Applet Parameters\";s:5:\"apply\";s:5:\"Apply\";s:33:\"tst_msg_rand_quest_set_rule_label\";s:7:\"Rule %s\";s:49:\"tst_msg_rand_quest_set_rule_not_satisfied_missing\";s:72:\"Rule %s requires %s questions, but there are only %s questions provided.\";s:56:\"tst_msg_rand_quest_set_rule_not_satisfied_missing_shared\";s:103:\"Additionally from these questions there are %s questions also provided to the following other rules: %s\";s:50:\"tst_msg_rand_quest_set_rule_not_satisfied_reserved\";s:66:\"Rule %s requires %s questions and there are %s questions provided.\";s:57:\"tst_msg_rand_quest_set_rule_not_satisfied_reserved_shared\";s:129:\"But there are only %s of the provided questions guaranteed available, because of intersections with the following other rules: %s\";s:28:\"tst_res_lo_objectives_header\";s:28:\"Relevant Learning Objectives\";s:21:\"tst_res_lo_try_header\";s:7:\"Attempt\";s:16:\"tst_res_lo_try_n\";s:10:\"Attempt %s\";s:50:\"tst_pass_overview_header_lo_initial_all_objectives\";s:74:\"Initial Test Results
for the Learning Objectives within the Course %s\";s:49:\"tst_pass_overview_header_lo_initial_per_objective\";s:77:\"Initial Test Results
for the Learning Objectives %s within the Course %s\";s:53:\"tst_pass_overview_header_lo_qualifying_all_objectives\";s:77:\"Qualifying Test Results
for the Learning Objectives within the Course %s\";s:52:\"tst_pass_overview_header_lo_qualifying_per_objective\";s:80:\"Qualifying Test Results
for the Learning Objectives %s within the Course %s\";s:34:\"tst_pass_details_header_lo_initial\";s:61:\"Initial Test Results for the Learning Objectives
%s - %s\";s:34:\"tst_virtual_pass_header_lo_initial\";s:55:\"Initial Test Results for the Learning Objective
%s\";s:37:\"tst_pass_details_header_lo_qualifying\";s:64:\"Qualifying Test Results for the Learning Objectives
%s - %s\";s:37:\"tst_virtual_pass_header_lo_qualifying\";s:58:\"Qualifying Test Results for the Learning Objective
%s\";s:22:\"ass_create_export_file\";s:23:\"Create Test Export File\";s:35:\"ass_create_export_file_with_results\";s:51:\"Create Test Export File (incl. Participant Results)\";s:30:\"ass_create_export_test_results\";s:31:\"Create Test Results Export File\";s:30:\"ass_create_export_test_archive\";s:24:\"Create Test Archive File\";s:12:\"ass_question\";s:8:\"Question\";s:8:\"ass_size\";s:4:\"Size\";s:12:\"ass_comments\";s:8:\"Comments\";s:28:\"ass_commented_questions_only\";s:24:\"Only Commented Questions\";s:11:\"tst_proceed\";s:7:\"Proceed\";s:42:\"tst_dont_show_msg_again_in_current_session\";s:52:\"Don\'t show this message again in my current session.\";s:38:\"tst_nav_next_locks_empty_answer_header\";s:25:\"Navigation Without Answer\";s:39:\"tst_nav_next_locks_empty_answer_confirm\";s:134:\"You did not answer the current question. An empty solution will be saved and locked as answer. This answer cannot be changed later on.\";s:40:\"tst_nav_next_locks_current_answer_header\";s:27:\"Navigation to Next Question\";s:41:\"tst_nav_next_locks_current_answer_confirm\";s:123:\"When you navigate to the next question your answer to the current question will be locked and cannot be changed any longer.\";s:24:\"tst_filter_question_type\";s:13:\"Question Type\";s:32:\"tst_filter_question_type_enabled\";s:27:\"Use Question Type as Filter\";s:28:\"tst_filter_lifecycle_enabled\";s:23:\"Use Lifecycle as Filter\";s:30:\"tst_objectives_progress_header\";s:28:\"Learning Objectives Progress\";s:29:\"tst_objective_progress_header\";s:27:\"Learning Objective Progress\";s:12:\"assClozeTest\";s:14:\"Cloze Question\";s:12:\"assErrorText\";s:10:\"Error Text\";s:13:\"assFileUpload\";s:20:\"File Upload Question\";s:16:\"assFlashQuestion\";s:14:\"Flash Question\";s:19:\"assImagemapQuestion\";s:29:\"Hot Spot / Image Map Question\";s:13:\"assJavaApplet\";s:20:\"Java Applet Question\";s:19:\"assMatchingQuestion\";s:17:\"Matching Question\";s:17:\"assMultipleChoice\";s:43:\"Multiple Choice Question (Multiple Answers)\";s:14:\"assKprimChoice\";s:40:\"Multiple Choice Question (Kprim Answers)\";s:10:\"assNumeric\";s:16:\"Numeric Question\";s:21:\"assOrderingHorizontal\";s:30:\"Ordering Question (Horizontal)\";s:19:\"assOrderingQuestion\";s:28:\"Ordering Question (Vertical)\";s:12:\"assQuestions\";s:9:\"Questions\";s:15:\"assSingleChoice\";s:40:\"Multiple Choice Question (Single Answer)\";s:15:\"assTextQuestion\";s:14:\"Essay Question\";s:13:\"assTextSubset\";s:20:\"Text Subset Question\";s:15:\"autosave_failed\";s:16:\"Autosave failed!\";s:16:\"autosave_success\";s:22:\"Autosave successful...\";s:22:\"average_reached_points\";s:14:\"Average Points\";s:17:\"backtocallingtest\";s:24:\"Back to the calling test\";s:11:\"assLongMenu\";s:9:\"Long Menu\";s:16:\"answers_text_box\";s:4:\"Text\";s:17:\"min_auto_complete\";s:12:\"Autocomplete\";s:18:\"autocomplete_error\";s:116:\"Your autocomplete number is to large, you have answers which have less characters, so they would never be displayed.\";s:14:\"answers_select\";s:6:\"Select\";s:16:\"info_text_upload\";s:45:\"Choose an answer text (UTF-8) file to upload.\";s:14:\"manual_editing\";s:14:\"Manual Editing\";s:13:\"longmenu_text\";s:14:\"Long Menu Text\";s:8:\"longmenu\";s:8:\"Longmenu\";s:15:\"correct_answers\";s:16:\"Correct Answers:\";s:14:\"answer_options\";s:15:\"Answer Options:\";s:11:\"add_answers\";s:11:\"Add answers\";s:2:\"by\";s:2:\"by\";s:11:\"cancel_test\";s:16:\"Suspend the Test\";s:17:\"cannot_edit_marks\";s:154:\"There are already learners who ran the test. You can only change the marks if a score reporting date is enabled and the reporting date is not yet reached.\";s:16:\"cannot_edit_test\";s:59:\"You do not possess sufficient permissions to edit the test!\";s:19:\"cannot_execute_test\";s:58:\"You do not possess sufficient permissions to run the test!\";s:24:\"cannot_read_questionpool\";s:73:\"You do not possess sufficient permissions to read the question pool data!\";s:22:\"cannot_save_metaobject\";s:64:\"You do not possess sufficient permissions to save the meta data!\";s:23:\"changeSuggestedSolution\";s:41:\"Select type of content for recapitulation\";s:16:\"checkbox_checked\";s:7:\"Checked\";s:18:\"checkbox_unchecked\";s:9:\"Unchecked\";s:19:\"circle_click_center\";s:43:\"Please click on center of the desired area.\";s:19:\"circle_click_circle\";s:51:\"Please click on a circle point of the desired area.\";s:6:\"circle\";s:6:\"Circle\";s:8:\"clientip\";s:9:\"Client IP\";s:15:\"close_text_hint\";s:217:\"To add a new gap set the cursor to the position of your choice and use the dropdown ‘Text Gap’. Corresponding editing sections will appear below. You can also edit gaps by clicking on the gaps within the gap text.\";s:10:\"insert_gap\";s:10:\"Insert Gap\";s:34:\"cloze_fixed_textlength_description\";s:325:\"If you enter a value, all text gap fields, not providing an own maximum character limitation, as well as all numeric gap fields will be created with a fixed length of this value, so entering more than the allowed characters is not possible. Note, that for numeric gaps the decimal separator is counted as a regular character.\";s:34:\"qpl_maxchars_info_numeric_question\";s:254:\"If you enter a value, the field for the numerical answer will be created with a fixed length of this value, so entering more than the allowed characters is not possible. Note, that for numeric gaps the decimal separator is counted as a regular character.\";s:41:\"qpl_numeric_lower_needs_valid_lower_alert\";s:77:\"The lower bound needs to be valid numerical value lower than the upper bound.\";s:41:\"qpl_numeric_upper_needs_valid_upper_alert\";s:79:\"The upper bound needs to be valid numerical value greater than the lower bound.\";s:22:\"cloze_fixed_textlength\";s:17:\"Text Field Length\";s:10:\"cloze_text\";s:10:\"Cloze Text\";s:30:\"cloze_textgap_case_insensitive\";s:16:\"Case Insensitive\";s:28:\"cloze_textgap_case_sensitive\";s:14:\"Case Sensitive\";s:28:\"cloze_textgap_levenshtein_of\";s:26:\"Levenshtein Distance of %s\";s:31:\"cloze_textgap_whitespace_before\";s:27:\"Whitespace before the value\";s:30:\"cloze_textgap_whitespace_after\";s:27:\"Whitespace behind the value\";s:33:\"cloze_textgap_multiple_whitespace\";s:20:\"Multiple Whitespaces\";s:12:\"out_of_range\";s:12:\"Out of range\";s:17:\"ass_cloze_fb_mode\";s:13:\"Feedback Mode\";s:25:\"ass_cloze_fb_mode_gap_qst\";s:16:\"Feedback per Gap\";s:30:\"ass_cloze_fb_mode_gap_qst_info\";s:50:\"For every gap a single feedback can be configured.\";s:26:\"ass_cloze_fb_mode_gap_answ\";s:24:\"Answer specific Feedback\";s:31:\"ass_cloze_fb_mode_gap_answ_info\";s:73:\"For every gap separate feedbacks can be configured for different answers.\";s:26:\"ass_cloze_gap_fb_gap_label\";s:17:\"Gap %s: %s\";s:32:\"ass_cloze_gap_fb_txt_empty_label\";s:17:\"Gap %s - No Input\";s:34:\"ass_cloze_gap_fb_txt_nomatch_label\";s:21:\"Gap %s - Wrong Answer\";s:32:\"ass_cloze_gap_fb_txt_match_label\";s:32:\"Gap %s - Given Answer: %s\";s:32:\"ass_cloze_gap_fb_sel_empty_label\";s:21:\"Gap %s - No Selection\";s:30:\"ass_cloze_gap_fb_sel_opt_label\";s:33:\"Gap %s - Select Option: %s\";s:32:\"ass_cloze_gap_fb_num_empty_label\";s:17:\"Gap %s - No Input\";s:35:\"ass_cloze_gap_fb_num_valuehit_label\";s:18:\"Gap %s - Value Hit\";s:35:\"ass_cloze_gap_fb_num_rangehit_label\";s:18:\"Gap %s - Range Hit\";s:33:\"ass_cloze_gap_fb_num_toolow_label\";s:22:\"Gap %s - Value too Low\";s:34:\"ass_cloze_gap_fb_num_toohigh_label\";s:23:\"Gap %s - Value too High\";s:4:\"code\";s:4:\"Code\";s:8:\"codebase\";s:8:\"Codebase\";s:13:\"concatenation\";s:13:\"Concatenation\";s:28:\"confirm_delete_all_user_data\";s:58:\"Are you sure you want to delete all user data of the test?\";s:31:\"confirm_delete_single_user_data\";s:68:\"Are you sure you want to remove the test data of the selected users?\";s:22:\"confirm_sync_questions\";s:143:\"The question you changed is a copy which has been created for use with the active test. Do you want to change the original of the question too?\";s:11:\"coordinates\";s:11:\"Coordinates\";s:7:\"counter\";s:7:\"Counter\";s:11:\"create_date\";s:7:\"Created\";s:11:\"create_gaps\";s:23:\"Create and Refresh Gaps\";s:10:\"create_new\";s:10:\"Create New\";s:11:\"customstyle\";s:12:\"Custom Style\";s:16:\"definition_image\";s:16:\"Definition Image\";s:15:\"definition_text\";s:15:\"Definition Text\";s:10:\"definition\";s:10:\"Definition\";s:11:\"definitions\";s:11:\"Definitions\";s:33:\"delete_all_user_data_confirmation\";s:69:\"Do you really want to delete the test data of all users in this test?\";s:20:\"delete_all_user_data\";s:29:\"Delete Test Data of all Users\";s:19:\"delete_image_header\";s:12:\"Remove image\";s:21:\"delete_image_question\";s:39:\"Do you really want to remove the image?\";s:16:\"delete_user_data\";s:34:\"Remove Test Data of Selected Users\";s:23:\"deleteSuggestedSolution\";s:38:\"Remove this content for recapitulation\";s:20:\"description_maxchars\";s:86:\"If nothing entered the maximum number of characters for this text answer is unlimited.\";s:26:\"detail_ending_time_reached\";s:85:\"The time allotted for this test is now over. The test had not been available since %s\";s:34:\"detail_max_processing_time_reached\";s:65:\"You have reached the maximum allowed processing time of the test!\";s:32:\"detail_starting_time_not_reached\";s:81:\"You have not reached the start time of the test. The test will be available on %s\";s:23:\"detailed_evaluation_for\";s:26:\"Detailed Evaluation for %s\";s:37:\"detailed_evaluation_missing_active_id\";s:71:\"You must call the ‘Detailed Evaluation’ for a selected participant!\";s:24:\"detailed_evaluation_show\";s:24:\"Show Detailed Evaluation\";s:19:\"detailed_evaluation\";s:19:\"Detailed Evaluation\";s:25:\"detailed_output_printview\";s:41:\"Detailed Output with Question Print Views\";s:25:\"detailed_output_solutions\";s:39:\"Detailed Output with Question Solutions\";s:15:\"direct_feedback\";s:20:\"Verify Your Solution\";s:34:\"duplicate_matching_values_selected\";s:44:\"You have selected duplicate matching values!\";s:30:\"duplicate_order_values_entered\";s:40:\"You have entered duplicate order values!\";s:9:\"duplicate\";s:9:\"Duplicate\";s:22:\"ects_grade_desc_prefix\";s:17:\"Meaning of grade:\";s:17:\"ects_grade_a_desc\";s:46:\"outstanding performance with only minor errors\";s:17:\"ects_grade_b_desc\";s:47:\"above the average standard but with some errors\";s:17:\"ects_grade_c_desc\";s:52:\"generally sound work with a number of notable errors\";s:17:\"ects_grade_d_desc\";s:38:\"fair but with significant shortcomings\";s:17:\"ects_grade_e_desc\";s:38:\"performance meets the minimum criteria\";s:18:\"ects_grade_fx_desc\";s:56:\"some more work required before the credit can be awarded\";s:17:\"ects_grade_f_desc\";s:37:\"considerable further work is required\";s:10:\"ects_grade\";s:10:\"ECTS Grade\";s:22:\"ects_allow_ects_grades\";s:43:\"Show ECTS grade additional to received mark\";s:26:\"ects_output_of_ects_grades\";s:21:\"Output of ECTS grades\";s:11:\"use_ects_fx\";s:22:\"Use the ‘FX’ grade\";s:17:\"ects_fx_threshold\";s:9:\"Threshold\";s:22:\"ects_fx_threshold_info\";s:69:\"Please enter the required percentile for granting the ‘FX’ grade.\";s:9:\"edit_page\";s:9:\"Edit Page\";s:13:\"edit_question\";s:13:\"Edit Question\";s:19:\"edit_test_questions\";s:9:\"List View\";s:19:\"element_height_info\";s:98:\"This is the minimum height in pixels for term and definition/picture items during the test output.\";s:14:\"element_height\";s:14:\"Minimum Height\";s:7:\"end_tag\";s:7:\"End Tag\";s:29:\"tst_settings_conflict_message\";s:74:\"The current configuration uses settings combinations that are not allowed.\";s:23:\"tst_conflicting_setting\";s:48:\"This setting does conflict with another setting.\";s:7:\"enlarge\";s:7:\"Enlarge\";s:20:\"enter_anonymous_code\";s:27:\"Enter Anonymous Access Code\";s:28:\"enter_enough_positive_points\";s:110:\"The maximum available points must be greater than 0! Please enter sufficient positive points for your answers.\";s:36:\"enter_enough_positive_points_checked\";s:97:\"At least one answer needs to score. Please enter a positive score for the selection of an answer.\";s:20:\"err_no_numeric_value\";s:28:\"Please enter a numeric value\";s:24:\"error_importing_question\";s:77:\"There was an error importing the question(s) from the file you have selected!\";s:21:\"error_open_image_file\";s:28:\"Error opening an image file!\";s:32:\"error_random_question_generation\";s:221:\"A fatal error occurred during the generation of your random questions for the test. Please contact your administrator with the following information: The system could not create an active ID for user ID %s and test ID %s.\";s:14:\"errors_section\";s:10:\"Error Data\";s:6:\"errors\";s:6:\"Errors\";s:14:\"errortext_info\";s:356:\"Please enter the error text. To mark a word as an error please insert a hash sign (#) in front of the word. To mark a group of words as an error please encapsulate the words group between double brackets (i.e.: here is ((an example)) of it). If you press the "Analyze Error Text" button, all marked words will be extracted for further processing.\";s:9:\"errortext\";s:10:\"Error Text\";s:21:\"score_partsol_enabled\";s:27:\"Activate Half-Point Scoring\";s:26:\"score_partsol_enabled_info\";s:205:\"Usually the participant has to answer the question fully correct to get the configured points. With this option the participant gets the half of the configured points with at least three correct decisions.\";s:12:\"option_label\";s:13:\"Option Labels\";s:17:\"option_label_info\";s:91:\"The configured phrases will be used as label for the options selectable by the participant.\";s:24:\"option_label_right_wrong\";s:13:\"right / wrong\";s:18:\"option_label_right\";s:5:\"right\";s:18:\"option_label_wrong\";s:5:\"wrong\";s:23:\"option_label_plus_minus\";s:5:\"+ / -\";s:17:\"option_label_plus\";s:1:\"+\";s:18:\"option_label_minus\";s:1:\"-\";s:30:\"option_label_applicable_or_not\";s:27:\"applicable / not applicable\";s:23:\"option_label_applicable\";s:10:\"applicable\";s:27:\"option_label_not_applicable\";s:14:\"not applicable\";s:28:\"option_label_adequate_or_not\";s:23:\"adequate / not adequate\";s:21:\"option_label_adequate\";s:8:\"adequate\";s:25:\"option_label_not_adequate\";s:12:\"not adequate\";s:19:\"option_label_custom\";s:18:\"Userdefined Labels\";s:24:\"option_label_custom_true\";s:20:\"Label for ‘TRUE’\";s:25:\"option_label_custom_false\";s:21:\"Label for ‘FALSE’\";s:22:\"kprim_instruction_text\";s:51:\"You have to decide on every statement: [%s] or [%s]\";s:18:\"kprim_answers_info\";s:323:\"The multiple choice question type ‘four times decision right/wrong’ (Type K’, also known as Kprim) gives four answers or additions to a question or an incomplete statement. A decision about the correctness is to be done on all four answers/additions. The maximum points are granted only, if all decisions are correct.\";s:12:\"tst_feedback\";s:8:\"Feedback\";s:16:\"ass_process_lock\";s:30:\"Use Locking During Test Passes\";s:21:\"ass_process_lock_desc\";s:115:\"Without the use of any locking mechanism, race conditions are possible. This can lead to inconsistent test results.\";s:21:\"ass_process_lock_mode\";s:26:\"Lock Mode during Test Pass\";s:26:\"ass_process_lock_mode_file\";s:20:\"Use Filesystem Locks\";s:31:\"ass_process_lock_mode_file_desc\";s:192:\"This locking mechanism requests locks on empty files in the filesystem. Concurrent processes for the same user and the same test/question are waiting until the other process releases his lock.\";s:24:\"ass_process_lock_mode_db\";s:24:\"Use Database Table Locks\";s:29:\"ass_process_lock_mode_db_desc\";s:225:\"This locking mechanism locks tables within the database. Concurrent processes for the same or other users in the same or in another test for the same or another question are waiting until the other process releases his locks.\";s:14:\"eval_all_users\";s:24:\"Evaluation for All Users\";s:16:\"eval_legend_link\";s:72:\"Please refer to the legend for the meaning of the column header symbols.\";s:13:\"exp_eval_data\";s:25:\"Export evaluation data as\";s:20:\"exp_type_certificate\";s:17:\"Certificate (PDF)\";s:14:\"exp_type_excel\";s:15:\"Microsoft Excel\";s:13:\"exp_type_spss\";s:27:\"Comma Separated Value (CSV)\";s:6:\"export\";s:6:\"Export\";s:15:\"failed_official\";s:6:\"failed\";s:12:\"failed_short\";s:6:\"failed\";s:5:\"false\";s:5:\"False\";s:16:\"feedback_generic\";s:24:\"Common Solution Feedback\";s:26:\"feedback_complete_solution\";s:16:\"Correct solution\";s:28:\"feedback_incomplete_solution\";s:34:\"At least one answer is not correct\";s:16:\"feedback_answers\";s:25:\"Feedback for Every Answer\";s:12:\"file_uploads\";s:12:\"File Uploads\";s:12:\"fileDownload\";s:13:\"File download\";s:39:\"fill_out_all_required_fields_add_answer\";s:59:\"Please fill out all required fields before you add answers!\";s:25:\"filter_all_question_types\";s:18:\"All Question Types\";s:24:\"filter_all_questionpools\";s:18:\"All Question Pools\";s:26:\"filter_show_question_types\";s:19:\"Show Question Types\";s:25:\"filter_show_questionpools\";s:19:\"Show Question Pools\";s:6:\"filter\";s:6:\"Filter\";s:25:\"final_statement_show_desc\";s:55:\"Shows concluding remarks after the test was submitted.\";s:15:\"final_statement\";s:18:\"Concluding Remarks\";s:23:\"fixed_participants_hint\";s:195:\"This test is only accessible for the manually added participants listed below. You can disable this setting by deactivating the checkbox ‘Manually Selected Participants’ in the test settings.\";s:36:\"tst_res_jump_to_participant_hint_opt\";s:23:\"--Jump to Participant--\";s:31:\"tst_res_jump_to_participant_btn\";s:4:\"Jump\";s:32:\"tst_participant_fullname_pattern\";s:10:\"%2$s, %1$s\";s:9:\"flashfile\";s:10:\"Flash File\";s:7:\"forcejs\";s:42:\"Force JavaScript output for test questions\";s:28:\"form_msg_area_missing_points\";s:34:\"Please enter points for all areas.\";s:18:\"tst_reporting_date\";s:4:\"Date\";s:3:\"gap\";s:3:\"Gap\";s:7:\"general\";s:7:\"General\";s:13:\"glossary_term\";s:13:\"Glossary Term\";s:6:\"height\";s:6:\"Height\";s:22:\"identical_scoring_desc\";s:188:\"If selected, gaps with identical solutions will be scored, even if the same solution was used twice or more. If not selected, only the first occurrence of the same solution will be scored.\";s:17:\"identical_scoring\";s:17:\"Identical Scoring\";s:8:\"imagemap\";s:9:\"Image Map\";s:15:\"import_question\";s:18:\"Import Question(s)\";s:12:\"insert_after\";s:12:\"Insert After\";s:13:\"insert_before\";s:13:\"Insert Before\";s:14:\"internal_links\";s:14:\"Internal Links\";s:10:\"javaapplet\";s:11:\"Java Applet\";s:17:\"kiosk_description\";s:364:\"Exam view runs test in kiosk mode. This hides the browser bar and navigation and all other screen elements that are not part of the test. Participants are prevented from opening an other website.
Effectively preventing participants from opening other websites during tests additinally requires deploying a suitable browser enviroment (e.g. Safe Exam Browser).\";s:18:\"kiosk_options_desc\";s:58:\"Information is displayed at the top section of the screen.\";s:13:\"kiosk_options\";s:17:\"Exam View Options\";s:22:\"kiosk_show_participant\";s:24:\"Show Name of Participant\";s:16:\"kiosk_show_title\";s:15:\"Show Test Title\";s:5:\"kiosk\";s:9:\"Exam View\";s:11:\"last_update\";s:7:\"Updated\";s:6:\"legend\";s:6:\"Legend\";s:28:\"qpl_lac_legend_header_common\";s:16:\"Expression Logic\";s:24:\"qpl_lac_desc_logical_and\";s:11:\"Logical AND\";s:23:\"qpl_lac_desc_logical_or\";s:10:\"Logical OR\";s:21:\"qpl_lac_desc_negation\";s:8:\"Negation\";s:21:\"qpl_lac_desc_brackets\";s:8:\"Brackets\";s:29:\"qpl_lac_desc_res_of_cur_quest\";s:26:\"Result of Current Question\";s:39:\"qpl_lac_desc_res_of_answ_m_of_cur_quest\";s:41:\"Result of m-th Answer of Current Question\";s:36:\"qpl_lac_legend_header_quest_specific\";s:29:\"Question Specific Expressions\";s:30:\"qpl_lac_legend_label_operators\";s:9:\"Operators\";s:35:\"qpl_lac_desc_compare_with_quest_res\";s:53:\"Compare the Result with the Reached Points in Percent\";s:32:\"qpl_lac_desc_compare_with_number\";s:36:\"Compare the Result with the Number n\";s:30:\"qpl_lac_desc_compare_with_text\";s:37:\"Compare the Result with the text TEXT\";s:36:\"qpl_lac_desc_compare_with_assignment\";s:40:\"Compare the Result with the Matching n:m\";s:34:\"qpl_lac_desc_compare_with_sequence\";s:54:\"Compare the Result with the Answer Sequence ($a,..,z$)\";s:34:\"qpl_lac_desc_compare_with_answer_n\";s:55:\"Compare the Result with the n-th Answer of the Question\";s:40:\"qpl_lac_desc_compare_with_exact_sequence\";s:50:\"Compare the Result with exactly the Given Sequence\";s:33:\"qpl_lac_desc_compare_answer_exist\";s:48:\"Compare if there is an Answer for a Question/Gap\";s:20:\"lacex_example_header\";s:8:\"Examples\";s:46:\"lacex_assQuestion_PercentageResultExpression_e\";s:9:\"R >= %75%\";s:46:\"lacex_assQuestion_PercentageResultExpression_d\";s:59:\"The questions answer result is equal to or greater than 75%\";s:41:\"lacex_assQuestion_EmptyAnswerExpression_e\";s:5:\"R = ?\";s:41:\"lacex_assQuestion_EmptyAnswerExpression_d\";s:29:\"The question was not answered\";s:48:\"lacex_assSingleChoice_NumberOfResultExpression_e\";s:7:\"R = +2+\";s:48:\"lacex_assSingleChoice_NumberOfResultExpression_d\";s:64:\"While answering the question the second answer option was chosen\";s:50:\"lacex_assMultipleChoice_NumberOfResultExpression_e\";s:7:\"R = +2+\";s:50:\"lacex_assMultipleChoice_NumberOfResultExpression_d\";s:64:\"While answering the question the second answer option was chosen\";s:51:\"lacex_assMultipleChoice_ExclusiveResultExpression_e\";s:11:\"R = *1,3,4*\";s:51:\"lacex_assMultipleChoice_ExclusiveResultExpression_d\";s:78:\"Exactly the answer options 1, 3 and 4 were chosen while answering the question\";s:45:\"lacex_assErrorText_NumberOfResultExpression_e\";s:7:\"R = +2+\";s:45:\"lacex_assErrorText_NumberOfResultExpression_d\";s:64:\"While answering the question the second answer option was chosen\";s:46:\"lacex_assErrorText_ExclusiveResultExpression_e\";s:11:\"R = *1,3,4*\";s:46:\"lacex_assErrorText_ExclusiveResultExpression_d\";s:78:\"Exactly the answer options 1, 3 and 4 were chosen while answering the question\";s:52:\"lacex_assImagemapQuestion_NumberOfResultExpression_e\";s:7:\"R = +2+\";s:52:\"lacex_assImagemapQuestion_NumberOfResultExpression_d\";s:64:\"While answering the question the second answer option was chosen\";s:53:\"lacex_assImagemapQuestion_ExclusiveResultExpression_e\";s:11:\"R = *1,3,4*\";s:53:\"lacex_assImagemapQuestion_ExclusiveResultExpression_d\";s:78:\"Exactly the answer options 1, 3 and 4 were chosen while answering the question\";s:42:\"lacex_assNumeric_NumericResultExpression_e\";s:9:\"R = #4.7#\";s:42:\"lacex_assNumeric_NumericResultExpression_d\";s:52:\"The question was answered with the numeric value 4.7\";s:52:\"lacex_assOrderingQuestion_OrderingResultExpression_e\";s:15:\"R = $2,5,1,4,3$\";s:52:\"lacex_assOrderingQuestion_OrderingResultExpression_d\";s:62:\"The question\'s elements were ordered as follows: 2, 5, 1, 4, 3\";s:54:\"lacex_assOrderingHorizontal_OrderingResultExpression_e\";s:15:\"R = $2,5,1,4,3$\";s:54:\"lacex_assOrderingHorizontal_OrderingResultExpression_d\";s:62:\"The question\'s elements were ordered as follows: 2, 5, 1, 4, 3\";s:52:\"lacex_assMatchingQuestion_MatchingResultExpression_e\";s:33:\"R = ;1:2; & R = ;2:3; & R = ;3:1;\";s:52:\"lacex_assMatchingQuestion_MatchingResultExpression_d\";s:102:\"The question\'s terms were assigned to definitions as follows: 1 → 2 and 2 → 3 and 3 → 1\";s:44:\"lacex_assTextSubset_StringResultExpression_e\";s:24:\"R[2] = ~sodium chloride~\";s:44:\"lacex_assTextSubset_StringResultExpression_d\";s:73:\"For the second answer option the answer „sodium chloride“ was entered\";s:50:\"lacex_assFormulaQuestion_NumericResultExpression_e\";s:16:\"R[1] = #3.14159#\";s:50:\"lacex_assFormulaQuestion_NumericResultExpression_d\";s:67:\"The first answer option was answered with the numeric value 3.14159\";s:44:\"lacex_assClozeTest_NumericResultExpression_e\";s:10:\"R[2] = #5#\";s:44:\"lacex_assClozeTest_NumericResultExpression_d\";s:83:\"The second answer option is a numeric gap and was answered with the numeric value 5\";s:45:\"lacex_assClozeTest_StringResultExpression_1_e\";s:15:\"R[1] = ~Monday~\";s:45:\"lacex_assClozeTest_StringResultExpression_1_d\";s:72:\"The first answer option is a text gap and was answered with „Monday“\";s:45:\"lacex_assClozeTest_StringResultExpression_2_e\";s:14:\"R[4] = ~Green~\";s:45:\"lacex_assClozeTest_StringResultExpression_2_d\";s:91:\"The fourth answer option is a select gap and the option labeled as „Green“ was selected\";s:45:\"lacex_assClozeTest_NumberOfResultExpression_e\";s:10:\"R[4] = +2+\";s:45:\"lacex_assClozeTest_NumberOfResultExpression_d\";s:75:\"The fourth answer option is a select gap and the second option was selected\";s:38:\"qpl_skill_point_eval_mode_quest_result\";s:15:\"Question Result\";s:42:\"qpl_skill_point_eval_mode_solution_compare\";s:16:\"Solution Compare\";s:36:\"qpl_skill_point_eval_by_quest_result\";s:50:\"Evaluation of Competence Points by Question Result\";s:40:\"qpl_skill_point_eval_by_solution_compare\";s:51:\"Evaluation of Competence Points by Solution Compare\";s:24:\"tst_solution_compare_cfg\";s:34:\"Configuration for Solution Compare\";s:24:\"tst_sol_comp_expressions\";s:22:\"Comparison Expressions\";s:23:\"ass_lac_show_legend_btn\";s:11:\"Show Legend\";s:24:\"ass_lac_validation_error\";s:62:\"Errors occured while validating the conditional expression(s)!\";s:18:\"ass_lac_expression\";s:10:\"Expression\";s:33:\"ass_lac_unable_to_parse_condition\";s:40:\"The condition \"%s\" can not be validated.\";s:37:\"tst_skill_triggerings_num_req_answers\";s:50:\"Required Amount of Answers for Competence Triggers\";s:42:\"tst_skill_triggerings_num_req_answers_desc\";s:118:\"Competences aren\'t triggered before this amount of answered questions contributes to the competence level calculation.\";s:54:\"tst_skill_triggerings_num_req_answers_not_reached_warn\";s:219:\"At least one of the competences addressed by this test is not triggered by the minimal required amount of questions. No competence records will be written for these competences.
The required amount of questions: %s\";s:26:\"export_essay_qst_with_html\";s:36:\"Export Essay Question with HTML code\";s:31:\"export_essay_qst_with_html_desc\";s:72:\"If activated it is possible to export Essay Question with HTML to Excel.\";s:25:\"qpl_qst_skl_usg_skill_col\";s:10:\"Competence\";s:24:\"qpl_qst_skl_usg_numq_col\";s:53:\"Number of Questions in Pool adressing this competence\";s:26:\"qpl_qst_skl_usg_sklpnt_col\";s:45:\"Total Sum of Competence-Points per Competence\";s:40:\"tst_qst_skl_cfg_in_pool_hint_rndquestset\";s:201:\"The Competence-Question-Assignment for tests with mode \"%s\" is to be done in the corresponding question pool(s):
%s

The configuration of threshold values is to be done here in the test.\";s:40:\"tst_qst_skl_cfg_in_pool_hint_dynquestset\";s:198:\"The Competence-Question-Assignment for tests with mode \"%s\" is to be done in the corresponding question pool:
%s

The configuration of threshold values is to be done here in the test.\";s:41:\"qpl_qst_skl_selection_for_question_header\";s:37:\"Compence Assignments for Question: %s\";s:20:\"tst_save_comp_points\";s:22:\"Save Competence Points\";s:35:\"tst_msg_skl_qst_assign_points_saved\";s:38:\"The competence points have been saved.\";s:39:\"tst_msg_skl_qst_assign_points_not_saved\";s:67:\"The competence points have not been saved. Please check your input.\";s:32:\"tst_skl_level_thresholds_missing\";s:58:\"There are missing thresholds for the relevant competences!\";s:29:\"tst_skl_level_thresholds_link\";s:31:\"Configure Competence Thresholds\";s:35:\"tst_skl_res_interpretation_hint_msg\";s:275:\"Please consider that competence results from a single test has a limited significance. The more information is collected per competence, the merrier valid the significance will be. Should there are single competences without any entry, there is to less information collected.\";s:6:\"locked\";s:6:\"locked\";s:25:\"log_answer_changed_points\";s:68:\"Manual change of points of test person %s from %d to %d points by %s\";s:31:\"log_wrong_test_password_entered\";s:40:\"Participant entered wrong test password.\";s:50:\"log_could_not_enter_test_due_to_simultaneous_users\";s:99:\"The user could not enter the test because the maximum number of simultaneous users has been reached\";s:19:\"log_create_new_test\";s:16:\"Created new test\";s:19:\"log_manual_feedback\";s:63:\"%s added manual feedback for test person %s and question %s: %s\";s:14:\"log_mark_added\";s:10:\"Mark added\";s:16:\"log_mark_changed\";s:12:\"Mark changed\";s:16:\"log_mark_removed\";s:12:\"Mark removed\";s:17:\"log_modified_test\";s:21:\"The test was modified\";s:18:\"log_question_added\";s:26:\"Question added at position\";s:29:\"log_question_position_changed\";s:25:\"Question position changed\";s:20:\"log_question_removed\";s:16:\"Question removed\";s:30:\"log_selected_user_data_removed\";s:28:\"Removed test data of user %s\";s:26:\"log_user_answered_question\";s:47:\"User answered a question and received %s points\";s:23:\"log_user_entered_values\";s:19:\"User entered values\";s:27:\"log_user_not_entered_values\";s:25:\"User did not enter values\";s:35:\"log_user_solution_willingly_deleted\";s:24:\"User deleted the answer.\";s:11:\"maintenance\";s:11:\"Maintenance\";s:15:\"manscoring_done\";s:19:\"Scored Participants\";s:15:\"manscoring_hint\";s:238:\"You have added at least one question which may require manual scoring. To avoid that participants get already access to the test results before you finished manual scoring, please define a suitable date for the access to the test results.\";s:15:\"manscoring_none\";s:21:\"Unscored Participants\";s:22:\"manscoring_not_allowed\";s:95:\"The Manual Scoring wasn‘t activated for a question type. You are not allowed to use this tab.\";s:30:\"manscoring_questions_not_found\";s:76:\"This test pass does not contain question types which can be scored manually.\";s:23:\"manscoring_results_pass\";s:35:\"Manual Scored Questions for Pass %s\";s:10:\"manscoring\";s:14:\"Manual Scoring\";s:11:\"mark_schema\";s:11:\"Mark Schema\";s:25:\"grading_status_passed_msg\";s:44:\"Congratulations, you passed the test.\";s:25:\"grading_status_failed_msg\";s:34:\"Sorry, you failed the test.\";s:32:\"grading_obligations_answered_msg\";s:40:\"You filled out all compulsory questions.\";s:31:\"grading_obligations_missing_msg\";s:49:\"You didn‘t filled out all compulsory questions.\";s:29:\"grading_obligations_listlabel\";s:20:\"Compulsory Questions\";s:38:\"grading_obligations_answered_listentry\";s:8:\"Answered\";s:37:\"grading_obligations_missing_listentry\";s:4:\"Open\";s:16:\"grading_mark_msg\";s:32:\"Your mark is: "[mark]"\";s:13:\"mark_tst_ects\";s:65:\"Your ECTS grade is \"[markects]\" (European Credit Transfer System)\";s:20:\"tst_pass_finished_on\";s:21:\"Test pass finished on\";s:7:\"matches\";s:7:\"matches\";s:14:\"matching_pairs\";s:14:\"Matching Pairs\";s:28:\"matching_shuffle_definitions\";s:16:\"Definitions only\";s:34:\"matching_shuffle_terms_definitions\";s:28:\"Both (Terms and Definitions)\";s:22:\"matching_shuffle_terms\";s:10:\"Terms only\";s:13:\"matching_type\";s:25:\"Matching Question Subtype\";s:13:\"material_file\";s:13:\"Material File\";s:8:\"material\";s:8:\"Material\";s:8:\"maxchars\";s:28:\"Maximum Number of Characters\";s:25:\"qst_essay_chars_remaining\";s:21:\"Remaining characters:\";s:23:\"qst_essay_written_words\";s:24:\"Number of entered words:\";s:32:\"qst_essay_allready_written_words\";s:22:\"Already entered words:\";s:29:\"qst_essay_wordcounter_enabled\";s:11:\"Count Words\";s:34:\"qst_essay_wordcounter_enabled_info\";s:115:\"The entered words are counted. The number of written words is shown to the participants below the text input field.\";s:27:\"maximum_nr_of_tries_reached\";s:88:\"You have reached the maximum number of passes for this test. The test cannot be entered!\";s:14:\"maximum_points\";s:24:\"Maximum Available Points\";s:12:\"maxsize_info\";s:165:\"Enter the maximum size in bytes that should be allowed for file uploads. If you leave this field empty, the maximum size of this installation will be chosen instead.\";s:7:\"maxsize\";s:24:\"Maximum file upload size\";s:19:\"min_percentage_ne_0\";s:82:\"You must define a minimum percentage of 0 percent! The mark schema wasn’t saved.\";s:16:\"msg_circle_added\";s:12:\"Circle added\";s:33:\"tst_rnd_quest_set_tb_add_pool_btn\";s:35:\"New Rule for Selection of Questions\";s:33:\"tst_src_quest_pool_def_list_table\";s:39:\"Rules for Random Selection of Questions\";s:24:\"tst_source_question_pool\";s:13:\"Question Pool\";s:19:\"tst_filter_taxonomy\";s:8:\"Taxonomy\";s:19:\"tst_filter_tax_node\";s:13:\"Taxonomy Node\";s:25:\"tst_non_avail_pools_table\";s:27:\"Non Available Questionpools\";s:37:\"tst_non_avail_pool_msg_status_trashed\";s:137:\"This question pool is trashed, when it gets removed from system permanently, the test is no longer able to synchronize questions from it.\";s:34:\"tst_non_avail_pool_msg_status_lost\";s:189:\"This question pool is not available anymore. Synchronizing questions from this pool is not possible any longer. You can derive a new question pool from the questions contained in this test.\";s:19:\"tst_derive_new_pool\";s:24:\"Derive New Question Pool\";s:20:\"tst_derive_new_pools\";s:25:\"Derive New Question Pools\";s:41:\"tst_please_select_target_for_pool_derives\";s:34:\"Please select a target conatainer.\";s:36:\"tst_non_available_pool_newly_derived\";s:55:\"The new question pool(s) has been derived successfully.\";s:21:\"tst_introduction_text\";s:20:\"Introductory Message\";s:28:\"tst_save_and_create_new_rule\";s:21:\"Save and Add New Rule\";s:40:\"tst_msg_random_qsc_modified_add_new_rule\";s:109:\"The configuration for the random set of questions has been modified successfully. You can add a new rule now.\";s:43:\"tst_msg_random_question_set_config_modified\";s:81:\"The configuration for the random set of questions has been modified successfully.\";s:34:\"tst_msg_random_question_set_synced\";s:79:\"The questions for the current configuration has been synchronized successfully.\";s:37:\"tst_btn_rebuild_random_question_stage\";s:31:\"Synchronize Questions from Pool\";s:43:\"tst_msg_rand_quest_set_stage_pool_last_sync\";s:59:\"Date of last synchronisation of selected question pools: %s\";s:37:\"tst_msg_rand_quest_set_pass_buildable\";s:81:\"A test with a random set of questions is possible with the current configuration.\";s:41:\"tst_msg_rand_quest_set_pass_not_buildable\";s:140:\"A test with a random set of questions is not possible with the current selection of question pools and the amount of questions.
\";s:33:\"tst_msg_rand_quest_set_lost_pools\";s:210:\"The test\'s question selection configuration has been frozen, because the following question pools that are involved to the config are not available anymore. The non available pools can be newly derived.
%s\";s:38:\"tst_msg_rand_quest_set_lost_pools_link\";s:28:\"Open Selected Question Pools\";s:39:\"tst_msg_rand_quest_set_no_src_pool_defs\";s:99:\"A test with a random set of questions is not possible without selecting at least one question pool.\";s:50:\"tst_msg_rand_quest_set_incomplete_quest_amount_cfg\";s:102:\"A test with a random set of questions is not possible without a correctly defined amount of questions.\";s:41:\"tst_msg_rand_quest_set_no_pools_available\";s:109:\"Currently you cannot add new rules for the question selection, because there are no question pools available.\";s:47:\"tst_msg_rand_quest_set_change_quest_amount_here\";s:43:\"You can change the question amount here: %s\";s:29:\"tst_wf_info_optional_question\";s:62:\"This question relates to an already passed learning objective.\";s:41:\"tst_wf_info_answer_adopted_from_prev_pass\";s:48:\"Your answer from a previous attempt was adopted.\";s:30:\"tst_wf_info_answer_not_adopted\";s:161:\"There was no answer from previous attempts adopted, so you have to work through this question, because otherwise your learning objective result will be degraded.\";s:46:\"tst_optional_questions_confirmation_fixed_test\";s:563:\"Question related to already passed learning objectives were answered in previous passes.

You want to navigate to a question, that relates to an already passed learning objective.
You can choose:

I you proceed, you can work on or simply review these questions. If you change your answers that were adopted from previous passes, you can also degrade your learning objective result.

If you decide to not work on or review these questions, you can go back. The questions will be considered in the evaluation in every case.\";s:50:\"tst_optional_questions_confirmation_non_fixed_test\";s:595:\"Question related to already passed learning objectives are optional.

You want to navigate to a question, that relates to an already passed learning objective.
You can choose:

I you proceed, you can work on these questions. Your answers from previous attempts were not adopted, since new random questions were selected for this attempt. With working on this questions you can also degrade your learning objective result.

If you decide to not work on these questions, you can go back. In this case these questions won\'t be considered in the evaluation.\";s:29:\"tst_tab_results_pass_oriented\";s:24:\"Test Results by Attempts\";s:34:\"tst_tab_results_objective_oriented\";s:35:\"Test Results by Learning Objectives\";s:31:\"tst_rnd_quest_set_cfg_pool_form\";s:31:\"Rule for Selection of Questions\";s:25:\"tst_inp_source_pool_label\";s:13:\"Question Pool\";s:30:\"tst_inp_source_pool_filter_tax\";s:15:\"Taxonomy Filter\";s:33:\"tst_inp_source_pool_no_tax_filter\";s:28:\"Use No Taxonomy Based Filter\";s:32:\"tst_inp_source_pool_filter_tax_x\";s:27:\"Use Taxonomy \"%s\" as Filter\";s:29:\"tst_inp_no_available_tax_hint\";s:50:\"No Available Taxonomies for Selected Question Pool\";s:39:\"tst_msg_source_pool_definitions_deleted\";s:39:\"The rule has been removed successfully.\";s:21:\"tst_limit_nr_of_tries\";s:27:\"Limit Number of Test Passes\";s:24:\"msg_deleted_export_files\";s:22:\"Export file(s) removed\";s:27:\"msg_number_of_terms_too_low\";s:74:\"The number of terms must be greater or equal to the number of definitions.\";s:14:\"msg_poly_added\";s:13:\"Polygon added\";s:19:\"msg_questions_moved\";s:17:\"Question(s) moved\";s:14:\"msg_rect_added\";s:15:\"Rectangle added\";s:21:\"msg_selected_for_move\";s:31:\"Question(s) selected for moving\";s:21:\"no_selection_for_move\";s:31:\"No question selected for moving\";s:18:\"next_question_rows\";s:26:\"Questions %d - %d of %d »\";s:14:\"no_passed_mark\";s:72:\"You must set at least one mark to PASSED! The mark schema was not saved.\";s:29:\"no_question_selected_for_move\";s:46:\"Please check at least one question to move it!\";s:22:\"no_questions_available\";s:33:\"There are no questions available!\";s:12:\"no_selection\";s:20:\"--- No Selection ---\";s:27:\"no_target_selected_for_move\";s:34:\"You must select a target position!\";s:25:\"no_user_or_group_selected\";s:73:\"Please check an option what are you searching for (users, groups, roles)!\";s:16:\"not_yet_accessed\";s:16:\"Not yet accessed\";s:21:\"nr_of_correct_answers\";s:27:\"Number of Requested Answers\";s:17:\"number_of_answers\";s:17:\"Number of Answers\";s:11:\"numeric_gap\";s:11:\"Numeric Gap\";s:2:\"or\";s:2:\"or\";s:25:\"oq_btn_use_order_pictures\";s:19:\"Use answer pictures\";s:22:\"oq_btn_use_order_terms\";s:16:\"Use answer terms\";s:14:\"ordertext_info\";s:225:\"Please enter the text that should be ordered horizontally. The ordering text will be separated by the whitespace signs in the text. If you need a different separation, you may use the separator %s to separate your text units.\";s:9:\"ordertext\";s:13:\"Ordering Text\";s:11:\"output_mode\";s:11:\"Output Mode\";s:6:\"output\";s:6:\"Output\";s:35:\"participants_invitation_description\";s:87:\"This test can only be accessed by users you have manually added in tab ‘Dashboard’.\";s:23:\"participants_invitation\";s:30:\"Manually Selected Participants\";s:12:\"participants\";s:12:\"Participants\";s:13:\"dashboard_tab\";s:9:\"Dashboard\";s:13:\"pass_finished\";s:7:\"%s pass\";s:4:\"pass\";s:4:\"Pass\";s:11:\"tst_attempt\";s:7:\"Attempt\";s:24:\"tst_back_to_virtual_pass\";s:25:\"Back to Question Overview\";s:13:\"passed_status\";s:13:\"Passed Status\";s:15:\"passed_official\";s:6:\"passed\";s:11:\"passed_only\";s:17:\"Passed Tests Only\";s:12:\"passed_short\";s:6:\"passed\";s:15:\"passes_finished\";s:9:\"%s passes\";s:10:\"percentage\";s:10:\"Percentage\";s:10:\"percentile\";s:10:\"Percentile\";s:7:\"picture\";s:7:\"Picture\";s:13:\"please_select\";s:19:\"-- please select --\";s:5:\"point\";s:5:\"Point\";s:14:\"points_checked\";s:19:\"Points when Checked\";s:12:\"points_short\";s:3:\"Pt.\";s:16:\"points_unchecked\";s:21:\"Points when Unchecked\";s:17:\"points_wrong_info\";s:94:\"Enter the negative points for each selected word that is not in the list of the marked errors.\";s:12:\"points_wrong\";s:16:\"Wrong Selections\";s:6:\"points\";s:6:\"Points\";s:26:\"polygon_click_next_or_save\";s:140:\"Please click on the next point of the polygon or save the area. (It is not necessary to click again on the starting point of this polygon !)\";s:24:\"polygon_click_next_point\";s:46:\"Please click on the next point of the polygon.\";s:28:\"polygon_click_starting_point\";s:50:\"Please click on the starting point of the polygon.\";s:7:\"polygon\";s:7:\"Polygon\";s:10:\"remove_gap\";s:10:\"Remove Gap\";s:9:\"postponed\";s:9:\"postponed\";s:7:\"preview\";s:7:\"Preview\";s:22:\"previous_question_rows\";s:26:\"<< Questions %d - %d of %d\";s:34:\"qpl_qst_edit_form_taxonomy_section\";s:10:\"Taxonomies\";s:26:\"qpl_qst_edit_form_taxonomy\";s:13:\"Taxonomy \"%s\"\";s:41:\"qpl_assessment_no_assessment_of_questions\";s:118:\"There is no assessment of questions available for the selected question. The question has not yet been used in a test.\";s:31:\"qpl_assessment_total_of_answers\";s:16:\"Total of Answers\";s:37:\"qpl_assessment_total_of_right_answers\";s:66:\"Total Percentage of Correct Answers (percentage of maximum points)\";s:28:\"qpl_confirm_delete_questions\";s:56:\"Are you sure you want to remove the following questions?\";s:25:\"qpl_copy_insert_clipboard\";s:52:\"The selected question(s) are copied to the clipboard\";s:20:\"qpl_copy_select_none\";s:62:\"Please check at least one question to copy it to the clipboard\";s:21:\"qpl_delete_rbac_error\";s:43:\"You have no rights to remove this question!\";s:22:\"qpl_delete_select_none\";s:47:\"Please check at least one question to remove it\";s:16:\"qpl_export_excel\";s:20:\"Microsoft Excel File\";s:22:\"qpl_export_select_none\";s:47:\"Please check at least one question to export it\";s:14:\"qpl_export_xml\";s:12:\"QTI XML File\";s:47:\"qpl_settings_general_form_property_nav_taxonomy\";s:34:\"Taxonomy Filter as Navigation Tree\";s:59:\"qpl_settings_general_form_property_nav_taxonomy_description\";s:100:\"When a taxonomy is selected, it well be presented as navigation tree instead of a table filter item.\";s:53:\"qpl_settings_general_form_property_opt_notax_selected\";s:29:\"Use No Navigation Tree Filter\";s:17:\"tst_pass_deletion\";s:15:\"Previous Passes\";s:29:\"tst_pass_deletion_not_allowed\";s:46:\"The Deletion of Previous Passes is NOT allowed\";s:25:\"tst_pass_deletion_allowed\";s:42:\"The Deletion of Previous Passes is allowed\";s:28:\"qpl_imagemap_preview_missing\";s:310:\"ILIAS could not create the temporary preview file containing the image map areas. The original image is shown instead. This means that either the web server‘s ImageMagick tool isn‘t configured correctly or there are no write permissions in the temporary directory! Please contact your system administrator.\";s:25:\"qpl_import_create_new_qpl\";s:43:\"Import the questions in a new question pool\";s:19:\"qpl_import_no_items\";s:45:\"Error: The import file contains no questions!\";s:26:\"qpl_import_non_ilias_files\";s:163:\"Error: The import file contains QTI files which are not created by an ILIAS system. Please contact the ILIAS team to get in import filter for your QTI file format.\";s:24:\"tst_import_non_ilias_zip\";s:83:\"Error: The filename of the uploaded import file does not match the expected format.\";s:33:\"qpl_import_verify_found_questions\";s:103:\"ILIAS found the following questions in the import file. Please select the questions you want to import.\";s:25:\"qpl_move_insert_clipboard\";s:46:\"The selected question(s) are marked for moving\";s:20:\"qpl_move_select_none\";s:58:\"Please check at least one question to select it for moving\";s:27:\"qpl_settings_subtab_general\";s:16:\"General Settings\";s:30:\"qpl_settings_subtab_taxonomies\";s:10:\"Taxonomies\";s:25:\"qpl_form_general_settings\";s:16:\"General Settings\";s:53:\"qpl_settings_general_form_property_online_description\";s:50:\"Only online question pools could be used in tests.\";s:41:\"qpl_settings_general_form_property_online\";s:6:\"Online\";s:44:\"qpl_settings_general_form_prop_show_tax_desc\";s:68:\"Existing taxonomies in this pool are offered for question filtering.\";s:50:\"qpl_settings_general_form_property_show_taxonomies\";s:15:\"Show Taxonomies\";s:20:\"qpl_paste_no_objects\";s:91:\"There are no questions in the clipboard. Please copy or move a question into the clipboard.\";s:17:\"qpl_paste_success\";s:55:\"The question(s) have been pasted into the question pool\";s:15:\"qpl_paste_error\";s:142:\"At least one question could not be pasted into the question pool. Possible reason: You tried to move the question into the same question pool.\";s:22:\"qpl_question_is_in_use\";s:216:\"The question you are about to edit exists in %s test(s). If you change this question, you will NOT change the question(s) in the test(s), because the system creates a copy of a question when it is inserted in a test!\";s:21:\"qpl_questions_deleted\";s:20:\"Question(s) removed.\";s:25:\"qpl_qst_inp_matching_mode\";s:13:\"Matching Mode\";s:36:\"qpl_qst_inp_matching_mode_one_on_one\";s:37:\"One Term Matches One Definition (1:1)\";s:36:\"qpl_qst_inp_matching_mode_all_on_all\";s:53:\"One or More Terms match One or More Definitions (n:n)\";s:15:\"qst_nr_of_tries\";s:15:\"Number of Tries\";s:29:\"question_cumulated_statistics\";s:29:\"Cumulated Question Statistics\";s:24:\"question_instances_title\";s:44:\"This question is used in the following tests\";s:28:\"question_marking_description\";s:148:\"Participants get the option to flag a test question for some purpose. The flags are shown in ‘List of Questions’, provided that it is activated.\";s:16:\"question_marking\";s:18:\"Flagging Questions\";s:21:\"question_not_answered\";s:29:\"The question was not answered\";s:25:\"question_saved_for_upload\";s:224:\"The question was saved automatically in order to reserve hard disk space to store the uploaded file. If you cancel this form now, be aware that you must delete the question in the question pool if you do not want to keep it!\";s:16:\"question_summary\";s:9:\"Dashboard\";s:20:\"question_summary_btn\";s:9:\"Dashboard\";s:19:\"obligations_summary\";s:28:\"List of Compulsory Questions\";s:36:\"tst_you_have_to_answer_this_question\";s:63:\"You have to answer this question to be able to finish the test.\";s:14:\"question_title\";s:14:\"Question Title\";s:13:\"question_type\";s:13:\"Question Type\";s:24:\"questionpool_not_entered\";s:40:\"Please enter a name for a question pool!\";s:25:\"questionpool_not_selected\";s:30:\"Please select a question pool!\";s:14:\"questions_from\";s:14:\"questions from\";s:20:\"random_accept_sample\";s:13:\"Accept Sample\";s:21:\"random_another_sample\";s:18:\"Get another Sample\";s:16:\"random_selection\";s:16:\"Random Selection\";s:34:\"tst_rnd_quest_set_cfg_general_form\";s:33:\"Configure Random Set of Questions\";s:17:\"range_lower_limit\";s:11:\"Lower Bound\";s:17:\"range_upper_limit\";s:11:\"Upper Bound\";s:5:\"range\";s:5:\"Range\";s:25:\"rectangle_click_br_corner\";s:60:\"Please click on the bottom right corner of the desired area.\";s:25:\"rectangle_click_tl_corner\";s:56:\"Please click on the top left corner of the desired area.\";s:9:\"rectangle\";s:9:\"Rectangle\";s:17:\"redirectAfterSave\";s:137:\"The maximum working time has been reached and your last question has been saved automatically. In a few seconds you will be redirected...\";s:6:\"region\";s:6:\"Region\";s:21:\"remove_as_participant\";s:27:\"Remove as Fixed Participant\";s:15:\"remove_question\";s:6:\"Remove\";s:15:\"remove_solution\";s:33:\"Remove Content for Recapitulation\";s:17:\"reset_definitions\";s:14:\"Reset Ordering\";s:12:\"reset_filter\";s:12:\"Reset Filter\";s:14:\"reset_pictures\";s:23:\"Reset Picture Positions\";s:11:\"reset_terms\";s:14:\"Reset Ordering\";s:6:\"result\";s:6:\"Result\";s:11:\"finish_test\";s:15:\"Finish the Test\";s:13:\"next_question\";s:4:\"Next\";s:17:\"previous_question\";s:8:\"Previous\";s:13:\"submit_answer\";s:11:\"Save Answer\";s:13:\"skip_question\";s:22:\"Do not Answer and Next\";s:14:\"discard_answer\";s:13:\"Delete Answer\";s:27:\"discard_answer_confirmation\";s:168:\"Your answer will be finally and completely deleted. You can provide a new answer at any time. But this one will be purged.

Do you want to delete your answer?\";s:31:\"tst_nav_while_edit_modal_header\";s:22:\"Decision about Answers\";s:29:\"tst_nav_while_edit_modal_text\";s:67:\"What to do with the answers you possibly entered for this question?\";s:33:\"tst_nav_while_edit_modal_save_btn\";s:4:\"Save\";s:35:\"tst_nav_while_edit_modal_nosave_btn\";s:11:\"Do Not Save\";s:35:\"tst_nav_while_edit_modal_cancel_btn\";s:6:\"Cancel\";s:11:\"edit_answer\";s:11:\"Edit Answer\";s:15:\"answer_question\";s:15:\"Answer Question\";s:27:\"back_to_objective_container\";s:12:\"Go to Course\";s:11:\"scored_pass\";s:11:\"Scored Pass\";s:7:\"scoring\";s:19:\"Scoring and Results\";s:13:\"search_groups\";s:13:\"Search Groups\";s:14:\"search_results\";s:14:\"Search Results\";s:12:\"search_roles\";s:12:\"Search Roles\";s:11:\"search_term\";s:11:\"Search Term\";s:12:\"search_users\";s:12:\"Search Users\";s:28:\"tst_answer_fixation_handling\";s:19:\"Participant Answers\";s:24:\"tst_answer_fixation_none\";s:51:\"Do not Lock Participants Answers during Test Passes\";s:29:\"tst_answer_fixation_none_desc\";s:91:\"As long as a test pass was not finished, participants can change their answers at any time.\";s:39:\"tst_answer_fixation_on_instant_feedback\";s:46:\"Lock Answers with the Presentation of Feedback\";s:44:\"tst_answer_fixation_on_instant_feedback_desc\";s:127:\"After the feedback for a question is shown participant answers are locked, participants cannot change these answers any longer.\";s:40:\"tst_answer_fixation_on_followup_question\";s:57:\"Lock Answers with the Presentation of Follow-Up Questions\";s:45:\"tst_answer_fixation_on_followup_question_desc\";s:140:\"Showing the follow-up question will lock participant answers for the previous question, participants cannot change these answers any longer.\";s:47:\"tst_answer_fixation_on_instantfb_or_followupqst\";s:69:\"Lock Answers with the Presentation of Feedback or Follow-Up Questions\";s:52:\"tst_answer_fixation_on_instantfb_or_followupqst_desc\";s:147:\"Participant Answers for a question will be locked either with the presentation of the questions\'s feedback or when the follow-up question is shown.\";s:28:\"tst_instant_feedback_trigger\";s:16:\"Feedback Trigger\";s:35:\"tst_instant_feedback_trigger_manual\";s:46:\"Participants can Trigger the Feedback Manually\";s:40:\"tst_instant_feedback_trigger_manual_desc\";s:102:\"The feedback is availble but will only be shown when a participant triggers the presentation manually.\";s:35:\"tst_instant_feedback_trigger_forced\";s:48:\"The Feedback is Triggered by Answering Questions\";s:40:\"tst_instant_feedback_trigger_forced_desc\";s:85:\"The presentation of feedback is forced to all participants with answering a question.\";s:10:\"select_gap\";s:10:\"Select Gap\";s:19:\"select_max_one_item\";s:27:\"Please select one item only\";s:15:\"select_one_user\";s:32:\"Please select at least one user.\";s:40:\"select_target_position_for_move_question\";s:92:\"Please select a target position to move the question(s) and press one of the insert buttons!\";s:9:\"selection\";s:9:\"Selection\";s:13:\"set_edit_mode\";s:13:\"Set Edit Mode\";s:10:\"set_filter\";s:10:\"Set Filter\";s:19:\"set_manscoring_done\";s:32:\"Mark as ‘Scored Participant’\";s:19:\"set_manual_feedback\";s:15:\"Manual Feedback\";s:5:\"shape\";s:5:\"Shape\";s:21:\"show_detailed_results\";s:44:\"Show User’s Detailed Results (Marked Pass)\";s:18:\"show_pass_overview\";s:25:\"Show Marked Pass Overview\";s:17:\"show_user_answers\";s:28:\"Show User’s Marked Answers\";s:13:\"showinfo_desc\";s:125:\"Users will be presented with a complete list of test properties on tab ‘Info’, i.e. information on scoring and reporting.\";s:8:\"showinfo\";s:24:\"Show all Test Properties\";s:21:\"showSuggestedSolution\";s:4:\"Type\";s:15:\"shuffle_answers\";s:15:\"Shuffle Answers\";s:18:\"suggested_solution\";s:26:\"Content for Recapitulation\";s:13:\"solution_hint\";s:35:\"Assigned Content for Recapitulation\";s:12:\"solutionText\";s:4:\"Text\";s:9:\"start_tag\";s:9:\"Start Tag\";s:16:\"statistical_data\";s:16:\"Statistical Data\";s:10:\"statistics\";s:10:\"Statistics\";s:37:\"suggested_solution_added_successfully\";s:50:\"You successfully set a content for recapitulation!\";s:21:\"suggestedSolutionType\";s:8:\"Refer to\";s:10:\"term_image\";s:10:\"Term Image\";s:9:\"term_text\";s:9:\"Term Text\";s:4:\"term\";s:4:\"Term\";s:5:\"terms\";s:5:\"Terms\";s:12:\"text_correct\";s:12:\"Correct Text\";s:8:\"text_gap\";s:8:\"Text Gap\";s:26:\"text_maximum_chars_allowed\";s:148:\"Please do not enter more than a maximum of %s characters. Additional characters won\'t get cut, but the exceeding might be considered during scoring.\";s:11:\"text_rating\";s:20:\"Text Matching Method\";s:10:\"text_wrong\";s:10:\"Wrong Text\";s:23:\"textsize_errortext_info\";s:91:\"Enter the text size of the error text in percent if you want another size than 100 percent.\";s:13:\"textsize_info\";s:94:\"Enter the text size of the ordering text in percent if you want another size than 100 percent.\";s:8:\"textsize\";s:9:\"Text Size\";s:19:\"thumb_geometry_info\";s:109:\"The image thumbnails will be created with a maximum values of height and width given, aspect ratio preserved.\";s:14:\"thumb_geometry\";s:18:\"Thumbnail Geometry\";s:15:\"thumb_size_info\";s:158:\"If you enter a thumbnail size, a thumbnail of this size will be generated for uploaded images. Without a thumbnail size, the original image size will be used.\";s:21:\"thumb_size_unit_pixel\";s:5:\"Pixel\";s:10:\"thumb_size\";s:14:\"Thumbnail Size\";s:11:\"time_format\";s:8:\"HH MM SS\";s:34:\"too_many_targets_selected_for_move\";s:44:\"You must select exactly one target position!\";s:4:\"true\";s:4:\"True\";s:23:\"tst_access_code_created\";s:204:\"To provide you with permanent access to your test results and to offer you a possibility to resume this test, a unique test access code was created. Please write down this code use it for further actions.\";s:25:\"tst_all_user_data_deleted\";s:44:\"All user data of this test has been removed!\";s:26:\"tst_allowed_users_time_gap\";s:26:\"Idle Time for Active Users\";s:17:\"tst_allowed_users\";s:39:\"Limit Number of Concurrent Participants\";s:21:\"tst_already_submitted\";s:43:\"Test has already been finish and submitted.\";s:13:\"tst_anonymity\";s:7:\"Privacy\";s:27:\"tst_answered_questions_test\";s:31:\"Questions answered in this test\";s:22:\"tst_answered_questions\";s:18:\"Answered Questions\";s:20:\"tst_best_solution_is\";s:20:\"The best solution is\";s:28:\"tst_browse_for_qpl_questions\";s:13:\"Add from Pool\";s:28:\"tst_browse_for_tst_questions\";s:19:\"Add from Other Test\";s:30:\"tst_change_points_for_question\";s:21:\"Points for the Answer\";s:26:\"tst_confirm_submit_answers\";s:123:\"Please confirm your submission of your solution. You won\'t be able to revert your answers after pressing the submit button.\";s:27:\"tst_count_correct_solutions\";s:46:\"Only Correct and Complete Answers Score Points\";s:32:\"tst_count_correct_solutions_desc\";s:200:\"Participants score either the maximum number of points for a fully correct and complete answer or 0 points in every other case. This is also valid for questions that define points for partial answers.\";s:27:\"tst_count_partial_solutions\";s:47:\"Incomplete or Partly Wrong Answers Score Points\";s:32:\"tst_count_partial_solutions_desc\";s:200:\"When a question defines points for partial answers, points for correctly provided partial answers are added up: Participants can score points for incomplete or partly wrong answers on these questions.\";s:20:\"tst_defaults_applied\";s:45:\"The selected test defaults have been applied.\";s:31:\"tst_defaults_apply_not_possible\";s:118:\"ILIAS could not apply the selected test defaults to this test! Maybe this test already contains participant data sets.\";s:29:\"tst_defaults_apply_select_one\";s:79:\"Please select exact one test defaults entry to apply the defaults to this test!\";s:22:\"tst_defaults_available\";s:23:\"Available test defaults\";s:29:\"tst_defaults_defaults_of_test\";s:28:\"the settings of this test as\";s:23:\"tst_defaults_enter_name\";s:51:\"Please enter a name for your test default settings!\";s:24:\"tst_defaults_not_defined\";s:55:\"You don’t have any test default settings defined yet.\";s:23:\"tst_delete_missing_mark\";s:49:\"Please select at least one mark step to remove it\";s:29:\"tst_dont_use_previous_answers\";s:78:\"Your previous answers will not be used as default values in future test passes\";s:15:\"tst_ending_time\";s:14:\"Finishing Time\";s:22:\"tst_enter_questionpool\";s:71:\"Please enter a question pool name where the new question will be stored\";s:24:\"tst_eval_question_points\";s:28:\"Question Results for Pass %s\";s:24:\"tst_eval_results_by_pass\";s:27:\"List of Answers for Pass %s\";s:27:\"tst_eval_results_by_pass_lo\";s:30:\"List of Answers for Attempt %s\";s:19:\"tst_eval_results_lo\";s:15:\"List of Answers\";s:20:\"tst_eval_show_answer\";s:11:\"Show Answer\";s:36:\"tst_eval_total_finished_average_time\";s:28:\"Average test processing time\";s:23:\"tst_eval_total_finished\";s:69:\"Total finished tests (Participants that used up all possible passes.)\";s:36:\"tst_eval_total_passed_average_points\";s:30:\"Average points of passed tests\";s:34:\"tst_eval_total_passed_average_time\";s:43:\"Average processing time of all passed tests\";s:21:\"tst_eval_total_passed\";s:18:\"Total passed tests\";s:22:\"tst_eval_total_persons\";s:49:\"Total number of participants who started the test\";s:11:\"review_view\";s:6:\"Review\";s:25:\"tst_finish_confirm_button\";s:30:\"Yes, I want to finish the test\";s:32:\"tst_finish_confirm_cancel_button\";s:36:\"No, go back to the previous question\";s:32:\"tst_finish_confirmation_question\";s:194:\"You are going to finish this test and reach the maximum number of allowed test passes. You won’t be able to enter this test again to change your answers. Do you really want to finish the test?\";s:32:\"tst_finish_notification_advanced\";s:25:\"Send complete test result\";s:31:\"tst_finish_notification_content\";s:17:\"Content of e-mail\";s:30:\"tst_finish_notification_simple\";s:29:\"Send username and finish date\";s:26:\"tst_finish_notification_no\";s:9:\"No e-mail\";s:23:\"tst_finish_notification\";s:12:\"Notification\";s:28:\"tst_finish_notification_desc\";s:77:\"Sends an e-mail to the test owner for every user that has completed the test.\";s:12:\"tst_finished\";s:8:\"Finished\";s:17:\"unfinished_passes\";s:17:\"Unfinished Passes\";s:33:\"finish_pass_for_user_confirmation\";s:72:\"Are you sure you want to finish this test pass for the participant \"%s\"?\";s:25:\"finish_pass_for_all_users\";s:62:\"Are you sure you want to finish the test passes for all Users?\";s:22:\"finish_all_user_passes\";s:22:\"Finish all Test Passes\";s:24:\"finish_unfinished_passes\";s:18:\"Finish Open Passes\";s:29:\"finish_unfinished_passes_desc\";s:98:\"Passes which have a finishing time or a duration limit configured will be closed by this cron job.\";s:22:\"tst_general_properties\";s:16:\"General Settings\";s:19:\"tst_heading_scoring\";s:7:\"Scoring\";s:18:\"tst_hide_side_list\";s:22:\"Hide List of Questions\";s:33:\"tst_import_verify_found_questions\";s:123:\"ILIAS found the following questions in the test import file. Please select the questions you want to import with this test.\";s:27:\"tst_insert_missing_question\";s:63:\"Please select at least one question to insert it into the test!\";s:32:\"tst_insert_questions_and_results\";s:194:\"This test was already executed by %s user(s). Inserting questions to this test will remove all test results of these users. Are you sure you want to insert the following question(s) to the test?\";s:20:\"tst_insert_questions\";s:70:\"Are you sure you want to insert the following question(s) to the test?\";s:35:\"tst_instant_feedback_answer_generic\";s:32:\"Feedback on Fully Correct Answer\";s:40:\"tst_instant_feedback_answer_generic_desc\";s:301:\"If the answer provided is fully correct ILIAS will show one type of feedback upon clicking the ‘Check’ button. If the answer provided is not fully correct, another type of feedback will be displayed. Both types of feedback have to be prepared in the tab ‘Feedback’ of the respective question.\";s:36:\"tst_instant_feedback_answer_specific\";s:42:\"Specific Feedback for Each Answer provided\";s:41:\"tst_instant_feedback_answer_specific_desc\";s:245:\"On clicking the ‘Check’-button, ILIAS will show a specific feedback for every answer option selected by the participant. The feedback has to be prepared along with the question. This specific feedback is not supported for all question types.\";s:27:\"tst_instant_feedback_forced\";s:22:\"Force Instant Feedback\";s:28:\"tst_instant_feedback_results\";s:15:\"Points Attained\";s:33:\"tst_instant_feedback_results_desc\";s:111:\"On clicking the ‘Check’ button ILIAS will display how many points were attained by answering this question.\";s:29:\"tst_instant_feedback_solution\";s:25:\"Show Best Possible Answer\";s:34:\"tst_instant_feedback_solution_desc\";s:95:\"On clicking the ‘Check’ button ILIAS will display the best possible answer to the question.\";s:20:\"tst_instant_feedback\";s:16:\"Instant Feedback\";s:25:\"tst_instant_feedback_desc\";s:96:\"When questions are configured with feedback it is provided to participants during the test pass.\";s:29:\"tst_instant_feedback_contents\";s:17:\"Included Contents\";s:16:\"tst_introduction\";s:20:\"Introductory Message\";s:21:\"tst_introduction_desc\";s:128:\"Shows an introductory message on the tab ‘Info’ of the test. This text is accessible already before the test can be started.\";s:18:\"tst_invited_nobody\";s:68:\"No users, groups or roles have been added as fixed test participants\";s:26:\"tst_invited_selected_users\";s:61:\"The selected users have been added as fixed test participants\";s:24:\"tst_list_of_answers_show\";s:24:\"Review of Scored Answers\";s:19:\"tst_list_of_answers\";s:15:\"List of Answers\";s:25:\"tst_list_of_questions_end\";s:43:\"Show before a participant finishes the test\";s:27:\"tst_list_of_questions_start\";s:32:\"Show prior to the first question\";s:38:\"tst_list_of_questions_with_description\";s:29:\"Include question descriptions\";s:29:\"tst_mark_create_new_mark_step\";s:20:\"Create New Mark Step\";s:34:\"tst_mark_create_simple_mark_schema\";s:27:\"Reset to Simple Mark Schema\";s:22:\"tst_mark_minimum_level\";s:20:\"Minimum Level (in %)\";s:22:\"tst_mark_official_form\";s:13:\"Official Form\";s:15:\"tst_mark_passed\";s:6:\"Passed\";s:19:\"tst_mark_short_form\";s:10:\"Short Form\";s:8:\"tst_mark\";s:4:\"Mark\";s:29:\"tst_max_allowed_users_heading\";s:70:\"The maximum number of simultaneous users in this test has been reached\";s:29:\"tst_max_allowed_users_message\";s:264:\"The maximum number of simultaneous active users in the test has been reached. Please try again later to start or resume the test. If one of the active users is inactive for more than %s seconds, you may be able to enter this test. Thank you for your understanding.\";s:18:\"tst_maximum_points\";s:14:\"Maximum Points\";s:22:\"tst_no_evaluation_data\";s:38:\"There is no evaluation data available.\";s:20:\"tst_no_marks_defined\";s:72:\"There are no marks defined, please create at least a simple mark schema!\";s:36:\"tst_no_question_selected_for_removal\";s:48:\"Please check at least one question to remove it!\";s:42:\"tst_no_question_selected_for_moving_to_qpl\";s:67:\"Please choose at least one question to be added to a question pool!\";s:12:\"tst_no_tries\";s:4:\"none\";s:16:\"tst_nr_of_passes\";s:21:\"Number of Test Passes\";s:23:\"tst_nr_of_tries_of_user\";s:24:\"Passes Already Completed\";s:15:\"tst_nr_of_tries\";s:21:\"Max. Number of Passes\";s:23:\"tst_participating_users\";s:19:\"Participating Users\";s:21:\"tst_tbl_invited_users\";s:30:\"Manually Selected Participants\";s:20:\"tst_tbl_participants\";s:12:\"Participants\";s:22:\"tst_tbl_results_grades\";s:18:\"Results and Grades\";s:31:\"tst_answered_questions_of_total\";s:8:\"%s of %s\";s:25:\"tst_reached_points_of_max\";s:8:\"%s of %s\";s:10:\"tst_passed\";s:6:\"Passed\";s:10:\"tst_failed\";s:6:\"Failed\";s:23:\"tst_tbl_col_scored_pass\";s:11:\"Scored Pass\";s:25:\"tst_tbl_col_pass_finished\";s:13:\"Pass Finished\";s:30:\"tst_tbl_col_answered_questions\";s:18:\"Answered Questions\";s:26:\"tst_tbl_col_reached_points\";s:14:\"Reached Points\";s:26:\"tst_tbl_col_percent_result\";s:14:\"Percent Solved\";s:25:\"tst_tbl_col_passed_status\";s:7:\"Grading\";s:22:\"tst_tbl_col_final_mark\";s:4:\"Mark\";s:18:\"tst_pass_best_pass\";s:19:\"Score the Best Pass\";s:23:\"tst_pass_best_pass_desc\";s:133:\"The pass in which a participant performed best will be scored. This setting does only apply when more than one test pass is possible.\";s:16:\"tst_pass_details\";s:16:\"Detailed Results\";s:18:\"tst_pass_last_pass\";s:19:\"Score the Last Pass\";s:23:\"tst_pass_last_pass_desc\";s:46:\"The last pass of a participant will be scored.\";s:16:\"tst_pass_scoring\";s:23:\"Scoring Multiple Passes\";s:10:\"tst_passes\";s:11:\"Test Passes\";s:21:\"tst_allowed_users_max\";s:27:\"Max. Number of Participants\";s:20:\"tst_password_details\";s:101:\"If you define a test password, all users with test access must enter this password to start the test.\";s:18:\"tst_password_enter\";s:14:\"Enter Password\";s:35:\"tst_password_entered_wrong_password\";s:70:\"You cannot start the test because you entered the wrong test password!\";s:25:\"tst_password_introduction\";s:102:\"This test can only be accessed with a test password. Please enter the test password to start the test.\";s:17:\"tst_password_form\";s:19:\"Enter Test Password\";s:12:\"tst_password\";s:13:\"Test Password\";s:18:\"tst_percent_solved\";s:14:\"Percent Solved\";s:12:\"tst_position\";s:17:\"Question %s of %s\";s:26:\"tst_position_without_total\";s:11:\"Question %s\";s:12:\"tst_postpone\";s:20:\"Unanswered Questions\";s:15:\"tst_postpone_on\";s:37:\"Unanswered questions will be enqueued\";s:20:\"tst_postpone_on_desc\";s:144:\"Question that users just look at and flip over without answering them, will be enqueued to be presented again automatically the end of the test.\";s:16:\"tst_postpone_off\";s:37:\"Unanswered Questions Stay in Position\";s:21:\"tst_postpone_off_desc\";s:159:\"Question that users just look at and flip over without answering them, will stay at their position in the test and will not be enqueued at the end of the test.\";s:9:\"tst_print\";s:32:\"Test and Assessment - Print View\";s:24:\"tst_processing_time_desc\";s:342:\"Participants can work through the test only for a specified period of time. Time is clocking away from the moment a user starts a test for the first time. Suspending the test does not stop the clock. If the number of possible test passes is limited an additional feature for granting extra time to participants appears in the tab \'Dashboard\'.\";s:19:\"tst_processing_time\";s:22:\"Limit Duration of Test\";s:13:\"tst_qst_order\";s:3:\"No.\";s:17:\"tst_question_mark\";s:18:\"Mark this question\";s:19:\"tst_question_marked\";s:23:\"You marked the question\";s:19:\"tst_question_marker\";s:7:\"Flagged\";s:15:\"tst_question_no\";s:5:\"Order\";s:18:\"tst_question_offer\";s:53:\"Do you accept this sample or do you want another one?\";s:39:\"tst_inp_all_quest_points_equal_per_pool\";s:42:\"Use Only Pools with Equal Scored Questions\";s:44:\"tst_inp_all_quest_points_equal_per_pool_desc\";s:254:\"If enabled, only question pools in which all questions have the same points are offered. Participants of such a test can all have the same number of maximum points, thus the test results will be better comparable. It is recommended to choose this option.\";s:29:\"tst_inp_quest_amount_cfg_mode\";s:19:\"Amount of Questions\";s:34:\"tst_inp_quest_amount_cfg_mode_test\";s:39:\"Define the amount of questions per test\";s:34:\"tst_inp_quest_amount_cfg_mode_pool\";s:76:\"Define the amount of questions per selected question pool and taxonomy node.\";s:29:\"tst_inp_quest_amount_per_test\";s:38:\"Number of Questions for the Whole Test\";s:36:\"tst_inp_quest_amount_per_source_pool\";s:15:\"Question Amount\";s:19:\"tst_question_amount\";s:15:\"Question Amount\";s:18:\"tst_question_title\";s:14:\"Question Title\";s:29:\"tst_qbt_filter_question_title\";s:17:\"Title of Question\";s:17:\"tst_question_type\";s:13:\"Question Type\";s:22:\"tst_questions_inserted\";s:21:\"Question(s) inserted!\";s:21:\"tst_questions_removed\";s:20:\"Question(s) removed!\";s:26:\"tst_random_nr_of_questions\";s:19:\"How many questions?\";s:30:\"tst_random_select_questionpool\";s:53:\"Select the question pool to choose the questions from\";s:38:\"tst_nonpool_questions_get_lost_warning\";s:183:\"The current test mode includes questions in its configuration that are not assigned to any question pool. If you change the test mode, these questions will be lost permanently.\";s:18:\"tst_reached_points\";s:6:\"Points\";s:15:\"tst_remove_mark\";s:16:\"Remove this mark\";s:32:\"tst_remove_questions_and_results\";s:197:\"This test was already executed by %s user(s). Removing questions from this test will remove all test results of these users. Are you sure you want to remove the following question(s) from the test?\";s:20:\"tst_remove_questions\";s:70:\"Are you sure you want to remove the following questions from the test?\";s:21:\"tst_report_after_date\";s:34:\"After a fixed score reporting date\";s:31:\"tst_report_after_first_question\";s:49:\"Offer test results when the test has been started\";s:21:\"tst_report_after_test\";s:44:\"Offer test results when the test is finished\";s:23:\"tst_report_after_passed\";s:48:\"Offer test results when the test has been passed\";s:16:\"tst_report_never\";s:25:\"No test results available\";s:37:\"tst_res_tab_msg_res_after_taking_test\";s:56:\"After taking the test your results will be offered here.\";s:37:\"tst_res_tab_msg_res_after_finish_test\";s:59:\"After finishing the test your results will be offered here.\";s:37:\"tst_res_tab_msg_res_after_test_passed\";s:57:\"After passing the test your results will be offered here.\";s:30:\"tst_res_tab_msg_res_after_date\";s:63:\"You test results will be offered here on the following date: %s\";s:37:\"tst_res_tab_msg_res_after_date_no_res\";s:82:\"When you take the test your results will be offered here on the following date: %s\";s:30:\"tst_reset_processing_time_desc\";s:134:\"The duration will be reset to the defined maximum for every test pass. This setting requires multiple test passes to become effective.\";s:25:\"tst_reset_processing_time\";s:34:\"Reset duration for every test pass\";s:25:\"tst_result_user_name_pass\";s:30:\"Results of Test Pass %s for %s\";s:20:\"tst_result_user_name\";s:19:\"Test Results for %s\";s:15:\"tst_result_pass\";s:20:\"Results of Test Pass\";s:25:\"tst_results_access_always\";s:11:\"Immediately\";s:30:\"tst_results_access_always_desc\";s:228:\"Participants can access their results within the ‘Results’-tab immediately after starting the test pass and while still taking the test. Additionally ILIAS will redirect to the \'Results\'-tab after the test has been finished.\";s:23:\"tst_results_access_date\";s:4:\"Date\";s:28:\"tst_results_access_date_desc\";s:92:\"Participants get access to their test results within a \'Results\'-tab after the defined date.\";s:27:\"tst_results_access_finished\";s:27:\"After Test Pass is Finished\";s:32:\"tst_results_access_finished_desc\";s:179:\"ILIAS displays the test results after the test pass is finished. After finishing the test pass participants can access their test results within the ‘Results’-tab at any time.\";s:25:\"tst_results_access_passed\";s:26:\"After Test has been Passed\";s:30:\"tst_results_access_passed_desc\";s:178:\"ILIAS displays the test results after the participant has passed the test. After passing the test participants can access their test results within the \'Results\'-tab at any time.\";s:26:\"tst_results_access_enabled\";s:22:\"Access to Test Results\";s:31:\"tst_results_access_enabled_desc\";s:194:\"A tab \'Results\' will be offered to participants. Options in this section and the following ones below configure what information is to be included into the report and when it will be accessible.\";s:26:\"tst_results_access_setting\";s:13:\"Point in Time\";s:27:\"tst_results_details_options\";s:46:\"Further Details to be Included in Test Results\";s:35:\"tst_results_grading_opt_show_status\";s:39:\"Show ‘Passed’ / ‘Failed’ Status\";s:40:\"tst_results_grading_opt_show_status_desc\";s:171:\"Information on the ‘Passed’ / ‘Failed’ Status will be appended to the summary test result. Participants can access their test results within the ‘Results’-tab.\";s:33:\"tst_results_grading_opt_show_mark\";s:19:\"Show Resulting Mark\";s:38:\"tst_results_grading_opt_show_mark_desc\";s:136:\"The resulting mark will be appended to the summary test result. Participants can access their test results within the ‘Results’-tab.\";s:22:\"tst_results_aggregated\";s:23:\"Aggregated Test Results\";s:29:\"tst_results_back_introduction\";s:28:\"Back to Introductory Message\";s:25:\"tst_results_back_overview\";s:24:\"Back to Results Overview\";s:20:\"tst_results_overview\";s:33:\"Pass Overview of the Test Results\";s:30:\"tst_show_solution_details_desc\";s:279:\"As an add-on to the ‘Table of Detailed Test Results’, the participant get a link to a page for each question. This linked page contains the question, the answer provided by the participant, information on whether this was the correct answer and points scored by this answer.\";s:32:\"tst_show_solution_printview_desc\";s:184:\"An overview of all questions with the answers of the respective participant is generated. This list will be offered within the ‘Results’-tab in a subtab \'Review of Scored Answers\'.\";s:31:\"tst_show_solution_feedback_desc\";s:256:\"Feedback related to the answers provided by the participant is displayed. Please mind that this option becomes effective only if you have activated ‘Scored Answers of Participant’ and feedback was prepared along with the questions in the first place.\";s:35:\"tst_show_solution_answers_only_desc\";s:193:\"If is selected, the ILIAS content you place around a question using the ‘Edit content’ tab page will not be visible in a print-out. If you want to save some paper space, select this option.\";s:32:\"tst_show_solution_signature_desc\";s:175:\"The prepared printout version will contain a signature placeholder for the participant. Please mind to activate ‘Table of Detailed Test Results’ to use this functionality.\";s:32:\"tst_show_solution_suggested_desc\";s:347:\"If content for recapitulation was assigned to the test questions in the first place, this content will be shown in the ‘Table of Detailed Test Results’-table. Participants get an opportunity for remedial learning. For this option to become effective you have to activate ‘Table of Detailed Test Results’ under ‘Access to Test Results’.\";s:11:\"tst_results\";s:12:\"Test Results\";s:15:\"tst_resume_test\";s:15:\"Resume the Test\";s:22:\"tst_score_cut_question\";s:60:\"For Each Questions Negative Points are set to ‘0 Points’\";s:27:\"tst_score_cut_question_desc\";s:200:\"Participants may score negative results for a question that had negative points for assigned to individual answer options. This setting ensures that per question any negativ result is set to 0 points.\";s:18:\"tst_score_cut_test\";s:61:\"For the Whole Test a Negative Result is set to ‘0 Points’\";s:23:\"tst_score_cut_test_desc\";s:252:\"Participants might score negative points in questions. Scored points of all questions are added up. Only if the overall result of the test is negative this overall result will be set to 0 points. With this setting negative points carry a lot of weight.\";s:17:\"tst_score_cutting\";s:15:\"Negative Points\";s:24:\"tst_score_mcmr_questions\";s:43:\"Multiple Choice Questions with Empty Answer\";s:33:\"tst_score_mcmr_use_scoring_system\";s:41:\"Save and Score Empty Answers (Deprecated)\";s:38:\"tst_score_mcmr_use_scoring_system_desc\";s:234:\"An additional option \"None of the above\" allows saving of empty answers. The unchecked options will be scored as defined in the question. This setting is only kept for existing tests and will be abandoned in a following ILIAS version.\";s:42:\"tst_score_mcmr_zero_points_when_unanswered\";s:26:\"Don’t Save Empty Answers\";s:47:\"tst_score_mcmr_zero_points_when_unanswered_desc\";s:95:\"Answers without any checked option are not saved. Participants get 0 points on these questions.\";s:24:\"tst_score_reporting_date\";s:20:\"Score Reporting Date\";s:19:\"tst_score_reporting\";s:15:\"Score Reporting\";s:23:\"tst_select_questionpool\";s:59:\"Please select a question pool to store the created question\";s:30:\"tst_selected_user_data_deleted\";s:62:\"The test data of the selected user(s) was removed successfully\";s:18:\"tst_sequence_fixed\";s:34:\"The Sequence of Questions is Fixed\";s:21:\"tst_sequence_postpone\";s:52:\"Questions may be postponed to the end of a test pass\";s:23:\"tst_sequence_properties\";s:63:\"Administering the Test: Functionality Available to Participants\";s:12:\"tst_sequence\";s:8:\"Sequence\";s:20:\"tst_session_settings\";s:16:\"Session Settings\";s:21:\"tst_show_answer_sheet\";s:12:\"Show Answers\";s:27:\"tst_show_cancel_description\";s:181:\"Participants are presented with a button to stop the test run and to continue it later. Caution: Suspending the test does not stop the countdown of the maximum duration of the test.\";s:15:\"tst_show_cancel\";s:12:\"Suspend Test\";s:21:\"tst_show_pass_details\";s:88:\"Show ‘Table of Detailed Test Results’ for each Test Pass upon Selected Point in Time\";s:26:\"tst_show_pass_details_desc\";s:655:\"The summary of results will be appended at the point in time indicated in the setting above: A ‘Table of Detailed Test Results’ will show the title of the questions and the points scored in a particular test pass.
Other than that the table will be displayed after the last test pass possible (setting in link ‘General’, option ‘Limit Number of Test Passes’) or after the test is officially finished (setting in link ‘General’, option ‘Finishing Time’).
Further settings about the content of the ‘Table of Detailed Test Results’ can be made in the section ‘Further Details to be Included in Test Results’ of this form.\";s:16:\"tst_show_results\";s:12:\"Test Results\";s:27:\"participants_results_subtab\";s:16:\"All Participants\";s:11:\"results_tab\";s:7:\"Results\";s:18:\"tst_show_side_list\";s:22:\"Show List of Questions\";s:37:\"tst_dyn_unfreeze_answers_confirmation\";s:173:\"There are questions to which your initial answers were fixed and you could not make any changes. Do you want to answer them one more time now and thus unfreeze your answers?\";s:24:\"tst_dyn_unfreeze_answers\";s:16:\"Answer once more\";s:24:\"tst_dyn_keep_answ_freeze\";s:30:\"Keep my current answers frozen\";s:30:\"tst_show_solution_answers_only\";s:36:\"Print View of Results (Answers Only)\";s:25:\"tst_show_solution_details\";s:29:\"Scored Answers of Participant\";s:26:\"tst_show_solution_feedback\";s:8:\"Feedback\";s:27:\"tst_show_solution_printview\";s:45:\"Additional ‘List of Answers’ for Printing\";s:27:\"tst_show_solution_signature\";s:21:\"Signature Placeholder\";s:27:\"tst_show_solution_suggested\";s:26:\"Content for Recapitulation\";s:28:\"tst_show_summary_description\";s:229:\"Participants can switch on a list of test questions on the left of the actual question. Additionally, they are presented with a button ‘List of Questions’. On that screen the overall status of all questions will be displayed.\";s:16:\"tst_show_summary\";s:28:\"Show ‘List of Questions’\";s:33:\"tst_shuffle_questions_description\";s:77:\"Shuffles the sequence of questions for every participant and every test pass.\";s:21:\"tst_shuffle_questions\";s:17:\"Shuffle Questions\";s:13:\"tst_signature\";s:9:\"Signature\";s:18:\"tst_single_results\";s:19:\"Results by Question\";s:23:\"tst_start_new_test_pass\";s:19:\"Start New Test Pass\";s:14:\"tst_start_test\";s:14:\"Start the Test\";s:11:\"tst_started\";s:12:\"Test Started\";s:17:\"tst_starting_time\";s:13:\"Starting Time\";s:27:\"tst_stat_result_atimeofwork\";s:20:\"Average Time of Work\";s:26:\"tst_stat_result_firstvisit\";s:11:\"First Visit\";s:25:\"tst_stat_result_lastvisit\";s:10:\"Last Visit\";s:27:\"tst_stat_result_mark_median\";s:14:\"Mark of Median\";s:22:\"tst_stat_result_median\";s:31:\"Median of Test Result in Points\";s:30:\"tst_stat_result_pworkedthrough\";s:48:\"Percent of total workload already worked through\";s:20:\"tst_stat_result_qmax\";s:25:\"Total number of Questions\";s:30:\"tst_stat_result_qworkedthrough\";s:32:\"Questions already worked through\";s:27:\"tst_stat_result_rank_median\";s:14:\"Rank of Median\";s:32:\"tst_stat_result_rank_participant\";s:19:\"Rank of Participant\";s:28:\"tst_stat_result_resultsmarks\";s:21:\"Test Results in Marks\";s:29:\"tst_stat_result_resultspoints\";s:22:\"Test Results in Points\";s:26:\"tst_stat_result_timeofwork\";s:12:\"Time of Work\";s:34:\"tst_stat_result_total_participants\";s:28:\"Total Number of Participants\";s:18:\"tst_submit_results\";s:33:\"Yes, I do confirm the submission.\";s:21:\"tst_text_count_system\";s:14:\"Scoring System\";s:27:\"tst_time_already_spent_left\";s:17:\"You have %s left.\";s:22:\"tst_time_already_spent\";s:64:\"You started the test at: %s. Your maximum processing time is %s.\";s:21:\"tst_title_output_full\";s:36:\"Question Titles and Available Points\";s:28:\"tst_title_output_hide_points\";s:20:\"Only Question Titles\";s:25:\"tst_title_output_no_title\";s:44:\"Neither Question Titles nor Available Points\";s:16:\"tst_title_output\";s:19:\"Show Question Title\";s:8:\"tst_type\";s:9:\"Test Type\";s:7:\"exam_id\";s:12:\"Testpass ID:\";s:19:\"examid_in_test_pass\";s:20:\"Display Test Pass ID\";s:24:\"examid_in_test_pass_desc\";s:83:\"A test pass ID is displayed in the test. A new ID is generated for every test pass.\";s:18:\"examid_in_test_res\";s:18:\"ILIAS Test Pass ID\";s:23:\"examid_in_test_res_desc\";s:60:\"The ILIAS test pass ID will be included in the test results.\";s:36:\"tst_use_previous_answers_description\";s:180:\"Participants will be presented with their answers from previous test passes. This option has to be activated by individual participants on the Info-tab before starting a test pass.\";s:29:\"tst_use_previous_answers_user\";s:63:\"Use my previous answers as default values in future test passes\";s:28:\"use_previous_solution_advice\";s:157:\"The shown solution for the question is your previously given one. You have to confirm the adoption of the solution, if you like to use it without any change.\";s:21:\"use_previous_solution\";s:21:\"Use Previous Solution\";s:24:\"tst_use_previous_answers\";s:20:\"Use Previous Answers\";s:22:\"tst_user_finished_test\";s:23:\"User finished test (%s)\";s:19:\"tst_your_answer_was\";s:15:\"Your answer was\";s:16:\"tst_your_answers\";s:56:\"These are your answers given to the following questions.\";s:21:\"test_enable_archiving\";s:16:\"Enable Archiving\";s:21:\"cannot_export_archive\";s:33:\"Archive-Export cannot be created.\";s:9:\"unlimited\";s:9:\"unlimited\";s:6:\"unlock\";s:6:\"Unlock\";s:17:\"uploaded_material\";s:17:\"Uploaded Material\";s:16:\"user_not_invited\";s:39:\"You are not supposed to take this test.\";s:19:\"user_wrong_clientip\";s:56:\"You don\'t have the right IP address to access this test.\";s:21:\"value_between_x_and_y\";s:37:\"The value should be between %s and %s\";s:6:\"values\";s:6:\"Values\";s:29:\"warning_question_not_complete\";s:29:\"The question is not complete!\";s:5:\"width\";s:5:\"Width\";s:14:\"worked_through\";s:14:\"Worked Through\";s:8:\"answered\";s:8:\"Answered\";s:12:\"working_time\";s:12:\"Working Time\";s:26:\"you_received_a_of_b_points\";s:37:\"You received %s of %s possible points\";s:16:\"all_participants\";s:16:\"All participants\";s:27:\"with_solutions_participants\";s:27:\"Participants with solutions\";s:30:\"without_solutions_participants\";s:30:\"Participants without solutions\";s:16:\"tst_show_toplist\";s:7:\"Ranking\";s:16:\"toplist_by_score\";s:19:\"High score by score\";s:15:\"toplist_by_time\";s:26:\"High score by working time\";s:16:\"toplist_col_rank\";s:4:\"Rank\";s:23:\"toplist_col_participant\";s:11:\"Participant\";s:20:\"toplist_col_achieved\";s:4:\"Date\";s:17:\"toplist_col_score\";s:5:\"Score\";s:22:\"toplist_col_percentage\";s:10:\"Percentage\";s:17:\"toplist_col_hints\";s:5:\"Hints\";s:17:\"toplist_col_wtime\";s:12:\"Working Time\";s:21:\"tst_highscore_enabled\";s:7:\"Ranking\";s:25:\"tst_highscore_description\";s:262:\"Within the \'Results\'-tab participants are presented with a subtab \'Show Ranking\'. On clicking it participants are presented with a league table on the performance in the test. You have to activate \'Access to Test Results\', too in order to use this functionality.\";s:18:\"tst_highscore_anon\";s:13:\"Without Names\";s:30:\"tst_highscore_anon_description\";s:137:\"Ranking is displayed without listing the names of the other participants. This will be the case anyway if the test was taken anonymously.\";s:25:\"tst_highscore_achieved_ts\";s:4:\"Date\";s:37:\"tst_highscore_achieved_ts_description\";s:66:\"A column containing the test date will be included in the ranking.\";s:19:\"tst_highscore_score\";s:5:\"Score\";s:31:\"tst_highscore_score_description\";s:62:\"A column containing the score will be included in the ranking.\";s:24:\"tst_highscore_percentage\";s:10:\"Percentage\";s:36:\"tst_highscore_percentage_description\";s:73:\"A column containing the tests percentage will be included in the ranking.\";s:19:\"tst_highscore_hints\";s:5:\"Hints\";s:31:\"tst_highscore_hints_description\";s:72:\"A column containing the requested hints will be included in the ranking.\";s:19:\"tst_highscore_wtime\";s:16:\"Duration of Test\";s:31:\"tst_highscore_wtime_description\";s:77:\"A column containing the duration of the test will be included in the ranking.\";s:18:\"tst_highscore_mode\";s:4:\"Mode\";s:23:\"tst_highscore_own_table\";s:22:\"Participant\'s Own Rank\";s:35:\"tst_highscore_own_table_description\";s:62:\"Participants are advised of their own position in the ranking.\";s:23:\"tst_highscore_top_table\";s:11:\"Top Ranking\";s:35:\"tst_highscore_top_table_description\";s:68:\"Participants are presented with a table containing the top rankings.\";s:24:\"tst_highscore_all_tables\";s:38:\"Participant\'s Own Rank and Top Ranking\";s:36:\"tst_highscore_all_tables_description\";s:89:\"Participants get information about the top ranking and their own position in the ranking.\";s:21:\"tst_highscore_top_num\";s:21:\"Length of Top Ranking\";s:33:\"tst_highscore_top_num_description\";s:66:\"Specify how many ranks are to be included in the top ranking list.\";s:26:\"tst_highscore_top_num_unit\";s:7:\"entries\";s:29:\"tst_rnd_quest_cfg_tab_general\";s:13:\"Configuration\";s:26:\"tst_rnd_quest_cfg_tab_pool\";s:23:\"Selected Question Pools\";s:21:\"tst_question_set_type\";s:27:\"Selection of Test Questions\";s:27:\"tst_question_set_type_fixed\";s:22:\"Fixed Set of Questions\";s:32:\"tst_question_set_type_fixed_desc\";s:47:\"All participants get the same set of questions.\";s:28:\"tst_question_set_type_random\";s:23:\"Random Set of Questions\";s:33:\"tst_question_set_type_random_desc\";s:116:\"Each participant gets a different set of questions. Questions are randomly selected from one or more question pools.\";s:29:\"tst_question_set_type_dynamic\";s:51:\"Question Queue - All Questions from a Question Pool\";s:34:\"tst_question_set_type_dynamic_desc\";s:168:\"Participants work through questions from one question pool. Questions answered incorrectly will be presented again. Questions can be added and edited in a running test.\";s:55:\"tst_change_quest_set_type_from_old_to_new_with_conflict\";s:221:\"You are about to change the test mode from %s to %s, although a questions/question pool configuration dependent on the current test mode already exists.
This already existing configuration will be lost.\";s:44:\"tst_msg_dynamic_question_set_config_modified\";s:61:\"Continues question selection configuration has been modified.\";s:59:\"tst_msg_cannot_modify_dynamic_question_set_conf_due_to_part\";s:95:\"Continues question selection configuration cannot be modified due to existing participant data.\";s:58:\"tst_msg_cannot_modify_random_question_set_conf_due_to_part\";s:90:\"The random question set configuration cannot be modified due to existing participant data.\";s:31:\"tst_delete_dyn_test_results_btn\";s:19:\"Remove Test Results\";s:35:\"tst_dyn_test_msg_pass_deletion_link\";s:23:\"Remove Previous Answers\";s:33:\"tst_dyn_test_pass_deletion_button\";s:17:\"Reset All Answers\";s:36:\"tst_form_dynamic_question_set_config\";s:28:\"Continues Question Selection\";s:50:\"tst_input_dynamic_question_set_source_questionpool\";s:20:\"Source Question Pool\";s:59:\"tst_dynamic_question_set_source_questionpool_summary_string\";s:28:\"%s (Path: %s) [%s Questions]\";s:48:\"tst_dyn_quest_set_src_qpl_summary_string_trashed\";s:27:\"%s (Removed) [%s Questions]\";s:48:\"tst_dyn_quest_set_src_qpl_summary_string_deleted\";s:24:\"%s (Removed Permanently)\";s:55:\"tst_input_dynamic_question_set_taxonomie_filter_enabled\";s:23:\"Provide Taxonomy Filter\";s:52:\"tst_input_dyn_quest_set_answer_status_filter_enabled\";s:28:\"Provide Answer Status Filter\";s:26:\"tst_question_answer_status\";s:36:\"Which questions should be presented?\";s:42:\"tst_question_answer_status_all_non_correct\";s:45:\"All Questions Except those Answered Correctly\";s:39:\"tst_question_answer_status_non_answered\";s:22:\"Non Answered Questions\";s:41:\"tst_question_answer_status_wrong_answered\";s:31:\"Only wrongly answered questions\";s:48:\"tst_input_dynamic_question_set_question_ordering\";s:17:\"Question Ordering\";s:56:\"tst_input_dynamic_question_set_question_ordering_by_date\";s:23:\"Order Questions by Date\";s:49:\"tst_inp_dyn_quest_set_quest_ordering_by_date_desc\";s:85:\"The presentation order for the questions bases upon the question\'s last editing date.\";s:55:\"tst_input_dynamic_question_set_question_ordering_by_tax\";s:27:\"Order Questions by Taxonomy\";s:48:\"tst_inp_dyn_quest_set_quest_ordering_by_tax_desc\";s:93:\"The presentation order for the questions bases upon the question\'s assignments in a taxonomy.\";s:43:\"tst_input_dynamic_question_set_ordering_tax\";s:17:\"Ordering Taxonomy\";s:55:\"tst_input_dynamic_question_set_ordering_tax_description\";s:95:\"The test questions will be presented accordingly to their assignments in the selected taxonomy.\";s:37:\"tst_start_dyn_test_with_cur_quest_sel\";s:42:\"Start Test with Current Question Selection\";s:38:\"tst_resume_dyn_test_with_cur_quest_sel\";s:43:\"Resume Test with Current Question Selection\";s:34:\"tst_dynamic_question_set_selection\";s:47:\"Test Question Selection and Selection-Statistic\";s:33:\"tst_dynamic_question_set_complete\";s:15:\"Total-Statistic\";s:21:\"tst_num_all_questions\";s:23:\"Number of All Questions\";s:26:\"tst_num_selected_questions\";s:28:\"Number of Selected Questions\";s:38:\"tst_num_non_answered_questions_skipped\";s:7:\"Skipped\";s:38:\"tst_num_non_answered_questions_notseen\";s:18:\"Not Presented, Yet\";s:32:\"tst_num_wrong_answered_questions\";s:17:\" Answered Wrongly\";s:34:\"tst_num_correct_answered_questions\";s:18:\"Answered Correctly\";s:38:\"tst_change_dyn_test_question_selection\";s:25:\"Change Question Selection\";s:46:\"tst_dyn_test_msg_currently_finished_completely\";s:173:\"Currently you have answered all questions from the selected question pool successfully. You can proceed the test when there are new or edited questions in the question pool.\";s:45:\"tst_dyn_test_msg_currently_finished_selection\";s:132:\"With the current question selection you have answered all questions successfully. Change the question selection to proceed the test.\";s:26:\"tst_activate_skill_service\";s:18:\"Competence Service\";s:19:\"tst_tab_competences\";s:11:\"Competences\";s:19:\"qpl_tab_competences\";s:11:\"Competences\";s:28:\"qpl_skl_sub_tab_quest_assign\";s:30:\"Question/Competence Assignment\";s:22:\"qpl_skl_sub_tab_usages\";s:20:\"Assignment Frequency\";s:26:\"tst_skl_sub_tab_thresholds\";s:21:\"Competence Thresholds\";s:32:\"tst_msg_skl_lvl_thresholds_saved\";s:41:\"The competence thresholds has been saved.\";s:14:\"tst_competence\";s:10:\"Competence\";s:29:\"tst_manage_competence_assigns\";s:29:\"Manage Competence Assignments\";s:26:\"tst_edit_competence_assign\";s:26:\"Edit Assignment Properties\";s:26:\"tst_view_competence_assign\";s:26:\"View Assignment Properties\";s:38:\"qpl_qst_skl_assign_properties_modified\";s:46:\"The assignment\'s properties has been modified.\";s:27:\"qpl_qst_skl_assigns_updated\";s:44:\"The competence assignments has been updated.\";s:39:\"qpl_sync_quest_skl_assigns_confirmation\";s:150:\"The question was inserted from another repository object. Should the question\'s original be updated with the current config of competence assignments?\";s:33:\"qpl_qst_skl_assign_synced_to_orig\";s:75:\"The competence assignments has been synchronised to the questions original.\";s:29:\"qpl_save_skill_assigns_update\";s:27:\"Save Competence Assignments\";s:31:\"qpl_cancel_skill_assigns_update\";s:6:\"Cancel\";s:15:\"tst_comp_points\";s:17:\"Competence Points\";s:18:\"tst_comp_eval_mode\";s:13:\"Evaluation by\";s:17:\"tst_num_questions\";s:19:\"Number of Questions\";s:19:\"tst_max_comp_points\";s:22:\"Max. Competence Points\";s:9:\"tst_level\";s:16:\"Competence Level\";s:13:\"tst_threshold\";s:17:\"Thresholds (in %)\";s:19:\"tst_save_thresholds\";s:15:\"Save Thresholds\";s:21:\"tst_show_comp_results\";s:18:\"Competence Results\";s:12:\"tst_analysis\";s:8:\"Analysis\";s:24:\"tst_all_test_competences\";s:19:\"All Test Competence\";s:16:\"tst_gap_analysis\";s:12:\"Gap Analysis\";s:15:\"tst_test_result\";s:11:\"Test Result\";s:16:\"feedback_setting\";s:33:\"Mode of answer specific feedback.\";s:12:\"feedback_all\";s:46:\"Show answer specific feedback for all answers.\";s:16:\"feedback_checked\";s:62:\"Show answer specific feedback for all chosen/selected answers.\";s:22:\"feedback_correct_sc_mc\";s:134:\"Show answer specific feedback for all correct answers (Correct answers are those, that lead to a positive score when chosen/selected).\";s:22:\"feedback_correct_kprim\";s:137:\"Show answer specific feedback for all correct answers (Correct answers are those, for that the positive option is to be chosen/selected).\";s:28:\"tst_add_quest_cont_edit_mode\";s:29:\"Editor for Feedback and Hints\";s:36:\"tst_add_quest_cont_edit_mode_default\";s:51:\"Use rich-text editor for editing feedback and hints\";s:40:\"tst_add_quest_cont_edit_mode_page_object\";s:52:\"Use ILIAS page editor for editing feedback and hints\";s:31:\"tst_question_feedback_edit_page\";s:12:\"Edit Content\";s:43:\"tst_question_feedback_back_to_feedback_form\";s:24:\"Back To Calling Question\";s:15:\"enable_examview\";s:25:\"Overview of Answers Given\";s:20:\"enable_examview_desc\";s:120:\"Participants are presented with all questions and the answers they provided in an overview prior to submitting the test.\";s:18:\"show_examview_html\";s:9:\"On screen\";s:17:\"show_examview_pdf\";s:12:\"PDF Download\";s:13:\"scoringadjust\";s:11:\"Corrections\";s:29:\"tst_trigger_result_refreshing\";s:55:\"Results need to be recalculated. This may take a while.\";s:12:\"test_scoring\";s:15:\"Scoring Options\";s:12:\"test_results\";s:20:\"Summary Test Results\";s:4:\"misc\";s:12:\"Misc Options\";s:15:\"tst_back_to_top\";s:11:\"Back to Top\";s:25:\"tst_back_to_question_list\";s:21:\"Back to Question List\";s:23:\"tst_results_tax_filters\";s:13:\"Result Filter\";s:24:\"tst_back_to_pass_details\";s:20:\"Back to Pass Details\";s:18:\"tst_answer_details\";s:14:\"Answer Details\";s:23:\"tst_list_answer_details\";s:18:\"Show in List Below\";s:25:\"tst_single_answer_details\";s:18:\"Show Single Answer\";s:37:\"tst_pass_details_overview_table_title\";s:29:\"Detailed Overview for Pass %s\";s:27:\"tst_btn_show_best_solutions\";s:19:\"Show Best Solutions\";s:27:\"tst_btn_hide_best_solutions\";s:19:\"Hide Best Solutions\";s:25:\"tst_settings_header_intro\";s:32:\"Information Before Start of Test\";s:29:\"tst_settings_header_execution\";s:30:\"Administering the Test: Access\";s:22:\"tst_starting_time_desc\";s:132:\"Point in time after which the test can be started by clicking the button ‚Start‘, participants can provide answers to questions.\";s:20:\"tst_ending_time_desc\";s:124:\"Point in time at which the test will be finished: Participants an no longer answer questions, the test is finished by ILIAS.\";s:22:\"tst_allowed_users_desc\";s:178:\"ILIAS will monitor the number of participants taking the test at the same time. If more users than maximally allowed try to access ILIAS will prevent them from starting the test.\";s:31:\"tst_allowed_users_time_gap_desc\";s:140:\"Participants that do not click in the test for the indicated amount of time will be categorized as ‚inactive‘ and removed from the test.\";s:28:\"tst_settings_header_test_run\";s:32:\"Administering the Test: Test Run\";s:20:\"tst_nr_of_tries_desc\";s:48:\"Maximum number of passes a participant can take.\";s:21:\"tst_final_information\";s:18:\"Finishing the Test\";s:16:\"saved_adjustment\";s:14:\"Changes saved.\";s:24:\"qst_lifecycle_filter_all\";s:14:\"All Lifecycles\";s:13:\"qst_lifecycle\";s:9:\"Lifecycle\";s:19:\"qst_lifecycle_draft\";s:5:\"Draft\";s:20:\"qst_lifecycle_review\";s:14:\"To be Reviewed\";s:22:\"qst_lifecycle_rejected\";s:8:\"Rejected\";s:19:\"qst_lifecycle_final\";s:5:\"Final\";s:22:\"qst_lifecycle_sharable\";s:8:\"Sharable\";s:22:\"qst_lifecycle_outdated\";s:8:\"Outdated\";s:15:\"sign_submission\";s:31:\"Digitally Sign Test Submissions\";s:20:\"sign_submission_info\";s:136:\"If this is activated and a signature plugin is installed and active, participants will be requested to digitally sign their submissions.\";s:38:\"tst_corrections_manscore_reset_warning\";s:140:\"There are %s manual scorings that have been done for the question \"%s (ID: %s)\". All manual scorings will be reset when saving the question.\";s:23:\"tst_qst_added_to_pool_s\";s:53:\"Successfully added the question to the selected pool.\";s:23:\"tst_qst_added_to_pool_p\";s:54:\"Successfully added the questions to the selected pool.\";s:16:\"submit_and_check\";s:21:\"Save and Check Answer\";s:16:\"tst_search_users\";s:19:\"Search Participants\";s:23:\"info_answer_type_change\";s:93:\"The question already contains images. You can\'t change the answer type to multi-line answers.\";s:11:\"mailnottype\";s:53:\"Send notification even if a user finishes a test pass\";s:21:\"dont_use_questionpool\";s:75:\"Don\'t insert the questions in a question pool (only available in this test)\";s:29:\"ordering_answer_sequence_info\";s:83:\"The answer sequence you define here will be taken as the correct solution sequence.\";s:16:\"tst_exp_sc_short\";s:49:\"Item Analysis Export for Pure Single Choice Tests\";s:21:\"tst_exp_sc_short_desc\";s:207:\"In the ‘Statistics’-tab an additional export option is offered. It generates a spreadsheet for item analysis outside of ILIAS. This option only works for tests purely composed of Single Choice Questions.\";s:23:\"questions_per_page_view\";s:9:\"Page View\";s:18:\"test_next_question\";s:13:\"Next Question\";s:18:\"test_prev_question\";s:17:\"Previous Question\";s:12:\"test_jump_to\";s:16:\"Jump to Question\";s:19:\"ass_create_question\";s:15:\"Create Question\";s:22:\"adm_settings_templates\";s:18:\"Settings Templates\";s:24:\"test_question_pool_usage\";s:21:\"Use of Question Pools\";s:33:\"test_question_pool_usage_optional\";s:52:\"Questions can be added optionally to a question pool\";s:38:\"test_question_pool_usage_optional_info\";s:44:\"The questions can be re-used in other tests.\";s:37:\"test_question_pool_usage_tst_directly\";s:42:\"Questions are created directly in the test\";s:42:\"test_question_pool_usage_tst_directly_info\";s:47:\"The questions cannot be re-used in other tests.\";s:19:\"test_using_template\";s:124:\"This test uses the template %s. If you do not want to use a template and have access to all settings, please click here: %s.\";s:30:\"tst_anonymity_no_anonymization\";s:18:\"Results with Names\";s:28:\"tst_anonymity_anonymous_test\";s:38:\"Results without Names / Anonymous Test\";s:27:\"tst_presentation_properties\";s:48:\"Administering the Test: Behavior of the Question\";s:16:\"test_delete_page\";s:15:\"Delete Question\";s:14:\"test_move_page\";s:13:\"Move Question\";s:25:\"assessment_pool_selection\";s:14:\"Pool Selection\";s:18:\"assessment_no_pool\";s:24:\"Do not use question pool\";s:24:\"assessment_existing_pool\";s:26:\"Use existing question pool\";s:19:\"assessment_new_pool\";s:24:\"Create new question pool\";s:27:\"test_confirm_template_reset\";s:62:\"Are you sure that you do not want to use the template anymore?\";s:19:\"test_template_reset\";s:30:\"The template has been removed.\";s:24:\"test_using_template_link\";s:27:\"Do not use template anymore\";s:9:\"saveOrder\";s:10:\"Save Order\";s:23:\"saveOrderAndObligations\";s:26:\"Save Order and Obligations\";s:10:\"obligatory\";s:10:\"Compulsory\";s:28:\"not_all_obligations_answered\";s:72:\"You must answer all compulsory questions before you can finish the test.\";s:36:\"tst_setting_enable_obligations_label\";s:20:\"Compulsory Questions\";s:35:\"tst_setting_enable_obligations_info\";s:209:\"Only if all compulsory questions are answered ths test can be finished. Compulsory questions can be defined in the ‘List view’. For participants the option ‘Show List of Questions’ should be activated.\";s:38:\"tst_test_contains_obligatory_questions\";s:65:\"To end this test you have to answer all compulsory questions (*).\";s:29:\"copy_and_link_to_questionpool\";s:20:\"Add to question pool\";s:10:\"tst_result\";s:11:\"Test Result\";s:19:\"tst_remove_question\";s:69:\"Are you sure you want to remove the following question from the test?\";s:28:\"ass_completion_by_submission\";s:23:\"Completed by Submission\";s:33:\"ass_completion_by_submission_info\";s:246:\"If enabled, the submission of at least one file causes the completion of this question by granting the maximum score for this question. The score could be manually changed later. Switching this setting does not effect already submitted solutions.\";s:26:\"copy_no_questions_selected\";s:44:\"Please select at least one question to copy.\";s:22:\"copy_questions_success\";s:32:\"The question(s) has been copied.\";s:8:\"imported\";s:8:\"imported\";s:56:\"cannot_switch_to_online_no_questions_andor_no_mark_steps\";s:110:\"The status cannot be changed to "online" because there are no questions and/or no marks in the test!\";s:15:\"test_is_offline\";s:47:\"You cannot start the test! The test is offline.\";s:18:\"test_edit_settings\";s:13:\"Edit Settings\";s:57:\"tst_set_offline_due_to_switched_question_set_type_setting\";s:182:\"The test has been set to offline, because the test mode setting has been changed. You have to set a new test mode relating question config before the test can be set to online again.\";s:56:\"tst_cannot_online_due_to_switched_quest_set_type_setting\";s:172:\"The test cannot be set to online, because the test mode setting has been changed. You have to set a test mode relating question config before the test can be set to online.\";s:24:\"tst_link_only_unassigned\";s:141:\"You have selected at least one question that is already linked to a question pool. Only unassigned questions can be added to a question pool.\";s:20:\"tst_default_settings\";s:25:\"Personal Default Settings\";s:35:\"test_has_datasets_warning_page_view\";s:105:\"The test already contains data sets. You cannot edit the test questions until you remove these data sets.\";s:40:\"test_has_datasets_warning_page_view_link\";s:19:\"Participant Results\";s:31:\"tst_results_print_best_solution\";s:13:\"Best Solution\";s:36:\"tst_results_print_best_solution_info\";s:76:\"Additionally for each question the best possible solution will be displayed.\";s:12:\"tst_question\";s:8:\"Question\";s:15:\"tst_participant\";s:11:\"Participant\";s:22:\"tst_participant_status\";s:18:\"Participant Status\";s:16:\"tst_edit_scoring\";s:12:\"Edit Scoring\";s:33:\"tst_pass_overview_for_participant\";s:31:\"Test Passes for Participant: %s\";s:38:\"tst_manscoring_question_section_header\";s:12:\"Question: %s\";s:32:\"tst_manscoring_user_notification\";s:17:\"Send Notification\";s:33:\"tst_saved_manscoring_successfully\";s:71:\"The manual scoring for test pass %s for %s has been saved successfully.\";s:45:\"tst_saved_manscoring_by_question_successfully\";s:84:\"The manual scoring for the question %s for test pass %s has been saved successfully.\";s:26:\"tst_save_manscoring_failed\";s:54:\"Saving the manual scoring for test pass %s has failed.\";s:45:\"tst_manscoring_maxpoints_exceeded_input_alert\";s:39:\"The maximum of %s point(s) is exceeded!\";s:44:\"tst_manscoring_input_max_points_for_question\";s:27:\"Maximum Points for Question\";s:47:\"tst_manscoring_input_question_and_user_solution\";s:26:\"Question and User Solution\";s:43:\"tst_notify_manscoring_done_body_msg_subject\";s:38:\"Manual Scoring for Test \"%s\" committed\";s:41:\"tst_notify_manscoring_done_body_msg_topic\";s:35:\"Your test has been graded manually:\";s:42:\"tst_notify_manscoring_done_body_msg_reason\";s:75:\"You have received this notification, because you participated in this test.\";s:29:\"tst_setting_offer_hints_label\";s:5:\"Hints\";s:28:\"tst_setting_offer_hints_info\";s:127:\"Participants request hints to answer a question. With every hint presented the maximum number of points to be earned decreases.\";s:22:\"tst_question_hints_tab\";s:5:\"Hints\";s:31:\"tst_question_hints_table_header\";s:22:\"Hints for Question: %s\";s:33:\"tst_question_hints_table_no_items\";s:17:\"No Existing Hints\";s:42:\"tst_question_hints_table_column_hint_order\";s:5:\"Order\";s:41:\"tst_question_hints_table_column_hint_text\";s:4:\"Hint\";s:43:\"tst_question_hints_table_column_hint_points\";s:16:\"Points Deduction\";s:39:\"tst_question_hints_table_link_edit_hint\";s:9:\"Edit Hint\";s:41:\"tst_question_hints_table_link_delete_hint\";s:11:\"Delete Hint\";s:40:\"tst_questions_hints_table_cmd_save_order\";s:10:\"Save Order\";s:46:\"tst_questions_hints_table_multicmd_delete_hint\";s:14:\"Delete Hint(s)\";s:43:\"tst_questions_hints_table_multicmd_cut_hint\";s:30:\"Cut Hint to Ordering Clipboard\";s:52:\"tst_questions_hints_table_multicmd_paste_hint_before\";s:32:\"Prepend Hint to the Selected One\";s:51:\"tst_questions_hints_table_multicmd_paste_hint_after\";s:31:\"Append Hint to the Selected One\";s:40:\"tst_questions_hints_toolbar_cmd_add_hint\";s:8:\"Add Hint\";s:56:\"tst_questions_hints_toolbar_cmd_reset_ordering_clipboard\";s:29:\"Reset Hint Ordering Clipboard\";s:53:\"tst_question_hints_delete_hints_missing_selection_msg\";s:33:\"No hint(s) selected for deletion.\";s:46:\"tst_question_hints_delete_hints_confirm_header\";s:51:\"Do you really want to delete the following hint(s)?\";s:44:\"tst_question_hints_delete_hints_confirm_item\";s:11:\"Hint %s: %s\";s:43:\"tst_question_hints_delete_hints_confirm_cmd\";s:14:\"Delete Hint(s)\";s:37:\"tst_question_hints_delete_success_msg\";s:51:\"The selected hint(s) has been deleted successfully.\";s:50:\"tst_question_hints_cut_hints_missing_selection_msg\";s:29:\"No hint selected for cutting.\";s:49:\"tst_question_hints_cut_hints_single_selection_msg\";s:44:\"More than one hint was selected for cutting.\";s:35:\"tst_question_hints_form_header_edit\";s:24:\"Hint %s for Question: %s\";s:37:\"tst_question_hints_form_header_create\";s:25:\"New Hint for Question: %s\";s:39:\"tst_question_hints_form_label_hint_text\";s:4:\"Hint\";s:41:\"tst_question_hints_form_label_hint_points\";s:15:\"Point Deduction\";s:32:\"tst_question_hints_form_cmd_save\";s:9:\"Save Hint\";s:33:\"tst_question_hints_form_saved_msg\";s:37:\"The hint has been saved successfully.\";s:35:\"tst_question_hints_form_invalid_msg\";s:56:\"The hint could not been saved. Please check your inputs.\";s:52:\"tst_question_hints_item_stored_in_ordering_clipboard\";s:40:\"Hint %s is stored in ordering clipboard.\";s:46:\"tst_question_hints_ordering_clipboard_resetted\";s:38:\"The ordering clipboard has been reset.\";s:41:\"tst_question_hints_save_order_success_msg\";s:41:\"The order of hint was saved successfully.\";s:43:\"tst_question_hints_paste_before_success_msg\";s:56:\"The hint %s has been pasted before hint %s successfully.\";s:42:\"tst_question_hints_paste_after_success_msg\";s:55:\"The hint %s has been pasted after hint %s successfully.\";s:21:\"tst_median_mark_panel\";s:14:\"Mark of Median\";s:28:\"tst_processing_time_duration\";s:28:\"Maximum Duration of the Test\";s:33:\"tst_processing_time_duration_desc\";s:41:\"Maximum of time granted to take the test.\";s:28:\"button_request_question_hint\";s:12:\"Request Hint\";s:33:\"button_request_next_question_hint\";s:17:\"Request Next Hint\";s:36:\"button_show_requested_question_hints\";s:20:\"Show Requested Hints\";s:34:\"tst_question_hints_confirm_request\";s:12:\"Request Hint\";s:33:\"tst_question_hints_cancel_request\";s:16:\"Back to Question\";s:39:\"tst_question_hints_request_confirmation\";s:82:\"Do you really want to request hint %s? For this hint %s point(s) will be deducted.\";s:35:\"tst_question_hints_back_to_question\";s:16:\"Back to Question\";s:37:\"tst_question_hints_index_column_label\";s:7:\"Hint %s\";s:42:\"tst_question_hints_table_column_hint_index\";s:5:\"Index\";s:46:\"tst_question_hints_requested_hint_count_header\";s:15:\"Requested Hints\";s:31:\"tst_activate_skill_service_desc\";s:126:\"Supports the assignment of questions to competences and the definition of thresholds for reaching a specific competence level.\";s:46:\"tst_question_hints_table_link_edit_hint_points\";s:11:\"Edit Points\";s:44:\"tst_question_hints_table_link_edit_hint_page\";s:9:\"Edit Page\";s:39:\"tst_question_hints_form_cmd_save_points\";s:11:\"Save Points\";s:53:\"tst_question_hints_form_cmd_save_points_and_edit_page\";s:26:\" Save Points and Edit Page\";s:36:\"tst_question_hints_back_to_hint_list\";s:18:\"Question Hint List\";s:20:\"conf_delete_pass_ctm\";s:55:\"Wollen Sie Ihre bisherigen Antworten wirklich löschen?\";s:16:\"conf_delete_pass\";s:54:\"Are you sure you want to delete your existing answers?\";s:26:\"tst_activation_online_info\";s:42:\"If online, participants can take the test.\";s:38:\"tst_activation_limited_visibility_info\";s:128:\"Before and after the indicated period it is only the test\'s title that will be displayed. The participants cannot take the test.\";s:8:\"tst_copy\";s:9:\"Copy Test\";s:17:\"oq_btn_nest_terms\";s:27:\"Switch to term nesting view\";s:20:\"oq_btn_nest_pictures\";s:30:\"Switch to picture nesting view\";s:19:\"oq_btn_define_terms\";s:30:\"Switch to term definition view\";s:22:\"oq_btn_define_pictures\";s:33:\"Switch to picture definition view\";s:27:\"oq_header_ordering_elements\";s:17:\"Ordering Elements\";s:19:\"tst_extratime_added\";s:69:\"The working time of the participant has been increased by %s minutes.\";s:26:\"tst_extratime_notavailable\";s:83:\"Extra time can be added only for tests with one pass and a maximum processing time.\";s:18:\"tst_extratime_info\";s:132:\"If you want to add the working time multiple times for the same participant, please insert the total amount of time you want to add.\";s:9:\"extratime\";s:10:\"Extra Time\";s:19:\"log_added_extratime\";s:44:\"Added extra %d minutes for participant id %d\";s:6:\"timing\";s:10:\"Extra Time\";s:22:\"tst_change_workingtime\";s:32:\"Add extra time for a participant\";s:17:\"tst_imap_qst_mode\";s:4:\"Mode\";s:20:\"tst_imap_qst_mode_sc\";s:13:\"Single Choice\";s:20:\"tst_imap_qst_mode_mc\";s:15:\"Multiple Choice\";s:24:\"fixedparticipants_subtab\";s:30:\"Manually Selected Participants\";s:23:\"autoparticipants_subtab\";s:12:\"Participants\";s:28:\"redirect_after_finishing_tst\";s:8:\"Redirect\";s:33:\"redirect_after_finishing_tst_desc\";s:168:\"After completion of test each participant is automatically redirected to a defined webpage. This is only valid if the participants have no access to their test results.\";s:29:\"redirect_after_finishing_rule\";s:8:\"Redirect\";s:22:\"redirect_in_kiosk_mode\";s:32:\"only when exam view is activated\";s:15:\"redirect_always\";s:25:\"always to defined webpage\";s:15:\"redirection_url\";s:14:\"URL of webpage\";s:16:\"exp_file_created\";s:20:\"Export file created.\";s:23:\"tst_man_scoring_by_part\";s:22:\"Scoring by Participant\";s:22:\"tst_man_scoring_by_qst\";s:19:\"Scoring by Question\";s:29:\"tst_no_scorable_qst_available\";s:30:\"No question to score available\";s:27:\"part_received_a_of_b_points\";s:49:\"The participant received %s of %s possible points\";s:10:\"answers_of\";s:11:\"Answers of:\";s:11:\"question_id\";s:11:\"Question ID\";s:17:\"question_id_short\";s:2:\"ID\";s:25:\"apply_def_settings_to_tst\";s:14:\"Apply Settings\";s:25:\"tst_show_solution_compare\";s:44:\"Show Best Solution in ‘Detailed Results’\";s:30:\"tst_show_solution_compare_desc\";s:340:\"Participants are presented with an overview comparing their own answers with the best solutions. Please note that this view will be displayed in the \'Detailed Results\' that can be accessed via the \'Show Test Results\'-button on the \'Info\'-tab. It will not be displayed in the printable \'List of Answers\' even though the setting is made here.\";s:22:\"tst_header_participant\";s:12:\"Your Answer:\";s:19:\"tst_header_solution\";s:14:\"Best Solution:\";s:18:\"assFormulaQuestion\";s:16:\"Formula Question\";s:13:\"parseQuestion\";s:14:\"Parse Question\";s:9:\"variables\";s:9:\"Variables\";s:7:\"results\";s:7:\"Results\";s:11:\"select_unit\";s:19:\"--- Select Unit ---\";s:7:\"formula\";s:7:\"Formula\";s:13:\"rating_simple\";s:13:\"Simple Rating\";s:4:\"unit\";s:4:\"Unit\";s:9:\"range_min\";s:15:\"Range (Minimum)\";s:9:\"range_max\";s:15:\"Range (Maximum)\";s:9:\"tolerance\";s:13:\"Tolerance (%)\";s:12:\"result_units\";s:15:\"Available Units\";s:9:\"precision\";s:9:\"Precision\";s:9:\"err_range\";s:56:\"The maximum range must be greater than the minimum range\";s:14:\"err_no_formula\";s:24:\"You must enter a formula\";s:25:\"err_wrong_rating_advanced\";s:88:\"Please make sure that the addition of the advanced rating settings equals to 100 percent\";s:11:\"rating_sign\";s:9:\"Rate Sign\";s:12:\"rating_value\";s:10:\"Rate Value\";s:11:\"rating_unit\";s:9:\"Rate Unit\";s:10:\"rated_sign\";s:4:\"Sign\";s:11:\"rated_value\";s:5:\"Value\";s:10:\"rated_unit\";s:4:\"Unit\";s:13:\"suggest_range\";s:13:\"Suggest Range\";s:5:\"units\";s:5:\"Units\";s:8:\"category\";s:8:\"Category\";s:10:\"categories\";s:10:\"Categories\";s:12:\"new_category\";s:17:\"New Unit Category\";s:8:\"new_unit\";s:8:\"New Unit\";s:6:\"factor\";s:6:\"Factor\";s:8:\"baseunit\";s:9:\"Base Unit\";s:16:\"unit_placeholder\";s:14:\"** New Unit **\";s:21:\"err_unit_in_variables\";s:79:\"The unit cannot be deleted. It is already in use in one or more test questions.\";s:19:\"err_unit_in_results\";s:79:\"The unit cannot be deleted. It is already in use in one or more test questions.\";s:20:\"err_unit_is_baseunit\";s:67:\"The unit cannot be deleted. It is used as base unit by other units.\";s:31:\"err_rating_advanced_not_allowed\";s:122:\"A rating other than simple rating is not allowed since you are offering multiple result units with an identical base unit.\";s:22:\"err_wrong_categoryname\";s:28:\"The category already exists.\";s:25:\"un_sure_delete_categories\";s:56:\"Are you sure you want to delete the selected categories?\";s:27:\"un_sure_delete_categories_s\";s:54:\"Are you sure you want to delete the selected category?\";s:21:\"un_deleted_categories\";s:31:\"Deletion successfully processed\";s:23:\"un_deleted_categories_s\";s:31:\"Deletion successfully processed\";s:24:\"un_cat_deletion_errors_f\";s:33:\"Cannot delete certain categories:\";s:26:\"un_cat_deletion_errors_f_s\";s:23:\"Cannot delete category:\";s:24:\"un_cat_deletion_errors_p\";s:36:\"Could not delete certain categories:\";s:26:\"un_cat_deletion_errors_p_s\";s:26:\"Could not delete category:\";s:19:\"err_category_in_use\";s:94:\"At least one category cannot be deleted. One or more units of the category are already in use.\";s:20:\"un_sure_delete_units\";s:51:\"Are you sure you want to delete the selected units?\";s:22:\"un_sure_delete_units_s\";s:50:\"Are you sure you want to delete the selected unit?\";s:16:\"un_deleted_units\";s:31:\"Deletion successfully processed\";s:18:\"un_deleted_units_s\";s:31:\"Deletion successfully processed\";s:25:\"un_unit_deletion_errors_f\";s:28:\"Cannot delete certain units:\";s:27:\"un_unit_deletion_errors_f_s\";s:19:\"Cannot delete unit:\";s:25:\"un_unit_deletion_errors_p\";s:31:\"Could not delete certain units:\";s:27:\"un_unit_deletion_errors_p_s\";s:22:\"Could not delete unit:\";s:17:\"selected_category\";s:21:\"Selected Category: %s\";s:19:\"un_sel_cat_sel_unit\";s:40:\"Selected Category: %s, Selected Unit: %s\";s:11:\"un_sequence\";s:8:\"Sequence\";s:21:\"un_category_not_exist\";s:38:\"The requested category does not exist.\";s:13:\"un_save_order\";s:10:\"Save Order\";s:12:\"intprecision\";s:12:\"Divisible By\";s:20:\"errRecursionInResult\";s:43:\"The formula contains an infinite recursion.\";s:21:\"err_duplicate_results\";s:84:\"You used a result variable more than once. This is not allowed in the question text.\";s:21:\"result_type_selection\";s:21:\"Result Type Selection\";s:10:\"result_dec\";s:7:\"Decimal\";s:11:\"result_frac\";s:8:\"Fraction\";s:14:\"result_co_frac\";s:16:\"Coprime Fraction\";s:14:\"no_result_type\";s:15:\"No Restrictions\";s:15:\"result_dec_info\";s:35:\"Valid results are i.e.: 2,3 and 2.3\";s:16:\"result_frac_info\";s:35:\"i.e.: 1/3 and 2/6 are valid results\";s:19:\"result_co_frac_info\";s:54:\"Canceled out fraction i.e.: only 1/3 is a valid result\";s:33:\"change_adm_categories_not_allowed\";s:57:\"You do not have any permissions concerning this category.\";s:20:\"expected_result_type\";s:20:\"Expected result type\";s:18:\"enter_valid_values\";s:63:\"Please enter valid value. Chars will be evaluated as incorrect!\";s:22:\"res_contains_undef_var\";s:48:\"A result formula contains an undefined variable!\";s:23:\"que_contains_unused_var\";s:78:\"The question text contains a variable, that is not used in any result formula!\";s:22:\"res_contains_undef_res\";s:46:\"A result formula contains an undefined result!\";s:18:\"errFormulaQuestion\";s:51:\"A Formula Question contains incorrect information!!\";s:13:\"un_show_units\";s:10:\"Show Units\";s:14:\"un_local_units\";s:11:\"Local Units\";s:15:\"un_global_units\";s:12:\"Global Units\";s:22:\"un_units_of_category_x\";s:21:\"Units of Category: %s\";s:10:\"variable_x\";s:11:\"Variable %s\";s:8:\"result_x\";s:9:\"Result %s\";s:6:\"rating\";s:6:\"Rating\";s:15:\"advanced_rating\";s:15:\"Advanced Rating\";s:20:\"advanced_rating_info\";s:146:\"The advanced rating is only available if a unit is assigned to the result. Further rating settings are displayed after saving the specified units.\";s:20:\"show_answer_overview\";s:20:\"Show Answer Overview\";s:15:\"un_add_category\";s:12:\"Add Category\";s:11:\"un_add_unit\";s:8:\"Add Unit\";s:16:\"fq_question_desc\";s:232:\"You can define variables by inserting $v1, $v2 ... $vn, results by inserting $r1, $r2 .... $rn at the desired position in the question text. Click on the button ‘Parse Question’ to create editing forms for variables and results.\";s:15:\"fq_formula_desc\";s:571:\"You may enter predefined variables ($v1 to $vn), defined results (e.g. $r1), braces for expressions, mathematical operators + (addition), - (subtraction), * (multiplication), / (division), ^ (nth power), the constants ‘pi’ for pi and ‘e’ for euler\'s constant, as well as the functions ‘sin’, ‘sinh’, ‘arcsin’, ‘asin’, ‘arcsinh’, ‘asinh’, ‘cos’, ‘cosh’, ‘arccos’, ‘acos’, ‘arccosh’, ‘acosh’, ‘tan’, ‘tanh’, ‘arctan’, ‘atan’, ‘arctanh’, ‘atanh’, ‘sqrt’, ‘abs’, ‘ln’ and ‘log’.\";s:17:\"fq_precision_info\";s:43:\"Enter the number of desired decimal places.\";s:17:\"result_units_info\";s:103:\"The selected units are offered to the learner as part of an answer. The learner has to choose one unit.\";s:22:\"fq_no_restriction_info\";s:50:\"Both decimals and fractions are accepted as input.\";s:22:\"additional_rating_info\";s:97:\"Please note that the values given here are expressed as percentages and these must add up to 100.\";s:17:\"intprecision_info\";s:485:\"‘Divisible by’ affects only the creation of variables, if the value for the precision is 0. In this case, you define for ‘Divisible by’ an integer value, which must be divisible by with the created variable. A value of 10 thus generates only integers that are divisible by 10. A value of 5 produces integers that are divisible by 5, etc. For a precision of 0, ‘Divisible by’ is a mandatory field and must contain a positive integer. The default value is 1 for any integers.\";s:14:\"tolerance_info\";s:159:\"The tolerance specifies an allowable percentage deviation from the result value. With a tolerance of 0, only the exact result value is evaluated to be correct.\";s:16:\"result_unit_info\";s:90:\"Please note that the selected result unit must also be activated in ‘Available units’.\";s:19:\"cloze_gap_size_info\";s:216:\"If you enter a value greater than 0, this gap text field will be created with the fixed length of this value. If you do not enter a value, the gap text field will be created with the value of the global fixed length.\";s:13:\"save_and_next\";s:17:\"Save and Continue\";s:25:\"positive_numbers_required\";s:35:\"Please enter only positive numbers.\";s:24:\"user_has_finished_a_test\";s:34:\"A participant has finished a test.\";s:21:\"tst_attached_xls_file\";s:73:\"You find the test result for this participant in the attached Excel file.\";s:34:\"tst_notification_explanation_admin\";s:72:\"You receive this mail from ILIAS because you activated the notification.\";s:12:\"ass_location\";s:8:\"Location\";s:13:\"ass_imap_hint\";s:27:\"Hint to be shown as Tooltip\";s:30:\"ass_imap_map_file_not_readable\";s:41:\"The uploaded image map could not be read.\";s:21:\"ass_imap_no_map_found\";s:50:\"Could not find any form in the uploaded image map.\";s:37:\"ass_competence_respect_level_ordering\";s:118:\"Please note that the competence thresholds have to be defined in an ascending order according to the available levels.\";s:18:\"tst_revert_changes\";s:12:\"Undo Editing\";s:18:\"save_on_navigation\";s:18:\"Save on Navigation\";s:31:\"save_on_navigation_confirmation\";s:67:\"Your changed answers will be automatically saved when you navigate.\";s:38:\"save_on_navigation_locked_confirmation\";s:78:\"Your changed answers will be automatically saved and locked when you navigate.\";s:39:\"save_on_navigation_forced_feedback_hint\";s:45:\"Before you get feedback on your given answer.\";s:25:\"tst_answer_status_editing\";s:10:\" (editing)\";s:26:\"tst_answer_status_answered\";s:8:\"Answered\";s:30:\"tst_answer_status_not_answered\";s:12:\"Not answered\";s:31:\"tst_unchanged_answer_is_correct\";s:28:\"The preset answer is correct\";s:30:\"tst_unchanged_order_is_correct\";s:27:\"The preset order is correct\";s:23:\"tst_mc_label_none_above\";s:25:\"None of the answers above\";s:17:\"postpone_question\";s:24:\"Move Question to the End\";s:23:\"tst_question_not_marked\";s:22:\"Question is not Marked\";s:20:\"tst_save_and_proceed\";s:16:\"Save and Proceed\";s:25:\"question_browse_area_info\";s:64:\"Please select an object from which you want to import questions.\";s:20:\"finalized_evaluation\";s:17:\"Scoring completed\";s:15:\"evaluated_users\";s:15:\"Evaluated Users\";s:19:\"not_evaluated_users\";s:22:\"Not Yet Evaluated User\";s:12:\"finalized_by\";s:12:\"Completed by\";s:12:\"finalized_on\";s:12:\"Completed at\";s:9:\"answer_of\";s:9:\"Answer of\";}'); INSERT INTO `lng_modules` VALUES ('auth','en','a:110:{s:28:\"auth_oidc_login_element_info\";s:33:\"Login to ILIAS via OpenID Connect\";s:19:\"auth_oidc_role_info\";s:57:\"OpenID Connect Attribute::Value (e.g: \"roles::employee\").\";s:15:\"auth_oidconnect\";s:14:\"OpenID Connect\";s:24:\"auth_oidc_settings_title\";s:46:\"OpenID Connect Authentifizierung konfigurieren\";s:29:\"auth_oidc_settings_activation\";s:25:\"OpenID Connect aktivieren\";s:27:\"auth_oidc_settings_provider\";s:12:\"Provider-Url\";s:28:\"auth_oidc_settings_client_id\";s:9:\"Client-ID\";s:25:\"auth_oidc_settings_secret\";s:17:\"Client-Schlüssel\";s:21:\"auth_oidc_settings_le\";s:24:\"Darstellung Anmeldeseite\";s:22:\"auth_oidc_settings_txt\";s:4:\"Text\";s:31:\"auth_oidc_settings_txt_val_info\";s:141:\"Tragen Sie einen Text ein der auf der Anmeldeseite angezeigt werden soll. Der Text verlinkt automatisch auf das OpenId Connect Anmeldeskript.\";s:22:\"auth_oidc_settings_img\";s:4:\"Bild\";s:32:\"auth_oidc_settings_img_file_info\";s:139:\"Laden Sie ein Bild hoch das auf der Anmeldeseite angezeigt werden soll. Das Bild verlinkt automatisch auf das OpenId Connect Anmeldeskript.\";s:32:\"auth_oidc_settings_login_options\";s:15:\"Anmeldeoptionen\";s:39:\"auth_oidc_settings_login_option_enforce\";s:19:\"Anmeldung erzwingen\";s:44:\"auth_oidc_settings_login_option_enforce_info\";s:121:\"Eine Anmeldung beim OpenId Connect Server ist in jedem Fall notwendig - auch wenn bereits eine gültige Sitzung vorliegt.\";s:39:\"auth_oidc_settings_login_option_default\";s:25:\"Anmeldung nicht erzwingen\";s:44:\"auth_oidc_settings_login_option_default_info\";s:107:\"Eine Anmeldung beim OpenId Connect Server ist nicht notwendig, wenn bereits eine gültige Sitzung vorliegt.\";s:31:\"auth_oidc_settings_logout_scope\";s:23:\"Verhalten beim Abmelden\";s:38:\"auth_oidc_settings_logout_scope_global\";s:15:\"Global abmelden\";s:37:\"auth_oidc_settings_logout_scope_local\";s:22:\"nur bei ILIAS abmelden\";s:43:\"auth_oidc_settings_logout_scope_global_info\";s:104:\"Wenn aktiviert, wird beim Abmelden sowohl die OpenId Connect Sitzung als auch die ILIAS-Sitzung beendet.\";s:42:\"auth_oidc_settings_logout_scope_local_info\";s:65:\"Wenn aktiviert, wird beim Abmelden nur die ILIAS-Sitzung beendet.\";s:47:\"auth_oidc_settings_custom_session_duration_type\";s:31:\"Einstellungen zur Sitzungsdauer\";s:49:\"auth_oidc_settings_custom_session_duration_option\";s:20:\"Eigene Sitzungsdauer\";s:42:\"auth_oidc_settings_custom_session_duration\";s:13:\"Sitzungsdauer\";s:36:\"auth_oidc_settings_section_user_sync\";s:42:\"Einstellungen zur Benutzersynchronisierung\";s:28:\"auth_oidc_settings_user_sync\";s:29:\"Automatische Synchronisierung\";s:33:\"auth_oidc_settings_user_sync_info\";s:185:\"Wenn aktiviert, wird für Benutzer, die sich erfolgreich gegen Open ID Connect authentifiziert haben aber kein ILIAS-Benutzerkonto besitzen, automatisch ein neues Benutzerkonto erzeugt.\";s:31:\"auth_oidc_settings_default_role\";s:15:\"Rollenzuordnung\";s:36:\"auth_oidc_settings_default_role_info\";s:72:\"Bitte wählen Sie eine globale Rolle für neu anzulegende ILIAS-Benutzer\";s:28:\"auth_oidc_settings_user_attr\";s:33:\"Attributname der Benutzerzugänge\";s:35:\"auth_oidc_settings_session_duration\";s:5:\"Dauer\";s:9:\"auth_oidc\";s:14:\"OpenId Connect\";s:23:\"auth_oidc_mapping_table\";s:62:\"Zuordnung von ILIAS-Benutzerdaten zu OpenId Connect Attributen\";s:18:\"auth_oidc_settings\";s:20:\"Server-Einstellungen\";s:17:\"auth_oidc_profile\";s:25:\"Zuordnung der Profildaten\";s:15:\"auth_oidc_roles\";s:15:\"Rollenzuordnung\";s:27:\"auth_oidc_update_field_info\";s:25:\"Automatisch aktualisieren\";s:28:\"auth_oidc_role_mapping_table\";s:55:\"Zurodnung von ILIAS-Rollen zu OpenId Connect Attributen\";s:26:\"auth_oidc_update_role_info\";s:62:\"Nur bei Erstanmeldung (automatische Synchronisierung) anwenden\";s:21:\"lti_consumer_inactive\";s:30:\"LTI tool consumer is disabled.\";s:27:\"auth_account_migration_keep\";s:29:\"Migrate Existing User Account\";s:27:\"auth_account_migration_name\";s:9:\"Migration\";s:26:\"auth_account_migration_new\";s:23:\"Create New User Account\";s:22:\"auth_account_migration\";s:17:\"New ILIAS Account\";s:13:\"auth_info_add\";s:88:\"Choose this option if you have never registered to ILIAS. A new account will be created.\";s:17:\"auth_info_migrate\";s:120:\"If you have already an ILIAS account, enter username and password to migrate your personal data (mail, test results...).\";s:23:\"auth_rad_migration_info\";s:121:\"Activate this option to give new users the possibility to migrate their existing ILIAS accounts to Radius authentication.\";s:18:\"auth_rad_migration\";s:18:\"Account Migration:\";s:24:\"auth_radius_charset_info\";s:107:\"Please choose the character encoding for the communication with the radius server. If unsure, choose UTF-8.\";s:19:\"auth_radius_charset\";s:18:\"Character Encoding\";s:20:\"auth_radius_sync_rad\";s:37:\"Automatic generation of user accounts\";s:25:\"auth_radius_sync_rad_info\";s:137:\"Creates automatically ILIAS user accounts, for users that successfully authenticated against Radius, without having an ILIAS account yet.\";s:16:\"auth_radius_ldap\";s:26:\"Synchronization using LDAP\";s:21:\"auth_radius_ldap_info\";s:115:\"If enabled, the synchronization of user accounts and role assignments is done using an existing LDAP configuration.\";s:9:\"auth_sync\";s:20:\"User Synchronisation\";s:13:\"auth_sync_cas\";s:37:\"Automatic generation of user accounts\";s:18:\"auth_sync_cas_info\";s:134:\"Creates automatically ILIAS user accounts, for users that successfully authenticated against CAS, without having an ILIAS account yet.\";s:21:\"login_page_switch_rte\";s:20:\"Use Rich-text editor\";s:21:\"login_page_switch_ipe\";s:21:\"Use ILIAS page editor\";s:26:\"login_page_editor_switched\";s:39:\"The active page editor has been changed\";s:19:\"login_page_activate\";s:38:\"Activate Editor for Selected Languages\";s:17:\"auth_account_code\";s:4:\"Code\";s:22:\"auth_account_code_info\";s:62:\"To re-activate your account you can use an ILIAS account code.\";s:23:\"auth_account_code_title\";s:12:\"Account Code\";s:22:\"auth_account_code_used\";s:81:\"Your account has been re-activated. Please login once again for security reasons.\";s:17:\"auth_login_editor\";s:18:\"Loginscreen Editor\";s:18:\"auth_auth_settings\";s:8:\"Settings\";s:19:\"auth_ldap_server_ds\";s:11:\"LDAP-Server\";s:29:\"auth_err_invalid_user_account\";s:49:\"Authentication failed due to an internal failure.\";s:16:\"auth_err_expired\";s:52:\"Your session has been deactivated due to inactivity.\";s:23:\"auth_err_ldap_exception\";s:71:\"Authentication failed due to an internal authentication failure (LDAP).\";s:28:\"auth_activation_code_success\";s:62:\"Your account has been reactivated. You can now login to ILIAS.\";s:36:\"auth_err_login_attempts_deactivation\";s:63:\"The user account has been deactivated due wrong login attempts.\";s:9:\"auth_saml\";s:4:\"SAML\";s:19:\"auth_saml_configure\";s:29:\"Configure SAML Authentication\";s:21:\"auth_saml_add_idp_btn\";s:25:\"Add new Identity Provider\";s:25:\"auth_saml_sure_delete_idp\";s:161:\"Are you sure you want to delete the selected Identity Provider? This cannot be undone. The affected user accounts will be switched to the default authentication.\";s:21:\"auth_saml_deleted_idp\";s:39:\"The Identity Provider has been deleted.\";s:20:\"auth_saml_unknow_idp\";s:44:\"The passed Identity Provider does not exist.\";s:26:\"auth_saml_add_idp_md_label\";s:31:\"Identity Provider SAML Metadata\";s:35:\"auth_saml_idp_selection_table_title\";s:27:\"Identity Provider Selection\";s:34:\"auth_saml_idp_selection_table_desc\";s:75:\"Bitte wählen Sie den Identity Provider mit dem Sie sich anmelden möchten.\";s:25:\"auth_saml_add_idp_md_info\";s:66:\"Please enter the XML formatted metadata for the Identity Provider.\";s:26:\"auth_saml_add_idp_md_error\";s:96:\"The given value was not a valid XML document. Ensure the XML contains a valid Identity Provider.\";s:16:\"auth_saml_enable\";s:19:\"Enable SAML Support\";s:24:\"auth_saml_migration_info\";s:119:\"Activate this option to give new users the possibility to migrate their existing ILIAS accounts to SAML authentication.\";s:19:\"auth_saml_migration\";s:18:\"Account Migration:\";s:21:\"auth_saml_role_select\";s:5:\"Role:\";s:21:\"auth_allow_local_info\";s:175:\"If enabled a local authentication against the ILIAS database is still possible (with a local login/password) for those user accounts, whose authentication mode is set to SAML.\";s:19:\"auth_saml_sync_info\";s:197:\"If enabled new user accounts will be created automatically after successful authentication. Furthermore existing user accounts will be modified according to the defined user profile mapping rules.\";s:14:\"auth_saml_sync\";s:20:\"User Synchronization\";s:19:\"auth_saml_uid_claim\";s:42:\"Unique Attribute for User Account Matching\";s:24:\"auth_saml_uid_claim_info\";s:131:\"Define the attribute ILIAS uses to detect whether or not an incoming authentication request matches an existing ILIAS user account.\";s:24:\"auth_saml_username_claim\";s:22:\"Attribute for Username\";s:29:\"auth_saml_username_claim_info\";s:88:\"Define the attribute ILIAS uses to generate the username which will be visible in ILIAS.\";s:22:\"auth_saml_user_mapping\";s:20:\"User Profile Mapping\";s:27:\"auth_saml_update_field_info\";s:20:\"Update automatically\";s:20:\"err_auth_saml_failed\";s:64:\"Authentication failed. Please contact your system administrator.\";s:27:\"err_auth_saml_no_ilias_user\";s:64:\"Authentication failed. Please contact your system administrator.\";s:20:\"auth_saml_login_form\";s:20:\"Button on Login Page\";s:25:\"auth_saml_login_form_info\";s:135:\"If activated and there is at least one active IDP, a button appears on the login page. A click on this button initiates a SAML request.\";s:14:\"auth_saml_idps\";s:13:\"SAML IDP List\";s:19:\"auth_saml_idps_info\";s:311:\"Please check and edit the SimpleSAMLphp configuration in \'%s\' and \'%s\' (external data directory). Don\'t forget to add the paths to your private key and certificate in the authsources.php file. Please read the manual for further explanations %s.
Federation Metadata URL: %s\";s:13:\"auth_saml_idp\";s:3:\"IDP\";s:23:\"auth_saml_configure_idp\";s:22:\"Configure SAML IDP: %s\";s:17:\"saml_tab_head_idp\";s:3:\"IDP\";s:22:\"auth_saml_idp_settings\";s:12:\"IDP Settings\";s:19:\"auth_page_type_auth\";s:10:\"Login Page\";}'); @@ -30418,7 +30434,7 @@ INSERT INTO `lng_modules` VALUES ('classification','en','a:6:{s:18:\"clsfct_bloc INSERT INTO `lng_modules` VALUES ('cld','en','a:50:{s:7:\"cld_add\";s:16:\"Add Cloud Object\";s:23:\"cld_add_download_failed\";s:15:\"Download Failed\";s:12:\"cld_add_file\";s:4:\"File\";s:14:\"cld_add_folder\";s:6:\"Folder\";s:33:\"cld_add_items_from_service_failed\";s:29:\"Add Items from Service Failed\";s:16:\"cld_add_new_item\";s:12:\"Add New Item\";s:15:\"cld_auth_failed\";s:21:\"Authentication Failed\";s:25:\"cld_authentication_failed\";s:23:\":#Authentication Failed\";s:31:\"cld_config_entry_does_not_exist\";s:27:\"Config entry does not exist\";s:39:\"cld_config_no_valid_get_or_set_function\";s:45:\"No valid get or set function for config value\";s:31:\"cld_config_table_does_not_exist\";s:27:\"Config table does not exist\";s:28:\"cld_config_unknown_exception\";s:17:\"Unknown Exception\";s:23:\"cld_confirm_delete_file\";s:55:\"Are you sure, that the following file is to be deleted:\";s:25:\"cld_confirm_delete_folder\";s:57:\"Are you sure, that the following folder is to be deleted:\";s:17:\"cld_create_folder\";s:13:\"Create Folder\";s:17:\"cld_delete_failed\";s:13:\"Delete Failed\";s:16:\"cld_file_deleted\";s:14:\"Object deleted\";s:17:\"cld_edit_Settings\";s:14:\"Cloud Settings\";s:32:\"cld_file_not_existing_on_service\";s:29:\"File not existing on service:\";s:38:\"cld_folder_already_existing_on_service\";s:35:\"Folder already existing on service:\";s:18:\"cld_folder_created\";s:14:\"Folder created\";s:26:\"cld_folder_creation_failed\";s:22:\"Folder Creation Failed\";s:15:\"cld_folder_name\";s:11:\"Folder Name\";s:34:\"cld_folder_not_existing_on_service\";s:31:\"Folder not existing on service:\";s:45:\"cld_id_already_exists_in_file_tree_in_session\";s:42:\"ID already exists in file tree in session:\";s:45:\"cld_id_does_not_exist_in_file_tree_in_session\";s:42:\"ID does not exist in file tree in session:\";s:38:\"cld_info_add_file_to_current_directory\";s:29:\"Add File to current directory\";s:40:\"cld_info_add_folder_to_current_directory\";s:31:\"Add Folder to current directory\";s:17:\"cld_invalid_input\";s:13:\"Invalid Input\";s:7:\"cld_new\";s:16:\"New Cloud Object\";s:21:\"cld_no_service_active\";s:22:\"No cloud-plugin active\";s:23:\"cld_no_service_selected\";s:19:\"No service selected\";s:29:\"cld_not_authenticated_offline\";s:27:\"Not Authenticated - Offline\";s:49:\"cld_only_owner_has_permission_to_change_root_path\";s:103:\"Due to privacy concerns only the creator of a cloud object has the permission to change it\'s root path.\";s:47:\"cld_path_does_not_exist_in_file_tree_in_session\";s:44:\"Path does not exist in file tree in Session:\";s:21:\"cld_permission_denied\";s:17:\"Permission Denied\";s:43:\"cld_permission_to_change_root_folder_denied\";s:39:\"Permission to change root folder denied\";s:41:\"cld_plugin_hook_could_not_be_instantiated\";s:37:\"Plugin hook cloud not be instantiated\";s:21:\"cld_plugin_not_active\";s:20:\"Plugin is not active\";s:15:\"cld_root_folder\";s:11:\"Root Folder\";s:11:\"cld_service\";s:7:\"Service\";s:32:\"cld_service_class_file_not_found\";s:28:\"Service class file not found\";s:22:\"cld_service_not_active\";s:18:\"Service not active\";s:29:\"cld_service_specific_settings\";s:17:\"Specific Settings\";s:21:\"cld_unknown_exception\";s:17:\"Unknown Exception\";s:30:\"cld_upload_failed_max_filesize\";s:39:\"Upload Failed (Max. File Size exceeded)\";s:17:\"cld_upload_failed\";s:13:\"Upload Failed\";s:16:\"cld_upload_files\";s:12:\"Upload Files\";s:33:\"cld_auth_failed_no_object_created\";s:56:\"Authentication failed, no Cloud Object has been created.\";s:16:\"cld_object_added\";s:33:\"A new Cloud object has been added\";}'); INSERT INTO `lng_modules` VALUES ('cmps','en','a:60:{s:13:\"cmps_activate\";s:8:\"Activate\";s:11:\"cmps_active\";s:6:\"Active\";s:17:\"cmps_add_new_rank\";s:31:\"Position in Add-New-Object List\";s:14:\"cmps_available\";s:9:\"Available\";s:16:\"cmps_basic_files\";s:11:\"Basic Files\";s:15:\"cmps_class_file\";s:10:\"Class File\";s:14:\"cmps_component\";s:9:\"Component\";s:20:\"cmps_current_version\";s:15:\"Current Version\";s:13:\"cmps_database\";s:8:\"Database\";s:14:\"cmps_db_update\";s:16:\"DB Update Script\";s:15:\"cmps_deactivate\";s:10:\"Deactivate\";s:8:\"cmps_dir\";s:9:\"Directory\";s:17:\"cmps_file_version\";s:19:\"Update File Version\";s:10:\"cmps_group\";s:5:\"Group\";s:7:\"cmps_id\";s:2:\"ID\";s:22:\"cmps_ilias_max_version\";s:18:\"Max. ILIAS Version\";s:22:\"cmps_ilias_min_version\";s:18:\"Min. ILIAS Version\";s:13:\"cmps_inactive\";s:8:\"Inactive\";s:12:\"cmps_install\";s:7:\"Install\";s:15:\"cmps_lang_files\";s:14:\"Language Files\";s:16:\"cmps_lang_prefix\";s:25:\"Language Variables Prefix\";s:14:\"cmps_languages\";s:9:\"Languages\";s:13:\"cmps_main_dir\";s:14:\"Main Directory\";s:12:\"cmps_missing\";s:7:\"Missing\";s:11:\"cmps_module\";s:6:\"Module\";s:9:\"cmps_name\";s:4:\"Name\";s:30:\"cmps_needs_newer_ilias_version\";s:76:\"This plugin version only runs on newer ILIAS versions. Please upgrade ILIAS.\";s:31:\"cmps_needs_newer_plugin_version\";s:75:\"This ILIAS version needs a newer plugin version. Please upgrade the plugin.\";s:17:\"cmps_needs_update\";s:13:\"Needs update.\";s:18:\"cmps_needs_upgrade\";s:111:\"The plugin version currently installed is older than a previously installed version. Please upgrade the plugin.\";s:32:\"cmps_no_db_update_file_available\";s:30:\"No DB update script available.\";s:31:\"cmps_no_language_file_available\";s:27:\"No language file available.\";s:19:\"cmps_must_installed\";s:32:\"The component must be installed.\";s:21:\"cmps_plugin_activated\";s:30:\"The plugin has been activated.\";s:23:\"cmps_plugin_db_prefixes\";s:17:\"DB Table Prefixes\";s:23:\"cmps_plugin_deactivated\";s:32:\"The plugin has been deactivated.\";s:16:\"cmps_plugin_file\";s:11:\"Plugin File\";s:25:\"cmps_plugin_lang_prefixes\";s:24:\"Plugin Language Prefixes\";s:16:\"cmps_plugin_slot\";s:11:\"Plugin Slot\";s:11:\"cmps_plugin\";s:6:\"Plugin\";s:12:\"cmps_plugins\";s:7:\"Plugins\";s:12:\"cmps_refresh\";s:17:\"Refresh Languages\";s:15:\"cmps_rep_object\";s:22:\"Repository Object Type\";s:16:\"cmps_responsible\";s:11:\"Responsible\";s:17:\"cmps_save_options\";s:4:\"Save\";s:12:\"cmps_service\";s:7:\"Service\";s:17:\"cmps_show_details\";s:12:\"Show Details\";s:11:\"cmps_status\";s:6:\"Status\";s:11:\"cmps_update\";s:6:\"Update\";s:12:\"cmps_version\";s:7:\"Version\";s:20:\"database_is_uptodate\";s:27:\"The database is up to date.\";s:10:\"no_changes\";s:10:\"No changes\";s:14:\"cmps_configure\";s:9:\"Configure\";s:20:\"cmps_enable_creation\";s:15:\"Enable Creation\";s:10:\"cmps_slots\";s:5:\"Slots\";s:28:\"cmps_repository_object_types\";s:23:\"Repository Object Types\";s:14:\"cmps_uninstall\";s:9:\"Uninstall\";s:22:\"cmps_uninstall_confirm\";s:91:\"Are you sure you want to uninstall the plugin \"%s\" and remove all related database entries?\";s:23:\"cmps_plugin_uninstalled\";s:226:\"All language and database related entries have been deleted and the plugin has been set inactive. Now you can remove the plugin\'s directory and source code in the ‘Customizing’ directory to uninstall the plugin definitely.\";s:31:\"cmps_uninstall_inactive_confirm\";s:242:\"The plugin \"%1$s\" can currently not be activated (\"%2$s\"). In this state plugins cannot be uninstalled completely. As only the core integration is reverted, plugin custom data may remain. Would you like to continue with the partial uninstall?\";}'); INSERT INTO `lng_modules` VALUES ('cntr','en','a:40:{s:17:\"cntr_add_new_item\";s:12:\"Add New Item\";s:23:\"cntr_back_to_old_editor\";s:18:\"Back to Old Editor\";s:24:\"cntr_hide_title_and_icon\";s:19:\"Hide Title and Icon\";s:11:\"cntr_manage\";s:6:\"Manage\";s:36:\"cntr_old_editor_open_standard_editor\";s:20:\"Open Standard Editor\";s:23:\"cntr_old_editor_warning\";s:226:\"The maintenance of this editor will be discontinued in a future major releases of ILIAS. You may still use it to edit the content of this page now. But we recommend to switch to the standard page editor of ILIAS when possible.\";s:13:\"cntr_ordering\";s:7:\"Sorting\";s:18:\"cntr_saved_sorting\";s:14:\"Saved Sorting.\";s:29:\"cntr_switch_to_new_editor_cmd\";s:64:\"Switch to new content of this page. Old content will be removed.\";s:33:\"cntr_switch_to_new_editor_message\";s:200:\"This is the supported standard editor. The content from the old editor cannot be transferred. Please start adding new page content below. If you click the following link, the new content will be used.\";s:20:\"cntr_switched_editor\";s:24:\"Switched to new content.\";s:22:\"cntr_text_media_editor\";s:14:\"Customize Page\";s:17:\"cntr_view_by_type\";s:20:\"Grouped-by-Type View\";s:22:\"cntr_view_info_by_type\";s:60:\"This content presentation groups all items by resource type.\";s:23:\"cntr_view_info_sessions\";s:99:\"This content presentation groups all sessions first. After that the other course content is listed.\";s:21:\"cntr_view_info_simple\";s:55:\"This content presentation lists all items in one block.\";s:18:\"cntr_view_sessions\";s:13:\"Sessions View\";s:16:\"cntr_view_simple\";s:11:\"Simple View\";s:14:\"edit_questions\";s:14:\"Edit Questions\";s:33:\"container_import_zip_file_invalid\";s:109:\"The uploaded file is not a valid ILIAS export file. To upload a directory structure please use a file object.\";s:18:\"cntr_adopt_content\";s:13:\"Adopt Content\";s:35:\"prtf_create_portfolio_from_template\";s:30:\"Create Portfolio From Template\";s:24:\"exc_next_deadline_single\";s:8:\"Deadline\";s:32:\"cntr_container_only_on_their_own\";s:123:\"Categories, courses, groups, folders or study programmes can only be copied as single objects. Please select one item only.\";s:18:\"objects_duplicated\";s:14:\"Objects copied\";s:27:\"msg_no_downloadable_objects\";s:30:\"No downloadable objects found.\";s:23:\"cntr_tax_none_available\";s:34:\"There are no taxonomies available.\";s:32:\"cntr_taxonomy_sideblock_settings\";s:21:\"Presentation Settings\";s:28:\"cntr_taxonomy_show_sideblock\";s:27:\"Show taxonomy in side block\";s:26:\"sorting_new_items_position\";s:24:\"Position for New Objects\";s:24:\"sorting_new_items_at_top\";s:3:\"Top\";s:27:\"sorting_new_items_at_bottom\";s:6:\"Bottom\";s:23:\"sorting_new_items_order\";s:21:\"Order for New Objects\";s:27:\"sorting_new_items_direction\";s:33:\"Sorting Direction for New Objects\";s:25:\"cntr_taxonomy_definitions\";s:19:\"Taxonomy Definition\";s:18:\"cntr_tax_list_info\";s:72:\"The following are all taxonomies that have been defined for this object.\";s:16:\"cont_custom_icon\";s:11:\"Custom Icon\";s:22:\"tab_back_to_repository\";s:18:\"Back to Repository\";s:19:\"cntr_copy_repo_tree\";s:15:\"Repository Tree\";s:17:\"cntr_copy_crs_grp\";s:21:\"My Courses and Groups\";}'); -INSERT INTO `lng_modules` VALUES ('common','en','a:2502:{s:13:\"obj_nots_desc\";s:14:\"Notes settings\";s:8:\"obj_nots\";s:5:\"Notes\";s:13:\"obj_coms_desc\";s:17:\"Comments settings\";s:8:\"obj_coms\";s:8:\"Comments\";s:13:\"obj_lhts_desc\";s:25:\"Learning history settings\";s:8:\"obj_lhts\";s:16:\"Learning History\";s:13:\"obj_dshs_desc\";s:18:\"Dashboard settings\";s:8:\"obj_dshs\";s:9:\"Dashboard\";s:13:\"obj_prss_desc\";s:27:\"Personal resources settings\";s:8:\"obj_prss\";s:18:\"Personal Resources\";s:19:\"msg_wrong_filetypes\";s:20:\"Allowed Files-Types:\";s:31:\"session_mail_subject_registered\";s:42:\"Registration of user \"%s\" for session \"%s\"\";s:29:\"session_mail_subject_deletion\";s:45:\"Deregistration of user \"%s\" from session \"%s\"\";s:28:\"session_mail_subject_entered\";s:36:\"Joining of user \"%s\" in session \"%s\"\";s:21:\"register_notification\";s:34:\"\"%s\" has applied for session \"%s\".\";s:21:\"deletion_notification\";s:49:\"\"%s\" has canceled the attendance of session \"%s\".\";s:20:\"entered_notification\";s:33:\"\"%s\" has joined the session \"%s\".\";s:8:\"obj_ltis\";s:3:\"LTI\";s:13:\"obj_ltis_desc\";s:31:\"Learning Tools Interoperability\";s:11:\"lti_outcome\";s:36:\"LTI Lernfortschritt Benachrichtigung\";s:16:\"lti_outcome_info\";s:72:\"Sendet den Lernfortschrittstatus von LTI-Benutzern an LTI Tool Consumer.\";s:27:\"pwsp_recalculate_disk_quota\";s:47:\"Personal Resources: Recalculation of Disk Quota\";s:32:\"pwsp_recalculate_disk_quota_desc\";s:62:\"Recalculates all disk quota values for the personal resources.\";s:18:\"3rd_party_software\";s:18:\"3rd party software\";s:13:\"absolute_path\";s:13:\"Absolute Path\";s:20:\"accept_usr_agreement\";s:24:\"Accept terms of service?\";s:14:\"access_expired\";s:7:\"expired\";s:19:\"access_free_granted\";s:44:\"Set the selected user(s) to unlimited access\";s:11:\"access_from\";s:13:\"Access (from)\";s:13:\"access_public\";s:6:\"Public\";s:17:\"access_restricted\";s:42:\"Set the selected user(s) to limited access\";s:12:\"access_scope\";s:6:\"Access\";s:16:\"access_unlimited\";s:9:\"Unlimited\";s:12:\"access_until\";s:11:\"Valid until\";s:12:\"access_users\";s:15:\"Logged in Users\";s:6:\"access\";s:6:\"Access\";s:28:\"accesscount_registered_users\";s:38:\"Read by number of distinct ILIAS users\";s:10:\"accessFree\";s:25:\"Remove \'Valid Until\' Date\";s:14:\"accessRestrict\";s:22:\"Set \'Valid Until\' Date\";s:20:\"account_expires_body\";s:43:\"Your account is limited, it will expire at:\";s:23:\"account_expires_subject\";s:20:\"Your account expires\";s:7:\"account\";s:10:\"My Account\";s:14:\"action_aborted\";s:14:\"Action aborted\";s:6:\"action\";s:6:\"Action\";s:7:\"actions\";s:7:\"Actions\";s:27:\"activate_assessment_logging\";s:36:\"Activate Test and Assessment Logging\";s:14:\"activate_https\";s:36:\"HTTPS handling by ILIAS
(Login)\";s:17:\"activate_tracking\";s:10:\"Activation\";s:8:\"activate\";s:10:\"Set Active\";s:10:\"activation\";s:12:\"Edit Timings\";s:6:\"active\";s:6:\"Active\";s:13:\"add_condition\";s:16:\"Add Precondition\";s:10:\"add_member\";s:10:\"Add Member\";s:15:\"add_member_role\";s:15:\"Add Member Role\";s:26:\"add_new_user_defined_field\";s:20:\"Add New Custom Field\";s:8:\"add_note\";s:8:\"Add Note\";s:13:\"add_parameter\";s:13:\"New Parameter\";s:8:\"add_role\";s:8:\"Add Role\";s:15:\"add_translation\";s:15:\"Add translation\";s:22:\"add_user_defined_field\";s:13:\"Add New Field\";s:8:\"add_user\";s:14:\"Add Local User\";s:3:\"add\";s:3:\"Add\";s:19:\"added_new_condition\";s:22:\"Created new condition.\";s:15:\"additional_info\";s:22:\"Additional Information\";s:7:\"address\";s:7:\"Address\";s:16:\"admin_force_noti\";s:19:\"Notification active\";s:18:\"administrate_users\";s:25:\"Local User Administration\";s:14:\"administration\";s:14:\"Administration\";s:13:\"administrator\";s:13:\"Administrator\";s:5:\"adopt\";s:5:\"Adopt\";s:32:\"advanced_editing_allow_html_tags\";s:45:\"Allow the selected HTML tags for text editing\";s:36:\"advanced_editing_assessment_settings\";s:56:\"Allowed HTML Tags for the ILIAS Test and Assessment tool\";s:34:\"advanced_editing_frm_post_settings\";s:19:\"Forum Post Settings\";s:38:\"advanced_editing_rep_page_editing_desc\";s:135:\"This feature allows adding text/media to pages of a category, course, group or folder. If deactivated, existing content will be hidden.\";s:33:\"advanced_editing_rep_page_editing\";s:36:\"Enable Content Editing in Repository\";s:30:\"advanced_editing_required_tags\";s:40:\"The following HTML tags are required: %s\";s:32:\"advanced_editing_survey_settings\";s:43:\"Allowed HTML Tags for the ILIAS survey tool\";s:24:\"adve_assessment_settings\";s:28:\"Test and Assessment Settings\";s:22:\"adve_frm_post_settings\";s:11:\"Forum Posts\";s:21:\"adve_general_settings\";s:16:\"General Settings\";s:20:\"adve_survey_settings\";s:15:\"Survey Settings\";s:10:\"agree_date\";s:9:\"Agreed on\";s:16:\"all_global_roles\";s:12:\"Global roles\";s:15:\"all_local_roles\";s:17:\"Local roles (all)\";s:11:\"all_objects\";s:11:\"All Objects\";s:9:\"all_roles\";s:9:\"All Roles\";s:10:\"all_topics\";s:10:\"All Topics\";s:9:\"all_users\";s:9:\"All Users\";s:18:\"allow_assign_users\";s:47:\"Allow user assignment for local administrators.\";s:20:\"allow_override_alert\";s:50:\"Rules for .htaccess are not interpreted correctly.\";s:14:\"allow_register\";s:44:\"Available in registration form for new users\";s:23:\"already_delivered_files\";s:15:\"Submitted Files\";s:3:\"and\";s:3:\"and\";s:9:\"anonymous\";s:9:\"Anonymous\";s:7:\"answers\";s:7:\"Answers\";s:12:\"any_language\";s:12:\"Any language\";s:21:\"application_completed\";s:23:\"Application is complete\";s:16:\"application_date\";s:16:\"Application Date\";s:12:\"applications\";s:12:\"Applications\";s:12:\"apply_filter\";s:12:\"Apply Filter\";s:5:\"apply\";s:5:\"Apply\";s:11:\"appointment\";s:11:\"Appointment\";s:12:\"approve_date\";s:11:\"Approved on\";s:17:\"approve_recipient\";s:20:\"Login ID of Approver\";s:14:\"archive_broken\";s:36:\"Archive seems to be broken or empty.\";s:7:\"archive\";s:7:\"Archive\";s:12:\"are_you_sure\";s:13:\"Are you sure?\";s:13:\"ass_log_admin\";s:23:\"Log Data Administration\";s:22:\"ass_log_count_datasets\";s:11:\"Log Entries\";s:22:\"ass_log_delete_entries\";s:18:\"Delete Log Entries\";s:27:\"ass_log_delete_no_selection\";s:54:\"Please select at least one test to delete the Log Data\";s:15:\"ass_log_deleted\";s:52:\"The Log Data for the selected tests has been deleted\";s:14:\"ass_log_output\";s:15:\"Log Data Output\";s:26:\"assessment_imap_line_color\";s:20:\"Image Map Line Color\";s:23:\"assessment_log_datetime\";s:9:\"Date/Time\";s:22:\"assessment_log_deleted\";s:71:\"The Test and Assessment log data has been deleted in the administration\";s:23:\"assessment_log_for_test\";s:8:\"For test\";s:26:\"assessment_log_log_entries\";s:11:\"log entries\";s:22:\"assessment_log_logging\";s:7:\"Logging\";s:38:\"assessment_log_manual_scoring_activate\";s:27:\"Activate Manual Scoring for\";s:34:\"assessment_log_manual_scoring_desc\";s:275:\"If the Manual Scoring is activated for a question type, all questions of this question type could be manually scored by a test author. Please be careful with these settings, because late manual scoring of automatically scored question types could cause even judical problems!\";s:23:\"assessment_log_question\";s:8:\"Question\";s:19:\"assessment_log_text\";s:11:\"Log message\";s:14:\"assessment_log\";s:59:\"Create a Test and Assessment log for a specific time period\";s:38:\"assessment_settings_reporting_language\";s:18:\"Reporting language\";s:31:\"assf_allowed_questiontypes_desc\";s:224:\"All the checked question types will be available in this ILIAS installation. If you don\'t want to allow the creation of a certain question type in this installation, you must remove the selection in the associated check box.\";s:26:\"assf_allowed_questiontypes\";s:24:\"Available Question Types\";s:18:\"assf_questiontypes\";s:17:\"Question Settings\";s:18:\"assign_global_role\";s:21:\"Assign to Global Role\";s:17:\"assign_local_role\";s:20:\"Assign to Local Role\";s:6:\"assign\";s:6:\"Assign\";s:16:\"assigned_members\";s:16:\"Assigned Members\";s:14:\"assigned_roles\";s:14:\"Assigned Roles\";s:15:\"associated_user\";s:15:\"associated User\";s:18:\"at_least_one_style\";s:41:\"At least one style must remain activated.\";s:10:\"attachment\";s:10:\"Attachment\";s:11:\"attachments\";s:11:\"Attachments\";s:8:\"attempts\";s:8:\"Attempts\";s:17:\"auth_active_roles\";s:43:\"Global roles available on registration form\";s:16:\"auth_allow_local\";s:26:\"Allow Local Authentication\";s:25:\"auth_cas_allow_local_desc\";s:91:\"This allows CAS users to authenticate with their local ILIAS username and a local password.\";s:18:\"auth_cas_auth_desc\";s:66:\"CAS requires PHP 4.3.1 or higher with CURL support (7.5 or higher)\";s:13:\"auth_cas_auth\";s:28:\"Configure CAS Authentication\";s:18:\"auth_cas_port_desc\";s:75:\"E.g. 443 if the full CAS server URI is https://auth.yourserver.com:443/cas/\";s:20:\"auth_cas_server_desc\";s:91:\"E.g. auth.yourserver.com if the full CAS server URI is https://auth.yourserver.com:443/cas/\";s:17:\"auth_cas_uri_desc\";s:86:\"Local URI, e.g. cas if the full CAS server URI is https://auth.yourserver.com:443/cas/\";s:8:\"auth_cas\";s:3:\"CAS\";s:14:\"auth_configure\";s:12:\"configure...\";s:17:\"auth_create_users\";s:39:\"Create non-existing users automatically\";s:28:\"auth_default_mode_changed_to\";s:38:\"Default authentication mode changed to\";s:12:\"auth_default\";s:15:\"Default setting\";s:8:\"auth_ecs\";s:3:\"ECS\";s:16:\"auth_ldap_enable\";s:19:\"Enable LDAP support\";s:24:\"auth_ldap_migration_info\";s:119:\"Activate this option to give new users the possibility to migrate their existing ILIAS accounts to LDAP authentication.\";s:19:\"auth_ldap_migration\";s:17:\"Account Migration\";s:9:\"auth_ldap\";s:4:\"LDAP\";s:10:\"auth_local\";s:10:\"ILIAS Auth\";s:23:\"auth_login_instructions\";s:32:\"Instructions shown on login page\";s:21:\"auth_mode_not_changed\";s:17:\"(Nothing changed)\";s:23:\"auth_mode_roles_changed\";s:41:\"Changed authentication mode for this Role\";s:9:\"auth_mode\";s:19:\"Authentication mode\";s:26:\"auth_new_account_mail_desc\";s:158:\"Send new account e-mail to user, if user is generated automatically. A password will only be generated, if ‘Allow Local Authentication’ is also activated.\";s:16:\"auth_per_default\";s:11:\"Per Default\";s:21:\"auth_radius_configure\";s:31:\"Configure RADIUS-Authentication\";s:18:\"auth_radius_enable\";s:21:\"Enable RADIUS support\";s:26:\"auth_radius_not_configured\";s:28:\"RADIUS is not configured yet\";s:16:\"auth_radius_port\";s:4:\"Port\";s:23:\"auth_radius_server_desc\";s:108:\"You may add multiple servers with commas separated. Servers are rotated in Round robin fashion when queried.\";s:18:\"auth_radius_server\";s:7:\"Servers\";s:25:\"auth_radius_shared_secret\";s:13:\"Shared secret\";s:11:\"auth_radius\";s:6:\"RADIUS\";s:26:\"auth_remark_non_local_auth\";s:122:\"When selecting another authentication mode than ILIAS database, you may not change user\'s login name and password anymore.\";s:19:\"auth_role_auth_mode\";s:19:\"Authentication mode\";s:11:\"auth_script\";s:6:\"Custom\";s:11:\"auth_select\";s:26:\"Select authentication mode\";s:14:\"auth_selection\";s:13:\"Login Options\";s:13:\"auth_settings\";s:23:\"Authentication Settings\";s:22:\"auth_shib_instructions\";s:93:\"Be sure to read the README for instructions on how to configure Shibboleth support for ILIAS.\";s:24:\"auth_shib_not_configured\";s:32:\"Shibboleth is not configured yet\";s:9:\"auth_shib\";s:10:\"Shibboleth\";s:15:\"auth_shibboleth\";s:10:\"Shibboleth\";s:26:\"auth_soap_allow_local_desc\";s:92:\"This allows SOAP users to authenticate with their local ILIAS username and a local password.\";s:19:\"auth_soap_auth_desc\";s:95:\"This settings deal only with SOAP based user authentication, not with the ILIAS SOAP interface.\";s:14:\"auth_soap_auth\";s:29:\"Configure SOAP Authentication\";s:27:\"auth_soap_create_users_desc\";s:137:\"Creates automatically an ILIAS user account, for users that successfully authenticated against SOAP, without having an ILIAS account yet.\";s:24:\"auth_soap_namespace_desc\";s:66:\"As defined in WSDL. Must be specified, if .NET SOAP style is used.\";s:19:\"auth_soap_namespace\";s:9:\"Namespace\";s:19:\"auth_soap_port_desc\";s:87:\"E.g. 8080 if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php\";s:21:\"auth_soap_server_desc\";s:102:\"E.g. auth.yourserver.com if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php\";s:24:\"auth_soap_settings_saved\";s:34:\"SOAP authentication settings saved\";s:18:\"auth_soap_uri_desc\";s:108:\"Local URI, e.g. dir/server.php if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php\";s:20:\"auth_soap_use_dotnet\";s:19:\"Use .NET SOAP Style\";s:19:\"auth_soap_use_https\";s:9:\"Use HTTPS\";s:32:\"auth_soap_user_default_role_desc\";s:58:\"This role is assigned to automatically created SOAP users.\";s:9:\"auth_soap\";s:4:\"SOAP\";s:22:\"auth_user_default_role\";s:12:\"Default Role\";s:18:\"authenticate_ilias\";s:27:\"ILIAS Native Authentication\";s:23:\"authentication_settings\";s:14:\"Authentication\";s:6:\"author\";s:6:\"Author\";s:14:\"authoring_mode\";s:14:\"Authoring Mode\";s:7:\"authors\";s:7:\"Authors\";s:9:\"available\";s:9:\"Available\";s:4:\"awra\";s:14:\"Who is online?\";s:19:\"back_to_crs_content\";s:22:\"Back to Course Content\";s:20:\"back_to_fold_content\";s:22:\"Back to Folder Content\";s:19:\"back_to_grp_content\";s:21:\"Back to Group Content\";s:4:\"back\";s:4:\"Back\";s:6:\"basedn\";s:6:\"BaseDN\";s:14:\"basic_settings\";s:14:\"Basic Settings\";s:6:\"before\";s:6:\"before\";s:9:\"benchmark\";s:9:\"Benchmark\";s:10:\"benchmarks\";s:10:\"Benchmarks\";s:8:\"bib_data\";s:20:\"Bibliographical Data\";s:8:\"birthday\";s:8:\"Birthday\";s:13:\"bkm_import_ok\";s:59:\"Successfully imported %d bookmarks and %d bookmark folders.\";s:10:\"bkm_import\";s:16:\"Import Bookmarks\";s:12:\"bkm_sendmail\";s:18:\"Send as attachment\";s:5:\"block\";s:5:\"Block\";s:15:\"bm_add_to_ilias\";s:22:\"Add to ILIAS Bookmarks\";s:2:\"bm\";s:8:\"Bookmark\";s:3:\"bmf\";s:15:\"Bookmark Folder\";s:4:\"bold\";s:4:\"Bold\";s:8:\"bookings\";s:8:\"Bookings\";s:14:\"bookmark_added\";s:30:\"The Bookmark has been created.\";s:19:\"bookmark_folder_new\";s:19:\"New Bookmark Folder\";s:12:\"bookmark_new\";s:12:\"New Bookmark\";s:15:\"bookmark_target\";s:6:\"Target\";s:12:\"bookmarks_of\";s:12:\"Bookmarks of\";s:9:\"bookmarks\";s:9:\"Bookmarks\";s:21:\"breadcrumb_navigation\";s:21:\"Breadcrumb Navigation\";s:7:\"btn_add\";s:3:\"Add\";s:8:\"btn_back\";s:4:\"Back\";s:8:\"btn_next\";s:8:\"Continue\";s:12:\"btn_previous\";s:4:\"Back\";s:17:\"btn_remove_system\";s:18:\"Remove from System\";s:12:\"btn_undelete\";s:7:\"Restore\";s:2:\"by\";s:2:\"By\";s:5:\"bytes\";s:5:\"Bytes\";s:8:\"cal_from\";s:5:\"From:\";s:9:\"cal_until\";s:6:\"Until:\";s:8:\"calendar\";s:8:\"Calendar\";s:6:\"cancel\";s:6:\"Cancel\";s:15:\"cannot_find_xml\";s:25:\"Cannot find any XML-file.\";s:32:\"cannot_uninstall_language_in_use\";s:51:\"You cannot uninstall the language currently in use!\";s:31:\"cannot_uninstall_systemlanguage\";s:41:\"You cannot uninstall the system language!\";s:17:\"cannot_unzip_file\";s:19:\"Cannot unpack file.\";s:33:\"cant_deactivate_if_users_assigned\";s:70:\"You cannot deactivate a style if there are still users assigned to it.\";s:7:\"cat_add\";s:12:\"Add Category\";s:9:\"cat_added\";s:14:\"Category added\";s:21:\"cat_copy_threads_info\";s:76:\"Please decide which category items should be copied, linked or even omitted.\";s:8:\"cat_edit\";s:17:\"Category Settings\";s:7:\"cat_new\";s:12:\"New Category\";s:15:\"cat_wizard_page\";s:24:\"Copy Category (Step 2/2)\";s:3:\"cat\";s:8:\"Category\";s:19:\"categories_imported\";s:25:\"Category import complete.\";s:10:\"categories\";s:10:\"Categories\";s:14:\"catr_edit_info\";s:51:\"Please choose one category for creating a new link.\";s:8:\"catr_new\";s:20:\"Create Category Link\";s:4:\"catr\";s:13:\"Category Link\";s:2:\"cc\";s:2:\"CC\";s:11:\"certificate\";s:11:\"Certificate\";s:17:\"change_assignment\";s:17:\"Change assignment\";s:19:\"change_header_title\";s:17:\"Edit Header Title\";s:12:\"change_owner\";s:12:\"Change owner\";s:21:\"change_sort_direction\";s:21:\"Change sort direction\";s:6:\"change\";s:6:\"Change\";s:10:\"changeable\";s:21:\"Changeable in Profile\";s:10:\"changed_to\";s:10:\"changed to\";s:36:\"changing_loginname_not_possible_info\";s:82:\"You changed your login name at last at %s. The next change can be performed at %s.\";s:7:\"chapter\";s:7:\"Chapter\";s:10:\"characters\";s:10:\"characters\";s:30:\"chat_enter_public_room_tooltip\";s:18:\"Enter public chat.\";s:22:\"chat_enter_public_room\";s:11:\"Public Chat\";s:31:\"chat_invite_public_room_tooltip\";s:22:\"Invite to public chat.\";s:23:\"chat_invite_public_room\";s:11:\"Public Chat\";s:17:\"chat_users_active\";s:12:\"Active users\";s:9:\"check_all\";s:9:\"Check all\";s:14:\"check_langfile\";s:31:\"Please check your language file\";s:15:\"check_languages\";s:19:\"Check All Languages\";s:15:\"check_link_desc\";s:91:\"If enabled all external links in ILIAS learning modules will be checked if they are active.\";s:10:\"check_link\";s:13:\"Weblink check\";s:24:\"check_user_accounts_desc\";s:212:\"If enabled, all users whose account expires will be informed by e-mail two weeks before. Furthermore all users which have not confirmed their account after a registration with e-mail confirmation will be deleted.\";s:19:\"check_user_accounts\";s:19:\"Check user accounts\";s:24:\"check_web_resources_desc\";s:59:\"If enabled all Weblinks will be checked if they are active.\";s:19:\"check_web_resources\";s:14:\"Check Weblinks\";s:5:\"check\";s:5:\"Check\";s:13:\"checked_files\";s:16:\"Importable files\";s:7:\"checked\";s:7:\"Checked\";s:32:\"chg_ilias_and_webfolder_password\";s:25:\"Change Webfolder Password\";s:18:\"chg_ilias_password\";s:21:\"Change ILIAS Password\";s:12:\"chg_password\";s:15:\"Change Password\";s:15:\"choose_language\";s:20:\"Choose Your Language\";s:24:\"choose_only_one_language\";s:31:\"Please choose only one language\";s:13:\"chown_warning\";s:84:\"Attention, you may loose access permissions on this object after changing the owner.\";s:4:\"city\";s:11:\"City, State\";s:12:\"cleaned_file\";s:22:\"File has been cleaned.\";s:15:\"cleaning_failed\";s:16:\"Cleaning failed.\";s:15:\"clear_clipboard\";s:15:\"Clear Clipboard\";s:5:\"clear\";s:5:\"Clear\";s:9:\"client_id\";s:9:\"Client ID\";s:9:\"client_ip\";s:9:\"Client IP\";s:6:\"client\";s:6:\"Client\";s:9:\"clipboard\";s:9:\"Clipboard\";s:5:\"close\";s:5:\"Close\";s:7:\"cnt_new\";s:8:\"(%s New)\";s:12:\"collapse_all\";s:12:\"Collapse All\";s:8:\"collapse\";s:8:\"Collapse\";s:9:\"collapsed\";s:9:\"Collapsed\";s:7:\"columns\";s:7:\"Columns\";s:15:\"comma_separated\";s:15:\"Comma Separated\";s:7:\"comment\";s:7:\"Comment\";s:7:\"compose\";s:7:\"Compose\";s:17:\"cond_ref_handling\";s:13:\"Link Settings\";s:15:\"cond_ref_shared\";s:34:\"Shared Preconditions for all Links\";s:15:\"cond_ref_unique\";s:30:\"Unique Preconditions for Links\";s:26:\"condition_already_assigned\";s:24:\"Object already assigned.\";s:24:\"condition_circle_created\";s:70:\"This association is not possible, since the objects would interdepend.\";s:17:\"condition_deleted\";s:18:\"Condition deleted.\";s:18:\"condition_finished\";s:8:\"Finished\";s:22:\"condition_not_finished\";s:12:\"Not finished\";s:16:\"condition_passed\";s:6:\"Passed\";s:23:\"condition_select_object\";s:25:\"Please select one object.\";s:30:\"condition_accredited_or_passed\";s:20:\"Accredited or Passed\";s:9:\"condition\";s:9:\"Condition\";s:18:\"conditions_updated\";s:16:\"Conditions saved\";s:24:\"confirm_delete_parameter\";s:43:\"Do you really want to delete the parameter?\";s:7:\"confirm\";s:7:\"Confirm\";s:12:\"confirmation\";s:12:\"Confirmation\";s:17:\"conflict_handling\";s:17:\"Conflict handling\";s:12:\"contact_data\";s:19:\"Contact Information\";s:7:\"contact\";s:7:\"Contact\";s:18:\"container_no_items\";s:22:\"No Materials Available\";s:9:\"container\";s:9:\"Container\";s:13:\"content_frame\";s:13:\"Content Frame\";s:14:\"content_styles\";s:14:\"Content Styles\";s:7:\"content\";s:7:\"Content\";s:7:\"context\";s:7:\"Context\";s:13:\"continue_work\";s:8:\"Continue\";s:6:\"contra\";s:6:\"Contra\";s:8:\"copy_all\";s:8:\"Copy all\";s:16:\"copy_n_of_suffix\";s:13:\"- Copy (%1$s)\";s:14:\"copy_of_suffix\";s:6:\"- Copy\";s:7:\"copy_of\";s:7:\"Copy of\";s:19:\"copy_selected_items\";s:4:\"Copy\";s:4:\"copy\";s:4:\"Copy\";s:11:\"copyChapter\";s:4:\"Copy\";s:8:\"copyPage\";s:4:\"Copy\";s:5:\"count\";s:5:\"Count\";s:7:\"country\";s:7:\"Country\";s:6:\"course\";s:6:\"Course\";s:7:\"courses\";s:7:\"Courses\";s:11:\"create_date\";s:10:\"Created on\";s:18:\"create_export_file\";s:18:\"Create export file\";s:17:\"create_stylesheet\";s:12:\"Create Style\";s:6:\"create\";s:6:\"Create\";s:7:\"created\";s:13:\"Creation Date\";s:28:\"cron_forum_notification_desc\";s:122:\"If enabled, all users, who want to be informed about new posts in specified forum threads, will get notifications by mail.\";s:33:\"cron_forum_notification_crob_desc\";s:217:\"If enabled, all users who have enabled notifications for certain forums or forum threads will daily receive a notification mail about all new or changed posts but no immediate notification for each submitted posting.\";s:23:\"cron_forum_notification\";s:24:\"Send Forum Notifications\";s:9:\"cron_jobs\";s:9:\"Cron Jobs\";s:22:\"cron_lucene_index_info\";s:122:\"If enabled, the lucene search index will be updated. Please configure the lucene server at ’Administration -> Search’.\";s:17:\"cron_lucene_index\";s:26:\"Update Lucene search index\";s:27:\"cron_mail_notification_cron\";s:22:\"regularly per cron job\";s:27:\"cron_mail_notification_desc\";s:165:\"If enabled, all users, who want to be informed about new mail, will get notifications by external mail. Please enable the option ‘%s’ first to use this function.\";s:28:\"cron_mail_notification_never\";s:5:\"never\";s:22:\"cron_mail_notification\";s:22:\"New Mail Notifications\";s:28:\"crs_activation_start_invalid\";s:43:\"The start and the finish time is not valid.\";s:7:\"crs_add\";s:10:\"Add Course\";s:9:\"crs_added\";s:12:\"Course added\";s:12:\"crs_archives\";s:8:\"Archives\";s:23:\"crs_cancel_waiting_list\";s:75:\"Do you really want to remove yourself from the waiting list of course \"%s\"?\";s:21:\"crs_copy_threads_info\";s:78:\"Please decide which course materials should be copied, linked or even omitted.\";s:8:\"crs_edit\";s:11:\"Edit Course\";s:21:\"crs_member_not_passed\";s:10:\"Not passed\";s:17:\"crs_member_passed\";s:6:\"Passed\";s:19:\"crs_members_gallery\";s:22:\"Course Members Gallery\";s:7:\"crs_new\";s:10:\"New Course\";s:29:\"crs_removed_from_waiting_list\";s:60:\"You have been detached from the waiting list of course \"%s\".\";s:18:\"crs_status_blocked\";s:16:\"[Access refused]\";s:18:\"crs_status_pending\";s:26:\"[Waiting for registration]\";s:24:\"crs_subscribers_assigned\";s:20:\"Assigned new user(s)\";s:9:\"crs_title\";s:12:\"Course Title\";s:15:\"crs_unsubscribe\";s:23:\"Unsubscribe from Course\";s:15:\"crs_wizard_page\";s:22:\"Copy Course (Step 2/2)\";s:3:\"crs\";s:6:\"Course\";s:14:\"crsr_edit_info\";s:49:\"Please choose one course for creating a new link.\";s:8:\"crsr_new\";s:18:\"Create Course Link\";s:4:\"crsr\";s:11:\"Course Link\";s:10:\"csv_export\";s:10:\"CSV-Export\";s:16:\"current_ip_alert\";s:97:\"Notice: if you enter a wrong ip you won\'t be able to access the system with this profile anymore.\";s:10:\"current_ip\";s:11:\"Current IP:\";s:16:\"current_password\";s:16:\"Current Password\";s:3:\"cut\";s:3:\"Cut\";s:7:\"cutPage\";s:3:\"Cut\";s:5:\"daily\";s:5:\"daily\";s:16:\"database_version\";s:24:\"Current Database Version\";s:8:\"database\";s:8:\"Database\";s:7:\"dataset\";s:4:\"Item\";s:4:\"date\";s:4:\"Date\";s:10:\"dateplaner\";s:8:\"Calendar\";s:3:\"day\";s:3:\"Day\";s:4:\"days\";s:4:\"Days\";s:7:\"db_host\";s:13:\"Database Host\";s:7:\"db_name\";s:13:\"Database Name\";s:14:\"db_need_update\";s:25:\"Database needs an update!\";s:7:\"db_pass\";s:17:\"Database Password\";s:7:\"db_type\";s:13:\"Database Type\";s:7:\"db_user\";s:13:\"Database User\";s:10:\"db_version\";s:16:\"Database Version\";s:10:\"deactivate\";s:12:\"Set Inactive\";s:17:\"decrease_attempts\";s:12:\"Attempts - 1\";s:19:\"def_repository_view\";s:23:\"Default repository view\";s:22:\"default_auth_mode_info\";s:78:\"Please choose the authentication method that is preselected on the login page.\";s:17:\"default_auth_mode\";s:29:\"Default Authentication Method\";s:16:\"default_language\";s:16:\"Default Language\";s:21:\"default_perm_settings\";s:19:\"Default Permissions\";s:12:\"default_role\";s:12:\"Default Role\";s:13:\"default_roles\";s:13:\"Default Roles\";s:18:\"default_skin_style\";s:20:\"Default Skin / Style\";s:12:\"default_skin\";s:12:\"Default Skin\";s:13:\"default_style\";s:13:\"Default Style\";s:7:\"default\";s:7:\"Default\";s:8:\"defaults\";s:8:\"Defaults\";s:20:\"delete_existing_file\";s:20:\"Delete Existing File\";s:16:\"delete_parameter\";s:16:\"Delete Parameter\";s:21:\"delete_selected_items\";s:6:\"Delete\";s:6:\"delete\";s:6:\"Delete\";s:12:\"deleted_user\";s:25:\"The user has been deleted\";s:13:\"deleted_users\";s:13:\"Deleted users\";s:7:\"deleted\";s:7:\"Deleted\";s:7:\"deliver\";s:7:\"Deliver\";s:10:\"department\";s:10:\"Department\";s:4:\"desc\";s:11:\"Description\";s:11:\"description\";s:11:\"Description\";s:16:\"desired_password\";s:16:\"Desired Password\";s:7:\"details\";s:7:\"Details\";s:13:\"disable_check\";s:13:\"Disable check\";s:22:\"disable_ext_lang_maint\";s:28:\"Disable Extended Maintenance\";s:24:\"disable_hide_user_toggle\";s:31:\"Member is allowed to deactivate\";s:7:\"disable\";s:7:\"disable\";s:8:\"disabled\";s:8:\"Disabled\";s:20:\"disk_quota_is_1_by_2\";s:66:\"The effective disk quota is %1$s due to membership in role \"%2$s\".\";s:33:\"disk_quota_is_1_instead_of_2_by_3\";s:136:\"The effective disk quota is %1$s as defined in this user account. The disk quota by role membership would have been %2$s by role \"%3$s\".\";s:28:\"disk_quota_is_unlimited_by_1\";s:71:\"The effective disk quota is unlimited due to membership in role \"%1$s\".\";s:34:\"disk_quota_last_reminder_sent_desc\";s:93:\"Last date on which the user has received a reminder mail because of exceeding the disk quota.\";s:29:\"disk_quota_last_reminder_sent\";s:24:\"Last quota reminder sent\";s:23:\"disk_quota_on_role_desc\";s:93:\"The disk quota specified on a role affects all user accounts which are assigned to this role.\";s:29:\"disk_quota_reminder_mail_desc\";s:295:\"The disk quota reminder mail is sent to active users who have exceeded their disk quota. This e-mail is sent once every day to the users when the daily ILIAS cron job is run. Users who already have received a reminder e-mail receive it again every 7 days as long as they exceed their disk quota.\";s:24:\"disk_quota_reminder_mail\";s:13:\"Reminder mail\";s:29:\"disk_quota_report_not_run_yet\";s:110:\"No disk quota report available. The daily cron job which determines the disk usage needs to be executed first.\";s:17:\"disk_quota_report\";s:17:\"Disk Quota Report\";s:10:\"disk_quota\";s:10:\"Disk Quota\";s:18:\"disk_usage_details\";s:18:\"Disk Usage Details\";s:10:\"disk_usage\";s:10:\"Disk Usage\";s:6:\"domain\";s:6:\"Domain\";s:4:\"down\";s:4:\"Down\";s:27:\"download_all_returned_files\";s:24:\"Download all Submissions\";s:36:\"download_with_uploaded_filename_info\";s:478:\"Select this option exclusively for backwards compatibility with ILIAS 3.9 and older versions: When this option is selected, the filename of a downloaded file is equal to the filename that was used for uploading the file into ILIAS. If this option is not selected, the filename of a downloaded file is equal to the title of the file object in ILIAS. This option does not affect WebDAV. For WebDAV the filename of a downloaded file is always equal to the title of the file object.\";s:31:\"download_with_uploaded_filename\";s:31:\"Download with uploaded filename\";s:8:\"download\";s:8:\"Download\";s:20:\"downloading_settings\";s:17:\"Download Settings\";s:6:\"drafts\";s:6:\"Drafts\";s:17:\"edit_cat_settings\";s:26:\"Advanced Category Settings\";s:12:\"edit_content\";s:12:\"Edit Content\";s:13:\"edit_grouping\";s:26:\"Edit Membership Limitation\";s:15:\"edit_operations\";s:15:\"Edit Operations\";s:17:\"edit_page_content\";s:17:\"Edit Page Content\";s:9:\"edit_page\";s:9:\"Edit Page\";s:15:\"edit_properties\";s:15:\"Edit Properties\";s:15:\"edit_stylesheet\";s:10:\"Edit Style\";s:4:\"edit\";s:4:\"Edit\";s:6:\"editor\";s:6:\"Editor\";s:15:\"email_not_valid\";s:44:\"The e-mail address you entered is not valid!\";s:5:\"email\";s:6:\"E-Mail\";s:15:\"enable_calendar\";s:15:\"Enable Calendar\";s:24:\"enable_custom_icons_info\";s:173:\"This allows you to define custom icons for single container objects and the content page object. The properties section of these objects will provide an image upload dialog.\";s:19:\"enable_custom_icons\";s:19:\"Enable custom icons\";s:31:\"enable_disk_quota_reminder_mail\";s:30:\"Send disk quota reminder mails\";s:27:\"enable_download_folder_info\";s:65:\"Enables a download option inside the action drop-down of folders.\";s:22:\"enable_download_folder\";s:37:\"\"Download Action for Folders\" enabled\";s:27:\"enable_fora_statistics_desc\";s:59:\"If disabled, nobody is able to access the forum statistics.\";s:22:\"enable_fora_statistics\";s:26:\"Enable Statistics in Forum\";s:23:\"enable_hide_user_toggle\";s:35:\"Member is not allowed to deactivate\";s:30:\"enable_hist_user_comments_desc\";s:73:\"Give authors the opportunity to add comments to the history log of pages.\";s:25:\"enable_hist_user_comments\";s:31:\"Enable user comments in history\";s:26:\"enable_password_assistance\";s:26:\"Enable password assistance\";s:20:\"enable_search_engine\";s:219:\"Open Public Area for Internet Search Engines (e.g Google).
The Apache module ‘mod_rewrite’ is required for this extension. Please take care that you have appropriate permissions to use .htaccess configurations.\";s:17:\"enable_trash_info\";s:164:\"If enabled, deleted Objects are moved into Trash and may be recovered later. When deactivating this option deleted Objects are removed irreversibly from the System!\";s:12:\"enable_trash\";s:12:\"Enable Trash\";s:18:\"enable_webdav_info\";s:243:\"Allows WebDAV clients to access the repository as a webfolder. Users can open webfolders using the ‘Open as webfolder’ action in the repository, or by entering the following address in a WebDAV client: %1$s\";s:13:\"enable_webdav\";s:20:\"Enable WebDAV access\";s:6:\"enable\";s:6:\"Enable\";s:7:\"enabled\";s:7:\"Enabled\";s:16:\"enter_in_mb_desc\";s:20:\"Enter a value in MB.\";s:11:\"err_1_param\";s:17:\"Only 1 parameter!\";s:11:\"err_2_param\";s:17:\"Only 2 parameter!\";s:26:\"err_auth_cas_no_ilias_user\";s:126:\"Login failed. CAS authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.\";s:27:\"err_auth_ldap_no_ilias_user\";s:127:\"Login failed. LDAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.\";s:22:\"err_auth_mode_inactive\";s:42:\"Your authentication method is deactivated.\";s:29:\"err_auth_radius_no_ilias_user\";s:87:\"Login failed. Radius authentication successful, but no corresponding ILIAS user exists.\";s:27:\"err_auth_soap_no_ilias_user\";s:127:\"Login failed. SOAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.\";s:15:\"err_check_input\";s:57:\"The settings could not be saved. Please check your input.\";s:15:\"err_count_param\";s:29:\"Reason: Wrong parameter count\";s:11:\"err_in_line\";s:13:\"Error in line\";s:12:\"err_inactive\";s:88:\"This account has not been activated. Please contact the system administrator for access.\";s:27:\"err_inactive_login_attempts\";s:207:\"Your user account has been deactivated due too many failed login attempts. Click \'Contact Technical Support\' at the footer of this page to notify the administrator about the need to re-activate your account.\";s:16:\"err_invalid_port\";s:19:\"Invalid port number\";s:14:\"err_no_cookies\";s:46:\"Please enable session cookies in your browser!\";s:21:\"err_no_langfile_found\";s:23:\"No language file found!\";s:12:\"err_no_param\";s:13:\"No parameter!\";s:16:\"err_over_3_param\";s:23:\"More than 3 parameters!\";s:23:\"err_role_not_assignable\";s:53:\"You cannot assign users to this role at this location\";s:19:\"err_session_expired\";s:24:\"Your session is expired!\";s:16:\"err_wrong_header\";s:21:\"Reason: Wrong header.\";s:15:\"err_wrong_login\";s:23:\"Wrong Login or Password\";s:18:\"err_wrong_password\";s:14:\"Wrong Password\";s:12:\"error_parser\";s:26:\"Error starting the parser.\";s:15:\"error_recipient\";s:15:\"Error Recipient\";s:5:\"error\";s:5:\"Error\";s:24:\"event_ass_materials_prop\";s:17:\"Session Materials\";s:18:\"event_assign_files\";s:15:\"File Assignment\";s:7:\"exc_add\";s:12:\"Add Exercise\";s:9:\"exc_added\";s:14:\"Exercise added\";s:18:\"exc_date_not_valid\";s:21:\"The date is not valid\";s:20:\"exc_deassign_members\";s:21:\"Remove Participant(s)\";s:18:\"exc_download_files\";s:14:\"Download Files\";s:17:\"exc_edit_exercise\";s:13:\"Edit exercise\";s:14:\"exc_edit_until\";s:10:\"Edit Until\";s:8:\"exc_edit\";s:20:\"New exercise created\";s:17:\"exc_exercise_sent\";s:13:\"Exercise Sent\";s:18:\"exc_files_returned\";s:15:\"Submitted Files\";s:9:\"exc_files\";s:5:\"Files\";s:15:\"exc_instruction\";s:17:\"Work Instructions\";s:19:\"exc_last_submission\";s:15:\"Last Submission\";s:28:\"exc_members_already_assigned\";s:51:\"These users are already assigned to the assignment.\";s:20:\"exc_members_assigned\";s:16:\"Members assigned\";s:26:\"exc_members_comments_saved\";s:59:\"The exercise comments for the selected user have been saved\";s:7:\"exc_new\";s:12:\"New Exercise\";s:7:\"exc_obj\";s:8:\"Exercise\";s:16:\"exc_save_changes\";s:4:\"Save\";s:12:\"exc_schedule\";s:8:\"Schedule\";s:19:\"exc_select_one_file\";s:31:\"Please select exactly one file.\";s:11:\"exc_sent_at\";s:16:\"Sent on
%s\";s:8:\"exc_sent\";s:48:\"The exercise has been sent to the selected users\";s:16:\"exc_status_saved\";s:16:\"Exercise updated\";s:10:\"exc_status\";s:6:\"Status\";s:14:\"exc_submission\";s:10:\"Submission\";s:19:\"exc_time_over_short\";s:11:\"Time is up.\";s:16:\"exc_time_to_send\";s:22:\"Remaining Working Time\";s:16:\"exc_upload_error\";s:20:\"Error uploading file\";s:3:\"exc\";s:8:\"Exercise\";s:4:\"excs\";s:9:\"Exercises\";s:7:\"execute\";s:7:\"Execute\";s:18:\"exercise_time_over\";s:91:\"The time allocated for completing this exercise is over. Files cannot be submitted anymore!\";s:8:\"exp_html\";s:11:\"Export HTML\";s:10:\"expand_all\";s:10:\"Expand All\";s:6:\"expand\";s:6:\"Expand\";s:8:\"expanded\";s:8:\"Expanded\";s:13:\"export_format\";s:13:\"Export format\";s:11:\"export_html\";s:19:\"Export as HTML File\";s:6:\"export\";s:6:\"Export\";s:16:\"ext_cat_settings\";s:31:\"Edit Advanced Category Settings\";s:8:\"ext_link\";s:4:\"Link\";s:15:\"failure_message\";s:15:\"Failure Message\";s:3:\"fax\";s:3:\"Fax\";s:4:\"feed\";s:8:\"Web Feed\";s:18:\"feedback_recipient\";s:18:\"Feedback Recipient\";s:8:\"feedback\";s:8:\"Feedback\";s:10:\"field_name\";s:10:\"Field Name\";s:10:\"field_type\";s:10:\"Field Type\";s:21:\"file_add_and_metadata\";s:29:\"Upload File and Edit Metadata\";s:8:\"file_add\";s:11:\"Upload File\";s:10:\"file_added\";s:13:\"File uploaded\";s:21:\"file_allowed_suffixes\";s:19:\"Allowed file types:\";s:12:\"file_created\";s:20:\"File has been added.\";s:9:\"file_edit\";s:21:\"Edit File Information\";s:9:\"file_info\";s:16:\"File Information\";s:16:\"file_is_infected\";s:32:\"The file is infected by a virus.\";s:14:\"file_not_found\";s:14:\"File Not Found\";s:14:\"file_not_valid\";s:15:\"File not valid!\";s:11:\"file_notice\";s:20:\"Maximum upload size:\";s:21:\"file_suffix_repl_info\";s:200:\"Enter file types with suffix (separated by comma) that shall be be renamed with a ‘.sec’ when uploaded into webspace to prevent execution of this file. This is done per default for these suffixes:\";s:16:\"file_suffix_repl\";s:30:\"File Upload Suffix Replacement\";s:12:\"file_updated\";s:22:\"File has been updated.\";s:10:\"file_valid\";s:14:\"File is valid!\";s:12:\"file_version\";s:24:\"Version Provided in File\";s:4:\"file\";s:4:\"File\";s:26:\"filename_extension_missing\";s:27:\"File name extension missing\";s:27:\"filename_hidden_backup_file\";s:18:\"Hidden backup file\";s:25:\"filename_hidden_unix_file\";s:16:\"Hidden Unix file\";s:25:\"filename_interoperability\";s:16:\"Interoperability\";s:27:\"filename_special_characters\";s:63:\"Due to the character / this object is not visible in webfolders\";s:25:\"filename_special_filename\";s:57:\"Objects with names . and .. are not visible in webfolders\";s:19:\"filename_visibility\";s:10:\"Visibility\";s:32:\"filename_windows_empty_extension\";s:94:\"Due to the character . at the end of the name this object is not visible in Windows webfolders\";s:35:\"filename_windows_special_characters\";s:95:\"Due to one of the characters \\ / : * ? \" < > | this object is not visible in Windows webfolders\";s:29:\"filename_windows_webdav_issue\";s:71:\"Due to the character # this object is not visible in Windows webfolders\";s:8:\"filename\";s:9:\"File Name\";s:5:\"files\";s:5:\"Files\";s:8:\"filesize\";s:9:\"File Size\";s:8:\"filetype\";s:9:\"File Type\";s:28:\"fill_out_all_required_fields\";s:35:\"Please fill out all required fields\";s:24:\"filter_users_with_access\";s:22:\"Only users with access\";s:28:\"filter_users_with_disk_usage\";s:31:\"Only users with disk space used\";s:37:\"filter_users_with_exceeded_disk_quota\";s:35:\"Only users with disk quota exceeded\";s:27:\"filter_users_without_access\";s:25:\"Only users without access\";s:31:\"filter_users_without_disk_usage\";s:34:\"Only users with no disk space used\";s:6:\"filter\";s:6:\"Filter\";s:9:\"firstname\";s:10:\"First Name\";s:8:\"flatview\";s:12:\"Hide Sidebar\";s:8:\"fold_add\";s:10:\"Add Folder\";s:10:\"fold_added\";s:12:\"Folder added\";s:9:\"fold_edit\";s:11:\"Edit Folder\";s:8:\"fold_new\";s:10:\"New Folder\";s:4:\"fold\";s:6:\"Folder\";s:6:\"folder\";s:6:\"Folder\";s:7:\"folders\";s:7:\"Folders\";s:26:\"force_accept_usr_agreement\";s:37:\"You must accept the terms of service!\";s:15:\"forgot_password\";s:21:\"Forgot your password?\";s:15:\"forgot_username\";s:21:\"Forgot your username?\";s:20:\"form_input_not_valid\";s:68:\"Some data is incomplete or not valid. Please correct the form input.\";s:25:\"forum_direct_notification\";s:12:\"Notification\";s:15:\"forum_notify_me\";s:165:\"Notify me when a direct answer has been given to this posting. Notification about any posting in this thread or forum can be enabled in the upper right Actions menu.\";s:18:\"forum_post_replied\";s:34:\"Your forum entry has been replied.\";s:5:\"forum\";s:5:\"Forum\";s:17:\"forums_anonymized\";s:16:\"Forum anonymized\";s:16:\"forums_anonymous\";s:6:\"anonym\";s:15:\"forums_articles\";s:8:\"Articles\";s:33:\"forums_disable_forum_notification\";s:35:\"Disable Notification for this Forum\";s:32:\"forums_enable_forum_notification\";s:34:\"Enable Notification for this Forum\";s:33:\"forums_forum_notification_enabled\";s:54:\"You will be notified about new messages in this forum.\";s:16:\"forums_last_post\";s:14:\"Latest Article\";s:19:\"forums_new_articles\";s:12:\"New Articles\";s:28:\"forums_notification_settings\";s:28:\"Forums Notification Settings\";s:14:\"forums_threads\";s:7:\"Threads\";s:16:\"forums_use_alias\";s:131:\"You may use a pseudonym for your posting. If you leave this field blank, your posting will be marked as written by ‘Anonymous’.\";s:16:\"forums_your_name\";s:9:\"Your Name\";s:6:\"forums\";s:6:\"Forums\";s:7:\"frm_add\";s:9:\"Add Forum\";s:9:\"frm_added\";s:11:\"Forum added\";s:8:\"frm_edit\";s:10:\"Edit Forum\";s:19:\"frm_latest_postings\";s:15:\"Latest Articles\";s:7:\"frm_new\";s:9:\"New Forum\";s:22:\"frm_statistics_ranking\";s:7:\"Ranking\";s:3:\"frm\";s:5:\"Forum\";s:4:\"from\";s:4:\"From\";s:8:\"fullname\";s:9:\"Full name\";s:9:\"functions\";s:9:\"Functions\";s:20:\"further_informations\";s:19:\"Further Information\";s:7:\"gdf_add\";s:14:\"Add Definition\";s:7:\"gdf_new\";s:14:\"New Definition\";s:8:\"gender_f\";s:3:\"Ms.\";s:8:\"gender_m\";s:3:\"Mr.\";s:8:\"gender_n\";s:21:\"No salutation desired\";s:6:\"gender\";s:10:\"Salutation\";s:16:\"general_settings\";s:16:\"General Settings\";s:8:\"generate\";s:8:\"Generate\";s:7:\"glo_add\";s:12:\"Add Glossary\";s:9:\"glo_added\";s:14:\"Glossary added\";s:13:\"glo_mode_desc\";s:321:\"A virtual glossary works like a normal glossary. Additionally it contains the terms from all glossaries that are located on the same level in the repository like the virtual glossary (level) respectively from all glossaries that are located downwards in the repository from the position of the virtual glossary (subtree).\";s:14:\"glo_mode_level\";s:25:\"virtual (this level only)\";s:15:\"glo_mode_normal\";s:6:\"normal\";s:16:\"glo_mode_subtree\";s:24:\"virtual (entire subtree)\";s:8:\"glo_mode\";s:4:\"Mode\";s:7:\"glo_new\";s:12:\"New Glossary\";s:3:\"glo\";s:8:\"Glossary\";s:14:\"global_default\";s:14:\"Global Default\";s:12:\"global_fixed\";s:12:\"Global Fixed\";s:15:\"global_settings\";s:15:\"Global settings\";s:11:\"global_user\";s:12:\"Global users\";s:6:\"global\";s:6:\"Global\";s:10:\"glossaries\";s:10:\"Glossaries\";s:8:\"glossary\";s:8:\"Glossary\";s:2:\"go\";s:2:\"Go\";s:13:\"group_members\";s:13:\"Group Members\";s:10:\"group_name\";s:10:\"Group Name\";s:23:\"group_new_registrations\";s:13:\"Join Requests\";s:31:\"group_password_registration_msg\";s:126:\"If you know the group password, you can join this group. Please contact a group administrator, if you don\'t know the password.\";s:23:\"group_registration_mode\";s:22:\"Registration Procedure\";s:23:\"group_registration_time\";s:19:\"Registration Period\";s:18:\"group_registration\";s:12:\"Registration\";s:16:\"group_req_direct\";s:13:\"Join directly\";s:26:\"group_req_registration_msg\";s:215:\"You have to request for membership to access this group. Please describe your interest for becoming member in the message form. You will be notified as soon as an administrator has accepted or declined your request.\";s:12:\"group_status\";s:8:\"Group is\";s:5:\"group\";s:5:\"Group\";s:26:\"groupings_assigned_obj_crs\";s:16:\"Assigned Courses\";s:26:\"groupings_assigned_obj_grp\";s:15:\"Assigned Groups\";s:9:\"groupings\";s:22:\"Membership Limitations\";s:6:\"groups\";s:6:\"Groups\";s:7:\"grp_add\";s:9:\"Add Group\";s:9:\"grp_added\";s:11:\"Group added\";s:19:\"grp_btn_unsubscribe\";s:22:\"Unsubscribe from Group\";s:23:\"grp_cancel_waiting_list\";s:74:\"Do you really want to remove yourself from the waiting list of group \"%s\"?\";s:21:\"grp_copy_threads_info\";s:71:\"Please decide which materials should be copied, linked or even omitted.\";s:24:\"grp_deleted_export_files\";s:23:\"Deleted selected files.\";s:18:\"grp_dismiss_member\";s:76:\"Are you sure you want to unsubscribe the following member(s) from the group?\";s:18:\"grp_dismiss_myself\";s:53:\"Are you sure you want to unsubscribe from this group?\";s:8:\"grp_edit\";s:10:\"Edit Group\";s:30:\"grp_err_administrator_required\";s:79:\"Member could not be removed, at least one administrator per group is required !\";s:23:\"grp_header_edit_members\";s:12:\"Edit members\";s:16:\"grp_list_members\";s:12:\"List members\";s:14:\"grp_list_users\";s:10:\"List users\";s:21:\"grp_mem_change_status\";s:25:\"Change Participant Status\";s:17:\"grp_mem_send_mail\";s:27:\"Send Participants a Message\";s:19:\"grp_members_gallery\";s:21:\"Group Members Gallery\";s:27:\"grp_msg_applicants_assigned\";s:40:\"Applicant(s) assigned as group member(s)\";s:23:\"grp_msg_member_assigned\";s:35:\"User(s) assigned as group member(s)\";s:27:\"grp_msg_membership_annulled\";s:21:\"Cancelled membership.\";s:7:\"grp_new\";s:9:\"New Group\";s:26:\"grp_registration_completed\";s:25:\"You have joined the group\";s:16:\"grp_registration\";s:10:\"Join Group\";s:29:\"grp_removed_from_waiting_list\";s:59:\"You have been detached from the waiting list of group \"%s\".\";s:19:\"grp_select_one_file\";s:23:\"Please select one file.\";s:15:\"grp_wizard_page\";s:21:\"Copy Group (Step 2/2)\";s:3:\"grp\";s:5:\"Group\";s:17:\"header_searchable\";s:10:\"Searchable\";s:12:\"header_title\";s:12:\"Header Title\";s:27:\"header_visible_registration\";s:23:\"Visible in Registration\";s:10:\"header_zip\";s:36:\"Upload Multiple Files as Zip-Archive\";s:6:\"height\";s:6:\"Height\";s:4:\"help\";s:4:\"Help\";s:2:\"HH\";s:5:\"HH:MM\";s:10:\"dd_mm_yyyy\";s:10:\"DD.MM.YYYY\";s:12:\"hide_details\";s:12:\"Hide Details\";s:11:\"hide_filter\";s:11:\"Hide Filter\";s:22:\"hide_own_online_status\";s:21:\"Hide My Online Status\";s:4:\"hide\";s:4:\"Hide\";s:4:\"hint\";s:4:\"Hint\";s:17:\"hist_lm_delete_pg\";s:32:\"Page \"%1\" [%2] has been deleted.\";s:17:\"hist_lm_delete_st\";s:35:\"Chapter \"%1\" [%2] has been deleted.\";s:17:\"hist_lm_pg_create\";s:13:\"Page created.\";s:17:\"hist_lm_st_create\";s:16:\"Chapter created.\";s:13:\"hist_webr_add\";s:34:\"Added new Weblink with title: \"%1\"\";s:16:\"hist_webr_delete\";s:32:\"Deleted Weblink with title: \"%1\"\";s:16:\"hist_webr_update\";s:33:\"Modified Weblink with title: \"%1\"\";s:7:\"history\";s:7:\"History\";s:13:\"hits_per_page\";s:9:\"Hits/Page\";s:5:\"hobby\";s:17:\"Interests/Hobbies\";s:4:\"home\";s:11:\"Public Area\";s:4:\"host\";s:4:\"Host\";s:4:\"hour\";s:4:\"Hour\";s:5:\"hours\";s:5:\"Hours\";s:8:\"htlm_add\";s:24:\"Add HTML Learning Module\";s:8:\"htlm_new\";s:24:\"New HTML Learning Module\";s:4:\"htlm\";s:20:\"Learning Module HTML\";s:17:\"http_not_possible\";s:44:\"This server is not supporting http requests.\";s:9:\"http_path\";s:9:\"HTTP Path\";s:4:\"http\";s:4:\"HTTP\";s:18:\"https_not_possible\";s:48:\"This server is not supporting HTTPS connections.\";s:8:\"i2passwd\";s:16:\"ILIAS 2 password\";s:13:\"icon_settings\";s:12:\"Custom Icons\";s:4:\"icon\";s:4:\"Icon\";s:2:\"id\";s:2:\"ID\";s:10:\"identifier\";s:10:\"identifier\";s:25:\"if_no_title_then_filename\";s:38:\"Leave blank to use file name as title.\";s:18:\"ignore_on_conflict\";s:18:\"Ignore on conflict\";s:17:\"il_chat_moderator\";s:14:\"Chat Moderator\";s:12:\"il_crs_admin\";s:20:\"Course Administrator\";s:13:\"il_crs_member\";s:13:\"Course Member\";s:17:\"il_crs_non_member\";s:17:\"Course non-member\";s:12:\"il_crs_tutor\";s:12:\"Course Tutor\";s:16:\"il_frm_moderator\";s:15:\"Forum moderator\";s:12:\"il_grp_admin\";s:19:\"Group Administrator\";s:13:\"il_grp_member\";s:12:\"Group Member\";s:20:\"il_grp_status_closed\";s:12:\"Group closed\";s:18:\"il_grp_status_open\";s:10:\"Group open\";s:13:\"ilias_version\";s:13:\"ILIAS version\";s:5:\"image\";s:5:\"Image\";s:19:\"import_cat_localrol\";s:40:\"Create local role for every new category\";s:16:\"import_cat_table\";s:61:\"The following table is only meaningful if the checkbox is set\";s:17:\"import_categories\";s:17:\"Import Categories\";s:18:\"import_failure_log\";s:18:\"Import failure log\";s:21:\"import_file_not_valid\";s:29:\"The import file is not valid.\";s:11:\"import_file\";s:11:\"Import File\";s:15:\"import_finished\";s:28:\"Number of imported messages.\";s:9:\"import_lm\";s:28:\"Import ILIAS Learning module\";s:10:\"import_qpl\";s:25:\"Import Question Pool Test\";s:25:\"import_questions_into_qpl\";s:37:\"Import question(s) into question pool\";s:11:\"import_sahs\";s:20:\"Import SCORM Package\";s:10:\"import_svy\";s:13:\"Import Survey\";s:10:\"import_tst\";s:11:\"Import Test\";s:12:\"import_users\";s:12:\"Import Users\";s:18:\"import_warning_log\";s:18:\"Import warning log\";s:6:\"import\";s:6:\"Import\";s:9:\"important\";s:9:\"Important\";s:8:\"imported\";s:8:\"imported\";s:9:\"in_use_by\";s:9:\"In use by\";s:6:\"in_use\";s:13:\"User Language\";s:2:\"in\";s:2:\"in\";s:8:\"inactive\";s:8:\"Inactive\";s:5:\"inbox\";s:5:\"Inbox\";s:13:\"include_local\";s:51:\"include custom language file when updating language\";s:27:\"info_access_and_status_info\";s:30:\"Access- and status information\";s:23:\"info_access_permissions\";s:18:\"Access Permissions\";s:18:\"info_activate_sure\";s:78:\"Are you sure that you want to approve the following user(s) as active user(s)?\";s:16:\"info_assign_sure\";s:54:\"Are you sure you want to assign the following user(s)?\";s:13:\"info_assigned\";s:8:\"assigned\";s:20:\"info_available_roles\";s:15:\"Available Roles\";s:21:\"info_change_user_view\";s:11:\"Change User\";s:20:\"info_deactivate_sure\";s:63:\"Are you sure that you want to deactivate the following user(s)?\";s:16:\"info_delete_sure\";s:59:\"Are you sure that you want to delete the following item(s)?\";s:16:\"info_remove_sure\";s:59:\"Are you sure that you want to remove the following item(s)?\";s:28:\"info_delete_warning_no_trash\";s:102:\"(WARNING: Selected Objects will be removed irreversibly from System and may not be recovered anymore!)\";s:12:\"info_deleted\";s:17:\"Object(s) Deleted\";s:23:\"info_err_user_not_exist\";s:52:\"User with that login name or user_id does not exists\";s:14:\"info_from_role\";s:27:\"Granted by Role / Ownership\";s:14:\"info_is_member\";s:14:\"User is member\";s:18:\"info_is_not_member\";s:20:\"User is not a member\";s:12:\"info_message\";s:19:\"Information Message\";s:17:\"info_not_assigned\";s:12:\"not assigned\";s:20:\"info_owner_of_object\";s:15:\"Owner of object\";s:22:\"info_permission_origin\";s:17:\"Original Position\";s:22:\"info_permission_source\";s:15:\"Effective From*\";s:23:\"info_remark_interrupted\";s:116:\"Role is interrupted at this position. The role\'s default permission settings in effect are located in that position.\";s:10:\"info_short\";s:4:\"Info\";s:16:\"info_status_info\";s:19:\"Permissions of User\";s:17:\"info_view_of_user\";s:4:\"User\";s:4:\"info\";s:11:\"Information\";s:16:\"inform_user_mail\";s:38:\"Send mail to inform user about changes\";s:27:\"inline_file_extensions_info\";s:158:\"Files with these extensions are displayed in the browser window.
For example: gif jpg mp3 pdf png
All other files are offered for downloading.\";s:22:\"inline_file_extensions\";s:17:\"Web-enabled files\";s:18:\"insert_object_here\";s:26:\"Insert at Current Position\";s:6:\"insert\";s:6:\"Insert\";s:7:\"inst_id\";s:15:\"Installation ID\";s:9:\"inst_info\";s:17:\"Installation Info\";s:9:\"inst_name\";s:17:\"Installation Name\";s:13:\"install_local\";s:24:\"Install With Custom File\";s:7:\"install\";s:7:\"Install\";s:15:\"installed_local\";s:26:\"Installed With Custom file\";s:9:\"installed\";s:9:\"Installed\";s:18:\"instant_messengers\";s:18:\"Instant Messengers\";s:11:\"institution\";s:11:\"Institution\";s:25:\"internal_local_roles_only\";s:42:\"Local roles (only automatically generated)\";s:41:\"invalid_visible_required_options_selected\";s:73:\"All fields set to required has to be set to visible in registration, too.\";s:20:\"invisible_block_mess\";s:50:\"You do not have the permission to view this block.\";s:15:\"invisible_block\";s:15:\"Invisible Block\";s:10:\"ip_address\";s:10:\"IP Address\";s:15:\"is_already_your\";s:15:\"is already your\";s:4:\"item\";s:4:\"Item\";s:16:\"java_server_host\";s:4:\"Host\";s:16:\"java_server_info\";s:83:\"If activated, it is possible to search in PDF, HTML files and HTML-Learning modules\";s:16:\"java_server_port\";s:4:\"Port\";s:18:\"java_server_readme\";s:17:\"Setup information\";s:11:\"java_server\";s:11:\"Java-Server\";s:12:\"join_session\";s:6:\"Attend\";s:4:\"join\";s:4:\"Join\";s:2:\"kb\";s:5:\"KByte\";s:8:\"keywords\";s:8:\"Keywords\";s:15:\"lang_dateformat\";s:5:\"Y-m-d\";s:9:\"lang_path\";s:13:\"Language Path\";s:25:\"lang_refresh_confirm_info\";s:274:\"ILIAS found changed language variables. Refreshing a language will read the standard language file and probably a custom language file to the database. A standard file will not affect your changes. A custom file will overwrite your changes that are older than the file date.\";s:29:\"lang_refresh_confirm_selected\";s:53:\"Do you really want to refresh the selected languages?\";s:20:\"lang_refresh_confirm\";s:44:\"Do you really want to refresh all languages?\";s:22:\"lang_uninstall_confirm\";s:55:\"Do you really want to uninstall the selected languages?\";s:22:\"lang_uninstall_changes\";s:23:\"Uninstall Local Changes\";s:30:\"lang_uninstall_changes_confirm\";s:131:\"Do you really want to clear all local changes of the selected languages and reset them to the default of the current ILIAS version?\";s:16:\"lang_sep_decimal\";s:1:\".\";s:17:\"lang_sep_thousand\";s:1:\",\";s:15:\"lang_size_bytes\";s:5:\"bytes\";s:12:\"lang_size_gb\";s:2:\"GB\";s:12:\"lang_size_kb\";s:2:\"KB\";s:12:\"lang_size_mb\";s:2:\"MB\";s:22:\"lang_timeformat_no_sec\";s:3:\"H:i\";s:15:\"lang_timeformat\";s:5:\"H:i:s\";s:14:\"langfile_found\";s:19:\"Language file found\";s:22:\"language_not_installed\";s:52:\"is not installed. Please install that language first\";s:8:\"language\";s:8:\"Language\";s:27:\"languages_already_installed\";s:42:\"Selected language(s) are already installed\";s:29:\"languages_already_uninstalled\";s:44:\"Selected language(s) are already uninstalled\";s:17:\"languages_updated\";s:41:\"All installed languages have been updated\";s:9:\"languages\";s:9:\"Languages\";s:11:\"last_access\";s:11:\"Last Access\";s:11:\"last_change\";s:11:\"Last Change\";s:14:\"last_edited_on\";s:14:\"Last edited on\";s:10:\"last_login\";s:10:\"Last Login\";s:12:\"last_refresh\";s:12:\"Last Refresh\";s:13:\"last_reminder\";s:13:\"Last reminder\";s:11:\"last_update\";s:7:\"Updated\";s:12:\"last_visited\";s:12:\"Last Visited\";s:8:\"lastname\";s:9:\"Last Name\";s:6:\"launch\";s:6:\"Launch\";s:11:\"ldap_basedn\";s:11:\"LDAP BaseDN\";s:14:\"ldap_configure\";s:29:\"Configure LDAP Authentication\";s:9:\"ldap_port\";s:9:\"LDAP Port\";s:9:\"ldap_read\";s:28:\"Read access to LDAP settings\";s:11:\"ldap_server\";s:15:\"LDAP Server URL\";s:8:\"ldap_tls\";s:12:\"Use LDAP TLS\";s:12:\"ldap_version\";s:22:\"LDAP protokoll version\";s:4:\"ldap\";s:4:\"LDAP\";s:15:\"learning module\";s:15:\"Learning Module\";s:17:\"learning_progress\";s:17:\"Learning Progress\";s:18:\"leave_waiting_list\";s:18:\"Leave Waiting List\";s:6:\"legend\";s:6:\"Legend\";s:5:\"level\";s:5:\"Level\";s:8:\"link_all\";s:8:\"Link all\";s:20:\"link_check_message_b\";s:61:\"If enabled, you will be informed about invalid links by mail.\";s:27:\"link_check_message_disabled\";s:17:\"Messages disabled\";s:26:\"link_check_message_enabled\";s:16:\"Messages enabled\";s:18:\"link_check_subject\";s:21:\"[ILIAS] Weblink check\";s:10:\"link_check\";s:13:\"Weblink Check\";s:22:\"link_checker_refreshed\";s:14:\"Refreshed view\";s:19:\"link_selected_items\";s:4:\"Link\";s:4:\"link\";s:4:\"Link\";s:15:\"links_add_param\";s:14:\"Add Parameter:\";s:19:\"links_dyn_parameter\";s:18:\"Dynamic Parameters\";s:18:\"links_dynamic_info\";s:114:\"If enabled, it is possible to append dynamic parameters to Weblinks.
E.g. the ILIAS user ID or the username.\";s:13:\"links_dynamic\";s:26:\"Dynamic Weblink Parameters\";s:21:\"links_existing_params\";s:20:\"Existing Parameters:\";s:10:\"links_name\";s:14:\"Parameter Name\";s:19:\"links_no_name_given\";s:31:\"Please choose a parameter name.\";s:20:\"links_no_value_given\";s:32:\"Please choose a parameter value.\";s:23:\"links_parameter_deleted\";s:18:\"Parameter deleted.\";s:16:\"links_select_one\";s:14:\"- Select one -\";s:16:\"links_session_id\";s:16:\"ILIAS session id\";s:13:\"links_user_id\";s:13:\"ILIAS user id\";s:15:\"links_user_name\";s:14:\"ILIAS username\";s:11:\"links_value\";s:15:\"Parameter Value\";s:17:\"list_of_questions\";s:17:\"List of Questions\";s:4:\"list\";s:4:\"List\";s:6:\"lm_add\";s:25:\"Add ILIAS Learning Module\";s:8:\"lm_added\";s:27:\"ILIAS Learning Module added\";s:6:\"lm_new\";s:25:\"New ILIAS Learning Module\";s:13:\"lm_type_scorm\";s:9:\"SCORM 1.2\";s:17:\"lm_type_scorm2004\";s:26:\"SCORM 2004 3rd/4th Edition\";s:2:\"lm\";s:21:\"Learning Module ILIAS\";s:3:\"lng\";s:8:\"Language\";s:4:\"lngf\";s:9:\"Languages\";s:2:\"lo\";s:15:\"Learning Object\";s:19:\"local_language_file\";s:20:\"custom language file\";s:20:\"local_language_files\";s:21:\"custom language files\";s:33:\"local_languages_already_installed\";s:54:\"Selected custom language file(s) are already installed\";s:5:\"local\";s:5:\"Local\";s:8:\"location\";s:8:\"Location\";s:7:\"locator\";s:9:\"Location:\";s:6:\"log_in\";s:5:\"Login\";s:7:\"log_out\";s:6:\"Logout\";s:8:\"logic_or\";s:2:\"or\";s:8:\"login_as\";s:12:\"Logged in as\";s:10:\"login_data\";s:10:\"Login data\";s:12:\"login_exists\";s:72:\"There is already a user with this login name! Please choose another one.\";s:22:\"login_information_desc\";s:61:\"Please enter a login information for the respective language.\";s:32:\"login_information_settings_saved\";s:45:\"The login information were saved successfully\";s:17:\"login_information\";s:17:\"Login Information\";s:13:\"login_invalid\";s:117:\"The chosen login is invalid! Only the following characters are allowed (minimum 3 characters): A-Z a-z 0-9 _.-+*@!$%~\";s:22:\"login_to_ilias_via_cas\";s:49:\"Login to ILIAS via Central Authentication Service\";s:29:\"login_to_ilias_via_shibboleth\";s:18:\"Login to ILIAS via\";s:14:\"login_to_ilias\";s:14:\"Login to ILIAS\";s:5:\"login\";s:5:\"Login\";s:24:\"loginname_already_exists\";s:31:\"This login name already exists.\";s:18:\"loginname_settings\";s:19:\"Login Name Settings\";s:11:\"logout_text\";s:56:\"You logged off from ILIAS. Your session has been closed.\";s:6:\"logout\";s:6:\"Logout\";s:4:\"logs\";s:8:\"Log Data\";s:4:\"lres\";s:18:\"Learning Resources\";s:16:\"mail_addressbook\";s:8:\"Contacts\";s:15:\"mail_attachment\";s:15:\"Mail attachment\";s:12:\"mail_b_inbox\";s:5:\"Inbox\";s:12:\"mail_c_trash\";s:5:\"Trash\";s:13:\"mail_d_drafts\";s:6:\"Drafts\";s:17:\"mail_delete_error\";s:20:\"Error while deleting\";s:11:\"mail_e_sent\";s:4:\"Sent\";s:20:\"mail_edit_permission\";s:58:\"User can change permission settings in Mail administration\";s:12:\"mail_folders\";s:12:\"Mail Folders\";s:16:\"mail_import_file\";s:11:\"Export file\";s:13:\"mail_mails_of\";s:4:\"Mail\";s:19:\"mail_maxsize_attach\";s:20:\"Max. attachment size\";s:12:\"mail_members\";s:15:\"Mail to Members\";s:30:\"mail_multiple_recipients_found\";s:97:\"Enter a more specific mail address. ILIAS found multiple possible recipients for this address: %s\";s:23:\"mail_no_recipient_found\";s:87:\"Enter a different mail address. ILIAS couldn\'t find a recipient with this mail address.\";s:13:\"mail_not_sent\";s:14:\"Mail not sent!\";s:14:\"mail_search_no\";s:17:\"No entries found.\";s:15:\"mail_select_one\";s:24:\"You must select one mail\";s:15:\"mail_send_error\";s:18:\"Error sending mail\";s:9:\"mail_sent\";s:10:\"Mail sent!\";s:13:\"mail_settings\";s:13:\"Mail Settings\";s:12:\"mail_z_local\";s:12:\"User Folders\";s:4:\"mail\";s:4:\"Mail\";s:8:\"mails_pl\";s:7:\"Mail(s)\";s:5:\"mails\";s:5:\"Mails\";s:9:\"main_menu\";s:9:\"Main Menu\";s:36:\"add_remove_edit_entries_of_main_menu\";s:44:\"Add, remove or edit entries of the main menu\";s:3:\"all\";s:3:\"All\";s:11:\"only_active\";s:11:\"Only Active\";s:13:\"only_inactive\";s:13:\"Only Inactive\";s:12:\"entry_status\";s:12:\"Entry status\";s:14:\"manage_members\";s:14:\"Manage Members\";s:14:\"marked_entries\";s:14:\"Marked Entries\";s:13:\"matriculation\";s:20:\"Matriculation number\";s:8:\"mcst_add\";s:13:\"Add Mediacast\";s:8:\"mcst_new\";s:13:\"New Mediacast\";s:4:\"mcst\";s:9:\"Mediacast\";s:13:\"mem_add_to_wl\";s:19:\"Add to Waiting List\";s:19:\"mem_alert_no_places\";s:35:\"There are no free places available.\";s:7:\"mem_end\";s:17:\"Registration End:\";s:15:\"mem_free_places\";s:11:\"Free Places\";s:13:\"mem_max_users\";s:17:\"Maximum of Users:\";s:16:\"mem_participants\";s:12:\"Participants\";s:15:\"mem_reg_expired\";s:33:\"The registration time is expired.\";s:19:\"mem_reg_not_started\";s:32:\"The registration has not started\";s:14:\"mem_reg_period\";s:19:\"Registration Period\";s:12:\"mem_reg_type\";s:17:\"Registration Type\";s:9:\"mem_start\";s:19:\"Registration Start:\";s:13:\"mem_unlimited\";s:9:\"Unlimited\";s:17:\"mem_view_activate\";s:16:\"Show Member View\";s:14:\"mem_view_close\";s:17:\"Close Member View\";s:13:\"mem_view_long\";s:11:\"Member View\";s:25:\"mem_waiting_list_position\";s:34:\"Your Position on the Waiting List:\";s:16:\"mem_waiting_list\";s:22:\"Users on Waiting List:\";s:13:\"member_status\";s:13:\"Member Status\";s:6:\"member\";s:6:\"Member\";s:7:\"members\";s:7:\"Members\";s:16:\"membership_leave\";s:5:\"Leave\";s:7:\"mep_add\";s:14:\"Add Media Pool\";s:8:\"mep_edit\";s:26:\"Edit Media Pool Properties\";s:7:\"mep_new\";s:14:\"New Media Pool\";s:28:\"mep_not_insert_already_exist\";s:86:\"The following items have not been inserted because they are already in the media pool:\";s:3:\"mep\";s:10:\"Media Pool\";s:15:\"message_content\";s:15:\"Message Content\";s:26:\"message_no_delivered_files\";s:33:\"You have not submitted any files.\";s:7:\"message\";s:7:\"Message\";s:9:\"meta_data\";s:8:\"Metadata\";s:45:\"mgs_objects_linked_to_the_following_folders_p\";s:51:\"The objects were linked to the following folder(s).\";s:45:\"mgs_objects_linked_to_the_following_folders_s\";s:49:\"The object was linked to the following folder(s).\";s:7:\"migrate\";s:7:\"Migrate\";s:6:\"minute\";s:6:\"Minute\";s:7:\"minutes\";s:7:\"Minutes\";s:12:\"missing_perm\";s:18:\"Missing Permission\";s:20:\"missing_precondition\";s:20:\"Missing Precondition\";s:7:\"missing\";s:7:\"Missing\";s:3:\"mob\";s:12:\"Media Object\";s:10:\"moderators\";s:10:\"Moderators\";s:6:\"module\";s:6:\"module\";s:7:\"modules\";s:7:\"Modules\";s:13:\"month_01_long\";s:7:\"January\";s:14:\"month_01_short\";s:3:\"Jan\";s:13:\"month_02_long\";s:8:\"February\";s:14:\"month_02_short\";s:3:\"Feb\";s:13:\"month_03_long\";s:5:\"March\";s:14:\"month_03_short\";s:3:\"Mar\";s:13:\"month_04_long\";s:5:\"April\";s:14:\"month_04_short\";s:3:\"Apr\";s:13:\"month_05_long\";s:3:\"May\";s:14:\"month_05_short\";s:3:\"May\";s:13:\"month_06_long\";s:4:\"June\";s:14:\"month_06_short\";s:3:\"Jun\";s:13:\"month_07_long\";s:4:\"July\";s:14:\"month_07_short\";s:3:\"Jul\";s:13:\"month_08_long\";s:6:\"August\";s:14:\"month_08_short\";s:3:\"Aug\";s:13:\"month_09_long\";s:9:\"September\";s:14:\"month_09_short\";s:3:\"Sep\";s:13:\"month_10_long\";s:7:\"October\";s:14:\"month_10_short\";s:3:\"Oct\";s:13:\"month_11_long\";s:8:\"November\";s:14:\"month_11_short\";s:3:\"Nov\";s:13:\"month_12_long\";s:8:\"December\";s:14:\"month_12_short\";s:3:\"Dec\";s:5:\"month\";s:5:\"Month\";s:7:\"monthly\";s:7:\"monthly\";s:6:\"months\";s:6:\"Months\";s:15:\"mount_webfolder\";s:17:\"Open as webfolder\";s:19:\"move_selected_items\";s:4:\"Move\";s:4:\"move\";s:4:\"Move\";s:11:\"moveChapter\";s:4:\"Move\";s:8:\"movePage\";s:4:\"Move\";s:10:\"msg_cancel\";s:16:\"Action cancelled\";s:19:\"msg_clear_clipboard\";s:17:\"Clipboard cleared\";s:10:\"msg_cloned\";s:25:\"Selected object(s) copied\";s:25:\"msg_copy_clipboard_source\";s:115:\"Now, please select the desired course or group, whose content should be copied and click the button ‘Continue’.\";s:18:\"msg_copy_clipboard\";s:123:\"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.\";s:28:\"msg_copy_clipboard_container\";s:126:\"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Continue’.\";s:17:\"msg_cut_clipboard\";s:123:\"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.\";s:14:\"msg_cut_copied\";s:25:\"Selected object(s) moved.\";s:24:\"msg_deleted_export_files\";s:22:\"Export file(s) deleted\";s:16:\"msg_deleted_role\";s:12:\"Role deleted\";s:23:\"msg_deleted_roles_rolts\";s:32:\"Roles and Role Templates deleted\";s:10:\"msg_failed\";s:20:\"Sorry, action failed\";s:19:\"msg_form_save_error\";s:87:\"The form data could not be saved. Please check the input fields for any error messages.\";s:31:\"msg_input_does_not_match_regexp\";s:29:\"Please provide a valid value.\";s:21:\"msg_input_is_required\";s:45:\"This input is required. Please enter a value.\";s:16:\"msg_is_last_role\";s:57:\"You removed the last global role from the following users\";s:30:\"msg_last_role_for_registration\";s:122:\"At least one role must be available in the registration form for new users. This role is currently the only one available.\";s:20:\"msg_link_clipboard_p\";s:115:\"Now, please select the desired location, where the selected objects should be linked to and click the button Paste.\";s:20:\"msg_link_clipboard_s\";s:114:\"Now, please select the desired location, where the selected object should be linked to and click the button Paste.\";s:10:\"msg_linked\";s:26:\"Selected object(s) linked.\";s:19:\"msg_may_not_contain\";s:44:\"This object may not contain objects of type:\";s:16:\"msg_min_one_role\";s:45:\"Each user must have at least one global role!\";s:27:\"msg_multi_language_selected\";s:58:\"You selected the same language for different translations!\";s:23:\"msg_no_default_language\";s:86:\"No default language specified! You must define one translation as default translation.\";s:22:\"msg_no_delete_yourself\";s:40:\"You cannot delete your own user account.\";s:11:\"msg_no_file\";s:58:\"You didn\'t choose a file or the selected file was too big.\";s:24:\"msg_no_language_selected\";s:82:\"No translation language specified! You must define a language for each translation\";s:31:\"msg_no_perm_assign_role_to_user\";s:55:\"You have no permission to change user\'s role assignment\";s:31:\"msg_no_perm_assign_user_to_role\";s:52:\"You have no permission to change the user assignment\";s:16:\"msg_no_perm_copy\";s:67:\"You have no permission to create a copy of the following object(s):\";s:23:\"msg_no_perm_create_rolt\";s:44:\"You have no permission to add role templates\";s:15:\"msg_no_perm_cut\";s:54:\"You have no permission to cut the following object(s):\";s:18:\"msg_no_perm_delete\";s:57:\"You have no permission to delete the following object(s):\";s:16:\"msg_no_perm_link\";s:69:\"You have no permission to create a link from the following object(s):\";s:23:\"msg_no_perm_modify_rolt\";s:47:\"You have no permission to modify role templates\";s:23:\"msg_no_perm_modify_user\";s:42:\"You have no permission to modify user data\";s:34:\"msg_no_perm_paste_object_in_folder\";s:63:\"You have no permission to paste the object %s in the folder %s.\";s:17:\"msg_no_perm_paste\";s:56:\"You have no permission to paste the following object(s):\";s:16:\"msg_no_perm_perm\";s:50:\"You have no permission to edit permission settings\";s:21:\"msg_no_perm_read_item\";s:45:\"You have no permission to access item \'%s’.\";s:19:\"msg_no_perm_read_lm\";s:52:\"You have no permission to read this learning module.\";s:16:\"msg_no_perm_read\";s:43:\"You have no permission to access this item.\";s:17:\"msg_no_perm_write\";s:31:\"You have no permission to write\";s:20:\"msg_no_search_result\";s:16:\"No entries found\";s:20:\"msg_no_search_string\";s:23:\"Please enter your query\";s:12:\"msg_no_title\";s:21:\"Please enter a title.\";s:26:\"msg_not_available_for_anon\";s:64:\"The page you have chosen is only accessible for registered users\";s:17:\"msg_not_in_itself\";s:49:\"It’s not possible to paste the object in itself\";s:15:\"msg_obj_created\";s:15:\"Object created.\";s:24:\"msg_obj_exists_in_folder\";s:46:\"The object %s already exists in the folder %s.\";s:14:\"msg_obj_exists\";s:41:\"This object already exists in this folder\";s:39:\"msg_obj_may_not_contain_objects_of_type\";s:50:\"The object %s may not contain objects of type: %s.\";s:16:\"msg_obj_modified\";s:20:\"Modifications saved.\";s:15:\"msg_obj_no_link\";s:250:\"It is not possible to link container objects like categories, courses, groups or folder due to technical reasons. Instead you may link several single objects within such a container to other areas or create a category link, course link or group link.\";s:30:\"msg_paste_object_not_in_itself\";s:55:\"It’s not possible to paste the Object \"%s\" in itself.\";s:28:\"msg_perm_adopted_from_itself\";s:80:\"You cannot adopt permission settings from the current role/role template itself.\";s:22:\"msg_perm_adopted_from1\";s:32:\"Permission settings adopted from\";s:22:\"msg_perm_adopted_from2\";s:27:\"(Settings have been saved!)\";s:11:\"msg_removed\";s:30:\"Object(s) removed from system.\";s:24:\"msg_role_reserved_prefix\";s:94:\"The prefix ‘il_’ is reserved for automatically generated roles. Please choose another name\";s:26:\"msg_roleassignment_changed\";s:23:\"Role assignment changed\";s:25:\"msg_sysrole_not_deletable\";s:33:\"The system role cannot be deleted\";s:24:\"msg_sysrole_not_editable\";s:151:\"The permission settings of the system role may not be changed. The system role grants all assigned users unlimited access to all objects and functions.\";s:15:\"msg_trash_empty\";s:28:\"There are no deleted objects\";s:13:\"msg_undeleted\";s:19:\"Object(s) restored.\";s:20:\"msg_unit_is_required\";s:57:\"This input requires a unit. Please enter a correct value.\";s:19:\"msg_user_last_role1\";s:51:\"The following users are assigned to this role only:\";s:19:\"msg_user_last_role2\";s:84:\"Please delete the users or assign them to another role in order to delete this role.\";s:26:\"msg_userassignment_changed\";s:23:\"User assignment changed\";s:16:\"msg_wrong_format\";s:44:\"The value you entered is not a valid format.\";s:23:\"msg_bt_download_started\";s:134:\"ILIAS is generating a ZIP archive of all available files. You can download them from the Notification Center (bell icon) on top right.\";s:6:\"my_bms\";s:9:\"Bookmarks\";s:10:\"my_courses\";s:10:\"My Courses\";s:4:\"name\";s:4:\"Name\";s:5:\"never\";s:5:\"never\";s:12:\"new_language\";s:12:\"New Language\";s:24:\"new_pass_equals_old_pass\";s:36:\"The new password equals the old one.\";s:3:\"new\";s:3:\"New\";s:7:\"newline\";s:7:\"Newline\";s:4:\"news\";s:4:\"News\";s:4:\"next\";s:4:\"Next\";s:21:\"no_access_item_public\";s:81:\"To access this item you need to be logged in and to have appropriate permissions.\";s:14:\"no_access_item\";s:43:\"You have no permission to access this item.\";s:24:\"no_agreement_description\";s:136:\"There is currently no terms of service text provided with this installation. Please contact the system administrator.\";s:11:\"no_checkbox\";s:28:\"You did not select any item.\";s:21:\"no_condition_selected\";s:31:\"Please select one precondition.\";s:7:\"no_date\";s:7:\"No date\";s:19:\"no_global_role_left\";s:42:\"Every user has to be assigned to one role.\";s:24:\"user_not_found_to_delete\";s:36:\"A user could not be found to delete.\";s:20:\"no_import_file_found\";s:20:\"No import file found\";s:8:\"no_items\";s:43:\"This object is empty and contains no items.\";s:8:\"no_limit\";s:8:\"No limit\";s:21:\"no_mkisofs_configured\";s:70:\"You have to configure mkisofs utility in ILIAS setup to run ISO export\";s:8:\"no_owner\";s:8:\"No Owner\";s:16:\"no_parent_access\";s:37:\"No access to a superordinated object!\";s:13:\"no_permission\";s:41:\"You do not have the necessary permission.\";s:32:\"no_roles_user_can_be_assigned_to\";s:98:\"There are no global roles the user can be assigned to. Therefore you are not allowed to add users.\";s:13:\"no_start_file\";s:14:\"No Start File.\";s:8:\"no_title\";s:8:\"No Title\";s:17:\"no_users_selected\";s:23:\"Please select one user.\";s:24:\"no_xml_file_found_in_zip\";s:35:\"XML file within zip file not found:\";s:2:\"no\";s:2:\"No\";s:3:\"noc\";s:19:\"Notification Center\";s:29:\"non_internal_local_roles_only\";s:31:\"Local roles (only user defined)\";s:4:\"none\";s:4:\"None\";s:6:\"normal\";s:6:\"Normal\";s:13:\"not_available\";s:13:\"Not Available\";s:19:\"not_implemented_yet\";s:19:\"Not implemented yet\";s:13:\"not_installed\";s:13:\"Not Installed\";s:13:\"not_logged_in\";s:21:\"You are not logged in\";s:4:\"note\";s:4:\"Note\";s:18:\"notes_and_comments\";s:18:\"Notes and Comments\";s:5:\"notes\";s:5:\"Notes\";s:13:\"notifications\";s:13:\"Notifications\";s:9:\"num_users\";s:15:\"Number of Users\";s:13:\"edit_metadata\";s:13:\"Edit Metadata\";s:13:\"obj_accs_desc\";s:36:\"Settings for accessibility features.\";s:16:\"obj_accs_captcha\";s:8:\"Captchas\";s:8:\"obj_accs\";s:13:\"Accessibility\";s:12:\"obj_adm_desc\";s:90:\"Main system settings folder containing all panels to administrate your ILIAS installation.\";s:7:\"obj_adm\";s:14:\"Administration\";s:13:\"obj_adve_desc\";s:58:\"Administration settings for ILIAS page editor and TinyMCE.\";s:8:\"obj_adve\";s:7:\"Editing\";s:13:\"obj_assf_desc\";s:50:\"Platform settings for the Test and Assessment tool\";s:8:\"obj_assf\";s:19:\"Test and Assessment\";s:13:\"obj_auth_desc\";s:97:\"Configure your authentication mode (local, LDAP, ...) and new account registration settings here.\";s:8:\"obj_auth\";s:31:\"Authentication and Registration\";s:13:\"obj_cals_desc\";s:26:\"General Calendar settings.\";s:8:\"obj_cals\";s:8:\"Calendar\";s:17:\"obj_cat_duplicate\";s:13:\"Copy Category\";s:7:\"obj_cat\";s:8:\"Category\";s:8:\"obj_catr\";s:13:\"Category Link\";s:13:\"obj_cert_desc\";s:25:\"Settings for certificates\";s:8:\"obj_cert\";s:12:\"Certificates\";s:7:\"obj_wfe\";s:15:\"Workflow Engine\";s:8:\"obj_chap\";s:7:\"Chapter\";s:13:\"obj_cmps_desc\";s:28:\"General settings for Plugins\";s:8:\"obj_cmps\";s:7:\"Plugins\";s:17:\"obj_crs_duplicate\";s:11:\"Copy Course\";s:7:\"obj_crs\";s:6:\"Course\";s:8:\"obj_crsr\";s:11:\"Course Link\";s:7:\"obj_dbk\";s:12:\"Digilib Book\";s:7:\"obj_exc\";s:8:\"Exercise\";s:13:\"obj_extt_desc\";s:67:\"Configure external software or services that are supported by ILIAS\";s:8:\"obj_extt\";s:20:\"Third Party Software\";s:13:\"obj_facs_desc\";s:36:\"Settings for files and file handling\";s:8:\"obj_facs\";s:5:\"Files\";s:8:\"obj_feed\";s:8:\"Web Feed\";s:15:\"obj_file_inline\";s:20:\"Learning Module File\";s:8:\"obj_file\";s:4:\"File\";s:18:\"obj_file_duplicate\";s:14:\"Duplicate File\";s:8:\"obj_fold\";s:6:\"Folder\";s:17:\"obj_frm_duplicate\";s:10:\"Copy Forum\";s:7:\"obj_frm\";s:5:\"Forum\";s:7:\"obj_glo\";s:8:\"Glossary\";s:17:\"obj_grp_duplicate\";s:10:\"Copy Group\";s:7:\"obj_grp\";s:5:\"Group\";s:8:\"obj_htlm\";s:20:\"Learning Module HTML\";s:13:\"obj_ldap_desc\";s:36:\"Configure global LDAP Settings here.\";s:6:\"obj_lm\";s:21:\"Learning Module ILIAS\";s:7:\"obj_lng\";s:8:\"Language\";s:13:\"obj_lngf_desc\";s:34:\"Manage your system languages here.\";s:8:\"obj_lngf\";s:9:\"Languages\";s:13:\"obj_lrss_desc\";s:40:\"Configure all types of learning modules.\";s:8:\"obj_lrss\";s:16:\"Learning Modules\";s:13:\"obj_mail_desc\";s:36:\"Configure global mail settings here.\";s:8:\"obj_mail\";s:4:\"Mail\";s:8:\"obj_mcst\";s:9:\"Mediacast\";s:13:\"obj_mcts_desc\";s:31:\"General settings for mediacast.\";s:8:\"obj_mcts\";s:9:\"Mediacast\";s:7:\"obj_mep\";s:10:\"Media Pool\";s:7:\"obj_mob\";s:12:\"Media Object\";s:13:\"obj_mobs_desc\";s:43:\"Settings for media objects and media pools.\";s:8:\"obj_mobs\";s:23:\"Media Objects and Pools\";s:13:\"obj_not_found\";s:16:\"Object Not Found\";s:13:\"obj_nwss_desc\";s:50:\"Settings for internal news and external web feeds.\";s:8:\"obj_nwss\";s:18:\"News and Web Feeds\";s:13:\"obj_objf_desc\";s:69:\"Manage ILIAS object types and object permissions. (only for experts!)\";s:8:\"obj_objf\";s:18:\"Object Definitions\";s:8:\"obj_page\";s:4:\"Page\";s:6:\"obj_pg\";s:4:\"Page\";s:11:\"obj_ps_desc\";s:52:\"Configure global privacy and security settings here.\";s:6:\"obj_ps\";s:20:\"Privacy and Security\";s:17:\"obj_qpl_duplicate\";s:23:\"Copy Question Pool Test\";s:14:\"obj_qpl_select\";s:42:\"-- Please select one question pool test --\";s:7:\"obj_qpl\";s:18:\"Question Pool Test\";s:8:\"obj_rcrs\";s:10:\"ECS Course\";s:13:\"obj_recf_desc\";s:44:\"Contains restored objects from System Check.\";s:8:\"obj_recf\";s:16:\"Restored Objects\";s:8:\"obj_role\";s:4:\"Role\";s:13:\"obj_rolf_desc\";s:23:\"Manage your roles here.\";s:19:\"obj_rolf_local_desc\";s:34:\"Contains local roles of object no.\";s:14:\"obj_rolf_local\";s:11:\"Local Roles\";s:8:\"obj_rolf\";s:5:\"Roles\";s:8:\"obj_rolt\";s:13:\"Role Template\";s:8:\"obj_root\";s:17:\"Repository - Home\";s:8:\"obj_sahs\";s:21:\"Learning Module SCORM\";s:7:\"obj_sco\";s:3:\"SCO\";s:13:\"obj_seas_desc\";s:32:\"Manage the search settings here.\";s:8:\"obj_seas\";s:6:\"Search\";s:18:\"obj_sess_duplicate\";s:12:\"Copy Session\";s:8:\"obj_sess\";s:7:\"Session\";s:14:\"obj_spl_select\";s:44:\"-- Please select one question pool survey --\";s:7:\"obj_spl\";s:20:\"Question Pool Survey\";s:6:\"obj_st\";s:7:\"Chapter\";s:7:\"obj_sty\";s:5:\"Style\";s:13:\"obj_stys_desc\";s:42:\"Manage system skin and style settings here\";s:8:\"obj_stys\";s:17:\"Layout and Styles\";s:17:\"obj_svy_duplicate\";s:11:\"Copy Survey\";s:7:\"obj_svy\";s:6:\"Survey\";s:13:\"obj_svyf_desc\";s:37:\"Platform settings for the Survey Tool\";s:8:\"obj_svyf\";s:6:\"Survey\";s:13:\"obj_tags_desc\";s:29:\"Settings for tagging feature.\";s:8:\"obj_tags\";s:7:\"Tagging\";s:7:\"obj_tax\";s:8:\"Taxonomy\";s:8:\"obj_taxf\";s:10:\"Taxonomies\";s:13:\"obj_trac_desc\";s:54:\"Statistics and Learning Progress Settings and Overview\";s:8:\"obj_trac\";s:32:\"Statistics and Learning Progress\";s:17:\"obj_tst_duplicate\";s:9:\"Copy Test\";s:7:\"obj_tst\";s:4:\"Test\";s:8:\"obj_type\";s:11:\"Object Type\";s:8:\"obj_user\";s:4:\"User\";s:7:\"obj_usr\";s:4:\"User\";s:13:\"obj_usrf_desc\";s:26:\"Manage user accounts here.\";s:8:\"obj_usrf\";s:15:\"User Management\";s:18:\"obj_webr_duplicate\";s:17:\"Copy Weblink list\";s:8:\"obj_webr\";s:7:\"Weblink\";s:8:\"obj_wiki\";s:4:\"Wiki\";s:3:\"obj\";s:6:\"Object\";s:12:\"object_added\";s:12:\"Object added\";s:23:\"object_copy_in_progress\";s:16:\"Started Copying.\";s:17:\"object_duplicated\";s:13:\"Object copied\";s:9:\"object_id\";s:9:\"Object-Id\";s:15:\"object_imported\";s:15:\"Object imported\";s:6:\"object\";s:6:\"Object\";s:7:\"objects\";s:7:\"Objects\";s:4:\"objf\";s:18:\"Object definitions\";s:8:\"objs_cat\";s:10:\"Categories\";s:9:\"objs_catr\";s:13:\"Category Link\";s:8:\"objs_crs\";s:7:\"Courses\";s:9:\"objs_crsr\";s:11:\"Course Link\";s:8:\"objs_exc\";s:9:\"Exercises\";s:9:\"objs_feed\";s:9:\"Web Feeds\";s:9:\"objs_file\";s:5:\"Files\";s:9:\"objs_fold\";s:7:\"Folders\";s:8:\"objs_frm\";s:6:\"Forums\";s:8:\"objs_glo\";s:10:\"Glossaries\";s:8:\"objs_grp\";s:6:\"Groups\";s:9:\"objs_htlm\";s:21:\"HTML Learning Modules\";s:7:\"objs_lm\";s:22:\"ILIAS Learning Modules\";s:9:\"objs_lres\";s:18:\"Learning Resources\";s:9:\"objs_mail\";s:4:\"Mail\";s:9:\"objs_mcst\";s:10:\"Mediacasts\";s:8:\"objs_mep\";s:11:\"Media Pools\";s:8:\"objs_prg\";s:16:\"Study Programmes\";s:8:\"objs_qpl\";s:19:\"Question Pools Test\";s:8:\"objs_qst\";s:9:\"Questions\";s:9:\"objs_rcrs\";s:11:\"ECS Courses\";s:9:\"objs_role\";s:5:\"Roles\";s:9:\"objs_sahs\";s:22:\"SCORM Learning Modules\";s:9:\"objs_sess\";s:8:\"Sessions\";s:8:\"objs_spl\";s:21:\"Question Pools Survey\";s:7:\"objs_st\";s:8:\"Chapters\";s:8:\"objs_svy\";s:7:\"Surveys\";s:8:\"objs_tst\";s:5:\"Tests\";s:9:\"objs_webr\";s:8:\"Weblinks\";s:9:\"objs_wiki\";s:5:\"Wikis\";s:2:\"of\";s:2:\"Of\";s:7:\"offline\";s:7:\"Offline\";s:2:\"ok\";s:2:\"OK\";s:3:\"old\";s:3:\"Old\";s:8:\"omit_all\";s:8:\"Omit all\";s:4:\"omit\";s:4:\"Omit\";s:15:\"on_waiting_list\";s:27:\"You are on the waiting list\";s:11:\"online_time\";s:25:\"Time online (DD:HH:MM:SS)\";s:6:\"online\";s:6:\"Online\";s:9:\"operation\";s:9:\"Operation\";s:8:\"optimize\";s:8:\"Optimize\";s:6:\"option\";s:6:\"Option\";s:16:\"optional_filters\";s:16:\"Optional Filters\";s:7:\"options\";s:7:\"Options\";s:13:\"order_by_date\";s:7:\"By Date\";s:8:\"order_by\";s:8:\"Order by\";s:12:\"organization\";s:8:\"Provider\";s:5:\"other\";s:5:\"Other\";s:8:\"overview\";s:8:\"Overview\";s:9:\"overwrite\";s:9:\"Overwrite\";s:13:\"owner_updated\";s:14:\"Owner updated.\";s:5:\"owner\";s:5:\"Owner\";s:11:\"page_layout\";s:11:\"Page Layout\";s:12:\"page_layouts\";s:12:\"Page Layouts\";s:4:\"page\";s:4:\"Page\";s:5:\"pages\";s:5:\"Pages\";s:9:\"parameter\";s:9:\"Parameter\";s:5:\"parse\";s:5:\"Parse\";s:6:\"passed\";s:6:\"Passed\";s:17:\"passwd_generation\";s:19:\"Password Generation\";s:14:\"passwd_invalid\";s:119:\"The new password is invalid! Only the following characters are allowed (minimum 6 characters): A-Z a-z 0-9 _.-+?#*@!$%~\";s:16:\"passwd_not_match\";s:83:\"Your entries for the new password don’t match! Please re-enter your new password.\";s:12:\"passwd_wrong\";s:34:\"The password you entered is wrong!\";s:6:\"passwd\";s:8:\"Password\";s:24:\"password_assistance_info\";s:229:\"If password assistance is enabled, a link ‘Forgot Password?’ is shown on the login page of ILIAS. Users can use this link to define a new password for their user account without needing assistance from a system administrator.\";s:37:\"password_change_on_first_login_demand\";s:75:\"You have to change your password before you can start using ILIAS services.\";s:14:\"password_empty\";s:37:\"The password field must not be empty.\";s:16:\"password_expired\";s:84:\"Your password is expired and has to be changed as the last change was %s day(s) ago.\";s:31:\"password_must_chars_and_numbers\";s:49:\"The password must contain characters and numbers.\";s:27:\"password_must_special_chars\";s:45:\"The password must contain special characters.\";s:16:\"password_to_long\";s:55:\"The password must have at most a size of %s characters.\";s:17:\"password_to_short\";s:56:\"The password must have at least a size of %s characters.\";s:8:\"password\";s:8:\"Password\";s:21:\"paste_clipboard_items\";s:5:\"Paste\";s:5:\"paste\";s:5:\"Paste\";s:12:\"pasteChapter\";s:5:\"Paste\";s:9:\"pastePage\";s:5:\"Paste\";s:12:\"path_not_set\";s:12:\"Path not set\";s:15:\"path_to_convert\";s:15:\"Path to Convert\";s:15:\"path_to_htmldoc\";s:15:\"Path to HTMLdoc\";s:12:\"path_to_java\";s:12:\"Path to Java\";s:13:\"path_to_unzip\";s:13:\"Path to Unzip\";s:11:\"path_to_zip\";s:11:\"Path to Zip\";s:4:\"path\";s:4:\"Path\";s:6:\"pathes\";s:5:\"Paths\";s:13:\"pd_items_news\";s:30:\"Include News of Personal Items\";s:10:\"pdf_export\";s:10:\"PDF Export\";s:13:\"perm_settings\";s:11:\"Permissions\";s:10:\"perma_link\";s:14:\"Permanent Link\";s:17:\"permission_denied\";s:17:\"Permission Denied\";s:19:\"permission_settings\";s:26:\"Object Permission Settings\";s:10:\"permission\";s:10:\"Permission\";s:12:\"person_title\";s:5:\"Title\";s:13:\"personal_data\";s:13:\"Personal Data\";s:16:\"personal_picture\";s:6:\"Avatar\";s:16:\"personal_profile\";s:19:\"Profile and Privacy\";s:7:\"persons\";s:7:\"Persons\";s:6:\"pg_add\";s:8:\"Add page\";s:6:\"pg_new\";s:8:\"New page\";s:10:\"phone_home\";s:11:\"Phone, Home\";s:12:\"phone_mobile\";s:13:\"Phone, Mobile\";s:12:\"phone_office\";s:13:\"Phone, Office\";s:5:\"phone\";s:5:\"Phone\";s:6:\"phrase\";s:6:\"Phrase\";s:13:\"please_choose\";s:12:\"-- Select --\";s:19:\"please_enter_target\";s:21:\"Please enter a target\";s:18:\"please_enter_title\";s:20:\"Please enter a title\";s:40:\"please_select_a_delivered_file_to_delete\";s:57:\"You must select at least one delivered file to delete it!\";s:42:\"please_select_a_delivered_file_to_download\";s:59:\"You must select at least one delivered file to download it!\";s:13:\"please_select\";s:19:\"-- Please Select --\";s:11:\"please_wait\";s:14:\"Please wait...\";s:4:\"port\";s:4:\"Port\";s:10:\"pos_bottom\";s:6:\"Bottom\";s:8:\"pos_left\";s:4:\"Left\";s:9:\"pos_right\";s:5:\"Right\";s:7:\"pos_top\";s:3:\"Top\";s:8:\"position\";s:8:\"Position\";s:27:\"precondition_not_accessible\";s:79:\"You do not have sufficient permission to view the precondition(s) of this item.\";s:12:\"precondition\";s:12:\"Precondition\";s:13:\"preconditions\";s:13:\"Preconditions\";s:19:\"predefined_template\";s:24:\"Predefined role template\";s:11:\"preferences\";s:11:\"Preferences\";s:20:\"preview_learner_info\";s:119:\"If enabled, Course and Group administrators have the possibility to view the content form the perspective of a learner.\";s:8:\"previous\";s:8:\"Previous\";s:10:\"print_view\";s:10:\"Print View\";s:5:\"print\";s:5:\"Print\";s:13:\"private_notes\";s:13:\"Private Notes\";s:3:\"pro\";s:3:\"Pro\";s:7:\"proceed\";s:7:\"Proceed\";s:15:\"profile_changed\";s:42:\"ILIAS eLearning - Your profile has changed\";s:18:\"profile_incomplete\";s:61:\"Your profile is incomplete. Please fill in all required data.\";s:10:\"profile_of\";s:10:\"Profile of\";s:7:\"profile\";s:7:\"Profile\";s:10:\"properties\";s:10:\"Properties\";s:17:\"proxy_connectable\";s:23:\"Connection established.\";s:15:\"proxy_host_info\";s:20:\"Please enter a host.\";s:10:\"proxy_host\";s:4:\"Host\";s:21:\"proxy_not_connectable\";s:56:\"ILIAS could not build a connection to the defined proxy.\";s:18:\"proxy_socket_error\";s:16:\"Socket Error: %s\";s:15:\"proxy_port_info\";s:50:\"Please enter a port between 0 and 65535, e.g.8080.\";s:18:\"proxy_port_numeric\";s:62:\"The entered port has to be a numeric value between 0 and 65535\";s:10:\"proxy_port\";s:4:\"Port\";s:17:\"proxy_status_info\";s:102:\"To use a proxy in ILIAS (e.g. for web feeds or to check web links) please activate the checkbox above.\";s:12:\"proxy_status\";s:5:\"Proxy\";s:5:\"proxy\";s:12:\"Proxy-Server\";s:16:\"pub_section_info\";s:230:\"If enabled, parts of the system (e.g. repository, workspace, user profiles) can be made available to the internet without authentication. The permissions of the ‘Anonymous’ role will control the access to repository resources.\";s:11:\"pub_section\";s:16:\"Anonymous Access\";s:12:\"public_notes\";s:12:\"Public Notes\";s:14:\"public_profile\";s:7:\"Profile\";s:6:\"public\";s:6:\"public\";s:7:\"purpose\";s:7:\"Purpose\";s:7:\"qpl_add\";s:22:\"Add Question Pool Test\";s:7:\"qpl_new\";s:22:\"New Question Pool Test\";s:3:\"qpl\";s:18:\"Question Pool Test\";s:10:\"query_data\";s:10:\"Query data\";s:16:\"question_message\";s:8:\"Question\";s:8:\"question\";s:8:\"Question\";s:4:\"quit\";s:4:\"Quit\";s:5:\"quote\";s:5:\"Quote\";s:4:\"read\";s:4:\"Read\";s:25:\"readcount_anonymous_users\";s:33:\"Number of anonymous read accesses\";s:15:\"readcount_users\";s:37:\"Number of non-anonymous read accesses\";s:9:\"recipient\";s:9:\"Recipient\";s:17:\"reference_deleted\";s:25:\"Destination not available\";s:12:\"reference_of\";s:13:\"Reference of:\";s:16:\"referral_comment\";s:29:\"How did you hear about ILIAS?\";s:17:\"refresh_languages\";s:21:\"Refresh All Languages\";s:7:\"refresh\";s:7:\"Refresh\";s:6:\"refuse\";s:6:\"Refuse\";s:35:\"reg_account_confirmation_successful\";s:37:\"Your user account has been activated.\";s:28:\"reg_mail_body_2_confirmation\";s:92:\"The link will only be good for %s, after that you will have to try again from the beginning.\";s:28:\"reg_mail_body_3_confirmation\";s:174:\"If this e-mail means nothing to you, then it is possible that somebody else has entered your e-mail address either deliberately or accidentally, so please ignore this e-mail.\";s:34:\"reg_mail_body_forgot_password_info\";s:132:\"To get your password, please use the function « Forgot password? » at the login screen to request a new password for this account.\";s:24:\"reg_mail_body_salutation\";s:5:\"Hello\";s:19:\"reg_mail_body_text1\";s:27:\"Welcome to ILIAS eLearning!\";s:19:\"reg_mail_body_text2\";s:39:\"To access ILIAS use the following data:\";s:19:\"reg_mail_body_text3\";s:29:\"Further personal information:\";s:29:\"reg_mail_subject_confirmation\";s:40:\"ILIAS eLearning - Your Confirmation Link\";s:16:\"reg_mail_subject\";s:34:\"ILIAS eLearning - Your access data\";s:19:\"reg_passwd_via_mail\";s:62:\"Your password will be sent to your e-mail address given below.\";s:8:\"register\";s:8:\"Register\";s:16:\"registered_since\";s:16:\"Registered since\";s:15:\"registered_user\";s:15:\"registered User\";s:16:\"registered_users\";s:16:\"registered Users\";s:12:\"registration\";s:24:\"New Account Registration\";s:10:\"related_to\";s:10:\"Related to\";s:18:\"remove_translation\";s:18:\"Remove translation\";s:6:\"remove\";s:6:\"Remove\";s:11:\"rename_file\";s:11:\"Rename File\";s:6:\"rename\";s:6:\"Rename\";s:18:\"repeat_scan_failed\";s:21:\"Repeated scan failed.\";s:20:\"repeat_scan_succeded\";s:24:\"Repeated scan succeeded.\";s:11:\"repeat_scan\";s:23:\"Repeating virus scan...\";s:12:\"replace_file\";s:12:\"Replace File\";s:5:\"reply\";s:5:\"Reply\";s:21:\"repository_admin_desc\";s:81:\"Set permissions for repository items, restore or remove objects from system trash\";s:16:\"repository_admin\";s:32:\"Repository Trash and Permissions\";s:10:\"repository\";s:10:\"Repository\";s:13:\"require_email\";s:14:\"Require e-mail\";s:14:\"require_gender\";s:18:\"Require salutation\";s:13:\"require_hobby\";s:13:\"Require hobby\";s:21:\"require_matriculation\";s:28:\"Require matriculation number\";s:24:\"require_referral_comment\";s:24:\"Require referral comment\";s:14:\"required_field\";s:8:\"Required\";s:15:\"res_links_short\";s:5:\"Links\";s:9:\"res_links\";s:16:\"Repository Links\";s:12:\"reset_filter\";s:12:\"Reset Filter\";s:5:\"reset\";s:5:\"Reset\";s:9:\"resources\";s:9:\"Resources\";s:5:\"right\";s:5:\"Right\";s:6:\"rights\";s:6:\"Rights\";s:13:\"role_add_user\";s:19:\"Add User(s) to role\";s:10:\"role_added\";s:10:\"Role added\";s:23:\"role_assignment_updated\";s:33:\"Role assignment has been updated.\";s:15:\"role_assignment\";s:15:\"Role Assignment\";s:22:\"global_role_assignment\";s:23:\"Globale Rollenzuweisung\";s:21:\"local_role_assignment\";s:22:\"Lokale Rollenzuweisung\";s:9:\"role_edit\";s:9:\"Edit Role\";s:11:\"role_mailto\";s:26:\"Mail to all assigned Users\";s:15:\"role_new_search\";s:10:\"New search\";s:8:\"role_new\";s:8:\"New Role\";s:22:\"role_no_roles_selected\";s:20:\"Please select a role\";s:29:\"role_protect_permissions_desc\";s:147:\"The object permissions cannot be changed by systems operations anymore. Furthermore only administrator of higher levels may change the permissions.\";s:24:\"role_protect_permissions\";s:19:\"Protect Permissions\";s:20:\"role_select_one_item\";s:25:\"Please select one object.\";s:27:\"role_sure_delete_desk_items\";s:58:\"Are you sure you want to delete the following assignments?\";s:19:\"role_templates_only\";s:19:\"Role templates only\";s:4:\"role\";s:4:\"Role\";s:22:\"roles_of_import_global\";s:27:\"Global roles of import file\";s:21:\"roles_of_import_local\";s:26:\"Local roles of import file\";s:5:\"roles\";s:5:\"Roles\";s:10:\"rolf_added\";s:17:\"Role folder added\";s:16:\"rolf_create_role\";s:15:\"Create New Role\";s:16:\"rolf_create_rolt\";s:24:\"Create New Role Template\";s:11:\"rolf_delete\";s:27:\"Delete Roles/Role templates\";s:20:\"rolf_edit_permission\";s:26:\"Change permission settings\";s:24:\"rolf_edit_userassignment\";s:31:\"Change user assignment of Roles\";s:9:\"rolf_read\";s:35:\"Read access to Roles/role templates\";s:12:\"rolf_visible\";s:32:\"Roles/role templates are visible\";s:10:\"rolf_write\";s:56:\"Edit default permission settings of Roles/role templates\";s:4:\"rolf\";s:5:\"Roles\";s:10:\"rolt_added\";s:19:\"Role template added\";s:9:\"rolt_edit\";s:18:\"Edit Role Template\";s:8:\"rolt_new\";s:17:\"New Role Template\";s:4:\"rolt\";s:13:\"Role Template\";s:3:\"row\";s:3:\"Row\";s:4:\"rows\";s:4:\"Rows\";s:10:\"sahs_added\";s:27:\"SCORM Learning Module added\";s:26:\"sahs_insert_chap_from_clip\";s:29:\"Paste Chapters from Clipboard\";s:26:\"sahs_insert_page_from_clip\";s:26:\"Paste Pages from Clipboard\";s:25:\"sahs_insert_sco_from_clip\";s:25:\"Paste SCOs from Clipboard\";s:4:\"sahs\";s:21:\"Learning Module SCORM\";s:12:\"salutation_f\";s:8:\"Ms./Mrs.\";s:12:\"salutation_m\";s:3:\"Mr.\";s:12:\"salutation_n\";s:21:\"No salutation desired\";s:10:\"salutation\";s:10:\"Salutation\";s:13:\"save_and_back\";s:13:\"Save And Back\";s:12:\"save_message\";s:13:\"Save as Draft\";s:20:\"save_params_for_cron\";s:27:\"Save Parameter for Cron Job\";s:12:\"save_refresh\";s:16:\"Save and Refresh\";s:11:\"save_return\";s:15:\"Save and Return\";s:13:\"save_settings\";s:13:\"Save Settings\";s:22:\"save_user_related_data\";s:29:\"Save user related access data\";s:4:\"save\";s:4:\"Save\";s:18:\"saved_successfully\";s:18:\"Saved Successfully\";s:29:\"scorm_create_export_file_html\";s:25:\"Create Export File (HTML)\";s:28:\"scorm_create_export_file_pdf\";s:24:\"Create Export File (PDF)\";s:32:\"scorm_create_export_file_scrom12\";s:30:\"Create Export File (SCORM 1.2)\";s:38:\"scorm_create_export_file_scrom2004_4th\";s:43:\"Create Export File (SCORM 2004 4th Edition)\";s:34:\"scorm_create_export_file_scrom2004\";s:43:\"Create Export File (SCORM 2004 3rd Edition)\";s:9:\"scorm_new\";s:45:\"Create SCORM Learning Module (Authoring Mode)\";s:13:\"search_active\";s:20:\"Include active users\";s:13:\"search_engine\";s:19:\"Readable .html URLs\";s:10:\"search_for\";s:10:\"Search For\";s:9:\"search_in\";s:9:\"Search in\";s:15:\"search_inactive\";s:22:\"Include inactive users\";s:10:\"search_new\";s:10:\"New Search\";s:13:\"search_result\";s:13:\"Search Result\";s:14:\"search_results\";s:14:\"Search Results\";s:11:\"search_user\";s:11:\"Search User\";s:6:\"search\";s:6:\"Search\";s:18:\"seas_max_hits_info\";s:63:\"Please enter a number for the maximum number of search results.\";s:13:\"seas_max_hits\";s:8:\"Max hits\";s:13:\"seas_settings\";s:15:\"Search settings\";s:6:\"second\";s:6:\"Second\";s:7:\"seconds\";s:7:\"Seconds\";s:10:\"select_all\";s:10:\"Select All\";s:26:\"select_at_least_one_object\";s:34:\"Please choose at least one object.\";s:11:\"select_file\";s:11:\"Select File\";s:19:\"select_max_one_item\";s:27:\"Please select one item only\";s:21:\"select_object_to_link\";s:47:\"Please select the object which you want to link\";s:10:\"select_one\";s:23:\"Please select one item.\";s:19:\"select_questionpool\";s:21:\"Insert questions into\";s:25:\"select_question_pool_info\";s:117:\"As long as the import file contains questions, these questions will be imported to the selected questionpool as well.\";s:6:\"select\";s:6:\"Select\";s:19:\"selected_items_back\";s:22:\"Back to Personal Items\";s:14:\"selected_items\";s:14:\"Personal Items\";s:26:\"selected_languages_updated\";s:56:\"The selected languages have been updated (if installed):\";s:8:\"selected\";s:8:\"Selected\";s:9:\"send_mail\";s:12:\"Send Message\";s:4:\"send\";s:4:\"Send\";s:6:\"sender\";s:6:\"Sender\";s:4:\"sent\";s:4:\"Sent\";s:8:\"sequence\";s:8:\"Sequence\";s:9:\"sequences\";s:9:\"Sequences\";s:11:\"server_data\";s:11:\"Server Info\";s:15:\"server_software\";s:15:\"Server Software\";s:6:\"server\";s:6:\"Server\";s:4:\"sess\";s:7:\"Session\";s:22:\"session_reminder_alert\";s:184:\"Your session expires in %1$s at %2$s! Choose OK to continue your session. If you click Cancel you will not be reminded during the current browser session anymore. Installation: %3$s.\";s:21:\"session_reminder_info\";s:85:\"If enabled, you receive a reminder before the online-session of your browser expires.\";s:31:\"session_reminder_lead_time_info\";s:241:\"Please specify the lead time for the session reminder in minutes. The reminder displays a warning when only this time span is left before the session expires. Recommended value is 5 (minutes)
The current length of a user session is %s.\";s:26:\"session_reminder_lead_time\";s:8:\"Leadtime\";s:33:\"session_reminder_session_duration\";s:23:\"(Session Duration: %s).\";s:16:\"session_reminder\";s:16:\"Session-Reminder\";s:11:\"set_offline\";s:11:\"Set Offline\";s:10:\"set_online\";s:10:\"Set Online\";s:3:\"set\";s:3:\"Set\";s:17:\"setSystemLanguage\";s:19:\"Set System Language\";s:14:\"settings_saved\";s:14:\"Saved settings\";s:8:\"settings\";s:8:\"Settings\";s:15:\"setUserLanguage\";s:17:\"Set User Language\";s:11:\"shib_active\";s:25:\"Enable Shibboleth support\";s:9:\"shib_city\";s:18:\"Attribute for city\";s:12:\"shib_country\";s:21:\"Attribute for country\";s:22:\"shib_data_conv_warning\";s:59:\"The data manipulation API file you specified cannot be read\";s:14:\"shib_data_conv\";s:38:\"Absolute path to data manipulation API\";s:15:\"shib_department\";s:24:\"Attribute for department\";s:10:\"shib_email\";s:28:\"Attribute for e-mail address\";s:20:\"shib_federation_name\";s:34:\"Name of your Shibboleth federation\";s:14:\"shib_firstname\";s:24:\"Attribute for first name\";s:11:\"shib_gender\";s:53:\"Attribute for salutation (must be ‘m’ or ‘f’)\";s:31:\"shib_general_login_instructions\";s:159:\"To log in via %s, please click on the login button and choose your organization of the following page.
If you have questions concerning this, please ask the\";s:36:\"shib_general_wayf_login_instructions\";s:126:\"In case you are not associated with the given organizations and you need access to a course on this server, please contact the\";s:13:\"shib_idp_list\";s:496:\"Provide a list of Identity Providers to let the user choose from on the ILIAS login page.
On each line there must be a comma-separated tuple for providerID of IdP (see the Shibboleth metadata file) and Name of IdP as it shall be displayed in the drop-down list.
As an optional third parameter you can add the location of a Shibboleth session initiator that shall be used in case your ILIAS installation is part of a multi federation setup.\";s:16:\"shib_institution\";s:25:\"Attribute for institution\";s:30:\"shib_invalid_home_organization\";s:35:\"Please choose a valid organization!\";s:13:\"shib_language\";s:22:\"Attribute for language\";s:13:\"shib_lastname\";s:22:\"Attribute for lastname\";s:17:\"shib_login_button\";s:131:\"Path to the image of a Shibboleth login button that is used to redirect users to the WAYF specified in the Shibboleth configuration\";s:36:\"shib_login_embedded_wayf_description\";s:231:\"If this option is chosen, you can provide any HTML code in the login instructions text area below. This can for example be used to embed an own JavaScript WAYF/Discovery Service or create a custom-tailored design of the login area.\";s:24:\"shib_login_embedded_wayf\";s:24:\"Design custom login area\";s:24:\"shib_login_external_wayf\";s:25:\"Use external WAYF service\";s:24:\"shib_login_internal_wayf\";s:22:\"Use ILIAS WAYF service\";s:15:\"shib_login_type\";s:22:\"Organization selection\";s:10:\"shib_login\";s:27:\"Unique Shibboleth attribute\";s:14:\"shib_member_of\";s:20:\"I am a member of ...\";s:15:\"shib_phone_home\";s:31:\"Attribute for home phone number\";s:17:\"shib_phone_mobile\";s:33:\"Attribute for mobile phone number\";s:17:\"shib_phone_office\";s:33:\"Attribute for office phone number\";s:29:\"shib_select_home_organization\";s:83:\"For authentication via %s, please select your organization from the drop down list.\";s:19:\"shib_settings_saved\";s:34:\"The Shibboleth settings were saved\";s:11:\"shib_street\";s:20:\"Attribute for street\";s:10:\"shib_title\";s:19:\"Attribute for title\";s:11:\"shib_update\";s:26:\"Update this field on login\";s:22:\"shib_user_default_role\";s:41:\"Default role assigned to Shibboleth users\";s:12:\"shib_zipcode\";s:21:\"Attribute for zipcode\";s:4:\"shib\";s:10:\"Shibboleth\";s:20:\"short_inst_name_info\";s:100:\"This title will appear in the browser header title bar. If no value is entered, ‘ILIAS’ is used.\";s:15:\"short_inst_name\";s:11:\"Short Title\";s:12:\"show_details\";s:12:\"Show Details\";s:11:\"show_filter\";s:11:\"Show Filter\";s:9:\"show_list\";s:9:\"Show List\";s:12:\"show_members\";s:15:\"Display Members\";s:10:\"show_owner\";s:10:\"Show Owner\";s:17:\"show_users_online\";s:17:\"Show active users\";s:4:\"show\";s:4:\"Show\";s:10:\"side_frame\";s:10:\"Side Frame\";s:9:\"signature\";s:9:\"Signature\";s:27:\"simultaneous_login_detected\";s:76:\"Your access is denied because of a simultaneous login with the same account.\";s:4:\"size\";s:4:\"Size\";s:10:\"skin_style\";s:20:\"Default Skin / Style\";s:4:\"smtp\";s:4:\"SMTP\";s:29:\"soap_user_administration_desc\";s:48:\"If enabled, ILIAS can be administrated via SOAP.\";s:24:\"soap_user_administration\";s:23:\"Administration via SOAP\";s:19:\"soap_wsdl_path_info\";s:163:\"Please enter the path to the ilias wsdl file which should be used for the webservice. If you leave this field blank, the following path will be used per default:%s\";s:14:\"soap_wsdl_path\";s:9:\"WSDL Path\";s:19:\"sort_by_this_column\";s:19:\"Sort by this column\";s:14:\"sorting_header\";s:20:\"Content Item Sorting\";s:19:\"sorting_info_manual\";s:136:\"Content items can be arranged manually in a preferred order. Additionallyi, please define the standard sorting settings for new objects.\";s:18:\"sorting_info_title\";s:72:\"Content items are arranged automatically by title in alphabetical order.\";s:21:\"sorting_manual_header\";s:8:\"Manually\";s:12:\"sorting_save\";s:12:\"Save Sorting\";s:20:\"sorting_title_header\";s:28:\"Titles in Alphabetical Order\";s:6:\"spacer\";s:6:\"Spacer\";s:7:\"spl_add\";s:24:\"Add Question Pool Survey\";s:7:\"spl_new\";s:24:\"New Question Pool Survey\";s:3:\"spl\";s:20:\"Question Pool Survey\";s:3:\"ssl\";s:11:\"SSL (HTTPS)\";s:15:\"standard_fields\";s:15:\"Standard Fields\";s:9:\"startpage\";s:16:\"ILIAS Login Page\";s:13:\"stat_selected\";s:8:\"Selected\";s:9:\"statistic\";s:9:\"Statistic\";s:10:\"statistics\";s:10:\"Statistics\";s:20:\"status_no_permission\";s:21:\"No permission granted\";s:6:\"status\";s:6:\"Status\";s:4:\"step\";s:4:\"Step\";s:6:\"street\";s:6:\"Street\";s:9:\"structure\";s:9:\"Structure\";s:3:\"sty\";s:5:\"Style\";s:19:\"sub_request_deleted\";s:26:\"Deleted membership request\";s:17:\"sub_request_saved\";s:24:\"Saved membership request\";s:7:\"subject\";s:7:\"Subject\";s:6:\"submit\";s:6:\"Submit\";s:10:\"subobjects\";s:11:\"Sub-objects\";s:12:\"subscription\";s:12:\"Subscription\";s:7:\"subtabs\";s:7:\"SubTabs\";s:15:\"success_message\";s:15:\"Success Message\";s:7:\"summary\";s:7:\"Summary\";s:26:\"sure_delete_selected_users\";s:52:\"Are you sure you want to delete the selected user(s)\";s:15:\"survey_defaults\";s:28:\"Default Settings for Surveys\";s:27:\"survey_unlimited_invitation\";s:20:\"Unlimited Invitation\";s:7:\"svy_add\";s:10:\"Add survey\";s:12:\"svy_finished\";s:29:\"You have completed the survey\";s:7:\"svy_new\";s:10:\"New survey\";s:16:\"svy_not_finished\";s:37:\"The survey has not been completed yet\";s:15:\"svy_not_started\";s:36:\"You did not take part in this survey\";s:7:\"svy_run\";s:3:\"Run\";s:31:\"svy_warning_survey_not_complete\";s:24:\"The survey is incomplete\";s:3:\"svy\";s:6:\"Survey\";s:12:\"system_check\";s:12:\"System Check\";s:18:\"system_information\";s:18:\"System Information\";s:15:\"system_language\";s:15:\"System Language\";s:13:\"system_styles\";s:13:\"System Styles\";s:6:\"system\";s:6:\"System\";s:16:\"systemcheck_cron\";s:32:\"Process System Check in Cron Job\";s:20:\"systemcheck_cronform\";s:38:\"Activation of System Check in Cron Job\";s:17:\"table_mail_import\";s:11:\"Mail import\";s:4:\"tabs\";s:4:\"Tabs\";s:15:\"tagging_my_tags\";s:7:\"My Tags\";s:24:\"take_over_structure_info\";s:116:\"If activated, directories in the zip file will be mapped to categories or, if used in groups or courses, to folders.\";s:19:\"take_over_structure\";s:15:\"Adopt Structure\";s:6:\"target\";s:6:\"Target\";s:7:\"tax_add\";s:12:\"Add Taxonomy\";s:7:\"tax_new\";s:12:\"New Taxonomy\";s:3:\"tax\";s:8:\"Taxonomy\";s:4:\"term\";s:4:\"Term\";s:4:\"test\";s:4:\"Test\";s:5:\"tests\";s:5:\"Tests\";s:7:\"textbox\";s:7:\"Textbox\";s:6:\"thread\";s:6:\"Thread\";s:9:\"thumbnail\";s:9:\"Thumbnail\";s:38:\"time_limit_add_time_limit_for_selected\";s:51:\"Please enter a time period for the selected user(s)\";s:15:\"time_limit_from\";s:17:\"From (time limit)\";s:18:\"time_limit_message\";s:20:\"Message (time limit)\";s:28:\"time_limit_no_users_selected\";s:21:\"Please select a user.\";s:20:\"time_limit_not_valid\";s:24:\"The period is not valid.\";s:16:\"time_limit_owner\";s:18:\"Owner (time limit)\";s:18:\"time_limit_reached\";s:32:\"Your user account is not active.\";s:20:\"time_limit_unlimited\";s:22:\"Unlimited (time limit)\";s:16:\"time_limit_until\";s:18:\"Until (time limit)\";s:10:\"time_limit\";s:6:\"Access\";s:4:\"time\";s:4:\"Time\";s:14:\"title_required\";s:22:\"Please insert a title.\";s:5:\"title\";s:5:\"Title\";s:14:\"to_client_list\";s:16:\"Client Selection\";s:2:\"to\";s:2:\"To\";s:5:\"today\";s:5:\"Today\";s:19:\"toggleGlobalDefault\";s:21:\"Toggle Global Default\";s:17:\"toggleGlobalFixed\";s:19:\"Toggle Global Fixed\";s:8:\"tomorrow\";s:8:\"Tomorrow\";s:5:\"total\";s:5:\"Total\";s:17:\"tracking_settings\";s:26:\"Learning Progress Settings\";s:11:\"translation\";s:11:\"Translation\";s:5:\"trash\";s:5:\"Trash\";s:10:\"tree_frame\";s:10:\"Tree Frame\";s:4:\"tree\";s:4:\"Tree\";s:8:\"treeview\";s:12:\"Show Sidebar\";s:7:\"tst_add\";s:8:\"Add test\";s:7:\"tst_new\";s:8:\"New test\";s:7:\"tst_run\";s:3:\"Run\";s:26:\"tst_statistical_evaluation\";s:10:\"Statistics\";s:14:\"tst_statistics\";s:10:\"Statistics\";s:11:\"tst_results\";s:12:\"Test Results\";s:20:\"tst_user_not_invited\";s:39:\"You are not supposed to take this test.\";s:29:\"tst_warning_test_not_complete\";s:25:\"The test is not complete!\";s:3:\"tst\";s:4:\"Test\";s:6:\"tutors\";s:6:\"Tutors\";s:24:\"txt_registered_passw_gen\";s:109:\"You successfully registered to ILIAS. You should receive an e-Mail including your generated password shortly.\";s:14:\"txt_registered\";s:112:\"You successfully registered to ILIAS. Please click on the button below to login to ILIAS with your user account.\";s:13:\"txt_submitted\";s:228:\"You successfully submitted an account request to ILIAS. Your account request will be reviewed by the system administrators, and should be activated within 48 hours. You will not be able to log in until your account is activated.\";s:3:\"typ\";s:22:\"Object Type Definition\";s:4:\"type\";s:4:\"Type\";s:15:\"udf_added_field\";s:16:\"Added new field.\";s:15:\"udf_delete_sure\";s:71:\"Are you sure you want to delete this field and all assigned user data ?\";s:21:\"udf_duplicate_entries\";s:29:\"The values have to be unique.\";s:17:\"udf_field_deleted\";s:14:\"Deleted field.\";s:23:\"udf_name_already_exists\";s:63:\"This field name already exists. Please choose a different name.\";s:31:\"udf_required_requires_visib_reg\";s:84:\"When field is set to ‘required’, it must be set to ‘visible in registration’\";s:13:\"udf_type_date\";s:4:\"Date\";s:17:\"udf_type_datetime\";s:13:\"Date and Time\";s:15:\"udf_type_select\";s:30:\"Selection List (Single Choice)\";s:13:\"udf_type_text\";s:21:\"Text Field (One Line)\";s:16:\"udf_type_wysiwyg\";s:19:\"Text Area (WYSIWYG)\";s:23:\"udf_update_select_field\";s:15:\"Edit Select Box\";s:21:\"udf_update_text_field\";s:15:\"Edit Text Field\";s:24:\"udf_update_wysiwyg_field\";s:30:\"Edit Text Area (WYSIWYG) Field\";s:3:\"uid\";s:3:\"UID\";s:22:\"ums_create_new_account\";s:18:\"Create New Account\";s:17:\"ums_explanation_2\";s:65:\"If this is not your account, please hit ‘Create New Account’.\";s:17:\"ums_explanation_3\";s:198:\"Your external account could not be mapped to an ILIAS account. But ILIAS has found multiple accounts with your e-mail address. If one of those is your account, please login with your ILIAS password.\";s:17:\"ums_explanation_4\";s:69:\"If none of them is your account, please hit ‘Create New Account’.\";s:15:\"ums_explanation\";s:183:\"Your external account could not be mapped to an ILIAS account. But ILIAS has found an account with your e-mail address. If this is your account, please login with your ILIAS password.\";s:15:\"unambiguousness\";s:19:\"Distinguishing Mark\";s:11:\"uncheck_all\";s:11:\"Uncheck all\";s:9:\"unchecked\";s:9:\"Unchecked\";s:9:\"uninstall\";s:9:\"Uninstall\";s:11:\"uninstalled\";s:12:\"uninstalled.\";s:7:\"unknown\";s:7:\"UNKNOWN\";s:6:\"unread\";s:6:\"Unread\";s:5:\"unzip\";s:5:\"Unzip\";s:2:\"up\";s:2:\"Up\";s:14:\"update_applied\";s:14:\"Update Applied\";s:15:\"update_language\";s:15:\"Update Language\";s:18:\"update_on_conflict\";s:18:\"Update on conflict\";s:6:\"update\";s:4:\"Edit\";s:27:\"upload_error_file_not_found\";s:29:\"Upload error: File not found.\";s:6:\"upload\";s:6:\"Upload\";s:20:\"uploaded_and_checked\";s:71:\"The file has been uploaded and checked, you can now start to import it.\";s:3:\"uri\";s:3:\"URI\";s:13:\"url_not_found\";s:14:\"File Not Found\";s:12:\"url_to_latex\";s:23:\"URL to LaTeX CGI script\";s:3:\"url\";s:3:\"URL\";s:27:\"use_customized_instructions\";s:28:\"Use customized instructions:\";s:24:\"use_default_instructions\";s:25:\"Use default instructions.\";s:14:\"user_activated\";s:22:\"User has been approved\";s:10:\"user_added\";s:10:\"User added\";s:15:\"user_assignment\";s:15:\"User Assignment\";s:22:\"user_cant_receive_mail\";s:52:\"%1$s – user is not allowed to use the mail system.\";s:12:\"user_comment\";s:12:\"User comment\";s:16:\"user_deactivated\";s:25:\"User has been disapproved\";s:19:\"user_defined_fields\";s:13:\"Custom Fields\";s:17:\"user_defined_list\";s:23:\"Custom User Data Fields\";s:12:\"user_deleted\";s:12:\"User deleted\";s:11:\"user_detail\";s:11:\"Detail Data\";s:21:\"user_ext_account_desc\";s:84:\"Account used for external authentication. (CAS, SOAP, LDAP or Radius authentication)\";s:16:\"user_ext_account\";s:16:\"External Account\";s:10:\"user_image\";s:10:\"User Image\";s:18:\"user_import_failed\";s:19:\"User import failed.\";s:27:\"user_imported_with_warnings\";s:35:\"User import complete with warnings.\";s:13:\"user_imported\";s:21:\"User import complete.\";s:13:\"user_language\";s:13:\"User Language\";s:26:\"user_new_account_mail_desc\";s:190:\"This mail is sent automatically to users that have self-registered or to those who have been registered by an administrator with enabled setting ‘Send mail to inform user about changes’.\";s:21:\"user_new_account_mail\";s:16:\"New Account Mail\";s:14:\"user_not_known\";s:31:\"Please insert a valid username.\";s:18:\"user_profile_other\";s:17:\"Other Information\";s:26:\"user_send_new_account_mail\";s:23:\"Send new account e-mail\";s:11:\"user_status\";s:11:\"User Status\";s:16:\"user_toggle_noti\";s:48:\"Member is not allowed to deactivate notification\";s:4:\"user\";s:4:\"User\";s:8:\"userdata\";s:9:\"User Data\";s:21:\"userfolder_export_csv\";s:22:\"Comma Separated Values\";s:27:\"userfolder_export_excel_x86\";s:15:\"Microsoft Excel\";s:27:\"userfolder_export_file_size\";s:9:\"File size\";s:22:\"userfolder_export_file\";s:4:\"File\";s:23:\"userfolder_export_files\";s:5:\"Files\";s:21:\"userfolder_export_xml\";s:3:\"XML\";s:8:\"username\";s:8:\"Username\";s:18:\"users_not_imported\";s:71:\"The following users do not exist, their messages cannot become imported\";s:12:\"users_online\";s:12:\"Active Users\";s:5:\"users\";s:5:\"Users\";s:15:\"usr_active_only\";s:17:\"Active Users only\";s:7:\"usr_add\";s:8:\"Add User\";s:13:\"usr_agreement\";s:16:\"Terms of Service\";s:8:\"usr_edit\";s:9:\"Edit User\";s:23:\"usr_filter_coursemember\";s:16:\"Member of course\";s:22:\"usr_filter_groupmember\";s:15:\"Member of group\";s:20:\"usr_filter_lastlogin\";s:18:\"Last login of user\";s:15:\"usr_filter_role\";s:13:\"Assigned role\";s:17:\"usr_inactive_only\";s:19:\"Inactive Users only\";s:23:\"usr_limited_access_only\";s:30:\"Users with limited access only\";s:7:\"usr_new\";s:8:\"New User\";s:32:\"usr_settings_explanation_profile\";s:388:\"Check ‘Visible’ to show fields in the registration form and personal settings. Check ‘Changeable’ to allow the user to change the values. Please note that visible fields can always be entered in the registration form. Required fields are required in the registration form and the personal settings. All data can be changed in the user administration independent on these settings.\";s:27:\"usr_settings_header_profile\";s:25:\"Standard User Data Fields\";s:18:\"usr_settings_saved\";s:40:\"Global user settings saved successfully!\";s:22:\"usr_settings_visib_lua\";s:36:\"Visible in Local User Administration\";s:27:\"usr_settings_changeable_lua\";s:39:\"Changeable in Local User Administration\";s:14:\"usr_skin_style\";s:12:\"Skin / Style\";s:19:\"usr_without_courses\";s:30:\"Users without courses assigned\";s:3:\"usr\";s:4:\"User\";s:4:\"usrf\";s:13:\"User accounts\";s:24:\"usrimport_action_ignored\";s:20:\"Ignored action %1$s.\";s:25:\"usrimport_action_replaced\";s:29:\"Replaced action %1$s by %2$s.\";s:27:\"usrimport_form_not_evaluabe\";s:31:\"The form data couldn\'t be read.\";s:26:\"usrimport_wrong_file_count\";s:50:\"Too many files in import-folder. Please try again.\";s:21:\"usrimport_cant_delete\";s:60:\"Can\'t perform ‘Delete’ action. No such user in database.\";s:21:\"usrimport_cant_insert\";s:63:\"Can\'t perform ‘Insert’ action. User is already in database.\";s:21:\"usrimport_cant_update\";s:60:\"Can\'t perform ‘Update’ action. No such user in database.\";s:32:\"usrimport_conflict_handling_info\";s:456:\"When ‘Ignore on conflict’ is selected, ILIAS ignores an action, if it can not be performed (e. g. an ‘Insert’ action is not done, if there is already a user with the same login in the database.) When ‘Update on conflict’ is selected, ILIAS updates the database if an action can not be performed. (e. g. an ‘Insert’ action is replaced by an ‘Update’ action and the other way around, if a user with the same login exists in the database).\";s:41:\"usrimport_global_role_for_action_required\";s:61:\"At least one global role must be specified for \"%1$s\" action.\";s:21:\"usrimport_ignore_role\";s:11:\"Ignore role\";s:29:\"usrimport_login_is_not_unique\";s:20:\"Login is not unique.\";s:38:\"usrimport_no_insert_ext_account_exists\";s:67:\"Can\'t perform ‘Insert’ action. External account already exists.\";s:38:\"usrimport_no_update_ext_account_exists\";s:67:\"Can\'t perform ‘Update’ action. External account already exists.\";s:43:\"usrimport_with_specified_role_not_permitted\";s:41:\"Import with specified role not permitted.\";s:31:\"usrimport_xml_attribute_missing\";s:46:\"Attribute \"%2$s\" in element \"%1$s\" is missing.\";s:37:\"usrimport_xml_attribute_value_illegal\";s:62:\"Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is illegal.\";s:42:\"usrimport_xml_attribute_value_inapplicable\";s:85:\"Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is inapplicable for \"%4$s\" action.\";s:37:\"usrimport_xml_element_content_illegal\";s:44:\"Content \"%2$s\" of element \"%1$s\" is illegal.\";s:41:\"usrimport_xml_element_for_action_required\";s:51:\"Element \"%1$s\" must be specified for \"%2$s\" action.\";s:34:\"usrimport_xml_element_inapplicable\";s:49:\"Element \"%1$s\" is inapplicable for \"%2$s\" action.\";s:5:\"valid\";s:5:\"Valid\";s:8:\"validate\";s:8:\"Validate\";s:5:\"value\";s:5:\"Value\";s:14:\"vcard_download\";s:22:\"Download Visiting Card\";s:5:\"vcard\";s:13:\"Visiting Card\";s:19:\"verification_failed\";s:19:\"Verification failed\";s:24:\"verification_failure_log\";s:24:\"Verification failure log\";s:24:\"verification_warning_log\";s:24:\"Verification warning log\";s:7:\"version\";s:7:\"Version\";s:8:\"versions\";s:8:\"Versions\";s:12:\"view_content\";s:12:\"View Content\";s:4:\"view\";s:4:\"View\";s:20:\"visible_registration\";s:23:\"Visible in Registration\";s:7:\"visible\";s:7:\"Visible\";s:7:\"visitor\";s:7:\"Visitor\";s:8:\"visitors\";s:8:\"Visitors\";s:6:\"visits\";s:6:\"Visits\";s:13:\"web_resources\";s:8:\"Weblinks\";s:6:\"webdav\";s:6:\"WebDAV\";s:28:\"webdav_forbidden_chars_title\";s:104:\"Following files cannot be displayed, because they contain one or more forbidden characters (\\<>/:*?\"|#):\";s:31:\"webdav_duplicate_detected_title\";s:103:\"Following objects could not be displayed, because an object with the same Title is already being shown:\";s:29:\"webdav_problem_info_duplicate\";s:53:\"There is a file with the same title as the info file.\";s:29:\"webdav_problem_free_container\";s:59:\"There are no objects that cause problems in this container.\";s:24:\"webdav_enable_versioning\";s:15:\"File Versioning\";s:22:\"webdav_versioning_info\";s:88:\"If enabled, already existing files will get a new version instead of beeing overwritten.\";s:33:\"webdav_add_instructions_btn_label\";s:31:\"Add Mount Instructions Document\";s:30:\"webdav_docs_mount_instructions\";s:28:\"Mount Instructions Documents\";s:23:\"webdav_general_settings\";s:16:\"General Settings\";s:20:\"webdav_form_document\";s:21:\"Instructions Document\";s:25:\"webdav_form_document_info\";s:111:\"Upload a txt or an html file here. After the upload the file will be parsed and processed. For more information\";s:26:\"webdav_form_document_title\";s:5:\"Title\";s:31:\"webdav_form_document_title_info\";s:92:\"This title will be dislayed as the title of the modal when the Mount Instructions are opened\";s:24:\"webdav_form_new_doc_head\";s:38:\"Create new Mount Instructions Document\";s:25:\"webdav_form_edit_doc_head\";s:32:\"Edit Mount Instructions Document\";s:25:\"webdav_mount_instructions\";s:18:\"Mount Instructions\";s:30:\"webdav_sure_delete_documents_s\";s:80:\"Are you sure you want to delete the Mount Instructions with the following title:\";s:21:\"webdav_tbl_docs_title\";s:42:\"List of uploaded WebDAV Mount Instructions\";s:26:\"webdav_tbl_docs_head_title\";s:14:\"Dokument title\";s:26:\"webdav_upload_instructions\";s:19:\"Upload Instructions\";s:35:\"webdav_chosen_language_already_used\";s:69:\"There already is another document associated with the chosen language\";s:19:\"webdav_missing_lang\";s:60:\"There is no english version of the WebDAV Mount Instructions\";s:17:\"webdav_doc_delete\";s:32:\"Delete WebDav Mount Instructions\";s:18:\"webfolder_dir_info\";s:122:\"You got here, because your browser can\'t open webfolders. Read the instructions for opening webfolders.\";s:18:\"webfolder_index_of\";s:13:\"Index of %1$s\";s:27:\"webfolder_instructions_info\";s:458:\"The webfolder instructions are shown on browsers, which can not open a webfolder directly. You can use HTML code, and the following placeholders: [WEBFOLDER_TITLE], [WEBFOLDER_URI], [WEBFOLDER_URI], [WEBFOLDER_URI_KONQUEROR], [WEBFOLDER_URI_NAUTILUS], [ADMIN_MAIL], [WINDOWS]...[/WINDOWS], [MAC]...[/MAC], [LINUX]...[/LINUX]. Clear the field to get the default instructions.\";s:27:\"webfolder_instructions_text\";s:2069:\"[WINDOWS]

Instructions for connecting with Windows

  1. Open Windows-Explorer (e.g. key combination Windows + E).
  2. Rightclick on \"This PC\" and select \"Map network drive...\".
  3. Enter the following address as address (you may copy and paste the URL):

    [WEBFOLDER_URI]

  4. Click \"Finish\".
  5. Enter your login and password, and select \"OK\".
  6. You can now access the webfolder from the start menu \"Computer\".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/WINDOWS] [MAC]

Instructions for Mac OS X

  1. Open the Finder.
  2. Choose the menu \'Goto to > Connect to server...\'.
    This opens the window \'connect to server\'.
  3. Enter this URL as server URL:
    [WEBFOLDER_URI]
    und click on \'Connect\'.
  4. Enter your login and password, and select \"OK\".

Your login and password is identical to your local ILIAS login and can be changed via \"Personal Settings\".[/MAC][LINUX]

Instructions for Linux with Konqueror

  1. Open Konqueror Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_KONQUEROR]
    and press enter.
  3. Enter your login and password, and select \"OK\".

Instructions for Linux with Nautilus

  1. Open Nautilus Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_NAUTILUS]
    and press enter.
  3. Enter your login and password, and select \"OK\".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/LINUX]

Tips & Support

  • These steps need to be done only once. You may access your connection again later.
  • Connect to a higher folder. You can always navigate down the tree, but nut upwards.
  • If your computer can not open the WebDAV Connection, please contact ILIAS Support.
\";s:32:\"webfolder_instructions_titletext\";s:17:\"Open as webfolder\";s:22:\"webfolder_instructions\";s:22:\"Webfolder instructions\";s:24:\"webfolder_mount_dir_with\";s:167:\"Open this page as a Webfolder with Internet Explorer 6, Konqueror, Nautilus, other Browser.\";s:11:\"webr_active\";s:6:\"Active\";s:8:\"webr_add\";s:11:\"Add Weblink\";s:18:\"webr_deleted_items\";s:19:\"Deleted Weblink(s).\";s:18:\"webr_disable_check\";s:18:\"Disable Validation\";s:9:\"webr_edit\";s:12:\"Edit Weblink\";s:21:\"webr_last_check_table\";s:11:\"Last check:\";s:22:\"webr_sure_delete_items\";s:54:\"Do you really want to delete the following Weblink(s)?\";s:4:\"webr\";s:7:\"Weblink\";s:11:\"webservices\";s:4:\"SOAP\";s:4:\"week\";s:4:\"Week\";s:6:\"weekly\";s:6:\"weekly\";s:5:\"weeks\";s:5:\"Weeks\";s:7:\"welcome\";s:7:\"Welcome\";s:5:\"width\";s:5:\"Width\";s:8:\"wiki_add\";s:8:\"Add Wiki\";s:8:\"wiki_new\";s:8:\"New Wiki\";s:4:\"wiki\";s:4:\"Wiki\";s:4:\"with\";s:4:\"with\";s:18:\"wizard_search_list\";s:67:\"Your search produced the following hits. Please select one of them.\";s:17:\"wizard_title_info\";s:148:\"Search for the object you want to duplicate. Please enter the object\'s title or a part of it and click on \'Continue\' to get matching search results.\";s:5:\"write\";s:5:\"Write\";s:17:\"wrong_ip_detected\";s:142:\"Your access is denied because of a wrong client ip.
You are currently using this IP address: %s
Please contact the system administrator.\";s:4:\"year\";s:4:\"Year\";s:5:\"years\";s:5:\"Years\";s:3:\"yes\";s:3:\"Yes\";s:9:\"yesterday\";s:9:\"Yesterday\";s:19:\"zip_structure_error\";s:49:\"Archive contains same file names. Upload aborted.\";s:15:\"zip_test_failed\";s:56:\"Zip-Test failed. Please contact you ILIAS administrator.\";s:3:\"zip\";s:8:\"Zip Code\";s:7:\"zipcode\";s:8:\"Zip Code\";s:10:\"page_count\";s:10:\"Page Count\";s:14:\"db_need_hotfix\";s:70:\"Hotfix available. Please open »Setup!\";s:14:\"session_config\";s:16:\"Session Settings\";s:35:\"session_config_maintenance_disabled\";s:33:\"Maintenance by client not allowed\";s:17:\"session_max_count\";s:19:\"Max active sessions\";s:22:\"session_max_count_info\";s:120:\"Defines the maximum number of sessions that can be created simultaneously. Setting this to ‘0’ disables the feature.\";s:16:\"session_min_idle\";s:29:\"Min session idle (in minutes)\";s:21:\"session_min_idle_info\";s:188:\"When a user idles for at least this period of time the session can be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.\";s:16:\"session_max_idle\";s:29:\"Max session idle (in minutes)\";s:21:\"session_max_idle_info\";s:83:\"Defines the maximum period of idle time a user can idle before his session expires.\";s:36:\"session_max_idle_after_first_request\";s:49:\"Max session idle after first request (in minutes)\";s:41:\"session_max_idle_after_first_request_info\";s:203:\"All sessions that idles for at least this period of time after first request will be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.\";s:21:\"reached_session_limit\";s:61:\"The limit of online users is reached. Please try again later.\";s:32:\"mail_to_global_roles_not_allowed\";s:54:\"%1$s (it is not allowed to send mails to global roles)\";s:29:\"delete_inactive_user_accounts\";s:50:\"Delete user accounts with no login for a long time\";s:34:\"delete_inactive_user_accounts_desc\";s:84:\"If enabled, user accounts will be deleted depending on the date of their last login.\";s:36:\"delete_inactive_user_accounts_period\";s:28:\"Days passed since last login\";s:41:\"delete_inactive_user_accounts_period_desc\";s:96:\"All user accounts without login within the defined number of days will be deleted automatically.\";s:43:\"delete_inactive_user_accounts_include_roles\";s:16:\"Considered roles\";s:48:\"delete_inactive_user_accounts_include_roles_desc\";s:114:\"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.\";s:15:\"update_orgunits\";s:36:\"Update assigned organisational units\";s:20:\"update_orgunits_desc\";s:83:\"If enabled, the field \'Organisational Units\' will be updated for all user accounts.\";s:32:\"delete_inactivated_user_accounts\";s:32:\"Delete inactivated user accounts\";s:37:\"delete_inactivated_user_accounts_desc\";s:75:\"If enabled, user accounts will be deleted %s days after their inactivation.\";s:39:\"delete_inactivated_user_accounts_period\";s:30:\"Days passed since inactivation\";s:44:\"delete_inactivated_user_accounts_period_desc\";s:78:\"Accounts will be deleted if this number of days has passed since inactivation.\";s:46:\"delete_inactivated_user_accounts_include_roles\";s:16:\"Considered roles\";s:51:\"delete_inactivated_user_accounts_include_roles_desc\";s:114:\"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.\";s:8:\"obj_frma\";s:5:\"Forum\";s:13:\"obj_frma_desc\";s:21:\"Global Forum Settings\";s:10:\"backto_lua\";s:33:\"Back to Local User Administration\";s:19:\"sort_inherit_prefix\";s:7:\"Default\";s:20:\"sorting_info_inherit\";s:55:\"The sorting mode is adopted from a parent course/group.\";s:11:\"sel_country\";s:7:\"Country\";s:8:\"obj_book\";s:12:\"Booking Pool\";s:9:\"objs_book\";s:13:\"Booking Pools\";s:17:\"country_selection\";s:29:\"Country (Drop Down Selection)\";s:17:\"country_free_text\";s:25:\"Country (Free Text Input)\";s:20:\"optional_filter_hint\";s:44:\"Please activate one of the optional filters.\";s:19:\"sess_fixed_duration\";s:22:\"Fixed Session Duration\";s:36:\"sess_load_dependent_session_handling\";s:31:\"Load Dependent Session Handling\";s:9:\"sess_mode\";s:12:\"Session Mode\";s:18:\"cronjob_last_start\";s:26:\"Last Start of the Cron Job\";s:30:\"enable_disk_quota_summary_mail\";s:23:\"Send Disk Quota Summary\";s:35:\"enable_disk_quota_summary_mail_desc\";s:99:\"The disk quota summary is a daily notification containing all users, who exceeded their disk quota.\";s:23:\"disk_quota_summary_rctp\";s:10:\"Recipients\";s:28:\"disk_quota_summary_rctp_desc\";s:133:\"Enter the user names (comma-separated) of those users who shall receive a daily report with users currently exceeding the disk quota.\";s:28:\"disk_quota_exceeded_headline\";s:51:\"The following users have exceeded their disk quota:\";s:17:\"usrf_profile_link\";s:20:\"Link to user profile\";s:25:\"currently_used_disk_space\";s:25:\"Currently used disk space\";s:26:\"disk_quota_summary_subject\";s:30:\"Summary of Exceeded Disk Quota\";s:26:\"cronjob_last_start_unknown\";s:13:\"Indeterminate\";s:30:\"cron_mail_notification_message\";s:41:\"Send Mail Notifications with Mail-Message\";s:35:\"cron_mail_notification_message_info\";s:89:\"If enabled, all users will get notifications with complete mail message by external mail.\";s:25:\"follow_link_to_read_mails\";s:45:\"click the following link to read these mails:\";s:31:\"mails_at_the_ilias_installation\";s:58:\"You received %1$s new mails at the ILIAS-Installation %2$s\";s:30:\"mail_at_the_ilias_installation\";s:57:\"You received %1$s new mail at the ILIAS-Installation %2$s\";s:22:\"webdav_pwd_instruction\";s:147:\"We suggest to create a local password for opening the repository as webfolder.
This password is only required for the webfolder functionality.\";s:30:\"webdav_pwd_instruction_success\";s:84:\"A new local password has been created. You can now open the repository as webfolder.\";s:22:\"err_auth_apache_failed\";s:107:\"The authentication has failed. Maybe you have no valid user certificate or your smart card is not inserted.\";s:21:\"nr_following_sessions\";s:27:\"%1d following session(s)...\";s:7:\"obj_ass\";s:5:\"Asset\";s:26:\"enable_anonymous_fora_desc\";s:104:\"If this option is disabled, the feature ‘Posting with pseudonym’ is not available in forums anymore.\";s:21:\"enable_anonymous_fora\";s:28:\"Allow posting with pseudonym\";s:8:\"obj_wfld\";s:6:\"Folder\";s:8:\"obj_blog\";s:4:\"Blog\";s:29:\"preconditions_obligatory_hint\";s:54:\"You have to fulfill all of the following preconditions\";s:27:\"preconditions_optional_hint\";s:60:\"You have to fulfill %s of the following preconditions\";s:10:\"glo_import\";s:15:\"Import Glossary\";s:13:\"rep_main_page\";s:4:\"Home\";s:17:\"personal_settings\";s:8:\"Settings\";s:20:\"show_hidden_sections\";s:29:\"Show More Information »\";s:21:\"hide_visible_sections\";s:29:\"Hide More Information »\";s:18:\"tst_edit_questions\";s:14:\"Edit Questions\";s:5:\"first\";s:5:\"First\";s:6:\"behind\";s:6:\"Behind\";s:33:\"enable_course_group_notifications\";s:37:\"Daily Mail for Groups and Course News\";s:38:\"enable_course_group_notifications_desc\";s:66:\"If enabled, Participants can subscribe to a daily summary of news.\";s:6:\"saving\";s:9:\"Saving...\";s:14:\"user_not_found\";s:14:\"User not found\";s:20:\"cont_iim_create_info\";s:63:\"Please upload the background picture for the interactive image.\";s:21:\"cont_iim_overlay_info\";s:187:\"Overlay images are used to alter (e.g. highlight) parts of the background image when the mouse hovers over them. After uploading the images, you can select them in the ‘Triggers’ tab.\";s:28:\"cont_iim_content_popups_info\";s:195:\"Content popups appear, when the user clicks on interactive parts of the background image. On this screen you only define the popups. Their content can be edited on the editing screen of the page.\";s:19:\"file_upload_pending\";s:12:\"Pending file\";s:6:\"yearly\";s:6:\"yearly\";s:22:\"allow_user_toggle_noti\";s:44:\"Member is allowed to deactivate notification\";s:20:\"usr_account_inactive\";s:16:\"Inactive Account\";s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"obj_skmg\";s:21:\"Competence Management\";s:13:\"obj_skmg_desc\";s:45:\"Manage competences and competence categories.\";s:6:\"skills\";s:11:\"Competences\";s:17:\"exc_next_deadline\";s:13:\"Next Deadline\";s:20:\"password_allow_chars\";s:17:\"Allowed chars: %s\";s:9:\"objs_chtr\";s:9:\"Chat Room\";s:8:\"obj_chta\";s:9:\"Chat Room\";s:8:\"obj_chtr\";s:9:\"Chat Room\";s:24:\"password_multiple_errors\";s:36:\"Multiple criteria are not satisfied:\";s:31:\"password_contains_invalid_chars\";s:40:\"The password contains invalid characters\";s:6:\"notice\";s:6:\"Notice\";s:11:\"public_room\";s:11:\"Public room\";s:17:\"my_courses_groups\";s:21:\"My Courses and Groups\";s:25:\"enable_sahs_protocol_data\";s:22:\"Activate Protocol Data\";s:30:\"enable_sahs_protocol_data_desc\";s:26:\"Show Protocol Data (SCORM)\";s:9:\"chtr_copy\";s:14:\"Copy Chat Room\";s:30:\"precondition_required_itemlist\";s:21:\"Required Precondition\";s:19:\"precondition_toggle\";s:61:\"Preconditions that need to be fulfilled to access this object\";s:11:\"top_of_page\";s:11:\"Top of page\";s:10:\"spl_import\";s:27:\"Import Question Pool Survey\";s:12:\"chta_visible\";s:35:\"Chat Room Administration is visible\";s:9:\"chta_read\";s:39:\"Read access to Chat Room Administration\";s:10:\"chta_write\";s:29:\"Edit Chat Room Administration\";s:20:\"chta_edit_permission\";s:26:\"Change Permission Settings\";s:11:\"apache_auth\";s:21:\"Apache Authentication\";s:15:\"server_disabled\";s:20:\"The Chat is Disabled\";s:8:\"continue\";s:8:\"continue\";s:22:\"ignore_required_fields\";s:22:\"Ignore required fields\";s:27:\"ignore_required_fields_info\";s:174:\"If activated, you can submit this form without filling out all mandatory fields. The new user has to add the missing information on the personal profile after the next login.\";s:8:\"obj_rcat\";s:12:\"ECS Category\";s:16:\"obj_lm_duplicate\";s:20:\"Copy Learning Module\";s:31:\"reg_goto_parent_membership_info\";s:42:\"Only members can access the target object.\";s:14:\"remove_entries\";s:14:\"Remove Entries\";s:9:\"objs_blog\";s:5:\"Blogs\";s:18:\"obj_blog_duplicate\";s:9:\"Copy Blog\";s:7:\"obj_dcl\";s:15:\"Data Collection\";s:8:\"objs_dcl\";s:16:\"Data Collections\";s:17:\"obj_dcl_duplicate\";s:20:\"Copy Data Collection\";s:18:\"shib_matriculation\";s:34:\"Attribute for Matriculation Number\";s:20:\"soap_connect_timeout\";s:18:\"Connection Timeout\";s:25:\"soap_connect_timeout_info\";s:90:\"The maximum time in seconds until a connect attempt to the SOAP-Webservice is interrupted.\";s:17:\"obj_mep_duplicate\";s:15:\"Copy Media Pool\";s:18:\"obj_mcst_duplicate\";s:14:\"Copy Mediacast\";s:17:\"obj_glo_duplicate\";s:13:\"Copy Glossary\";s:18:\"obj_htlm_duplicate\";s:25:\"Copy HTML Learning Module\";s:18:\"obj_wiki_duplicate\";s:9:\"Copy Wiki\";s:18:\"obj_sahs_duplicate\";s:20:\"Copy Learning Module\";s:8:\"obj_poll\";s:4:\"Poll\";s:9:\"objs_poll\";s:5:\"Polls\";s:18:\"obj_poll_dupliate:\";s:9:\"Copy Poll\";s:11:\"mail_member\";s:14:\"Mail to Member\";s:7:\"imprint\";s:12:\"Legal Notice\";s:18:\"crs_list_reg_start\";s:18:\"Registration Begin\";s:16:\"crs_list_reg_end\";s:16:\"Registration End\";s:18:\"crs_list_reg_noreg\";s:24:\"No Registration Possible\";s:19:\"crs_list_reg_period\";s:19:\"Registration Period\";s:12:\"crs_list_reg\";s:12:\"Registration\";s:23:\"crs_list_reg_limit_full\";s:14:\"No places left\";s:25:\"crs_list_reg_limit_places\";s:11:\"Free places\";s:13:\"obj_hlps_desc\";s:28:\"Settings for the online help\";s:8:\"obj_hlps\";s:11:\"Help System\";s:18:\"grp_list_reg_start\";s:18:\"Registration Begin\";s:16:\"grp_list_reg_end\";s:16:\"Registration End\";s:18:\"grp_list_reg_noreg\";s:24:\"No Registration Possible\";s:19:\"grp_list_reg_period\";s:19:\"Registration Period\";s:12:\"grp_list_reg\";s:12:\"Registration\";s:23:\"grp_list_reg_limit_full\";s:14:\"No places left\";s:25:\"grp_list_reg_limit_places\";s:11:\"Free places\";s:9:\"add_entry\";s:14:\"Add/Edit entry\";s:18:\"obj_poll_duplicate\";s:9:\"Copy Poll\";s:9:\"objs_rcat\";s:14:\"ECS Categories\";s:8:\"obj_itgr\";s:10:\"Item Group\";s:9:\"objs_itgr\";s:11:\"Item Groups\";s:8:\"itgr_new\";s:14:\"New Item Group\";s:8:\"itgr_add\";s:14:\"Add Item Group\";s:15:\"search_globally\";s:8:\"Globally\";s:26:\"search_at_current_position\";s:19:\"At Current Position\";s:8:\"obj_rwik\";s:8:\"ECS Wiki\";s:9:\"objs_rwik\";s:9:\"ECS Wikis\";s:7:\"obj_rlm\";s:19:\"ECS Learning Module\";s:8:\"objs_rlm\";s:20:\"ECS Learning Modules\";s:8:\"obj_rglo\";s:12:\"ECS Glossary\";s:9:\"objs_rglo\";s:14:\"ECS Glossaries\";s:8:\"obj_rfil\";s:8:\"ECS File\";s:9:\"objs_rfil\";s:9:\"ECS Files\";s:8:\"obj_rgrp\";s:9:\"ECS Group\";s:9:\"objs_rgrp\";s:10:\"ECS Groups\";s:8:\"obj_tstv\";s:16:\"Test Certificate\";s:8:\"obj_excv\";s:20:\"Exercise Certificate\";s:8:\"obj_prtf\";s:9:\"Portfolio\";s:8:\"obj_rtst\";s:8:\"ECS Test\";s:9:\"objs_rtst\";s:9:\"ECS Tests\";s:25:\"obj_tool_setting_calendar\";s:8:\"Calendar\";s:8:\"fm_start\";s:22:\"Open With File Manager\";s:19:\"il_blog_contributor\";s:11:\"Blog Author\";s:8:\"qpl_copy\";s:23:\"Copy Question Pool Test\";s:16:\"edit_assignments\";s:16:\"Edit Assignments\";s:21:\"obj_tool_setting_news\";s:4:\"News\";s:8:\"obj_ecss\";s:3:\"ECS\";s:13:\"obj_ecss_desc\";s:20:\"General ECS Settings\";s:9:\"edited_on\";s:9:\"Edited on\";s:12:\"obj_tos_desc\";s:25:\"Terms of Service Settings\";s:7:\"obj_tos\";s:16:\"Terms of Service\";s:8:\"obj_bibl\";s:12:\"Bibliography\";s:9:\"objs_bibl\";s:14:\"Bibliographies\";s:8:\"obj_bibs\";s:12:\"Bibliography\";s:13:\"obj_bibs_desc\";s:27:\"Bibliography Administration\";s:16:\"hide_all_details\";s:16:\"Hide all details\";s:16:\"show_all_details\";s:16:\"Show all details\";s:26:\"select_files_from_computer\";s:12:\"Select Files\";s:15:\"drag_files_here\";s:29:\"Drag-and-drop your files here\";s:14:\"drag_file_here\";s:28:\"Drag-and-drop your file here\";s:14:\"selected_files\";s:14:\"Selected files\";s:21:\"num_of_selected_files\";s:19:\"%s file(s) selected\";s:18:\"cancel_file_upload\";s:49:\"Do you really want to cancel all pending uploads?\";s:12:\"upload_files\";s:12:\"Upload files\";s:18:\"upload_files_title\";s:12:\"Upload files\";s:14:\"upload_pending\";s:7:\"Pending\";s:26:\"error_empty_file_or_folder\";s:43:\"The file size is 0 bytes or it is a folder.\";s:27:\"error_upload_was_zero_bytes\";s:131:\"The upload failed as this is a folder, the file size is 0 bytes or exceeded the max. upload size or the file was renamed meanwhile.\";s:9:\"uploading\";s:12:\"Uploading...\";s:10:\"extracting\";s:13:\"Extracting...\";s:27:\"drop_files_on_repo_obj_info\";s:52:\"Drop the files here to upload them into this object.\";s:23:\"error_extraction_failed\";s:158:\"The extraction of the archive and its directories failed. Probably because you don’t have the permission to create folders or categories within this object.\";s:15:\"upload_settings\";s:15:\"Upload Settings\";s:17:\"enable_dnd_upload\";s:27:\"Enable drag-and-drop upload\";s:22:\"enable_dnd_upload_info\";s:76:\"Files can be uploaded with drag-and-drop from the local computer if enabled.\";s:28:\"enable_repository_dnd_upload\";s:20:\"Enable in Repository\";s:33:\"enable_repository_dnd_upload_info\";s:140:\"Enables that files can be dragged from the computer directly onto an object in the repository to start uploading the files into this object.\";s:18:\"concurrent_uploads\";s:28:\"Number of concurrent uploads\";s:23:\"concurrent_uploads_info\";s:85:\"Defines the number of files that can be uploaded per upload process at the same time.\";s:13:\"download_link\";s:13:\"Download Link\";s:28:\"file_confirm_delete_versions\";s:51:\"Are you sure to delete the following file versions?\";s:32:\"file_confirm_delete_all_versions\";s:96:\"You selected all file versions. This will delete the whole file object. Do you want to continue?\";s:21:\"file_versions_deleted\";s:53:\"The selected file versions were successfully deleted.\";s:30:\"file_rollback_select_exact_one\";s:69:\"Only one file version can be selected to make it the current version.\";s:18:\"file_rollback_done\";s:43:\"File version %s is now the current version.\";s:24:\"file_version_new_version\";s:11:\"New version\";s:19:\"file_version_create\";s:15:\"Initial version\";s:20:\"file_version_replace\";s:21:\"All versions replaced\";s:21:\"file_version_rollback\";s:30:\"Rollback to version %s from %s\";s:13:\"file_rollback\";s:29:\"Make this the current version\";s:10:\"frm_import\";s:12:\"Import Forum\";s:18:\"rpc_pdf_generation\";s:14:\"PDF-Generation\";s:12:\"rpc_pdf_font\";s:5:\"Fonts\";s:17:\"rpc_pdf_font_info\";s:139:\"Additional fonts for the generation of PDF files. Other fonts than ‘Helvetica’ and ‘unifont’ must be installed on the ILIAS server.\";s:8:\"obj_sysc\";s:12:\"System Check\";s:13:\"obj_sysc_desc\";s:29:\"System Check and Repair Tools\";s:7:\"obj_cld\";s:12:\"Cloud Object\";s:8:\"objs_cld\";s:13:\"Cloud Objects\";s:21:\"scorm_without_session\";s:47:\"SCORM 2004: enable storing data without session\";s:26:\"scorm_without_session_info\";s:141:\"This ensures the storage of SCORM 2004 learning data even if ILIAS session expired. For SCORM 1.2, storage without session is always enabled.\";s:19:\"msg_obj_no_download\";s:21:\"cannot be downloaded.\";s:23:\"download_selected_items\";s:8:\"Download\";s:25:\"download_multiple_objects\";s:25:\"Download Multiple Objects\";s:21:\"msg_obj_perm_download\";s:68:\"You do not have sufficient rights to download the following objects:\";s:21:\"enable_multi_download\";s:37:\"«Download multiple objects» enabled\";s:26:\"enable_multi_download_info\";s:84:\"Enables that multiple folders/files can be selected to download them as zip archive.\";s:7:\"preview\";s:7:\"Preview\";s:12:\"preview_show\";s:12:\"Show Preview\";s:12:\"preview_none\";s:25:\"Preview (not created yet)\";s:16:\"preview_settings\";s:12:\"File Preview\";s:14:\"enable_preview\";s:14:\"Enable Preview\";s:19:\"enable_preview_info\";s:69:\"Enable this option to display preview images on supported file types.\";s:23:\"max_previews_per_object\";s:33:\"Number of preview images per file\";s:28:\"max_previews_per_object_info\";s:71:\"Defines the maximum number of preview images that are created per file.\";s:14:\"preview_create\";s:14:\"Create Preview\";s:14:\"preview_delete\";s:14:\"Delete Preview\";s:23:\"preview_status_creating\";s:52:\"The preview gets created. This may take some time...\";s:23:\"preview_status_deleting\";s:27:\"The preview gets deleted...\";s:22:\"preview_status_pending\";s:61:\"The preview has not been created yet. Please try again later.\";s:21:\"preview_status_failed\";s:29:\"Failed to create the preview.\";s:22:\"preview_status_missing\";s:32:\"No preview exists for this file.\";s:15:\"preview_loading\";s:18:\"Loading Preview...\";s:24:\"loaded_preview_renderers\";s:24:\"Loaded Preview Renderers\";s:21:\"renderer_type_builtin\";s:8:\"Built-in\";s:29:\"renderer_supported_repo_types\";s:23:\"Supported ILIAS Objects\";s:29:\"renderer_supported_file_types\";s:20:\"Supported File Types\";s:26:\"ghostscript_not_configured\";s:134:\"Ghostscript is not configured. Please open the Setup to configure it.\";s:8:\"obj_reps\";s:10:\"Repository\";s:7:\"obj_rep\";s:10:\"Repository\";s:13:\"obj_reps_desc\";s:35:\"General settings for the Repository\";s:8:\"obj_wbrs\";s:7:\"Weblink\";s:13:\"obj_wbrs_desc\";s:30:\"General settings for Web Links\";s:8:\"obj_crss\";s:6:\"Course\";s:13:\"obj_crss_desc\";s:28:\"General settings for Courses\";s:8:\"obj_grps\";s:5:\"Group\";s:13:\"obj_grps_desc\";s:27:\"General settings for Groups\";s:8:\"obj_prtt\";s:18:\"Portfolio Template\";s:9:\"objs_prtt\";s:19:\"Portfolio Templates\";s:18:\"obj_prtt_duplicate\";s:23:\"Copy Portfolio Template\";s:9:\"objs_orgu\";s:20:\"Organisational Units\";s:9:\"org_units\";s:20:\"Organisational Units\";s:8:\"obj_orgu\";s:19:\"Organisational Unit\";s:20:\"obj_orgu_description\";s:45:\"Creating and editing organisational structure\";s:16:\"il_orgu_superior\";s:8:\"Superior\";s:16:\"il_orgu_employee\";s:8:\"Employee\";s:22:\"view_learning_progress\";s:22:\"View Learning Progress\";s:26:\"view_learning_progress_rec\";s:45:\"View Learning Progress of Unit incl. Subunits\";s:8:\"my_staff\";s:5:\"Staff\";s:31:\"ps_password_lowercase_chars_num\";s:18:\"Lower Case Letters\";s:36:\"ps_password_lowercase_chars_num_info\";s:108:\"Please insert the number of lower case letters a password must contain. Enter 0 to disable this requirement.\";s:31:\"ps_password_uppercase_chars_num\";s:15:\"Capital Letters\";s:36:\"ps_password_uppercase_chars_num_info\";s:105:\"Please insert the number of capital letters a password must contain. Enter 0 to disable this requirement.\";s:37:\"ps_password_must_not_contain_loginame\";s:28:\"Prevent Username in Password\";s:42:\"ps_password_must_not_contain_loginame_info\";s:55:\"If activated, a password must not contain the username.\";s:36:\"password_contains_parts_of_login_err\";s:73:\"The chosen password contains your username. Please insert a new password.\";s:33:\"password_must_contain_lcase_chars\";s:57:\"The password must contain at least %s lower case letters.\";s:33:\"password_must_contain_ucase_chars\";s:54:\"The password must contain at least %s capital letters.\";s:25:\"scorm_login_as_learner_id\";s:48:\"SCORM 2004: set ILIAS Username as cmi.learner_id\";s:30:\"scorm_login_as_learner_id_info\";s:74:\"If enabled, the Username instead of the User ID is set for cmi.learner_id.\";s:8:\"obj_wiks\";s:4:\"Wiki\";s:13:\"obj_wiks_desc\";s:20:\"Global Wiki Settings\";s:12:\"offline_mode\";s:11:\"Use offline\";s:23:\"msg_obj_already_deleted\";s:36:\"The object has already been deleted.\";s:26:\"obj_tool_setting_news_info\";s:68:\"The ‘News’ block will be displayed inside the ‘Content’ tab.\";s:30:\"obj_tool_setting_calendar_info\";s:92:\"A calendar is available and the ‘Calendar’ block is displayed in the ‘Contents’ tab.\";s:8:\"obj_crsv\";s:18:\"Course Certificate\";s:8:\"obj_scov\";s:17:\"SCORM Certificate\";s:17:\"autocomplete_more\";s:4:\"more\";s:23:\"sorting_creation_header\";s:16:\"By Creation Date\";s:21:\"sorting_creation_info\";s:64:\"Content items are arranged automatically by their creation date.\";s:17:\"sorting_direction\";s:17:\"Sorting Direction\";s:12:\"sorting_desc\";s:10:\"Descendent\";s:11:\"sorting_asc\";s:9:\"Ascending\";s:20:\"il_astpl_loc_initial\";s:12:\"Initial Test\";s:22:\"il_astpl_loc_qualified\";s:15:\"Qualifying Test\";s:25:\"il_astpl_loc_initial_desc\";s:74:\"Settings template for initial tests of learning objective oriented courses\";s:27:\"il_astpl_loc_qualified_desc\";s:77:\"Settings template for qualifying tests of learning objective oriented courses\";s:15:\"ps_export_scorm\";s:30:\"Personal Data in Protocol Data\";s:24:\"enable_export_scorm_desc\";s:53:\"Display of Personal Data in the Protocol Data (SCORM)\";s:22:\"scorm_lp_auto_activate\";s:37:\"Default setting for learning progress\";s:27:\"scorm_lp_auto_activate_info\";s:259:\"If learning progress is activated in general, the settings for new SCORM learning modules are set to ‘Collection of SCORM Items’ and all SCOs are selected for learning progress determination. Adjustments are still possible for every SCORM learning module.\";s:15:\"toggle_dropdown\";s:15:\"Toggle Dropdown\";s:21:\"clientlist_clientlist\";s:11:\"Client List\";s:28:\"clientlist_available_clients\";s:17:\"Available Clients\";s:28:\"clientlist_installation_name\";s:17:\"Installation Name\";s:24:\"clientlist_public_access\";s:13:\"Public Access\";s:16:\"clientlist_login\";s:5:\"Login\";s:21:\"clientlist_start_page\";s:10:\"Start page\";s:21:\"clientlist_login_page\";s:10:\"Login page\";s:24:\"settings_for_all_members\";s:38:\"Members will be notified automatically\";s:18:\"settings_per_users\";s:107:\"Members are notified automatically. Deactivating notifications can be allowed for each member individually.\";s:14:\"il_blog_editor\";s:11:\"Blog Editor\";s:32:\"obj_tool_setting_custom_metadata\";s:15:\"Custom Metadata\";s:37:\"obj_tool_setting_custom_metadata_info\";s:40:\"If activated metadata can be configured.\";s:20:\"mem_cron_min_members\";s:35:\"Course/Group: Minimum Members Check\";s:25:\"mem_cron_min_members_info\";s:69:\"The administrators will be notified if the minimum number is not met.\";s:13:\"mem_min_users\";s:16:\"Minimum of Users\";s:28:\"buddy_allow_to_contact_me_no\";s:32:\"Doesn`t Receive Contact Requests\";s:29:\"buddy_allow_to_contact_me_yes\";s:25:\"Receives Contact Requests\";s:11:\"my_contacts\";s:11:\"My Contacts\";s:8:\"obj_cadm\";s:8:\"Contacts\";s:13:\"obj_cadm_desc\";s:23:\"Contacts Administration\";s:26:\"no_gallery_users_available\";s:44:\"There are currently no users in the gallery.\";s:13:\"obj_awra_desc\";s:32:\"Manage ‘Who is online?’-Tool\";s:8:\"obj_awra\";s:25:\"‘Who is online?’-Tool\";s:16:\"contact_sysadmin\";s:25:\"Contact Technical Support\";s:26:\"report_accessibility_issue\";s:26:\"Report Accessibility Issue\";s:25:\"report_accessibility_link\";s:14:\"Reported Link:\";s:29:\"accessibility_control_concept\";s:29:\"Accessibility Control Concept\";s:44:\"no_accessibility_control_concept_description\";s:154:\"There is currently no Accessibility Control Concept provided with this installation. Please contact the Accessibility Point of Contact.\";s:18:\"mainbar_aria_label\";s:7:\"Mainbar\";s:18:\"metabar_aria_label\";s:7:\"Metabar\";s:22:\"breadcrumbs_aria_label\";s:11:\"Breadcrumbs\";s:8:\"obj_logs\";s:7:\"Logging\";s:13:\"obj_logs_desc\";s:24:\"General Logging Settings\";s:17:\"obj_prg_duplicate\";s:20:\"Copy Study Programme\";s:14:\"obj_prg_select\";s:39:\"-- Please select one study programme --\";s:7:\"obj_prg\";s:15:\"Study Programme\";s:8:\"obj_prgs\";s:16:\"Study Programmes\";s:13:\"obj_prgs_desc\";s:30:\"Study Programme Administration\";s:21:\"prg_copy_threads_info\";s:84:\"Please decide which Study Program elements should be copied, linked or even omitted.\";s:15:\"prg_wizard_page\";s:29:\"Copy Study Program (Step 2/2)\";s:14:\"enter_new_name\";s:19:\"Please enter a name\";s:9:\"objs_prtf\";s:10:\"Portfolios\";s:14:\"grpr_edit_info\";s:54:\"Please choose one group for creating a new group link.\";s:9:\"grpr_edit\";s:15:\"Edit Group Link\";s:8:\"grpr_new\";s:17:\"Create Group Link\";s:4:\"grpr\";s:10:\"Group Link\";s:8:\"obj_grpr\";s:10:\"Group Link\";s:9:\"objs_grpr\";s:11:\"Group Links\";s:8:\"obj_bdga\";s:6:\"Badges\";s:13:\"obj_bdga_desc\";s:55:\"Administrate types, image templates and activity badges\";s:24:\"set_style_does_not_exist\";s:151:\"Your selected system style does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:\";s:23:\"set_skin_does_not_exist\";s:143:\"Your selected skin does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:\";s:8:\"obj_bgtk\";s:15:\"Background Task\";s:8:\"obj_iass\";s:21:\"Individual Assessment\";s:9:\"objs_iass\";s:22:\"Individual Assessments\";s:18:\"obj_iass_duplicate\";s:26:\"Copy Individual Assessment\";s:15:\"obj_iass_select\";s:45:\"-- Please select one individual assessment --\";s:14:\"il_iass_member\";s:30:\"Individual Assessment Examinee\";s:8:\"iass_new\";s:28:\"Create Individual Assessment\";s:11:\"iass_import\";s:28:\"Import Individual Assessment\";s:11:\"chtr_import\";s:15:\"Import Chatroom\";s:16:\"sahs_export_file\";s:33:\"ILIAS exported SCORM archive file\";s:8:\"obj_pdfg\";s:14:\"PDF Generation\";s:13:\"obj_pdfg_desc\";s:36:\"Options for generation PDF documents\";s:20:\"building_export_file\";s:23:\"Building Export File...\";s:9:\"pdfg_read\";s:38:\"User has read access to PDF Generation\";s:12:\"pdfg_visible\";s:25:\"PDF Generation is visible\";s:10:\"pdfg_write\";s:40:\"User can edit settings of PDF Generation\";s:20:\"pdfg_edit_permission\";s:35:\"User can change permission settings\";s:23:\"file_no_valid_file_type\";s:30:\"This file type is not allowed.\";s:36:\"file_some_invalid_file_types_removed\";s:54:\"Some file types are not allowed and have been removed.\";s:9:\"auth_saml\";s:4:\"SAML\";s:11:\"saml_log_in\";s:12:\"Direct login\";s:19:\"saml_login_form_txt\";s:23:\"Login to ILIAS via SAML\";s:24:\"saml_login_form_info_txt\";s:101:\"You can log in using the “Direct Login” button without having to enter your username or password.\";s:23:\"login_to_ilias_via_saml\";s:40:\"Login to ILIAS via SAML Authentification\";s:12:\"second_email\";s:13:\"Second E-Mail\";s:5:\"grade\";s:5:\"Grade\";s:14:\"edit_page_meta\";s:18:\"Edit Page Metadata\";s:28:\"position_permission_settings\";s:28:\"Orgunit-Specific Permissions\";s:23:\"org_permission_settings\";s:48:\"Permissions of Positions in Organisational Units\";s:29:\"org_op_read_learning_progress\";s:43:\"View Learning Progress of Subordinate Users\";s:21:\"org_op_manage_members\";s:26:\"Manage Subordinate Members\";s:24:\"org_op_access_enrolments\";s:21:\"View Enrolment-Status\";s:43:\"user_never_logged_in_info_threshold_err_num\";s:47:\"Only positive non decimal numbers are accepted.\";s:43:\"cron_users_without_login_del_role_whitelist\";s:14:\"Included Roles\";s:48:\"cron_users_without_login_del_role_whitelist_info\";s:89:\"The deletion will only processed for users assigned to at least one of the selected roles\";s:44:\"cron_users_without_login_del_create_date_thr\";s:9:\"Thresholt\";s:49:\"cron_users_without_login_del_create_date_thr_info\";s:88:\"All user accounts created before the defined threshold will be taken into consideration.\";s:20:\"user_never_logged_in\";s:34:\"Delete user accounts without login\";s:25:\"user_never_logged_in_info\";s:50:\"All user accounts without login at all be deleted.\";s:20:\"usr_name_undisclosed\";s:11:\"Undisclosed\";s:17:\"obj_exc_duplicate\";s:13:\"Copy Exercise\";s:18:\"obj_fold_duplicate\";s:11:\"Copy Folder\";s:16:\"fold_wizard_page\";s:22:\"Copy Folder (Step 2/2)\";s:22:\"fold_copy_threads_info\";s:71:\"Please decide which materials should be copied, linked or even omitted.\";s:28:\"settings_presentation_header\";s:12:\"Presentation\";s:8:\"obj_copa\";s:12:\"Content Page\";s:9:\"objs_copa\";s:13:\"Content Pages\";s:20:\"msg_info_blacklisted\";s:53:\"The files cannot be uploaded due to security reasons.\";s:23:\"presentation_table_more\";s:9:\"Show More\";s:19:\"mme_lost_item_title\";s:13:\"No assignment\";s:20:\"mme_lost_item_reason\";s:27:\"Item is no longer provided.\";s:7:\"obj_mme\";s:9:\"Main Menu\";s:4:\"like\";s:4:\"Like\";s:4:\"love\";s:4:\"Love\";s:7:\"dislike\";s:7:\"Dislike\";s:5:\"laugh\";s:5:\"Laugh\";s:9:\"astounded\";s:9:\"Astounded\";s:3:\"sad\";s:3:\"Sad\";s:5:\"angry\";s:5:\"Angry\";s:15:\"my_certificates\";s:15:\"My Certificates\";s:4:\"open\";s:4:\"Open\";s:7:\"lso_new\";s:21:\"New Learning Sequence\";s:7:\"lso_add\";s:21:\"Add Learning Sequence\";s:8:\"lso_edit\";s:22:\"Edit Learning Sequence\";s:10:\"lso_import\";s:24:\"Import Learning Sequence\";s:8:\"lso_copy\";s:22:\"Copy Learning Sequence\";s:7:\"obj_lso\";s:17:\"Learning Sequence\";s:8:\"objs_lso\";s:18:\"Learning Sequences\";s:17:\"obj_lso_duplicate\";s:22:\"Copy Learning Sequence\";s:21:\"lso_copy_threads_info\";s:90:\"Please decide which elements of the Learning Sequence should be copied, linked or omitted.\";s:15:\"lso_wizard_page\";s:33:\"Copy Learning Sequence (Step 2/2)\";s:12:\"il_lso_admin\";s:23:\"Learning Sequence Admin\";s:13:\"il_lso_member\";s:24:\"Learning Sequence Member\";s:13:\"unparticipate\";s:11:\"Unsubscribe\";s:11:\"participate\";s:9:\"Subscribe\";s:23:\"pagination_label_x_of_y\";s:17:\"Page %1$d of %2$d\";s:21:\"certificate_selection\";s:22:\"Origin of Certificates\";s:29:\"certificate_persistent_option\";s:28:\"Certificates of Achievements\";s:28:\"certificate_workspace_option\";s:34:\"Certificates of Personal Resources\";s:37:\"certificate_file_already_exists_error\";s:55:\"The certificate file already exists in the file system.\";s:32:\"certificate_file_not_found_error\";s:123:\"The certificate file doesn\'t exist in the file system anymore. Die Zertikatsdatei wurde im Dateisystem nicht mehr gefunden.\";s:35:\"certificate_file_input_output_error\";s:117:\"The certificate file was found but couldn\'t be deleted because of internal errors. Please contact your administrator.\";s:8:\"obj_task\";s:4:\"Task\";s:15:\"mm_organisation\";s:12:\"Organisation\";s:13:\"mm_staff_list\";s:10:\"Staff List\";s:13:\"mm_enrolments\";s:10:\"Enrolments\";s:16:\"mm_communication\";s:13:\"Communication\";s:11:\"mm_contacts\";s:8:\"Contacts\";s:7:\"mm_mail\";s:4:\"Mail\";s:7:\"mm_news\";s:4:\"News\";s:8:\"mm_notes\";s:5:\"Notes\";s:11:\"mm_comments\";s:8:\"Comments\";s:15:\"mm_achievements\";s:12:\"Achievements\";s:19:\"mm_learning_history\";s:16:\"Learning History\";s:9:\"mm_skills\";s:11:\"Competences\";s:20:\"mm_learning_progress\";s:17:\"Learning Progress\";s:9:\"mm_badges\";s:6:\"Badges\";s:17:\"mm_administration\";s:14:\"Administration\";s:13:\"mm_repository\";s:10:\"Repository\";s:12:\"mm_dashboard\";s:9:\"Dashboard\";s:17:\"mm_repo_tree_view\";s:9:\"Tree View\";s:21:\"mm_task_derived_tasks\";s:5:\"Tasks\";s:12:\"mm_favorites\";s:10:\"Favourites\";s:11:\"mm_calendar\";s:8:\"Calendar\";s:7:\"mm_tags\";s:4:\"Tags\";s:12:\"mm_portfolio\";s:9:\"Portfolio\";s:15:\"mm_certificates\";s:12:\"Certificates\";s:24:\"mm_personal_and_shared_r\";s:29:\"Personal and Shared Resources\";s:21:\"mm_personal_workspace\";s:18:\"Personal Workspace\";s:21:\"mm_repo_tree_view_act\";s:13:\"Activate Tree\";s:23:\"mm_repo_tree_view_deact\";s:15:\"Deactivate Tree\";s:28:\"nc_contact_requests_headline\";s:16:\"Contact Requests\";s:28:\"nc_contact_requests_number_s\";s:28:\"You have %s Contact Request.\";s:28:\"nc_contact_requests_number_p\";s:29:\"You have %s Contact Requests.\";s:29:\"nc_contact_requests_prop_time\";s:4:\"Time\";s:16:\"mm_rep_tree_view\";s:9:\"Tree View\";s:18:\"personal_resources\";s:18:\"Personal Resources\";s:7:\"obj_lti\";s:12:\"LTI Consumer\";s:8:\"objs_lti\";s:13:\"LTI Consumers\";s:8:\"obj_cmis\";s:9:\"xAPI/cmi5\";s:13:\"obj_cmis_desc\";s:41:\"Learning Record Store Types Configuration\";s:8:\"obj_cmix\";s:9:\"xAPI/cmi5\";s:9:\"objs_cmix\";s:17:\"Objects xAPI/cmi5\";s:8:\"obj_prgr\";s:23:\"Link to Study Programme\";s:9:\"obj_prgrs\";s:25:\"Links to Study Programmes\";s:17:\"msg_unknown_value\";s:33:\"An unknown value has been passed.\";s:8:\"obj_lsos\";s:18:\"Learning Sequences\";s:13:\"obj_lsos_desc\";s:39:\"General settings for Learning Sequences\";s:16:\"collapse_content\";s:16:\"Collapse Content\";s:14:\"expand_content\";s:14:\"Expand Content\";s:9:\"briefcase\";s:16:\"Background Tasks\";s:14:\"sort_ascending\";s:14:\"Sort Ascending\";s:15:\"sort_descending\";s:15:\"Sort Descending\";s:18:\"show_who_is_online\";s:18:\"Show who is online\";s:4:\"tags\";s:4:\"Tags\";s:8:\"comments\";s:8:\"Comments\";s:9:\"eyeclosed\";s:47:\"Eye Closed - Click to hide the input\'s contents\";s:9:\"eyeopened\";s:47:\"Eye Open - Click to reveal the input\'s contents\";s:9:\"show_more\";s:9:\"Show More\";s:8:\"disclose\";s:8:\"Disclose\";s:15:\"switch_language\";s:15:\"Switch Language\";s:9:\"objs_prgr\";s:25:\"Links to Study Programmes\";s:20:\"lso_admin_form_title\";s:8:\"Settings\";s:21:\"lso_admin_form_byline\";s:39:\"General Settings for Learning Sequences\";s:24:\"lso_admin_interval_label\";s:44:\"Learning Progress Polling Interval (seconds)\";s:25:\"lso_admin_interval_byline\";s:181:\"Poll Learning Progress every x seconds. Be careful! A low value will increase server-requests and have an impact on overall system performance. Please choose highest value possible!\";}'); +INSERT INTO `lng_modules` VALUES ('common','en','a:2505:{s:13:\"obj_nots_desc\";s:14:\"Notes settings\";s:8:\"obj_nots\";s:5:\"Notes\";s:13:\"obj_coms_desc\";s:17:\"Comments settings\";s:8:\"obj_coms\";s:8:\"Comments\";s:5:\"tools\";s:5:\"Tools\";s:4:\"more\";s:4:\"More\";s:13:\"obj_lhts_desc\";s:25:\"Learning history settings\";s:8:\"obj_lhts\";s:16:\"Learning History\";s:13:\"obj_dshs_desc\";s:18:\"Dashboard settings\";s:8:\"obj_dshs\";s:9:\"Dashboard\";s:13:\"obj_prss_desc\";s:27:\"Personal resources settings\";s:8:\"obj_prss\";s:18:\"Personal Resources\";s:19:\"msg_wrong_filetypes\";s:20:\"Allowed Files-Types:\";s:31:\"session_mail_subject_registered\";s:42:\"Registration of user \"%s\" for session \"%s\"\";s:29:\"session_mail_subject_deletion\";s:45:\"Deregistration of user \"%s\" from session \"%s\"\";s:28:\"session_mail_subject_entered\";s:36:\"Joining of user \"%s\" in session \"%s\"\";s:21:\"register_notification\";s:34:\"\"%s\" has applied for session \"%s\".\";s:21:\"deletion_notification\";s:49:\"\"%s\" has canceled the attendance of session \"%s\".\";s:20:\"entered_notification\";s:33:\"\"%s\" has joined the session \"%s\".\";s:8:\"obj_ltis\";s:3:\"LTI\";s:13:\"obj_ltis_desc\";s:31:\"Learning Tools Interoperability\";s:11:\"lti_outcome\";s:36:\"LTI Lernfortschritt Benachrichtigung\";s:16:\"lti_outcome_info\";s:72:\"Sendet den Lernfortschrittstatus von LTI-Benutzern an LTI Tool Consumer.\";s:27:\"pwsp_recalculate_disk_quota\";s:47:\"Personal Resources: Recalculation of Disk Quota\";s:32:\"pwsp_recalculate_disk_quota_desc\";s:62:\"Recalculates all disk quota values for the personal resources.\";s:18:\"3rd_party_software\";s:18:\"3rd party software\";s:13:\"absolute_path\";s:13:\"Absolute Path\";s:20:\"accept_usr_agreement\";s:24:\"Accept terms of service?\";s:14:\"access_expired\";s:7:\"expired\";s:19:\"access_free_granted\";s:44:\"Set the selected user(s) to unlimited access\";s:11:\"access_from\";s:13:\"Access (from)\";s:13:\"access_public\";s:6:\"Public\";s:17:\"access_restricted\";s:42:\"Set the selected user(s) to limited access\";s:12:\"access_scope\";s:6:\"Access\";s:16:\"access_unlimited\";s:9:\"Unlimited\";s:12:\"access_until\";s:11:\"Valid until\";s:12:\"access_users\";s:15:\"Logged in Users\";s:6:\"access\";s:6:\"Access\";s:28:\"accesscount_registered_users\";s:38:\"Read by number of distinct ILIAS users\";s:10:\"accessFree\";s:25:\"Remove \'Valid Until\' Date\";s:14:\"accessRestrict\";s:22:\"Set \'Valid Until\' Date\";s:20:\"account_expires_body\";s:43:\"Your account is limited, it will expire at:\";s:23:\"account_expires_subject\";s:20:\"Your account expires\";s:7:\"account\";s:10:\"My Account\";s:14:\"action_aborted\";s:14:\"Action aborted\";s:6:\"action\";s:6:\"Action\";s:7:\"actions\";s:7:\"Actions\";s:27:\"activate_assessment_logging\";s:36:\"Activate Test and Assessment Logging\";s:14:\"activate_https\";s:36:\"HTTPS handling by ILIAS
(Login)\";s:17:\"activate_tracking\";s:10:\"Activation\";s:8:\"activate\";s:10:\"Set Active\";s:10:\"activation\";s:12:\"Edit Timings\";s:6:\"active\";s:6:\"Active\";s:13:\"add_condition\";s:16:\"Add Precondition\";s:10:\"add_member\";s:10:\"Add Member\";s:15:\"add_member_role\";s:15:\"Add Member Role\";s:26:\"add_new_user_defined_field\";s:20:\"Add New Custom Field\";s:8:\"add_note\";s:8:\"Add Note\";s:13:\"add_parameter\";s:13:\"New Parameter\";s:8:\"add_role\";s:8:\"Add Role\";s:15:\"add_translation\";s:15:\"Add translation\";s:22:\"add_user_defined_field\";s:13:\"Add New Field\";s:8:\"add_user\";s:14:\"Add Local User\";s:3:\"add\";s:3:\"Add\";s:19:\"added_new_condition\";s:22:\"Created new condition.\";s:15:\"additional_info\";s:22:\"Additional Information\";s:7:\"address\";s:7:\"Address\";s:16:\"admin_force_noti\";s:19:\"Notification active\";s:18:\"administrate_users\";s:25:\"Local User Administration\";s:14:\"administration\";s:14:\"Administration\";s:13:\"administrator\";s:13:\"Administrator\";s:5:\"adopt\";s:5:\"Adopt\";s:32:\"advanced_editing_allow_html_tags\";s:45:\"Allow the selected HTML tags for text editing\";s:36:\"advanced_editing_assessment_settings\";s:56:\"Allowed HTML Tags for the ILIAS Test and Assessment tool\";s:34:\"advanced_editing_frm_post_settings\";s:19:\"Forum Post Settings\";s:38:\"advanced_editing_rep_page_editing_desc\";s:135:\"This feature allows adding text/media to pages of a category, course, group or folder. If deactivated, existing content will be hidden.\";s:33:\"advanced_editing_rep_page_editing\";s:36:\"Enable Content Editing in Repository\";s:30:\"advanced_editing_required_tags\";s:40:\"The following HTML tags are required: %s\";s:32:\"advanced_editing_survey_settings\";s:43:\"Allowed HTML Tags for the ILIAS survey tool\";s:24:\"adve_assessment_settings\";s:28:\"Test and Assessment Settings\";s:22:\"adve_frm_post_settings\";s:11:\"Forum Posts\";s:21:\"adve_general_settings\";s:16:\"General Settings\";s:20:\"adve_survey_settings\";s:15:\"Survey Settings\";s:10:\"agree_date\";s:9:\"Agreed on\";s:16:\"all_global_roles\";s:12:\"Global roles\";s:15:\"all_local_roles\";s:17:\"Local roles (all)\";s:11:\"all_objects\";s:11:\"All Objects\";s:9:\"all_roles\";s:9:\"All Roles\";s:10:\"all_topics\";s:10:\"All Topics\";s:9:\"all_users\";s:9:\"All Users\";s:18:\"allow_assign_users\";s:47:\"Allow user assignment for local administrators.\";s:20:\"allow_override_alert\";s:50:\"Rules for .htaccess are not interpreted correctly.\";s:14:\"allow_register\";s:44:\"Available in registration form for new users\";s:23:\"already_delivered_files\";s:15:\"Submitted Files\";s:3:\"and\";s:3:\"and\";s:9:\"anonymous\";s:9:\"Anonymous\";s:7:\"answers\";s:7:\"Answers\";s:12:\"any_language\";s:12:\"Any language\";s:21:\"application_completed\";s:23:\"Application is complete\";s:16:\"application_date\";s:16:\"Application Date\";s:12:\"applications\";s:12:\"Applications\";s:12:\"apply_filter\";s:12:\"Apply Filter\";s:5:\"apply\";s:5:\"Apply\";s:11:\"appointment\";s:11:\"Appointment\";s:12:\"approve_date\";s:11:\"Approved on\";s:17:\"approve_recipient\";s:20:\"Login ID of Approver\";s:14:\"archive_broken\";s:36:\"Archive seems to be broken or empty.\";s:7:\"archive\";s:7:\"Archive\";s:12:\"are_you_sure\";s:13:\"Are you sure?\";s:13:\"ass_log_admin\";s:23:\"Log Data Administration\";s:22:\"ass_log_count_datasets\";s:11:\"Log Entries\";s:22:\"ass_log_delete_entries\";s:18:\"Delete Log Entries\";s:27:\"ass_log_delete_no_selection\";s:54:\"Please select at least one test to delete the Log Data\";s:15:\"ass_log_deleted\";s:52:\"The Log Data for the selected tests has been deleted\";s:14:\"ass_log_output\";s:15:\"Log Data Output\";s:26:\"assessment_imap_line_color\";s:20:\"Image Map Line Color\";s:23:\"assessment_log_datetime\";s:9:\"Date/Time\";s:22:\"assessment_log_deleted\";s:71:\"The Test and Assessment log data has been deleted in the administration\";s:23:\"assessment_log_for_test\";s:8:\"For test\";s:26:\"assessment_log_log_entries\";s:11:\"log entries\";s:22:\"assessment_log_logging\";s:7:\"Logging\";s:38:\"assessment_log_manual_scoring_activate\";s:27:\"Activate Manual Scoring for\";s:34:\"assessment_log_manual_scoring_desc\";s:275:\"If the Manual Scoring is activated for a question type, all questions of this question type could be manually scored by a test author. Please be careful with these settings, because late manual scoring of automatically scored question types could cause even judical problems!\";s:23:\"assessment_log_question\";s:8:\"Question\";s:19:\"assessment_log_text\";s:11:\"Log message\";s:14:\"assessment_log\";s:59:\"Create a Test and Assessment log for a specific time period\";s:38:\"assessment_settings_reporting_language\";s:18:\"Reporting language\";s:31:\"assf_allowed_questiontypes_desc\";s:224:\"All the checked question types will be available in this ILIAS installation. If you don\'t want to allow the creation of a certain question type in this installation, you must remove the selection in the associated check box.\";s:26:\"assf_allowed_questiontypes\";s:24:\"Available Question Types\";s:18:\"assf_questiontypes\";s:17:\"Question Settings\";s:18:\"assign_global_role\";s:21:\"Assign to Global Role\";s:17:\"assign_local_role\";s:20:\"Assign to Local Role\";s:6:\"assign\";s:6:\"Assign\";s:16:\"assigned_members\";s:16:\"Assigned Members\";s:14:\"assigned_roles\";s:14:\"Assigned Roles\";s:15:\"associated_user\";s:15:\"associated User\";s:18:\"at_least_one_style\";s:41:\"At least one style must remain activated.\";s:10:\"attachment\";s:10:\"Attachment\";s:11:\"attachments\";s:11:\"Attachments\";s:8:\"attempts\";s:8:\"Attempts\";s:17:\"auth_active_roles\";s:43:\"Global roles available on registration form\";s:16:\"auth_allow_local\";s:26:\"Allow Local Authentication\";s:25:\"auth_cas_allow_local_desc\";s:91:\"This allows CAS users to authenticate with their local ILIAS username and a local password.\";s:18:\"auth_cas_auth_desc\";s:66:\"CAS requires PHP 4.3.1 or higher with CURL support (7.5 or higher)\";s:13:\"auth_cas_auth\";s:28:\"Configure CAS Authentication\";s:18:\"auth_cas_port_desc\";s:75:\"E.g. 443 if the full CAS server URI is https://auth.yourserver.com:443/cas/\";s:20:\"auth_cas_server_desc\";s:91:\"E.g. auth.yourserver.com if the full CAS server URI is https://auth.yourserver.com:443/cas/\";s:17:\"auth_cas_uri_desc\";s:86:\"Local URI, e.g. cas if the full CAS server URI is https://auth.yourserver.com:443/cas/\";s:8:\"auth_cas\";s:3:\"CAS\";s:14:\"auth_configure\";s:12:\"configure...\";s:17:\"auth_create_users\";s:39:\"Create non-existing users automatically\";s:28:\"auth_default_mode_changed_to\";s:38:\"Default authentication mode changed to\";s:12:\"auth_default\";s:15:\"Default setting\";s:8:\"auth_ecs\";s:3:\"ECS\";s:16:\"auth_ldap_enable\";s:19:\"Enable LDAP support\";s:24:\"auth_ldap_migration_info\";s:119:\"Activate this option to give new users the possibility to migrate their existing ILIAS accounts to LDAP authentication.\";s:19:\"auth_ldap_migration\";s:17:\"Account Migration\";s:9:\"auth_ldap\";s:4:\"LDAP\";s:10:\"auth_local\";s:10:\"ILIAS Auth\";s:23:\"auth_login_instructions\";s:32:\"Instructions shown on login page\";s:21:\"auth_mode_not_changed\";s:17:\"(Nothing changed)\";s:23:\"auth_mode_roles_changed\";s:41:\"Changed authentication mode for this Role\";s:9:\"auth_mode\";s:19:\"Authentication mode\";s:26:\"auth_new_account_mail_desc\";s:158:\"Send new account e-mail to user, if user is generated automatically. A password will only be generated, if ‘Allow Local Authentication’ is also activated.\";s:16:\"auth_per_default\";s:11:\"Per Default\";s:21:\"auth_radius_configure\";s:31:\"Configure RADIUS-Authentication\";s:18:\"auth_radius_enable\";s:21:\"Enable RADIUS support\";s:26:\"auth_radius_not_configured\";s:28:\"RADIUS is not configured yet\";s:16:\"auth_radius_port\";s:4:\"Port\";s:23:\"auth_radius_server_desc\";s:108:\"You may add multiple servers with commas separated. Servers are rotated in Round robin fashion when queried.\";s:18:\"auth_radius_server\";s:7:\"Servers\";s:25:\"auth_radius_shared_secret\";s:13:\"Shared secret\";s:11:\"auth_radius\";s:6:\"RADIUS\";s:26:\"auth_remark_non_local_auth\";s:122:\"When selecting another authentication mode than ILIAS database, you may not change user\'s login name and password anymore.\";s:19:\"auth_role_auth_mode\";s:19:\"Authentication mode\";s:11:\"auth_script\";s:6:\"Custom\";s:11:\"auth_select\";s:26:\"Select authentication mode\";s:14:\"auth_selection\";s:13:\"Login Options\";s:13:\"auth_settings\";s:23:\"Authentication Settings\";s:22:\"auth_shib_instructions\";s:93:\"Be sure to read the README for instructions on how to configure Shibboleth support for ILIAS.\";s:24:\"auth_shib_not_configured\";s:32:\"Shibboleth is not configured yet\";s:9:\"auth_shib\";s:10:\"Shibboleth\";s:15:\"auth_shibboleth\";s:10:\"Shibboleth\";s:26:\"auth_soap_allow_local_desc\";s:92:\"This allows SOAP users to authenticate with their local ILIAS username and a local password.\";s:19:\"auth_soap_auth_desc\";s:95:\"This settings deal only with SOAP based user authentication, not with the ILIAS SOAP interface.\";s:14:\"auth_soap_auth\";s:29:\"Configure SOAP Authentication\";s:27:\"auth_soap_create_users_desc\";s:137:\"Creates automatically an ILIAS user account, for users that successfully authenticated against SOAP, without having an ILIAS account yet.\";s:24:\"auth_soap_namespace_desc\";s:66:\"As defined in WSDL. Must be specified, if .NET SOAP style is used.\";s:19:\"auth_soap_namespace\";s:9:\"Namespace\";s:19:\"auth_soap_port_desc\";s:87:\"E.g. 8080 if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php\";s:21:\"auth_soap_server_desc\";s:102:\"E.g. auth.yourserver.com if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php\";s:24:\"auth_soap_settings_saved\";s:34:\"SOAP authentication settings saved\";s:18:\"auth_soap_uri_desc\";s:108:\"Local URI, e.g. dir/server.php if the full SOAP server URI is http://auth.yourserver.com:8080/dir/server.php\";s:20:\"auth_soap_use_dotnet\";s:19:\"Use .NET SOAP Style\";s:19:\"auth_soap_use_https\";s:9:\"Use HTTPS\";s:32:\"auth_soap_user_default_role_desc\";s:58:\"This role is assigned to automatically created SOAP users.\";s:9:\"auth_soap\";s:4:\"SOAP\";s:22:\"auth_user_default_role\";s:12:\"Default Role\";s:18:\"authenticate_ilias\";s:27:\"ILIAS Native Authentication\";s:23:\"authentication_settings\";s:14:\"Authentication\";s:6:\"author\";s:6:\"Author\";s:14:\"authoring_mode\";s:14:\"Authoring Mode\";s:7:\"authors\";s:7:\"Authors\";s:9:\"available\";s:9:\"Available\";s:4:\"awra\";s:14:\"Who is online?\";s:19:\"back_to_crs_content\";s:22:\"Back to Course Content\";s:20:\"back_to_fold_content\";s:22:\"Back to Folder Content\";s:19:\"back_to_grp_content\";s:21:\"Back to Group Content\";s:4:\"back\";s:4:\"Back\";s:6:\"basedn\";s:6:\"BaseDN\";s:14:\"basic_settings\";s:14:\"Basic Settings\";s:6:\"before\";s:6:\"before\";s:9:\"benchmark\";s:9:\"Benchmark\";s:10:\"benchmarks\";s:10:\"Benchmarks\";s:8:\"bib_data\";s:20:\"Bibliographical Data\";s:8:\"birthday\";s:8:\"Birthday\";s:13:\"bkm_import_ok\";s:59:\"Successfully imported %d bookmarks and %d bookmark folders.\";s:10:\"bkm_import\";s:16:\"Import Bookmarks\";s:12:\"bkm_sendmail\";s:18:\"Send as attachment\";s:5:\"block\";s:5:\"Block\";s:15:\"bm_add_to_ilias\";s:22:\"Add to ILIAS Bookmarks\";s:2:\"bm\";s:8:\"Bookmark\";s:3:\"bmf\";s:15:\"Bookmark Folder\";s:4:\"bold\";s:4:\"Bold\";s:8:\"bookings\";s:8:\"Bookings\";s:14:\"bookmark_added\";s:30:\"The Bookmark has been created.\";s:19:\"bookmark_folder_new\";s:19:\"New Bookmark Folder\";s:12:\"bookmark_new\";s:12:\"New Bookmark\";s:15:\"bookmark_target\";s:6:\"Target\";s:12:\"bookmarks_of\";s:12:\"Bookmarks of\";s:9:\"bookmarks\";s:9:\"Bookmarks\";s:21:\"breadcrumb_navigation\";s:21:\"Breadcrumb Navigation\";s:7:\"btn_add\";s:3:\"Add\";s:8:\"btn_back\";s:4:\"Back\";s:8:\"btn_next\";s:8:\"Continue\";s:12:\"btn_previous\";s:4:\"Back\";s:17:\"btn_remove_system\";s:18:\"Remove from System\";s:12:\"btn_undelete\";s:7:\"Restore\";s:2:\"by\";s:2:\"By\";s:5:\"bytes\";s:5:\"Bytes\";s:8:\"cal_from\";s:5:\"From:\";s:9:\"cal_until\";s:6:\"Until:\";s:8:\"calendar\";s:8:\"Calendar\";s:6:\"cancel\";s:6:\"Cancel\";s:15:\"cannot_find_xml\";s:25:\"Cannot find any XML-file.\";s:32:\"cannot_uninstall_language_in_use\";s:51:\"You cannot uninstall the language currently in use!\";s:31:\"cannot_uninstall_systemlanguage\";s:41:\"You cannot uninstall the system language!\";s:17:\"cannot_unzip_file\";s:19:\"Cannot unpack file.\";s:33:\"cant_deactivate_if_users_assigned\";s:70:\"You cannot deactivate a style if there are still users assigned to it.\";s:7:\"cat_add\";s:12:\"Add Category\";s:9:\"cat_added\";s:14:\"Category added\";s:21:\"cat_copy_threads_info\";s:76:\"Please decide which category items should be copied, linked or even omitted.\";s:8:\"cat_edit\";s:17:\"Category Settings\";s:7:\"cat_new\";s:12:\"New Category\";s:15:\"cat_wizard_page\";s:24:\"Copy Category (Step 2/2)\";s:3:\"cat\";s:8:\"Category\";s:19:\"categories_imported\";s:25:\"Category import complete.\";s:10:\"categories\";s:10:\"Categories\";s:14:\"catr_edit_info\";s:51:\"Please choose one category for creating a new link.\";s:8:\"catr_new\";s:20:\"Create Category Link\";s:4:\"catr\";s:13:\"Category Link\";s:2:\"cc\";s:2:\"CC\";s:11:\"certificate\";s:11:\"Certificate\";s:17:\"change_assignment\";s:17:\"Change assignment\";s:19:\"change_header_title\";s:17:\"Edit Header Title\";s:12:\"change_owner\";s:12:\"Change owner\";s:21:\"change_sort_direction\";s:21:\"Change sort direction\";s:6:\"change\";s:6:\"Change\";s:10:\"changeable\";s:21:\"Changeable in Profile\";s:10:\"changed_to\";s:10:\"changed to\";s:36:\"changing_loginname_not_possible_info\";s:82:\"You changed your login name at last at %s. The next change can be performed at %s.\";s:7:\"chapter\";s:7:\"Chapter\";s:10:\"characters\";s:10:\"characters\";s:30:\"chat_enter_public_room_tooltip\";s:18:\"Enter public chat.\";s:22:\"chat_enter_public_room\";s:11:\"Public Chat\";s:31:\"chat_invite_public_room_tooltip\";s:22:\"Invite to public chat.\";s:23:\"chat_invite_public_room\";s:11:\"Public Chat\";s:17:\"chat_users_active\";s:12:\"Active users\";s:9:\"check_all\";s:9:\"Check all\";s:14:\"check_langfile\";s:31:\"Please check your language file\";s:15:\"check_languages\";s:19:\"Check All Languages\";s:15:\"check_link_desc\";s:91:\"If enabled all external links in ILIAS learning modules will be checked if they are active.\";s:10:\"check_link\";s:13:\"Weblink check\";s:24:\"check_user_accounts_desc\";s:212:\"If enabled, all users whose account expires will be informed by e-mail two weeks before. Furthermore all users which have not confirmed their account after a registration with e-mail confirmation will be deleted.\";s:19:\"check_user_accounts\";s:19:\"Check user accounts\";s:24:\"check_web_resources_desc\";s:59:\"If enabled all Weblinks will be checked if they are active.\";s:19:\"check_web_resources\";s:14:\"Check Weblinks\";s:5:\"check\";s:5:\"Check\";s:13:\"checked_files\";s:16:\"Importable files\";s:7:\"checked\";s:7:\"Checked\";s:32:\"chg_ilias_and_webfolder_password\";s:25:\"Change Webfolder Password\";s:18:\"chg_ilias_password\";s:21:\"Change ILIAS Password\";s:12:\"chg_password\";s:15:\"Change Password\";s:15:\"choose_language\";s:20:\"Choose Your Language\";s:24:\"choose_only_one_language\";s:31:\"Please choose only one language\";s:13:\"chown_warning\";s:84:\"Attention, you may loose access permissions on this object after changing the owner.\";s:4:\"city\";s:11:\"City, State\";s:12:\"cleaned_file\";s:22:\"File has been cleaned.\";s:15:\"cleaning_failed\";s:16:\"Cleaning failed.\";s:15:\"clear_clipboard\";s:15:\"Clear Clipboard\";s:5:\"clear\";s:5:\"Clear\";s:9:\"client_id\";s:9:\"Client ID\";s:9:\"client_ip\";s:9:\"Client IP\";s:6:\"client\";s:6:\"Client\";s:9:\"clipboard\";s:9:\"Clipboard\";s:5:\"close\";s:5:\"Close\";s:7:\"cnt_new\";s:8:\"(%s New)\";s:12:\"collapse_all\";s:12:\"Collapse All\";s:8:\"collapse\";s:8:\"Collapse\";s:9:\"collapsed\";s:9:\"Collapsed\";s:7:\"columns\";s:7:\"Columns\";s:15:\"comma_separated\";s:15:\"Comma Separated\";s:7:\"comment\";s:7:\"Comment\";s:7:\"compose\";s:7:\"Compose\";s:17:\"cond_ref_handling\";s:13:\"Link Settings\";s:15:\"cond_ref_shared\";s:34:\"Shared Preconditions for all Links\";s:15:\"cond_ref_unique\";s:30:\"Unique Preconditions for Links\";s:26:\"condition_already_assigned\";s:24:\"Object already assigned.\";s:24:\"condition_circle_created\";s:70:\"This association is not possible, since the objects would interdepend.\";s:17:\"condition_deleted\";s:18:\"Condition deleted.\";s:18:\"condition_finished\";s:8:\"Finished\";s:22:\"condition_not_finished\";s:12:\"Not finished\";s:16:\"condition_passed\";s:6:\"Passed\";s:23:\"condition_select_object\";s:25:\"Please select one object.\";s:30:\"condition_accredited_or_passed\";s:20:\"Accredited or Passed\";s:9:\"condition\";s:9:\"Condition\";s:18:\"conditions_updated\";s:16:\"Conditions saved\";s:24:\"confirm_delete_parameter\";s:43:\"Do you really want to delete the parameter?\";s:7:\"confirm\";s:7:\"Confirm\";s:12:\"confirmation\";s:12:\"Confirmation\";s:17:\"conflict_handling\";s:17:\"Conflict handling\";s:12:\"contact_data\";s:19:\"Contact Information\";s:7:\"contact\";s:7:\"Contact\";s:18:\"container_no_items\";s:22:\"No Materials Available\";s:9:\"container\";s:9:\"Container\";s:13:\"content_frame\";s:13:\"Content Frame\";s:14:\"content_styles\";s:14:\"Content Styles\";s:7:\"content\";s:7:\"Content\";s:7:\"context\";s:7:\"Context\";s:13:\"continue_work\";s:8:\"Continue\";s:6:\"contra\";s:6:\"Contra\";s:8:\"copy_all\";s:8:\"Copy all\";s:16:\"copy_n_of_suffix\";s:13:\"- Copy (%1$s)\";s:14:\"copy_of_suffix\";s:6:\"- Copy\";s:7:\"copy_of\";s:7:\"Copy of\";s:19:\"copy_selected_items\";s:4:\"Copy\";s:4:\"copy\";s:4:\"Copy\";s:11:\"copyChapter\";s:4:\"Copy\";s:8:\"copyPage\";s:4:\"Copy\";s:5:\"count\";s:5:\"Count\";s:7:\"country\";s:7:\"Country\";s:6:\"course\";s:6:\"Course\";s:7:\"courses\";s:7:\"Courses\";s:11:\"create_date\";s:10:\"Created on\";s:18:\"create_export_file\";s:18:\"Create export file\";s:17:\"create_stylesheet\";s:12:\"Create Style\";s:6:\"create\";s:6:\"Create\";s:7:\"created\";s:13:\"Creation Date\";s:28:\"cron_forum_notification_desc\";s:122:\"If enabled, all users, who want to be informed about new posts in specified forum threads, will get notifications by mail.\";s:33:\"cron_forum_notification_crob_desc\";s:217:\"If enabled, all users who have enabled notifications for certain forums or forum threads will daily receive a notification mail about all new or changed posts but no immediate notification for each submitted posting.\";s:23:\"cron_forum_notification\";s:24:\"Send Forum Notifications\";s:9:\"cron_jobs\";s:9:\"Cron Jobs\";s:22:\"cron_lucene_index_info\";s:122:\"If enabled, the lucene search index will be updated. Please configure the lucene server at ’Administration -> Search’.\";s:17:\"cron_lucene_index\";s:26:\"Update Lucene search index\";s:27:\"cron_mail_notification_cron\";s:22:\"regularly per cron job\";s:27:\"cron_mail_notification_desc\";s:165:\"If enabled, all users, who want to be informed about new mail, will get notifications by external mail. Please enable the option ‘%s’ first to use this function.\";s:28:\"cron_mail_notification_never\";s:5:\"never\";s:22:\"cron_mail_notification\";s:22:\"New Mail Notifications\";s:28:\"crs_activation_start_invalid\";s:43:\"The start and the finish time is not valid.\";s:7:\"crs_add\";s:10:\"Add Course\";s:9:\"crs_added\";s:12:\"Course added\";s:12:\"crs_archives\";s:8:\"Archives\";s:23:\"crs_cancel_waiting_list\";s:75:\"Do you really want to remove yourself from the waiting list of course \"%s\"?\";s:21:\"crs_copy_threads_info\";s:78:\"Please decide which course materials should be copied, linked or even omitted.\";s:8:\"crs_edit\";s:11:\"Edit Course\";s:21:\"crs_member_not_passed\";s:10:\"Not passed\";s:17:\"crs_member_passed\";s:6:\"Passed\";s:19:\"crs_members_gallery\";s:22:\"Course Members Gallery\";s:7:\"crs_new\";s:10:\"New Course\";s:29:\"crs_removed_from_waiting_list\";s:60:\"You have been detached from the waiting list of course \"%s\".\";s:18:\"crs_status_blocked\";s:16:\"[Access refused]\";s:18:\"crs_status_pending\";s:26:\"[Waiting for registration]\";s:24:\"crs_subscribers_assigned\";s:20:\"Assigned new user(s)\";s:9:\"crs_title\";s:12:\"Course Title\";s:15:\"crs_unsubscribe\";s:23:\"Unsubscribe from Course\";s:15:\"crs_wizard_page\";s:22:\"Copy Course (Step 2/2)\";s:3:\"crs\";s:6:\"Course\";s:14:\"crsr_edit_info\";s:49:\"Please choose one course for creating a new link.\";s:8:\"crsr_new\";s:18:\"Create Course Link\";s:4:\"crsr\";s:11:\"Course Link\";s:10:\"csv_export\";s:10:\"CSV-Export\";s:16:\"current_ip_alert\";s:97:\"Notice: if you enter a wrong ip you won\'t be able to access the system with this profile anymore.\";s:10:\"current_ip\";s:11:\"Current IP:\";s:16:\"current_password\";s:16:\"Current Password\";s:3:\"cut\";s:3:\"Cut\";s:7:\"cutPage\";s:3:\"Cut\";s:5:\"daily\";s:5:\"daily\";s:16:\"database_version\";s:24:\"Current Database Version\";s:8:\"database\";s:8:\"Database\";s:7:\"dataset\";s:4:\"Item\";s:4:\"date\";s:4:\"Date\";s:10:\"dateplaner\";s:8:\"Calendar\";s:3:\"day\";s:3:\"Day\";s:4:\"days\";s:4:\"Days\";s:7:\"db_host\";s:13:\"Database Host\";s:7:\"db_name\";s:13:\"Database Name\";s:14:\"db_need_update\";s:25:\"Database needs an update!\";s:7:\"db_pass\";s:17:\"Database Password\";s:7:\"db_type\";s:13:\"Database Type\";s:7:\"db_user\";s:13:\"Database User\";s:10:\"db_version\";s:16:\"Database Version\";s:10:\"deactivate\";s:12:\"Set Inactive\";s:17:\"decrease_attempts\";s:12:\"Attempts - 1\";s:19:\"def_repository_view\";s:23:\"Default repository view\";s:22:\"default_auth_mode_info\";s:78:\"Please choose the authentication method that is preselected on the login page.\";s:17:\"default_auth_mode\";s:29:\"Default Authentication Method\";s:16:\"default_language\";s:16:\"Default Language\";s:21:\"default_perm_settings\";s:19:\"Default Permissions\";s:12:\"default_role\";s:12:\"Default Role\";s:13:\"default_roles\";s:13:\"Default Roles\";s:18:\"default_skin_style\";s:20:\"Default Skin / Style\";s:12:\"default_skin\";s:12:\"Default Skin\";s:13:\"default_style\";s:13:\"Default Style\";s:7:\"default\";s:7:\"Default\";s:8:\"defaults\";s:8:\"Defaults\";s:20:\"delete_existing_file\";s:20:\"Delete Existing File\";s:16:\"delete_parameter\";s:16:\"Delete Parameter\";s:21:\"delete_selected_items\";s:6:\"Delete\";s:6:\"delete\";s:6:\"Delete\";s:12:\"deleted_user\";s:25:\"The user has been deleted\";s:13:\"deleted_users\";s:13:\"Deleted users\";s:7:\"deleted\";s:7:\"Deleted\";s:7:\"deliver\";s:7:\"Deliver\";s:10:\"department\";s:10:\"Department\";s:4:\"desc\";s:11:\"Description\";s:11:\"description\";s:11:\"Description\";s:16:\"desired_password\";s:16:\"Desired Password\";s:7:\"details\";s:7:\"Details\";s:13:\"disable_check\";s:13:\"Disable check\";s:22:\"disable_ext_lang_maint\";s:28:\"Disable Extended Maintenance\";s:24:\"disable_hide_user_toggle\";s:31:\"Member is allowed to deactivate\";s:7:\"disable\";s:7:\"disable\";s:8:\"disabled\";s:8:\"Disabled\";s:20:\"disk_quota_is_1_by_2\";s:66:\"The effective disk quota is %1$s due to membership in role \"%2$s\".\";s:33:\"disk_quota_is_1_instead_of_2_by_3\";s:136:\"The effective disk quota is %1$s as defined in this user account. The disk quota by role membership would have been %2$s by role \"%3$s\".\";s:28:\"disk_quota_is_unlimited_by_1\";s:71:\"The effective disk quota is unlimited due to membership in role \"%1$s\".\";s:34:\"disk_quota_last_reminder_sent_desc\";s:93:\"Last date on which the user has received a reminder mail because of exceeding the disk quota.\";s:29:\"disk_quota_last_reminder_sent\";s:24:\"Last quota reminder sent\";s:23:\"disk_quota_on_role_desc\";s:93:\"The disk quota specified on a role affects all user accounts which are assigned to this role.\";s:29:\"disk_quota_reminder_mail_desc\";s:295:\"The disk quota reminder mail is sent to active users who have exceeded their disk quota. This e-mail is sent once every day to the users when the daily ILIAS cron job is run. Users who already have received a reminder e-mail receive it again every 7 days as long as they exceed their disk quota.\";s:24:\"disk_quota_reminder_mail\";s:13:\"Reminder mail\";s:29:\"disk_quota_report_not_run_yet\";s:110:\"No disk quota report available. The daily cron job which determines the disk usage needs to be executed first.\";s:17:\"disk_quota_report\";s:17:\"Disk Quota Report\";s:10:\"disk_quota\";s:10:\"Disk Quota\";s:18:\"disk_usage_details\";s:18:\"Disk Usage Details\";s:10:\"disk_usage\";s:10:\"Disk Usage\";s:6:\"domain\";s:6:\"Domain\";s:4:\"down\";s:4:\"Down\";s:27:\"download_all_returned_files\";s:24:\"Download all Submissions\";s:36:\"download_with_uploaded_filename_info\";s:478:\"Select this option exclusively for backwards compatibility with ILIAS 3.9 and older versions: When this option is selected, the filename of a downloaded file is equal to the filename that was used for uploading the file into ILIAS. If this option is not selected, the filename of a downloaded file is equal to the title of the file object in ILIAS. This option does not affect WebDAV. For WebDAV the filename of a downloaded file is always equal to the title of the file object.\";s:31:\"download_with_uploaded_filename\";s:31:\"Download with uploaded filename\";s:8:\"download\";s:8:\"Download\";s:20:\"downloading_settings\";s:17:\"Download Settings\";s:6:\"drafts\";s:6:\"Drafts\";s:17:\"edit_cat_settings\";s:26:\"Advanced Category Settings\";s:12:\"edit_content\";s:12:\"Edit Content\";s:13:\"edit_grouping\";s:26:\"Edit Membership Limitation\";s:15:\"edit_operations\";s:15:\"Edit Operations\";s:17:\"edit_page_content\";s:17:\"Edit Page Content\";s:9:\"edit_page\";s:9:\"Edit Page\";s:15:\"edit_properties\";s:15:\"Edit Properties\";s:15:\"edit_stylesheet\";s:10:\"Edit Style\";s:4:\"edit\";s:4:\"Edit\";s:6:\"editor\";s:6:\"Editor\";s:15:\"email_not_valid\";s:44:\"The e-mail address you entered is not valid!\";s:5:\"email\";s:6:\"E-Mail\";s:15:\"enable_calendar\";s:15:\"Enable Calendar\";s:24:\"enable_custom_icons_info\";s:173:\"This allows you to define custom icons for single container objects and the content page object. The properties section of these objects will provide an image upload dialog.\";s:19:\"enable_custom_icons\";s:19:\"Enable custom icons\";s:31:\"enable_disk_quota_reminder_mail\";s:30:\"Send disk quota reminder mails\";s:27:\"enable_download_folder_info\";s:65:\"Enables a download option inside the action drop-down of folders.\";s:22:\"enable_download_folder\";s:37:\"\"Download Action for Folders\" enabled\";s:27:\"enable_fora_statistics_desc\";s:59:\"If disabled, nobody is able to access the forum statistics.\";s:22:\"enable_fora_statistics\";s:26:\"Enable Statistics in Forum\";s:23:\"enable_hide_user_toggle\";s:35:\"Member is not allowed to deactivate\";s:30:\"enable_hist_user_comments_desc\";s:73:\"Give authors the opportunity to add comments to the history log of pages.\";s:25:\"enable_hist_user_comments\";s:31:\"Enable user comments in history\";s:26:\"enable_password_assistance\";s:26:\"Enable password assistance\";s:20:\"enable_search_engine\";s:219:\"Open Public Area for Internet Search Engines (e.g Google).
The Apache module ‘mod_rewrite’ is required for this extension. Please take care that you have appropriate permissions to use .htaccess configurations.\";s:17:\"enable_trash_info\";s:164:\"If enabled, deleted Objects are moved into Trash and may be recovered later. When deactivating this option deleted Objects are removed irreversibly from the System!\";s:12:\"enable_trash\";s:12:\"Enable Trash\";s:18:\"enable_webdav_info\";s:243:\"Allows WebDAV clients to access the repository as a webfolder. Users can open webfolders using the ‘Open as webfolder’ action in the repository, or by entering the following address in a WebDAV client: %1$s\";s:13:\"enable_webdav\";s:20:\"Enable WebDAV access\";s:6:\"enable\";s:6:\"Enable\";s:7:\"enabled\";s:7:\"Enabled\";s:16:\"enter_in_mb_desc\";s:20:\"Enter a value in MB.\";s:11:\"err_1_param\";s:17:\"Only 1 parameter!\";s:11:\"err_2_param\";s:17:\"Only 2 parameter!\";s:26:\"err_auth_cas_no_ilias_user\";s:126:\"Login failed. CAS authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.\";s:27:\"err_auth_ldap_no_ilias_user\";s:127:\"Login failed. LDAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.\";s:22:\"err_auth_mode_inactive\";s:42:\"Your authentication method is deactivated.\";s:29:\"err_auth_radius_no_ilias_user\";s:87:\"Login failed. Radius authentication successful, but no corresponding ILIAS user exists.\";s:27:\"err_auth_soap_no_ilias_user\";s:127:\"Login failed. SOAP authentication successful, but no corresponding ILIAS user exists. Please contact your system administrator.\";s:15:\"err_check_input\";s:57:\"The settings could not be saved. Please check your input.\";s:15:\"err_count_param\";s:29:\"Reason: Wrong parameter count\";s:11:\"err_in_line\";s:13:\"Error in line\";s:12:\"err_inactive\";s:88:\"This account has not been activated. Please contact the system administrator for access.\";s:27:\"err_inactive_login_attempts\";s:207:\"Your user account has been deactivated due too many failed login attempts. Click \'Contact Technical Support\' at the footer of this page to notify the administrator about the need to re-activate your account.\";s:16:\"err_invalid_port\";s:19:\"Invalid port number\";s:14:\"err_no_cookies\";s:46:\"Please enable session cookies in your browser!\";s:21:\"err_no_langfile_found\";s:23:\"No language file found!\";s:12:\"err_no_param\";s:13:\"No parameter!\";s:16:\"err_over_3_param\";s:23:\"More than 3 parameters!\";s:23:\"err_role_not_assignable\";s:53:\"You cannot assign users to this role at this location\";s:19:\"err_session_expired\";s:24:\"Your session is expired!\";s:16:\"err_wrong_header\";s:21:\"Reason: Wrong header.\";s:15:\"err_wrong_login\";s:23:\"Wrong Login or Password\";s:41:\"err_valid_login_account_creation_disabled\";s:128:\"Authentication succeeded, but the creation of new user accounts is currently disabled. Please contact your system administrator.\";s:18:\"err_wrong_password\";s:14:\"Wrong Password\";s:12:\"error_parser\";s:26:\"Error starting the parser.\";s:15:\"error_recipient\";s:15:\"Error Recipient\";s:5:\"error\";s:5:\"Error\";s:24:\"event_ass_materials_prop\";s:17:\"Session Materials\";s:18:\"event_assign_files\";s:15:\"File Assignment\";s:7:\"exc_add\";s:12:\"Add Exercise\";s:9:\"exc_added\";s:14:\"Exercise added\";s:18:\"exc_date_not_valid\";s:21:\"The date is not valid\";s:20:\"exc_deassign_members\";s:21:\"Remove Participant(s)\";s:18:\"exc_download_files\";s:14:\"Download Files\";s:17:\"exc_edit_exercise\";s:13:\"Edit exercise\";s:14:\"exc_edit_until\";s:10:\"Edit Until\";s:8:\"exc_edit\";s:20:\"New exercise created\";s:17:\"exc_exercise_sent\";s:13:\"Exercise Sent\";s:18:\"exc_files_returned\";s:15:\"Submitted Files\";s:9:\"exc_files\";s:5:\"Files\";s:15:\"exc_instruction\";s:17:\"Work Instructions\";s:19:\"exc_last_submission\";s:15:\"Last Submission\";s:28:\"exc_members_already_assigned\";s:51:\"These users are already assigned to the assignment.\";s:20:\"exc_members_assigned\";s:16:\"Members assigned\";s:26:\"exc_members_comments_saved\";s:59:\"The exercise comments for the selected user have been saved\";s:7:\"exc_new\";s:12:\"New Exercise\";s:7:\"exc_obj\";s:8:\"Exercise\";s:16:\"exc_save_changes\";s:4:\"Save\";s:12:\"exc_schedule\";s:8:\"Schedule\";s:19:\"exc_select_one_file\";s:31:\"Please select exactly one file.\";s:11:\"exc_sent_at\";s:16:\"Sent on
%s\";s:8:\"exc_sent\";s:48:\"The exercise has been sent to the selected users\";s:16:\"exc_status_saved\";s:16:\"Exercise updated\";s:10:\"exc_status\";s:6:\"Status\";s:14:\"exc_submission\";s:10:\"Submission\";s:19:\"exc_time_over_short\";s:11:\"Time is up.\";s:16:\"exc_time_to_send\";s:22:\"Remaining Working Time\";s:16:\"exc_upload_error\";s:20:\"Error uploading file\";s:3:\"exc\";s:8:\"Exercise\";s:4:\"excs\";s:9:\"Exercises\";s:7:\"execute\";s:7:\"Execute\";s:18:\"exercise_time_over\";s:91:\"The time allocated for completing this exercise is over. Files cannot be submitted anymore!\";s:8:\"exp_html\";s:11:\"Export HTML\";s:10:\"expand_all\";s:10:\"Expand All\";s:6:\"expand\";s:6:\"Expand\";s:8:\"expanded\";s:8:\"Expanded\";s:13:\"export_format\";s:13:\"Export format\";s:11:\"export_html\";s:19:\"Export as HTML File\";s:6:\"export\";s:6:\"Export\";s:16:\"ext_cat_settings\";s:31:\"Edit Advanced Category Settings\";s:8:\"ext_link\";s:4:\"Link\";s:15:\"failure_message\";s:15:\"Failure Message\";s:3:\"fax\";s:3:\"Fax\";s:4:\"feed\";s:8:\"Web Feed\";s:18:\"feedback_recipient\";s:18:\"Feedback Recipient\";s:8:\"feedback\";s:8:\"Feedback\";s:10:\"field_name\";s:10:\"Field Name\";s:10:\"field_type\";s:10:\"Field Type\";s:21:\"file_add_and_metadata\";s:29:\"Upload File and Edit Metadata\";s:8:\"file_add\";s:11:\"Upload File\";s:10:\"file_added\";s:13:\"File uploaded\";s:21:\"file_allowed_suffixes\";s:19:\"Allowed file types:\";s:12:\"file_created\";s:20:\"File has been added.\";s:9:\"file_edit\";s:21:\"Edit File Information\";s:9:\"file_info\";s:16:\"File Information\";s:16:\"file_is_infected\";s:32:\"The file is infected by a virus.\";s:14:\"file_not_found\";s:14:\"File Not Found\";s:14:\"file_not_valid\";s:15:\"File not valid!\";s:11:\"file_notice\";s:20:\"Maximum upload size:\";s:21:\"file_suffix_repl_info\";s:200:\"Enter file types with suffix (separated by comma) that shall be be renamed with a ‘.sec’ when uploaded into webspace to prevent execution of this file. This is done per default for these suffixes:\";s:16:\"file_suffix_repl\";s:30:\"File Upload Suffix Replacement\";s:12:\"file_updated\";s:22:\"File has been updated.\";s:10:\"file_valid\";s:14:\"File is valid!\";s:12:\"file_version\";s:24:\"Version Provided in File\";s:4:\"file\";s:4:\"File\";s:26:\"filename_extension_missing\";s:27:\"File name extension missing\";s:27:\"filename_hidden_backup_file\";s:18:\"Hidden backup file\";s:25:\"filename_hidden_unix_file\";s:16:\"Hidden Unix file\";s:25:\"filename_interoperability\";s:16:\"Interoperability\";s:27:\"filename_special_characters\";s:63:\"Due to the character / this object is not visible in webfolders\";s:25:\"filename_special_filename\";s:57:\"Objects with names . and .. are not visible in webfolders\";s:19:\"filename_visibility\";s:10:\"Visibility\";s:32:\"filename_windows_empty_extension\";s:94:\"Due to the character . at the end of the name this object is not visible in Windows webfolders\";s:35:\"filename_windows_special_characters\";s:95:\"Due to one of the characters \\ / : * ? \" < > | this object is not visible in Windows webfolders\";s:29:\"filename_windows_webdav_issue\";s:71:\"Due to the character # this object is not visible in Windows webfolders\";s:8:\"filename\";s:9:\"File Name\";s:5:\"files\";s:5:\"Files\";s:8:\"filesize\";s:9:\"File Size\";s:8:\"filetype\";s:9:\"File Type\";s:28:\"fill_out_all_required_fields\";s:35:\"Please fill out all required fields\";s:24:\"filter_users_with_access\";s:22:\"Only users with access\";s:28:\"filter_users_with_disk_usage\";s:31:\"Only users with disk space used\";s:37:\"filter_users_with_exceeded_disk_quota\";s:35:\"Only users with disk quota exceeded\";s:27:\"filter_users_without_access\";s:25:\"Only users without access\";s:31:\"filter_users_without_disk_usage\";s:34:\"Only users with no disk space used\";s:6:\"filter\";s:6:\"Filter\";s:9:\"firstname\";s:10:\"First Name\";s:8:\"flatview\";s:12:\"Hide Sidebar\";s:8:\"fold_add\";s:10:\"Add Folder\";s:10:\"fold_added\";s:12:\"Folder added\";s:9:\"fold_edit\";s:11:\"Edit Folder\";s:8:\"fold_new\";s:10:\"New Folder\";s:4:\"fold\";s:6:\"Folder\";s:6:\"folder\";s:6:\"Folder\";s:7:\"folders\";s:7:\"Folders\";s:26:\"force_accept_usr_agreement\";s:37:\"You must accept the terms of service!\";s:15:\"forgot_password\";s:21:\"Forgot your password?\";s:15:\"forgot_username\";s:21:\"Forgot your username?\";s:20:\"form_input_not_valid\";s:68:\"Some data is incomplete or not valid. Please correct the form input.\";s:25:\"forum_direct_notification\";s:12:\"Notification\";s:15:\"forum_notify_me\";s:165:\"Notify me when a direct answer has been given to this posting. Notification about any posting in this thread or forum can be enabled in the upper right Actions menu.\";s:18:\"forum_post_replied\";s:34:\"Your forum entry has been replied.\";s:5:\"forum\";s:5:\"Forum\";s:17:\"forums_anonymized\";s:16:\"Forum anonymized\";s:16:\"forums_anonymous\";s:6:\"anonym\";s:15:\"forums_articles\";s:8:\"Articles\";s:33:\"forums_disable_forum_notification\";s:35:\"Disable Notification for this Forum\";s:32:\"forums_enable_forum_notification\";s:34:\"Enable Notification for this Forum\";s:33:\"forums_forum_notification_enabled\";s:54:\"You will be notified about new messages in this forum.\";s:16:\"forums_last_post\";s:14:\"Latest Article\";s:19:\"forums_new_articles\";s:12:\"New Articles\";s:28:\"forums_notification_settings\";s:28:\"Forums Notification Settings\";s:14:\"forums_threads\";s:7:\"Threads\";s:16:\"forums_use_alias\";s:131:\"You may use a pseudonym for your posting. If you leave this field blank, your posting will be marked as written by ‘Anonymous’.\";s:16:\"forums_your_name\";s:9:\"Your Name\";s:6:\"forums\";s:6:\"Forums\";s:7:\"frm_add\";s:9:\"Add Forum\";s:9:\"frm_added\";s:11:\"Forum added\";s:8:\"frm_edit\";s:10:\"Edit Forum\";s:19:\"frm_latest_postings\";s:15:\"Latest Articles\";s:7:\"frm_new\";s:9:\"New Forum\";s:22:\"frm_statistics_ranking\";s:7:\"Ranking\";s:3:\"frm\";s:5:\"Forum\";s:4:\"from\";s:4:\"From\";s:8:\"fullname\";s:9:\"Full name\";s:9:\"functions\";s:9:\"Functions\";s:20:\"further_informations\";s:19:\"Further Information\";s:7:\"gdf_add\";s:14:\"Add Definition\";s:7:\"gdf_new\";s:14:\"New Definition\";s:8:\"gender_f\";s:3:\"Ms.\";s:8:\"gender_m\";s:3:\"Mr.\";s:8:\"gender_n\";s:21:\"No salutation desired\";s:6:\"gender\";s:10:\"Salutation\";s:16:\"general_settings\";s:16:\"General Settings\";s:8:\"generate\";s:8:\"Generate\";s:7:\"glo_add\";s:12:\"Add Glossary\";s:9:\"glo_added\";s:14:\"Glossary added\";s:13:\"glo_mode_desc\";s:321:\"A virtual glossary works like a normal glossary. Additionally it contains the terms from all glossaries that are located on the same level in the repository like the virtual glossary (level) respectively from all glossaries that are located downwards in the repository from the position of the virtual glossary (subtree).\";s:14:\"glo_mode_level\";s:25:\"virtual (this level only)\";s:15:\"glo_mode_normal\";s:6:\"normal\";s:16:\"glo_mode_subtree\";s:24:\"virtual (entire subtree)\";s:8:\"glo_mode\";s:4:\"Mode\";s:7:\"glo_new\";s:12:\"New Glossary\";s:3:\"glo\";s:8:\"Glossary\";s:14:\"global_default\";s:14:\"Global Default\";s:12:\"global_fixed\";s:12:\"Global Fixed\";s:15:\"global_settings\";s:15:\"Global settings\";s:11:\"global_user\";s:12:\"Global users\";s:6:\"global\";s:6:\"Global\";s:10:\"glossaries\";s:10:\"Glossaries\";s:8:\"glossary\";s:8:\"Glossary\";s:2:\"go\";s:2:\"Go\";s:13:\"group_members\";s:13:\"Group Members\";s:10:\"group_name\";s:10:\"Group Name\";s:23:\"group_new_registrations\";s:13:\"Join Requests\";s:31:\"group_password_registration_msg\";s:126:\"If you know the group password, you can join this group. Please contact a group administrator, if you don\'t know the password.\";s:23:\"group_registration_mode\";s:22:\"Registration Procedure\";s:23:\"group_registration_time\";s:19:\"Registration Period\";s:18:\"group_registration\";s:12:\"Registration\";s:16:\"group_req_direct\";s:13:\"Join directly\";s:26:\"group_req_registration_msg\";s:215:\"You have to request for membership to access this group. Please describe your interest for becoming member in the message form. You will be notified as soon as an administrator has accepted or declined your request.\";s:12:\"group_status\";s:8:\"Group is\";s:5:\"group\";s:5:\"Group\";s:26:\"groupings_assigned_obj_crs\";s:16:\"Assigned Courses\";s:26:\"groupings_assigned_obj_grp\";s:15:\"Assigned Groups\";s:9:\"groupings\";s:22:\"Membership Limitations\";s:6:\"groups\";s:6:\"Groups\";s:7:\"grp_add\";s:9:\"Add Group\";s:9:\"grp_added\";s:11:\"Group added\";s:19:\"grp_btn_unsubscribe\";s:22:\"Unsubscribe from Group\";s:23:\"grp_cancel_waiting_list\";s:74:\"Do you really want to remove yourself from the waiting list of group \"%s\"?\";s:21:\"grp_copy_threads_info\";s:71:\"Please decide which materials should be copied, linked or even omitted.\";s:24:\"grp_deleted_export_files\";s:23:\"Deleted selected files.\";s:18:\"grp_dismiss_member\";s:76:\"Are you sure you want to unsubscribe the following member(s) from the group?\";s:18:\"grp_dismiss_myself\";s:53:\"Are you sure you want to unsubscribe from this group?\";s:8:\"grp_edit\";s:10:\"Edit Group\";s:30:\"grp_err_administrator_required\";s:79:\"Member could not be removed, at least one administrator per group is required !\";s:23:\"grp_header_edit_members\";s:12:\"Edit members\";s:16:\"grp_list_members\";s:12:\"List members\";s:14:\"grp_list_users\";s:10:\"List users\";s:21:\"grp_mem_change_status\";s:25:\"Change Participant Status\";s:17:\"grp_mem_send_mail\";s:27:\"Send Participants a Message\";s:19:\"grp_members_gallery\";s:21:\"Group Members Gallery\";s:27:\"grp_msg_applicants_assigned\";s:40:\"Applicant(s) assigned as group member(s)\";s:23:\"grp_msg_member_assigned\";s:35:\"User(s) assigned as group member(s)\";s:27:\"grp_msg_membership_annulled\";s:21:\"Cancelled membership.\";s:7:\"grp_new\";s:9:\"New Group\";s:26:\"grp_registration_completed\";s:25:\"You have joined the group\";s:16:\"grp_registration\";s:10:\"Join Group\";s:29:\"grp_removed_from_waiting_list\";s:59:\"You have been detached from the waiting list of group \"%s\".\";s:19:\"grp_select_one_file\";s:23:\"Please select one file.\";s:15:\"grp_wizard_page\";s:21:\"Copy Group (Step 2/2)\";s:3:\"grp\";s:5:\"Group\";s:17:\"header_searchable\";s:10:\"Searchable\";s:12:\"header_title\";s:12:\"Header Title\";s:27:\"header_visible_registration\";s:23:\"Visible in Registration\";s:10:\"header_zip\";s:36:\"Upload Multiple Files as Zip-Archive\";s:6:\"height\";s:6:\"Height\";s:4:\"help\";s:4:\"Help\";s:2:\"HH\";s:5:\"HH:MM\";s:10:\"dd_mm_yyyy\";s:10:\"DD.MM.YYYY\";s:12:\"hide_details\";s:12:\"Hide Details\";s:11:\"hide_filter\";s:11:\"Hide Filter\";s:22:\"hide_own_online_status\";s:21:\"Hide My Online Status\";s:4:\"hide\";s:4:\"Hide\";s:4:\"hint\";s:4:\"Hint\";s:17:\"hist_lm_delete_pg\";s:32:\"Page \"%1\" [%2] has been deleted.\";s:17:\"hist_lm_delete_st\";s:35:\"Chapter \"%1\" [%2] has been deleted.\";s:17:\"hist_lm_pg_create\";s:13:\"Page created.\";s:17:\"hist_lm_st_create\";s:16:\"Chapter created.\";s:13:\"hist_webr_add\";s:34:\"Added new Weblink with title: \"%1\"\";s:16:\"hist_webr_delete\";s:32:\"Deleted Weblink with title: \"%1\"\";s:16:\"hist_webr_update\";s:33:\"Modified Weblink with title: \"%1\"\";s:7:\"history\";s:7:\"History\";s:13:\"hits_per_page\";s:9:\"Hits/Page\";s:5:\"hobby\";s:17:\"Interests/Hobbies\";s:4:\"home\";s:11:\"Public Area\";s:4:\"host\";s:4:\"Host\";s:4:\"hour\";s:4:\"Hour\";s:5:\"hours\";s:5:\"Hours\";s:8:\"htlm_add\";s:24:\"Add HTML Learning Module\";s:8:\"htlm_new\";s:24:\"New HTML Learning Module\";s:4:\"htlm\";s:20:\"Learning Module HTML\";s:17:\"http_not_possible\";s:44:\"This server is not supporting http requests.\";s:9:\"http_path\";s:9:\"HTTP Path\";s:4:\"http\";s:4:\"HTTP\";s:18:\"https_not_possible\";s:48:\"This server is not supporting HTTPS connections.\";s:8:\"i2passwd\";s:16:\"ILIAS 2 password\";s:13:\"icon_settings\";s:12:\"Custom Icons\";s:4:\"icon\";s:4:\"Icon\";s:2:\"id\";s:2:\"ID\";s:10:\"identifier\";s:10:\"identifier\";s:25:\"if_no_title_then_filename\";s:38:\"Leave blank to use file name as title.\";s:18:\"ignore_on_conflict\";s:18:\"Ignore on conflict\";s:17:\"il_chat_moderator\";s:14:\"Chat Moderator\";s:12:\"il_crs_admin\";s:20:\"Course Administrator\";s:13:\"il_crs_member\";s:13:\"Course Member\";s:17:\"il_crs_non_member\";s:17:\"Course non-member\";s:12:\"il_crs_tutor\";s:12:\"Course Tutor\";s:16:\"il_frm_moderator\";s:15:\"Forum moderator\";s:12:\"il_grp_admin\";s:19:\"Group Administrator\";s:13:\"il_grp_member\";s:12:\"Group Member\";s:20:\"il_grp_status_closed\";s:12:\"Group closed\";s:18:\"il_grp_status_open\";s:10:\"Group open\";s:13:\"ilias_version\";s:13:\"ILIAS version\";s:5:\"image\";s:5:\"Image\";s:19:\"import_cat_localrol\";s:40:\"Create local role for every new category\";s:16:\"import_cat_table\";s:61:\"The following table is only meaningful if the checkbox is set\";s:17:\"import_categories\";s:17:\"Import Categories\";s:18:\"import_failure_log\";s:18:\"Import failure log\";s:21:\"import_file_not_valid\";s:29:\"The import file is not valid.\";s:11:\"import_file\";s:11:\"Import File\";s:15:\"import_finished\";s:28:\"Number of imported messages.\";s:9:\"import_lm\";s:28:\"Import ILIAS Learning module\";s:10:\"import_qpl\";s:25:\"Import Question Pool Test\";s:25:\"import_questions_into_qpl\";s:37:\"Import question(s) into question pool\";s:11:\"import_sahs\";s:20:\"Import SCORM Package\";s:10:\"import_svy\";s:13:\"Import Survey\";s:10:\"import_tst\";s:11:\"Import Test\";s:12:\"import_users\";s:12:\"Import Users\";s:18:\"import_warning_log\";s:18:\"Import warning log\";s:6:\"import\";s:6:\"Import\";s:9:\"important\";s:9:\"Important\";s:8:\"imported\";s:8:\"imported\";s:9:\"in_use_by\";s:9:\"In use by\";s:6:\"in_use\";s:13:\"User Language\";s:2:\"in\";s:2:\"in\";s:8:\"inactive\";s:8:\"Inactive\";s:5:\"inbox\";s:5:\"Inbox\";s:13:\"include_local\";s:51:\"include custom language file when updating language\";s:27:\"info_access_and_status_info\";s:30:\"Access- and status information\";s:23:\"info_access_permissions\";s:18:\"Access Permissions\";s:18:\"info_activate_sure\";s:78:\"Are you sure that you want to approve the following user(s) as active user(s)?\";s:16:\"info_assign_sure\";s:54:\"Are you sure you want to assign the following user(s)?\";s:13:\"info_assigned\";s:8:\"assigned\";s:20:\"info_available_roles\";s:15:\"Available Roles\";s:21:\"info_change_user_view\";s:11:\"Change User\";s:20:\"info_deactivate_sure\";s:63:\"Are you sure that you want to deactivate the following user(s)?\";s:16:\"info_delete_sure\";s:59:\"Are you sure that you want to delete the following item(s)?\";s:16:\"info_remove_sure\";s:59:\"Are you sure that you want to remove the following item(s)?\";s:28:\"info_delete_warning_no_trash\";s:102:\"(WARNING: Selected Objects will be removed irreversibly from System and may not be recovered anymore!)\";s:12:\"info_deleted\";s:17:\"Object(s) Deleted\";s:23:\"info_err_user_not_exist\";s:52:\"User with that login name or user_id does not exists\";s:14:\"info_from_role\";s:27:\"Granted by Role / Ownership\";s:14:\"info_is_member\";s:14:\"User is member\";s:18:\"info_is_not_member\";s:20:\"User is not a member\";s:12:\"info_message\";s:19:\"Information Message\";s:17:\"info_not_assigned\";s:12:\"not assigned\";s:20:\"info_owner_of_object\";s:15:\"Owner of object\";s:22:\"info_permission_origin\";s:17:\"Original Position\";s:22:\"info_permission_source\";s:15:\"Effective From*\";s:23:\"info_remark_interrupted\";s:116:\"Role is interrupted at this position. The role\'s default permission settings in effect are located in that position.\";s:10:\"info_short\";s:4:\"Info\";s:16:\"info_status_info\";s:19:\"Permissions of User\";s:17:\"info_view_of_user\";s:4:\"User\";s:4:\"info\";s:11:\"Information\";s:16:\"inform_user_mail\";s:38:\"Send mail to inform user about changes\";s:27:\"inline_file_extensions_info\";s:158:\"Files with these extensions are displayed in the browser window.
For example: gif jpg mp3 pdf png
All other files are offered for downloading.\";s:22:\"inline_file_extensions\";s:17:\"Web-enabled files\";s:18:\"insert_object_here\";s:26:\"Insert at Current Position\";s:6:\"insert\";s:6:\"Insert\";s:7:\"inst_id\";s:15:\"Installation ID\";s:9:\"inst_info\";s:17:\"Installation Info\";s:9:\"inst_name\";s:17:\"Installation Name\";s:13:\"install_local\";s:24:\"Install With Custom File\";s:7:\"install\";s:7:\"Install\";s:15:\"installed_local\";s:26:\"Installed With Custom file\";s:9:\"installed\";s:9:\"Installed\";s:18:\"instant_messengers\";s:18:\"Instant Messengers\";s:11:\"institution\";s:11:\"Institution\";s:25:\"internal_local_roles_only\";s:42:\"Local roles (only automatically generated)\";s:41:\"invalid_visible_required_options_selected\";s:73:\"All fields set to required has to be set to visible in registration, too.\";s:20:\"invisible_block_mess\";s:50:\"You do not have the permission to view this block.\";s:15:\"invisible_block\";s:15:\"Invisible Block\";s:10:\"ip_address\";s:10:\"IP Address\";s:15:\"is_already_your\";s:15:\"is already your\";s:4:\"item\";s:4:\"Item\";s:16:\"java_server_host\";s:4:\"Host\";s:16:\"java_server_info\";s:83:\"If activated, it is possible to search in PDF, HTML files and HTML-Learning modules\";s:16:\"java_server_port\";s:4:\"Port\";s:18:\"java_server_readme\";s:17:\"Setup information\";s:11:\"java_server\";s:11:\"Java-Server\";s:12:\"join_session\";s:6:\"Attend\";s:4:\"join\";s:4:\"Join\";s:2:\"kb\";s:5:\"KByte\";s:8:\"keywords\";s:8:\"Keywords\";s:15:\"lang_dateformat\";s:5:\"Y-m-d\";s:9:\"lang_path\";s:13:\"Language Path\";s:25:\"lang_refresh_confirm_info\";s:274:\"ILIAS found changed language variables. Refreshing a language will read the standard language file and probably a custom language file to the database. A standard file will not affect your changes. A custom file will overwrite your changes that are older than the file date.\";s:29:\"lang_refresh_confirm_selected\";s:53:\"Do you really want to refresh the selected languages?\";s:20:\"lang_refresh_confirm\";s:44:\"Do you really want to refresh all languages?\";s:22:\"lang_uninstall_confirm\";s:55:\"Do you really want to uninstall the selected languages?\";s:22:\"lang_uninstall_changes\";s:23:\"Uninstall Local Changes\";s:30:\"lang_uninstall_changes_confirm\";s:131:\"Do you really want to clear all local changes of the selected languages and reset them to the default of the current ILIAS version?\";s:16:\"lang_sep_decimal\";s:1:\".\";s:17:\"lang_sep_thousand\";s:1:\",\";s:15:\"lang_size_bytes\";s:5:\"bytes\";s:12:\"lang_size_gb\";s:2:\"GB\";s:12:\"lang_size_kb\";s:2:\"KB\";s:12:\"lang_size_mb\";s:2:\"MB\";s:22:\"lang_timeformat_no_sec\";s:3:\"H:i\";s:15:\"lang_timeformat\";s:5:\"H:i:s\";s:14:\"langfile_found\";s:19:\"Language file found\";s:22:\"language_not_installed\";s:52:\"is not installed. Please install that language first\";s:8:\"language\";s:8:\"Language\";s:27:\"languages_already_installed\";s:42:\"Selected language(s) are already installed\";s:29:\"languages_already_uninstalled\";s:44:\"Selected language(s) are already uninstalled\";s:17:\"languages_updated\";s:41:\"All installed languages have been updated\";s:9:\"languages\";s:9:\"Languages\";s:11:\"last_access\";s:11:\"Last Access\";s:11:\"last_change\";s:11:\"Last Change\";s:14:\"last_edited_on\";s:14:\"Last edited on\";s:10:\"last_login\";s:10:\"Last Login\";s:12:\"last_refresh\";s:12:\"Last Refresh\";s:13:\"last_reminder\";s:13:\"Last reminder\";s:11:\"last_update\";s:7:\"Updated\";s:12:\"last_visited\";s:12:\"Last Visited\";s:8:\"lastname\";s:9:\"Last Name\";s:6:\"launch\";s:6:\"Launch\";s:11:\"ldap_basedn\";s:11:\"LDAP BaseDN\";s:14:\"ldap_configure\";s:29:\"Configure LDAP Authentication\";s:9:\"ldap_port\";s:9:\"LDAP Port\";s:9:\"ldap_read\";s:28:\"Read access to LDAP settings\";s:11:\"ldap_server\";s:15:\"LDAP Server URL\";s:8:\"ldap_tls\";s:12:\"Use LDAP TLS\";s:12:\"ldap_version\";s:22:\"LDAP protokoll version\";s:4:\"ldap\";s:4:\"LDAP\";s:15:\"learning module\";s:15:\"Learning Module\";s:17:\"learning_progress\";s:17:\"Learning Progress\";s:18:\"leave_waiting_list\";s:18:\"Leave Waiting List\";s:6:\"legend\";s:6:\"Legend\";s:5:\"level\";s:5:\"Level\";s:8:\"link_all\";s:8:\"Link all\";s:20:\"link_check_message_b\";s:61:\"If enabled, you will be informed about invalid links by mail.\";s:27:\"link_check_message_disabled\";s:17:\"Messages disabled\";s:26:\"link_check_message_enabled\";s:16:\"Messages enabled\";s:18:\"link_check_subject\";s:21:\"[ILIAS] Weblink check\";s:10:\"link_check\";s:13:\"Weblink Check\";s:22:\"link_checker_refreshed\";s:14:\"Refreshed view\";s:19:\"link_selected_items\";s:4:\"Link\";s:4:\"link\";s:4:\"Link\";s:15:\"links_add_param\";s:14:\"Add Parameter:\";s:19:\"links_dyn_parameter\";s:18:\"Dynamic Parameters\";s:18:\"links_dynamic_info\";s:114:\"If enabled, it is possible to append dynamic parameters to Weblinks.
E.g. the ILIAS user ID or the username.\";s:13:\"links_dynamic\";s:26:\"Dynamic Weblink Parameters\";s:21:\"links_existing_params\";s:20:\"Existing Parameters:\";s:10:\"links_name\";s:14:\"Parameter Name\";s:19:\"links_no_name_given\";s:31:\"Please choose a parameter name.\";s:20:\"links_no_value_given\";s:32:\"Please choose a parameter value.\";s:23:\"links_parameter_deleted\";s:18:\"Parameter deleted.\";s:16:\"links_select_one\";s:14:\"- Select one -\";s:16:\"links_session_id\";s:16:\"ILIAS session id\";s:13:\"links_user_id\";s:13:\"ILIAS user id\";s:15:\"links_user_name\";s:14:\"ILIAS username\";s:11:\"links_value\";s:15:\"Parameter Value\";s:17:\"list_of_questions\";s:17:\"List of Questions\";s:4:\"list\";s:4:\"List\";s:6:\"lm_add\";s:25:\"Add ILIAS Learning Module\";s:8:\"lm_added\";s:27:\"ILIAS Learning Module added\";s:6:\"lm_new\";s:25:\"New ILIAS Learning Module\";s:13:\"lm_type_scorm\";s:9:\"SCORM 1.2\";s:17:\"lm_type_scorm2004\";s:26:\"SCORM 2004 3rd/4th Edition\";s:2:\"lm\";s:21:\"Learning Module ILIAS\";s:3:\"lng\";s:8:\"Language\";s:4:\"lngf\";s:9:\"Languages\";s:2:\"lo\";s:15:\"Learning Object\";s:19:\"local_language_file\";s:20:\"custom language file\";s:20:\"local_language_files\";s:21:\"custom language files\";s:33:\"local_languages_already_installed\";s:54:\"Selected custom language file(s) are already installed\";s:5:\"local\";s:5:\"Local\";s:8:\"location\";s:8:\"Location\";s:7:\"locator\";s:9:\"Location:\";s:6:\"log_in\";s:5:\"Login\";s:7:\"log_out\";s:6:\"Logout\";s:8:\"logic_or\";s:2:\"or\";s:8:\"login_as\";s:12:\"Logged in as\";s:10:\"login_data\";s:10:\"Login data\";s:12:\"login_exists\";s:72:\"There is already a user with this login name! Please choose another one.\";s:22:\"login_information_desc\";s:61:\"Please enter a login information for the respective language.\";s:32:\"login_information_settings_saved\";s:45:\"The login information were saved successfully\";s:17:\"login_information\";s:17:\"Login Information\";s:13:\"login_invalid\";s:117:\"The chosen login is invalid! Only the following characters are allowed (minimum 3 characters): A-Z a-z 0-9 _.-+*@!$%~\";s:22:\"login_to_ilias_via_cas\";s:49:\"Login to ILIAS via Central Authentication Service\";s:29:\"login_to_ilias_via_shibboleth\";s:18:\"Login to ILIAS via\";s:14:\"login_to_ilias\";s:14:\"Login to ILIAS\";s:5:\"login\";s:5:\"Login\";s:24:\"loginname_already_exists\";s:31:\"This login name already exists.\";s:18:\"loginname_settings\";s:19:\"Login Name Settings\";s:11:\"logout_text\";s:56:\"You logged off from ILIAS. Your session has been closed.\";s:6:\"logout\";s:6:\"Logout\";s:4:\"logs\";s:8:\"Log Data\";s:4:\"lres\";s:18:\"Learning Resources\";s:16:\"mail_addressbook\";s:8:\"Contacts\";s:15:\"mail_attachment\";s:15:\"Mail attachment\";s:12:\"mail_b_inbox\";s:5:\"Inbox\";s:12:\"mail_c_trash\";s:5:\"Trash\";s:13:\"mail_d_drafts\";s:6:\"Drafts\";s:17:\"mail_delete_error\";s:20:\"Error while deleting\";s:11:\"mail_e_sent\";s:4:\"Sent\";s:20:\"mail_edit_permission\";s:58:\"User can change permission settings in Mail administration\";s:12:\"mail_folders\";s:12:\"Mail Folders\";s:16:\"mail_import_file\";s:11:\"Export file\";s:13:\"mail_mails_of\";s:4:\"Mail\";s:19:\"mail_maxsize_attach\";s:20:\"Max. attachment size\";s:12:\"mail_members\";s:15:\"Mail to Members\";s:30:\"mail_multiple_recipients_found\";s:97:\"Enter a more specific mail address. ILIAS found multiple possible recipients for this address: %s\";s:23:\"mail_no_recipient_found\";s:87:\"Enter a different mail address. ILIAS couldn\'t find a recipient with this mail address.\";s:13:\"mail_not_sent\";s:14:\"Mail not sent!\";s:14:\"mail_search_no\";s:17:\"No entries found.\";s:15:\"mail_select_one\";s:24:\"You must select one mail\";s:15:\"mail_send_error\";s:18:\"Error sending mail\";s:9:\"mail_sent\";s:10:\"Mail sent!\";s:13:\"mail_settings\";s:13:\"Mail Settings\";s:12:\"mail_z_local\";s:12:\"User Folders\";s:4:\"mail\";s:4:\"Mail\";s:8:\"mails_pl\";s:7:\"Mail(s)\";s:5:\"mails\";s:5:\"Mails\";s:9:\"main_menu\";s:9:\"Main Menu\";s:36:\"add_remove_edit_entries_of_main_menu\";s:44:\"Add, remove or edit entries of the main menu\";s:3:\"all\";s:3:\"All\";s:11:\"only_active\";s:11:\"Only Active\";s:13:\"only_inactive\";s:13:\"Only Inactive\";s:12:\"entry_status\";s:12:\"Entry status\";s:14:\"manage_members\";s:14:\"Manage Members\";s:14:\"marked_entries\";s:14:\"Marked Entries\";s:13:\"matriculation\";s:20:\"Matriculation number\";s:8:\"mcst_add\";s:13:\"Add Mediacast\";s:8:\"mcst_new\";s:13:\"New Mediacast\";s:4:\"mcst\";s:9:\"Mediacast\";s:13:\"mem_add_to_wl\";s:19:\"Add to Waiting List\";s:19:\"mem_alert_no_places\";s:35:\"There are no free places available.\";s:7:\"mem_end\";s:17:\"Registration End:\";s:15:\"mem_free_places\";s:11:\"Free Places\";s:13:\"mem_max_users\";s:17:\"Maximum of Users:\";s:16:\"mem_participants\";s:12:\"Participants\";s:15:\"mem_reg_expired\";s:33:\"The registration time is expired.\";s:19:\"mem_reg_not_started\";s:32:\"The registration has not started\";s:14:\"mem_reg_period\";s:19:\"Registration Period\";s:12:\"mem_reg_type\";s:17:\"Registration Type\";s:9:\"mem_start\";s:19:\"Registration Start:\";s:13:\"mem_unlimited\";s:9:\"Unlimited\";s:17:\"mem_view_activate\";s:16:\"Show Member View\";s:14:\"mem_view_close\";s:17:\"Close Member View\";s:13:\"mem_view_long\";s:11:\"Member View\";s:25:\"mem_waiting_list_position\";s:34:\"Your Position on the Waiting List:\";s:16:\"mem_waiting_list\";s:22:\"Users on Waiting List:\";s:13:\"member_status\";s:13:\"Member Status\";s:6:\"member\";s:6:\"Member\";s:7:\"members\";s:7:\"Members\";s:16:\"membership_leave\";s:5:\"Leave\";s:7:\"mep_add\";s:14:\"Add Media Pool\";s:8:\"mep_edit\";s:26:\"Edit Media Pool Properties\";s:7:\"mep_new\";s:14:\"New Media Pool\";s:28:\"mep_not_insert_already_exist\";s:86:\"The following items have not been inserted because they are already in the media pool:\";s:3:\"mep\";s:10:\"Media Pool\";s:15:\"message_content\";s:15:\"Message Content\";s:26:\"message_no_delivered_files\";s:33:\"You have not submitted any files.\";s:7:\"message\";s:7:\"Message\";s:9:\"meta_data\";s:8:\"Metadata\";s:45:\"mgs_objects_linked_to_the_following_folders_p\";s:51:\"The objects were linked to the following folder(s).\";s:45:\"mgs_objects_linked_to_the_following_folders_s\";s:49:\"The object was linked to the following folder(s).\";s:7:\"migrate\";s:7:\"Migrate\";s:6:\"minute\";s:6:\"Minute\";s:7:\"minutes\";s:7:\"Minutes\";s:12:\"missing_perm\";s:18:\"Missing Permission\";s:20:\"missing_precondition\";s:20:\"Missing Precondition\";s:7:\"missing\";s:7:\"Missing\";s:3:\"mob\";s:12:\"Media Object\";s:10:\"moderators\";s:10:\"Moderators\";s:6:\"module\";s:6:\"module\";s:7:\"modules\";s:7:\"Modules\";s:13:\"month_01_long\";s:7:\"January\";s:14:\"month_01_short\";s:3:\"Jan\";s:13:\"month_02_long\";s:8:\"February\";s:14:\"month_02_short\";s:3:\"Feb\";s:13:\"month_03_long\";s:5:\"March\";s:14:\"month_03_short\";s:3:\"Mar\";s:13:\"month_04_long\";s:5:\"April\";s:14:\"month_04_short\";s:3:\"Apr\";s:13:\"month_05_long\";s:3:\"May\";s:14:\"month_05_short\";s:3:\"May\";s:13:\"month_06_long\";s:4:\"June\";s:14:\"month_06_short\";s:3:\"Jun\";s:13:\"month_07_long\";s:4:\"July\";s:14:\"month_07_short\";s:3:\"Jul\";s:13:\"month_08_long\";s:6:\"August\";s:14:\"month_08_short\";s:3:\"Aug\";s:13:\"month_09_long\";s:9:\"September\";s:14:\"month_09_short\";s:3:\"Sep\";s:13:\"month_10_long\";s:7:\"October\";s:14:\"month_10_short\";s:3:\"Oct\";s:13:\"month_11_long\";s:8:\"November\";s:14:\"month_11_short\";s:3:\"Nov\";s:13:\"month_12_long\";s:8:\"December\";s:14:\"month_12_short\";s:3:\"Dec\";s:5:\"month\";s:5:\"Month\";s:7:\"monthly\";s:7:\"monthly\";s:6:\"months\";s:6:\"Months\";s:15:\"mount_webfolder\";s:17:\"Open as webfolder\";s:19:\"move_selected_items\";s:4:\"Move\";s:4:\"move\";s:4:\"Move\";s:11:\"moveChapter\";s:4:\"Move\";s:8:\"movePage\";s:4:\"Move\";s:10:\"msg_cancel\";s:16:\"Action cancelled\";s:19:\"msg_clear_clipboard\";s:17:\"Clipboard cleared\";s:10:\"msg_cloned\";s:25:\"Selected object(s) copied\";s:25:\"msg_copy_clipboard_source\";s:115:\"Now, please select the desired course or group, whose content should be copied and click the button ‘Continue’.\";s:18:\"msg_copy_clipboard\";s:123:\"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.\";s:28:\"msg_copy_clipboard_container\";s:126:\"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Continue’.\";s:17:\"msg_cut_clipboard\";s:123:\"Now, please select the desired location, where the selected objects should be pasted into and click the button ‘Paste’.\";s:14:\"msg_cut_copied\";s:25:\"Selected object(s) moved.\";s:24:\"msg_deleted_export_files\";s:22:\"Export file(s) deleted\";s:16:\"msg_deleted_role\";s:12:\"Role deleted\";s:23:\"msg_deleted_roles_rolts\";s:32:\"Roles and Role Templates deleted\";s:10:\"msg_failed\";s:20:\"Sorry, action failed\";s:19:\"msg_form_save_error\";s:87:\"The form data could not be saved. Please check the input fields for any error messages.\";s:31:\"msg_input_does_not_match_regexp\";s:29:\"Please provide a valid value.\";s:21:\"msg_input_is_required\";s:45:\"This input is required. Please enter a value.\";s:16:\"msg_is_last_role\";s:57:\"You removed the last global role from the following users\";s:30:\"msg_last_role_for_registration\";s:122:\"At least one role must be available in the registration form for new users. This role is currently the only one available.\";s:20:\"msg_link_clipboard_p\";s:115:\"Now, please select the desired location, where the selected objects should be linked to and click the button Paste.\";s:20:\"msg_link_clipboard_s\";s:114:\"Now, please select the desired location, where the selected object should be linked to and click the button Paste.\";s:10:\"msg_linked\";s:26:\"Selected object(s) linked.\";s:19:\"msg_may_not_contain\";s:44:\"This object may not contain objects of type:\";s:16:\"msg_min_one_role\";s:45:\"Each user must have at least one global role!\";s:27:\"msg_multi_language_selected\";s:58:\"You selected the same language for different translations!\";s:23:\"msg_no_default_language\";s:86:\"No default language specified! You must define one translation as default translation.\";s:22:\"msg_no_delete_yourself\";s:40:\"You cannot delete your own user account.\";s:11:\"msg_no_file\";s:58:\"You didn\'t choose a file or the selected file was too big.\";s:24:\"msg_no_language_selected\";s:82:\"No translation language specified! You must define a language for each translation\";s:31:\"msg_no_perm_assign_role_to_user\";s:55:\"You have no permission to change user\'s role assignment\";s:31:\"msg_no_perm_assign_user_to_role\";s:52:\"You have no permission to change the user assignment\";s:16:\"msg_no_perm_copy\";s:67:\"You have no permission to create a copy of the following object(s):\";s:23:\"msg_no_perm_create_rolt\";s:44:\"You have no permission to add role templates\";s:15:\"msg_no_perm_cut\";s:54:\"You have no permission to cut the following object(s):\";s:18:\"msg_no_perm_delete\";s:57:\"You have no permission to delete the following object(s):\";s:16:\"msg_no_perm_link\";s:69:\"You have no permission to create a link from the following object(s):\";s:23:\"msg_no_perm_modify_rolt\";s:47:\"You have no permission to modify role templates\";s:23:\"msg_no_perm_modify_user\";s:42:\"You have no permission to modify user data\";s:34:\"msg_no_perm_paste_object_in_folder\";s:63:\"You have no permission to paste the object %s in the folder %s.\";s:17:\"msg_no_perm_paste\";s:56:\"You have no permission to paste the following object(s):\";s:16:\"msg_no_perm_perm\";s:50:\"You have no permission to edit permission settings\";s:21:\"msg_no_perm_read_item\";s:45:\"You have no permission to access item \'%s’.\";s:19:\"msg_no_perm_read_lm\";s:52:\"You have no permission to read this learning module.\";s:16:\"msg_no_perm_read\";s:43:\"You have no permission to access this item.\";s:17:\"msg_no_perm_write\";s:31:\"You have no permission to write\";s:20:\"msg_no_search_result\";s:16:\"No entries found\";s:20:\"msg_no_search_string\";s:23:\"Please enter your query\";s:12:\"msg_no_title\";s:21:\"Please enter a title.\";s:26:\"msg_not_available_for_anon\";s:64:\"The page you have chosen is only accessible for registered users\";s:17:\"msg_not_in_itself\";s:49:\"It’s not possible to paste the object in itself\";s:15:\"msg_obj_created\";s:15:\"Object created.\";s:24:\"msg_obj_exists_in_folder\";s:46:\"The object %s already exists in the folder %s.\";s:14:\"msg_obj_exists\";s:41:\"This object already exists in this folder\";s:39:\"msg_obj_may_not_contain_objects_of_type\";s:50:\"The object %s may not contain objects of type: %s.\";s:16:\"msg_obj_modified\";s:20:\"Modifications saved.\";s:15:\"msg_obj_no_link\";s:250:\"It is not possible to link container objects like categories, courses, groups or folder due to technical reasons. Instead you may link several single objects within such a container to other areas or create a category link, course link or group link.\";s:30:\"msg_paste_object_not_in_itself\";s:55:\"It’s not possible to paste the Object \"%s\" in itself.\";s:28:\"msg_perm_adopted_from_itself\";s:80:\"You cannot adopt permission settings from the current role/role template itself.\";s:22:\"msg_perm_adopted_from1\";s:32:\"Permission settings adopted from\";s:22:\"msg_perm_adopted_from2\";s:27:\"(Settings have been saved!)\";s:11:\"msg_removed\";s:30:\"Object(s) removed from system.\";s:24:\"msg_role_reserved_prefix\";s:94:\"The prefix ‘il_’ is reserved for automatically generated roles. Please choose another name\";s:26:\"msg_roleassignment_changed\";s:23:\"Role assignment changed\";s:25:\"msg_sysrole_not_deletable\";s:33:\"The system role cannot be deleted\";s:24:\"msg_sysrole_not_editable\";s:151:\"The permission settings of the system role may not be changed. The system role grants all assigned users unlimited access to all objects and functions.\";s:15:\"msg_trash_empty\";s:28:\"There are no deleted objects\";s:13:\"msg_undeleted\";s:19:\"Object(s) restored.\";s:20:\"msg_unit_is_required\";s:57:\"This input requires a unit. Please enter a correct value.\";s:19:\"msg_user_last_role1\";s:51:\"The following users are assigned to this role only:\";s:19:\"msg_user_last_role2\";s:84:\"Please delete the users or assign them to another role in order to delete this role.\";s:26:\"msg_userassignment_changed\";s:23:\"User assignment changed\";s:16:\"msg_wrong_format\";s:44:\"The value you entered is not a valid format.\";s:23:\"msg_bt_download_started\";s:134:\"ILIAS is generating a ZIP archive of all available files. You can download them from the Notification Center (bell icon) on top right.\";s:6:\"my_bms\";s:9:\"Bookmarks\";s:10:\"my_courses\";s:10:\"My Courses\";s:4:\"name\";s:4:\"Name\";s:5:\"never\";s:5:\"never\";s:12:\"new_language\";s:12:\"New Language\";s:24:\"new_pass_equals_old_pass\";s:36:\"The new password equals the old one.\";s:3:\"new\";s:3:\"New\";s:7:\"newline\";s:7:\"Newline\";s:4:\"news\";s:4:\"News\";s:4:\"next\";s:4:\"Next\";s:21:\"no_access_item_public\";s:81:\"To access this item you need to be logged in and to have appropriate permissions.\";s:14:\"no_access_item\";s:43:\"You have no permission to access this item.\";s:24:\"no_agreement_description\";s:136:\"There is currently no terms of service text provided with this installation. Please contact the system administrator.\";s:11:\"no_checkbox\";s:28:\"You did not select any item.\";s:21:\"no_condition_selected\";s:31:\"Please select one precondition.\";s:7:\"no_date\";s:7:\"No date\";s:19:\"no_global_role_left\";s:42:\"Every user has to be assigned to one role.\";s:24:\"user_not_found_to_delete\";s:36:\"A user could not be found to delete.\";s:20:\"no_import_file_found\";s:20:\"No import file found\";s:8:\"no_items\";s:43:\"This object is empty and contains no items.\";s:8:\"no_limit\";s:8:\"No limit\";s:21:\"no_mkisofs_configured\";s:70:\"You have to configure mkisofs utility in ILIAS setup to run ISO export\";s:8:\"no_owner\";s:8:\"No Owner\";s:16:\"no_parent_access\";s:37:\"No access to a superordinated object!\";s:13:\"no_permission\";s:41:\"You do not have the necessary permission.\";s:32:\"no_roles_user_can_be_assigned_to\";s:98:\"There are no global roles the user can be assigned to. Therefore you are not allowed to add users.\";s:13:\"no_start_file\";s:14:\"No Start File.\";s:8:\"no_title\";s:8:\"No Title\";s:17:\"no_users_selected\";s:23:\"Please select one user.\";s:24:\"no_xml_file_found_in_zip\";s:35:\"XML file within zip file not found:\";s:2:\"no\";s:2:\"No\";s:3:\"noc\";s:19:\"Notification Center\";s:29:\"non_internal_local_roles_only\";s:31:\"Local roles (only user defined)\";s:4:\"none\";s:4:\"None\";s:6:\"normal\";s:6:\"Normal\";s:13:\"not_available\";s:13:\"Not Available\";s:19:\"not_implemented_yet\";s:19:\"Not implemented yet\";s:13:\"not_installed\";s:13:\"Not Installed\";s:13:\"not_logged_in\";s:21:\"You are not logged in\";s:4:\"note\";s:4:\"Note\";s:18:\"notes_and_comments\";s:18:\"Notes and Comments\";s:5:\"notes\";s:5:\"Notes\";s:13:\"notifications\";s:13:\"Notifications\";s:9:\"num_users\";s:15:\"Number of Users\";s:13:\"edit_metadata\";s:13:\"Edit Metadata\";s:13:\"obj_accs_desc\";s:36:\"Settings for accessibility features.\";s:16:\"obj_accs_captcha\";s:8:\"Captchas\";s:8:\"obj_accs\";s:13:\"Accessibility\";s:12:\"obj_adm_desc\";s:90:\"Main system settings folder containing all panels to administrate your ILIAS installation.\";s:7:\"obj_adm\";s:14:\"Administration\";s:13:\"obj_adve_desc\";s:58:\"Administration settings for ILIAS page editor and TinyMCE.\";s:8:\"obj_adve\";s:7:\"Editing\";s:13:\"obj_assf_desc\";s:50:\"Platform settings for the Test and Assessment tool\";s:8:\"obj_assf\";s:19:\"Test and Assessment\";s:13:\"obj_auth_desc\";s:97:\"Configure your authentication mode (local, LDAP, ...) and new account registration settings here.\";s:8:\"obj_auth\";s:31:\"Authentication and Registration\";s:13:\"obj_cals_desc\";s:26:\"General Calendar settings.\";s:8:\"obj_cals\";s:8:\"Calendar\";s:17:\"obj_cat_duplicate\";s:13:\"Copy Category\";s:7:\"obj_cat\";s:8:\"Category\";s:8:\"obj_catr\";s:13:\"Category Link\";s:13:\"obj_cert_desc\";s:25:\"Settings for certificates\";s:8:\"obj_cert\";s:12:\"Certificates\";s:7:\"obj_wfe\";s:15:\"Workflow Engine\";s:8:\"obj_chap\";s:7:\"Chapter\";s:13:\"obj_cmps_desc\";s:28:\"General settings for Plugins\";s:8:\"obj_cmps\";s:7:\"Plugins\";s:17:\"obj_crs_duplicate\";s:11:\"Copy Course\";s:7:\"obj_crs\";s:6:\"Course\";s:8:\"obj_crsr\";s:11:\"Course Link\";s:7:\"obj_dbk\";s:12:\"Digilib Book\";s:7:\"obj_exc\";s:8:\"Exercise\";s:13:\"obj_extt_desc\";s:67:\"Configure external software or services that are supported by ILIAS\";s:8:\"obj_extt\";s:20:\"Third Party Software\";s:13:\"obj_facs_desc\";s:36:\"Settings for files and file handling\";s:8:\"obj_facs\";s:5:\"Files\";s:8:\"obj_feed\";s:8:\"Web Feed\";s:15:\"obj_file_inline\";s:20:\"Learning Module File\";s:8:\"obj_file\";s:4:\"File\";s:18:\"obj_file_duplicate\";s:14:\"Duplicate File\";s:8:\"obj_fold\";s:6:\"Folder\";s:17:\"obj_frm_duplicate\";s:10:\"Copy Forum\";s:7:\"obj_frm\";s:5:\"Forum\";s:7:\"obj_glo\";s:8:\"Glossary\";s:17:\"obj_grp_duplicate\";s:10:\"Copy Group\";s:7:\"obj_grp\";s:5:\"Group\";s:8:\"obj_htlm\";s:20:\"Learning Module HTML\";s:13:\"obj_ldap_desc\";s:36:\"Configure global LDAP Settings here.\";s:6:\"obj_lm\";s:21:\"Learning Module ILIAS\";s:7:\"obj_lng\";s:8:\"Language\";s:13:\"obj_lngf_desc\";s:34:\"Manage your system languages here.\";s:8:\"obj_lngf\";s:9:\"Languages\";s:13:\"obj_lrss_desc\";s:40:\"Configure all types of learning modules.\";s:8:\"obj_lrss\";s:16:\"Learning Modules\";s:13:\"obj_mail_desc\";s:36:\"Configure global mail settings here.\";s:8:\"obj_mail\";s:4:\"Mail\";s:8:\"obj_mcst\";s:9:\"Mediacast\";s:13:\"obj_mcts_desc\";s:31:\"General settings for mediacast.\";s:8:\"obj_mcts\";s:9:\"Mediacast\";s:7:\"obj_mep\";s:10:\"Media Pool\";s:7:\"obj_mob\";s:12:\"Media Object\";s:13:\"obj_mobs_desc\";s:43:\"Settings for media objects and media pools.\";s:8:\"obj_mobs\";s:23:\"Media Objects and Pools\";s:13:\"obj_not_found\";s:16:\"Object Not Found\";s:13:\"obj_nwss_desc\";s:50:\"Settings for internal news and external web feeds.\";s:8:\"obj_nwss\";s:18:\"News and Web Feeds\";s:13:\"obj_objf_desc\";s:69:\"Manage ILIAS object types and object permissions. (only for experts!)\";s:8:\"obj_objf\";s:18:\"Object Definitions\";s:8:\"obj_page\";s:4:\"Page\";s:6:\"obj_pg\";s:4:\"Page\";s:11:\"obj_ps_desc\";s:52:\"Configure global privacy and security settings here.\";s:6:\"obj_ps\";s:20:\"Privacy and Security\";s:17:\"obj_qpl_duplicate\";s:23:\"Copy Question Pool Test\";s:14:\"obj_qpl_select\";s:42:\"-- Please select one question pool test --\";s:7:\"obj_qpl\";s:18:\"Question Pool Test\";s:8:\"obj_rcrs\";s:10:\"ECS Course\";s:13:\"obj_recf_desc\";s:44:\"Contains restored objects from System Check.\";s:8:\"obj_recf\";s:16:\"Restored Objects\";s:8:\"obj_role\";s:4:\"Role\";s:13:\"obj_rolf_desc\";s:23:\"Manage your roles here.\";s:19:\"obj_rolf_local_desc\";s:34:\"Contains local roles of object no.\";s:14:\"obj_rolf_local\";s:11:\"Local Roles\";s:8:\"obj_rolf\";s:5:\"Roles\";s:8:\"obj_rolt\";s:13:\"Role Template\";s:8:\"obj_root\";s:17:\"Repository - Home\";s:8:\"obj_sahs\";s:21:\"Learning Module SCORM\";s:7:\"obj_sco\";s:3:\"SCO\";s:13:\"obj_seas_desc\";s:32:\"Manage the search settings here.\";s:8:\"obj_seas\";s:6:\"Search\";s:18:\"obj_sess_duplicate\";s:12:\"Copy Session\";s:8:\"obj_sess\";s:7:\"Session\";s:14:\"obj_spl_select\";s:44:\"-- Please select one question pool survey --\";s:7:\"obj_spl\";s:20:\"Question Pool Survey\";s:6:\"obj_st\";s:7:\"Chapter\";s:7:\"obj_sty\";s:5:\"Style\";s:13:\"obj_stys_desc\";s:42:\"Manage system skin and style settings here\";s:8:\"obj_stys\";s:17:\"Layout and Styles\";s:17:\"obj_svy_duplicate\";s:11:\"Copy Survey\";s:7:\"obj_svy\";s:6:\"Survey\";s:13:\"obj_svyf_desc\";s:37:\"Platform settings for the Survey Tool\";s:8:\"obj_svyf\";s:6:\"Survey\";s:13:\"obj_tags_desc\";s:29:\"Settings for tagging feature.\";s:8:\"obj_tags\";s:7:\"Tagging\";s:7:\"obj_tax\";s:8:\"Taxonomy\";s:8:\"obj_taxf\";s:10:\"Taxonomies\";s:13:\"obj_trac_desc\";s:54:\"Statistics and Learning Progress Settings and Overview\";s:8:\"obj_trac\";s:32:\"Statistics and Learning Progress\";s:17:\"obj_tst_duplicate\";s:9:\"Copy Test\";s:7:\"obj_tst\";s:4:\"Test\";s:8:\"obj_type\";s:11:\"Object Type\";s:8:\"obj_user\";s:4:\"User\";s:7:\"obj_usr\";s:4:\"User\";s:13:\"obj_usrf_desc\";s:26:\"Manage user accounts here.\";s:8:\"obj_usrf\";s:15:\"User Management\";s:18:\"obj_webr_duplicate\";s:17:\"Copy Weblink list\";s:8:\"obj_webr\";s:7:\"Weblink\";s:8:\"obj_wiki\";s:4:\"Wiki\";s:3:\"obj\";s:6:\"Object\";s:12:\"object_added\";s:12:\"Object added\";s:23:\"object_copy_in_progress\";s:16:\"Started Copying.\";s:17:\"object_duplicated\";s:13:\"Object copied\";s:9:\"object_id\";s:9:\"Object-Id\";s:15:\"object_imported\";s:15:\"Object imported\";s:6:\"object\";s:6:\"Object\";s:7:\"objects\";s:7:\"Objects\";s:4:\"objf\";s:18:\"Object definitions\";s:8:\"objs_cat\";s:10:\"Categories\";s:9:\"objs_catr\";s:13:\"Category Link\";s:8:\"objs_crs\";s:7:\"Courses\";s:9:\"objs_crsr\";s:11:\"Course Link\";s:8:\"objs_exc\";s:9:\"Exercises\";s:9:\"objs_feed\";s:9:\"Web Feeds\";s:9:\"objs_file\";s:5:\"Files\";s:9:\"objs_fold\";s:7:\"Folders\";s:8:\"objs_frm\";s:6:\"Forums\";s:8:\"objs_glo\";s:10:\"Glossaries\";s:8:\"objs_grp\";s:6:\"Groups\";s:9:\"objs_htlm\";s:21:\"HTML Learning Modules\";s:7:\"objs_lm\";s:22:\"ILIAS Learning Modules\";s:9:\"objs_lres\";s:18:\"Learning Resources\";s:9:\"objs_mail\";s:4:\"Mail\";s:9:\"objs_mcst\";s:10:\"Mediacasts\";s:8:\"objs_mep\";s:11:\"Media Pools\";s:8:\"objs_prg\";s:16:\"Study Programmes\";s:8:\"objs_qpl\";s:19:\"Question Pools Test\";s:8:\"objs_qst\";s:9:\"Questions\";s:9:\"objs_rcrs\";s:11:\"ECS Courses\";s:9:\"objs_role\";s:5:\"Roles\";s:9:\"objs_sahs\";s:22:\"SCORM Learning Modules\";s:9:\"objs_sess\";s:8:\"Sessions\";s:8:\"objs_spl\";s:21:\"Question Pools Survey\";s:7:\"objs_st\";s:8:\"Chapters\";s:8:\"objs_svy\";s:7:\"Surveys\";s:8:\"objs_tst\";s:5:\"Tests\";s:9:\"objs_webr\";s:8:\"Weblinks\";s:9:\"objs_wiki\";s:5:\"Wikis\";s:2:\"of\";s:2:\"Of\";s:7:\"offline\";s:7:\"Offline\";s:2:\"ok\";s:2:\"OK\";s:3:\"old\";s:3:\"Old\";s:8:\"omit_all\";s:8:\"Omit all\";s:4:\"omit\";s:4:\"Omit\";s:15:\"on_waiting_list\";s:27:\"You are on the waiting list\";s:11:\"online_time\";s:25:\"Time online (DD:HH:MM:SS)\";s:6:\"online\";s:6:\"Online\";s:9:\"operation\";s:9:\"Operation\";s:8:\"optimize\";s:8:\"Optimize\";s:6:\"option\";s:6:\"Option\";s:16:\"optional_filters\";s:16:\"Optional Filters\";s:7:\"options\";s:7:\"Options\";s:13:\"order_by_date\";s:7:\"By Date\";s:8:\"order_by\";s:8:\"Order by\";s:12:\"organization\";s:8:\"Provider\";s:5:\"other\";s:5:\"Other\";s:8:\"overview\";s:8:\"Overview\";s:9:\"overwrite\";s:9:\"Overwrite\";s:13:\"owner_updated\";s:14:\"Owner updated.\";s:5:\"owner\";s:5:\"Owner\";s:11:\"page_layout\";s:11:\"Page Layout\";s:12:\"page_layouts\";s:12:\"Page Layouts\";s:4:\"page\";s:4:\"Page\";s:5:\"pages\";s:5:\"Pages\";s:9:\"parameter\";s:9:\"Parameter\";s:5:\"parse\";s:5:\"Parse\";s:6:\"passed\";s:6:\"Passed\";s:17:\"passwd_generation\";s:19:\"Password Generation\";s:14:\"passwd_invalid\";s:119:\"The new password is invalid! Only the following characters are allowed (minimum 6 characters): A-Z a-z 0-9 _.-+?#*@!$%~\";s:16:\"passwd_not_match\";s:83:\"Your entries for the new password don’t match! Please re-enter your new password.\";s:12:\"passwd_wrong\";s:34:\"The password you entered is wrong!\";s:6:\"passwd\";s:8:\"Password\";s:24:\"password_assistance_info\";s:229:\"If password assistance is enabled, a link ‘Forgot Password?’ is shown on the login page of ILIAS. Users can use this link to define a new password for their user account without needing assistance from a system administrator.\";s:37:\"password_change_on_first_login_demand\";s:75:\"You have to change your password before you can start using ILIAS services.\";s:14:\"password_empty\";s:37:\"The password field must not be empty.\";s:16:\"password_expired\";s:84:\"Your password is expired and has to be changed as the last change was %s day(s) ago.\";s:31:\"password_must_chars_and_numbers\";s:49:\"The password must contain characters and numbers.\";s:27:\"password_must_special_chars\";s:45:\"The password must contain special characters.\";s:16:\"password_to_long\";s:55:\"The password must have at most a size of %s characters.\";s:17:\"password_to_short\";s:56:\"The password must have at least a size of %s characters.\";s:8:\"password\";s:8:\"Password\";s:21:\"paste_clipboard_items\";s:5:\"Paste\";s:5:\"paste\";s:5:\"Paste\";s:12:\"pasteChapter\";s:5:\"Paste\";s:9:\"pastePage\";s:5:\"Paste\";s:12:\"path_not_set\";s:12:\"Path not set\";s:15:\"path_to_convert\";s:15:\"Path to Convert\";s:15:\"path_to_htmldoc\";s:15:\"Path to HTMLdoc\";s:12:\"path_to_java\";s:12:\"Path to Java\";s:13:\"path_to_unzip\";s:13:\"Path to Unzip\";s:11:\"path_to_zip\";s:11:\"Path to Zip\";s:4:\"path\";s:4:\"Path\";s:6:\"pathes\";s:5:\"Paths\";s:13:\"pd_items_news\";s:30:\"Include News of Personal Items\";s:10:\"pdf_export\";s:10:\"PDF Export\";s:13:\"perm_settings\";s:11:\"Permissions\";s:10:\"perma_link\";s:14:\"Permanent Link\";s:17:\"permission_denied\";s:17:\"Permission Denied\";s:19:\"permission_settings\";s:26:\"Object Permission Settings\";s:10:\"permission\";s:10:\"Permission\";s:12:\"person_title\";s:5:\"Title\";s:13:\"personal_data\";s:13:\"Personal Data\";s:16:\"personal_picture\";s:6:\"Avatar\";s:16:\"personal_profile\";s:19:\"Profile and Privacy\";s:7:\"persons\";s:7:\"Persons\";s:6:\"pg_add\";s:8:\"Add page\";s:6:\"pg_new\";s:8:\"New page\";s:10:\"phone_home\";s:11:\"Phone, Home\";s:12:\"phone_mobile\";s:13:\"Phone, Mobile\";s:12:\"phone_office\";s:13:\"Phone, Office\";s:5:\"phone\";s:5:\"Phone\";s:6:\"phrase\";s:6:\"Phrase\";s:13:\"please_choose\";s:12:\"-- Select --\";s:19:\"please_enter_target\";s:21:\"Please enter a target\";s:18:\"please_enter_title\";s:20:\"Please enter a title\";s:40:\"please_select_a_delivered_file_to_delete\";s:57:\"You must select at least one delivered file to delete it!\";s:42:\"please_select_a_delivered_file_to_download\";s:59:\"You must select at least one delivered file to download it!\";s:13:\"please_select\";s:19:\"-- Please Select --\";s:11:\"please_wait\";s:14:\"Please wait...\";s:4:\"port\";s:4:\"Port\";s:10:\"pos_bottom\";s:6:\"Bottom\";s:8:\"pos_left\";s:4:\"Left\";s:9:\"pos_right\";s:5:\"Right\";s:7:\"pos_top\";s:3:\"Top\";s:8:\"position\";s:8:\"Position\";s:27:\"precondition_not_accessible\";s:79:\"You do not have sufficient permission to view the precondition(s) of this item.\";s:12:\"precondition\";s:12:\"Precondition\";s:13:\"preconditions\";s:13:\"Preconditions\";s:19:\"predefined_template\";s:24:\"Predefined role template\";s:11:\"preferences\";s:11:\"Preferences\";s:20:\"preview_learner_info\";s:119:\"If enabled, Course and Group administrators have the possibility to view the content form the perspective of a learner.\";s:8:\"previous\";s:8:\"Previous\";s:10:\"print_view\";s:10:\"Print View\";s:5:\"print\";s:5:\"Print\";s:13:\"private_notes\";s:13:\"Private Notes\";s:3:\"pro\";s:3:\"Pro\";s:7:\"proceed\";s:7:\"Proceed\";s:15:\"profile_changed\";s:42:\"ILIAS eLearning - Your profile has changed\";s:18:\"profile_incomplete\";s:61:\"Your profile is incomplete. Please fill in all required data.\";s:10:\"profile_of\";s:10:\"Profile of\";s:7:\"profile\";s:7:\"Profile\";s:10:\"properties\";s:10:\"Properties\";s:17:\"proxy_connectable\";s:23:\"Connection established.\";s:15:\"proxy_host_info\";s:20:\"Please enter a host.\";s:10:\"proxy_host\";s:4:\"Host\";s:21:\"proxy_not_connectable\";s:56:\"ILIAS could not build a connection to the defined proxy.\";s:18:\"proxy_socket_error\";s:16:\"Socket Error: %s\";s:15:\"proxy_port_info\";s:50:\"Please enter a port between 0 and 65535, e.g.8080.\";s:18:\"proxy_port_numeric\";s:62:\"The entered port has to be a numeric value between 0 and 65535\";s:10:\"proxy_port\";s:4:\"Port\";s:17:\"proxy_status_info\";s:102:\"To use a proxy in ILIAS (e.g. for web feeds or to check web links) please activate the checkbox above.\";s:12:\"proxy_status\";s:5:\"Proxy\";s:5:\"proxy\";s:12:\"Proxy-Server\";s:16:\"pub_section_info\";s:230:\"If enabled, parts of the system (e.g. repository, workspace, user profiles) can be made available to the internet without authentication. The permissions of the ‘Anonymous’ role will control the access to repository resources.\";s:11:\"pub_section\";s:16:\"Anonymous Access\";s:12:\"public_notes\";s:12:\"Public Notes\";s:14:\"public_profile\";s:7:\"Profile\";s:6:\"public\";s:6:\"public\";s:7:\"purpose\";s:7:\"Purpose\";s:7:\"qpl_add\";s:22:\"Add Question Pool Test\";s:7:\"qpl_new\";s:22:\"New Question Pool Test\";s:3:\"qpl\";s:18:\"Question Pool Test\";s:10:\"query_data\";s:10:\"Query data\";s:16:\"question_message\";s:8:\"Question\";s:8:\"question\";s:8:\"Question\";s:4:\"quit\";s:4:\"Quit\";s:5:\"quote\";s:5:\"Quote\";s:4:\"read\";s:4:\"Read\";s:25:\"readcount_anonymous_users\";s:33:\"Number of anonymous read accesses\";s:15:\"readcount_users\";s:37:\"Number of non-anonymous read accesses\";s:9:\"recipient\";s:9:\"Recipient\";s:17:\"reference_deleted\";s:25:\"Destination not available\";s:12:\"reference_of\";s:13:\"Reference of:\";s:16:\"referral_comment\";s:29:\"How did you hear about ILIAS?\";s:17:\"refresh_languages\";s:21:\"Refresh All Languages\";s:7:\"refresh\";s:7:\"Refresh\";s:6:\"refuse\";s:6:\"Refuse\";s:35:\"reg_account_confirmation_successful\";s:37:\"Your user account has been activated.\";s:28:\"reg_mail_body_2_confirmation\";s:92:\"The link will only be good for %s, after that you will have to try again from the beginning.\";s:28:\"reg_mail_body_3_confirmation\";s:174:\"If this e-mail means nothing to you, then it is possible that somebody else has entered your e-mail address either deliberately or accidentally, so please ignore this e-mail.\";s:34:\"reg_mail_body_forgot_password_info\";s:132:\"To get your password, please use the function « Forgot password? » at the login screen to request a new password for this account.\";s:24:\"reg_mail_body_salutation\";s:5:\"Hello\";s:19:\"reg_mail_body_text1\";s:27:\"Welcome to ILIAS eLearning!\";s:19:\"reg_mail_body_text2\";s:39:\"To access ILIAS use the following data:\";s:19:\"reg_mail_body_text3\";s:29:\"Further personal information:\";s:29:\"reg_mail_subject_confirmation\";s:40:\"ILIAS eLearning - Your Confirmation Link\";s:16:\"reg_mail_subject\";s:34:\"ILIAS eLearning - Your access data\";s:19:\"reg_passwd_via_mail\";s:62:\"Your password will be sent to your e-mail address given below.\";s:8:\"register\";s:8:\"Register\";s:16:\"registered_since\";s:16:\"Registered since\";s:15:\"registered_user\";s:15:\"registered User\";s:16:\"registered_users\";s:16:\"registered Users\";s:12:\"registration\";s:24:\"New Account Registration\";s:10:\"related_to\";s:10:\"Related to\";s:18:\"remove_translation\";s:18:\"Remove translation\";s:6:\"remove\";s:6:\"Remove\";s:11:\"rename_file\";s:11:\"Rename File\";s:6:\"rename\";s:6:\"Rename\";s:18:\"repeat_scan_failed\";s:21:\"Repeated scan failed.\";s:20:\"repeat_scan_succeded\";s:24:\"Repeated scan succeeded.\";s:11:\"repeat_scan\";s:23:\"Repeating virus scan...\";s:12:\"replace_file\";s:12:\"Replace File\";s:5:\"reply\";s:5:\"Reply\";s:21:\"repository_admin_desc\";s:81:\"Set permissions for repository items, restore or remove objects from system trash\";s:16:\"repository_admin\";s:32:\"Repository Trash and Permissions\";s:10:\"repository\";s:10:\"Repository\";s:13:\"require_email\";s:14:\"Require e-mail\";s:14:\"require_gender\";s:18:\"Require salutation\";s:13:\"require_hobby\";s:13:\"Require hobby\";s:21:\"require_matriculation\";s:28:\"Require matriculation number\";s:24:\"require_referral_comment\";s:24:\"Require referral comment\";s:14:\"required_field\";s:8:\"Required\";s:15:\"res_links_short\";s:5:\"Links\";s:9:\"res_links\";s:16:\"Repository Links\";s:12:\"reset_filter\";s:12:\"Reset Filter\";s:5:\"reset\";s:5:\"Reset\";s:9:\"resources\";s:9:\"Resources\";s:5:\"right\";s:5:\"Right\";s:6:\"rights\";s:6:\"Rights\";s:13:\"role_add_user\";s:19:\"Add User(s) to role\";s:10:\"role_added\";s:10:\"Role added\";s:23:\"role_assignment_updated\";s:33:\"Role assignment has been updated.\";s:15:\"role_assignment\";s:15:\"Role Assignment\";s:22:\"global_role_assignment\";s:23:\"Globale Rollenzuweisung\";s:21:\"local_role_assignment\";s:22:\"Lokale Rollenzuweisung\";s:9:\"role_edit\";s:9:\"Edit Role\";s:11:\"role_mailto\";s:26:\"Mail to all assigned Users\";s:15:\"role_new_search\";s:10:\"New search\";s:8:\"role_new\";s:8:\"New Role\";s:22:\"role_no_roles_selected\";s:20:\"Please select a role\";s:29:\"role_protect_permissions_desc\";s:147:\"The object permissions cannot be changed by systems operations anymore. Furthermore only administrator of higher levels may change the permissions.\";s:24:\"role_protect_permissions\";s:19:\"Protect Permissions\";s:20:\"role_select_one_item\";s:25:\"Please select one object.\";s:27:\"role_sure_delete_desk_items\";s:58:\"Are you sure you want to delete the following assignments?\";s:19:\"role_templates_only\";s:19:\"Role templates only\";s:4:\"role\";s:4:\"Role\";s:22:\"roles_of_import_global\";s:27:\"Global roles of import file\";s:21:\"roles_of_import_local\";s:26:\"Local roles of import file\";s:5:\"roles\";s:5:\"Roles\";s:10:\"rolf_added\";s:17:\"Role folder added\";s:16:\"rolf_create_role\";s:15:\"Create New Role\";s:16:\"rolf_create_rolt\";s:24:\"Create New Role Template\";s:11:\"rolf_delete\";s:27:\"Delete Roles/Role templates\";s:20:\"rolf_edit_permission\";s:26:\"Change permission settings\";s:24:\"rolf_edit_userassignment\";s:31:\"Change user assignment of Roles\";s:9:\"rolf_read\";s:35:\"Read access to Roles/role templates\";s:12:\"rolf_visible\";s:32:\"Roles/role templates are visible\";s:10:\"rolf_write\";s:56:\"Edit default permission settings of Roles/role templates\";s:4:\"rolf\";s:5:\"Roles\";s:10:\"rolt_added\";s:19:\"Role template added\";s:9:\"rolt_edit\";s:18:\"Edit Role Template\";s:8:\"rolt_new\";s:17:\"New Role Template\";s:4:\"rolt\";s:13:\"Role Template\";s:3:\"row\";s:3:\"Row\";s:4:\"rows\";s:4:\"Rows\";s:10:\"sahs_added\";s:27:\"SCORM Learning Module added\";s:26:\"sahs_insert_chap_from_clip\";s:29:\"Paste Chapters from Clipboard\";s:26:\"sahs_insert_page_from_clip\";s:26:\"Paste Pages from Clipboard\";s:25:\"sahs_insert_sco_from_clip\";s:25:\"Paste SCOs from Clipboard\";s:4:\"sahs\";s:21:\"Learning Module SCORM\";s:12:\"salutation_f\";s:8:\"Ms./Mrs.\";s:12:\"salutation_m\";s:3:\"Mr.\";s:12:\"salutation_n\";s:21:\"No salutation desired\";s:10:\"salutation\";s:10:\"Salutation\";s:13:\"save_and_back\";s:13:\"Save And Back\";s:12:\"save_message\";s:13:\"Save as Draft\";s:20:\"save_params_for_cron\";s:27:\"Save Parameter for Cron Job\";s:12:\"save_refresh\";s:16:\"Save and Refresh\";s:11:\"save_return\";s:15:\"Save and Return\";s:13:\"save_settings\";s:13:\"Save Settings\";s:22:\"save_user_related_data\";s:29:\"Save user related access data\";s:4:\"save\";s:4:\"Save\";s:18:\"saved_successfully\";s:18:\"Saved Successfully\";s:29:\"scorm_create_export_file_html\";s:25:\"Create Export File (HTML)\";s:28:\"scorm_create_export_file_pdf\";s:24:\"Create Export File (PDF)\";s:32:\"scorm_create_export_file_scrom12\";s:30:\"Create Export File (SCORM 1.2)\";s:38:\"scorm_create_export_file_scrom2004_4th\";s:43:\"Create Export File (SCORM 2004 4th Edition)\";s:34:\"scorm_create_export_file_scrom2004\";s:43:\"Create Export File (SCORM 2004 3rd Edition)\";s:9:\"scorm_new\";s:45:\"Create SCORM Learning Module (Authoring Mode)\";s:13:\"search_active\";s:20:\"Include active users\";s:13:\"search_engine\";s:19:\"Readable .html URLs\";s:10:\"search_for\";s:10:\"Search For\";s:9:\"search_in\";s:9:\"Search in\";s:15:\"search_inactive\";s:22:\"Include inactive users\";s:10:\"search_new\";s:10:\"New Search\";s:13:\"search_result\";s:13:\"Search Result\";s:14:\"search_results\";s:14:\"Search Results\";s:11:\"search_user\";s:11:\"Search User\";s:6:\"search\";s:6:\"Search\";s:18:\"seas_max_hits_info\";s:63:\"Please enter a number for the maximum number of search results.\";s:13:\"seas_max_hits\";s:8:\"Max hits\";s:13:\"seas_settings\";s:15:\"Search settings\";s:6:\"second\";s:6:\"Second\";s:7:\"seconds\";s:7:\"Seconds\";s:10:\"select_all\";s:10:\"Select All\";s:26:\"select_at_least_one_object\";s:34:\"Please choose at least one object.\";s:11:\"select_file\";s:11:\"Select File\";s:19:\"select_max_one_item\";s:27:\"Please select one item only\";s:21:\"select_object_to_link\";s:47:\"Please select the object which you want to link\";s:10:\"select_one\";s:23:\"Please select one item.\";s:19:\"select_questionpool\";s:21:\"Insert questions into\";s:25:\"select_question_pool_info\";s:117:\"As long as the import file contains questions, these questions will be imported to the selected questionpool as well.\";s:6:\"select\";s:6:\"Select\";s:19:\"selected_items_back\";s:22:\"Back to Personal Items\";s:14:\"selected_items\";s:14:\"Personal Items\";s:26:\"selected_languages_updated\";s:56:\"The selected languages have been updated (if installed):\";s:8:\"selected\";s:8:\"Selected\";s:9:\"send_mail\";s:12:\"Send Message\";s:4:\"send\";s:4:\"Send\";s:6:\"sender\";s:6:\"Sender\";s:4:\"sent\";s:4:\"Sent\";s:8:\"sequence\";s:8:\"Sequence\";s:9:\"sequences\";s:9:\"Sequences\";s:11:\"server_data\";s:11:\"Server Info\";s:15:\"server_software\";s:15:\"Server Software\";s:6:\"server\";s:6:\"Server\";s:4:\"sess\";s:7:\"Session\";s:22:\"session_reminder_alert\";s:184:\"Your session expires in %1$s at %2$s! Choose OK to continue your session. If you click Cancel you will not be reminded during the current browser session anymore. Installation: %3$s.\";s:21:\"session_reminder_info\";s:85:\"If enabled, you receive a reminder before the online-session of your browser expires.\";s:31:\"session_reminder_lead_time_info\";s:241:\"Please specify the lead time for the session reminder in minutes. The reminder displays a warning when only this time span is left before the session expires. Recommended value is 5 (minutes)
The current length of a user session is %s.\";s:26:\"session_reminder_lead_time\";s:8:\"Leadtime\";s:33:\"session_reminder_session_duration\";s:23:\"(Session Duration: %s).\";s:16:\"session_reminder\";s:16:\"Session-Reminder\";s:11:\"set_offline\";s:11:\"Set Offline\";s:10:\"set_online\";s:10:\"Set Online\";s:3:\"set\";s:3:\"Set\";s:17:\"setSystemLanguage\";s:19:\"Set System Language\";s:14:\"settings_saved\";s:14:\"Saved settings\";s:8:\"settings\";s:8:\"Settings\";s:15:\"setUserLanguage\";s:17:\"Set User Language\";s:11:\"shib_active\";s:25:\"Enable Shibboleth support\";s:9:\"shib_city\";s:18:\"Attribute for city\";s:12:\"shib_country\";s:21:\"Attribute for country\";s:22:\"shib_data_conv_warning\";s:59:\"The data manipulation API file you specified cannot be read\";s:14:\"shib_data_conv\";s:38:\"Absolute path to data manipulation API\";s:15:\"shib_department\";s:24:\"Attribute for department\";s:10:\"shib_email\";s:28:\"Attribute for e-mail address\";s:20:\"shib_federation_name\";s:34:\"Name of your Shibboleth federation\";s:14:\"shib_firstname\";s:24:\"Attribute for first name\";s:11:\"shib_gender\";s:53:\"Attribute for salutation (must be ‘m’ or ‘f’)\";s:31:\"shib_general_login_instructions\";s:159:\"To log in via %s, please click on the login button and choose your organization of the following page.
If you have questions concerning this, please ask the\";s:36:\"shib_general_wayf_login_instructions\";s:126:\"In case you are not associated with the given organizations and you need access to a course on this server, please contact the\";s:13:\"shib_idp_list\";s:496:\"Provide a list of Identity Providers to let the user choose from on the ILIAS login page.
On each line there must be a comma-separated tuple for providerID of IdP (see the Shibboleth metadata file) and Name of IdP as it shall be displayed in the drop-down list.
As an optional third parameter you can add the location of a Shibboleth session initiator that shall be used in case your ILIAS installation is part of a multi federation setup.\";s:16:\"shib_institution\";s:25:\"Attribute for institution\";s:30:\"shib_invalid_home_organization\";s:35:\"Please choose a valid organization!\";s:13:\"shib_language\";s:22:\"Attribute for language\";s:13:\"shib_lastname\";s:22:\"Attribute for lastname\";s:17:\"shib_login_button\";s:131:\"Path to the image of a Shibboleth login button that is used to redirect users to the WAYF specified in the Shibboleth configuration\";s:36:\"shib_login_embedded_wayf_description\";s:231:\"If this option is chosen, you can provide any HTML code in the login instructions text area below. This can for example be used to embed an own JavaScript WAYF/Discovery Service or create a custom-tailored design of the login area.\";s:24:\"shib_login_embedded_wayf\";s:24:\"Design custom login area\";s:24:\"shib_login_external_wayf\";s:25:\"Use external WAYF service\";s:24:\"shib_login_internal_wayf\";s:22:\"Use ILIAS WAYF service\";s:15:\"shib_login_type\";s:22:\"Organization selection\";s:10:\"shib_login\";s:27:\"Unique Shibboleth attribute\";s:14:\"shib_member_of\";s:20:\"I am a member of ...\";s:15:\"shib_phone_home\";s:31:\"Attribute for home phone number\";s:17:\"shib_phone_mobile\";s:33:\"Attribute for mobile phone number\";s:17:\"shib_phone_office\";s:33:\"Attribute for office phone number\";s:29:\"shib_select_home_organization\";s:83:\"For authentication via %s, please select your organization from the drop down list.\";s:19:\"shib_settings_saved\";s:34:\"The Shibboleth settings were saved\";s:11:\"shib_street\";s:20:\"Attribute for street\";s:10:\"shib_title\";s:19:\"Attribute for title\";s:11:\"shib_update\";s:26:\"Update this field on login\";s:22:\"shib_user_default_role\";s:41:\"Default role assigned to Shibboleth users\";s:12:\"shib_zipcode\";s:21:\"Attribute for zipcode\";s:4:\"shib\";s:10:\"Shibboleth\";s:20:\"short_inst_name_info\";s:100:\"This title will appear in the browser header title bar. If no value is entered, ‘ILIAS’ is used.\";s:15:\"short_inst_name\";s:11:\"Short Title\";s:12:\"show_details\";s:12:\"Show Details\";s:11:\"show_filter\";s:11:\"Show Filter\";s:9:\"show_list\";s:9:\"Show List\";s:12:\"show_members\";s:15:\"Display Members\";s:10:\"show_owner\";s:10:\"Show Owner\";s:17:\"show_users_online\";s:17:\"Show active users\";s:4:\"show\";s:4:\"Show\";s:10:\"side_frame\";s:10:\"Side Frame\";s:9:\"signature\";s:9:\"Signature\";s:27:\"simultaneous_login_detected\";s:76:\"Your access is denied because of a simultaneous login with the same account.\";s:4:\"size\";s:4:\"Size\";s:10:\"skin_style\";s:20:\"Default Skin / Style\";s:4:\"smtp\";s:4:\"SMTP\";s:29:\"soap_user_administration_desc\";s:48:\"If enabled, ILIAS can be administrated via SOAP.\";s:24:\"soap_user_administration\";s:23:\"Administration via SOAP\";s:19:\"soap_wsdl_path_info\";s:163:\"Please enter the path to the ilias wsdl file which should be used for the webservice. If you leave this field blank, the following path will be used per default:%s\";s:14:\"soap_wsdl_path\";s:9:\"WSDL Path\";s:19:\"sort_by_this_column\";s:19:\"Sort by this column\";s:14:\"sorting_header\";s:20:\"Content Item Sorting\";s:19:\"sorting_info_manual\";s:136:\"Content items can be arranged manually in a preferred order. Additionallyi, please define the standard sorting settings for new objects.\";s:18:\"sorting_info_title\";s:72:\"Content items are arranged automatically by title in alphabetical order.\";s:21:\"sorting_manual_header\";s:8:\"Manually\";s:12:\"sorting_save\";s:12:\"Save Sorting\";s:20:\"sorting_title_header\";s:28:\"Titles in Alphabetical Order\";s:6:\"spacer\";s:6:\"Spacer\";s:7:\"spl_add\";s:24:\"Add Question Pool Survey\";s:7:\"spl_new\";s:24:\"New Question Pool Survey\";s:3:\"spl\";s:20:\"Question Pool Survey\";s:3:\"ssl\";s:11:\"SSL (HTTPS)\";s:15:\"standard_fields\";s:15:\"Standard Fields\";s:9:\"startpage\";s:16:\"ILIAS Login Page\";s:13:\"stat_selected\";s:8:\"Selected\";s:9:\"statistic\";s:9:\"Statistic\";s:10:\"statistics\";s:10:\"Statistics\";s:20:\"status_no_permission\";s:21:\"No permission granted\";s:6:\"status\";s:6:\"Status\";s:4:\"step\";s:4:\"Step\";s:6:\"street\";s:6:\"Street\";s:9:\"structure\";s:9:\"Structure\";s:3:\"sty\";s:5:\"Style\";s:19:\"sub_request_deleted\";s:26:\"Deleted membership request\";s:17:\"sub_request_saved\";s:24:\"Saved membership request\";s:7:\"subject\";s:7:\"Subject\";s:6:\"submit\";s:6:\"Submit\";s:10:\"subobjects\";s:11:\"Sub-objects\";s:12:\"subscription\";s:12:\"Subscription\";s:7:\"subtabs\";s:7:\"SubTabs\";s:15:\"success_message\";s:15:\"Success Message\";s:7:\"summary\";s:7:\"Summary\";s:26:\"sure_delete_selected_users\";s:52:\"Are you sure you want to delete the selected user(s)\";s:15:\"survey_defaults\";s:28:\"Default Settings for Surveys\";s:27:\"survey_unlimited_invitation\";s:20:\"Unlimited Invitation\";s:7:\"svy_add\";s:10:\"Add survey\";s:12:\"svy_finished\";s:29:\"You have completed the survey\";s:7:\"svy_new\";s:10:\"New survey\";s:16:\"svy_not_finished\";s:37:\"The survey has not been completed yet\";s:15:\"svy_not_started\";s:36:\"You did not take part in this survey\";s:7:\"svy_run\";s:3:\"Run\";s:31:\"svy_warning_survey_not_complete\";s:24:\"The survey is incomplete\";s:3:\"svy\";s:6:\"Survey\";s:12:\"system_check\";s:12:\"System Check\";s:18:\"system_information\";s:18:\"System Information\";s:15:\"system_language\";s:15:\"System Language\";s:13:\"system_styles\";s:13:\"System Styles\";s:6:\"system\";s:6:\"System\";s:16:\"systemcheck_cron\";s:32:\"Process System Check in Cron Job\";s:20:\"systemcheck_cronform\";s:38:\"Activation of System Check in Cron Job\";s:17:\"table_mail_import\";s:11:\"Mail import\";s:4:\"tabs\";s:4:\"Tabs\";s:15:\"tagging_my_tags\";s:7:\"My Tags\";s:24:\"take_over_structure_info\";s:116:\"If activated, directories in the zip file will be mapped to categories or, if used in groups or courses, to folders.\";s:19:\"take_over_structure\";s:15:\"Adopt Structure\";s:6:\"target\";s:6:\"Target\";s:7:\"tax_add\";s:12:\"Add Taxonomy\";s:7:\"tax_new\";s:12:\"New Taxonomy\";s:3:\"tax\";s:8:\"Taxonomy\";s:4:\"term\";s:4:\"Term\";s:4:\"test\";s:4:\"Test\";s:5:\"tests\";s:5:\"Tests\";s:7:\"textbox\";s:7:\"Textbox\";s:6:\"thread\";s:6:\"Thread\";s:9:\"thumbnail\";s:9:\"Thumbnail\";s:38:\"time_limit_add_time_limit_for_selected\";s:51:\"Please enter a time period for the selected user(s)\";s:15:\"time_limit_from\";s:17:\"From (time limit)\";s:18:\"time_limit_message\";s:20:\"Message (time limit)\";s:28:\"time_limit_no_users_selected\";s:21:\"Please select a user.\";s:20:\"time_limit_not_valid\";s:24:\"The period is not valid.\";s:16:\"time_limit_owner\";s:18:\"Owner (time limit)\";s:18:\"time_limit_reached\";s:32:\"Your user account is not active.\";s:20:\"time_limit_unlimited\";s:22:\"Unlimited (time limit)\";s:16:\"time_limit_until\";s:18:\"Until (time limit)\";s:10:\"time_limit\";s:6:\"Access\";s:4:\"time\";s:4:\"Time\";s:14:\"title_required\";s:22:\"Please insert a title.\";s:5:\"title\";s:5:\"Title\";s:14:\"to_client_list\";s:16:\"Client Selection\";s:2:\"to\";s:2:\"To\";s:5:\"today\";s:5:\"Today\";s:19:\"toggleGlobalDefault\";s:21:\"Toggle Global Default\";s:17:\"toggleGlobalFixed\";s:19:\"Toggle Global Fixed\";s:8:\"tomorrow\";s:8:\"Tomorrow\";s:5:\"total\";s:5:\"Total\";s:17:\"tracking_settings\";s:26:\"Learning Progress Settings\";s:11:\"translation\";s:11:\"Translation\";s:5:\"trash\";s:5:\"Trash\";s:10:\"tree_frame\";s:10:\"Tree Frame\";s:4:\"tree\";s:4:\"Tree\";s:8:\"treeview\";s:12:\"Show Sidebar\";s:7:\"tst_add\";s:8:\"Add test\";s:7:\"tst_new\";s:8:\"New test\";s:7:\"tst_run\";s:3:\"Run\";s:26:\"tst_statistical_evaluation\";s:10:\"Statistics\";s:14:\"tst_statistics\";s:10:\"Statistics\";s:11:\"tst_results\";s:12:\"Test Results\";s:20:\"tst_user_not_invited\";s:39:\"You are not supposed to take this test.\";s:29:\"tst_warning_test_not_complete\";s:25:\"The test is not complete!\";s:3:\"tst\";s:4:\"Test\";s:6:\"tutors\";s:6:\"Tutors\";s:24:\"txt_registered_passw_gen\";s:109:\"You successfully registered to ILIAS. You should receive an e-Mail including your generated password shortly.\";s:14:\"txt_registered\";s:112:\"You successfully registered to ILIAS. Please click on the button below to login to ILIAS with your user account.\";s:13:\"txt_submitted\";s:228:\"You successfully submitted an account request to ILIAS. Your account request will be reviewed by the system administrators, and should be activated within 48 hours. You will not be able to log in until your account is activated.\";s:3:\"typ\";s:22:\"Object Type Definition\";s:4:\"type\";s:4:\"Type\";s:15:\"udf_added_field\";s:16:\"Added new field.\";s:15:\"udf_delete_sure\";s:71:\"Are you sure you want to delete this field and all assigned user data ?\";s:21:\"udf_duplicate_entries\";s:29:\"The values have to be unique.\";s:17:\"udf_field_deleted\";s:14:\"Deleted field.\";s:23:\"udf_name_already_exists\";s:63:\"This field name already exists. Please choose a different name.\";s:31:\"udf_required_requires_visib_reg\";s:84:\"When field is set to ‘required’, it must be set to ‘visible in registration’\";s:13:\"udf_type_date\";s:4:\"Date\";s:17:\"udf_type_datetime\";s:13:\"Date and Time\";s:15:\"udf_type_select\";s:30:\"Selection List (Single Choice)\";s:13:\"udf_type_text\";s:21:\"Text Field (One Line)\";s:16:\"udf_type_wysiwyg\";s:19:\"Text Area (WYSIWYG)\";s:23:\"udf_update_select_field\";s:15:\"Edit Select Box\";s:21:\"udf_update_text_field\";s:15:\"Edit Text Field\";s:24:\"udf_update_wysiwyg_field\";s:30:\"Edit Text Area (WYSIWYG) Field\";s:3:\"uid\";s:3:\"UID\";s:22:\"ums_create_new_account\";s:18:\"Create New Account\";s:17:\"ums_explanation_2\";s:65:\"If this is not your account, please hit ‘Create New Account’.\";s:17:\"ums_explanation_3\";s:198:\"Your external account could not be mapped to an ILIAS account. But ILIAS has found multiple accounts with your e-mail address. If one of those is your account, please login with your ILIAS password.\";s:17:\"ums_explanation_4\";s:69:\"If none of them is your account, please hit ‘Create New Account’.\";s:15:\"ums_explanation\";s:183:\"Your external account could not be mapped to an ILIAS account. But ILIAS has found an account with your e-mail address. If this is your account, please login with your ILIAS password.\";s:15:\"unambiguousness\";s:19:\"Distinguishing Mark\";s:11:\"uncheck_all\";s:11:\"Uncheck all\";s:9:\"unchecked\";s:9:\"Unchecked\";s:9:\"uninstall\";s:9:\"Uninstall\";s:11:\"uninstalled\";s:12:\"uninstalled.\";s:7:\"unknown\";s:7:\"UNKNOWN\";s:6:\"unread\";s:6:\"Unread\";s:5:\"unzip\";s:5:\"Unzip\";s:2:\"up\";s:2:\"Up\";s:14:\"update_applied\";s:14:\"Update Applied\";s:15:\"update_language\";s:15:\"Update Language\";s:18:\"update_on_conflict\";s:18:\"Update on conflict\";s:6:\"update\";s:4:\"Edit\";s:27:\"upload_error_file_not_found\";s:29:\"Upload error: File not found.\";s:6:\"upload\";s:6:\"Upload\";s:20:\"uploaded_and_checked\";s:71:\"The file has been uploaded and checked, you can now start to import it.\";s:3:\"uri\";s:3:\"URI\";s:13:\"url_not_found\";s:14:\"File Not Found\";s:12:\"url_to_latex\";s:23:\"URL to LaTeX CGI script\";s:3:\"url\";s:3:\"URL\";s:27:\"use_customized_instructions\";s:28:\"Use customized instructions:\";s:24:\"use_default_instructions\";s:25:\"Use default instructions.\";s:14:\"user_activated\";s:22:\"User has been approved\";s:10:\"user_added\";s:10:\"User added\";s:15:\"user_assignment\";s:15:\"User Assignment\";s:22:\"user_cant_receive_mail\";s:52:\"%1$s – user is not allowed to use the mail system.\";s:12:\"user_comment\";s:12:\"User comment\";s:16:\"user_deactivated\";s:25:\"User has been disapproved\";s:19:\"user_defined_fields\";s:13:\"Custom Fields\";s:17:\"user_defined_list\";s:23:\"Custom User Data Fields\";s:12:\"user_deleted\";s:12:\"User deleted\";s:11:\"user_detail\";s:11:\"Detail Data\";s:21:\"user_ext_account_desc\";s:84:\"Account used for external authentication. (CAS, SOAP, LDAP or Radius authentication)\";s:16:\"user_ext_account\";s:16:\"External Account\";s:10:\"user_image\";s:10:\"User Image\";s:18:\"user_import_failed\";s:19:\"User import failed.\";s:27:\"user_imported_with_warnings\";s:35:\"User import complete with warnings.\";s:13:\"user_imported\";s:21:\"User import complete.\";s:13:\"user_language\";s:13:\"User Language\";s:26:\"user_new_account_mail_desc\";s:190:\"This mail is sent automatically to users that have self-registered or to those who have been registered by an administrator with enabled setting ‘Send mail to inform user about changes’.\";s:21:\"user_new_account_mail\";s:16:\"New Account Mail\";s:14:\"user_not_known\";s:31:\"Please insert a valid username.\";s:18:\"user_profile_other\";s:17:\"Other Information\";s:26:\"user_send_new_account_mail\";s:23:\"Send new account e-mail\";s:11:\"user_status\";s:11:\"User Status\";s:16:\"user_toggle_noti\";s:48:\"Member is not allowed to deactivate notification\";s:4:\"user\";s:4:\"User\";s:8:\"userdata\";s:9:\"User Data\";s:21:\"userfolder_export_csv\";s:22:\"Comma Separated Values\";s:27:\"userfolder_export_excel_x86\";s:15:\"Microsoft Excel\";s:27:\"userfolder_export_file_size\";s:9:\"File size\";s:22:\"userfolder_export_file\";s:4:\"File\";s:23:\"userfolder_export_files\";s:5:\"Files\";s:21:\"userfolder_export_xml\";s:3:\"XML\";s:8:\"username\";s:8:\"Username\";s:18:\"users_not_imported\";s:71:\"The following users do not exist, their messages cannot become imported\";s:12:\"users_online\";s:12:\"Active Users\";s:5:\"users\";s:5:\"Users\";s:15:\"usr_active_only\";s:17:\"Active Users only\";s:7:\"usr_add\";s:8:\"Add User\";s:13:\"usr_agreement\";s:16:\"Terms of Service\";s:8:\"usr_edit\";s:9:\"Edit User\";s:23:\"usr_filter_coursemember\";s:16:\"Member of course\";s:22:\"usr_filter_groupmember\";s:15:\"Member of group\";s:20:\"usr_filter_lastlogin\";s:18:\"Last login of user\";s:15:\"usr_filter_role\";s:13:\"Assigned role\";s:17:\"usr_inactive_only\";s:19:\"Inactive Users only\";s:23:\"usr_limited_access_only\";s:30:\"Users with limited access only\";s:7:\"usr_new\";s:8:\"New User\";s:32:\"usr_settings_explanation_profile\";s:388:\"Check ‘Visible’ to show fields in the registration form and personal settings. Check ‘Changeable’ to allow the user to change the values. Please note that visible fields can always be entered in the registration form. Required fields are required in the registration form and the personal settings. All data can be changed in the user administration independent on these settings.\";s:27:\"usr_settings_header_profile\";s:25:\"Standard User Data Fields\";s:18:\"usr_settings_saved\";s:40:\"Global user settings saved successfully!\";s:22:\"usr_settings_visib_lua\";s:36:\"Visible in Local User Administration\";s:27:\"usr_settings_changeable_lua\";s:39:\"Changeable in Local User Administration\";s:14:\"usr_skin_style\";s:12:\"Skin / Style\";s:19:\"usr_without_courses\";s:30:\"Users without courses assigned\";s:3:\"usr\";s:4:\"User\";s:4:\"usrf\";s:13:\"User accounts\";s:24:\"usrimport_action_ignored\";s:20:\"Ignored action %1$s.\";s:25:\"usrimport_action_replaced\";s:29:\"Replaced action %1$s by %2$s.\";s:27:\"usrimport_form_not_evaluabe\";s:31:\"The form data couldn\'t be read.\";s:26:\"usrimport_wrong_file_count\";s:50:\"Too many files in import-folder. Please try again.\";s:21:\"usrimport_cant_delete\";s:60:\"Can\'t perform ‘Delete’ action. No such user in database.\";s:21:\"usrimport_cant_insert\";s:63:\"Can\'t perform ‘Insert’ action. User is already in database.\";s:21:\"usrimport_cant_update\";s:60:\"Can\'t perform ‘Update’ action. No such user in database.\";s:32:\"usrimport_conflict_handling_info\";s:456:\"When ‘Ignore on conflict’ is selected, ILIAS ignores an action, if it can not be performed (e. g. an ‘Insert’ action is not done, if there is already a user with the same login in the database.) When ‘Update on conflict’ is selected, ILIAS updates the database if an action can not be performed. (e. g. an ‘Insert’ action is replaced by an ‘Update’ action and the other way around, if a user with the same login exists in the database).\";s:41:\"usrimport_global_role_for_action_required\";s:61:\"At least one global role must be specified for \"%1$s\" action.\";s:21:\"usrimport_ignore_role\";s:11:\"Ignore role\";s:29:\"usrimport_login_is_not_unique\";s:20:\"Login is not unique.\";s:38:\"usrimport_no_insert_ext_account_exists\";s:67:\"Can\'t perform ‘Insert’ action. External account already exists.\";s:38:\"usrimport_no_update_ext_account_exists\";s:67:\"Can\'t perform ‘Update’ action. External account already exists.\";s:43:\"usrimport_with_specified_role_not_permitted\";s:41:\"Import with specified role not permitted.\";s:31:\"usrimport_xml_attribute_missing\";s:46:\"Attribute \"%2$s\" in element \"%1$s\" is missing.\";s:37:\"usrimport_xml_attribute_value_illegal\";s:62:\"Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is illegal.\";s:42:\"usrimport_xml_attribute_value_inapplicable\";s:85:\"Value \"%3$s\" of attribute \"%2$s\" in element \"%1$s\" is inapplicable for \"%4$s\" action.\";s:37:\"usrimport_xml_element_content_illegal\";s:44:\"Content \"%2$s\" of element \"%1$s\" is illegal.\";s:41:\"usrimport_xml_element_for_action_required\";s:51:\"Element \"%1$s\" must be specified for \"%2$s\" action.\";s:34:\"usrimport_xml_element_inapplicable\";s:49:\"Element \"%1$s\" is inapplicable for \"%2$s\" action.\";s:5:\"valid\";s:5:\"Valid\";s:8:\"validate\";s:8:\"Validate\";s:5:\"value\";s:5:\"Value\";s:14:\"vcard_download\";s:22:\"Download Visiting Card\";s:5:\"vcard\";s:13:\"Visiting Card\";s:19:\"verification_failed\";s:19:\"Verification failed\";s:24:\"verification_failure_log\";s:24:\"Verification failure log\";s:24:\"verification_warning_log\";s:24:\"Verification warning log\";s:7:\"version\";s:7:\"Version\";s:8:\"versions\";s:8:\"Versions\";s:12:\"view_content\";s:12:\"View Content\";s:4:\"view\";s:4:\"View\";s:20:\"visible_registration\";s:23:\"Visible in Registration\";s:7:\"visible\";s:7:\"Visible\";s:7:\"visitor\";s:7:\"Visitor\";s:8:\"visitors\";s:8:\"Visitors\";s:6:\"visits\";s:6:\"Visits\";s:13:\"web_resources\";s:8:\"Weblinks\";s:6:\"webdav\";s:6:\"WebDAV\";s:28:\"webdav_forbidden_chars_title\";s:104:\"Following files cannot be displayed, because they contain one or more forbidden characters (\\<>/:*?\"|#):\";s:31:\"webdav_duplicate_detected_title\";s:103:\"Following objects could not be displayed, because an object with the same Title is already being shown:\";s:29:\"webdav_problem_info_duplicate\";s:53:\"There is a file with the same title as the info file.\";s:29:\"webdav_problem_free_container\";s:59:\"There are no objects that cause problems in this container.\";s:24:\"webdav_enable_versioning\";s:15:\"File Versioning\";s:22:\"webdav_versioning_info\";s:88:\"If enabled, already existing files will get a new version instead of beeing overwritten.\";s:33:\"webdav_add_instructions_btn_label\";s:31:\"Add Mount Instructions Document\";s:30:\"webdav_docs_mount_instructions\";s:28:\"Mount Instructions Documents\";s:23:\"webdav_general_settings\";s:16:\"General Settings\";s:20:\"webdav_form_document\";s:21:\"Instructions Document\";s:25:\"webdav_form_document_info\";s:111:\"Upload a txt or an html file here. After the upload the file will be parsed and processed. For more information\";s:26:\"webdav_form_document_title\";s:5:\"Title\";s:31:\"webdav_form_document_title_info\";s:92:\"This title will be dislayed as the title of the modal when the Mount Instructions are opened\";s:24:\"webdav_form_new_doc_head\";s:38:\"Create new Mount Instructions Document\";s:25:\"webdav_form_edit_doc_head\";s:32:\"Edit Mount Instructions Document\";s:25:\"webdav_mount_instructions\";s:18:\"Mount Instructions\";s:30:\"webdav_sure_delete_documents_s\";s:80:\"Are you sure you want to delete the Mount Instructions with the following title:\";s:21:\"webdav_tbl_docs_title\";s:42:\"List of uploaded WebDAV Mount Instructions\";s:26:\"webdav_tbl_docs_head_title\";s:14:\"Dokument title\";s:26:\"webdav_upload_instructions\";s:19:\"Upload Instructions\";s:35:\"webdav_chosen_language_already_used\";s:69:\"There already is another document associated with the chosen language\";s:19:\"webdav_missing_lang\";s:60:\"There is no english version of the WebDAV Mount Instructions\";s:17:\"webdav_doc_delete\";s:32:\"Delete WebDav Mount Instructions\";s:18:\"webfolder_dir_info\";s:122:\"You got here, because your browser can\'t open webfolders. Read the instructions for opening webfolders.\";s:18:\"webfolder_index_of\";s:13:\"Index of %1$s\";s:27:\"webfolder_instructions_info\";s:458:\"The webfolder instructions are shown on browsers, which can not open a webfolder directly. You can use HTML code, and the following placeholders: [WEBFOLDER_TITLE], [WEBFOLDER_URI], [WEBFOLDER_URI], [WEBFOLDER_URI_KONQUEROR], [WEBFOLDER_URI_NAUTILUS], [ADMIN_MAIL], [WINDOWS]...[/WINDOWS], [MAC]...[/MAC], [LINUX]...[/LINUX]. Clear the field to get the default instructions.\";s:27:\"webfolder_instructions_text\";s:2069:\"[WINDOWS]

Instructions for connecting with Windows

  1. Open Windows-Explorer (e.g. key combination Windows + E).
  2. Rightclick on \"This PC\" and select \"Map network drive...\".
  3. Enter the following address as address (you may copy and paste the URL):

    [WEBFOLDER_URI]

  4. Click \"Finish\".
  5. Enter your login and password, and select \"OK\".
  6. You can now access the webfolder from the start menu \"Computer\".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/WINDOWS] [MAC]

Instructions for Mac OS X

  1. Open the Finder.
  2. Choose the menu \'Goto to > Connect to server...\'.
    This opens the window \'connect to server\'.
  3. Enter this URL as server URL:
    [WEBFOLDER_URI]
    und click on \'Connect\'.
  4. Enter your login and password, and select \"OK\".

Your login and password is identical to your local ILIAS login and can be changed via \"Personal Settings\".[/MAC][LINUX]

Instructions for Linux with Konqueror

  1. Open Konqueror Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_KONQUEROR]
    and press enter.
  3. Enter your login and password, and select \"OK\".

Instructions for Linux with Nautilus

  1. Open Nautilus Browser.
  2. Enter this URL as server URL:
    [WEBFOLDER_URI_NAUTILUS]
    and press enter.
  3. Enter your login and password, and select \"OK\".

Your login and password is identical to your local ILIAS login and can be changed in your personal settings.[/LINUX]

Tips & Support

  • These steps need to be done only once. You may access your connection again later.
  • Connect to a higher folder. You can always navigate down the tree, but nut upwards.
  • If your computer can not open the WebDAV Connection, please contact ILIAS Support.
\";s:32:\"webfolder_instructions_titletext\";s:17:\"Open as webfolder\";s:22:\"webfolder_instructions\";s:22:\"Webfolder instructions\";s:24:\"webfolder_mount_dir_with\";s:167:\"Open this page as a Webfolder with Internet Explorer 6, Konqueror, Nautilus, other Browser.\";s:11:\"webr_active\";s:6:\"Active\";s:8:\"webr_add\";s:11:\"Add Weblink\";s:18:\"webr_deleted_items\";s:19:\"Deleted Weblink(s).\";s:18:\"webr_disable_check\";s:18:\"Disable Validation\";s:9:\"webr_edit\";s:12:\"Edit Weblink\";s:21:\"webr_last_check_table\";s:11:\"Last check:\";s:22:\"webr_sure_delete_items\";s:54:\"Do you really want to delete the following Weblink(s)?\";s:4:\"webr\";s:7:\"Weblink\";s:11:\"webservices\";s:4:\"SOAP\";s:4:\"week\";s:4:\"Week\";s:6:\"weekly\";s:6:\"weekly\";s:5:\"weeks\";s:5:\"Weeks\";s:7:\"welcome\";s:7:\"Welcome\";s:5:\"width\";s:5:\"Width\";s:8:\"wiki_add\";s:8:\"Add Wiki\";s:8:\"wiki_new\";s:8:\"New Wiki\";s:4:\"wiki\";s:4:\"Wiki\";s:4:\"with\";s:4:\"with\";s:18:\"wizard_search_list\";s:67:\"Your search produced the following hits. Please select one of them.\";s:17:\"wizard_title_info\";s:148:\"Search for the object you want to duplicate. Please enter the object\'s title or a part of it and click on \'Continue\' to get matching search results.\";s:5:\"write\";s:5:\"Write\";s:17:\"wrong_ip_detected\";s:142:\"Your access is denied because of a wrong client ip.
You are currently using this IP address: %s
Please contact the system administrator.\";s:4:\"year\";s:4:\"Year\";s:5:\"years\";s:5:\"Years\";s:3:\"yes\";s:3:\"Yes\";s:9:\"yesterday\";s:9:\"Yesterday\";s:19:\"zip_structure_error\";s:49:\"Archive contains same file names. Upload aborted.\";s:15:\"zip_test_failed\";s:56:\"Zip-Test failed. Please contact you ILIAS administrator.\";s:3:\"zip\";s:8:\"Zip Code\";s:7:\"zipcode\";s:8:\"Zip Code\";s:10:\"page_count\";s:10:\"Page Count\";s:14:\"db_need_hotfix\";s:70:\"Hotfix available. Please open »Setup!\";s:14:\"session_config\";s:16:\"Session Settings\";s:35:\"session_config_maintenance_disabled\";s:33:\"Maintenance by client not allowed\";s:17:\"session_max_count\";s:19:\"Max active sessions\";s:22:\"session_max_count_info\";s:120:\"Defines the maximum number of sessions that can be created simultaneously. Setting this to ‘0’ disables the feature.\";s:16:\"session_min_idle\";s:29:\"Min session idle (in minutes)\";s:21:\"session_min_idle_info\";s:188:\"When a user idles for at least this period of time the session can be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.\";s:16:\"session_max_idle\";s:29:\"Max session idle (in minutes)\";s:21:\"session_max_idle_info\";s:83:\"Defines the maximum period of idle time a user can idle before his session expires.\";s:36:\"session_max_idle_after_first_request\";s:49:\"Max session idle after first request (in minutes)\";s:41:\"session_max_idle_after_first_request_info\";s:203:\"All sessions that idles for at least this period of time after first request will be destroyed if another session should be opened for another user and the maximum number of existing sessions is reached.\";s:21:\"reached_session_limit\";s:61:\"The limit of online users is reached. Please try again later.\";s:32:\"mail_to_global_roles_not_allowed\";s:54:\"%1$s (it is not allowed to send mails to global roles)\";s:29:\"delete_inactive_user_accounts\";s:50:\"Delete user accounts with no login for a long time\";s:34:\"delete_inactive_user_accounts_desc\";s:84:\"If enabled, user accounts will be deleted depending on the date of their last login.\";s:36:\"delete_inactive_user_accounts_period\";s:28:\"Days passed since last login\";s:41:\"delete_inactive_user_accounts_period_desc\";s:96:\"All user accounts without login within the defined number of days will be deleted automatically.\";s:43:\"delete_inactive_user_accounts_include_roles\";s:16:\"Considered roles\";s:48:\"delete_inactive_user_accounts_include_roles_desc\";s:114:\"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.\";s:15:\"update_orgunits\";s:36:\"Update assigned organisational units\";s:20:\"update_orgunits_desc\";s:83:\"If enabled, the field \'Organisational Units\' will be updated for all user accounts.\";s:32:\"delete_inactivated_user_accounts\";s:32:\"Delete inactivated user accounts\";s:37:\"delete_inactivated_user_accounts_desc\";s:75:\"If enabled, user accounts will be deleted %s days after their inactivation.\";s:39:\"delete_inactivated_user_accounts_period\";s:30:\"Days passed since inactivation\";s:44:\"delete_inactivated_user_accounts_period_desc\";s:78:\"Accounts will be deleted if this number of days has passed since inactivation.\";s:46:\"delete_inactivated_user_accounts_include_roles\";s:16:\"Considered roles\";s:51:\"delete_inactivated_user_accounts_include_roles_desc\";s:114:\"Only user accounts with one of the marked roles will be checked and deleted if maximum number of days is exceeded.\";s:8:\"obj_frma\";s:5:\"Forum\";s:13:\"obj_frma_desc\";s:21:\"Global Forum Settings\";s:10:\"backto_lua\";s:33:\"Back to Local User Administration\";s:19:\"sort_inherit_prefix\";s:7:\"Default\";s:20:\"sorting_info_inherit\";s:55:\"The sorting mode is adopted from a parent course/group.\";s:11:\"sel_country\";s:7:\"Country\";s:8:\"obj_book\";s:12:\"Booking Pool\";s:9:\"objs_book\";s:13:\"Booking Pools\";s:17:\"country_selection\";s:29:\"Country (Drop Down Selection)\";s:17:\"country_free_text\";s:25:\"Country (Free Text Input)\";s:20:\"optional_filter_hint\";s:44:\"Please activate one of the optional filters.\";s:19:\"sess_fixed_duration\";s:22:\"Fixed Session Duration\";s:36:\"sess_load_dependent_session_handling\";s:31:\"Load Dependent Session Handling\";s:9:\"sess_mode\";s:12:\"Session Mode\";s:18:\"cronjob_last_start\";s:26:\"Last Start of the Cron Job\";s:30:\"enable_disk_quota_summary_mail\";s:23:\"Send Disk Quota Summary\";s:35:\"enable_disk_quota_summary_mail_desc\";s:99:\"The disk quota summary is a daily notification containing all users, who exceeded their disk quota.\";s:23:\"disk_quota_summary_rctp\";s:10:\"Recipients\";s:28:\"disk_quota_summary_rctp_desc\";s:133:\"Enter the user names (comma-separated) of those users who shall receive a daily report with users currently exceeding the disk quota.\";s:28:\"disk_quota_exceeded_headline\";s:51:\"The following users have exceeded their disk quota:\";s:17:\"usrf_profile_link\";s:20:\"Link to user profile\";s:25:\"currently_used_disk_space\";s:25:\"Currently used disk space\";s:26:\"disk_quota_summary_subject\";s:30:\"Summary of Exceeded Disk Quota\";s:26:\"cronjob_last_start_unknown\";s:13:\"Indeterminate\";s:30:\"cron_mail_notification_message\";s:41:\"Send Mail Notifications with Mail-Message\";s:35:\"cron_mail_notification_message_info\";s:89:\"If enabled, all users will get notifications with complete mail message by external mail.\";s:25:\"follow_link_to_read_mails\";s:45:\"click the following link to read these mails:\";s:31:\"mails_at_the_ilias_installation\";s:58:\"You received %1$s new mails at the ILIAS-Installation %2$s\";s:30:\"mail_at_the_ilias_installation\";s:57:\"You received %1$s new mail at the ILIAS-Installation %2$s\";s:22:\"webdav_pwd_instruction\";s:147:\"We suggest to create a local password for opening the repository as webfolder.
This password is only required for the webfolder functionality.\";s:30:\"webdav_pwd_instruction_success\";s:84:\"A new local password has been created. You can now open the repository as webfolder.\";s:22:\"err_auth_apache_failed\";s:107:\"The authentication has failed. Maybe you have no valid user certificate or your smart card is not inserted.\";s:21:\"nr_following_sessions\";s:27:\"%1d following session(s)...\";s:7:\"obj_ass\";s:5:\"Asset\";s:26:\"enable_anonymous_fora_desc\";s:104:\"If this option is disabled, the feature ‘Posting with pseudonym’ is not available in forums anymore.\";s:21:\"enable_anonymous_fora\";s:28:\"Allow posting with pseudonym\";s:8:\"obj_wfld\";s:6:\"Folder\";s:8:\"obj_blog\";s:4:\"Blog\";s:29:\"preconditions_obligatory_hint\";s:54:\"You have to fulfill all of the following preconditions\";s:27:\"preconditions_optional_hint\";s:60:\"You have to fulfill %s of the following preconditions\";s:10:\"glo_import\";s:15:\"Import Glossary\";s:13:\"rep_main_page\";s:4:\"Home\";s:17:\"personal_settings\";s:8:\"Settings\";s:20:\"show_hidden_sections\";s:29:\"Show More Information »\";s:21:\"hide_visible_sections\";s:29:\"Hide More Information »\";s:18:\"tst_edit_questions\";s:14:\"Edit Questions\";s:5:\"first\";s:5:\"First\";s:6:\"behind\";s:6:\"Behind\";s:33:\"enable_course_group_notifications\";s:37:\"Daily Mail for Groups and Course News\";s:38:\"enable_course_group_notifications_desc\";s:66:\"If enabled, Participants can subscribe to a daily summary of news.\";s:6:\"saving\";s:9:\"Saving...\";s:14:\"user_not_found\";s:14:\"User not found\";s:20:\"cont_iim_create_info\";s:63:\"Please upload the background picture for the interactive image.\";s:21:\"cont_iim_overlay_info\";s:187:\"Overlay images are used to alter (e.g. highlight) parts of the background image when the mouse hovers over them. After uploading the images, you can select them in the ‘Triggers’ tab.\";s:28:\"cont_iim_content_popups_info\";s:195:\"Content popups appear, when the user clicks on interactive parts of the background image. On this screen you only define the popups. Their content can be edited on the editing screen of the page.\";s:19:\"file_upload_pending\";s:12:\"Pending file\";s:6:\"yearly\";s:6:\"yearly\";s:22:\"allow_user_toggle_noti\";s:44:\"Member is allowed to deactivate notification\";s:20:\"usr_account_inactive\";s:16:\"Inactive Account\";s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"obj_skmg\";s:21:\"Competence Management\";s:13:\"obj_skmg_desc\";s:45:\"Manage competences and competence categories.\";s:6:\"skills\";s:11:\"Competences\";s:17:\"exc_next_deadline\";s:13:\"Next Deadline\";s:20:\"password_allow_chars\";s:17:\"Allowed chars: %s\";s:9:\"objs_chtr\";s:9:\"Chat Room\";s:8:\"obj_chta\";s:9:\"Chat Room\";s:8:\"obj_chtr\";s:9:\"Chat Room\";s:24:\"password_multiple_errors\";s:36:\"Multiple criteria are not satisfied:\";s:31:\"password_contains_invalid_chars\";s:40:\"The password contains invalid characters\";s:6:\"notice\";s:6:\"Notice\";s:11:\"public_room\";s:11:\"Public room\";s:17:\"my_courses_groups\";s:21:\"My Courses and Groups\";s:25:\"enable_sahs_protocol_data\";s:22:\"Activate Protocol Data\";s:30:\"enable_sahs_protocol_data_desc\";s:26:\"Show Protocol Data (SCORM)\";s:9:\"chtr_copy\";s:14:\"Copy Chat Room\";s:30:\"precondition_required_itemlist\";s:21:\"Required Precondition\";s:19:\"precondition_toggle\";s:61:\"Preconditions that need to be fulfilled to access this object\";s:11:\"top_of_page\";s:11:\"Top of page\";s:10:\"spl_import\";s:27:\"Import Question Pool Survey\";s:12:\"chta_visible\";s:35:\"Chat Room Administration is visible\";s:9:\"chta_read\";s:39:\"Read access to Chat Room Administration\";s:10:\"chta_write\";s:29:\"Edit Chat Room Administration\";s:20:\"chta_edit_permission\";s:26:\"Change Permission Settings\";s:11:\"apache_auth\";s:21:\"Apache Authentication\";s:15:\"server_disabled\";s:20:\"The Chat is Disabled\";s:8:\"continue\";s:8:\"continue\";s:22:\"ignore_required_fields\";s:22:\"Ignore required fields\";s:27:\"ignore_required_fields_info\";s:174:\"If activated, you can submit this form without filling out all mandatory fields. The new user has to add the missing information on the personal profile after the next login.\";s:8:\"obj_rcat\";s:12:\"ECS Category\";s:16:\"obj_lm_duplicate\";s:20:\"Copy Learning Module\";s:31:\"reg_goto_parent_membership_info\";s:42:\"Only members can access the target object.\";s:14:\"remove_entries\";s:14:\"Remove Entries\";s:9:\"objs_blog\";s:5:\"Blogs\";s:18:\"obj_blog_duplicate\";s:9:\"Copy Blog\";s:7:\"obj_dcl\";s:15:\"Data Collection\";s:8:\"objs_dcl\";s:16:\"Data Collections\";s:17:\"obj_dcl_duplicate\";s:20:\"Copy Data Collection\";s:18:\"shib_matriculation\";s:34:\"Attribute for Matriculation Number\";s:20:\"soap_connect_timeout\";s:18:\"Connection Timeout\";s:25:\"soap_connect_timeout_info\";s:90:\"The maximum time in seconds until a connect attempt to the SOAP-Webservice is interrupted.\";s:17:\"obj_mep_duplicate\";s:15:\"Copy Media Pool\";s:18:\"obj_mcst_duplicate\";s:14:\"Copy Mediacast\";s:17:\"obj_glo_duplicate\";s:13:\"Copy Glossary\";s:18:\"obj_htlm_duplicate\";s:25:\"Copy HTML Learning Module\";s:18:\"obj_wiki_duplicate\";s:9:\"Copy Wiki\";s:18:\"obj_sahs_duplicate\";s:20:\"Copy Learning Module\";s:8:\"obj_poll\";s:4:\"Poll\";s:9:\"objs_poll\";s:5:\"Polls\";s:18:\"obj_poll_dupliate:\";s:9:\"Copy Poll\";s:11:\"mail_member\";s:14:\"Mail to Member\";s:7:\"imprint\";s:12:\"Legal Notice\";s:18:\"crs_list_reg_start\";s:18:\"Registration Begin\";s:16:\"crs_list_reg_end\";s:16:\"Registration End\";s:18:\"crs_list_reg_noreg\";s:24:\"No Registration Possible\";s:19:\"crs_list_reg_period\";s:19:\"Registration Period\";s:12:\"crs_list_reg\";s:12:\"Registration\";s:23:\"crs_list_reg_limit_full\";s:14:\"No places left\";s:25:\"crs_list_reg_limit_places\";s:11:\"Free places\";s:13:\"obj_hlps_desc\";s:28:\"Settings for the online help\";s:8:\"obj_hlps\";s:11:\"Help System\";s:18:\"grp_list_reg_start\";s:18:\"Registration Begin\";s:16:\"grp_list_reg_end\";s:16:\"Registration End\";s:18:\"grp_list_reg_noreg\";s:24:\"No Registration Possible\";s:19:\"grp_list_reg_period\";s:19:\"Registration Period\";s:12:\"grp_list_reg\";s:12:\"Registration\";s:23:\"grp_list_reg_limit_full\";s:14:\"No places left\";s:25:\"grp_list_reg_limit_places\";s:11:\"Free places\";s:9:\"add_entry\";s:14:\"Add/Edit entry\";s:18:\"obj_poll_duplicate\";s:9:\"Copy Poll\";s:9:\"objs_rcat\";s:14:\"ECS Categories\";s:8:\"obj_itgr\";s:10:\"Item Group\";s:9:\"objs_itgr\";s:11:\"Item Groups\";s:8:\"itgr_new\";s:14:\"New Item Group\";s:8:\"itgr_add\";s:14:\"Add Item Group\";s:15:\"search_globally\";s:8:\"Globally\";s:26:\"search_at_current_position\";s:19:\"At Current Position\";s:8:\"obj_rwik\";s:8:\"ECS Wiki\";s:9:\"objs_rwik\";s:9:\"ECS Wikis\";s:7:\"obj_rlm\";s:19:\"ECS Learning Module\";s:8:\"objs_rlm\";s:20:\"ECS Learning Modules\";s:8:\"obj_rglo\";s:12:\"ECS Glossary\";s:9:\"objs_rglo\";s:14:\"ECS Glossaries\";s:8:\"obj_rfil\";s:8:\"ECS File\";s:9:\"objs_rfil\";s:9:\"ECS Files\";s:8:\"obj_rgrp\";s:9:\"ECS Group\";s:9:\"objs_rgrp\";s:10:\"ECS Groups\";s:8:\"obj_tstv\";s:16:\"Test Certificate\";s:8:\"obj_excv\";s:20:\"Exercise Certificate\";s:8:\"obj_prtf\";s:9:\"Portfolio\";s:8:\"obj_rtst\";s:8:\"ECS Test\";s:9:\"objs_rtst\";s:9:\"ECS Tests\";s:25:\"obj_tool_setting_calendar\";s:8:\"Calendar\";s:8:\"fm_start\";s:22:\"Open With File Manager\";s:19:\"il_blog_contributor\";s:11:\"Blog Author\";s:8:\"qpl_copy\";s:23:\"Copy Question Pool Test\";s:16:\"edit_assignments\";s:16:\"Edit Assignments\";s:21:\"obj_tool_setting_news\";s:4:\"News\";s:8:\"obj_ecss\";s:3:\"ECS\";s:13:\"obj_ecss_desc\";s:20:\"General ECS Settings\";s:9:\"edited_on\";s:9:\"Edited on\";s:12:\"obj_tos_desc\";s:25:\"Terms of Service Settings\";s:7:\"obj_tos\";s:16:\"Terms of Service\";s:8:\"obj_bibl\";s:12:\"Bibliography\";s:9:\"objs_bibl\";s:14:\"Bibliographies\";s:8:\"obj_bibs\";s:12:\"Bibliography\";s:13:\"obj_bibs_desc\";s:27:\"Bibliography Administration\";s:16:\"hide_all_details\";s:16:\"Hide all details\";s:16:\"show_all_details\";s:16:\"Show all details\";s:26:\"select_files_from_computer\";s:12:\"Select Files\";s:15:\"drag_files_here\";s:29:\"Drag-and-drop your files here\";s:14:\"drag_file_here\";s:28:\"Drag-and-drop your file here\";s:14:\"selected_files\";s:14:\"Selected files\";s:21:\"num_of_selected_files\";s:19:\"%s file(s) selected\";s:18:\"cancel_file_upload\";s:49:\"Do you really want to cancel all pending uploads?\";s:12:\"upload_files\";s:12:\"Upload files\";s:18:\"upload_files_title\";s:12:\"Upload files\";s:14:\"upload_pending\";s:7:\"Pending\";s:26:\"error_empty_file_or_folder\";s:43:\"The file size is 0 bytes or it is a folder.\";s:27:\"error_upload_was_zero_bytes\";s:131:\"The upload failed as this is a folder, the file size is 0 bytes or exceeded the max. upload size or the file was renamed meanwhile.\";s:9:\"uploading\";s:12:\"Uploading...\";s:10:\"extracting\";s:13:\"Extracting...\";s:27:\"drop_files_on_repo_obj_info\";s:52:\"Drop the files here to upload them into this object.\";s:23:\"error_extraction_failed\";s:158:\"The extraction of the archive and its directories failed. Probably because you don’t have the permission to create folders or categories within this object.\";s:15:\"upload_settings\";s:15:\"Upload Settings\";s:17:\"enable_dnd_upload\";s:27:\"Enable drag-and-drop upload\";s:22:\"enable_dnd_upload_info\";s:76:\"Files can be uploaded with drag-and-drop from the local computer if enabled.\";s:28:\"enable_repository_dnd_upload\";s:20:\"Enable in Repository\";s:33:\"enable_repository_dnd_upload_info\";s:140:\"Enables that files can be dragged from the computer directly onto an object in the repository to start uploading the files into this object.\";s:18:\"concurrent_uploads\";s:28:\"Number of concurrent uploads\";s:23:\"concurrent_uploads_info\";s:85:\"Defines the number of files that can be uploaded per upload process at the same time.\";s:13:\"download_link\";s:13:\"Download Link\";s:28:\"file_confirm_delete_versions\";s:51:\"Are you sure to delete the following file versions?\";s:32:\"file_confirm_delete_all_versions\";s:96:\"You selected all file versions. This will delete the whole file object. Do you want to continue?\";s:21:\"file_versions_deleted\";s:53:\"The selected file versions were successfully deleted.\";s:30:\"file_rollback_select_exact_one\";s:69:\"Only one file version can be selected to make it the current version.\";s:18:\"file_rollback_done\";s:43:\"File version %s is now the current version.\";s:24:\"file_version_new_version\";s:11:\"New version\";s:19:\"file_version_create\";s:15:\"Initial version\";s:20:\"file_version_replace\";s:21:\"All versions replaced\";s:21:\"file_version_rollback\";s:30:\"Rollback to version %s from %s\";s:13:\"file_rollback\";s:29:\"Make this the current version\";s:10:\"frm_import\";s:12:\"Import Forum\";s:18:\"rpc_pdf_generation\";s:14:\"PDF-Generation\";s:12:\"rpc_pdf_font\";s:5:\"Fonts\";s:17:\"rpc_pdf_font_info\";s:139:\"Additional fonts for the generation of PDF files. Other fonts than ‘Helvetica’ and ‘unifont’ must be installed on the ILIAS server.\";s:8:\"obj_sysc\";s:12:\"System Check\";s:13:\"obj_sysc_desc\";s:29:\"System Check and Repair Tools\";s:7:\"obj_cld\";s:12:\"Cloud Object\";s:8:\"objs_cld\";s:13:\"Cloud Objects\";s:21:\"scorm_without_session\";s:47:\"SCORM 2004: enable storing data without session\";s:26:\"scorm_without_session_info\";s:141:\"This ensures the storage of SCORM 2004 learning data even if ILIAS session expired. For SCORM 1.2, storage without session is always enabled.\";s:19:\"msg_obj_no_download\";s:21:\"cannot be downloaded.\";s:23:\"download_selected_items\";s:8:\"Download\";s:25:\"download_multiple_objects\";s:25:\"Download Multiple Objects\";s:21:\"msg_obj_perm_download\";s:68:\"You do not have sufficient rights to download the following objects:\";s:21:\"enable_multi_download\";s:37:\"«Download multiple objects» enabled\";s:26:\"enable_multi_download_info\";s:84:\"Enables that multiple folders/files can be selected to download them as zip archive.\";s:7:\"preview\";s:7:\"Preview\";s:12:\"preview_show\";s:12:\"Show Preview\";s:12:\"preview_none\";s:25:\"Preview (not created yet)\";s:16:\"preview_settings\";s:12:\"File Preview\";s:14:\"enable_preview\";s:14:\"Enable Preview\";s:19:\"enable_preview_info\";s:69:\"Enable this option to display preview images on supported file types.\";s:23:\"max_previews_per_object\";s:33:\"Number of preview images per file\";s:28:\"max_previews_per_object_info\";s:71:\"Defines the maximum number of preview images that are created per file.\";s:14:\"preview_create\";s:14:\"Create Preview\";s:14:\"preview_delete\";s:14:\"Delete Preview\";s:23:\"preview_status_creating\";s:52:\"The preview gets created. This may take some time...\";s:23:\"preview_status_deleting\";s:27:\"The preview gets deleted...\";s:22:\"preview_status_pending\";s:61:\"The preview has not been created yet. Please try again later.\";s:21:\"preview_status_failed\";s:29:\"Failed to create the preview.\";s:22:\"preview_status_missing\";s:32:\"No preview exists for this file.\";s:15:\"preview_loading\";s:18:\"Loading Preview...\";s:24:\"loaded_preview_renderers\";s:24:\"Loaded Preview Renderers\";s:21:\"renderer_type_builtin\";s:8:\"Built-in\";s:29:\"renderer_supported_repo_types\";s:23:\"Supported ILIAS Objects\";s:29:\"renderer_supported_file_types\";s:20:\"Supported File Types\";s:26:\"ghostscript_not_configured\";s:134:\"Ghostscript is not configured. Please open the Setup to configure it.\";s:8:\"obj_reps\";s:10:\"Repository\";s:7:\"obj_rep\";s:10:\"Repository\";s:13:\"obj_reps_desc\";s:35:\"General settings for the Repository\";s:8:\"obj_wbrs\";s:7:\"Weblink\";s:13:\"obj_wbrs_desc\";s:30:\"General settings for Web Links\";s:8:\"obj_crss\";s:6:\"Course\";s:13:\"obj_crss_desc\";s:28:\"General settings for Courses\";s:8:\"obj_grps\";s:5:\"Group\";s:13:\"obj_grps_desc\";s:27:\"General settings for Groups\";s:8:\"obj_prtt\";s:18:\"Portfolio Template\";s:9:\"objs_prtt\";s:19:\"Portfolio Templates\";s:18:\"obj_prtt_duplicate\";s:23:\"Copy Portfolio Template\";s:9:\"objs_orgu\";s:20:\"Organisational Units\";s:9:\"org_units\";s:20:\"Organisational Units\";s:8:\"obj_orgu\";s:19:\"Organisational Unit\";s:20:\"obj_orgu_description\";s:45:\"Creating and editing organisational structure\";s:16:\"il_orgu_superior\";s:8:\"Superior\";s:16:\"il_orgu_employee\";s:8:\"Employee\";s:22:\"view_learning_progress\";s:22:\"View Learning Progress\";s:26:\"view_learning_progress_rec\";s:45:\"View Learning Progress of Unit incl. Subunits\";s:8:\"my_staff\";s:5:\"Staff\";s:31:\"ps_password_lowercase_chars_num\";s:18:\"Lower Case Letters\";s:36:\"ps_password_lowercase_chars_num_info\";s:108:\"Please insert the number of lower case letters a password must contain. Enter 0 to disable this requirement.\";s:31:\"ps_password_uppercase_chars_num\";s:15:\"Capital Letters\";s:36:\"ps_password_uppercase_chars_num_info\";s:105:\"Please insert the number of capital letters a password must contain. Enter 0 to disable this requirement.\";s:37:\"ps_password_must_not_contain_loginame\";s:28:\"Prevent Username in Password\";s:42:\"ps_password_must_not_contain_loginame_info\";s:55:\"If activated, a password must not contain the username.\";s:36:\"password_contains_parts_of_login_err\";s:73:\"The chosen password contains your username. Please insert a new password.\";s:33:\"password_must_contain_lcase_chars\";s:57:\"The password must contain at least %s lower case letters.\";s:33:\"password_must_contain_ucase_chars\";s:54:\"The password must contain at least %s capital letters.\";s:25:\"scorm_login_as_learner_id\";s:48:\"SCORM 2004: set ILIAS Username as cmi.learner_id\";s:30:\"scorm_login_as_learner_id_info\";s:74:\"If enabled, the Username instead of the User ID is set for cmi.learner_id.\";s:8:\"obj_wiks\";s:4:\"Wiki\";s:13:\"obj_wiks_desc\";s:20:\"Global Wiki Settings\";s:12:\"offline_mode\";s:11:\"Use offline\";s:23:\"msg_obj_already_deleted\";s:36:\"The object has already been deleted.\";s:26:\"obj_tool_setting_news_info\";s:68:\"The ‘News’ block will be displayed inside the ‘Content’ tab.\";s:30:\"obj_tool_setting_calendar_info\";s:92:\"A calendar is available and the ‘Calendar’ block is displayed in the ‘Contents’ tab.\";s:8:\"obj_crsv\";s:18:\"Course Certificate\";s:8:\"obj_scov\";s:17:\"SCORM Certificate\";s:17:\"autocomplete_more\";s:4:\"more\";s:23:\"sorting_creation_header\";s:16:\"By Creation Date\";s:21:\"sorting_creation_info\";s:64:\"Content items are arranged automatically by their creation date.\";s:17:\"sorting_direction\";s:17:\"Sorting Direction\";s:12:\"sorting_desc\";s:10:\"Descendent\";s:11:\"sorting_asc\";s:9:\"Ascending\";s:20:\"il_astpl_loc_initial\";s:12:\"Initial Test\";s:22:\"il_astpl_loc_qualified\";s:15:\"Qualifying Test\";s:25:\"il_astpl_loc_initial_desc\";s:74:\"Settings template for initial tests of learning objective oriented courses\";s:27:\"il_astpl_loc_qualified_desc\";s:77:\"Settings template for qualifying tests of learning objective oriented courses\";s:15:\"ps_export_scorm\";s:30:\"Personal Data in Protocol Data\";s:24:\"enable_export_scorm_desc\";s:53:\"Display of Personal Data in the Protocol Data (SCORM)\";s:22:\"scorm_lp_auto_activate\";s:37:\"Default setting for learning progress\";s:27:\"scorm_lp_auto_activate_info\";s:259:\"If learning progress is activated in general, the settings for new SCORM learning modules are set to ‘Collection of SCORM Items’ and all SCOs are selected for learning progress determination. Adjustments are still possible for every SCORM learning module.\";s:15:\"toggle_dropdown\";s:15:\"Toggle Dropdown\";s:21:\"clientlist_clientlist\";s:11:\"Client List\";s:28:\"clientlist_available_clients\";s:17:\"Available Clients\";s:28:\"clientlist_installation_name\";s:17:\"Installation Name\";s:24:\"clientlist_public_access\";s:13:\"Public Access\";s:16:\"clientlist_login\";s:5:\"Login\";s:21:\"clientlist_start_page\";s:10:\"Start page\";s:21:\"clientlist_login_page\";s:10:\"Login page\";s:24:\"settings_for_all_members\";s:38:\"Members will be notified automatically\";s:18:\"settings_per_users\";s:107:\"Members are notified automatically. Deactivating notifications can be allowed for each member individually.\";s:14:\"il_blog_editor\";s:11:\"Blog Editor\";s:32:\"obj_tool_setting_custom_metadata\";s:15:\"Custom Metadata\";s:37:\"obj_tool_setting_custom_metadata_info\";s:40:\"If activated metadata can be configured.\";s:20:\"mem_cron_min_members\";s:35:\"Course/Group: Minimum Members Check\";s:25:\"mem_cron_min_members_info\";s:69:\"The administrators will be notified if the minimum number is not met.\";s:13:\"mem_min_users\";s:16:\"Minimum of Users\";s:28:\"buddy_allow_to_contact_me_no\";s:32:\"Doesn`t Receive Contact Requests\";s:29:\"buddy_allow_to_contact_me_yes\";s:25:\"Receives Contact Requests\";s:11:\"my_contacts\";s:11:\"My Contacts\";s:8:\"obj_cadm\";s:8:\"Contacts\";s:13:\"obj_cadm_desc\";s:23:\"Contacts Administration\";s:26:\"no_gallery_users_available\";s:44:\"There are currently no users in the gallery.\";s:13:\"obj_awra_desc\";s:32:\"Manage ‘Who is online?’-Tool\";s:8:\"obj_awra\";s:25:\"‘Who is online?’-Tool\";s:16:\"contact_sysadmin\";s:25:\"Contact Technical Support\";s:26:\"report_accessibility_issue\";s:26:\"Report Accessibility Issue\";s:25:\"report_accessibility_link\";s:14:\"Reported Link:\";s:29:\"accessibility_control_concept\";s:29:\"Accessibility Control Concept\";s:44:\"no_accessibility_control_concept_description\";s:154:\"There is currently no Accessibility Control Concept provided with this installation. Please contact the Accessibility Point of Contact.\";s:18:\"mainbar_aria_label\";s:7:\"Mainbar\";s:18:\"metabar_aria_label\";s:7:\"Metabar\";s:22:\"breadcrumbs_aria_label\";s:11:\"Breadcrumbs\";s:8:\"obj_logs\";s:7:\"Logging\";s:13:\"obj_logs_desc\";s:24:\"General Logging Settings\";s:17:\"obj_prg_duplicate\";s:20:\"Copy Study Programme\";s:14:\"obj_prg_select\";s:39:\"-- Please select one study programme --\";s:7:\"obj_prg\";s:15:\"Study Programme\";s:8:\"obj_prgs\";s:16:\"Study Programmes\";s:13:\"obj_prgs_desc\";s:30:\"Study Programme Administration\";s:21:\"prg_copy_threads_info\";s:84:\"Please decide which Study Program elements should be copied, linked or even omitted.\";s:15:\"prg_wizard_page\";s:29:\"Copy Study Program (Step 2/2)\";s:14:\"enter_new_name\";s:19:\"Please enter a name\";s:9:\"objs_prtf\";s:10:\"Portfolios\";s:14:\"grpr_edit_info\";s:54:\"Please choose one group for creating a new group link.\";s:9:\"grpr_edit\";s:15:\"Edit Group Link\";s:8:\"grpr_new\";s:17:\"Create Group Link\";s:4:\"grpr\";s:10:\"Group Link\";s:8:\"obj_grpr\";s:10:\"Group Link\";s:9:\"objs_grpr\";s:11:\"Group Links\";s:8:\"obj_bdga\";s:6:\"Badges\";s:13:\"obj_bdga_desc\";s:55:\"Administrate types, image templates and activity badges\";s:24:\"set_style_does_not_exist\";s:151:\"Your selected system style does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:\";s:23:\"set_skin_does_not_exist\";s:143:\"Your selected skin does not exist anymore. You may change your style in the personal settings or contact your administrator. Current selection:\";s:8:\"obj_bgtk\";s:15:\"Background Task\";s:8:\"obj_iass\";s:21:\"Individual Assessment\";s:9:\"objs_iass\";s:22:\"Individual Assessments\";s:18:\"obj_iass_duplicate\";s:26:\"Copy Individual Assessment\";s:15:\"obj_iass_select\";s:45:\"-- Please select one individual assessment --\";s:14:\"il_iass_member\";s:30:\"Individual Assessment Examinee\";s:8:\"iass_new\";s:28:\"Create Individual Assessment\";s:11:\"iass_import\";s:28:\"Import Individual Assessment\";s:11:\"chtr_import\";s:15:\"Import Chatroom\";s:16:\"sahs_export_file\";s:33:\"ILIAS exported SCORM archive file\";s:8:\"obj_pdfg\";s:14:\"PDF Generation\";s:13:\"obj_pdfg_desc\";s:36:\"Options for generation PDF documents\";s:20:\"building_export_file\";s:23:\"Building Export File...\";s:9:\"pdfg_read\";s:38:\"User has read access to PDF Generation\";s:12:\"pdfg_visible\";s:25:\"PDF Generation is visible\";s:10:\"pdfg_write\";s:40:\"User can edit settings of PDF Generation\";s:20:\"pdfg_edit_permission\";s:35:\"User can change permission settings\";s:23:\"file_no_valid_file_type\";s:30:\"This file type is not allowed.\";s:36:\"file_some_invalid_file_types_removed\";s:54:\"Some file types are not allowed and have been removed.\";s:9:\"auth_saml\";s:4:\"SAML\";s:11:\"saml_log_in\";s:12:\"Direct login\";s:19:\"saml_login_form_txt\";s:23:\"Login to ILIAS via SAML\";s:24:\"saml_login_form_info_txt\";s:101:\"You can log in using the “Direct Login” button without having to enter your username or password.\";s:23:\"login_to_ilias_via_saml\";s:40:\"Login to ILIAS via SAML Authentification\";s:12:\"second_email\";s:13:\"Second E-Mail\";s:5:\"grade\";s:5:\"Grade\";s:14:\"edit_page_meta\";s:18:\"Edit Page Metadata\";s:28:\"position_permission_settings\";s:28:\"Orgunit-Specific Permissions\";s:23:\"org_permission_settings\";s:48:\"Permissions of Positions in Organisational Units\";s:29:\"org_op_read_learning_progress\";s:43:\"View Learning Progress of Subordinate Users\";s:21:\"org_op_manage_members\";s:26:\"Manage Subordinate Members\";s:24:\"org_op_access_enrolments\";s:21:\"View Enrolment-Status\";s:43:\"user_never_logged_in_info_threshold_err_num\";s:47:\"Only positive non decimal numbers are accepted.\";s:43:\"cron_users_without_login_del_role_whitelist\";s:14:\"Included Roles\";s:48:\"cron_users_without_login_del_role_whitelist_info\";s:89:\"The deletion will only processed for users assigned to at least one of the selected roles\";s:44:\"cron_users_without_login_del_create_date_thr\";s:9:\"Thresholt\";s:49:\"cron_users_without_login_del_create_date_thr_info\";s:88:\"All user accounts created before the defined threshold will be taken into consideration.\";s:20:\"user_never_logged_in\";s:34:\"Delete user accounts without login\";s:25:\"user_never_logged_in_info\";s:50:\"All user accounts without login at all be deleted.\";s:20:\"usr_name_undisclosed\";s:11:\"Undisclosed\";s:17:\"obj_exc_duplicate\";s:13:\"Copy Exercise\";s:18:\"obj_fold_duplicate\";s:11:\"Copy Folder\";s:16:\"fold_wizard_page\";s:22:\"Copy Folder (Step 2/2)\";s:22:\"fold_copy_threads_info\";s:71:\"Please decide which materials should be copied, linked or even omitted.\";s:28:\"settings_presentation_header\";s:12:\"Presentation\";s:8:\"obj_copa\";s:12:\"Content Page\";s:9:\"objs_copa\";s:13:\"Content Pages\";s:20:\"msg_info_blacklisted\";s:53:\"The files cannot be uploaded due to security reasons.\";s:23:\"presentation_table_more\";s:9:\"Show More\";s:19:\"mme_lost_item_title\";s:13:\"No assignment\";s:20:\"mme_lost_item_reason\";s:27:\"Item is no longer provided.\";s:7:\"obj_mme\";s:9:\"Main Menu\";s:4:\"like\";s:4:\"Like\";s:4:\"love\";s:4:\"Love\";s:7:\"dislike\";s:7:\"Dislike\";s:5:\"laugh\";s:5:\"Laugh\";s:9:\"astounded\";s:9:\"Astounded\";s:3:\"sad\";s:3:\"Sad\";s:5:\"angry\";s:5:\"Angry\";s:15:\"my_certificates\";s:15:\"My Certificates\";s:4:\"open\";s:4:\"Open\";s:7:\"lso_new\";s:21:\"New Learning Sequence\";s:7:\"lso_add\";s:21:\"Add Learning Sequence\";s:8:\"lso_edit\";s:22:\"Edit Learning Sequence\";s:10:\"lso_import\";s:24:\"Import Learning Sequence\";s:8:\"lso_copy\";s:22:\"Copy Learning Sequence\";s:7:\"obj_lso\";s:17:\"Learning Sequence\";s:8:\"objs_lso\";s:18:\"Learning Sequences\";s:17:\"obj_lso_duplicate\";s:22:\"Copy Learning Sequence\";s:21:\"lso_copy_threads_info\";s:90:\"Please decide which elements of the Learning Sequence should be copied, linked or omitted.\";s:15:\"lso_wizard_page\";s:33:\"Copy Learning Sequence (Step 2/2)\";s:12:\"il_lso_admin\";s:23:\"Learning Sequence Admin\";s:13:\"il_lso_member\";s:24:\"Learning Sequence Member\";s:13:\"unparticipate\";s:11:\"Unsubscribe\";s:11:\"participate\";s:9:\"Subscribe\";s:23:\"pagination_label_x_of_y\";s:17:\"Page %1$d of %2$d\";s:21:\"certificate_selection\";s:22:\"Origin of Certificates\";s:29:\"certificate_persistent_option\";s:28:\"Certificates of Achievements\";s:28:\"certificate_workspace_option\";s:34:\"Certificates of Personal Resources\";s:37:\"certificate_file_already_exists_error\";s:55:\"The certificate file already exists in the file system.\";s:32:\"certificate_file_not_found_error\";s:123:\"The certificate file doesn\'t exist in the file system anymore. Die Zertikatsdatei wurde im Dateisystem nicht mehr gefunden.\";s:35:\"certificate_file_input_output_error\";s:117:\"The certificate file was found but couldn\'t be deleted because of internal errors. Please contact your administrator.\";s:8:\"obj_task\";s:4:\"Task\";s:15:\"mm_organisation\";s:12:\"Organisation\";s:13:\"mm_staff_list\";s:10:\"Staff List\";s:13:\"mm_enrolments\";s:10:\"Enrolments\";s:16:\"mm_communication\";s:13:\"Communication\";s:11:\"mm_contacts\";s:8:\"Contacts\";s:7:\"mm_mail\";s:4:\"Mail\";s:7:\"mm_news\";s:4:\"News\";s:8:\"mm_notes\";s:5:\"Notes\";s:11:\"mm_comments\";s:8:\"Comments\";s:15:\"mm_achievements\";s:12:\"Achievements\";s:19:\"mm_learning_history\";s:16:\"Learning History\";s:9:\"mm_skills\";s:11:\"Competences\";s:20:\"mm_learning_progress\";s:17:\"Learning Progress\";s:9:\"mm_badges\";s:6:\"Badges\";s:17:\"mm_administration\";s:14:\"Administration\";s:13:\"mm_repository\";s:10:\"Repository\";s:12:\"mm_dashboard\";s:9:\"Dashboard\";s:17:\"mm_repo_tree_view\";s:9:\"Tree View\";s:21:\"mm_task_derived_tasks\";s:5:\"Tasks\";s:12:\"mm_favorites\";s:10:\"Favourites\";s:11:\"mm_calendar\";s:8:\"Calendar\";s:7:\"mm_tags\";s:4:\"Tags\";s:12:\"mm_portfolio\";s:9:\"Portfolio\";s:15:\"mm_certificates\";s:12:\"Certificates\";s:24:\"mm_personal_and_shared_r\";s:29:\"Personal and Shared Resources\";s:21:\"mm_personal_workspace\";s:18:\"Personal Workspace\";s:21:\"mm_repo_tree_view_act\";s:13:\"Activate Tree\";s:23:\"mm_repo_tree_view_deact\";s:15:\"Deactivate Tree\";s:28:\"nc_contact_requests_headline\";s:16:\"Contact Requests\";s:28:\"nc_contact_requests_number_s\";s:28:\"You have %s Contact Request.\";s:28:\"nc_contact_requests_number_p\";s:29:\"You have %s Contact Requests.\";s:29:\"nc_contact_requests_prop_time\";s:4:\"Time\";s:16:\"mm_rep_tree_view\";s:9:\"Tree View\";s:18:\"personal_resources\";s:18:\"Personal Resources\";s:7:\"obj_lti\";s:12:\"LTI Consumer\";s:8:\"objs_lti\";s:13:\"LTI Consumers\";s:8:\"obj_cmis\";s:9:\"xAPI/cmi5\";s:13:\"obj_cmis_desc\";s:41:\"Learning Record Store Types Configuration\";s:8:\"obj_cmix\";s:9:\"xAPI/cmi5\";s:9:\"objs_cmix\";s:17:\"Objects xAPI/cmi5\";s:8:\"obj_prgr\";s:23:\"Link to Study Programme\";s:9:\"obj_prgrs\";s:25:\"Links to Study Programmes\";s:17:\"msg_unknown_value\";s:33:\"An unknown value has been passed.\";s:8:\"obj_lsos\";s:18:\"Learning Sequences\";s:13:\"obj_lsos_desc\";s:39:\"General settings for Learning Sequences\";s:16:\"collapse_content\";s:16:\"Collapse Content\";s:14:\"expand_content\";s:14:\"Expand Content\";s:9:\"briefcase\";s:16:\"Background Tasks\";s:14:\"sort_ascending\";s:14:\"Sort Ascending\";s:15:\"sort_descending\";s:15:\"Sort Descending\";s:18:\"show_who_is_online\";s:18:\"Show who is online\";s:4:\"tags\";s:4:\"Tags\";s:8:\"comments\";s:8:\"Comments\";s:9:\"eyeclosed\";s:47:\"Eye Closed - Click to hide the input\'s contents\";s:9:\"eyeopened\";s:47:\"Eye Open - Click to reveal the input\'s contents\";s:9:\"show_more\";s:9:\"Show More\";s:8:\"disclose\";s:8:\"Disclose\";s:15:\"switch_language\";s:15:\"Switch Language\";s:9:\"objs_prgr\";s:25:\"Links to Study Programmes\";s:20:\"lso_admin_form_title\";s:8:\"Settings\";s:21:\"lso_admin_form_byline\";s:39:\"General Settings for Learning Sequences\";s:24:\"lso_admin_interval_label\";s:44:\"Learning Progress Polling Interval (seconds)\";s:25:\"lso_admin_interval_byline\";s:181:\"Poll Learning Progress every x seconds. Be careful! A low value will increase server-requests and have an impact on overall system performance. Please choose highest value possible!\";}'); INSERT INTO `lng_modules` VALUES ('lti','en','a:223:{s:20:\"act_lti_for_obj_type\";s:31:\"Activate LTI for Type of Object\";s:18:\"gbl_roles_to_users\";s:33:\"Global Role assigned to LTI Users\";s:9:\"consumers\";s:9:\"Consumers\";s:6:\"prefix\";s:6:\"Prefix\";s:16:\"lti_consumer_key\";s:12:\"Consumer Key\";s:19:\"lti_consumer_secret\";s:15:\"Consumer Secret\";s:8:\"user_lng\";s:14:\"User Languague\";s:19:\"lti_create_consumer\";s:15:\"Create Consumer\";s:19:\"lti_object_consumer\";s:13:\"LTI Consumers\";s:12:\"lti_settings\";s:12:\"LTI Settings\";s:20:\"lti_consumer_created\";s:16:\"Consumer created\";s:20:\"lti_consumer_updated\";s:16:\"Consumer updated\";s:20:\"lti_consumer_deleted\";s:16:\"Consumer deleted\";s:23:\"lti_consumer_set_active\";s:18:\"Consumer activated\";s:25:\"lti_consumer_set_inactive\";s:20:\"Consumer deactivated\";s:29:\"lm_only_one_download_per_type\";s:90:\"Please note that you can only make one file per type (XML, HTML, SCORM) public accessible.\";s:27:\"lti_auth_failed_invalid_key\";s:51:\"Authentication failed, no valid consumer key given.\";s:8:\"auth_lti\";s:8:\"LTI Auth\";s:17:\"lti_edit_consumer\";s:17:\"Edit LTI Consumer\";s:14:\"lti_obj_active\";s:17:\"LTI-Tool Provider\";s:19:\"lti_obj_active_info\";s:126:\"If enabled, this object acts as a LTI tool provider. New LTI users can be automatically assigned to the following local roles.\";s:9:\"lti_admin\";s:17:\"LTI Administrator\";s:9:\"lti_tutor\";s:14:\"LTI Instructor\";s:10:\"lti_member\";s:10:\"LTI Member\";s:32:\"lti_object_release_settings_form\";s:17:\"Edit LTI Releases\";s:12:\"lti_provider\";s:12:\"LTI Releases\";s:14:\"lti_launch_url\";s:3:\"Url\";s:20:\"lti_released_objects\";s:15:\"Object Releases\";s:12:\"lti_consumer\";s:11:\"Release for\";s:15:\"lti_not_allowed\";s:66:\"Access denied. Your request was redirected to the root LTI object.\";s:14:\"lti_navigation\";s:10:\"Navigation\";s:11:\"lti_session\";s:11:\"LTI Session\";s:8:\"lti_exit\";s:17:\"Close LTI Session\";s:10:\"lti_exited\";s:18:\"LTI Session closed\";s:15:\"lti_exited_info\";s:31:\"LTI Session successfully closed\";s:14:\"lti_cron_title\";s:19:\"LTI Outcome Service\";s:19:\"lti_cron_title_desc\";s:206:\"Synchronizes the learning progress of LTI users with the LTI consumer, if it supports the outcome service. This cron job is only required to transfer status updates after Learning progress settings updates.\";s:21:\"launch_method_own_win\";s:10:\"Own Window\";s:26:\"launch_method_own_win_info\";s:123:\"The content is opened in the same window and replaces the ILIAS Screen. When leaving the content the user returns to ILIAS.\";s:21:\"launch_method_new_win\";s:10:\"New Window\";s:26:\"launch_method_new_win_info\";s:88:\"The content is opened in a new window. When leaving the content this window gets closed.\";s:22:\"launch_method_embedded\";s:16:\"Embedded Content\";s:27:\"launch_method_embedded_info\";s:107:\"The content is opened within the ILIAS context. It is presented as embedded content within the content tab.\";s:25:\"learning_progress_options\";s:29:\"Options for Learning Progress\";s:13:\"mastery_score\";s:13:\"Mastery Score\";s:18:\"mastery_score_info\";s:106:\"The Learning Progress will be evaluated from the Provider Outcome Service and the mastery score threshold.\";s:27:\"lti_form_section_appearance\";s:18:\"Options for launch\";s:8:\"launched\";s:30:\"Resource was already launched.\";s:34:\"lti_info_learning_progress_section\";s:49:\"Info about Determination of the Learning Progress\";s:24:\"lti_info_privacy_section\";s:62:\"Info about personal data transmitted to the provider at launch\";s:32:\"lti_info_external_provider_label\";s:35:\"Additional Info about this Provider\";s:31:\"lti_info_external_provider_info\";s:226:\"The used Provider is an external Provider. An external Provider is characterized by insufficient influence on the Provider by the operator of the ILIAS-Installation. This is the case e.g. if there are no rights to delete data.\";s:19:\"lti_select_provider\";s:15:\"Select Provider\";s:14:\"lti_custom_new\";s:28:\"Create Own Provider Settings\";s:8:\"lti_copy\";s:13:\"Copy Consumer\";s:17:\"lti_providing_tab\";s:21:\"ILIAS as LTI Provider\";s:17:\"lti_consuming_tab\";s:21:\"ILIAS as LTI Consumer\";s:22:\"global_provider_subtab\";s:30:\"Global Providers for all Users\";s:20:\"user_provider_subtab\";s:26:\"Providers Defined by Users\";s:12:\"usage_subtab\";s:5:\"Usage\";s:25:\"tbl_provider_usage_header\";s:12:\"LTI Provider\";s:30:\"tbl_provider_usage_header_info\";s:63:\"Before deleting providers, trashed usages must also be deleted.\";s:20:\"tbl_lti_prov_used_by\";s:32:\"Provider Used by Objects in Tree\";s:15:\"settings_subtab\";s:8:\"Settings\";s:24:\"lti_global_settings_form\";s:15:\"Global Settings\";s:23:\"lti_add_global_provider\";s:33:\"Add Global Provider for all Users\";s:26:\"lti_import_global_provider\";s:50:\"Import Global Provider for all Users with XML-File\";s:20:\"form_import_provider\";s:22:\"Import Global Provider\";s:18:\"field_provider_xml\";s:8:\"XML-File\";s:23:\"field_provider_xml_info\";s:120:\"Supported are XML-Files for Tool Consumer and for Common Cartridge according to https://www.imsglobal.org/specs/lti/xml.\";s:20:\"lti_add_own_provider\";s:36:\"Add Own Provider (not for all Users)\";s:19:\"tbl_provider_header\";s:12:\"LTI Provider\";s:24:\"lti_form_provider_create\";s:24:\"Create Provider Settings\";s:27:\"lti_con_prov_authentication\";s:14:\"Authentication\";s:29:\"lti_con_prov_privacy_settings\";s:16:\"Privacy Settings\";s:38:\"lti_con_prov_learning_progress_options\";s:29:\"Options for Learning Progress\";s:27:\"lti_con_prov_launch_options\";s:14:\"Launch Options\";s:22:\"lti_form_provider_edit\";s:22:\"Edit Provider Settings\";s:17:\"tbl_lti_prov_icon\";s:4:\"Icon\";s:18:\"tbl_lti_prov_title\";s:17:\"Title of Provider\";s:24:\"tbl_lti_prov_description\";s:11:\"Description\";s:25:\"tbl_lti_prov_availability\";s:12:\"Availability\";s:19:\"tbl_lti_prov_usages\";s:6:\"Usages\";s:27:\"tbl_lti_prov_usages_trashed\";s:14:\"Trashed Usages\";s:29:\"tbl_lti_prov_usages_untrashed\";s:17:\"Repository Usages\";s:29:\"tbl_lti_prov_provider_creator\";s:7:\"Creator\";s:25:\"tbl_lti_prov_own_provider\";s:12:\"Own Provider\";s:27:\"lti_action_delete_providers\";s:16:\"Delete Providers\";s:19:\"lti_delete_provider\";s:15:\"Delete Provider\";s:27:\"lti_success_delete_provider\";s:20:\"Successfully deleted\";s:28:\"lti_confirm_delete_providers\";s:63:\"Are you sure that you want to delete the following provider(s)?\";s:28:\"lti_success_accept_as_global\";s:54:\"Successfully accepted as Global Provider for all Users\";s:34:\"lti_success_accept_as_global_multi\";s:54:\"Successfully accepted as Global Provider for all Users\";s:28:\"lti_success_reset_to_usr_def\";s:45:\"Successfully reseted as User Defined Provider\";s:34:\"lti_success_reset_to_usr_def_multi\";s:45:\"Successfully reseted as User Defined Provider\";s:24:\"lti_no_provider_selected\";s:20:\"No provider selected\";s:32:\"lti_at_least_one_prov_has_usages\";s:96:\"At least one provider could not be deleted because this provider has usages (might be in trash).\";s:20:\"tbl_lti_prov_keyword\";s:7:\"Keyword\";s:21:\"tbl_lti_prov_keywords\";s:8:\"Keywords\";s:21:\"tbl_lti_prov_category\";s:8:\"Category\";s:27:\"tbl_lti_prov_all_categories\";s:14:\"All Categories\";s:20:\"tbl_lti_prov_outcome\";s:15:\"Outcome Service\";s:21:\"tbl_lti_prov_internal\";s:17:\"Internal Provider\";s:21:\"tbl_lti_prov_with_key\";s:28:\"Predefined with Key / Secret\";s:24:\"lti_con_prov_inc_usr_pic\";s:17:\"Send User Picture\";s:29:\"lti_con_prov_inc_usr_pic_info\";s:75:\"Links to ILIAS user pictures are included at launch of LTI consumer object.\";s:18:\"lti_con_prov_title\";s:5:\"Title\";s:24:\"lti_con_prov_description\";s:11:\"Description\";s:17:\"lti_con_prov_icon\";s:4:\"Icon\";s:19:\"obj_tile_image_info\";s:29:\"Use an Image in Square Format\";s:25:\"lti_con_prov_availability\";s:12:\"Availability\";s:32:\"lti_con_prov_availability_create\";s:20:\"For Creating Objects\";s:34:\"lti_con_prov_availability_existing\";s:25:\"Only for existing Objects\";s:29:\"lti_con_prov_availability_non\";s:13:\"not available\";s:16:\"lti_con_prov_url\";s:15:\"URL of Provider\";s:32:\"lti_con_prov_provider_key_global\";s:25:\"Predefined Key and Secret\";s:37:\"lti_con_prov_provider_key_global_info\";s:65:\"If not set, users have to add key and secret to use the provider.\";s:16:\"lti_con_prov_key\";s:3:\"Key\";s:19:\"lti_con_prov_secret\";s:6:\"Secret\";s:32:\"lti_con_prov_has_outcome_service\";s:33:\"Provider supports Outcome Service\";s:37:\"lti_con_prov_has_outcome_service_info\";s:158:\"If the LTI Outcome Service is supported, Learning Progress could be activated. The Provider returns a value between 0 and 1 to indicate the Learning Progress.\";s:27:\"lti_con_prov_always_learner\";s:26:\"LTI User is always Learner\";s:32:\"lti_con_prov_always_learner_info\";s:191:\"Usually the role in ILIAS is mapped to a LTI role. Course Administrators could have more rights in the Provider, e.g. to manipulate the object. Activate this option to avoid the Role Mapping.\";s:28:\"lti_con_prov_use_provider_id\";s:15:\"Use Provider ID\";s:33:\"lti_con_prov_use_provider_id_info\";s:221:\"Usually the Ref-Id of the LTI Consumer is transferred to the Provider. Some Providers map this Ref-Id with the Resource of the Provider. To get always the same Resource for these Providers this Option should be activated.\";s:29:\"lti_con_prov_xapi_activity_id\";s:11:\"Activity ID\";s:34:\"lti_con_prov_xapi_activity_id_info\";s:310:\"The Activity ID is necessary to request data from the Learning Record Store. Only enter something here if the assignment of the provider\'s resource to an Activity Id is unique! If nothing is entered here, the Activity Id can be entered in LTI Consumer. The Activity Id could be requested from the LTI Provider.\";s:21:\"lti_con_prov_use_xapi\";s:44:\"Provider supports request of xAPI-Statements\";s:21:\"lti_con_prov_keywords\";s:8:\"Keywords\";s:26:\"lti_con_prov_keywords_info\";s:116:\"The keywords must be separated by a Semicolon (;). The Keywords are automatically taken to the Metadata as Keywords.\";s:21:\"lti_con_prov_category\";s:8:\"Category\";s:26:\"lti_con_prov_category_info\";s:63:\"Category to filter entries when LTI Consumer Object is created.\";s:15:\"conf_user_ident\";s:19:\"User identification\";s:20:\"conf_user_ident_info\";s:74:\"Standard is frequently the email address. The unique ILIAS platform id is:\";s:31:\"conf_user_ident_il_uuid_user_id\";s:83:\"ILIAS user id combined with a unique ILIAS platform id formated as an email adress.\";s:36:\"conf_user_ident_il_uuid_user_id_info\";s:91:\"This is identical to each call, but doesn\'t allow a direct conclusion about the ILIAS user.\";s:29:\"conf_user_ident_il_uuid_login\";s:81:\"ILIAS Login combined with a unique ILIAS platform id formated as an email adress.\";s:34:\"conf_user_ident_il_uuid_login_info\";s:87:\"This is identical to each call, but may allow a direct conclusion about the ILIAS user.\";s:35:\"conf_user_ident_il_uuid_ext_account\";s:86:\"External User Id combined with a unique ILIAS platform id formated as an email adress.\";s:40:\"conf_user_ident_il_uuid_ext_account_info\";s:81:\"This is identical to each call, but may allow a direct conclusion about the user.\";s:26:\"conf_user_ident_real_email\";s:14:\"E-Mail Address\";s:31:\"conf_user_ident_real_email_info\";s:108:\"Sends E-Mail Address of user as identification (Warning: an E-Mail Address might be used by multiple users!)\";s:14:\"conf_user_name\";s:9:\"User name\";s:19:\"conf_user_name_info\";s:45:\"Sending an user name is usually not required.\";s:19:\"conf_user_name_none\";s:6:\"No one\";s:24:\"conf_user_name_none_info\";s:27:\"Sends \'-\' instead of a name\";s:24:\"conf_user_name_firstname\";s:10:\"First name\";s:29:\"conf_user_name_firstname_info\";s:48:\"Sends the first name of the user name from ILIAS\";s:23:\"conf_user_name_lastname\";s:19:\"Title and last name\";s:28:\"conf_user_name_lastname_info\";s:70:\"Sends Mister or Ms/Mrs. (unless otherwise specified) and the last name\";s:23:\"conf_user_name_fullname\";s:11:\"Entire name\";s:28:\"conf_user_name_fullname_info\";s:37:\"Sends title, first name and last name\";s:33:\"lti_con_prov_privacy_setting_conf\";s:21:\"Configuration Options\";s:33:\"lti_con_prov_privacy_setting_info\";s:42:\"Configuration Options for Privacy Settings\";s:36:\"lti_con_prov_privacy_setting_default\";s:40:\"Default Settings, changeable for Objects\";s:34:\"lti_con_prov_privacy_setting_force\";s:39:\"Settings are not changeable for Objects\";s:30:\"lti_con_prov_external_provider\";s:17:\"External Provider\";s:35:\"lti_con_prov_external_provider_info\";s:245:\"A hint will be shown to users when dealing with an external Provider. An external Provider is characterized by insufficient influence on the Provider by the operator of the ILIAS-installation. This is the case when there are no rights to delete.\";s:34:\"lti_con_prov_mastery_score_default\";s:21:\"Default Mastery Score\";s:39:\"lti_con_prov_mastery_score_default_info\";s:106:\"The Learning Progress will be evaluated from the Provider Outcome Service and the mastery score threshold.\";s:26:\"lti_con_prov_use_xapi_info\";s:33:\"Provider supports xAPI-Statements\";s:28:\"lti_con_prov_xapi_launch_url\";s:19:\"URL of LRS Endpoint\";s:33:\"lti_con_prov_xapi_launch_url_info\";s:33:\"Please add full URL with https://\";s:28:\"lti_con_prov_xapi_launch_key\";s:19:\"Key of LRS Endpoint\";s:33:\"lti_con_prov_xapi_launch_key_info\";s:6:\" \";s:31:\"lti_con_prov_xapi_launch_secret\";s:22:\"Secret of LRS Endpoint\";s:36:\"lti_con_prov_xapi_launch_secret_info\";s:6:\" \";s:26:\"lti_con_prov_custom_params\";s:44:\"Custom Parameters for this specific Provider\";s:31:\"lti_con_prov_custom_params_info\";s:58:\"Please enter them in the form param1=value1; param2=value2\";s:26:\"lti_con_prov_group_options\";s:37:\"Options to group and filter Providers\";s:18:\"lti_con_prov_hints\";s:5:\"Hints\";s:20:\"lti_con_prov_remarks\";s:16:\"Internal Remarks\";s:24:\"lti_action_edit_provider\";s:13:\"Edit Provider\";s:36:\"lti_action_accept_provider_as_global\";s:48:\"Accept Provider as Global Provider for all Users\";s:37:\"lti_action_accept_providers_as_global\";s:26:\"Accept Providers as Global\";s:39:\"lti_action_reset_provider_to_user_scope\";s:39:\"Reset Provider as User Defined Provider\";s:40:\"lti_action_reset_providers_to_user_scope\";s:31:\"Reset Providers as User Defined\";s:27:\"lti_delete_consume_provider\";s:15:\"Delete Provider\";s:28:\"lti_delete_consume_providers\";s:16:\"Delete Providers\";s:8:\"tab_info\";s:4:\"Info\";s:11:\"tab_content\";s:7:\"Content\";s:12:\"tab_settings\";s:8:\"Settings\";s:14:\"tab_statements\";s:20:\"Learning Experiences\";s:26:\"lti_provider_not_avail_msg\";s:38:\"LTI Provider is set to \'Not Available\'\";s:22:\"subtab_object_settings\";s:15:\"Object Settings\";s:18:\"subtab_certificate\";s:11:\"Certificate\";s:24:\"subtab_provider_settings\";s:21:\"LTI Provider Settings\";s:17:\"lti_settings_form\";s:15:\"Object Settings\";s:13:\"provider_info\";s:13:\"Used Provider\";s:10:\"title_info\";s:24:\"Give the object a title.\";s:16:\"description_info\";s:46:\"The description will be shown below the title.\";s:11:\"online_info\";s:55:\"This makes the object visible and usable for the users.\";s:13:\"launch_method\";s:18:\"Options for Launch\";s:8:\"use_xapi\";s:16:\"Use xAPI-Support\";s:13:\"use_xapi_info\";s:43:\"This LTI Provider supports xAPI-Statements.\";s:11:\"activity_id\";s:11:\"Activity ID\";s:16:\"activity_id_info\";s:68:\"This Activity ID is used by the LTI Provider to identify Statements.\";s:15:\"show_statements\";s:28:\"Display Learning Experiences\";s:20:\"show_statements_info\";s:122:\"The Learning Experiences of other users could be displayed if the right \'View learning experiences of other users\' is set.\";s:11:\"tab_scoring\";s:7:\"Ranking\";s:17:\"highscore_enabled\";s:7:\"Ranking\";s:21:\"highscore_description\";s:107:\"The names of other users could be displayed if the right \'View learning experiences of other users\' is set.\";s:21:\"highscore_achieved_ts\";s:4:\"Date\";s:33:\"highscore_achieved_ts_description\";s:61:\"A column containing the date will be included in the ranking.\";s:15:\"highscore_score\";s:5:\"Score\";s:27:\"highscore_score_description\";s:62:\"A column containing the score will be included in the ranking.\";s:20:\"highscore_percentage\";s:10:\"Percentage\";s:32:\"highscore_percentage_description\";s:76:\"A column containing the score as percentage will be included in the ranking.\";s:15:\"highscore_wtime\";s:8:\"Duration\";s:27:\"highscore_wtime_description\";s:65:\"A column containing the duration will be included in the ranking.\";s:14:\"highscore_mode\";s:4:\"Mode\";s:19:\"highscore_own_table\";s:22:\"Participant\'s Own Rank\";s:31:\"highscore_own_table_description\";s:62:\"Participants are advised of their own position in the ranking.\";s:19:\"highscore_top_table\";s:11:\"Top Ranking\";s:31:\"highscore_top_table_description\";s:68:\"Participants are presented with a table containing the top rankings.\";s:20:\"highscore_all_tables\";s:38:\"Participant\'s Own Rank and Top Ranking\";s:32:\"highscore_all_tables_description\";s:89:\"Participants get information about the top ranking and their own position in the ranking.\";s:17:\"highscore_top_num\";s:21:\"Length of Top Ranking\";s:29:\"highscore_top_num_description\";s:66:\"Specify how many ranks are to be included in the top ranking list.\";s:22:\"highscore_top_num_unit\";s:7:\"entries\";s:21:\"lti_user_role_created\";s:59:\"The recommended global role for LTI users has been created.\";s:24:\"lti_create_lti_user_role\";s:44:\"Create recommended global role for LTI users\";s:18:\"lti_user_role_info\";s:183:\"The recommended global role for LTI users has not yet been created in this installation. This special global role contains only the permission \'visible\' for repository and categories.\";}'); INSERT INTO `lng_modules` VALUES ('cont','en','a:55:{s:23:\"cont_std_filter_title_1\";s:5:\"Title\";s:23:\"cont_std_filter_title_2\";s:11:\"Description\";s:23:\"cont_std_filter_title_3\";s:17:\"Title/Description\";s:23:\"cont_std_filter_title_4\";s:7:\"Keyword\";s:23:\"cont_std_filter_title_5\";s:6:\"Author\";s:23:\"cont_std_filter_title_6\";s:9:\"Copyright\";s:23:\"cont_std_filter_title_7\";s:16:\"Tutorial Support\";s:23:\"cont_std_filter_title_8\";s:11:\"Object Type\";s:11:\"cont_filter\";s:6:\"Filter\";s:18:\"cont_select_fields\";s:13:\"Select Fields\";s:21:\"cont_std_record_title\";s:8:\"Standard\";s:18:\"cont_filter_record\";s:6:\"Record\";s:17:\"cont_filter_field\";s:5:\"Field\";s:18:\"cont_filter_fields\";s:13:\"Filter Fields\";s:18:\"cont_news_timeline\";s:13:\"News Timeline\";s:23:\"cont_news_timeline_info\";s:27:\"Activates News Timeline Tab\";s:31:\"cont_news_timeline_auto_entries\";s:25:\"Include Automatic Entries\";s:36:\"cont_news_timeline_auto_entries_info\";s:82:\"Include all news that are created automatically, e.g. forum posts, new files, etc.\";s:18:\"cont_news_settings\";s:13:\"News Settings\";s:31:\"cont_news_timeline_landing_page\";s:12:\"Landing Page\";s:36:\"cont_news_timeline_landing_page_info\";s:39:\"Timeline page will be the landing page.\";s:22:\"cont_news_timeline_tab\";s:8:\"Timeline\";s:16:\"cont_news_edited\";s:10:\"Bearbeitet\";s:24:\"cont_skill_assigned_comp\";s:20:\"Competence Selection\";s:18:\"cont_skill_members\";s:7:\"Members\";s:15:\"cont_skill_show\";s:4:\"Show\";s:18:\"cont_skill_publish\";s:7:\"Publish\";s:25:\"cont_skill_publish_manual\";s:6:\"Manual\";s:30:\"cont_skill_publish_manual_info\";s:92:\"Competence assignments for members must be published before they become visible for members.\";s:28:\"cont_skill_publish_auto_info\";s:71:\"Competence assignments for members are immediately visible for members.\";s:23:\"cont_skill_publish_auto\";s:9:\"Automatic\";s:14:\"cont_add_skill\";s:14:\"Add Competence\";s:16:\"cont_cont_skills\";s:31:\"Assigned Competences of Members\";s:10:\"cont_skill\";s:10:\"Competence\";s:9:\"cont_path\";s:4:\"Path\";s:36:\"cont_really_remove_skill_from_course\";s:61:\"Do you really want to remove these competences from the list?\";s:18:\"cont_assign_skills\";s:18:\"Assign Competences\";s:21:\"cont_skill_do_not_set\";s:10:\"Do not set\";s:19:\"cont_skill_no_skill\";s:16:\"No value (Reset)\";s:15:\"cont_mem_skills\";s:11:\"Competences\";s:14:\"cont_published\";s:9:\"Published\";s:22:\"cont_assign_competence\";s:29:\"Assign Competences to Members\";s:24:\"cont_deassign_competence\";s:20:\"Deassign Competences\";s:23:\"cont_publish_assignment\";s:19:\"Publish Assignments\";s:27:\"cont_really_deassign_skills\";s:62:\"Do you really want to deassign all competences from the users?\";s:22:\"cont_list_presentation\";s:17:\"Item Presentation\";s:14:\"cont_item_list\";s:4:\"List\";s:14:\"cont_tile_view\";s:5:\"Tiles\";s:14:\"cont_show_more\";s:9:\"Show More\";s:16:\"cont_block_limit\";s:21:\"Limit Items per Block\";s:21:\"cont_block_limit_info\";s:65:\"If a block contains more items, a \"Show more\" button will appear.\";s:23:\"cont_std_filter_title_9\";s:14:\"Online/Offline\";s:18:\"cont_found_objects\";s:13:\"Found Objects\";s:19:\"cont_page_type_cont\";s:35:\"Repository Page (Cours, Group, ...)\";s:19:\"cont_page_type_cstr\";s:44:\"Course Start Page (Learning Objectives View)\";}'); INSERT INTO `lng_modules` VALUES ('contact','en','a:4:{s:24:\"contact_awrn_ap_contacts\";s:17:\"Approved Contacts\";s:29:\"contact_awrn_ap_contacts_info\";s:45:\"All contacts approved by the user are listed.\";s:25:\"contact_awrn_req_contacts\";s:16:\"Contact Requests\";s:30:\"contact_awrn_req_contacts_info\";s:32:\"All contact requests are listed.\";}'); @@ -30441,7 +30457,7 @@ INSERT INTO `lng_modules` VALUES ('exercise','en','a:12:{s:23:\"exc_comment_for_ INSERT INTO `lng_modules` VALUES ('exp','en','a:10:{s:15:\"exp_create_file\";s:18:\"Create Export File\";s:16:\"exp_export_files\";s:12:\"Export Files\";s:8:\"exp_html\";s:4:\"HTML\";s:17:\"exp_really_delete\";s:48:\"Do you really want to delete these export files?\";s:9:\"exp_scorm\";s:5:\"SCORM\";s:7:\"exp_xml\";s:3:\"XML\";s:14:\"export_created\";s:35:\"A new export file has been created.\";s:16:\"exp_file_created\";s:33:\"The export file has been created.\";s:26:\"exp_error_too_many_objects\";s:104:\"The export exceeds the maximum number of allowerd objects (%1). Please select a lower number of objects.\";s:18:\"exp_error_disabled\";s:89:\"The export feature is disabled for containers. You may contact your system administrator.\";}'); INSERT INTO `lng_modules` VALUES ('export','en','a:13:{s:22:\"export_create_new_file\";s:22:\"Create New Export File\";s:13:\"export_create\";s:6:\"Create\";s:18:\"export_export_date\";s:11:\"Export Date\";s:23:\"export_last_export_file\";s:20:\"Use Last Export File\";s:18:\"export_last_export\";s:11:\"Last Export\";s:16:\"export_last_file\";s:9:\"Last File\";s:20:\"export_omit_resource\";s:13:\"Omit Resource\";s:11:\"export_omit\";s:4:\"Omit\";s:15:\"export_resource\";s:8:\"Resource\";s:23:\"export_select_resources\";s:16:\"Select Resources\";s:15:\"export_existing\";s:5:\"Reuse\";s:21:\"export_save_selection\";s:12:\"Start Export\";s:7:\"no_file\";s:7:\"No file\";}'); INSERT INTO `lng_modules` VALUES ('feed','en','a:14:{s:30:\"block_feed_block_feed_url_info\";s:28:\"Must be a valid RSS/Atom URL\";s:25:\"block_feed_block_feed_url\";s:8:\"Feed URL\";s:21:\"block_feed_block_head\";s:17:\"External Web Feed\";s:22:\"block_feed_block_title\";s:5:\"Title\";s:27:\"feed_disable_rep_feeds_info\";s:108:\"Disables presentation of external web feeds in case of an unexpected problem due to an external feed source.\";s:22:\"feed_disable_rep_feeds\";s:14:\"Hide Web Feeds\";s:15:\"feed_feed_items\";s:12:\"Feed Item(s)\";s:17:\"feed_loading_feed\";s:15:\"Loading Feed...\";s:21:\"feed_no_js_click_here\";s:37:\"If feed is not displayed, click here.\";s:17:\"feed_no_valid_url\";s:26:\"The Feed URL is not valid.\";s:21:\"feed_open_source_page\";s:18:\"Open in New Window\";s:13:\"feed_settings\";s:27:\"External Web Feeds Settings\";s:11:\"feed_import\";s:11:\"Import Feed\";s:17:\"feed_no_local_url\";s:70:\"The URL could not be verified. Please enter a valid external Feed URL.\";}'); -INSERT INTO `lng_modules` VALUES ('file','en','a:28:{s:21:\"file_new_version_info\";s:64:\"Create new file version. Previous versions will not be modified.\";s:16:\"file_new_version\";s:18:\"Create New Version\";s:17:\"replace_file_info\";s:43:\"All previous file versions will be deleted.\";s:11:\"upload_info\";s:4:\"File\";s:16:\"upload_info_desc\";s:45:\"Manage Uploads and Versions in Tab \"Versions\"\";s:24:\"generate_sanitize_report\";s:31:\"Report about inaccessible files\";s:16:\"file_uploaded_by\";s:11:\"Uploaded by\";s:9:\"file_copy\";s:9:\"Copy File\";s:13:\"file_download\";s:13:\"Download File\";s:21:\"repository_disk_quota\";s:30:\"Soft Disk Quota for Repository\";s:26:\"repository_disk_quota_info\";s:139:\"If activated, the disk-quota of the magazine will be checked for each user and e-mails will be sent to administrators and users optionally.\";s:11:\"file_import\";s:11:\"Import File\";s:28:\"general_upload_error_occured\";s:42:\"An unexpected error occured during upload.\";s:29:\"file_suffix_custom_expl_black\";s:19:\"Explizite Blacklist\";s:34:\"file_suffix_custom_expl_black_info\";s:52:\"Dateien mit diesen Endungen werden nicht akzeptiert.\";s:25:\"file_suffix_default_white\";s:24:\"Default Suffix Whitelist\";s:30:\"file_suffix_default_white_info\";s:39:\"Default list of accepted file suffixes.\";s:24:\"file_suffix_custom_black\";s:23:\"Custom Suffix Blacklist\";s:29:\"file_suffix_custom_black_info\";s:58:\"These suffixes will be removed from the default whitelist.\";s:24:\"file_suffix_custom_white\";s:23:\"Custom Suffix Whitelist\";s:29:\"file_suffix_custom_white_info\";s:54:\"These suffixes will be added to the default whitelist.\";s:25:\"file_suffix_overall_white\";s:23:\"Overal Suffix Whitelist\";s:30:\"file_suffix_overall_white_info\";s:49:\"Resulting overall list of accepted file suffixes.\";s:84:\"file_upload_info_file_with_critical_unknown_extension_later_renamed_when_downloading\";s:121:\"The uploaded file contains a critical or unknown file ending. The file ending will be changed to .sec for every download.\";s:29:\"personal_resources_disk_quota\";s:38:\"Hard Disk Quota for Personal Resources\";s:34:\"personal_resources_disk_quota_info\";s:300:\"Allows definition of a hard disk quota for each user account and each global role. This quota only affects files in the personal resources and in portfolios. As soon as a user exceeds the defined quota, ILIAS will prohibit the user to upload more files until the used disk space is again under quota.\";s:41:\"personal_resources_quota_exceeded_warning\";s:61:\"You have exceeded the disk quota for your personal resources.\";s:38:\"personal_resources_quota_status_legend\";s:65:\"You are using %1$s of your available disk quota of %2$s (%3$d%%).\";}'); +INSERT INTO `lng_modules` VALUES ('file','en','a:31:{s:21:\"file_new_version_info\";s:64:\"Create new file version. Previous versions will not be modified.\";s:16:\"file_new_version\";s:18:\"Create New Version\";s:17:\"replace_file_info\";s:43:\"All previous file versions will be deleted.\";s:11:\"upload_info\";s:4:\"File\";s:16:\"upload_info_desc\";s:45:\"Manage Uploads and Versions in Tab \"Versions\"\";s:24:\"generate_sanitize_report\";s:31:\"Report about inaccessible files\";s:16:\"file_uploaded_by\";s:11:\"Uploaded by\";s:9:\"file_copy\";s:9:\"Copy File\";s:13:\"file_download\";s:13:\"Download File\";s:21:\"repository_disk_quota\";s:30:\"Soft Disk Quota for Repository\";s:26:\"repository_disk_quota_info\";s:139:\"If activated, the disk-quota of the magazine will be checked for each user and e-mails will be sent to administrators and users optionally.\";s:11:\"file_import\";s:11:\"Import File\";s:28:\"general_upload_error_occured\";s:42:\"An unexpected error occured during upload.\";s:29:\"file_suffix_custom_expl_black\";s:19:\"Explizite Blacklist\";s:34:\"file_suffix_custom_expl_black_info\";s:52:\"Dateien mit diesen Endungen werden nicht akzeptiert.\";s:25:\"file_suffix_default_white\";s:24:\"Default Suffix Whitelist\";s:30:\"file_suffix_default_white_info\";s:39:\"Default list of accepted file suffixes.\";s:24:\"file_suffix_custom_black\";s:23:\"Custom Suffix Blacklist\";s:29:\"file_suffix_custom_black_info\";s:58:\"These suffixes will be removed from the default whitelist.\";s:24:\"file_suffix_custom_white\";s:23:\"Custom Suffix Whitelist\";s:29:\"file_suffix_custom_white_info\";s:54:\"These suffixes will be added to the default whitelist.\";s:25:\"file_suffix_overall_white\";s:23:\"Overal Suffix Whitelist\";s:30:\"file_suffix_overall_white_info\";s:49:\"Resulting overall list of accepted file suffixes.\";s:84:\"file_upload_info_file_with_critical_unknown_extension_later_renamed_when_downloading\";s:121:\"The uploaded file contains a critical or unknown file ending. The file ending will be changed to .sec for every download.\";s:29:\"personal_resources_disk_quota\";s:38:\"Hard Disk Quota for Personal Resources\";s:34:\"personal_resources_disk_quota_info\";s:300:\"Allows definition of a hard disk quota for each user account and each global role. This quota only affects files in the personal resources and in portfolios. As soon as a user exceeds the defined quota, ILIAS will prohibit the user to upload more files until the used disk space is again under quota.\";s:29:\"personal_workspace_disk_quota\";s:38:\"Hard Disk Quota for Personal Workspace\";s:41:\"personal_workspace_quota_exceeded_warning\";s:61:\"You have exceeded the disk quota for your personal workspace.\";s:38:\"personal_workspace_quota_status_legend\";s:65:\"You are using %1$s of your available disk quota of %2$s (%3$d%%).\";s:41:\"personal_resources_quota_exceeded_warning\";s:61:\"You have exceeded the disk quota for your personal resources.\";s:38:\"personal_resources_quota_status_legend\";s:65:\"You are using %1$s of your available disk quota of %2$s (%3$d%%).\";}'); INSERT INTO `lng_modules` VALUES ('fm','en','a:7:{s:15:\"fm_settings_tab\";s:12:\"File Manager\";s:18:\"fm_settings_active\";s:19:\"Enable File Manager\";s:23:\"fm_settings_active_info\";s:119:\"Users can open categories, courses, groups and folders using the ‘Open With File Manager’ action in the repository.\";s:17:\"fm_settings_local\";s:21:\"Show Local Filesystem\";s:22:\"fm_settings_local_info\";s:186:\"If enabled, the file manager starts with two frames, one shows the local filesystem, the other contains the view on the ILIAS repository. If disabled, only the ILIAS repository is shown.\";s:20:\"fm_settings_filesize\";s:24:\"Maximum Upload File Size\";s:25:\"fm_settings_filesize_info\";s:67:\"Enter the maximum allowed file size for uploaded files in mebibyte.\";}'); INSERT INTO `lng_modules` VALUES ('fold','en','a:4:{s:11:\"fold_import\";s:13:\"Import Folder\";s:9:\"fold_copy\";s:11:\"Copy Folder\";s:13:\"fold_settings\";s:15:\"Folder Settings\";s:17:\"fold_presentation\";s:19:\"Folder Presentation\";}'); INSERT INTO `lng_modules` VALUES ('form','en','a:47:{s:9:\"form_days\";s:4:\"Days\";s:15:\"form_file_input\";s:10:\"File Input\";s:11:\"form_format\";s:6:\"Format\";s:27:\"form_hierarchy_add_elements\";s:42:\"Click on placeholders to add new elements.\";s:29:\"form_hierarchy_drag_drop_help\";s:53:\"Drag and drop icons on placeholders to move elements.\";s:10:\"form_hours\";s:5:\"Hours\";s:21:\"form_image_file_input\";s:16:\"Image File Input\";s:14:\"form_max_value\";s:13:\"Maximum Value\";s:14:\"form_min_value\";s:13:\"Minimum Value\";s:12:\"form_minutes\";s:7:\"Minutes\";s:11:\"form_months\";s:6:\"Months\";s:34:\"form_msg_file_cannot_write_to_disk\";s:21:\"Cannot write to disk.\";s:29:\"form_msg_file_missing_tmp_dir\";s:44:\"Temporary directory for file upload missing.\";s:23:\"form_msg_file_no_upload\";s:56:\"This input is required. Please select a file for upload.\";s:32:\"form_msg_file_partially_uploaded\";s:42:\"The file could not be uploaded completely.\";s:26:\"form_msg_file_size_exceeds\";s:53:\"The uploaded file exceeds the max. allowed file size.\";s:32:\"form_msg_file_upload_stopped_ext\";s:33:\"File upload stopped by extension.\";s:25:\"form_msg_file_virus_found\";s:29:\"Virus found in uploaded file.\";s:30:\"form_msg_file_missing_file_ext\";s:44:\"The uploaded file has no file type exension.\";s:29:\"form_msg_file_wrong_file_type\";s:16:\"Wrong file type.\";s:28:\"form_msg_formula_is_required\";s:31:\"Please enter a correct formula.\";s:31:\"form_msg_numeric_value_required\";s:29:\"Please enter a numeric value.\";s:23:\"form_msg_value_too_high\";s:43:\"Value too high. Please enter a lower value.\";s:22:\"form_msg_value_too_low\";s:43:\"Value too low. Please enter a higher value.\";s:19:\"form_msg_wrong_date\";s:38:\"Wrong date. Please enter a valid date.\";s:34:\"form_password_not_allowed_for_auth\";s:79:\"It is not possible to change the password for the chosen authentication method.\";s:31:\"form_password_required_for_auth\";s:58:\"Password is required for the chosen authentication method.\";s:20:\"form_retype_password\";s:15:\"Retype Password\";s:12:\"form_seconds\";s:7:\"Seconds\";s:17:\"form_alphabet_all\";s:3:\"All\";s:18:\"form_please_select\";s:13:\"Please Select\";s:18:\"form_link_internal\";s:12:\"Inside ILIAS\";s:18:\"form_link_external\";s:14:\"World Wide Web\";s:13:\"form_get_link\";s:20:\"Select Target Object\";s:17:\"form_retype_email\";s:13:\"Retype E-Mail\";s:15:\"email_not_match\";s:85:\"Your entries for the e-mail address don\'t match! Please re-enter your e-mail address.\";s:12:\"captcha_code\";s:17:\"User Verification\";s:20:\"form_location_radius\";s:6:\"Radius\";s:23:\"form_location_radius_km\";s:2:\"km\";s:16:\"form_open_answer\";s:11:\"Open Answer\";s:22:\"form_hier_click_to_add\";s:31:\"Click here to add new elements.\";s:19:\"form_date_aria_desc\";s:39:\"The following input format is required:\";s:24:\"form_date_duration_start\";s:5:\"Start\";s:22:\"form_date_duration_end\";s:3:\"End\";s:12:\"form_no_link\";s:7:\"No Link\";s:33:\"form_msg_file_type_is_not_allowed\";s:30:\"This file type is not allowed.\";s:20:\"form_chars_remaining\";s:21:\"Characters remaining:\";}'); @@ -30485,14 +30501,14 @@ INSERT INTO `lng_modules` VALUES ('payment','en','a:522:{s:15:\"advanced_search\ INSERT INTO `lng_modules` VALUES ('pd','en','a:39:{s:30:\"pd_my_memberships_sort_default\";s:22:\"Default of Sort Option\";s:11:\"pd_upcoming\";s:8:\"Upcoming\";s:10:\"pd_ongoing\";s:7:\"Ongoing\";s:8:\"pd_ended\";s:5:\"Ended\";s:11:\"pd_not_date\";s:9:\"Not Dated\";s:23:\"pd_my_memberships_intro\";s:27:\"Welcome to Your Memberships\";s:24:\"pd_my_memberships_intro2\";s:478:\"This is your personal space for all courses and groups you participate in. Currently, there aren\'t any memberships assigned to you. To become a member of a course or group, there are two ways:
  1. You can join courses or groups provided that joining them has been allowed by their administrators.
  2. An administratrator of a course or group can assign a membership to you.

In any case, the respective objects will appear automatically in this place.\";s:35:\"pd_personal_items_default_view_info\";s:44:\"Choose the preferred view of Personal Items.\";s:30:\"pd_personal_items_default_view\";s:12:\"Default View\";s:27:\"pd_view_select_at_least_one\";s:94:\"You have to select at least one view, either ‘Selected Items’ and/or ‘My Memberships’.\";s:14:\"pd_enable_prtf\";s:17:\"Enable Portfolios\";s:18:\"pd_enable_comments\";s:15:\"Enable Comments\";s:27:\"pd_enable_user_publish_info\";s:91:\"If enabled, users can publish their profiles, personal resources and portfolios on the Web.\";s:22:\"pd_enable_user_publish\";s:30:\"Enable User Content Publishing\";s:17:\"pd_export_profile\";s:20:\"Export Personal Data\";s:28:\"pd_download_last_export_file\";s:25:\"Download Last Export File\";s:23:\"pd_import_personal_data\";s:20:\"Import Personal Data\";s:15:\"pd_profile_data\";s:12:\"Profile Data\";s:12:\"pd_bookmarks\";s:9:\"Bookmarks\";s:20:\"pd_private_calendars\";s:17:\"Private Calendars\";s:16:\"block_show_pdcal\";s:13:\"Show Calendar\";s:17:\"block_show_pdmail\";s:9:\"Show Mail\";s:16:\"block_show_pdtag\";s:12:\"Show My Tags\";s:17:\"block_show_pdnews\";s:9:\"Show News\";s:18:\"block_show_pdnotes\";s:10:\"Show Notes\";s:21:\"block_show_chatviewer\";s:16:\"Show Chat Viewer\";s:18:\"block_show_pdbookm\";s:14:\"Show Bookmarks\";s:25:\"block_show_pdfrmpostdraft\";s:20:\"Show Postings Drafts\";s:19:\"block_create_pdfeed\";s:15:\"Add New Webfeed\";s:12:\"block_show_x\";s:7:\"Show %s\";s:18:\"pd_remove_multiple\";s:23:\"Remove Multiple Objects\";s:35:\"pd_unsubscribe_multiple_memberships\";s:20:\"Unsubscribe Multiple\";s:26:\"pd_unsubscribe_memberships\";s:11:\"Unsubscribe\";s:23:\"pd_remove_multi_confirm\";s:25:\"The objects were removed.\";s:18:\"block_show_pdportf\";s:15:\"Show Portfolios\";s:15:\"pd_achievements\";s:12:\"Achievements\";s:18:\"block_show_pdtasks\";s:10:\"Show Tasks\";s:25:\"pd_presentation_mode_list\";s:22:\"Item List Presentation\";s:25:\"pd_presentation_mode_tile\";s:17:\"Tile Presentation\";}'); INSERT INTO `lng_modules` VALUES ('pdesk','en','a:2:{s:22:\"bookmark_select_target\";s:21:\"Please select target.\";s:17:\"bookmark_moved_ok\";s:24:\"Bookmark has been moved.\";}'); INSERT INTO `lng_modules` VALUES ('poll','en','a:59:{s:8:\"poll_new\";s:12:\"Add New Poll\";s:8:\"poll_add\";s:8:\"Add Poll\";s:9:\"poll_copy\";s:9:\"Copy Poll\";s:9:\"poll_edit\";s:9:\"Edit Poll\";s:13:\"poll_question\";s:8:\"Question\";s:10:\"poll_image\";s:5:\"Image\";s:17:\"poll_view_results\";s:15:\"Display Results\";s:24:\"poll_view_results_always\";s:6:\"Always\";s:23:\"poll_view_results_never\";s:5:\"Never\";s:28:\"poll_view_results_after_vote\";s:10:\"After Vote\";s:30:\"poll_view_results_after_period\";s:19:\"After Voting Period\";s:27:\"poll_activation_online_info\";s:59:\"Activate this setting to make the poll accessible to users.\";s:11:\"poll_answer\";s:6:\"Answer\";s:12:\"poll_answers\";s:16:\"Possible Answers\";s:14:\"poll_sortorder\";s:5:\"Order\";s:15:\"poll_percentage\";s:18:\"Current Percentage\";s:9:\"poll_vote\";s:4:\"Vote\";s:26:\"poll_block_message_offline\";s:21:\"This poll is offline.\";s:27:\"poll_block_message_inactive\";s:36:\"This poll will be available from %s.\";s:32:\"poll_block_message_already_voted\";s:31:\"You already voted in this poll.\";s:29:\"poll_block_message_no_answers\";s:24:\"This poll is incomplete.\";s:18:\"poll_votes_no_edit\";s:88:\"This poll already contains votes. You cannot edit the poll until you delete these votes.\";s:15:\"poll_population\";s:15:\"%s Participants\";s:17:\"poll_delete_votes\";s:16:\"Delete All Votes\";s:22:\"poll_delete_votes_sure\";s:42:\"Are you sure you want to delete all votes?\";s:30:\"poll_voting_period_and_results\";s:25:\"Voting Period and Results\";s:26:\"poll_voting_period_limited\";s:21:\"Limited Voting Period\";s:13:\"poll_absolute\";s:13:\"Current Votes\";s:31:\"poll_block_results_available_on\";s:36:\"The results will be available on %s.\";s:11:\"poll_import\";s:11:\"Import Poll\";s:11:\"poll_result\";s:7:\"Results\";s:23:\"poll_voting_period_info\";s:23:\"Deadline for Voting: %s\";s:26:\"poll_max_number_of_answers\";s:41:\"Maximum Number Of Answers per Participant\";s:22:\"poll_vote_error_single\";s:23:\"Please select 1 answer.\";s:21:\"poll_vote_error_multi\";s:38:\"Please select no more than %s answers.\";s:19:\"poll_result_sorting\";s:7:\"Sorting\";s:27:\"poll_result_sorting_answers\";s:27:\"In the order of the answers\";s:25:\"poll_result_sorting_votes\";s:31:\"By number of votes (descending)\";s:9:\"poll_mode\";s:4:\"Mode\";s:19:\"poll_mode_anonymous\";s:9:\"Anonymous\";s:24:\"poll_mode_anonymous_info\";s:44:\"Votes cannot be traced back to participants.\";s:18:\"poll_mode_personal\";s:8:\"Personal\";s:23:\"poll_mode_personal_info\";s:98:\"A list of participants with their respective votes is available when having sufficient permission.\";s:26:\"poll_non_anonymous_warning\";s:65:\"Your name and vote are visible for administrators in the results.\";s:19:\"poll_result_answers\";s:5:\"Votes\";s:17:\"poll_result_users\";s:12:\"Participants\";s:27:\"poll_notification_subscribe\";s:21:\"Activate Notification\";s:29:\"poll_notification_unsubscribe\";s:23:\"Deactivate Notification\";s:30:\"poll_vote_notification_subject\";s:19:\"Poll \"%s\": new vote\";s:27:\"poll_vote_notification_body\";s:39:\"the following poll has received a vote.\";s:27:\"poll_vote_notification_link\";s:12:\"Link to Poll\";s:29:\"poll_vote_notification_reason\";s:95:\"You are receiving this e-mail because you activated notifications for the poll mentioned above.\";s:13:\"poll_comments\";s:8:\"Comments\";s:20:\"poll_show_results_as\";s:15:\"Show Results as\";s:13:\"poll_barchart\";s:9:\"Bar Chart\";s:13:\"poll_piechart\";s:9:\"Pie Chart\";s:22:\"poll_anonymous_warning\";s:45:\"Your name is not visible in the poll results.\";s:41:\"poll_view_results_after_period_impossible\";s:33:\"The voting period is not limited.\";s:28:\"poll_voting_period_full_info\";s:27:\"Voting period from %s to %s\";}'); -INSERT INTO `lng_modules` VALUES ('prg','en','a:246:{s:29:\"form_msg_file_wrong_file_type\";s:16:\"Wrong file type.\";s:7:\"prg_new\";s:19:\"New Study Programme\";s:7:\"prg_add\";s:19:\"Add Study Programme\";s:8:\"prg_edit\";s:20:\"Edit Study Programme\";s:8:\"prg_type\";s:20:\"Study Programme Type\";s:14:\"prg_assessment\";s:26:\"Study Programme Assessment\";s:10:\"prg_points\";s:6:\"Points\";s:10:\"prg_status\";s:6:\"Status\";s:16:\"prg_status_draft\";s:5:\"Draft\";s:17:\"prg_status_active\";s:6:\"Active\";s:19:\"prg_status_outdated\";s:8:\"Outdated\";s:22:\"prg_status_in_progress\";s:11:\"In Progress\";s:20:\"prg_status_completed\";s:9:\"Completed\";s:21:\"prg_status_accredited\";s:10:\"Accredited\";s:23:\"prg_status_not_relevant\";s:12:\"Not Relevant\";s:12:\"prg_possible\";s:8:\"Possible\";s:17:\"prg_completion_by\";s:13:\"Completion by\";s:14:\"prg_changed_by\";s:10:\"Changed by\";s:17:\"prg_manual_status\";s:13:\"Manual Status\";s:19:\"prg_points_required\";s:15:\"Points Required\";s:18:\"prg_points_current\";s:14:\"Points Current\";s:15:\"prg_custom_plan\";s:11:\"Custom Plan\";s:14:\"prg_belongs_to\";s:10:\"Belongs to\";s:24:\"prg_show_individual_plan\";s:20:\"Show Individual Plan\";s:15:\"prg_remove_user\";s:11:\"Remove User\";s:19:\"prg_mark_accredited\";s:15:\"Mark Accredited\";s:21:\"prg_unmark_accredited\";s:17:\"Unmark Accredited\";s:27:\"prg_mark_accredited_success\";s:46:\"Accredited Program Node for User successfully.\";s:29:\"prg_unmark_accredited_success\";s:48:\"Unaccredited Program Node for User successfully.\";s:23:\"prg_remove_user_success\";s:26:\"Removed User successfully.\";s:12:\"prg_type_add\";s:20:\"Study Programme Type\";s:12:\"prg_subtypes\";s:8:\"Subtypes\";s:15:\"prg_subtype_add\";s:15:\"Add new subtype\";s:20:\"prg_type_custom_icon\";s:12:\"Custom Icons\";s:25:\"prg_type_custom_icon_info\";s:16:\"Custom icon info\";s:30:\"prg_type_msg_error_custom_icon\";s:24:\"Error while storing icon\";s:24:\"prg_type_assign_amd_sets\";s:29:\"Assign advanced metadata sets\";s:27:\"prg_type_available_amd_sets\";s:32:\"Available Advanced Metadata sets\";s:13:\"prg_type_edit\";s:12:\"Edit subtype\";s:20:\"prg_type_msg_deleted\";s:15:\"Deleted subtype\";s:26:\"prg_type_msg_unable_delete\";s:88:\"Unable to delete type because it is still assigned to the following Study Programmes: %s\";s:43:\"prg_type_msg_missing_title_default_language\";s:73:\"There must be set a default language and a title for the default language\";s:19:\"prg_save_tree_order\";s:15:\"Save tree order\";s:21:\"prg_cancel_tree_order\";s:18:\"Dismiss tree order\";s:26:\"prg_saved_order_successful\";s:22:\"Saved order successful\";s:18:\"prg_async_settings\";s:8:\"Settings\";s:13:\"prg_open_node\";s:19:\"Switch to this node\";s:16:\"prg_async_create\";s:18:\"Add new tree-child\";s:19:\"prg_create_new_node\";s:15:\"Create new node\";s:19:\"prg_create_new_leaf\";s:15:\"Create new leaf\";s:46:\"prg_please_select_a_course_for_creating_a_leaf\";s:54:\"Please select a course for creating a course link leaf\";s:18:\"prg_deleted_safely\";s:23:\"Node was deleted safely\";s:30:\"prg_not_allowed_node_to_delete\";s:39:\"You are not allowed to delete this node\";s:31:\"prg_added_course_ref_successful\";s:38:\"New course link was added successfully\";s:10:\"prg_manage\";s:6:\"Manage\";s:8:\"prg_view\";s:4:\"View\";s:28:\"prg_update_from_current_plan\";s:24:\"Update from current Plan\";s:21:\"prg_update_successful\";s:27:\"Saved changes successfully!\";s:31:\"prg_update_from_plan_successful\";s:39:\"Updated from current plan successfully!\";s:7:\"warning\";s:8:\"Warning!\";s:17:\"prg_progress_info\";s:72:\"You have %1$d points. The Study Programme is completed with %2$d points.\";s:19:\"prg_progress_status\";s:20:\" %1$d of %2$d Points\";s:33:\"prg_progress_status_with_child_sp\";s:29:\" %1$d of possible %2$d Points\";s:25:\"prg_no_members_not_active\";s:51:\"Can\'t add members, as this programme is not active.\";s:26:\"prg_type_msg_missing_title\";s:22:\"Title cannot be empty.\";s:16:\"prg_added_member\";s:38:\"The new member was added successfully.\";s:17:\"prg_added_members\";s:40:\"The new members were added successfully.\";s:33:\"prg_acknowledge_completed_courses\";s:29:\"Acknowledge Completed Courses\";s:25:\"prg_multi_mark_accredited\";s:10:\"Accredited\";s:27:\"prg_multi_unmark_accredited\";s:17:\"Unmark Accredited\";s:21:\"prg_multi_remove_user\";s:11:\"Remove User\";s:23:\"prg_multi_mark_relevant\";s:13:\"Mark Relevant\";s:25:\"prg_multi_unmark_relevant\";s:15:\"Unmark Relevant\";s:34:\"prg_multi_update_from_current_plan\";s:24:\"Update From Current Plan\";s:33:\"prg_mark_accredited_multi_success\";s:33:\"Mark Selected Users As Accredited\";s:35:\"prg_unmark_accredited_multi_success\";s:35:\"Unmark Selected Users As Accredited\";s:31:\"prg_mark_relevant_multi_success\";s:31:\"Mark Selected Users As Relevant\";s:35:\"prg_mark_not_relevant_multi_success\";s:33:\"Unmark Selected Users As Relevant\";s:24:\"prg_remove_users_success\";s:21:\"Remove Selected Users\";s:34:\"prg_remove_users_partitial_success\";s:33:\"Remove Selected Users Particially\";s:29:\"prg_remove_users_not_possible\";s:34:\"Remove Selected Users Not Possible\";s:41:\"prg_update_from_current_plan_not_possible\";s:37:\"Update From Current Plan Not Possible\";s:46:\"prg_update_from_current_plan_partitial_success\";s:35:\"Update From Current Plan Partically\";s:36:\"prg_update_from_current_plan_success\";s:24:\"Update From Current Plan\";s:20:\"prg_no_user_selected\";s:16:\"No User Selected\";s:12:\"prg_prg_type\";s:20:\"Study Programme Type\";s:32:\"prg_show_programmes_on_pd_always\";s:49:\"Study Programmes are always visible on Dashboard.\";s:35:\"prg_show_programmes_on_pd_only_read\";s:75:\"Study Programmes are only visible on Dashboard with ‘read’ permissions.\";s:40:\"prg_more_objects_without_read_permission\";s:80:\"Study Programme contains more objects you can\'t see because of less permissions.\";s:26:\"prg_can_not_manage_in_repo\";s:79:\"You\'re not allowed to manage this Study Programme, because of user assignments.\";s:19:\"prg_show_programmes\";s:10:\"Visibility\";s:15:\"prg_assign_date\";s:15:\"Assignment date\";s:15:\"prg_assigned_by\";s:11:\"Assigned by\";s:20:\"prg_points_reachable\";s:17:\"Points Obtainable\";s:12:\"prg_deadline\";s:8:\"Deadline\";s:17:\"prg_status_failed\";s:6:\"failed\";s:15:\"assignment_date\";s:15:\"Assignment Date\";s:15:\"completion_date\";s:15:\"Completion Date\";s:15:\"prg_no_deadline\";s:24:\"No fixed prozessing time\";s:19:\"prg_deadline_period\";s:41:\"Processing time is determined inividually\";s:24:\"prg_deadline_period_desc\";s:55:\"The programme must be finished within a given timespan.\";s:17:\"prg_deadline_date\";s:37:\"Processing time expires at fixed date\";s:22:\"prg_deadline_date_desc\";s:50:\"The programme must be finished until a given date.\";s:29:\"prg_no_validity_qualification\";s:26:\"Long-Lasting qualification\";s:29:\"prg_validity_of_qualification\";s:35:\"Validity of Achieved Qualifications\";s:29:\"validity_qualification_period\";s:34:\"Qualification expires individually\";s:34:\"validity_qualification_period_desc\";s:21:\"days after completion\";s:27:\"validity_qualification_date\";s:35:\"Qualification expires at fixed date\";s:32:\"validity_qualification_date_desc\";s:11:\"expiry date\";s:14:\"prg_no_restart\";s:19:\"No restart required\";s:14:\"restart_period\";s:18:\"Restart obligatory\";s:19:\"restart_period_desc\";s:18:\"days before expiry\";s:20:\"sp_certificate_title\";s:28:\"Title of the Study Programme\";s:26:\"sp_certificate_description\";s:34:\"Description of the Study Programme\";s:19:\"sp_certificate_type\";s:27:\"Type of the Study Programme\";s:21:\"sp_certificate_points\";s:40:\"Amount of points that have been acquired\";s:30:\"sp_certificate_completion_date\";s:18:\"Date of completion\";s:34:\"sp_certificate_progress_expires_at\";s:31:\"Date of expiry of qualification\";s:19:\"prg_completion_date\";s:15:\"Completion date\";s:15:\"prg_expiry_date\";s:11:\"Expiry date\";s:12:\"prg_validity\";s:8:\"Validity\";s:15:\"prg_still_valid\";s:11:\"still valid\";s:13:\"prg_not_valid\";s:9:\"not valid\";s:47:\"prg_restart_assignments_temporal_progress_title\";s:34:\"Restart Studyprogramme assignments\";s:46:\"prg_restart_assignments_temporal_progress_desc\";s:66:\"Restart Studyprogramme assignments with progresses about to expire\";s:39:\"prg_invalidate_expired_progresses_title\";s:43:\"Limited validity of Studyprogramme progress\";s:38:\"prg_invalidate_expired_progresses_desc\";s:59:\"Marks expired progresses at Studyprogrammes as \'not passed\'\";s:9:\"prg_orgus\";s:20:\"Organisational Units\";s:24:\"content_automation_title\";s:58:\"Automatically add and remove Courses from these categories\";s:18:\"content_automation\";s:18:\"Content Automation\";s:14:\"last_edited_by\";s:11:\"Last Editor\";s:11:\"last_edited\";s:11:\"Last edited\";s:12:\"add_category\";s:12:\"Add Category\";s:22:\"modal_categories_title\";s:24:\"Category to be monitored\";s:8:\"category\";s:14:\"Category RefId\";s:8:\"prgr_new\";s:27:\"Create Study Programme Link\";s:14:\"prgr_edit_info\";s:58:\"Please choose one Study Programme for creating a new link.\";s:38:\"prgr_may_not_create_circular_reference\";s:103:\"This Study Programme may not be linked here since the parent object is alredy linked within the target.\";s:35:\"prg_validity_of_qualification_limit\";s:20:\"Qualification Expiry\";s:37:\"prg_validity_of_qualification_restart\";s:7:\"Restart\";s:21:\"prg_deadline_settings\";s:17:\"Processing Period\";s:17:\"edit_participants\";s:12:\"Edit Members\";s:16:\"auto_memberships\";s:21:\"Membership Automation\";s:4:\"orgu\";s:19:\"Organisational Unit\";s:3:\"rol\";s:4:\"Role\";s:21:\"auto_membership_title\";s:33:\"Sources for Membership Automation\";s:25:\"add_automembership_source\";s:10:\"Add Source\";s:24:\"auto_membership_src_type\";s:4:\"Type\";s:20:\"membership_source_id\";s:2:\"Id\";s:33:\"membership_source_id_byline_objid\";s:31:\"Please use the object-id\";s:33:\"membership_source_id_byline_refid\";s:34:\"Please use the reference-id\";s:26:\"modal_automembership_title\";s:24:\"Automatismus hinzufügen\";s:22:\"membership_source_type\";s:6:\"Source\";s:18:\"prg_autoassignment\";s:6:\"(auto)\";s:36:\"prg_some_users_may_not_be_accredited\";s:34:\"Partially marked users accredited.\";s:45:\"prg_some_users_may_not_be_unmarked_accredited\";s:36:\"Partially unmarked users accredited.\";s:41:\"prg_some_users_may_not_be_marked_relevant\";s:26:\"Partially marked relevant.\";s:45:\"prg_some_users_may_not_be_marked_not_relevant\";s:28:\"Partially unmarked relevant.\";s:20:\"prg_formatted_period\";s:7:\"%d days\";s:20:\"deadline_information\";s:39:\"Information regarding processing period\";s:19:\"dealine_period_info\";s:32:\"Days to process after assignment\";s:17:\"dealine_date_info\";s:13:\"Deadline date\";s:14:\"vq_information\";s:55:\"Information regarding validity of achived qualification\";s:14:\"vq_period_info\";s:53:\"Days until qualification will expire after achivement\";s:12:\"vq_date_info\";s:35:\"Qualification expires at fixed date\";s:19:\"restart_information\";s:77:\"Information regarding automatic restart upon pending qualification expiration\";s:19:\"restart_period_info\";s:61:\"Days before qualification expiration to restart qualification\";s:27:\"access_ctr_by_orgu_position\";s:57:\"Access control according to Organisational Unit Positions\";s:33:\"could_not_add_users_no_permissons\";s:53:\"Could not assign %d Users due to lacking permissions.\";s:18:\"not_a_valid_cat_id\";s:39:\"%s is not a valid ref-id of a category.\";s:23:\"prg_mail_permanent_link\";s:97:\"Click on the following link to find all of the information you need regarding the study programm:\";s:9:\"prg_title\";s:5:\"Title\";s:24:\"re_assigned_mail_subject\";s:43:\"Renewed participation in the study programm\";s:21:\"re_assigned_mail_body\";s:74:\"%s %s,

you were reassigned to study program \'%s\' as participants.\";s:30:\"info_to_re_assign_mail_subject\";s:55:\"Reminder of renewed participation in the study programm\";s:27:\"info_to_re_assign_mail_body\";s:115:\"%s %s,

The validity of their participation in the study programm \'% s\' expires soon. Please sign in again.\";s:33:\"prg_user_not_restarted_time_input\";s:21:\"Reminder mail restart\";s:38:\"prg_user_not_restarted_time_input_info\";s:96:\"Reminder Mail Reminds the user x days before the invalidation that he must restart the programm.\";s:30:\"prg_processing_ends_no_success\";s:21:\"Reminder mail failing\";s:35:\"prg_processing_ends_no_success_info\";s:81:\"Reminds the user x days before the program expires that he is at risk of failing.\";s:26:\"prg_cron_job_configuration\";s:29:\"Configuration automatic Mails\";s:21:\"send_re_assigned_mail\";s:28:\"E-mail renewed participation\";s:26:\"send_re_assigned_mail_info\";s:57:\"Send an e-mail to automatically re-join the sudy program.\";s:27:\"send_info_to_re_assign_mail\";s:23:\"E-mail reminder restart\";s:32:\"send_info_to_re_assign_mail_info\";s:63:\"Send an e-mail to remind the user to restart the study program.\";s:28:\"prg_user_risky_to_fail_title\";s:40:\"Send warning mail about possible failure\";s:27:\"prg_user_risky_to_fail_desc\";s:95:\"Sends users a warning mail if they are at the risk to fail a study programme due to a deadline.\";s:28:\"prg_user_not_restarted_title\";s:31:\"Send warning mail about restart\";s:27:\"prg_user_not_restarted_desc\";s:118:\"Sends users a warning mail if a qualification at a study programme expires and they haven\'t restarted the program yet.\";s:23:\"send_risky_to_fail_mail\";s:25:\"E-mail in case of failure\";s:28:\"send_risky_to_fail_mail_info\";s:70:\"Send an e-mail if the user is at risk of failure of the study program.\";s:20:\"prg_dash_label_valid\";s:6:\"Valid:\";s:22:\"prg_dash_label_minimum\";s:19:\"Minimum Completion:\";s:19:\"prg_dash_label_gain\";s:19:\"Current Completion:\";s:21:\"prg_dash_label_status\";s:7:\"Status:\";s:27:\"prg_dash_label_finish_until\";s:13:\"Finish until:\";s:27:\"prg_dash_label_restart_from\";s:13:\"Restart from:\";s:10:\"percentage\";s:1:\"%\";s:12:\"prg_status_1\";s:11:\"In Progress\";s:12:\"prg_status_2\";s:9:\"Completed\";s:12:\"prg_status_3\";s:10:\"Accredited\";s:12:\"prg_status_4\";s:12:\"Not Relevant\";s:12:\"prg_status_5\";s:6:\"failed\";s:25:\"prg_multi_change_deadline\";s:15:\"Change deadline\";s:28:\"prg_multi_change_expire_date\";s:18:\"Change expire date\";s:18:\"update_expire_date\";s:32:\"Successfully update expire date.\";s:15:\"update_deadline\";s:29:\"Successfully update deadline.\";s:26:\"error_updating_expire_date\";s:34:\"Error during updating expire date.\";s:23:\"error_updating_deadline\";s:31:\"Error during updating deadline.\";s:10:\"select_crs\";s:18:\"Search for Courses\";s:10:\"select_grp\";s:17:\"Search for Groups\";s:11:\"select_role\";s:16:\"Search for Roles\";s:10:\"select_org\";s:30:\"Search for Organisational Unit\";s:9:\"label_crs\";s:11:\"Course Name\";s:9:\"label_grp\";s:10:\"Group Name\";s:10:\"label_role\";s:9:\"Role Name\";s:30:\"modal_member_auto_select_title\";s:33:\"Select source for auto assignment\";s:26:\"prg_auto_member_select_crs\";s:7:\"Courses\";s:26:\"prg_auto_member_select_grp\";s:6:\"Groups\";s:27:\"prg_auto_member_select_role\";s:5:\"Roles\";s:21:\"prg_quali_still_valid\";s:25:\"Qualification still valid\";s:19:\"prg_quali_not_valid\";s:23:\"Qualification not valid\";s:15:\"prg_type_byline\";s:56:\"Set a type to use certain custom metadata sets or icons.\";s:17:\"prg_points_byline\";s:134:\"Students get a certain amount of points when they succeed in this programme and need to get this many points in subsequent programmes.\";s:17:\"prg_status_byline\";s:68:\"Use the status to control if this programme is assigned to students.\";s:15:\"prg_description\";s:11:\"Description\";s:8:\"prg_link\";s:4:\"Link\";s:22:\"prg_mail_context_title\";s:32:\"Study Programme: Mail to Members\";s:21:\"prg_mail_context_info\";s:92:\"For the participant e-mails on the member and learning progress screens of a study programme\";s:23:\"prg_additional_settings\";s:19:\"Additional Features\";s:18:\"prg_access_by_orgu\";s:45:\"Access Control by Organisation Unit Positions\";s:25:\"prg_access_by_orgu_byline\";s:96:\"If enabled, additional access control rules can be defined by positions in organisational units.\";s:17:\"msg_fill_required\";s:32:\"Please fill all required fields.\";s:22:\"prg_profile_not_public\";s:34:\"Profile of the user is not public.\";s:27:\"prg_delete_nothing_selected\";s:43:\"Please select at least one entry to delete.\";s:23:\"prg_delete_confirmation\";s:50:\"Do you really want to delete the selected entries?\";s:18:\"prg_confirm_delete\";s:6:\"Delete\";s:10:\"prg_cancel\";s:6:\"Cancel\";s:18:\"prg_delete_failure\";s:14:\"Delete failed.\";s:18:\"prg_delete_success\";s:27:\"Successfuly delete entries.\";s:30:\"prg_delete_single_confirmation\";s:48:\"Do you really want to delete the selected entry?\";s:25:\"prg_delete_single_success\";s:25:\"Successfuly delete entry.\";s:26:\"risky_to_fail_mail_subject\";s:70:\"Reminder, that the deadline for the study program will soon be reached\";s:23:\"risky_to_fail_mail_body\";s:88:\"%s %s,

the deadline for completing the study program \'%s\' will soon be reached.\";s:25:\"prg_update_progress_title\";s:37:\"Set Progress to Failed after Deadline\";s:31:\"prg_update_progress_description\";s:68:\"Set Progress from \'In Progress\' to \'failed\' after Crossing Deadline.\";}'); +INSERT INTO `lng_modules` VALUES ('prg','en','a:247:{s:29:\"form_msg_file_wrong_file_type\";s:16:\"Wrong file type.\";s:7:\"prg_new\";s:19:\"New Study Programme\";s:7:\"prg_add\";s:19:\"Add Study Programme\";s:8:\"prg_edit\";s:20:\"Edit Study Programme\";s:8:\"prg_type\";s:20:\"Study Programme Type\";s:14:\"prg_assessment\";s:26:\"Study Programme Assessment\";s:10:\"prg_points\";s:6:\"Points\";s:10:\"prg_status\";s:6:\"Status\";s:16:\"prg_status_draft\";s:5:\"Draft\";s:17:\"prg_status_active\";s:6:\"Active\";s:19:\"prg_status_outdated\";s:8:\"Outdated\";s:22:\"prg_status_in_progress\";s:11:\"In Progress\";s:20:\"prg_status_completed\";s:9:\"Completed\";s:21:\"prg_status_accredited\";s:10:\"Accredited\";s:23:\"prg_status_not_relevant\";s:12:\"Not Relevant\";s:12:\"prg_possible\";s:8:\"Possible\";s:17:\"prg_completion_by\";s:13:\"Completion by\";s:14:\"prg_changed_by\";s:10:\"Changed by\";s:17:\"prg_manual_status\";s:13:\"Manual Status\";s:19:\"prg_points_required\";s:15:\"Points Required\";s:18:\"prg_points_current\";s:14:\"Points Current\";s:15:\"prg_custom_plan\";s:11:\"Custom Plan\";s:14:\"prg_belongs_to\";s:10:\"Belongs to\";s:24:\"prg_show_individual_plan\";s:20:\"Show Individual Plan\";s:15:\"prg_remove_user\";s:11:\"Remove User\";s:19:\"prg_mark_accredited\";s:15:\"Mark Accredited\";s:21:\"prg_unmark_accredited\";s:17:\"Unmark Accredited\";s:27:\"prg_mark_accredited_success\";s:46:\"Accredited Program Node for User successfully.\";s:29:\"prg_unmark_accredited_success\";s:48:\"Unaccredited Program Node for User successfully.\";s:23:\"prg_remove_user_success\";s:26:\"Removed User successfully.\";s:12:\"prg_type_add\";s:20:\"Study Programme Type\";s:12:\"prg_subtypes\";s:8:\"Subtypes\";s:15:\"prg_subtype_add\";s:15:\"Add new subtype\";s:20:\"prg_type_custom_icon\";s:12:\"Custom Icons\";s:25:\"prg_type_custom_icon_info\";s:16:\"Custom icon info\";s:30:\"prg_type_msg_error_custom_icon\";s:24:\"Error while storing icon\";s:24:\"prg_type_assign_amd_sets\";s:29:\"Assign advanced metadata sets\";s:27:\"prg_type_available_amd_sets\";s:32:\"Available Advanced Metadata sets\";s:13:\"prg_type_edit\";s:12:\"Edit subtype\";s:20:\"prg_type_msg_deleted\";s:15:\"Deleted subtype\";s:26:\"prg_type_msg_unable_delete\";s:88:\"Unable to delete type because it is still assigned to the following Study Programmes: %s\";s:43:\"prg_type_msg_missing_title_default_language\";s:73:\"There must be set a default language and a title for the default language\";s:19:\"prg_save_tree_order\";s:15:\"Save tree order\";s:21:\"prg_cancel_tree_order\";s:18:\"Dismiss tree order\";s:26:\"prg_saved_order_successful\";s:22:\"Saved order successful\";s:18:\"prg_async_settings\";s:8:\"Settings\";s:13:\"prg_open_node\";s:19:\"Switch to this node\";s:16:\"prg_async_create\";s:18:\"Add new tree-child\";s:19:\"prg_create_new_node\";s:15:\"Create new node\";s:19:\"prg_create_new_leaf\";s:15:\"Create new leaf\";s:46:\"prg_please_select_a_course_for_creating_a_leaf\";s:54:\"Please select a course for creating a course link leaf\";s:18:\"prg_deleted_safely\";s:23:\"Node was deleted safely\";s:30:\"prg_not_allowed_node_to_delete\";s:39:\"You are not allowed to delete this node\";s:31:\"prg_added_course_ref_successful\";s:38:\"New course link was added successfully\";s:10:\"prg_manage\";s:6:\"Manage\";s:8:\"prg_view\";s:4:\"View\";s:28:\"prg_update_from_current_plan\";s:24:\"Update from current Plan\";s:21:\"prg_update_successful\";s:27:\"Saved changes successfully!\";s:31:\"prg_update_from_plan_successful\";s:39:\"Updated from current plan successfully!\";s:7:\"warning\";s:8:\"Warning!\";s:17:\"prg_progress_info\";s:72:\"You have %1$d points. The Study Programme is completed with %2$d points.\";s:19:\"prg_progress_status\";s:20:\" %1$d of %2$d Points\";s:33:\"prg_progress_status_with_child_sp\";s:29:\" %1$d of possible %2$d Points\";s:25:\"prg_no_members_not_active\";s:51:\"Can\'t add members, as this programme is not active.\";s:26:\"prg_type_msg_missing_title\";s:22:\"Title cannot be empty.\";s:16:\"prg_added_member\";s:38:\"The new member was added successfully.\";s:17:\"prg_added_members\";s:40:\"The new members were added successfully.\";s:33:\"prg_acknowledge_completed_courses\";s:29:\"Acknowledge Completed Courses\";s:25:\"prg_multi_mark_accredited\";s:10:\"Accredited\";s:27:\"prg_multi_unmark_accredited\";s:17:\"Unmark Accredited\";s:21:\"prg_multi_remove_user\";s:11:\"Remove User\";s:23:\"prg_multi_mark_relevant\";s:13:\"Mark Relevant\";s:25:\"prg_multi_unmark_relevant\";s:15:\"Unmark Relevant\";s:34:\"prg_multi_update_from_current_plan\";s:24:\"Update From Current Plan\";s:33:\"prg_mark_accredited_multi_success\";s:33:\"Mark Selected Users As Accredited\";s:35:\"prg_unmark_accredited_multi_success\";s:35:\"Unmark Selected Users As Accredited\";s:31:\"prg_mark_relevant_multi_success\";s:31:\"Mark Selected Users As Relevant\";s:35:\"prg_mark_not_relevant_multi_success\";s:33:\"Unmark Selected Users As Relevant\";s:24:\"prg_remove_users_success\";s:21:\"Remove Selected Users\";s:34:\"prg_remove_users_partitial_success\";s:33:\"Remove Selected Users Particially\";s:29:\"prg_remove_users_not_possible\";s:34:\"Remove Selected Users Not Possible\";s:41:\"prg_update_from_current_plan_not_possible\";s:37:\"Update From Current Plan Not Possible\";s:46:\"prg_update_from_current_plan_partitial_success\";s:35:\"Update From Current Plan Partically\";s:36:\"prg_update_from_current_plan_success\";s:24:\"Update From Current Plan\";s:20:\"prg_no_user_selected\";s:16:\"No User Selected\";s:12:\"prg_prg_type\";s:20:\"Study Programme Type\";s:32:\"prg_show_programmes_on_pd_always\";s:49:\"Study Programmes are always visible on Dashboard.\";s:35:\"prg_show_programmes_on_pd_only_read\";s:75:\"Study Programmes are only visible on Dashboard with ‘read’ permissions.\";s:40:\"prg_more_objects_without_read_permission\";s:80:\"Study Programme contains more objects you can\'t see because of less permissions.\";s:26:\"prg_can_not_manage_in_repo\";s:79:\"You\'re not allowed to manage this Study Programme, because of user assignments.\";s:19:\"prg_show_programmes\";s:10:\"Visibility\";s:15:\"prg_assign_date\";s:15:\"Assignment date\";s:15:\"prg_assigned_by\";s:11:\"Assigned by\";s:20:\"prg_points_reachable\";s:17:\"Points Obtainable\";s:12:\"prg_deadline\";s:8:\"Deadline\";s:17:\"prg_status_failed\";s:6:\"failed\";s:15:\"assignment_date\";s:15:\"Assignment Date\";s:15:\"completion_date\";s:15:\"Completion Date\";s:15:\"prg_no_deadline\";s:24:\"No fixed prozessing time\";s:19:\"prg_deadline_period\";s:41:\"Processing time is determined inividually\";s:24:\"prg_deadline_period_desc\";s:55:\"The programme must be finished within a given timespan.\";s:17:\"prg_deadline_date\";s:37:\"Processing time expires at fixed date\";s:22:\"prg_deadline_date_desc\";s:50:\"The programme must be finished until a given date.\";s:29:\"prg_no_validity_qualification\";s:26:\"Long-Lasting qualification\";s:29:\"prg_validity_of_qualification\";s:35:\"Validity of Achieved Qualifications\";s:29:\"validity_qualification_period\";s:34:\"Qualification expires individually\";s:34:\"validity_qualification_period_desc\";s:21:\"days after completion\";s:27:\"validity_qualification_date\";s:35:\"Qualification expires at fixed date\";s:32:\"validity_qualification_date_desc\";s:11:\"expiry date\";s:14:\"prg_no_restart\";s:19:\"No restart required\";s:14:\"restart_period\";s:18:\"Restart obligatory\";s:19:\"restart_period_desc\";s:18:\"days before expiry\";s:20:\"sp_certificate_title\";s:28:\"Title of the Study Programme\";s:26:\"sp_certificate_description\";s:34:\"Description of the Study Programme\";s:19:\"sp_certificate_type\";s:27:\"Type of the Study Programme\";s:21:\"sp_certificate_points\";s:40:\"Amount of points that have been acquired\";s:30:\"sp_certificate_completion_date\";s:18:\"Date of completion\";s:34:\"sp_certificate_progress_expires_at\";s:31:\"Date of expiry of qualification\";s:19:\"prg_completion_date\";s:15:\"Completion date\";s:15:\"prg_expiry_date\";s:11:\"Expiry date\";s:12:\"prg_validity\";s:8:\"Validity\";s:15:\"prg_still_valid\";s:11:\"still valid\";s:13:\"prg_not_valid\";s:9:\"not valid\";s:47:\"prg_restart_assignments_temporal_progress_title\";s:34:\"Restart Studyprogramme assignments\";s:46:\"prg_restart_assignments_temporal_progress_desc\";s:66:\"Restart Studyprogramme assignments with progresses about to expire\";s:39:\"prg_invalidate_expired_progresses_title\";s:43:\"Limited validity of Studyprogramme progress\";s:38:\"prg_invalidate_expired_progresses_desc\";s:59:\"Marks expired progresses at Studyprogrammes as \'not passed\'\";s:9:\"prg_orgus\";s:20:\"Organisational Units\";s:24:\"content_automation_title\";s:58:\"Automatically add and remove Courses from these categories\";s:18:\"content_automation\";s:18:\"Content Automation\";s:14:\"last_edited_by\";s:11:\"Last Editor\";s:11:\"last_edited\";s:11:\"Last edited\";s:12:\"add_category\";s:12:\"Add Category\";s:22:\"modal_categories_title\";s:24:\"Category to be monitored\";s:8:\"category\";s:14:\"Category RefId\";s:8:\"prgr_new\";s:27:\"Create Study Programme Link\";s:14:\"prgr_edit_info\";s:58:\"Please choose one Study Programme for creating a new link.\";s:38:\"prgr_may_not_create_circular_reference\";s:103:\"This Study Programme may not be linked here since the parent object is alredy linked within the target.\";s:35:\"prg_validity_of_qualification_limit\";s:20:\"Qualification Expiry\";s:37:\"prg_validity_of_qualification_restart\";s:7:\"Restart\";s:21:\"prg_deadline_settings\";s:17:\"Processing Period\";s:17:\"edit_participants\";s:12:\"Edit Members\";s:16:\"auto_memberships\";s:21:\"Membership Automation\";s:4:\"orgu\";s:19:\"Organisational Unit\";s:3:\"rol\";s:4:\"Role\";s:21:\"auto_membership_title\";s:33:\"Sources for Membership Automation\";s:25:\"add_automembership_source\";s:10:\"Add Source\";s:24:\"auto_membership_src_type\";s:4:\"Type\";s:20:\"membership_source_id\";s:2:\"Id\";s:33:\"membership_source_id_byline_objid\";s:31:\"Please use the object-id\";s:33:\"membership_source_id_byline_refid\";s:34:\"Please use the reference-id\";s:26:\"modal_automembership_title\";s:24:\"Automatismus hinzufügen\";s:22:\"membership_source_type\";s:6:\"Source\";s:18:\"prg_autoassignment\";s:6:\"(auto)\";s:36:\"prg_some_users_may_not_be_accredited\";s:34:\"Partially marked users accredited.\";s:45:\"prg_some_users_may_not_be_unmarked_accredited\";s:36:\"Partially unmarked users accredited.\";s:41:\"prg_some_users_may_not_be_marked_relevant\";s:26:\"Partially marked relevant.\";s:45:\"prg_some_users_may_not_be_marked_not_relevant\";s:28:\"Partially unmarked relevant.\";s:20:\"prg_formatted_period\";s:7:\"%d days\";s:20:\"deadline_information\";s:39:\"Information regarding processing period\";s:19:\"dealine_period_info\";s:32:\"Days to process after assignment\";s:17:\"dealine_date_info\";s:13:\"Deadline date\";s:14:\"vq_information\";s:55:\"Information regarding validity of achived qualification\";s:14:\"vq_period_info\";s:53:\"Days until qualification will expire after achivement\";s:12:\"vq_date_info\";s:35:\"Qualification expires at fixed date\";s:19:\"restart_information\";s:77:\"Information regarding automatic restart upon pending qualification expiration\";s:19:\"restart_period_info\";s:61:\"Days before qualification expiration to restart qualification\";s:27:\"access_ctr_by_orgu_position\";s:57:\"Access control according to Organisational Unit Positions\";s:33:\"could_not_add_users_no_permissons\";s:53:\"Could not assign %d Users due to lacking permissions.\";s:18:\"not_a_valid_cat_id\";s:39:\"%s is not a valid ref-id of a category.\";s:23:\"prg_mail_permanent_link\";s:97:\"Click on the following link to find all of the information you need regarding the study programm:\";s:9:\"prg_title\";s:5:\"Title\";s:24:\"re_assigned_mail_subject\";s:43:\"Renewed participation in the study programm\";s:21:\"re_assigned_mail_body\";s:74:\"%s %s,

you were reassigned to study program \'%s\' as participants.\";s:30:\"info_to_re_assign_mail_subject\";s:55:\"Reminder of renewed participation in the study programm\";s:27:\"info_to_re_assign_mail_body\";s:115:\"%s %s,

The validity of their participation in the study programm \'% s\' expires soon. Please sign in again.\";s:33:\"prg_user_not_restarted_time_input\";s:21:\"Reminder mail restart\";s:38:\"prg_user_not_restarted_time_input_info\";s:96:\"Reminder Mail Reminds the user x days before the invalidation that he must restart the programm.\";s:30:\"prg_processing_ends_no_success\";s:21:\"Reminder mail failing\";s:35:\"prg_processing_ends_no_success_info\";s:81:\"Reminds the user x days before the program expires that he is at risk of failing.\";s:26:\"prg_cron_job_configuration\";s:29:\"Configuration automatic Mails\";s:21:\"send_re_assigned_mail\";s:28:\"E-mail renewed participation\";s:26:\"send_re_assigned_mail_info\";s:57:\"Send an e-mail to automatically re-join the sudy program.\";s:27:\"send_info_to_re_assign_mail\";s:23:\"E-mail reminder restart\";s:32:\"send_info_to_re_assign_mail_info\";s:63:\"Send an e-mail to remind the user to restart the study program.\";s:28:\"prg_user_risky_to_fail_title\";s:40:\"Send warning mail about possible failure\";s:27:\"prg_user_risky_to_fail_desc\";s:95:\"Sends users a warning mail if they are at the risk to fail a study programme due to a deadline.\";s:28:\"prg_user_not_restarted_title\";s:31:\"Send warning mail about restart\";s:27:\"prg_user_not_restarted_desc\";s:118:\"Sends users a warning mail if a qualification at a study programme expires and they haven\'t restarted the program yet.\";s:23:\"send_risky_to_fail_mail\";s:25:\"E-mail in case of failure\";s:28:\"send_risky_to_fail_mail_info\";s:70:\"Send an e-mail if the user is at risk of failure of the study program.\";s:20:\"prg_dash_label_valid\";s:6:\"Valid:\";s:22:\"prg_dash_label_minimum\";s:19:\"Minimum Completion:\";s:19:\"prg_dash_label_gain\";s:19:\"Current Completion:\";s:21:\"prg_dash_label_status\";s:7:\"Status:\";s:27:\"prg_dash_label_finish_until\";s:13:\"Finish until:\";s:27:\"prg_dash_label_restart_from\";s:13:\"Restart from:\";s:10:\"percentage\";s:1:\"%\";s:12:\"prg_status_1\";s:11:\"In Progress\";s:12:\"prg_status_2\";s:9:\"Completed\";s:12:\"prg_status_3\";s:10:\"Accredited\";s:12:\"prg_status_4\";s:12:\"Not Relevant\";s:12:\"prg_status_5\";s:6:\"failed\";s:25:\"prg_multi_change_deadline\";s:15:\"Change deadline\";s:28:\"prg_multi_change_expire_date\";s:18:\"Change expire date\";s:18:\"update_expire_date\";s:32:\"Successfully update expire date.\";s:15:\"update_deadline\";s:29:\"Successfully update deadline.\";s:26:\"error_updating_expire_date\";s:34:\"Error during updating expire date.\";s:23:\"error_updating_deadline\";s:31:\"Error during updating deadline.\";s:10:\"select_crs\";s:18:\"Search for Courses\";s:10:\"select_grp\";s:17:\"Search for Groups\";s:11:\"select_role\";s:16:\"Search for Roles\";s:10:\"select_org\";s:30:\"Search for Organisational Unit\";s:9:\"label_crs\";s:11:\"Course Name\";s:9:\"label_grp\";s:10:\"Group Name\";s:10:\"label_role\";s:9:\"Role Name\";s:30:\"modal_member_auto_select_title\";s:33:\"Select source for auto assignment\";s:26:\"prg_auto_member_select_crs\";s:7:\"Courses\";s:26:\"prg_auto_member_select_grp\";s:6:\"Groups\";s:27:\"prg_auto_member_select_role\";s:5:\"Roles\";s:21:\"prg_quali_still_valid\";s:25:\"Qualification still valid\";s:19:\"prg_quali_not_valid\";s:23:\"Qualification not valid\";s:15:\"prg_type_byline\";s:56:\"Set a type to use certain custom metadata sets or icons.\";s:17:\"prg_points_byline\";s:134:\"Students get a certain amount of points when they succeed in this programme and need to get this many points in subsequent programmes.\";s:17:\"prg_status_byline\";s:68:\"Use the status to control if this programme is assigned to students.\";s:15:\"prg_description\";s:11:\"Description\";s:8:\"prg_link\";s:4:\"Link\";s:22:\"prg_mail_context_title\";s:32:\"Study Programme: Mail to Members\";s:21:\"prg_mail_context_info\";s:92:\"For the participant e-mails on the member and learning progress screens of a study programme\";s:23:\"prg_additional_settings\";s:19:\"Additional Features\";s:18:\"prg_access_by_orgu\";s:45:\"Access Control by Organisation Unit Positions\";s:25:\"prg_access_by_orgu_byline\";s:96:\"If enabled, additional access control rules can be defined by positions in organisational units.\";s:17:\"msg_fill_required\";s:32:\"Please fill all required fields.\";s:22:\"prg_profile_not_public\";s:34:\"Profile of the user is not public.\";s:27:\"prg_delete_nothing_selected\";s:43:\"Please select at least one entry to delete.\";s:23:\"prg_delete_confirmation\";s:50:\"Do you really want to delete the selected entries?\";s:18:\"prg_confirm_delete\";s:6:\"Delete\";s:10:\"prg_cancel\";s:6:\"Cancel\";s:18:\"prg_delete_failure\";s:14:\"Delete failed.\";s:18:\"prg_delete_success\";s:27:\"Successfuly delete entries.\";s:30:\"prg_delete_single_confirmation\";s:48:\"Do you really want to delete the selected entry?\";s:25:\"prg_delete_single_success\";s:25:\"Successfuly delete entry.\";s:26:\"risky_to_fail_mail_subject\";s:70:\"Reminder, that the deadline for the study program will soon be reached\";s:23:\"risky_to_fail_mail_body\";s:88:\"%s %s,

the deadline for completing the study program \'%s\' will soon be reached.\";s:25:\"prg_update_progress_title\";s:37:\"Set Progress to Failed after Deadline\";s:31:\"prg_update_progress_description\";s:68:\"Set Progress from \'In Progress\' to \'failed\' after Crossing Deadline.\";s:16:\"no_srctype_or_id\";s:29:\"Id and type may not be empty.\";}'); INSERT INTO `lng_modules` VALUES ('prtf','en','a:99:{s:15:\"prtf_portfolios\";s:10:\"Portfolios\";s:18:\"prtf_add_portfolio\";s:13:\"Add Portfolio\";s:19:\"prtf_edit_portfolio\";s:14:\"Edit Portfolio\";s:21:\"prtf_create_portfolio\";s:13:\"Add Portfolio\";s:22:\"prtf_portfolio_created\";s:15:\"Portfolio added\";s:19:\"prtf_set_as_default\";s:17:\"Set As My Profile\";s:27:\"prtf_sure_delete_portfolios\";s:56:\"Are you sure you want to delete the following portfolio?\";s:22:\"prtf_portfolio_deleted\";s:17:\"Portfolio deleted\";s:13:\"prtf_add_page\";s:8:\"Add Page\";s:17:\"prtf_page_created\";s:12:\"Page created\";s:32:\"prtf_sure_delete_portfolio_pages\";s:73:\"Are you sure you want to delete the following portfolio page / blog page?\";s:27:\"prtf_portfolio_page_deleted\";s:30:\"Portfolio / blog page deleted.\";s:21:\"prtf_first_page_title\";s:18:\"Type of first page\";s:27:\"prtf_save_status_and_titles\";s:22:\"Save Status and Titles\";s:22:\"prtf_default_portfolio\";s:10:\"My Profile\";s:18:\"prtf_exercise_info\";s:63:\"This portfolio is part of the assignment \"%s\" of exercise \"%s\".\";s:23:\"prtf_finalize_portfolio\";s:29:\"Finalize and Submit Portfolio\";s:14:\"prtf_finalized\";s:33:\"The portfolio has been submitted.\";s:13:\"prtf_settings\";s:24:\"Portfolio Administration\";s:25:\"prtf_preview_banner_width\";s:12:\"Banner Width\";s:26:\"prtf_preview_banner_height\";s:13:\"Banner Height\";s:19:\"prtf_preview_banner\";s:13:\"Custom Banner\";s:11:\"prtf_banner\";s:6:\"Banner\";s:18:\"prtf_no_blogs_info\";s:90:\"Your \"%s\" does not contain any blogs. Create blogs to use them as part of your portfolios.\";s:13:\"prtf_add_blog\";s:8:\"Add Blog\";s:28:\"prtf_exercise_submitted_info\";s:99:\"You submitted your portfolio on %s. Additionally, you might want to save a copy for your own files.\";s:20:\"prtf_public_comments\";s:15:\"Public Comments\";s:14:\"prtf_copy_page\";s:12:\"Copy Page(s)\";s:23:\"prtf_existing_portfolio\";s:18:\"Existing Portfolio\";s:18:\"prtf_new_portfolio\";s:13:\"New Portfolio\";s:17:\"prtf_pages_copied\";s:27:\"The pages have been copied.\";s:20:\"prtf_profile_picture\";s:23:\"Display Profile Picture\";s:20:\"prtf_use_page_layout\";s:15:\"Use Page Layout\";s:19:\"prtf_tab_portfolios\";s:13:\"My Portfolios\";s:20:\"prtf_tab_other_users\";s:25:\"Portfolios of Other Users\";s:21:\"prtf_unset_as_default\";s:19:\"Unset As My Profile\";s:24:\"prtf_preview_banner_info\";s:32:\"Default size is 1370x100 pixels.\";s:37:\"prtf_set_default_publish_confirmation\";s:132:\"The portfolio needs to be shared at least with all registered users. Should it be visible to the internet without registration, too?\";s:29:\"prtf_unset_default_share_info\";s:85:\"Then changes were saved. Please check the current settings for the portfolio sharing.\";s:15:\"prtf_allow_html\";s:21:\"Allow HTML/Javascript\";s:20:\"prtf_allow_html_info\";s:107:\"Enables users to include HTML and/or Javascript in their portfolio pages. This can lead to security issues.\";s:37:\"prtf_template_editor_placeholder_info\";s:51:\"This placeholder will be replaced in the portfolio.\";s:18:\"prtf_creation_mode\";s:13:\"New Portfolio\";s:27:\"prtf_creation_mode_template\";s:20:\"Create from Template\";s:26:\"prtf_creation_mode_scratch\";s:23:\"Create without Template\";s:32:\"prtf_template_import_blog_create\";s:15:\"Create New Blog\";s:31:\"prtf_template_import_blog_reuse\";s:17:\"Use Existing Blog\";s:32:\"prtf_template_import_blog_ignore\";s:16:\"Remove Blog Page\";s:35:\"prtf_create_template_from_portfolio\";s:9:\"Portfolio\";s:40:\"prtf_create_template_from_portfolio_info\";s:68:\"Select a portfolio to use its content and settings for the template.\";s:34:\"prtf_template_import_quota_failure\";s:81:\"This portfolio template cannot be copied because it would exceed your disk quota.\";s:15:\"prtf_properties\";s:20:\"Portfolio Properties\";s:10:\"prtf_style\";s:15:\"Portfolio Style\";s:31:\"prtf_template_import_new_skills\";s:69:\"If activated, these items will be added to your personal competences.\";s:35:\"prtf_page_element_teaser_my_courses\";s:63:\"The portfolio will display a list of your current courses here.\";s:34:\"prtf_page_element_my_courses_title\";s:18:\"Course Memberships\";s:31:\"prtf_page_element_teaser_skills\";s:54:\"The portfolio will display your competence level here.\";s:38:\"prtf_page_element_teaser_blog_template\";s:66:\"The portfolio will display a blog of your personal resources here.\";s:43:\"prtf_page_element_teaser_consultation_hours\";s:62:\"The portfolio will display a consultation hours calendar here.\";s:33:\"prtf_page_element_teaser_settings\";s:8:\"Settings\";s:33:\"prtf_page_element_my_courses_info\";s:90:\"This is a list of all my courses which are currently online and where I have a membership.\";s:21:\"prtf_allow_my_courses\";s:29:\"Page Element ‘My Courses’\";s:26:\"prtf_allow_my_courses_info\";s:71:\"Enables to include a list of current course memberships in a portfolio.\";s:22:\"prtf_blog_page_created\";s:20:\"Blog has been added.\";s:23:\"prtf_edit_embedded_blog\";s:14:\"Edit Blog \"%s\"\";s:28:\"prtf_back_to_portfolio_owner\";s:14:\"Edit Portfolio\";s:22:\"prtf_manage_portfolios\";s:17:\"Manage Portfolios\";s:31:\"prtf_set_default_publish_global\";s:34:\"Share with unregistered users also\";s:35:\"prtf_set_default_publish_registered\";s:32:\"Share with registered users only\";s:24:\"prtf_shared_offline_info\";s:62:\"A portfolio has to be online to be accessible by shared users.\";s:10:\"pdf_export\";s:10:\"PDF Export\";s:17:\"prtf_add_new_blog\";s:12:\"Add New Blog\";s:22:\"prtf_add_new_blog_info\";s:54:\"The new blog will be added to your personal resources.\";s:22:\"prtf_add_existing_blog\";s:17:\"Use Existing Blog\";s:36:\"prtf_portfolio_created_from_template\";s:142:\"This is the preview of your new portfolio. To add pages and manage the content of the portfolio click on \"Edit Portfolio\" on top of this page.\";s:8:\"prtf_pdf\";s:13:\"Export as PDF\";s:20:\"prtf_print_selection\";s:14:\"Page Selection\";s:14:\"prtf_all_pages\";s:9:\"All Pages\";s:19:\"prtf_selected_pages\";s:14:\"Selected Pages\";s:18:\"prtf_print_options\";s:7:\"Options\";s:11:\"prtf_author\";s:6:\"Author\";s:9:\"prtf_link\";s:4:\"Link\";s:18:\"prtf_date_of_print\";s:13:\"Date of Print\";s:14:\"prtf_signature\";s:15:\"Signature Field\";s:19:\"prtf_signature_info\";s:66:\"Adds a field to the print where the author can sign the portfolio.\";s:19:\"prtf_signature_date\";s:15:\"Date, Signature\";s:13:\"prtf_copy_tab\";s:8:\"Copy Tab\";s:15:\"prtt_title_info\";s:105:\"Please note that this will be also the default title for all portfolios being created form this template.\";s:17:\"prtf_edit_content\";s:12:\"Edit Content\";s:15:\"prtf_set_online\";s:10:\"Set Online\";s:16:\"prtf_set_offline\";s:11:\"Set Offline\";s:18:\"prtf_no_submission\";s:13:\"No Submission\";s:18:\"prtf_submission_on\";s:15:\"Submitted on $1\";s:26:\"prtf_no_offline_share_info\";s:57:\"A portfolio has to be online to be shared by other users.\";s:24:\"prtf_has_been_set_online\";s:30:\"Portfolio has been set online.\";s:20:\"prtf_decl_authorship\";s:25:\"Declaration of Authorship\";s:24:\"prtf_download_submission\";s:19:\"Download Submission\";s:19:\"prtf_page_type_prtf\";s:14:\"Portfolio Page\";s:19:\"prtf_page_type_prtt\";s:23:\"Portfolio Template Page\";}'); INSERT INTO `lng_modules` VALUES ('prtt','en','a:10:{s:8:\"prtt_new\";s:22:\"New Portfolio Template\";s:8:\"prtt_add\";s:25:\"Create Portfolio Template\";s:9:\"prtt_copy\";s:23:\"Copy Portfolio Template\";s:9:\"prtt_edit\";s:23:\"Edit Portfolio Template\";s:27:\"prtt_activation_online_info\";s:73:\"Activate this setting to make the portfolio template accessible to users.\";s:39:\"prtt_activation_limited_visibility_info\";s:84:\"If chosen, the portfolio template is visible even outside of the given availability.\";s:11:\"prtt_import\";s:25:\"Import Portfolio Template\";s:15:\"prtt_properties\";s:29:\"Portfolio Template Properties\";s:10:\"prtt_style\";s:24:\"Portfolio Template Style\";s:22:\"prtt_portfolio_created\";s:24:\"Portfolio Template added\";}'); INSERT INTO `lng_modules` VALUES ('mst','en','a:17:{s:12:\"mst_my_staff\";s:5:\"Staff\";s:14:\"mst_list_users\";s:10:\"Staff List\";s:16:\"mst_list_courses\";s:10:\"Enrolments\";s:21:\"mst_list_certificates\";s:12:\"Certificates\";s:20:\"mst_list_competences\";s:11:\"Competences\";s:17:\"mst_select_course\";s:13:\"Select Course\";s:24:\"mst_please_select_course\";s:23:\"Please select a course.\";s:11:\"mst_opt_all\";s:3:\"All\";s:25:\"mst_memb_status_requested\";s:9:\"Requested\";s:27:\"mst_memb_status_waitinglist\";s:12:\"Waiting List\";s:26:\"mst_memb_status_registered\";s:10:\"Registered\";s:16:\"mst_show_courses\";s:10:\"Enrolments\";s:14:\"mst_courses_of\";s:16:\"Enrolments of %s\";s:21:\"mst_profile_fulfilled\";s:12:\"Not met, yet\";s:25:\"mst_profile_not_fulfilled\";s:9:\"Fulfilled\";s:18:\"mst_cert_issued_on\";s:9:\"Issued On\";s:24:\"mst_download_certificate\";s:20:\"Download Certificate\";}'); INSERT INTO `lng_modules` VALUES ('ps','en','a:94:{s:28:\"ps_participants_list_courses\";s:70:\"Allow Activation of Participant Lists in the Member Gallery of Courses\";s:21:\"ps_agreement_accepted\";s:23:\"User Agreement Accepted\";s:25:\"ps_auto_https_description\";s:97:\"If enabled, ILIAS tries to detect the HTTPs Status by analysing the header value specified below.\";s:25:\"ps_auto_https_header_name\";s:11:\"Header Name\";s:26:\"ps_auto_https_header_value\";s:12:\"Header Value\";s:13:\"ps_auto_https\";s:16:\"Autodetect HTTPS\";s:16:\"ps_btn_add_value\";s:9:\"New Value\";s:16:\"ps_cdf_add_field\";s:14:\"Add User Field\";s:18:\"ps_cdf_added_field\";s:24:\"Added new selection box.\";s:18:\"ps_cdf_delete_sure\";s:48:\"Do you really want to delete these user fields ?\";s:20:\"ps_cdf_deleted_field\";s:13:\"Deleted value\";s:14:\"ps_cdf_deleted\";s:19:\"Deleted user fields\";s:15:\"crs_ps_cdf_info\";s:29:\"Further Course-Specific Data:\";s:15:\"grp_ps_cdf_info\";s:28:\"Further Group-Specific Data:\";s:11:\"ps_cdf_name\";s:4:\"Name\";s:16:\"ps_cdf_no_fields\";s:22:\"No User Fields Defined\";s:20:\"ps_cdf_no_name_given\";s:20:\"Please enter a name.\";s:15:\"ps_cdf_required\";s:14:\"Required Field\";s:17:\"ps_cdf_select_one\";s:18:\"Please select one.\";s:11:\"ps_cdf_type\";s:4:\"Type\";s:12:\"ps_cdf_value\";s:5:\"Value\";s:21:\"ps_cdf_warning_modify\";s:131:\"Attention: Minimum one user has accepted the user agreement. Modifying these course specific fields will reset all user agreements.\";s:18:\"ps_crs_user_fields\";s:27:\"Course-Specific User Fields\";s:18:\"ps_grp_user_fields\";s:26:\"Group-Specific User Fields\";s:37:\"ps_error_message_https_header_missing\";s:95:\"If you enable the automatic https detection you have to provide a header name and header value.\";s:43:\"ps_error_message_invalid_login_max_attempts\";s:46:\"Maximum login attempts may not be less than 0.\";s:41:\"ps_error_message_invalid_password_max_age\";s:44:\"Maximum password age may not be less than 0.\";s:44:\"ps_error_message_invalid_password_max_length\";s:45:\"Maximum password size may not be less than 0.\";s:44:\"ps_error_message_invalid_password_min_length\";s:45:\"Minimum password size may not be less than 0.\";s:38:\"ps_error_message_password_max_less_min\";s:65:\"Maximum password size may not be less than minimum password size.\";s:44:\"ps_error_message_password_min1_because_chars\";s:46:\"Minimum password size may not be less than %s.\";s:52:\"ps_error_message_password_min2_because_chars_numbers\";s:97:\"Minimum password size may not be less than %s if password have to contain characters and numbers.\";s:55:\"ps_error_message_password_min3_because_chars_numbers_sc\";s:117:\"Minimum password size may not be less than %s if password have to contain characters, numbers and special characters.\";s:15:\"ps_export_admin\";s:14:\"Administrators\";s:17:\"ps_export_confirm\";s:39:\"User Confirmation when Entering Courses\";s:23:\"ps_export_confirm_group\";s:38:\"User Confirmation when Entering Groups\";s:16:\"ps_export_course\";s:42:\"Visibility of User Profile Data in Courses\";s:16:\"ps_export_groups\";s:41:\"Visibility of User Profile Data in Groups\";s:14:\"ps_export_data\";s:34:\"Data Types of the Personal Profile\";s:15:\"ps_export_files\";s:12:\"Export Files\";s:16:\"ps_export_member\";s:7:\"Members\";s:18:\"ps_export_settings\";s:15:\"Export Settings\";s:13:\"ps_export_sub\";s:11:\"Subscribers\";s:15:\"ps_export_tutor\";s:6:\"Tutors\";s:19:\"ps_export_user_data\";s:10:\"Data Types\";s:14:\"ps_export_wait\";s:25:\"Users on the Waiting List\";s:13:\"ps_field_type\";s:10:\"Field Type\";s:16:\"ps_files_deleted\";s:20:\"Export Files Deleted\";s:26:\"ps_login_max_attempts_info\";s:313:\" Sets the maximum number of unsuccessful attempts to login. After the maximum number of unsuccessful attempts is exceeded, the respective user will be set to \'inactive\' and would require re-activation in User Management. Leave the field empty to disable this option and ILIAS will not count failed login attempts.\";s:21:\"ps_login_max_attempts\";s:22:\"Maximum Login Attempts\";s:15:\"ps_not_accepted\";s:12:\"Not Accepted\";s:41:\"ps_passwd_policy_changed_force_user_reset\";s:179:\"The changes were saved successfully. You just modified at least one password policy setting. Should local users be forced to change their password after the next successful login?\";s:45:\"ps_passwd_policy_change_force_user_reset_succ\";s:43:\"The changes have been successfully applied.\";s:46:\"ps_password_change_on_first_login_enabled_info\";s:100:\"If enabled, users have to change their password on first login (except users registered themselves).\";s:41:\"ps_password_change_on_first_login_enabled\";s:30:\"Change Password on First Login\";s:42:\"ps_password_chars_and_numbers_enabled_info\";s:61:\"If enabled, passwords have to contain characters and numbers.\";s:37:\"ps_password_chars_and_numbers_enabled\";s:28:\"Force Characters and Numbers\";s:24:\"ps_password_max_age_info\";s:83:\"Sets the maximum age of passwords in days. Set this to 0 for disabling this option.\";s:19:\"ps_password_max_age\";s:20:\"Maximum Password Age\";s:27:\"ps_password_max_length_info\";s:84:\"Sets the maximum size of account passwords. Set this to 0 for disabling this option.\";s:22:\"ps_password_max_length\";s:21:\"Maximum Password Size\";s:27:\"ps_password_min_length_info\";s:300:\"Sets the minimum size of account passwords. If set to 0, the passwords anyway have to have a minimum size of 1. If the required length is altered, the new requirement will be applied only to those accounts that were created or changed after the new length was set. Existing accounts are not affected.\";s:22:\"ps_password_min_length\";s:21:\"Minimum Password Size\";s:38:\"ps_password_special_chars_enabled_info\";s:57:\"If enabled, passwords have to contain special characters.\";s:33:\"ps_password_special_chars_enabled\";s:24:\"Force Special Characters\";s:17:\"ps_perform_export\";s:16:\"Start CSV-Export\";s:35:\"ps_prevent_simultaneous_logins_info\";s:96:\"If enabled, simultaneous logins with the same account from different computers are not possible.\";s:30:\"ps_prevent_simultaneous_logins\";s:27:\"Prevent Simultaneous Logins\";s:21:\"ps_privacy_protection\";s:16:\"Privacy Settings\";s:17:\"ps_profile_export\";s:31:\"Protection of User Profile Data\";s:20:\"crs_ps_required_info\";s:77:\"Further Course-Specific fields are required for accessing the course content.\";s:20:\"grp_ps_required_info\";s:75:\"Further Group-Specific fields are required for accessing the group content.\";s:22:\"ps_security_protection\";s:17:\"Security Settings\";s:13:\"ps_select_one\";s:29:\"Please select one export file\";s:18:\"ps_show_crs_access\";s:44:\"Show last access time of course participants\";s:18:\"ps_show_grp_access\";s:43:\"Show last access time of group participants\";s:7:\"ps_size\";s:10:\"Files Size\";s:19:\"ps_type_select_long\";s:28:\"Selection Box (Fixed Values)\";s:14:\"ps_type_select\";s:12:\"Select Field\";s:12:\"ps_type_text\";s:10:\"Text Field\";s:16:\"ps_type_txt_long\";s:28:\"Text Field (Optional Values)\";s:17:\"ps_user_selection\";s:22:\"Participants Selection\";s:17:\"ps_warning_modify\";s:117:\"Attention: Minimum one user has accepted the user agreement. Modifying these settings will reset all user agreements.\";s:12:\"show_privacy\";s:7:\"Privacy\";s:13:\"show_security\";s:8:\"Security\";s:8:\"rbac_log\";s:14:\"Permission Log\";s:13:\"rbac_log_info\";s:51:\"Enable logging of all changes to object permissions\";s:12:\"rbac_log_age\";s:16:\"Keep Log Entries\";s:17:\"rbac_log_age_info\";s:35:\"Maximum age of log entries in month\";s:18:\"ps_cdf_data_fields\";s:21:\"Available User Fields\";s:17:\"ps_cdf_edit_field\";s:15:\"Edit Data Field\";s:15:\"ps_export_excel\";s:18:\"Start Excel Export\";s:20:\"ps_password_settings\";s:17:\"Password Settings\";s:18:\"cdf_edited_by_self\";s:11:\"by the User\";}'); INSERT INTO `lng_modules` VALUES ('pwassist','en','a:14:{s:19:\"password_assistance\";s:19:\"Password Assistance\";s:20:\"pwassist_enter_email\";s:348:\"Please enter an e-mail address and submit the form. ILIAS will send an e-mail to that address. The e-mail contains all user names which have registered this e-mail address. Choose a suitable username and use the password service to retrieve a new password. If you do not retrieve any e-mail by this service please contact your course admin or %1$s.\";s:33:\"pwassist_enter_username_and_email\";s:376:\"Enter a username and the associated e-mail address in the fields shown below. ILIAS will send a message to that e-mail address. The message contains an address for a web page, where you can enter a new password for the user account. In case you are unable to assign a password to your user account using this form, contact your course administration or send an e-mail to %1$s.\";s:40:\"pwassist_enter_username_and_new_password\";s:60:\"Enter the username and the new password in the fields below.\";s:24:\"pwassist_login_not_match\";s:137:\"Please enter another username. The username you have entered does not match the username for which you had asked for password assistance.\";s:18:\"pwassist_mail_body\";s:1125:\"Register a new password for your user account: %1$s This message has been generated automatically by the ILIAS server %2$s You (or someone at %3$s) has asked for password assistance for the user account \"%4$s\". Please check carefully the conditions listed below, and proceed accordingly: - If you have used the password assistance form on the ILIAS server by accident: Delete this mail. - If you are certain, that you never asked for password assistance at this ILIAS server: Please contact %5$s. - If you asked for password assistance, please proceed as follows: 1. Open your browser. 2. Enter the following address in your browser: %6$s Important: The address is a single line. If you see this address split into multiple lines, then your e-mail program has inserted these line breaks. 3. On the web page shown by your browser, enter a new password for your user account. Please note, that for security reasons, you can perform the three steps above only exactly once and for a limited time only. Afterwards the address becomes invalid, and you have to use the password assistance page on the ILIAS server again.\";s:18:\"pwassist_mail_sent\";s:60:\"A message has been sent to %1$s. Please check your mail box.\";s:26:\"pwassist_mail_sent_generic\";s:90:\"A message has been sent to the email address defined in ILIAS. Please check your mail box.\";s:21:\"pwassist_mail_subject\";s:25:\"ILIAS Password Assistance\";s:26:\"pwassist_password_assigned\";s:59:\"The password has been successfully assigned to user \"%1$s\".\";s:24:\"pwassist_session_expired\";s:260:\"Please fill in this form again. Your password assistance session has expired. This may have happened, because you tried to use the link that has been sent by e-mail to you more than once, or because too much time has passed since the link has been sent to you.\";s:27:\"pwassist_username_mail_body\";s:880:\"These are the active username found for the given e-mail address: %s This message has been created automatically by the following ILIAS Server: %s You (or somebody with IP %s) have requested support for forgotten user names for the e-mail address \'%s\'. Please check the following and act as suggested:: -You have requested this e-mail by accident: Delete this e-mail. -You are sure, that you never requested this e-mail: Please contact %s. - If you requested this e-mail, please proceed as follows:: 1. Start your internet browser. 2. Enter the following url: %s Important: The address is a single line. If you see this address split into multiple lines, then your e-mail program has inserted these line breaks. 3. Your Browser now shows the Password-Service. Use this page together with one of the usernames and the according e-mail address to retrieve a new password.\";s:27:\"pwassist_disabled_no_access\";s:103:\"Password assistance is not enabled. Please contact the system administration for further assistance: %s\";s:27:\"unassist_disabled_no_access\";s:103:\"Username assistance is not enabled. Please contact the system administration for further assistance: %s\";}'); INSERT INTO `lng_modules` VALUES ('rating','en','a:25:{s:18:\"rating_your_rating\";s:11:\"Your Rating\";s:14:\"rat_one_rating\";s:10:\"One Rating\";s:17:\"rat_not_rated_yet\";s:13:\"Not Rated Yet\";s:14:\"rat_nr_ratings\";s:10:\"%s Ratings\";s:17:\"rating_categories\";s:17:\"Rating Categories\";s:19:\"rating_add_category\";s:12:\"Add Category\";s:22:\"rating_category_create\";s:15:\"Create Category\";s:19:\"rating_category_add\";s:3:\"Add\";s:23:\"rating_category_created\";s:17:\"Category created.\";s:20:\"rating_category_edit\";s:13:\"Edit Category\";s:22:\"rating_category_update\";s:4:\"Save\";s:23:\"rating_category_updated\";s:15:\"Category saved.\";s:23:\"rating_update_positions\";s:10:\"Save Order\";s:27:\"rating_category_delete_sure\";s:109:\"Are you sure you want to delete the following rating categories? All ratings for that category will be lost.\";s:23:\"rating_category_deleted\";s:17:\"Category deleted.\";s:21:\"rating_overlay_submit\";s:13:\"Submit Rating\";s:19:\"rating_number_votes\";s:10:\"%s Ratings\";s:22:\"rating_export_category\";s:8:\"Category\";s:18:\"rating_export_date\";s:4:\"Date\";s:20:\"rating_export_rating\";s:6:\"Rating\";s:23:\"rating_new_objects_auto\";s:21:\"Default Object Rating\";s:28:\"rating_new_objects_auto_info\";s:73:\"Rating is activated by default for new files, learning modules and wikis.\";s:22:\"rating_activate_rating\";s:13:\"Enable Rating\";s:27:\"rating_activate_rating_info\";s:39:\"if enabled, users can rate this object.\";s:13:\"rating_remove\";s:13:\"Remove Rating\";}'); -INSERT INTO `lng_modules` VALUES ('rbac','en','a:851:{s:32:\"rbac_form_copy_roles_adjust_type\";s:28:\"Kind of Adapting Permissions\";s:36:\"rbac_form_copy_roles_adjust_type_add\";s:15:\"Add permissions\";s:38:\"rbac_form_copy_roles_adjust_type_clone\";s:16:\"Copy permissions\";s:39:\"rbac_form_copy_roles_adjust_type_remove\";s:18:\"Remove permissions\";s:41:\"rbac_form_copy_roles_adjust_type_add_info\";s:146:\"Adds SELECTED permissions of the selected role or role template to the default permissions of the target role. Unselected permissions are ignored.\";s:43:\"rbac_form_copy_roles_adjust_type_clone_info\";s:184:\"All permissions of the selected role or role template overwrite all default permissions of the target role. This applies to selected and unselected permissions in the template or role.\";s:44:\"rbac_form_copy_roles_adjust_type_remove_info\";s:119:\"Removes the SELECTED permissions of the selected role or role template from the default permissions of the target role.\";s:34:\"rbac_form_copy_roles_adjust_button\";s:17:\"Adapt Permissions\";s:31:\"rbac_form_copy_roles_ce_add_yes\";s:44:\"Add selected permissions to existing objects\";s:30:\"rbac_form_copy_roles_ce_add_no\";s:31:\"Only adjust default permissions\";s:36:\"rbac_form_copy_roles_ce_add_yes_info\";s:130:\"Both the existing permission defaults of the target role and the permission settings of existing objects are extended accordingly.\";s:35:\"rbac_form_copy_roles_ce_add_no_info\";s:120:\"Only the existing default permission of the target role are extended. Permissions of existing objects remain unaffected.\";s:33:\"rbac_form_copy_roles_ce_clone_yes\";s:23:\"Change existing objects\";s:32:\"rbac_form_copy_roles_ce_clone_no\";s:29:\"DO NOT adapt existing objects\";s:38:\"rbac_form_copy_roles_ce_clone_yes_info\";s:160:\"Existing permission settings are overwritten accordingly and are applied in their entirety to all existing objects with all selected and unselected permissions.\";s:37:\"rbac_form_copy_roles_ce_clone_no_info\";s:141:\"Existing default permissions of the target role are overwritten. But the permission settings of the already existing objects are not changed.\";s:34:\"rbac_form_copy_roles_ce_remove_yes\";s:47:\"Reduce existing objects by selected permissions\";s:33:\"rbac_form_copy_roles_ce_remove_no\";s:31:\"Reduce only default permissions\";s:39:\"rbac_form_copy_roles_ce_remove_yes_info\";s:138:\"The selected permissions are removed from the permission defaults of the target role and from the permission settings of existing objects.\";s:38:\"rbac_form_copy_roles_ce_remove_no_info\";s:148:\"Selected permissions are only removed from the default permissions of the target role. The permission settings of existing objects are not adjusted.\";s:19:\"il_sess_participant\";s:19:\"Session Participant\";s:21:\"il_sess_status_closed\";s:30:\"Non-Participant Closed Session\";s:29:\"positions_override_operations\";s:24:\"Override global Settings\";s:13:\"amend_grading\";s:23:\"Amend finalized grading\";s:20:\"accs_edit_permission\";s:73:\"User can change permissions of Accessibility Settings in Administration.\";s:9:\"accs_read\";s:65:\"User has read access to Accessibility Settings in Administration.\";s:12:\"accs_visible\";s:53:\"Accessibility Settings are visible in Administration.\";s:10:\"accs_write\";s:55:\"User can edit Accessibility Settings in Administration.\";s:19:\"adm_edit_permission\";s:66:\"User can change permissions of General Settings in Administration.\";s:8:\"adm_read\";s:59:\"User has read access to General Settings in Administration.\";s:11:\"adm_visible\";s:47:\"General Settings are visible in Administration.\";s:9:\"adm_write\";s:49:\"User can edit General Settings in Administration.\";s:24:\"adopt_perm_from_template\";s:24:\"Copy Permission Settings\";s:20:\"adve_edit_permission\";s:61:\"User can change permission settings of Editing administration\";s:9:\"adve_read\";s:46:\"User has read access to Editing Administration\";s:12:\"adve_visible\";s:33:\"Editing Administration is visible\";s:10:\"adve_write\";s:48:\"User can edit settings of Editing Administration\";s:20:\"assf_edit_permission\";s:73:\"User can change permission settings of Test and Assessment administration\";s:9:\"assf_read\";s:55:\"User has read access Test and Assessment Administration\";s:12:\"assf_visible\";s:45:\"Test and Assessment administration is visible\";s:10:\"assf_write\";s:60:\"User can edit settings of Test and Assessment Administration\";s:20:\"auth_edit_permission\";s:85:\"User can change permission settings of Authentication and Registration administration\";s:9:\"auth_read\";s:73:\"User has read access to administration of Authentication and Registration\";s:12:\"auth_visible\";s:60:\"Administration of Authentication and Registration is visible\";s:10:\"auth_write\";s:58:\"User can edit settings for Authentication and Registration\";s:26:\"cat_cat_administrate_users\";s:69:\"User can create and administrate local user accounts in this category\";s:8:\"cat_copy\";s:22:\"User can copy category\";s:10:\"cat_delete\";s:32:\"User can move or delete category\";s:19:\"cat_edit_permission\";s:35:\"User can change permission settings\";s:14:\"cat_read_users\";s:58:\"User can read local user accounts created in this category\";s:8:\"cat_read\";s:32:\"User has read access to category\";s:11:\"cat_visible\";s:19:\"Category is visible\";s:9:\"cat_write\";s:53:\"User can edit settings of category and manage content\";s:20:\"cert_edit_permission\";s:66:\"User can change permission settings of Certificates administration\";s:9:\"cert_read\";s:51:\"User has read access to Certificates Administration\";s:12:\"cert_visible\";s:38:\"Certificates Administration is visible\";s:10:\"cert_write\";s:53:\"User can edit settings in Certificates Administration\";s:32:\"change_existing_object_type_desc\";s:78:\"This will also change the permissions of already existing objects of that type\";s:28:\"change_existing_objects_desc\";s:215:\"The permission settings of this role will be adopted to ALL existing objects. If you want to change permissions only for specific object types please click the checkboxes to the right of the appropriate object type.\";s:23:\"change_existing_objects\";s:23:\"Change Existing Objects\";s:29:\"change_existing_prefix_single\";s:6:\"Change\";s:22:\"change_existing_prefix\";s:15:\"Change Existing\";s:29:\"change_existing_suffix_single\";s:6:\" \";s:22:\"change_existing_suffix\";s:6:\" \";s:8:\"crs_copy\";s:20:\"User can copy course\";s:16:\"rbac_create_fold\";s:13:\"Create Folder\";s:10:\"crs_delete\";s:30:\"User can move or delete course\";s:26:\"crs_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"crs_edit_permission\";s:35:\"User can change permission settings\";s:8:\"crs_join\";s:20:\"User can join course\";s:9:\"crs_leave\";s:32:\"User can unsubscribe from course\";s:8:\"crs_read\";s:30:\"User has read access to course\";s:11:\"crs_visible\";s:17:\"Course is visible\";s:9:\"crs_write\";s:48:\"User can edit course settings and manage content\";s:19:\"edit_roleassignment\";s:20:\"Edit role assignment\";s:8:\"exc_copy\";s:22:\"User can copy exercise\";s:10:\"exc_delete\";s:32:\"User can move or delete exercise\";s:26:\"exc_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"exc_edit_permission\";s:35:\"User can change permission settings\";s:8:\"exc_read\";s:32:\"User can participate at exercise\";s:11:\"exc_visible\";s:19:\"Exercise is visible\";s:9:\"exc_write\";s:50:\"User can edit settings and assignments of exercise\";s:20:\"extt_edit_permission\";s:74:\"User can change permission settings of Third Party Software administration\";s:9:\"extt_read\";s:62:\"User has read access to administration of Third Party Software\";s:12:\"extt_visible\";s:49:\"Administration of Third Party Software is visible\";s:10:\"extt_write\";s:46:\"User can edit settings of Third Party Software\";s:11:\"feed_delete\";s:32:\"User can move or delete web feed\";s:20:\"feed_edit_permission\";s:35:\"User can change permission settings\";s:9:\"feed_read\";s:33:\"User can read content of web feed\";s:10:\"feed_write\";s:31:\"User can edit web feed settings\";s:9:\"file_copy\";s:18:\"User can copy file\";s:11:\"file_delete\";s:28:\"User can move or delete file\";s:20:\"file_edit_permission\";s:35:\"User can change permission settings\";s:9:\"file_read\";s:22:\"User can download file\";s:12:\"file_visible\";s:15:\"File is visible\";s:10:\"file_write\";s:58:\"User can edit file settings and upload new version of file\";s:9:\"fold_copy\";s:20:\"User can copy folder\";s:11:\"fold_delete\";s:30:\"User can move or delete folder\";s:27:\"fold_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:20:\"fold_edit_permission\";s:35:\"User can change permission settings\";s:9:\"fold_read\";s:30:\"User has read access to folder\";s:12:\"fold_visible\";s:17:\"Folder is visible\";s:10:\"fold_write\";s:51:\"User can edit settings of folder and manage content\";s:13:\"frm_add_reply\";s:28:\"Users can reply to a posting\";s:14:\"frm_add_thread\";s:25:\"User can add a new thread\";s:8:\"frm_copy\";s:19:\"User can copy forum\";s:10:\"frm_delete\";s:29:\"User can move or delete forum\";s:19:\"frm_edit_permission\";s:35:\"User can change permission settings\";s:16:\"frm_moderate_frm\";s:41:\"User can edit, censor and delete postings\";s:8:\"frm_read\";s:27:\"User can read forum content\";s:11:\"frm_visible\";s:16:\"Forum is visible\";s:9:\"frm_write\";s:43:\"User can edit forum settings and moderators\";s:8:\"glo_copy\";s:22:\"User can copy glossary\";s:10:\"glo_delete\";s:32:\"User can move or delete glossary\";s:19:\"glo_edit_permission\";s:35:\"User can change permission settings\";s:8:\"glo_read\";s:30:\"User can read glossary content\";s:11:\"glo_visible\";s:19:\"Glossary is visible\";s:9:\"glo_write\";s:46:\"User can edit content and settings of glossary\";s:8:\"grp_copy\";s:19:\"User can copy group\";s:10:\"grp_delete\";s:29:\"User can move or delete group\";s:26:\"grp_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"grp_edit_permission\";s:35:\"User can change permission settings\";s:8:\"grp_join\";s:19:\"User can join group\";s:9:\"grp_leave\";s:31:\"User can unsubscribe from group\";s:8:\"grp_read\";s:29:\"User has read access to group\";s:11:\"grp_visible\";s:16:\"Group is visible\";s:9:\"grp_write\";s:47:\"User can edit group settings and manage content\";s:9:\"htlm_copy\";s:34:\"User can copy HTML learning module\";s:11:\"htlm_delete\";s:44:\"User can move or delete HTML learning module\";s:27:\"htlm_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:20:\"htlm_edit_permission\";s:35:\"User can change permission settings\";s:9:\"htlm_read\";s:34:\"User can read HTML learning module\";s:12:\"htlm_visible\";s:31:\"HTML learning module is visible\";s:10:\"htlm_write\";s:58:\"User can edit content and settings of HTML learning module\";s:7:\"lm_copy\";s:35:\"User can copy ILIAS learning module\";s:9:\"lm_delete\";s:45:\"User can move or delete ILIAS learning module\";s:25:\"lm_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:18:\"lm_edit_permission\";s:35:\"User can change permission settings\";s:7:\"lm_read\";s:35:\"User can read ILIAS learning module\";s:10:\"lm_visible\";s:32:\"ILIAS Learning Module is visible\";s:8:\"lm_write\";s:59:\"User can edit content and settings of ILIAS learning module\";s:20:\"lngf_edit_permission\";s:62:\"User can change permission settings of Language administration\";s:9:\"lngf_read\";s:47:\"User has read access to Language administration\";s:12:\"lngf_visible\";s:34:\"Language administration is visible\";s:10:\"lngf_write\";s:87:\"User can edit settings in Language administration and use extended language maintenance\";s:20:\"lrss_edit_permission\";s:72:\"User can change permission settings of Learning Resources administration\";s:9:\"lrss_read\";s:51:\"Read access to administration of Learning Resources\";s:12:\"lrss_visible\";s:47:\"Administration of Learning Resources is visible\";s:10:\"lrss_write\";s:62:\"User can edit settings of Learning Resources in administration\";s:9:\"mail_read\";s:43:\"User has read access to Mail administration\";s:14:\"mail_smtp_mail\";s:52:\"User can send e-mails per SMTP to external addresses\";s:12:\"mail_visible\";s:30:\"Mail administration is visible\";s:10:\"mail_write\";s:45:\"User can edit settings in Mail administration\";s:9:\"mcst_copy\";s:23:\"User can copy mediacast\";s:11:\"mcst_delete\";s:33:\"User can move or delete mediacast\";s:20:\"mcst_edit_permission\";s:35:\"User can change permission settings\";s:9:\"mcst_read\";s:23:\"User can read mediacast\";s:12:\"mcst_visible\";s:20:\"Mediacast is visible\";s:10:\"mcst_write\";s:47:\"User can edit content and settings of mediacast\";s:10:\"mep_delete\";s:34:\"User can move or delete media pool\";s:19:\"mep_edit_permission\";s:35:\"User can change permission settings\";s:8:\"mep_read\";s:62:\"User has read access to media pool and can reuse media objects\";s:11:\"mep_visible\";s:21:\"Media pool is visible\";s:9:\"mep_write\";s:48:\"User can edit content and settings of media pool\";s:20:\"mobs_edit_permission\";s:73:\"User can change permission settings in Media Objects/Pools administration\";s:9:\"mobs_read\";s:58:\"User has read access to Media Objects/Pools administration\";s:12:\"mobs_visible\";s:45:\"Media Objects/Pools administration is visible\";s:10:\"mobs_write\";s:60:\"User can edit settings in Media Objects/Pools administration\";s:20:\"nwss_edit_permission\";s:72:\"User can change permission settings in News and Web Feeds administration\";s:9:\"nwss_read\";s:56:\"User has read access to ews and Web Feeds administration\";s:12:\"nwss_visible\";s:44:\"News and Web Feeds administration is visible\";s:10:\"nwss_write\";s:59:\"User can edit settings in News and Web Feeds administration\";s:18:\"ps_edit_permission\";s:70:\"User can change permission settings of Privacy/Security administration\";s:21:\"ps_export_member_data\";s:49:\"User can export member data in courses and groups\";s:7:\"ps_read\";s:55:\"User has read access to Privacy/Security administration\";s:10:\"ps_visible\";s:42:\"Privacy/Security administration is visible\";s:8:\"ps_write\";s:57:\"User can edit settings in Privacy/Security administration\";s:8:\"qpl_copy\";s:37:\"User can copy question pool for tests\";s:10:\"qpl_delete\";s:37:\"User can move or delete question pool\";s:19:\"qpl_edit_permission\";s:35:\"User can change permission settings\";s:8:\"qpl_read\";s:61:\"User can read test questions in pool and insert them in tests\";s:11:\"qpl_visible\";s:24:\"Question pool is visible\";s:9:\"qpl_write\";s:58:\"User can edit test questions and settings of question pool\";s:15:\"rbac_create_cat\";s:17:\"Create Categories\";s:20:\"root_edit_permission\";s:35:\"User can change permission settings\";s:9:\"root_read\";s:48:\"User has read access to Repository - Home\";s:12:\"root_visible\";s:35:\"Repository - Home is visible\";s:10:\"root_write\";s:69:\"User can edit settings of Repository - Home and manage content\";s:9:\"sahs_copy\";s:35:\"User can copy SCORM learning module\";s:11:\"sahs_delete\";s:45:\"User can move or delete SCORM learning module\";s:27:\"sahs_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:20:\"sahs_edit_permission\";s:35:\"User can change permission settings\";s:9:\"sahs_read\";s:35:\"User can read SCORM learning module\";s:12:\"sahs_visible\";s:32:\"SCORM learning module is visible\";s:10:\"sahs_write\";s:59:\"User can edit content and settings of SCORM learning module\";s:20:\"seas_edit_permission\";s:60:\"User can change permission settings or Search administration\";s:9:\"seas_read\";s:45:\"User has read access to Search administration\";s:11:\"seas_search\";s:39:\"User can use the global search in ILIAS\";s:12:\"seas_visible\";s:32:\"Search administration is visible\";s:10:\"seas_write\";s:38:\"Edit settings in Search administration\";s:9:\"sess_copy\";s:21:\"User can copy session\";s:8:\"spl_copy\";s:39:\"User can copy question pool for surveys\";s:10:\"spl_delete\";s:37:\"User can move or delete question pool\";s:19:\"spl_edit_permission\";s:35:\"User can change permission settings\";s:8:\"spl_read\";s:64:\"User can read survey questions in pool and insert them in survey\";s:11:\"spl_visible\";s:24:\"Question pool is visible\";s:9:\"spl_write\";s:60:\"User can edit survey questions and settings of question pool\";s:20:\"stys_edit_permission\";s:71:\"User can change permission settings of Layout and Styles administration\";s:9:\"stys_read\";s:56:\"User has read access to Layout and Styles administration\";s:12:\"stys_visible\";s:43:\"Layout and Styles administration is visible\";s:8:\"svy_copy\";s:20:\"User can copy survey\";s:10:\"svy_delete\";s:30:\"User can move or delete survey\";s:19:\"svy_edit_permission\";s:35:\"User can change permission settings\";s:10:\"svy_invite\";s:34:\"User can invite others to a survey\";s:8:\"svy_read\";s:32:\"User can participate at a survey\";s:11:\"svy_visible\";s:17:\"Survey is visible\";s:9:\"svy_write\";s:44:\"User can edit content and settings of survey\";s:20:\"tags_edit_permission\";s:61:\"User can change permission settings in Tagging administration\";s:9:\"tags_read\";s:46:\"User has read access to Tagging administration\";s:12:\"tags_visible\";s:33:\"Tagging administration is visible\";s:10:\"tags_write\";s:48:\"User can edit settings in Tagging administration\";s:11:\"trac_delete\";s:29:\"User can delete tracking data\";s:20:\"trac_edit_permission\";s:77:\"Change permission settings in Statistics and Learning Progress administration\";s:9:\"trac_read\";s:71:\"User has read access to Statistics and Learning Progress administration\";s:12:\"trac_visible\";s:58:\"Statistics and Learning Progress administration is visible\";s:8:\"tst_copy\";s:18:\"User can copy test\";s:10:\"tst_delete\";s:28:\"User can move or delete test\";s:26:\"tst_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"tst_edit_permission\";s:35:\"User can change permission settings\";s:8:\"tst_read\";s:25:\"User can perform the test\";s:15:\"tst_tst_results\";s:41:\"User has access to test results of others\";s:11:\"tst_visible\";s:15:\"Test is visible\";s:9:\"tst_write\";s:42:\"User can edit content and settings of test\";s:11:\"usrf_delete\";s:29:\"User can delete user accounts\";s:20:\"usrf_edit_permission\";s:58:\"User can change permission settings in User administration\";s:24:\"usrf_edit_roleassignment\";s:47:\"User can change role assignment of user account\";s:23:\"usrf_push_desktop_items\";s:60:\"User is allowed to add recommended content for role members.\";s:15:\"usrf_read_users\";s:66:\"User has read access to local user accounts (local administrators)\";s:9:\"usrf_read\";s:43:\"User has read access to User administration\";s:12:\"usrf_visible\";s:30:\"User administration is visible\";s:10:\"usrf_write\";s:36:\"Edit settings in User administration\";s:9:\"webr_copy\";s:21:\"User can copy weblink\";s:11:\"webr_delete\";s:31:\"User can move or delete weblink\";s:20:\"webr_edit_permission\";s:35:\"User can change permission settings\";s:9:\"webr_read\";s:30:\"User can read and use weblinks\";s:12:\"webr_visible\";s:18:\"Weblink is visible\";s:10:\"webr_write\";s:34:\"User can edit settings of weblinks\";s:9:\"wiki_copy\";s:18:\"User can copy wiki\";s:11:\"wiki_delete\";s:28:\"User can move or delete wiki\";s:17:\"wiki_edit_content\";s:35:\"User can create and edit wiki pages\";s:20:\"wiki_edit_permission\";s:35:\"User can change permission settings\";s:9:\"wiki_read\";s:26:\"User can read wiki content\";s:12:\"wiki_visible\";s:15:\"Wiki is visible\";s:10:\"wiki_write\";s:30:\"User can edit settings of wiki\";s:24:\"upload_blacklisted_files\";s:16:\"Bypass blacklist\";s:29:\"facs_upload_blacklisted_files\";s:43:\"Upload indexed file types despite blacklist\";s:15:\"cals_edit_event\";s:61:\"User can create and edit public calendars and events in ILIAS\";s:20:\"cals_edit_permission\";s:63:\"User can change permission settings for Calendar administration\";s:9:\"cals_read\";s:47:\"User has read access to Calendar Administration\";s:12:\"cals_visible\";s:34:\"Calendar Administration is visible\";s:10:\"cals_write\";s:49:\"User can edit settings of Calendar Administration\";s:9:\"catr_copy\";s:27:\"User can copy category link\";s:11:\"catr_delete\";s:37:\"User can move or delete category link\";s:20:\"catr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"catr_visible\";s:24:\"Category link is visible\";s:10:\"catr_write\";s:39:\"User can edit settings of category link\";s:20:\"cmps_edit_permission\";s:83:\"User can change permission settings of Plugins, Modules and Services administration\";s:9:\"cmps_read\";s:71:\"User has read access to administration of Plugins, Modules and Services\";s:12:\"cmps_visible\";s:67:\"Administration of Plugins, Modules and Services settings is visible\";s:10:\"cmps_write\";s:55:\"User can edit settings of Plugins, Modules and Services\";s:16:\"rbac_create_sess\";s:14:\"Create Session\";s:14:\"crs_edit_event\";s:20:\"Edit Calendar Events\";s:9:\"crsr_copy\";s:25:\"User can copy course link\";s:11:\"crsr_delete\";s:35:\"User can move or delete course link\";s:20:\"crsr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"crsr_visible\";s:22:\"Course link is visible\";s:10:\"crsr_write\";s:37:\"User can edit settings of course link\";s:22:\"edit_learning_progress\";s:22:\"Edit Learning Progress\";s:20:\"facs_edit_permission\";s:71:\"User can change permission settings of Files and Folders administration\";s:9:\"facs_read\";s:59:\"User has read access to administration of Files and Folders\";s:12:\"facs_visible\";s:46:\"Administration of Files and Folders is visible\";s:10:\"facs_write\";s:61:\"User can edit settings in administration of Files and Folders\";s:16:\"filter_all_roles\";s:33:\"Show all roles of current context\";s:19:\"filter_global_roles\";s:22:\"Show only global roles\";s:25:\"filter_local_roles_object\";s:46:\"Show only local roles defined at this position\";s:18:\"filter_local_roles\";s:40:\"Show only local roles of current context\";s:25:\"filter_roles_local_policy\";s:53:\"Show only roles using a local policy at this position\";s:14:\"grp_edit_event\";s:20:\"Edit Calendar Events\";s:22:\"info_user_view_changed\";s:17:\"User view changed\";s:5:\"leave\";s:11:\"Unsubscribe\";s:20:\"mcts_edit_permission\";s:63:\"User can change permission settings in Mediacast administration\";s:9:\"mcts_read\";s:48:\"User has read access to Mediacast administration\";s:12:\"mcts_visible\";s:35:\"Mediacast administration is visible\";s:10:\"mcts_write\";s:50:\"User can edit settings in Mediacast administration\";s:19:\"mds_edit_permission\";s:62:\"User can change permission settings in Metadata administration\";s:8:\"mds_read\";s:47:\"User has read access to Metadata administration\";s:11:\"mds_visible\";s:34:\"Metadata administration is visible\";s:9:\"mds_write\";s:49:\"User can edit settings in Metadata administration\";s:20:\"msg_no_roles_of_type\";s:47:\"No Roles available with selected filter setting\";s:11:\"mme_visible\";s:38:\"Administration of Main Menu is visible\";s:8:\"mme_read\";s:51:\"User has read access to administration of Main Menu\";s:9:\"mme_write\";s:50:\"User can edit settings of Main Menu administration\";s:19:\"mme_edit_permission\";s:63:\"User can change permission settings of Main Menu administration\";s:20:\"dshs_edit_permission\";s:63:\"User can change permission settings of Dashboard administration\";s:9:\"dshs_read\";s:48:\"User has read access to Dashboard administration\";s:12:\"dshs_visible\";s:35:\"Dashboard administration is visible\";s:10:\"dshs_write\";s:41:\"Edit settings of Dashboard administration\";s:22:\"perm_class_create_desc\";s:69:\"Determine which object types may be created under the current object.\";s:17:\"perm_class_create\";s:18:\"Create new Objects\";s:22:\"perm_class_object_desc\";s:27:\"Object-specific operations.\";s:17:\"perm_class_object\";s:18:\"Special Operations\";s:20:\"perm_local_role_desc\";s:83:\"This role is locally defined at the current object and correspond to a local policy\";s:15:\"perm_local_role\";s:10:\"Local Role\";s:26:\"perm_use_local_policy_desc\";s:106:\"If local policy is activated, you may define different default permission settings for the current object.\";s:21:\"perm_use_local_policy\";s:16:\"Use local policy\";s:32:\"rbac_change_existing_confirm_tbl\";s:42:\"Settings for ‘Change Existing Objects’\";s:31:\"rbac_delete_local_policies_info\";s:105:\"If activated, all local policies will be deleted. The object permissions will be rewritten and protected.\";s:26:\"rbac_delete_local_policies\";s:21:\"Delete Local Policies\";s:16:\"rbac_delete_role\";s:11:\"Delete Role\";s:29:\"rbac_keep_local_policies_info\";s:131:\"Choose this mode for keeping all local policies. The object permissions will be adapted to these policies and afterwards protected.\";s:24:\"rbac_keep_local_policies\";s:19:\"Keep Local Policies\";s:19:\"rbac_local_policies\";s:14:\"Local Policies\";s:20:\"rbac_role_delete_qst\";s:122:\"Are you sure you want to delete the following role?
All permissions granted by this role will be deleted permanently.\";s:21:\"rbac_role_delete_self\";s:143:\"Attention: You are assigned to this role. If you continue this delete operation, you may loose access to some ILIAS materials.\";s:22:\"rbac_role_exists_alert\";s:85:\"A role with the same name already exists in this context. Please choose another name.\";s:43:\"rbac_unprotected_delete_local_policies_info\";s:110:\"If activated, all local policies will be deleted. Permissions in courses and groups will be newly initialized.\";s:41:\"rbac_unprotected_keep_local_policies_info\";s:44:\"Choose this mode to keep all local policies.\";s:11:\"rcrs_delete\";s:34:\"User can move or delete ECS Course\";s:20:\"rcrs_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rcrs_read\";s:23:\"User can use ECS Course\";s:12:\"rcrs_visible\";s:21:\"ECS Course is visible\";s:10:\"rcrs_write\";s:36:\"User can edit settings of ECS Course\";s:20:\"recf_edit_permission\";s:70:\"User can change permission settings of Restored Objects administration\";s:9:\"recf_read\";s:55:\"User has read access to Restored Objects administration\";s:12:\"recf_visible\";s:42:\"Restored Objects administration is visible\";s:10:\"recf_write\";s:68:\"Edit Settings and restore objects in Restored Objects administration\";s:16:\"rbac_create_catr\";s:20:\"Create Category Link\";s:15:\"rbac_create_crs\";s:13:\"Create Course\";s:16:\"rbac_create_crsr\";s:18:\"Create Course Link\";s:15:\"rbac_create_exc\";s:15:\"Create Exercise\";s:16:\"rbac_create_feed\";s:15:\"Create Web Feed\";s:16:\"rbac_create_file\";s:11:\"Upload File\";s:15:\"rbac_create_frm\";s:12:\"Create Forum\";s:15:\"rbac_create_glo\";s:15:\"Create Glossary\";s:15:\"rbac_create_grp\";s:12:\"Create Group\";s:16:\"rbac_create_htlm\";s:27:\"Create HTML Learning Module\";s:14:\"rbac_create_lm\";s:28:\"Create ILIAS Learning Module\";s:16:\"rbac_create_mcst\";s:16:\"Create Mediacast\";s:15:\"rbac_create_mep\";s:17:\"Create Media Pool\";s:15:\"rbac_create_qpl\";s:25:\"Create Question Pool Test\";s:16:\"rbac_create_rcrs\";s:17:\"Create ECS Course\";s:16:\"rbac_create_sahs\";s:28:\"Create SCORM Learning Module\";s:15:\"rbac_create_spl\";s:27:\"Create Question Pool Survey\";s:15:\"rbac_create_svy\";s:13:\"Create Survey\";s:15:\"rbac_create_tst\";s:11:\"Create Test\";s:16:\"rbac_create_webr\";s:14:\"Create Weblink\";s:16:\"rbac_create_wiki\";s:11:\"Create Wiki\";s:11:\"sess_delete\";s:31:\"User can move or delete session\";s:15:\"sess_edit_event\";s:20:\"Edit Calendar Events\";s:20:\"sess_edit_permission\";s:35:\"User can change permission settings\";s:9:\"sess_read\";s:32:\"User has read access to sessions\";s:12:\"sess_visible\";s:20:\"Sessions are visible\";s:10:\"sess_write\";s:42:\"User can edit session content and settings\";s:20:\"svyf_edit_permission\";s:56:\"User change permission settings in Survey administration\";s:9:\"svyf_read\";s:45:\"User has read access to Survey administration\";s:12:\"svyf_visible\";s:32:\"Survey administration is visible\";s:10:\"svyf_write\";s:38:\"Edit settings in Survey administration\";s:11:\"wfe_visible\";s:44:\"Administration of Workflow Engine is visible\";s:8:\"wfe_read\";s:57:\"User has read access to administration of Workflow Engine\";s:9:\"wfe_write\";s:56:\"User can edit settings of Workflow Engine administration\";s:19:\"wfe_edit_permission\";s:69:\"User can change permission settings of Workflow Engine administration\";s:25:\"mail_mail_to_global_roles\";s:35:\"User can send mails to global roles\";s:30:\"rbac_msg_user_already_assigned\";s:51:\"The chosen users are already assigned to this role.\";s:23:\"rbac_add_new_local_role\";s:18:\"Add New Local Role\";s:27:\"cals_add_consultation_hours\";s:54:\"User can offer and edit consultation hours in calendar\";s:8:\"rbac_log\";s:3:\"Log\";s:12:\"rbac_changes\";s:7:\"Changes\";s:22:\"rbac_log_operation_add\";s:24:\"Added Operation for \"%s\"\";s:22:\"rbac_log_operation_rmv\";s:26:\"Removed Operation for \"%s\"\";s:24:\"rbac_log_inheritance_add\";s:28:\"Stopped Inheritance for \"%s\"\";s:24:\"rbac_log_inheritance_rmv\";s:28:\"Allowed Inheritance for \"%s\"\";s:22:\"rbac_log_source_object\";s:13:\"Source object\";s:25:\"rbac_log_edit_permissions\";s:16:\"Edit Permissions\";s:20:\"rbac_log_move_object\";s:11:\"Move Object\";s:20:\"rbac_log_link_object\";s:11:\"Link Object\";s:20:\"rbac_log_copy_object\";s:11:\"Copy Object\";s:22:\"rbac_log_create_object\";s:13:\"Create Object\";s:22:\"rbac_log_edit_template\";s:18:\"Edit Role Template\";s:31:\"rbac_log_edit_template_existing\";s:38:\"Use Role Template for Existing Objects\";s:21:\"rbac_log_change_owner\";s:22:\"Change Owner of Object\";s:22:\"rbac_log_changed_owner\";s:16:\"Changed Owner to\";s:21:\"rbac_role_rights_copy\";s:16:\"Copy Permissions\";s:27:\"rbac_role_rights_copy_empty\";s:4:\"None\";s:37:\"rbac_role_rights_copy_change_existing\";s:23:\"Change Existing Objects\";s:16:\"perm_global_role\";s:11:\"Global Role\";s:26:\"perm_protected_global_role\";s:21:\"Protected Global Role\";s:25:\"perm_protected_local_role\";s:20:\"Protected Local Role\";s:27:\"perm_role_path_info_created\";s:22:\"Created in %1$s \"%2$s\"\";s:31:\"perm_role_path_info_inheritance\";s:35:\"using local policy from %1$s \"%2$s\"\";s:10:\"read_users\";s:28:\"Read Access to User Accounts\";s:22:\"cat_administrate_users\";s:32:\"Administrate Local User Accounts\";s:15:\"edit_permission\";s:18:\"Change Permissions\";s:10:\"edit_event\";s:13:\"Edit Calendar\";s:20:\"book_edit_permission\";s:52:\"User can change permission settings for booking pool\";s:12:\"book_visible\";s:23:\"Booking pool is visible\";s:9:\"book_read\";s:49:\"User can book resources / objects in booking pool\";s:11:\"book_delete\";s:36:\"User can move or delete booking pool\";s:10:\"book_write\";s:50:\"User can edit settings and content of booking pool\";s:16:\"rbac_create_book\";s:19:\"Create Booking Pool\";s:5:\"write\";s:13:\"Edit Settings\";s:17:\"rbac_local_policy\";s:12:\"Local Policy\";s:15:\"role_block_role\";s:10:\"Block Role\";s:23:\"role_confirm_block_role\";s:16:\"Save Role Status\";s:12:\"role_blocked\";s:29:\": Role will be blocked\";s:14:\"role_unblocked\";s:31:\": Role will be unblocked\";s:20:\"role_block_role_desc\";s:67:\"The access to this and all subordinated objects is will be revoked.\";s:28:\"role_confirm_block_role_info\";s:208:\"The following steps will be performed for the action \"Block Role\":

- the role permissions of this and all subordinated objects will be blocked.
- the new permission settings will be protected.\";s:30:\"role_confirm_unblock_role_info\";s:115:\"The following steps will be performed for the action \"Unblock Role\":

- the local policy will be deleted.\";s:30:\"role_confirm_block_role_header\";s:71:\"Do you really want to change the block role status of the chosen roles?\";s:9:\"smtp_mail\";s:11:\"SMTP E-Mail\";s:20:\"mail_to_global_roles\";s:12:\"Global Mails\";s:9:\"add_reply\";s:9:\"Add Reply\";s:10:\"add_thread\";s:10:\"Add Thread\";s:12:\"moderate_frm\";s:8:\"Moderate\";s:27:\"rbac_repository_permissions\";s:22:\"Repository Permissions\";s:22:\"rbac_admin_permissions\";s:26:\"Administration Permissions\";s:22:\"add_consultation_hours\";s:22:\"Add Consultation Hours\";s:18:\"export_member_data\";s:16:\"Access User Data\";s:42:\"rbac_change_existing_objects_desc_new_role\";s:77:\"The permission settings of this role will be adopted to ALL existing objects.\";s:12:\"frma_visible\";s:31:\"Forum Administration is visible\";s:9:\"frma_read\";s:44:\"User has read access to Forum Administration\";s:10:\"frma_write\";s:46:\"User can edit settings in Forum Administration\";s:20:\"frma_edit_permission\";s:59:\"User can change permission settings of Forum administration\";s:15:\"rbac_create_usr\";s:39:\"User is allowed to create user accounts\";s:27:\"precondition_obligatory_alt\";s:30:\"Precondition must be fulfilled\";s:31:\"precondition_not_obligatory_alt\";s:24:\"Precondition is optional\";s:20:\"active_preconditions\";s:13:\"Preconditions\";s:23:\"precondition_obligatory\";s:10:\"Compulsory\";s:28:\"precondition_obligatory_info\";s:62:\"Compulsory preconditions must be fulfilled, for having access.\";s:32:\"precondition_obligatory_settings\";s:21:\"Precondition Settings\";s:27:\"precondition_num_obligatory\";s:28:\"Number of Required Materials\";s:30:\"precondition_num_optional_info\";s:83:\"Please enter the minimum number of materials required to fulfill this precondition.\";s:6:\"invite\";s:18:\"Inviting to survey\";s:16:\"rbac_global_rolt\";s:20:\"Global Role Template\";s:19:\"rbac_role_selection\";s:9:\"Role Type\";s:16:\"rbac_auto_global\";s:26:\"Auto generated global role\";s:14:\"rbac_ud_global\";s:24:\"User defined global role\";s:15:\"rbac_auto_local\";s:25:\"Auto generated local role\";s:13:\"rbac_ud_local\";s:23:\"User defined local role\";s:14:\"rbac_auto_rolt\";s:28:\"Auto generated role template\";s:12:\"rbac_ud_rolt\";s:26:\"User defined role template\";s:19:\"rbac_context_global\";s:6:\"Global\";s:12:\"chtr_visible\";s:20:\"Chat Room is visible\";s:9:\"chtr_read\";s:42:\"User can join and participate at chat room\";s:10:\"chtr_write\";s:49:\"User can edit settings of chat room and ban users\";s:20:\"chtr_edit_permission\";s:49:\"User can change Permission Settings for Chat Room\";s:13:\"chtr_moderate\";s:41:\"User can moderate discussion in chat room\";s:12:\"otpl_visible\";s:47:\"Administration of Didactic Templates is visible\";s:9:\"otpl_read\";s:57:\"User has read access to Didactic Templates administration\";s:10:\"otpl_write\";s:44:\"User can edit settings of Didactic Templates\";s:20:\"otpl_edit_permission\";s:75:\"User can change permission settings in administration of Didactic Templates\";s:21:\"rbac_back_to_overview\";s:17:\"Back to Role List\";s:24:\"rbac_choose_copy_targets\";s:52:\"Please enter a query for selecting the target roles.\";s:24:\"rbac_select_copy_targets\";s:30:\"Please select the target roles\";s:15:\"rbac_role_title\";s:10:\"Role Title\";s:19:\"rbac_copy_behaviour\";s:18:\"Role Copy Settings\";s:32:\"rbac_not_change_existing_objects\";s:30:\"Do NOT change existing objects\";s:14:\"rbac_copy_role\";s:9:\"Copy Role\";s:18:\"rbac_copy_finished\";s:17:\"Finished copying.\";s:24:\"rbac_precondition_source\";s:17:\"Condition Trigger\";s:24:\"rbac_precondition_target\";s:26:\"Condition limits access to\";s:22:\"rbac_precondition_mode\";s:4:\"Mode\";s:26:\"rbac_precondition_mode_all\";s:17:\"All Preconditions\";s:31:\"rbac_precondition_mode_all_info\";s:54:\"All preconditions need to be fulfilled to give access.\";s:29:\"rbac_precondition_mode_subset\";s:23:\"Subset of Preconditions\";s:34:\"rbac_precondition_mode_subset_info\";s:113:\"A subset of preconditions need to be fulfilled to give access. Some preconditions may still be set as compulsory.\";s:33:\"rbac_precondition_save_obligatory\";s:15:\"Save Compulsory\";s:34:\"rbac_precondition_minimum_optional\";s:49:\"At least 2 preconditions have to remain optional.\";s:12:\"prfa_visible\";s:35:\"Portfolio administration is visible\";s:9:\"prfa_read\";s:48:\"User has read access to Portfolio administration\";s:10:\"prfa_write\";s:50:\"User can edit settings in Portfolio administration\";s:20:\"prfa_edit_permission\";s:63:\"User can change permission settings of Portfolio administration\";s:12:\"skmg_visible\";s:47:\"Competence Management administration is visible\";s:9:\"skmg_read\";s:63:\"User has read access to administration of Competence Management\";s:10:\"skmg_write\";s:47:\"User can edit settings of Competence Management\";s:20:\"skmg_edit_permission\";s:75:\"User can change permission settings of Competence Management administration\";s:12:\"blga_visible\";s:30:\"Blog Administration is visible\";s:9:\"blga_read\";s:43:\"User has read access to Blog Administration\";s:10:\"blga_write\";s:45:\"User can edit settings in Blog Administration\";s:20:\"blga_edit_permission\";s:58:\"User can change permission settings of Blog administration\";s:8:\"moderate\";s:8:\"Moderate\";s:16:\"rbac_create_chtr\";s:16:\"Create Chat Room\";s:19:\"rbac_edit_condition\";s:17:\"Edit Precondition\";s:26:\"rbac_condition_delete_sure\";s:60:\"Are you sure you want to delete the following preconditions?\";s:18:\"tst_tst_statistics\";s:34:\"User has access to test statistics\";s:12:\"blog_visible\";s:15:\"Blog is visible\";s:9:\"blog_read\";s:26:\"User can read blog content\";s:9:\"blog_copy\";s:18:\"User can copy blog\";s:10:\"blog_write\";s:27:\"User can edit blog settings\";s:11:\"blog_delete\";s:28:\"User can move or delete blog\";s:20:\"blog_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_blog\";s:11:\"Create Blog\";s:10:\"trac_write\";s:64:\"Edit settings in Statistics and Learning Progress administration\";s:11:\"dcl_visible\";s:26:\"Data Collection is visible\";s:8:\"dcl_read\";s:30:\"Read access to Data Collection\";s:8:\"dcl_copy\";s:29:\"User can copy data collection\";s:9:\"dcl_write\";s:53:\"User can edit settings and content of data collection\";s:10:\"dcl_delete\";s:39:\"User can move or delete data collection\";s:19:\"dcl_edit_permission\";s:35:\"User can change permission settings\";s:13:\"dcl_add_entry\";s:25:\"User can add/edit entries\";s:15:\"rbac_create_dcl\";s:22:\"Create Data Collection\";s:12:\"poll_visible\";s:15:\"Poll is visible\";s:9:\"poll_read\";s:28:\"User can participate at poll\";s:10:\"poll_write\";s:39:\"User can edit poll settings and content\";s:11:\"poll_delete\";s:28:\"User can move or delete poll\";s:9:\"poll_copy\";s:18:\"User can copy poll\";s:20:\"poll_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_poll\";s:11:\"Create Poll\";s:15:\"fld_create_poll\";s:11:\"Create Poll\";s:20:\"hlps_edit_permission\";s:58:\"User can change permissions of Help System administration.\";s:9:\"hlps_read\";s:51:\"User has read access to Help System administration.\";s:12:\"hlps_visible\";s:38:\"Help System administration is visible.\";s:10:\"hlps_write\";s:61:\"User can edit settings of Help System and upload new versions\";s:16:\"rbac_import_role\";s:11:\"Import Role\";s:18:\"rbac_role_imported\";s:27:\"The role has been imported.\";s:13:\"internal_mail\";s:13:\"Internal Mail\";s:18:\"mail_internal_mail\";s:41:\"User can use internal mail system (ILIAS)\";s:9:\"itgr_read\";s:32:\"User can see items in item group\";s:10:\"itgr_write\";s:48:\"User can edit content and settings of item group\";s:9:\"itgr_copy\";s:24:\"User can copy item group\";s:11:\"itgr_delete\";s:34:\"User can move or delete item group\";s:20:\"itgr_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_itgr\";s:17:\"Create Item Group\";s:10:\"contribute\";s:10:\"Contribute\";s:15:\"blog_contribute\";s:24:\"User can create postings\";s:14:\"lp_other_users\";s:45:\"See learning progress overview of other users\";s:19:\"trac_lp_other_users\";s:45:\"See learning progress overview of other users\";s:20:\"ecss_edit_permission\";s:55:\"User can edit permission settings of ECS administration\";s:9:\"ecss_read\";s:34:\"User can read general ECS settings\";s:12:\"ecss_visible\";s:24:\"ECS settings are visible\";s:10:\"ecss_write\";s:26:\"User can edit ECS settings\";s:11:\"rfil_delete\";s:32:\"User can move or delete ECS File\";s:20:\"rfil_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rfil_read\";s:21:\"User can use ECS File\";s:12:\"rfil_visible\";s:19:\"ECS File is visible\";s:10:\"rfil_write\";s:34:\"User can edit settings of ECS File\";s:11:\"rgrp_delete\";s:33:\"User can move or delete ECS Group\";s:20:\"rgrp_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rgrp_read\";s:22:\"User can use ECS Group\";s:12:\"rgrp_visible\";s:20:\"ECS Group is visible\";s:10:\"rgrp_write\";s:35:\"User can edit settings of ECS Group\";s:11:\"rglo_delete\";s:36:\"User can move or delete ECS Glossary\";s:20:\"rglo_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rglo_read\";s:25:\"User can use ECS Glossary\";s:12:\"rglo_visible\";s:23:\"ECS Glossary is visible\";s:10:\"rglo_write\";s:38:\"User can edit settings of ECS Glossary\";s:10:\"rlm_delete\";s:43:\"User can move or delete ECS Learning Module\";s:19:\"rlm_edit_permission\";s:35:\"User can change permission settings\";s:8:\"rlm_read\";s:32:\"User can use ECS Learning Module\";s:11:\"rlm_visible\";s:30:\"ECS Learning Module is visible\";s:9:\"rlm_write\";s:45:\"User can edit settings of ECS Learning Module\";s:11:\"rtst_delete\";s:32:\"User can move or delete ECS Test\";s:20:\"rtst_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rtst_read\";s:21:\"User can use ECS Test\";s:12:\"rtst_visible\";s:19:\"ECS Test is visible\";s:10:\"rtst_write\";s:34:\"User can edit settings of ECS Test\";s:11:\"rwik_delete\";s:32:\"User can move or delete ECS Wiki\";s:20:\"rwik_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rwik_read\";s:21:\"User can use ECS Wiki\";s:12:\"rwik_visible\";s:19:\"ECS Wiki is visible\";s:10:\"rwik_write\";s:34:\"User can edit settings of ECS Wiki\";s:11:\"rcat_delete\";s:36:\"User can move or delete ECS Category\";s:20:\"rcat_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rcat_read\";s:25:\"User can use ECS Category\";s:12:\"rcat_visible\";s:23:\"ECS Category is visible\";s:10:\"rcat_write\";s:38:\"User can edit settings of ECS Category\";s:12:\"itgr_visible\";s:21:\"Item group is visible\";s:11:\"chtr_delete\";s:33:\"User can move or delete chat room\";s:16:\"dcl_edit_content\";s:12:\"Edit entries\";s:12:\"bibl_visible\";s:23:\"Bibliography is visible\";s:9:\"bibl_read\";s:34:\"User can read bibliography content\";s:9:\"bibl_copy\";s:17:\"Copy Bibliography\";s:10:\"bibl_write\";s:35:\"User can edit bibliography settings\";s:11:\"bibl_delete\";s:36:\"User can move or delete bibliography\";s:20:\"bibl_edit_permission\";s:35:\"User can change permission settings\";s:12:\"bibs_visible\";s:38:\"Bibliography-Administration is visible\";s:9:\"bibs_read\";s:34:\"User can read bibliography content\";s:10:\"bibs_write\";s:35:\"User can edit bibliography settings\";s:11:\"bibs_delete\";s:31:\"User can delete library entries\";s:9:\"bibs_copy\";s:26:\"User can copy bibliography\";s:20:\"bibs_edit_permission\";s:35:\"User can change permission settings\";s:19:\"edit_userassignment\";s:20:\"Edit User Assignment\";s:20:\"sysc_edit_permission\";s:44:\"User can change permissions of System Check.\";s:9:\"sysc_read\";s:37:\"User has read access to System Check.\";s:12:\"sysc_visible\";s:24:\"System Check is visible.\";s:10:\"sysc_write\";s:30:\"User can execute System Check.\";s:12:\"delete_files\";s:12:\"Delete Files\";s:16:\"cld_delete_files\";s:42:\"Users can delete Files in the cloud object\";s:14:\"delete_folders\";s:14:\"Delete Folders\";s:18:\"cld_delete_folders\";s:44:\"Users can delete Folders in the cloud object\";s:13:\"files_visible\";s:13:\"Files Visible\";s:17:\"cld_files_visible\";s:37:\"Files are visible in the cloud object\";s:15:\"folders_visible\";s:15:\"Folders Visible\";s:19:\"cld_folders_visible\";s:39:\"Folders are visible in the cloud object\";s:14:\"folders_create\";s:14:\"Create Folders\";s:18:\"cld_folders_create\";s:42:\"Folders may be created in the cloud object\";s:11:\"cld_visible\";s:23:\"Cloud Object is visible\";s:8:\"cld_read\";s:28:\"User can open a Cloud Object\";s:9:\"cld_write\";s:35:\"User can edit cloud object settings\";s:10:\"cld_delete\";s:28:\"User can delete cloud object\";s:14:\"cld_permission\";s:35:\"User can change permission settings\";s:10:\"cld_upload\";s:41:\"User can upload files to the cloud object\";s:12:\"cld_download\";s:45:\"User can download files from the cloud object\";s:19:\"cld_edit_permission\";s:35:\"User can change permission settings\";s:12:\"prtt_visible\";s:29:\"Portfolio Template is visible\";s:9:\"prtt_read\";s:42:\"User has read access to portfolio template\";s:9:\"prtt_copy\";s:32:\"User can copy portfolio template\";s:10:\"prtt_write\";s:56:\"User can edit settings and content of portfolio template\";s:11:\"prtt_delete\";s:42:\"User can move or delete portfolio template\";s:20:\"prtt_edit_permission\";s:58:\"User can change permission settings for portfolio template\";s:30:\"rbac_info_only_position_access\";s:213:\"You are presented only with those members with a Position within your organisational unit. Members with other organisational Positions are not shown to you but may reside in this coures without being shown to you.\";s:21:\"org_op_access_results\";s:36:\"Access Results of Subordinated Users\";s:26:\"org_op_manage_participants\";s:32:\"Manage Subordinated Participants\";s:25:\"org_op_score_participants\";s:31:\"Score Subordinated Participants\";s:30:\"org_op_write_learning_progress\";s:42:\"Set learning Progress of subordinate users\";s:30:\"org_op_edit_submissions_grades\";s:31:\"Edit submissions of other users\";s:24:\"org_op_view_certificates\";s:39:\"View certificates of subordinated users\";s:23:\"org_op_view_competences\";s:38:\"View competences of subordinated users\";s:23:\"rbac_copy_role_add_perm\";s:15:\"Add Permissions\";s:26:\"rbac_copy_role_remove_perm\";s:18:\"Remove Permissions\";s:19:\"rbac_copy_role_copy\";s:16:\"Copy Permissions\";s:16:\"rbac_create_prtt\";s:25:\"Create Portfolio Template\";s:16:\"glo_edit_content\";s:21:\"User can edit content\";s:16:\"rbac_create_rolt\";s:24:\"Create new Role Template\";s:16:\"rbac_create_role\";s:15:\"Create new Role\";s:16:\"il_orgu_employee\";s:28:\"Organisational Unit Employee\";s:16:\"il_orgu_superior\";s:28:\"Organisational Unit Superior\";s:16:\"rbac_create_bibl\";s:19:\"Create Bibliography\";s:15:\"rbac_create_cld\";s:19:\"Create Cloud Object\";s:12:\"crss_visible\";s:32:\"Course administration is visible\";s:9:\"crss_read\";s:45:\"User has read access to Course administration\";s:10:\"crss_write\";s:38:\"Edit settings in Course administration\";s:20:\"crss_edit_permission\";s:60:\"User can change permission settings in Course administration\";s:12:\"grps_visible\";s:31:\"Group administration is visible\";s:9:\"grps_read\";s:44:\"User has read access to Group administration\";s:10:\"grps_write\";s:37:\"Edit settings in Group administration\";s:20:\"grps_edit_permission\";s:59:\"User can change permission settings in Group administration\";s:12:\"wiks_visible\";s:30:\"Wiki administration is visible\";s:9:\"wiks_read\";s:43:\"User has read access to Wiki administration\";s:10:\"wiks_write\";s:36:\"Edit settings in Wiki administration\";s:20:\"wiks_edit_permission\";s:58:\"User can change permission settings in Wiki administration\";s:11:\"tos_visible\";s:42:\"Terms of Service administration is visible\";s:8:\"tos_read\";s:55:\"User has read access to Terms of Service administration\";s:9:\"tos_write\";s:48:\"Edit settings in Terms of Service administration\";s:19:\"tos_edit_permission\";s:70:\"User can change permission settings in Terms of Service administration\";s:12:\"wbrs_visible\";s:33:\"Weblink administration is visible\";s:9:\"wbrs_read\";s:46:\"User has read access to Weblink administration\";s:10:\"wbrs_write\";s:39:\"Edit settings in Weblink administration\";s:20:\"wbrs_edit_permission\";s:61:\"User can change permission settings in Weblink administration\";s:12:\"reps_visible\";s:36:\"Repository administration is visible\";s:9:\"reps_read\";s:49:\"User has read access to Repository administration\";s:10:\"reps_write\";s:42:\"Edit settings in Repository administration\";s:20:\"reps_edit_permission\";s:64:\"User can change permission settings in Repository administration\";s:27:\"orgu_view_learning_progress\";s:22:\"View Learning Progress\";s:12:\"orgu_visible\";s:30:\"Organisational Unit is visible\";s:9:\"orgu_read\";s:43:\"User has read access to Organisational Unit\";s:10:\"orgu_write\";s:45:\"User can edit settings of Organisational Unit\";s:15:\"orgu_read_users\";s:69:\"User can read local user accounts created in this Organisational Unit\";s:27:\"orgu_cat_administrate_users\";s:80:\"User can create and administrate local user accounts in this Organisational Unit\";s:11:\"orgu_delete\";s:43:\"User can move or delete Organisational Unit\";s:20:\"orgu_edit_permission\";s:35:\"User can change permission settings\";s:9:\"orgu_copy\";s:24:\"Copy Organisational Unit\";s:31:\"orgu_view_learning_progress_rec\";s:45:\"View Learning Progress of Unit incl. Subunits\";s:16:\"rbac_create_orgu\";s:27:\"Create Organisational Units\";s:15:\"statistics_read\";s:15:\"View Statistics\";s:20:\"wiki_statistics_read\";s:15:\"View Statistics\";s:12:\"excs_visible\";s:34:\"Exercise administration is visible\";s:9:\"excs_read\";s:47:\"User has read access to Exercise administration\";s:10:\"excs_write\";s:40:\"Edit settings in Exercise administration\";s:20:\"excs_edit_permission\";s:62:\"User can change permission settings in Exercise administration\";s:12:\"taxs_visible\";s:34:\"Taxonomy administration is visible\";s:9:\"taxs_read\";s:47:\"User has read access to Taxonomy administration\";s:10:\"taxs_write\";s:40:\"Edit settings in Taxonomy administration\";s:20:\"taxs_edit_permission\";s:62:\"User can change permission settings in Taxonomy administration\";s:22:\"read_learning_progress\";s:37:\"View learning progress of other users\";s:26:\"crs_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"grp_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"fold_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:25:\"lm_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"htlm_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"sahs_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"tst_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"exc_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"sess_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"file_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"mcst_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"lso_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:16:\"condition_failed\";s:6:\"Failed\";s:27:\"condition_learning_progress\";s:29:\"Derive from Learning Progress\";s:22:\"rbac_precondition_hide\";s:11:\"Hide Object\";s:27:\"rbac_precondition_hide_info\";s:152:\" This option allows to hide the object for users who currently have not fulfilled the preconditions. Therefore, all not accessible content is invisible.\";s:32:\"rbac_cant_import_role_wrong_type\";s:46:\"Can\'t import a role from item %s into item %s.\";s:8:\"ilias_id\";s:8:\"ILIAS-ID\";s:6:\"redact\";s:6:\"Redact\";s:11:\"blog_redact\";s:49:\"User can edit postings of other contributors, too\";s:20:\"edit_wiki_navigation\";s:15:\"Edit Navigation\";s:17:\"delete_wiki_pages\";s:12:\"Delete Pages\";s:24:\"activate_wiki_protection\";s:13:\"Set Read-Only\";s:16:\"rbac_permissions\";s:11:\"Permissions\";s:16:\"wiki_html_export\";s:11:\"Export HTML\";s:25:\"wiki_edit_wiki_navigation\";s:20:\"Edit Wiki Navigation\";s:22:\"wiki_delete_wiki_pages\";s:17:\"Delete Wiki Pages\";s:29:\"wiki_activate_wiki_protection\";s:27:\"Set Wiki Pages to Read-Only\";s:21:\"wiki_wiki_html_export\";s:19:\"Export Wiki as HTML\";s:12:\"cadm_visible\";s:41:\"User connection administration is visible\";s:9:\"cadm_read\";s:54:\"User has read access to user connection administration\";s:10:\"cadm_write\";s:55:\"User has write access to user connection administration\";s:20:\"cadm_edit_permission\";s:35:\"User can change permission settings\";s:20:\"logs_edit_permission\";s:59:\"User can edit permission settings of Logging administration\";s:9:\"logs_read\";s:38:\"User can read general Logging settings\";s:12:\"logs_visible\";s:28:\"Logging settings are visible\";s:10:\"logs_write\";s:30:\"User can edit Logging settings\";s:11:\"prg_visible\";s:26:\"Study Programme is visible\";s:8:\"prg_copy\";s:29:\"User can copy Study Programme\";s:9:\"prg_write\";s:41:\"User can edit settings of Study Programme\";s:10:\"prg_delete\";s:31:\"User can delete Study Programme\";s:19:\"prg_edit_permission\";s:35:\"User can change permission settings\";s:15:\"rbac_create_prg\";s:22:\"Create Study Programme\";s:12:\"prgs_visible\";s:41:\"Study Programme administration is visible\";s:9:\"prgs_read\";s:54:\"User has read access to Study Programme administration\";s:10:\"prgs_write\";s:47:\"Edit settings in Study Programme administration\";s:20:\"prgs_edit_permission\";s:60:\"Change permission settings in Study Programme administration\";s:9:\"feed_copy\";s:21:\"User can copy webfeed\";s:8:\"prg_read\";s:39:\"User has read access to Study Programme\";s:12:\"awra_visible\";s:46:\"‘Who is online?’ administration is visible\";s:9:\"awra_read\";s:59:\"User has read access to ‘Who is online?’ administration\";s:10:\"awra_write\";s:52:\"Edit settings in ‘Who is online?’ administration\";s:20:\"awra_edit_permission\";s:74:\"User can change permission settings in ‘Who is online?’ administration\";s:26:\"svy_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"svy_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:12:\"read_results\";s:14:\"Survey Results\";s:16:\"svy_read_results\";s:43:\"User has access to survey results of others\";s:27:\"sess_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:8:\"mep_copy\";s:24:\"User can copy media pool\";s:17:\"sty_write_content\";s:19:\"Edit Content Styles\";s:21:\"stys_sty_write_custom\";s:19:\"Edit Content Styles\";s:16:\"sty_write_system\";s:18:\"Edit System Styles\";s:21:\"stys_sty_write_system\";s:18:\"Edit System Styles\";s:21:\"sty_write_page_layout\";s:17:\"Edit Page Layouts\";s:26:\"stys_sty_write_page_layout\";s:17:\"Edit Page Layouts\";s:9:\"grpr_copy\";s:24:\"User can copy group link\";s:11:\"grpr_delete\";s:34:\"User can move or delete group link\";s:20:\"grpr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"grpr_visible\";s:21:\"Group link is visible\";s:10:\"grpr_write\";s:36:\"User can edit settings of group link\";s:16:\"rbac_create_grpr\";s:17:\"Create Group Link\";s:12:\"bdga_visible\";s:31:\"Badge administration is visible\";s:9:\"bdga_read\";s:42:\"User can read badge administration content\";s:10:\"bdga_write\";s:43:\"User can edit badge administration settings\";s:20:\"bdga_edit_permission\";s:35:\"User can change permission settings\";s:13:\"news_add_news\";s:8:\"Add News\";s:17:\"grp_news_add_news\";s:38:\"Add and edit own news entries in group\";s:17:\"crs_news_add_news\";s:39:\"Add and edit own news entries in course\";s:12:\"iass_visible\";s:32:\"Individual Assessment is visible\";s:9:\"iass_read\";s:40:\"Read content of an Individual Assessment\";s:27:\"iass_read_learning_progress\";s:62:\"View learning progress information of an Individual Assessment\";s:27:\"iass_edit_learning_progress\";s:62:\"Edit learning progress information of an Individual Assessment\";s:9:\"iass_copy\";s:29:\"Copy an Individual Assessment\";s:10:\"iass_write\";s:29:\"Edit an Individual Assessment\";s:11:\"iass_delete\";s:31:\"Delete an Individual Assessment\";s:17:\"iass_edit_members\";s:40:\"Edit members of an Individual Assessment\";s:20:\"iass_edit_permission\";s:44:\"Edit permissions of an Individual Assessment\";s:12:\"edit_members\";s:14:\"Manage members\";s:18:\"prg_manage_members\";s:33:\"Manage members of Study Programme\";s:16:\"rbac_create_iass\";s:28:\"Create Individual Assessment\";s:18:\"grp_manage_members\";s:23:\"Manage Members of Group\";s:18:\"crs_manage_members\";s:24:\"Manage Members of Course\";s:9:\"book_copy\";s:26:\"User can copy booking pool\";s:27:\"file_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:22:\"stys_sty_write_content\";s:19:\"Edit Content Styles\";s:9:\"grp_grade\";s:22:\"Grade Members of Group\";s:9:\"crs_grade\";s:23:\"Grade Members of Course\";s:19:\"wiki_edit_page_meta\";s:23:\"Edit Wiki Page Metadata\";s:23:\"edit_submissions_grades\";s:27:\"Edit Submissions and Grades\";s:27:\"exc_edit_submissions_grades\";s:36:\"User can edit submissions and grades\";s:15:\"release_objects\";s:15:\"Release Objects\";s:20:\"ltis_release_objects\";s:41:\"User can release Objects for LTI Consumer\";s:12:\"ltis_visible\";s:29:\"LTI administration is visible\";s:9:\"ltis_read\";s:42:\"User has read access to LTI administration\";s:10:\"ltis_write\";s:44:\"User can edit settings in LTI administration\";s:20:\"ltis_edit_permission\";s:57:\"User can change permission settings in LTI administration\";s:12:\"copa_visible\";s:23:\"Content Page is visible\";s:9:\"copa_read\";s:26:\"User can read Content Page\";s:9:\"copa_copy\";s:17:\"Copy Content Page\";s:10:\"copa_write\";s:26:\"User can edit Content Page\";s:11:\"copa_delete\";s:36:\"User can move or delete Content Page\";s:20:\"copa_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_copa\";s:19:\"Create Content Page\";s:27:\"copa_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"copa_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"sess_manage_members\";s:32:\"Manage Participants of a Session\";s:16:\"manage_materials\";s:16:\"Manage Materials\";s:21:\"sess_manage_materials\";s:24:\"Manage Session Materials\";s:11:\"lso_visible\";s:28:\"Learning Sequence is visible\";s:8:\"lso_copy\";s:31:\"User can copy Learning Sequence\";s:9:\"lso_write\";s:43:\"User can edit settings of Learning Sequence\";s:10:\"lso_delete\";s:33:\"User can delete Learning Sequence\";s:18:\"lso_lp_other_users\";s:46:\"User can view learning progress of other users\";s:15:\"rbac_create_lso\";s:24:\"Create Learning Sequence\";s:18:\"sess_edit_metadata\";s:13:\"Edit Metadata\";s:18:\"iass_amend_grading\";s:42:\"Amend gradings in an Individual Assessment\";s:8:\"lso_read\";s:38:\"Users can access the Learning Sequence\";s:18:\"lso_manage_members\";s:35:\"Manage members of Learning Sequence\";s:19:\"lso_edit_permission\";s:56:\"User can change permission settings of Learning Sequence\";s:15:\"lso_participate\";s:41:\"User can subscribe to a Learning Sequence\";s:17:\"lso_unparticipate\";s:45:\"User can unsubscribe from a Learning Sequence\";s:26:\"lso_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:27:\"mcst_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:24:\"dshs_change_presentation\";s:37:\"Change presentation of dashboard view\";s:19:\"change_presentation\";s:19:\"Change Presentation\";s:28:\"rbac_add_recommended_content\";s:19:\"Recommended Content\";s:33:\"rbac_add_recommended_content_info\";s:80:\"Adds the current object \'%1\' for all members of the role as recommended content.\";s:13:\"read_outcomes\";s:40:\"View learning experiences of other users\";s:20:\"add_consume_provider\";s:29:\"Add Own LTI Provider Settings\";s:25:\"ltis_add_consume_provider\";s:51:\"User can add own provider settings for LTI consumer\";s:11:\"lti_visible\";s:23:\"LTI consumer is visible\";s:8:\"lti_read\";s:25:\"User can see LTI consumer\";s:17:\"lti_read_outcomes\";s:60:\"User can see learning experiences and ranking of other users\";s:26:\"lti_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"lti_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:8:\"lti_copy\";s:26:\"User can copy LTI consumer\";s:9:\"lti_write\";s:38:\"User can edit settings of LTI consumer\";s:10:\"lti_delete\";s:36:\"User can move or delete LTI consumer\";s:19:\"lti_edit_permission\";s:35:\"User can change permission settings\";s:15:\"rbac_create_lti\";s:19:\"Create LTI Consumer\";s:12:\"cmix_visible\";s:27:\"xAPI/cmi5 Object is visible\";s:9:\"cmix_read\";s:29:\"User can see xAPI/cmi5 Object\";s:18:\"cmix_read_outcomes\";s:60:\"User can see learning experiences and ranking of other users\";s:27:\"cmix_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"cmix_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:9:\"cmix_copy\";s:30:\"User can copy xAPI/cmi5 Object\";s:10:\"cmix_write\";s:42:\"User can edit settings of xAPI/cmi5 Object\";s:11:\"cmix_delete\";s:40:\"User can move or delete xAPI/cmi5 Object\";s:20:\"cmix_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_cmix\";s:23:\"Create xAPI/cmi5 Object\";s:9:\"prgr_copy\";s:39:\"User can copy links to study programmes\";s:11:\"prgr_delete\";s:49:\"User can move or delete links to study programmes\";s:20:\"prgr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"prgr_visible\";s:53:\"Links to study programmes are visible and can be used\";s:10:\"prgr_write\";s:51:\"User can edit settings of links to study programmes\";s:16:\"rbac_create_prgr\";s:30:\"Create link to study programme\";}'); +INSERT INTO `lng_modules` VALUES ('rbac','en','a:853:{s:32:\"rbac_form_copy_roles_adjust_type\";s:28:\"Kind of Adapting Permissions\";s:36:\"rbac_form_copy_roles_adjust_type_add\";s:15:\"Add permissions\";s:38:\"rbac_form_copy_roles_adjust_type_clone\";s:16:\"Copy permissions\";s:39:\"rbac_form_copy_roles_adjust_type_remove\";s:18:\"Remove permissions\";s:41:\"rbac_form_copy_roles_adjust_type_add_info\";s:146:\"Adds SELECTED permissions of the selected role or role template to the default permissions of the target role. Unselected permissions are ignored.\";s:43:\"rbac_form_copy_roles_adjust_type_clone_info\";s:184:\"All permissions of the selected role or role template overwrite all default permissions of the target role. This applies to selected and unselected permissions in the template or role.\";s:44:\"rbac_form_copy_roles_adjust_type_remove_info\";s:119:\"Removes the SELECTED permissions of the selected role or role template from the default permissions of the target role.\";s:34:\"rbac_form_copy_roles_adjust_button\";s:17:\"Adapt Permissions\";s:31:\"rbac_form_copy_roles_ce_add_yes\";s:44:\"Add selected permissions to existing objects\";s:30:\"rbac_form_copy_roles_ce_add_no\";s:31:\"Only adjust default permissions\";s:36:\"rbac_form_copy_roles_ce_add_yes_info\";s:130:\"Both the existing permission defaults of the target role and the permission settings of existing objects are extended accordingly.\";s:35:\"rbac_form_copy_roles_ce_add_no_info\";s:120:\"Only the existing default permission of the target role are extended. Permissions of existing objects remain unaffected.\";s:33:\"rbac_form_copy_roles_ce_clone_yes\";s:23:\"Change existing objects\";s:32:\"rbac_form_copy_roles_ce_clone_no\";s:29:\"DO NOT adapt existing objects\";s:38:\"rbac_form_copy_roles_ce_clone_yes_info\";s:160:\"Existing permission settings are overwritten accordingly and are applied in their entirety to all existing objects with all selected and unselected permissions.\";s:37:\"rbac_form_copy_roles_ce_clone_no_info\";s:141:\"Existing default permissions of the target role are overwritten. But the permission settings of the already existing objects are not changed.\";s:34:\"rbac_form_copy_roles_ce_remove_yes\";s:47:\"Reduce existing objects by selected permissions\";s:33:\"rbac_form_copy_roles_ce_remove_no\";s:31:\"Reduce only default permissions\";s:39:\"rbac_form_copy_roles_ce_remove_yes_info\";s:138:\"The selected permissions are removed from the permission defaults of the target role and from the permission settings of existing objects.\";s:38:\"rbac_form_copy_roles_ce_remove_no_info\";s:148:\"Selected permissions are only removed from the default permissions of the target role. The permission settings of existing objects are not adjusted.\";s:19:\"il_sess_participant\";s:19:\"Session Participant\";s:21:\"il_sess_status_closed\";s:30:\"Non-Participant Closed Session\";s:29:\"positions_override_operations\";s:24:\"Override global Settings\";s:13:\"amend_grading\";s:23:\"Amend finalized grading\";s:20:\"accs_edit_permission\";s:73:\"User can change permissions of Accessibility Settings in Administration.\";s:9:\"accs_read\";s:65:\"User has read access to Accessibility Settings in Administration.\";s:12:\"accs_visible\";s:53:\"Accessibility Settings are visible in Administration.\";s:10:\"accs_write\";s:55:\"User can edit Accessibility Settings in Administration.\";s:19:\"adm_edit_permission\";s:66:\"User can change permissions of General Settings in Administration.\";s:8:\"adm_read\";s:59:\"User has read access to General Settings in Administration.\";s:11:\"adm_visible\";s:47:\"General Settings are visible in Administration.\";s:9:\"adm_write\";s:49:\"User can edit General Settings in Administration.\";s:24:\"adopt_perm_from_template\";s:24:\"Copy Permission Settings\";s:20:\"adve_edit_permission\";s:61:\"User can change permission settings of Editing administration\";s:9:\"adve_read\";s:46:\"User has read access to Editing Administration\";s:12:\"adve_visible\";s:33:\"Editing Administration is visible\";s:10:\"adve_write\";s:48:\"User can edit settings of Editing Administration\";s:20:\"assf_edit_permission\";s:73:\"User can change permission settings of Test and Assessment administration\";s:9:\"assf_read\";s:55:\"User has read access Test and Assessment Administration\";s:12:\"assf_visible\";s:45:\"Test and Assessment administration is visible\";s:10:\"assf_write\";s:60:\"User can edit settings of Test and Assessment Administration\";s:20:\"auth_edit_permission\";s:85:\"User can change permission settings of Authentication and Registration administration\";s:9:\"auth_read\";s:73:\"User has read access to administration of Authentication and Registration\";s:12:\"auth_visible\";s:60:\"Administration of Authentication and Registration is visible\";s:10:\"auth_write\";s:58:\"User can edit settings for Authentication and Registration\";s:26:\"cat_cat_administrate_users\";s:69:\"User can create and administrate local user accounts in this category\";s:8:\"cat_copy\";s:22:\"User can copy category\";s:10:\"cat_delete\";s:32:\"User can move or delete category\";s:19:\"cat_edit_permission\";s:35:\"User can change permission settings\";s:14:\"cat_read_users\";s:58:\"User can read local user accounts created in this category\";s:8:\"cat_read\";s:32:\"User has read access to category\";s:11:\"cat_visible\";s:19:\"Category is visible\";s:9:\"cat_write\";s:53:\"User can edit settings of category and manage content\";s:20:\"cert_edit_permission\";s:66:\"User can change permission settings of Certificates administration\";s:9:\"cert_read\";s:51:\"User has read access to Certificates Administration\";s:12:\"cert_visible\";s:38:\"Certificates Administration is visible\";s:10:\"cert_write\";s:53:\"User can edit settings in Certificates Administration\";s:32:\"change_existing_object_type_desc\";s:78:\"This will also change the permissions of already existing objects of that type\";s:28:\"change_existing_objects_desc\";s:215:\"The permission settings of this role will be adopted to ALL existing objects. If you want to change permissions only for specific object types please click the checkboxes to the right of the appropriate object type.\";s:23:\"change_existing_objects\";s:23:\"Change Existing Objects\";s:29:\"change_existing_prefix_single\";s:6:\"Change\";s:22:\"change_existing_prefix\";s:15:\"Change Existing\";s:29:\"change_existing_suffix_single\";s:6:\" \";s:22:\"change_existing_suffix\";s:6:\" \";s:8:\"crs_copy\";s:20:\"User can copy course\";s:16:\"rbac_create_fold\";s:13:\"Create Folder\";s:10:\"crs_delete\";s:30:\"User can move or delete course\";s:26:\"crs_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"crs_edit_permission\";s:35:\"User can change permission settings\";s:8:\"crs_join\";s:20:\"User can join course\";s:9:\"crs_leave\";s:32:\"User can unsubscribe from course\";s:8:\"crs_read\";s:30:\"User has read access to course\";s:11:\"crs_visible\";s:17:\"Course is visible\";s:9:\"crs_write\";s:48:\"User can edit course settings and manage content\";s:19:\"edit_roleassignment\";s:20:\"Edit role assignment\";s:8:\"exc_copy\";s:22:\"User can copy exercise\";s:10:\"exc_delete\";s:32:\"User can move or delete exercise\";s:26:\"exc_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"exc_edit_permission\";s:35:\"User can change permission settings\";s:8:\"exc_read\";s:32:\"User can participate at exercise\";s:11:\"exc_visible\";s:19:\"Exercise is visible\";s:9:\"exc_write\";s:50:\"User can edit settings and assignments of exercise\";s:20:\"extt_edit_permission\";s:74:\"User can change permission settings of Third Party Software administration\";s:9:\"extt_read\";s:62:\"User has read access to administration of Third Party Software\";s:12:\"extt_visible\";s:49:\"Administration of Third Party Software is visible\";s:10:\"extt_write\";s:46:\"User can edit settings of Third Party Software\";s:11:\"feed_delete\";s:32:\"User can move or delete web feed\";s:20:\"feed_edit_permission\";s:35:\"User can change permission settings\";s:9:\"feed_read\";s:33:\"User can read content of web feed\";s:10:\"feed_write\";s:31:\"User can edit web feed settings\";s:9:\"file_copy\";s:18:\"User can copy file\";s:11:\"file_delete\";s:28:\"User can move or delete file\";s:20:\"file_edit_permission\";s:35:\"User can change permission settings\";s:9:\"file_read\";s:22:\"User can download file\";s:12:\"file_visible\";s:15:\"File is visible\";s:10:\"file_write\";s:58:\"User can edit file settings and upload new version of file\";s:9:\"fold_copy\";s:20:\"User can copy folder\";s:11:\"fold_delete\";s:30:\"User can move or delete folder\";s:27:\"fold_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:20:\"fold_edit_permission\";s:35:\"User can change permission settings\";s:9:\"fold_read\";s:30:\"User has read access to folder\";s:12:\"fold_visible\";s:17:\"Folder is visible\";s:10:\"fold_write\";s:51:\"User can edit settings of folder and manage content\";s:13:\"frm_add_reply\";s:28:\"Users can reply to a posting\";s:14:\"frm_add_thread\";s:25:\"User can add a new thread\";s:8:\"frm_copy\";s:19:\"User can copy forum\";s:10:\"frm_delete\";s:29:\"User can move or delete forum\";s:19:\"frm_edit_permission\";s:35:\"User can change permission settings\";s:16:\"frm_moderate_frm\";s:41:\"User can edit, censor and delete postings\";s:8:\"frm_read\";s:27:\"User can read forum content\";s:11:\"frm_visible\";s:16:\"Forum is visible\";s:9:\"frm_write\";s:43:\"User can edit forum settings and moderators\";s:8:\"glo_copy\";s:22:\"User can copy glossary\";s:10:\"glo_delete\";s:32:\"User can move or delete glossary\";s:19:\"glo_edit_permission\";s:35:\"User can change permission settings\";s:8:\"glo_read\";s:30:\"User can read glossary content\";s:11:\"glo_visible\";s:19:\"Glossary is visible\";s:9:\"glo_write\";s:46:\"User can edit content and settings of glossary\";s:8:\"grp_copy\";s:19:\"User can copy group\";s:10:\"grp_delete\";s:29:\"User can move or delete group\";s:26:\"grp_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"grp_edit_permission\";s:35:\"User can change permission settings\";s:8:\"grp_join\";s:19:\"User can join group\";s:9:\"grp_leave\";s:31:\"User can unsubscribe from group\";s:8:\"grp_read\";s:29:\"User has read access to group\";s:11:\"grp_visible\";s:16:\"Group is visible\";s:9:\"grp_write\";s:47:\"User can edit group settings and manage content\";s:9:\"htlm_copy\";s:34:\"User can copy HTML learning module\";s:11:\"htlm_delete\";s:44:\"User can move or delete HTML learning module\";s:27:\"htlm_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:20:\"htlm_edit_permission\";s:35:\"User can change permission settings\";s:9:\"htlm_read\";s:34:\"User can read HTML learning module\";s:12:\"htlm_visible\";s:31:\"HTML learning module is visible\";s:10:\"htlm_write\";s:58:\"User can edit content and settings of HTML learning module\";s:7:\"lm_copy\";s:35:\"User can copy ILIAS learning module\";s:9:\"lm_delete\";s:45:\"User can move or delete ILIAS learning module\";s:25:\"lm_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:18:\"lm_edit_permission\";s:35:\"User can change permission settings\";s:7:\"lm_read\";s:35:\"User can read ILIAS learning module\";s:10:\"lm_visible\";s:32:\"ILIAS Learning Module is visible\";s:8:\"lm_write\";s:59:\"User can edit content and settings of ILIAS learning module\";s:20:\"lngf_edit_permission\";s:62:\"User can change permission settings of Language administration\";s:9:\"lngf_read\";s:47:\"User has read access to Language administration\";s:12:\"lngf_visible\";s:34:\"Language administration is visible\";s:10:\"lngf_write\";s:87:\"User can edit settings in Language administration and use extended language maintenance\";s:20:\"lrss_edit_permission\";s:72:\"User can change permission settings of Learning Resources administration\";s:9:\"lrss_read\";s:51:\"Read access to administration of Learning Resources\";s:12:\"lrss_visible\";s:47:\"Administration of Learning Resources is visible\";s:10:\"lrss_write\";s:62:\"User can edit settings of Learning Resources in administration\";s:9:\"mail_read\";s:43:\"User has read access to Mail administration\";s:14:\"mail_smtp_mail\";s:52:\"User can send e-mails per SMTP to external addresses\";s:12:\"mail_visible\";s:30:\"Mail administration is visible\";s:10:\"mail_write\";s:45:\"User can edit settings in Mail administration\";s:9:\"mcst_copy\";s:23:\"User can copy mediacast\";s:11:\"mcst_delete\";s:33:\"User can move or delete mediacast\";s:20:\"mcst_edit_permission\";s:35:\"User can change permission settings\";s:9:\"mcst_read\";s:23:\"User can read mediacast\";s:12:\"mcst_visible\";s:20:\"Mediacast is visible\";s:10:\"mcst_write\";s:47:\"User can edit content and settings of mediacast\";s:10:\"mep_delete\";s:34:\"User can move or delete media pool\";s:19:\"mep_edit_permission\";s:35:\"User can change permission settings\";s:8:\"mep_read\";s:62:\"User has read access to media pool and can reuse media objects\";s:11:\"mep_visible\";s:21:\"Media pool is visible\";s:9:\"mep_write\";s:48:\"User can edit content and settings of media pool\";s:20:\"mobs_edit_permission\";s:73:\"User can change permission settings in Media Objects/Pools administration\";s:9:\"mobs_read\";s:58:\"User has read access to Media Objects/Pools administration\";s:12:\"mobs_visible\";s:45:\"Media Objects/Pools administration is visible\";s:10:\"mobs_write\";s:60:\"User can edit settings in Media Objects/Pools administration\";s:20:\"nwss_edit_permission\";s:72:\"User can change permission settings in News and Web Feeds administration\";s:9:\"nwss_read\";s:56:\"User has read access to ews and Web Feeds administration\";s:12:\"nwss_visible\";s:44:\"News and Web Feeds administration is visible\";s:10:\"nwss_write\";s:59:\"User can edit settings in News and Web Feeds administration\";s:18:\"ps_edit_permission\";s:70:\"User can change permission settings of Privacy/Security administration\";s:21:\"ps_export_member_data\";s:49:\"User can export member data in courses and groups\";s:7:\"ps_read\";s:55:\"User has read access to Privacy/Security administration\";s:10:\"ps_visible\";s:42:\"Privacy/Security administration is visible\";s:8:\"ps_write\";s:57:\"User can edit settings in Privacy/Security administration\";s:8:\"qpl_copy\";s:37:\"User can copy question pool for tests\";s:10:\"qpl_delete\";s:37:\"User can move or delete question pool\";s:19:\"qpl_edit_permission\";s:35:\"User can change permission settings\";s:8:\"qpl_read\";s:61:\"User can read test questions in pool and insert them in tests\";s:11:\"qpl_visible\";s:24:\"Question pool is visible\";s:9:\"qpl_write\";s:58:\"User can edit test questions and settings of question pool\";s:15:\"rbac_create_cat\";s:17:\"Create Categories\";s:20:\"root_edit_permission\";s:35:\"User can change permission settings\";s:9:\"root_read\";s:48:\"User has read access to Repository - Home\";s:12:\"root_visible\";s:35:\"Repository - Home is visible\";s:10:\"root_write\";s:69:\"User can edit settings of Repository - Home and manage content\";s:9:\"sahs_copy\";s:35:\"User can copy SCORM learning module\";s:11:\"sahs_delete\";s:45:\"User can move or delete SCORM learning module\";s:27:\"sahs_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:20:\"sahs_edit_permission\";s:35:\"User can change permission settings\";s:9:\"sahs_read\";s:35:\"User can read SCORM learning module\";s:12:\"sahs_visible\";s:32:\"SCORM learning module is visible\";s:10:\"sahs_write\";s:59:\"User can edit content and settings of SCORM learning module\";s:20:\"seas_edit_permission\";s:60:\"User can change permission settings or Search administration\";s:9:\"seas_read\";s:45:\"User has read access to Search administration\";s:11:\"seas_search\";s:39:\"User can use the global search in ILIAS\";s:12:\"seas_visible\";s:32:\"Search administration is visible\";s:10:\"seas_write\";s:38:\"Edit settings in Search administration\";s:9:\"sess_copy\";s:21:\"User can copy session\";s:8:\"spl_copy\";s:39:\"User can copy question pool for surveys\";s:10:\"spl_delete\";s:37:\"User can move or delete question pool\";s:19:\"spl_edit_permission\";s:35:\"User can change permission settings\";s:8:\"spl_read\";s:64:\"User can read survey questions in pool and insert them in survey\";s:11:\"spl_visible\";s:24:\"Question pool is visible\";s:9:\"spl_write\";s:60:\"User can edit survey questions and settings of question pool\";s:20:\"stys_edit_permission\";s:71:\"User can change permission settings of Layout and Styles administration\";s:9:\"stys_read\";s:56:\"User has read access to Layout and Styles administration\";s:12:\"stys_visible\";s:43:\"Layout and Styles administration is visible\";s:8:\"svy_copy\";s:20:\"User can copy survey\";s:10:\"svy_delete\";s:30:\"User can move or delete survey\";s:19:\"svy_edit_permission\";s:35:\"User can change permission settings\";s:10:\"svy_invite\";s:34:\"User can invite others to a survey\";s:8:\"svy_read\";s:32:\"User can participate at a survey\";s:11:\"svy_visible\";s:17:\"Survey is visible\";s:9:\"svy_write\";s:44:\"User can edit content and settings of survey\";s:20:\"tags_edit_permission\";s:61:\"User can change permission settings in Tagging administration\";s:9:\"tags_read\";s:46:\"User has read access to Tagging administration\";s:12:\"tags_visible\";s:33:\"Tagging administration is visible\";s:10:\"tags_write\";s:48:\"User can edit settings in Tagging administration\";s:11:\"trac_delete\";s:29:\"User can delete tracking data\";s:20:\"trac_edit_permission\";s:77:\"Change permission settings in Statistics and Learning Progress administration\";s:9:\"trac_read\";s:71:\"User has read access to Statistics and Learning Progress administration\";s:12:\"trac_visible\";s:58:\"Statistics and Learning Progress administration is visible\";s:8:\"tst_copy\";s:18:\"User can copy test\";s:10:\"tst_delete\";s:28:\"User can move or delete test\";s:26:\"tst_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"tst_edit_permission\";s:35:\"User can change permission settings\";s:8:\"tst_read\";s:25:\"User can perform the test\";s:15:\"tst_tst_results\";s:41:\"User has access to test results of others\";s:11:\"tst_visible\";s:15:\"Test is visible\";s:9:\"tst_write\";s:42:\"User can edit content and settings of test\";s:11:\"usrf_delete\";s:29:\"User can delete user accounts\";s:20:\"usrf_edit_permission\";s:58:\"User can change permission settings in User administration\";s:24:\"usrf_edit_roleassignment\";s:47:\"User can change role assignment of user account\";s:23:\"usrf_push_desktop_items\";s:60:\"User is allowed to add recommended content for role members.\";s:15:\"usrf_read_users\";s:66:\"User has read access to local user accounts (local administrators)\";s:9:\"usrf_read\";s:43:\"User has read access to User administration\";s:12:\"usrf_visible\";s:30:\"User administration is visible\";s:10:\"usrf_write\";s:36:\"Edit settings in User administration\";s:9:\"webr_copy\";s:21:\"User can copy weblink\";s:11:\"webr_delete\";s:31:\"User can move or delete weblink\";s:20:\"webr_edit_permission\";s:35:\"User can change permission settings\";s:9:\"webr_read\";s:30:\"User can read and use weblinks\";s:12:\"webr_visible\";s:18:\"Weblink is visible\";s:10:\"webr_write\";s:34:\"User can edit settings of weblinks\";s:9:\"wiki_copy\";s:18:\"User can copy wiki\";s:11:\"wiki_delete\";s:28:\"User can move or delete wiki\";s:17:\"wiki_edit_content\";s:35:\"User can create and edit wiki pages\";s:20:\"wiki_edit_permission\";s:35:\"User can change permission settings\";s:9:\"wiki_read\";s:26:\"User can read wiki content\";s:12:\"wiki_visible\";s:15:\"Wiki is visible\";s:10:\"wiki_write\";s:30:\"User can edit settings of wiki\";s:24:\"upload_blacklisted_files\";s:16:\"Bypass blacklist\";s:29:\"facs_upload_blacklisted_files\";s:43:\"Upload indexed file types despite blacklist\";s:15:\"cals_edit_event\";s:61:\"User can create and edit public calendars and events in ILIAS\";s:20:\"cals_edit_permission\";s:63:\"User can change permission settings for Calendar administration\";s:9:\"cals_read\";s:47:\"User has read access to Calendar Administration\";s:12:\"cals_visible\";s:34:\"Calendar Administration is visible\";s:10:\"cals_write\";s:49:\"User can edit settings of Calendar Administration\";s:9:\"catr_copy\";s:27:\"User can copy category link\";s:11:\"catr_delete\";s:37:\"User can move or delete category link\";s:20:\"catr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"catr_visible\";s:24:\"Category link is visible\";s:10:\"catr_write\";s:39:\"User can edit settings of category link\";s:20:\"cmps_edit_permission\";s:83:\"User can change permission settings of Plugins, Modules and Services administration\";s:9:\"cmps_read\";s:71:\"User has read access to administration of Plugins, Modules and Services\";s:12:\"cmps_visible\";s:67:\"Administration of Plugins, Modules and Services settings is visible\";s:10:\"cmps_write\";s:55:\"User can edit settings of Plugins, Modules and Services\";s:16:\"rbac_create_sess\";s:14:\"Create Session\";s:14:\"crs_edit_event\";s:20:\"Edit Calendar Events\";s:9:\"crsr_copy\";s:25:\"User can copy course link\";s:11:\"crsr_delete\";s:35:\"User can move or delete course link\";s:20:\"crsr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"crsr_visible\";s:22:\"Course link is visible\";s:10:\"crsr_write\";s:37:\"User can edit settings of course link\";s:22:\"edit_learning_progress\";s:22:\"Edit Learning Progress\";s:20:\"facs_edit_permission\";s:71:\"User can change permission settings of Files and Folders administration\";s:9:\"facs_read\";s:59:\"User has read access to administration of Files and Folders\";s:12:\"facs_visible\";s:46:\"Administration of Files and Folders is visible\";s:10:\"facs_write\";s:61:\"User can edit settings in administration of Files and Folders\";s:16:\"filter_all_roles\";s:33:\"Show all roles of current context\";s:19:\"filter_global_roles\";s:22:\"Show only global roles\";s:25:\"filter_local_roles_object\";s:46:\"Show only local roles defined at this position\";s:18:\"filter_local_roles\";s:40:\"Show only local roles of current context\";s:25:\"filter_roles_local_policy\";s:53:\"Show only roles using a local policy at this position\";s:14:\"grp_edit_event\";s:20:\"Edit Calendar Events\";s:22:\"info_user_view_changed\";s:17:\"User view changed\";s:5:\"leave\";s:11:\"Unsubscribe\";s:20:\"mcts_edit_permission\";s:63:\"User can change permission settings in Mediacast administration\";s:9:\"mcts_read\";s:48:\"User has read access to Mediacast administration\";s:12:\"mcts_visible\";s:35:\"Mediacast administration is visible\";s:10:\"mcts_write\";s:50:\"User can edit settings in Mediacast administration\";s:19:\"mds_edit_permission\";s:62:\"User can change permission settings in Metadata administration\";s:8:\"mds_read\";s:47:\"User has read access to Metadata administration\";s:11:\"mds_visible\";s:34:\"Metadata administration is visible\";s:9:\"mds_write\";s:49:\"User can edit settings in Metadata administration\";s:20:\"msg_no_roles_of_type\";s:47:\"No Roles available with selected filter setting\";s:11:\"mme_visible\";s:38:\"Administration of Main Menu is visible\";s:8:\"mme_read\";s:51:\"User has read access to administration of Main Menu\";s:9:\"mme_write\";s:50:\"User can edit settings of Main Menu administration\";s:19:\"mme_edit_permission\";s:63:\"User can change permission settings of Main Menu administration\";s:20:\"dshs_edit_permission\";s:63:\"User can change permission settings of Dashboard administration\";s:9:\"dshs_read\";s:48:\"User has read access to Dashboard administration\";s:12:\"dshs_visible\";s:35:\"Dashboard administration is visible\";s:10:\"dshs_write\";s:41:\"Edit settings of Dashboard administration\";s:22:\"perm_class_create_desc\";s:69:\"Determine which object types may be created under the current object.\";s:17:\"perm_class_create\";s:18:\"Create new Objects\";s:22:\"perm_class_object_desc\";s:27:\"Object-specific operations.\";s:17:\"perm_class_object\";s:18:\"Special Operations\";s:20:\"perm_local_role_desc\";s:83:\"This role is locally defined at the current object and correspond to a local policy\";s:15:\"perm_local_role\";s:10:\"Local Role\";s:26:\"perm_use_local_policy_desc\";s:106:\"If local policy is activated, you may define different default permission settings for the current object.\";s:21:\"perm_use_local_policy\";s:16:\"Use local policy\";s:32:\"rbac_change_existing_confirm_tbl\";s:42:\"Settings for ‘Change Existing Objects’\";s:31:\"rbac_delete_local_policies_info\";s:105:\"If activated, all local policies will be deleted. The object permissions will be rewritten and protected.\";s:26:\"rbac_delete_local_policies\";s:21:\"Delete Local Policies\";s:16:\"rbac_delete_role\";s:11:\"Delete Role\";s:29:\"rbac_keep_local_policies_info\";s:131:\"Choose this mode for keeping all local policies. The object permissions will be adapted to these policies and afterwards protected.\";s:24:\"rbac_keep_local_policies\";s:19:\"Keep Local Policies\";s:19:\"rbac_local_policies\";s:14:\"Local Policies\";s:20:\"rbac_role_delete_qst\";s:122:\"Are you sure you want to delete the following role?
All permissions granted by this role will be deleted permanently.\";s:21:\"rbac_role_delete_self\";s:143:\"Attention: You are assigned to this role. If you continue this delete operation, you may loose access to some ILIAS materials.\";s:22:\"rbac_role_exists_alert\";s:85:\"A role with the same name already exists in this context. Please choose another name.\";s:43:\"rbac_unprotected_delete_local_policies_info\";s:110:\"If activated, all local policies will be deleted. Permissions in courses and groups will be newly initialized.\";s:41:\"rbac_unprotected_keep_local_policies_info\";s:44:\"Choose this mode to keep all local policies.\";s:11:\"rcrs_delete\";s:34:\"User can move or delete ECS Course\";s:20:\"rcrs_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rcrs_read\";s:23:\"User can use ECS Course\";s:12:\"rcrs_visible\";s:21:\"ECS Course is visible\";s:10:\"rcrs_write\";s:36:\"User can edit settings of ECS Course\";s:20:\"recf_edit_permission\";s:70:\"User can change permission settings of Restored Objects administration\";s:9:\"recf_read\";s:55:\"User has read access to Restored Objects administration\";s:12:\"recf_visible\";s:42:\"Restored Objects administration is visible\";s:10:\"recf_write\";s:68:\"Edit Settings and restore objects in Restored Objects administration\";s:16:\"rbac_create_catr\";s:20:\"Create Category Link\";s:15:\"rbac_create_crs\";s:13:\"Create Course\";s:16:\"rbac_create_crsr\";s:18:\"Create Course Link\";s:15:\"rbac_create_exc\";s:15:\"Create Exercise\";s:16:\"rbac_create_feed\";s:15:\"Create Web Feed\";s:16:\"rbac_create_file\";s:11:\"Upload File\";s:15:\"rbac_create_frm\";s:12:\"Create Forum\";s:15:\"rbac_create_glo\";s:15:\"Create Glossary\";s:15:\"rbac_create_grp\";s:12:\"Create Group\";s:16:\"rbac_create_htlm\";s:27:\"Create HTML Learning Module\";s:14:\"rbac_create_lm\";s:28:\"Create ILIAS Learning Module\";s:16:\"rbac_create_mcst\";s:16:\"Create Mediacast\";s:15:\"rbac_create_mep\";s:17:\"Create Media Pool\";s:15:\"rbac_create_qpl\";s:25:\"Create Question Pool Test\";s:16:\"rbac_create_rcrs\";s:17:\"Create ECS Course\";s:16:\"rbac_create_sahs\";s:28:\"Create SCORM Learning Module\";s:15:\"rbac_create_spl\";s:27:\"Create Question Pool Survey\";s:15:\"rbac_create_svy\";s:13:\"Create Survey\";s:15:\"rbac_create_tst\";s:11:\"Create Test\";s:16:\"rbac_create_webr\";s:14:\"Create Weblink\";s:16:\"rbac_create_wiki\";s:11:\"Create Wiki\";s:11:\"sess_delete\";s:31:\"User can move or delete session\";s:15:\"sess_edit_event\";s:20:\"Edit Calendar Events\";s:20:\"sess_edit_permission\";s:35:\"User can change permission settings\";s:9:\"sess_read\";s:32:\"User has read access to sessions\";s:12:\"sess_visible\";s:20:\"Sessions are visible\";s:10:\"sess_write\";s:42:\"User can edit session content and settings\";s:20:\"svyf_edit_permission\";s:56:\"User change permission settings in Survey administration\";s:9:\"svyf_read\";s:45:\"User has read access to Survey administration\";s:12:\"svyf_visible\";s:32:\"Survey administration is visible\";s:10:\"svyf_write\";s:38:\"Edit settings in Survey administration\";s:11:\"wfe_visible\";s:44:\"Administration of Workflow Engine is visible\";s:8:\"wfe_read\";s:57:\"User has read access to administration of Workflow Engine\";s:9:\"wfe_write\";s:56:\"User can edit settings of Workflow Engine administration\";s:19:\"wfe_edit_permission\";s:69:\"User can change permission settings of Workflow Engine administration\";s:25:\"mail_mail_to_global_roles\";s:35:\"User can send mails to global roles\";s:30:\"rbac_msg_user_already_assigned\";s:51:\"The chosen users are already assigned to this role.\";s:23:\"rbac_add_new_local_role\";s:18:\"Add New Local Role\";s:27:\"cals_add_consultation_hours\";s:54:\"User can offer and edit consultation hours in calendar\";s:8:\"rbac_log\";s:3:\"Log\";s:12:\"rbac_changes\";s:7:\"Changes\";s:22:\"rbac_log_operation_add\";s:24:\"Added Operation for \"%s\"\";s:22:\"rbac_log_operation_rmv\";s:26:\"Removed Operation for \"%s\"\";s:24:\"rbac_log_inheritance_add\";s:28:\"Stopped Inheritance for \"%s\"\";s:24:\"rbac_log_inheritance_rmv\";s:28:\"Allowed Inheritance for \"%s\"\";s:22:\"rbac_log_source_object\";s:13:\"Source object\";s:25:\"rbac_log_edit_permissions\";s:16:\"Edit Permissions\";s:20:\"rbac_log_move_object\";s:11:\"Move Object\";s:20:\"rbac_log_link_object\";s:11:\"Link Object\";s:20:\"rbac_log_copy_object\";s:11:\"Copy Object\";s:22:\"rbac_log_create_object\";s:13:\"Create Object\";s:22:\"rbac_log_edit_template\";s:18:\"Edit Role Template\";s:31:\"rbac_log_edit_template_existing\";s:38:\"Use Role Template for Existing Objects\";s:21:\"rbac_log_change_owner\";s:22:\"Change Owner of Object\";s:22:\"rbac_log_changed_owner\";s:16:\"Changed Owner to\";s:21:\"rbac_role_rights_copy\";s:16:\"Copy Permissions\";s:27:\"rbac_role_rights_copy_empty\";s:4:\"None\";s:37:\"rbac_role_rights_copy_change_existing\";s:23:\"Change Existing Objects\";s:16:\"perm_global_role\";s:11:\"Global Role\";s:26:\"perm_protected_global_role\";s:21:\"Protected Global Role\";s:25:\"perm_protected_local_role\";s:20:\"Protected Local Role\";s:27:\"perm_role_path_info_created\";s:22:\"Created in %1$s \"%2$s\"\";s:31:\"perm_role_path_info_inheritance\";s:35:\"using local policy from %1$s \"%2$s\"\";s:10:\"read_users\";s:28:\"Read Access to User Accounts\";s:22:\"cat_administrate_users\";s:32:\"Administrate Local User Accounts\";s:15:\"edit_permission\";s:18:\"Change Permissions\";s:10:\"edit_event\";s:13:\"Edit Calendar\";s:20:\"book_edit_permission\";s:52:\"User can change permission settings for booking pool\";s:12:\"book_visible\";s:23:\"Booking pool is visible\";s:9:\"book_read\";s:49:\"User can book resources / objects in booking pool\";s:11:\"book_delete\";s:36:\"User can move or delete booking pool\";s:10:\"book_write\";s:50:\"User can edit settings and content of booking pool\";s:16:\"rbac_create_book\";s:19:\"Create Booking Pool\";s:5:\"write\";s:13:\"Edit Settings\";s:17:\"rbac_local_policy\";s:12:\"Local Policy\";s:15:\"role_block_role\";s:10:\"Block Role\";s:23:\"role_confirm_block_role\";s:16:\"Save Role Status\";s:12:\"role_blocked\";s:29:\": Role will be blocked\";s:14:\"role_unblocked\";s:31:\": Role will be unblocked\";s:20:\"role_block_role_desc\";s:67:\"The access to this and all subordinated objects is will be revoked.\";s:28:\"role_confirm_block_role_info\";s:208:\"The following steps will be performed for the action \"Block Role\":

- the role permissions of this and all subordinated objects will be blocked.
- the new permission settings will be protected.\";s:30:\"role_confirm_unblock_role_info\";s:115:\"The following steps will be performed for the action \"Unblock Role\":

- the local policy will be deleted.\";s:30:\"role_confirm_block_role_header\";s:71:\"Do you really want to change the block role status of the chosen roles?\";s:9:\"smtp_mail\";s:11:\"SMTP E-Mail\";s:20:\"mail_to_global_roles\";s:12:\"Global Mails\";s:9:\"add_reply\";s:9:\"Add Reply\";s:10:\"add_thread\";s:10:\"Add Thread\";s:12:\"moderate_frm\";s:8:\"Moderate\";s:27:\"rbac_repository_permissions\";s:22:\"Repository Permissions\";s:22:\"rbac_admin_permissions\";s:26:\"Administration Permissions\";s:22:\"add_consultation_hours\";s:22:\"Add Consultation Hours\";s:18:\"export_member_data\";s:16:\"Access User Data\";s:42:\"rbac_change_existing_objects_desc_new_role\";s:77:\"The permission settings of this role will be adopted to ALL existing objects.\";s:12:\"frma_visible\";s:31:\"Forum Administration is visible\";s:9:\"frma_read\";s:44:\"User has read access to Forum Administration\";s:10:\"frma_write\";s:46:\"User can edit settings in Forum Administration\";s:20:\"frma_edit_permission\";s:59:\"User can change permission settings of Forum administration\";s:15:\"rbac_create_usr\";s:39:\"User is allowed to create user accounts\";s:27:\"precondition_obligatory_alt\";s:30:\"Precondition must be fulfilled\";s:31:\"precondition_not_obligatory_alt\";s:24:\"Precondition is optional\";s:20:\"active_preconditions\";s:13:\"Preconditions\";s:23:\"precondition_obligatory\";s:10:\"Compulsory\";s:28:\"precondition_obligatory_info\";s:62:\"Compulsory preconditions must be fulfilled, for having access.\";s:32:\"precondition_obligatory_settings\";s:21:\"Precondition Settings\";s:27:\"precondition_num_obligatory\";s:28:\"Number of Required Materials\";s:30:\"precondition_num_optional_info\";s:83:\"Please enter the minimum number of materials required to fulfill this precondition.\";s:6:\"invite\";s:18:\"Inviting to survey\";s:16:\"rbac_global_rolt\";s:20:\"Global Role Template\";s:19:\"rbac_role_selection\";s:9:\"Role Type\";s:16:\"rbac_auto_global\";s:26:\"Auto generated global role\";s:14:\"rbac_ud_global\";s:24:\"User defined global role\";s:15:\"rbac_auto_local\";s:25:\"Auto generated local role\";s:13:\"rbac_ud_local\";s:23:\"User defined local role\";s:14:\"rbac_auto_rolt\";s:28:\"Auto generated role template\";s:12:\"rbac_ud_rolt\";s:26:\"User defined role template\";s:19:\"rbac_context_global\";s:6:\"Global\";s:12:\"chtr_visible\";s:20:\"Chat Room is visible\";s:9:\"chtr_read\";s:42:\"User can join and participate at chat room\";s:10:\"chtr_write\";s:49:\"User can edit settings of chat room and ban users\";s:20:\"chtr_edit_permission\";s:49:\"User can change Permission Settings for Chat Room\";s:13:\"chtr_moderate\";s:41:\"User can moderate discussion in chat room\";s:12:\"otpl_visible\";s:47:\"Administration of Didactic Templates is visible\";s:9:\"otpl_read\";s:57:\"User has read access to Didactic Templates administration\";s:10:\"otpl_write\";s:44:\"User can edit settings of Didactic Templates\";s:20:\"otpl_edit_permission\";s:75:\"User can change permission settings in administration of Didactic Templates\";s:21:\"rbac_back_to_overview\";s:17:\"Back to Role List\";s:24:\"rbac_choose_copy_targets\";s:52:\"Please enter a query for selecting the target roles.\";s:24:\"rbac_select_copy_targets\";s:30:\"Please select the target roles\";s:15:\"rbac_role_title\";s:10:\"Role Title\";s:19:\"rbac_copy_behaviour\";s:18:\"Role Copy Settings\";s:32:\"rbac_not_change_existing_objects\";s:30:\"Do NOT change existing objects\";s:14:\"rbac_copy_role\";s:9:\"Copy Role\";s:18:\"rbac_copy_finished\";s:17:\"Finished copying.\";s:24:\"rbac_precondition_source\";s:17:\"Condition Trigger\";s:24:\"rbac_precondition_target\";s:26:\"Condition limits access to\";s:22:\"rbac_precondition_mode\";s:4:\"Mode\";s:26:\"rbac_precondition_mode_all\";s:17:\"All Preconditions\";s:31:\"rbac_precondition_mode_all_info\";s:54:\"All preconditions need to be fulfilled to give access.\";s:29:\"rbac_precondition_mode_subset\";s:23:\"Subset of Preconditions\";s:34:\"rbac_precondition_mode_subset_info\";s:113:\"A subset of preconditions need to be fulfilled to give access. Some preconditions may still be set as compulsory.\";s:33:\"rbac_precondition_save_obligatory\";s:15:\"Save Compulsory\";s:34:\"rbac_precondition_minimum_optional\";s:49:\"At least 2 preconditions have to remain optional.\";s:12:\"prfa_visible\";s:35:\"Portfolio administration is visible\";s:9:\"prfa_read\";s:48:\"User has read access to Portfolio administration\";s:10:\"prfa_write\";s:50:\"User can edit settings in Portfolio administration\";s:20:\"prfa_edit_permission\";s:63:\"User can change permission settings of Portfolio administration\";s:12:\"skmg_visible\";s:47:\"Competence Management administration is visible\";s:9:\"skmg_read\";s:63:\"User has read access to administration of Competence Management\";s:10:\"skmg_write\";s:47:\"User can edit settings of Competence Management\";s:20:\"skmg_edit_permission\";s:75:\"User can change permission settings of Competence Management administration\";s:12:\"blga_visible\";s:30:\"Blog Administration is visible\";s:9:\"blga_read\";s:43:\"User has read access to Blog Administration\";s:10:\"blga_write\";s:45:\"User can edit settings in Blog Administration\";s:20:\"blga_edit_permission\";s:58:\"User can change permission settings of Blog administration\";s:8:\"moderate\";s:8:\"Moderate\";s:16:\"rbac_create_chtr\";s:16:\"Create Chat Room\";s:19:\"rbac_edit_condition\";s:17:\"Edit Precondition\";s:26:\"rbac_condition_delete_sure\";s:60:\"Are you sure you want to delete the following preconditions?\";s:18:\"tst_tst_statistics\";s:34:\"User has access to test statistics\";s:12:\"blog_visible\";s:15:\"Blog is visible\";s:9:\"blog_read\";s:26:\"User can read blog content\";s:9:\"blog_copy\";s:18:\"User can copy blog\";s:10:\"blog_write\";s:27:\"User can edit blog settings\";s:11:\"blog_delete\";s:28:\"User can move or delete blog\";s:20:\"blog_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_blog\";s:11:\"Create Blog\";s:10:\"trac_write\";s:64:\"Edit settings in Statistics and Learning Progress administration\";s:11:\"dcl_visible\";s:26:\"Data Collection is visible\";s:8:\"dcl_read\";s:30:\"Read access to Data Collection\";s:8:\"dcl_copy\";s:29:\"User can copy data collection\";s:9:\"dcl_write\";s:53:\"User can edit settings and content of data collection\";s:10:\"dcl_delete\";s:39:\"User can move or delete data collection\";s:19:\"dcl_edit_permission\";s:35:\"User can change permission settings\";s:13:\"dcl_add_entry\";s:25:\"User can add/edit entries\";s:15:\"rbac_create_dcl\";s:22:\"Create Data Collection\";s:12:\"poll_visible\";s:15:\"Poll is visible\";s:9:\"poll_read\";s:28:\"User can participate at poll\";s:10:\"poll_write\";s:39:\"User can edit poll settings and content\";s:11:\"poll_delete\";s:28:\"User can move or delete poll\";s:9:\"poll_copy\";s:18:\"User can copy poll\";s:20:\"poll_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_poll\";s:11:\"Create Poll\";s:15:\"fld_create_poll\";s:11:\"Create Poll\";s:20:\"hlps_edit_permission\";s:58:\"User can change permissions of Help System administration.\";s:9:\"hlps_read\";s:51:\"User has read access to Help System administration.\";s:12:\"hlps_visible\";s:38:\"Help System administration is visible.\";s:10:\"hlps_write\";s:61:\"User can edit settings of Help System and upload new versions\";s:16:\"rbac_import_role\";s:11:\"Import Role\";s:18:\"rbac_role_imported\";s:27:\"The role has been imported.\";s:13:\"internal_mail\";s:13:\"Internal Mail\";s:18:\"mail_internal_mail\";s:41:\"User can use internal mail system (ILIAS)\";s:9:\"itgr_read\";s:32:\"User can see items in item group\";s:10:\"itgr_write\";s:48:\"User can edit content and settings of item group\";s:9:\"itgr_copy\";s:24:\"User can copy item group\";s:11:\"itgr_delete\";s:34:\"User can move or delete item group\";s:20:\"itgr_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_itgr\";s:17:\"Create Item Group\";s:10:\"contribute\";s:10:\"Contribute\";s:15:\"blog_contribute\";s:24:\"User can create postings\";s:14:\"lp_other_users\";s:45:\"See learning progress overview of other users\";s:19:\"trac_lp_other_users\";s:45:\"See learning progress overview of other users\";s:20:\"ecss_edit_permission\";s:55:\"User can edit permission settings of ECS administration\";s:9:\"ecss_read\";s:34:\"User can read general ECS settings\";s:12:\"ecss_visible\";s:24:\"ECS settings are visible\";s:10:\"ecss_write\";s:26:\"User can edit ECS settings\";s:11:\"rfil_delete\";s:32:\"User can move or delete ECS File\";s:20:\"rfil_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rfil_read\";s:21:\"User can use ECS File\";s:12:\"rfil_visible\";s:19:\"ECS File is visible\";s:10:\"rfil_write\";s:34:\"User can edit settings of ECS File\";s:11:\"rgrp_delete\";s:33:\"User can move or delete ECS Group\";s:20:\"rgrp_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rgrp_read\";s:22:\"User can use ECS Group\";s:12:\"rgrp_visible\";s:20:\"ECS Group is visible\";s:10:\"rgrp_write\";s:35:\"User can edit settings of ECS Group\";s:11:\"rglo_delete\";s:36:\"User can move or delete ECS Glossary\";s:20:\"rglo_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rglo_read\";s:25:\"User can use ECS Glossary\";s:12:\"rglo_visible\";s:23:\"ECS Glossary is visible\";s:10:\"rglo_write\";s:38:\"User can edit settings of ECS Glossary\";s:10:\"rlm_delete\";s:43:\"User can move or delete ECS Learning Module\";s:19:\"rlm_edit_permission\";s:35:\"User can change permission settings\";s:8:\"rlm_read\";s:32:\"User can use ECS Learning Module\";s:11:\"rlm_visible\";s:30:\"ECS Learning Module is visible\";s:9:\"rlm_write\";s:45:\"User can edit settings of ECS Learning Module\";s:11:\"rtst_delete\";s:32:\"User can move or delete ECS Test\";s:20:\"rtst_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rtst_read\";s:21:\"User can use ECS Test\";s:12:\"rtst_visible\";s:19:\"ECS Test is visible\";s:10:\"rtst_write\";s:34:\"User can edit settings of ECS Test\";s:11:\"rwik_delete\";s:32:\"User can move or delete ECS Wiki\";s:20:\"rwik_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rwik_read\";s:21:\"User can use ECS Wiki\";s:12:\"rwik_visible\";s:19:\"ECS Wiki is visible\";s:10:\"rwik_write\";s:34:\"User can edit settings of ECS Wiki\";s:11:\"rcat_delete\";s:36:\"User can move or delete ECS Category\";s:20:\"rcat_edit_permission\";s:35:\"User can change permission settings\";s:9:\"rcat_read\";s:25:\"User can use ECS Category\";s:12:\"rcat_visible\";s:23:\"ECS Category is visible\";s:10:\"rcat_write\";s:38:\"User can edit settings of ECS Category\";s:12:\"itgr_visible\";s:21:\"Item group is visible\";s:11:\"chtr_delete\";s:33:\"User can move or delete chat room\";s:16:\"dcl_edit_content\";s:12:\"Edit entries\";s:12:\"bibl_visible\";s:23:\"Bibliography is visible\";s:9:\"bibl_read\";s:34:\"User can read bibliography content\";s:9:\"bibl_copy\";s:17:\"Copy Bibliography\";s:10:\"bibl_write\";s:35:\"User can edit bibliography settings\";s:11:\"bibl_delete\";s:36:\"User can move or delete bibliography\";s:20:\"bibl_edit_permission\";s:35:\"User can change permission settings\";s:12:\"bibs_visible\";s:38:\"Bibliography-Administration is visible\";s:9:\"bibs_read\";s:34:\"User can read bibliography content\";s:10:\"bibs_write\";s:35:\"User can edit bibliography settings\";s:11:\"bibs_delete\";s:31:\"User can delete library entries\";s:9:\"bibs_copy\";s:26:\"User can copy bibliography\";s:20:\"bibs_edit_permission\";s:35:\"User can change permission settings\";s:19:\"edit_userassignment\";s:20:\"Edit User Assignment\";s:20:\"sysc_edit_permission\";s:44:\"User can change permissions of System Check.\";s:9:\"sysc_read\";s:37:\"User has read access to System Check.\";s:12:\"sysc_visible\";s:24:\"System Check is visible.\";s:10:\"sysc_write\";s:30:\"User can execute System Check.\";s:12:\"delete_files\";s:12:\"Delete Files\";s:16:\"cld_delete_files\";s:42:\"Users can delete Files in the cloud object\";s:14:\"delete_folders\";s:14:\"Delete Folders\";s:18:\"cld_delete_folders\";s:44:\"Users can delete Folders in the cloud object\";s:13:\"files_visible\";s:13:\"Files Visible\";s:17:\"cld_files_visible\";s:37:\"Files are visible in the cloud object\";s:15:\"folders_visible\";s:15:\"Folders Visible\";s:19:\"cld_folders_visible\";s:39:\"Folders are visible in the cloud object\";s:14:\"folders_create\";s:14:\"Create Folders\";s:18:\"cld_folders_create\";s:42:\"Folders may be created in the cloud object\";s:11:\"cld_visible\";s:23:\"Cloud Object is visible\";s:8:\"cld_read\";s:28:\"User can open a Cloud Object\";s:9:\"cld_write\";s:35:\"User can edit cloud object settings\";s:10:\"cld_delete\";s:28:\"User can delete cloud object\";s:14:\"cld_permission\";s:35:\"User can change permission settings\";s:10:\"cld_upload\";s:41:\"User can upload files to the cloud object\";s:12:\"cld_download\";s:45:\"User can download files from the cloud object\";s:19:\"cld_edit_permission\";s:35:\"User can change permission settings\";s:21:\"edit_in_online_editor\";s:21:\"Open in online editor\";s:25:\"cld_edit_in_online_editor\";s:45:\"User can open and edit files in online editor\";s:12:\"prtt_visible\";s:29:\"Portfolio Template is visible\";s:9:\"prtt_read\";s:42:\"User has read access to portfolio template\";s:9:\"prtt_copy\";s:32:\"User can copy portfolio template\";s:10:\"prtt_write\";s:56:\"User can edit settings and content of portfolio template\";s:11:\"prtt_delete\";s:42:\"User can move or delete portfolio template\";s:20:\"prtt_edit_permission\";s:58:\"User can change permission settings for portfolio template\";s:30:\"rbac_info_only_position_access\";s:213:\"You are presented only with those members with a Position within your organisational unit. Members with other organisational Positions are not shown to you but may reside in this coures without being shown to you.\";s:21:\"org_op_access_results\";s:36:\"Access Results of Subordinated Users\";s:26:\"org_op_manage_participants\";s:32:\"Manage Subordinated Participants\";s:25:\"org_op_score_participants\";s:31:\"Score Subordinated Participants\";s:30:\"org_op_write_learning_progress\";s:42:\"Set learning Progress of subordinate users\";s:30:\"org_op_edit_submissions_grades\";s:31:\"Edit submissions of other users\";s:24:\"org_op_view_certificates\";s:39:\"View certificates of subordinated users\";s:23:\"org_op_view_competences\";s:38:\"View competences of subordinated users\";s:23:\"rbac_copy_role_add_perm\";s:15:\"Add Permissions\";s:26:\"rbac_copy_role_remove_perm\";s:18:\"Remove Permissions\";s:19:\"rbac_copy_role_copy\";s:16:\"Copy Permissions\";s:16:\"rbac_create_prtt\";s:25:\"Create Portfolio Template\";s:16:\"glo_edit_content\";s:21:\"User can edit content\";s:16:\"rbac_create_rolt\";s:24:\"Create new Role Template\";s:16:\"rbac_create_role\";s:15:\"Create new Role\";s:16:\"il_orgu_employee\";s:28:\"Organisational Unit Employee\";s:16:\"il_orgu_superior\";s:28:\"Organisational Unit Superior\";s:16:\"rbac_create_bibl\";s:19:\"Create Bibliography\";s:15:\"rbac_create_cld\";s:19:\"Create Cloud Object\";s:12:\"crss_visible\";s:32:\"Course administration is visible\";s:9:\"crss_read\";s:45:\"User has read access to Course administration\";s:10:\"crss_write\";s:38:\"Edit settings in Course administration\";s:20:\"crss_edit_permission\";s:60:\"User can change permission settings in Course administration\";s:12:\"grps_visible\";s:31:\"Group administration is visible\";s:9:\"grps_read\";s:44:\"User has read access to Group administration\";s:10:\"grps_write\";s:37:\"Edit settings in Group administration\";s:20:\"grps_edit_permission\";s:59:\"User can change permission settings in Group administration\";s:12:\"wiks_visible\";s:30:\"Wiki administration is visible\";s:9:\"wiks_read\";s:43:\"User has read access to Wiki administration\";s:10:\"wiks_write\";s:36:\"Edit settings in Wiki administration\";s:20:\"wiks_edit_permission\";s:58:\"User can change permission settings in Wiki administration\";s:11:\"tos_visible\";s:42:\"Terms of Service administration is visible\";s:8:\"tos_read\";s:55:\"User has read access to Terms of Service administration\";s:9:\"tos_write\";s:48:\"Edit settings in Terms of Service administration\";s:19:\"tos_edit_permission\";s:70:\"User can change permission settings in Terms of Service administration\";s:12:\"wbrs_visible\";s:33:\"Weblink administration is visible\";s:9:\"wbrs_read\";s:46:\"User has read access to Weblink administration\";s:10:\"wbrs_write\";s:39:\"Edit settings in Weblink administration\";s:20:\"wbrs_edit_permission\";s:61:\"User can change permission settings in Weblink administration\";s:12:\"reps_visible\";s:36:\"Repository administration is visible\";s:9:\"reps_read\";s:49:\"User has read access to Repository administration\";s:10:\"reps_write\";s:42:\"Edit settings in Repository administration\";s:20:\"reps_edit_permission\";s:64:\"User can change permission settings in Repository administration\";s:27:\"orgu_view_learning_progress\";s:22:\"View Learning Progress\";s:12:\"orgu_visible\";s:30:\"Organisational Unit is visible\";s:9:\"orgu_read\";s:43:\"User has read access to Organisational Unit\";s:10:\"orgu_write\";s:45:\"User can edit settings of Organisational Unit\";s:15:\"orgu_read_users\";s:69:\"User can read local user accounts created in this Organisational Unit\";s:27:\"orgu_cat_administrate_users\";s:80:\"User can create and administrate local user accounts in this Organisational Unit\";s:11:\"orgu_delete\";s:43:\"User can move or delete Organisational Unit\";s:20:\"orgu_edit_permission\";s:35:\"User can change permission settings\";s:9:\"orgu_copy\";s:24:\"Copy Organisational Unit\";s:31:\"orgu_view_learning_progress_rec\";s:45:\"View Learning Progress of Unit incl. Subunits\";s:16:\"rbac_create_orgu\";s:27:\"Create Organisational Units\";s:15:\"statistics_read\";s:15:\"View Statistics\";s:20:\"wiki_statistics_read\";s:15:\"View Statistics\";s:12:\"excs_visible\";s:34:\"Exercise administration is visible\";s:9:\"excs_read\";s:47:\"User has read access to Exercise administration\";s:10:\"excs_write\";s:40:\"Edit settings in Exercise administration\";s:20:\"excs_edit_permission\";s:62:\"User can change permission settings in Exercise administration\";s:12:\"taxs_visible\";s:34:\"Taxonomy administration is visible\";s:9:\"taxs_read\";s:47:\"User has read access to Taxonomy administration\";s:10:\"taxs_write\";s:40:\"Edit settings in Taxonomy administration\";s:20:\"taxs_edit_permission\";s:62:\"User can change permission settings in Taxonomy administration\";s:22:\"read_learning_progress\";s:37:\"View learning progress of other users\";s:26:\"crs_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"grp_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"fold_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:25:\"lm_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"htlm_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"sahs_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"tst_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"exc_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"sess_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"file_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"mcst_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"lso_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:16:\"condition_failed\";s:6:\"Failed\";s:27:\"condition_learning_progress\";s:29:\"Derive from Learning Progress\";s:22:\"rbac_precondition_hide\";s:11:\"Hide Object\";s:27:\"rbac_precondition_hide_info\";s:152:\" This option allows to hide the object for users who currently have not fulfilled the preconditions. Therefore, all not accessible content is invisible.\";s:32:\"rbac_cant_import_role_wrong_type\";s:46:\"Can\'t import a role from item %s into item %s.\";s:8:\"ilias_id\";s:8:\"ILIAS-ID\";s:6:\"redact\";s:6:\"Redact\";s:11:\"blog_redact\";s:49:\"User can edit postings of other contributors, too\";s:20:\"edit_wiki_navigation\";s:15:\"Edit Navigation\";s:17:\"delete_wiki_pages\";s:12:\"Delete Pages\";s:24:\"activate_wiki_protection\";s:13:\"Set Read-Only\";s:16:\"rbac_permissions\";s:11:\"Permissions\";s:16:\"wiki_html_export\";s:11:\"Export HTML\";s:25:\"wiki_edit_wiki_navigation\";s:20:\"Edit Wiki Navigation\";s:22:\"wiki_delete_wiki_pages\";s:17:\"Delete Wiki Pages\";s:29:\"wiki_activate_wiki_protection\";s:27:\"Set Wiki Pages to Read-Only\";s:21:\"wiki_wiki_html_export\";s:19:\"Export Wiki as HTML\";s:12:\"cadm_visible\";s:41:\"User connection administration is visible\";s:9:\"cadm_read\";s:54:\"User has read access to user connection administration\";s:10:\"cadm_write\";s:55:\"User has write access to user connection administration\";s:20:\"cadm_edit_permission\";s:35:\"User can change permission settings\";s:20:\"logs_edit_permission\";s:59:\"User can edit permission settings of Logging administration\";s:9:\"logs_read\";s:38:\"User can read general Logging settings\";s:12:\"logs_visible\";s:28:\"Logging settings are visible\";s:10:\"logs_write\";s:30:\"User can edit Logging settings\";s:11:\"prg_visible\";s:26:\"Study Programme is visible\";s:8:\"prg_copy\";s:29:\"User can copy Study Programme\";s:9:\"prg_write\";s:41:\"User can edit settings of Study Programme\";s:10:\"prg_delete\";s:31:\"User can delete Study Programme\";s:19:\"prg_edit_permission\";s:35:\"User can change permission settings\";s:15:\"rbac_create_prg\";s:22:\"Create Study Programme\";s:12:\"prgs_visible\";s:41:\"Study Programme administration is visible\";s:9:\"prgs_read\";s:54:\"User has read access to Study Programme administration\";s:10:\"prgs_write\";s:47:\"Edit settings in Study Programme administration\";s:20:\"prgs_edit_permission\";s:60:\"Change permission settings in Study Programme administration\";s:9:\"feed_copy\";s:21:\"User can copy webfeed\";s:8:\"prg_read\";s:39:\"User has read access to Study Programme\";s:12:\"awra_visible\";s:46:\"‘Who is online?’ administration is visible\";s:9:\"awra_read\";s:59:\"User has read access to ‘Who is online?’ administration\";s:10:\"awra_write\";s:52:\"Edit settings in ‘Who is online?’ administration\";s:20:\"awra_edit_permission\";s:74:\"User can change permission settings in ‘Who is online?’ administration\";s:26:\"svy_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"svy_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:12:\"read_results\";s:14:\"Survey Results\";s:16:\"svy_read_results\";s:43:\"User has access to survey results of others\";s:27:\"sess_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:8:\"mep_copy\";s:24:\"User can copy media pool\";s:17:\"sty_write_content\";s:19:\"Edit Content Styles\";s:21:\"stys_sty_write_custom\";s:19:\"Edit Content Styles\";s:16:\"sty_write_system\";s:18:\"Edit System Styles\";s:21:\"stys_sty_write_system\";s:18:\"Edit System Styles\";s:21:\"sty_write_page_layout\";s:17:\"Edit Page Layouts\";s:26:\"stys_sty_write_page_layout\";s:17:\"Edit Page Layouts\";s:9:\"grpr_copy\";s:24:\"User can copy group link\";s:11:\"grpr_delete\";s:34:\"User can move or delete group link\";s:20:\"grpr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"grpr_visible\";s:21:\"Group link is visible\";s:10:\"grpr_write\";s:36:\"User can edit settings of group link\";s:16:\"rbac_create_grpr\";s:17:\"Create Group Link\";s:12:\"bdga_visible\";s:31:\"Badge administration is visible\";s:9:\"bdga_read\";s:42:\"User can read badge administration content\";s:10:\"bdga_write\";s:43:\"User can edit badge administration settings\";s:20:\"bdga_edit_permission\";s:35:\"User can change permission settings\";s:13:\"news_add_news\";s:8:\"Add News\";s:17:\"grp_news_add_news\";s:38:\"Add and edit own news entries in group\";s:17:\"crs_news_add_news\";s:39:\"Add and edit own news entries in course\";s:12:\"iass_visible\";s:32:\"Individual Assessment is visible\";s:9:\"iass_read\";s:40:\"Read content of an Individual Assessment\";s:27:\"iass_read_learning_progress\";s:62:\"View learning progress information of an Individual Assessment\";s:27:\"iass_edit_learning_progress\";s:62:\"Edit learning progress information of an Individual Assessment\";s:9:\"iass_copy\";s:29:\"Copy an Individual Assessment\";s:10:\"iass_write\";s:29:\"Edit an Individual Assessment\";s:11:\"iass_delete\";s:31:\"Delete an Individual Assessment\";s:17:\"iass_edit_members\";s:40:\"Edit members of an Individual Assessment\";s:20:\"iass_edit_permission\";s:44:\"Edit permissions of an Individual Assessment\";s:12:\"edit_members\";s:14:\"Manage members\";s:18:\"prg_manage_members\";s:33:\"Manage members of Study Programme\";s:16:\"rbac_create_iass\";s:28:\"Create Individual Assessment\";s:18:\"grp_manage_members\";s:23:\"Manage Members of Group\";s:18:\"crs_manage_members\";s:24:\"Manage Members of Course\";s:9:\"book_copy\";s:26:\"User can copy booking pool\";s:27:\"file_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:22:\"stys_sty_write_content\";s:19:\"Edit Content Styles\";s:9:\"grp_grade\";s:22:\"Grade Members of Group\";s:9:\"crs_grade\";s:23:\"Grade Members of Course\";s:19:\"wiki_edit_page_meta\";s:23:\"Edit Wiki Page Metadata\";s:23:\"edit_submissions_grades\";s:27:\"Edit Submissions and Grades\";s:27:\"exc_edit_submissions_grades\";s:36:\"User can edit submissions and grades\";s:15:\"release_objects\";s:15:\"Release Objects\";s:20:\"ltis_release_objects\";s:41:\"User can release Objects for LTI Consumer\";s:12:\"ltis_visible\";s:29:\"LTI administration is visible\";s:9:\"ltis_read\";s:42:\"User has read access to LTI administration\";s:10:\"ltis_write\";s:44:\"User can edit settings in LTI administration\";s:20:\"ltis_edit_permission\";s:57:\"User can change permission settings in LTI administration\";s:12:\"copa_visible\";s:23:\"Content Page is visible\";s:9:\"copa_read\";s:26:\"User can read Content Page\";s:9:\"copa_copy\";s:17:\"Copy Content Page\";s:10:\"copa_write\";s:26:\"User can edit Content Page\";s:11:\"copa_delete\";s:36:\"User can move or delete Content Page\";s:20:\"copa_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_copa\";s:19:\"Create Content Page\";s:27:\"copa_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"copa_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:19:\"sess_manage_members\";s:32:\"Manage Participants of a Session\";s:16:\"manage_materials\";s:16:\"Manage Materials\";s:21:\"sess_manage_materials\";s:24:\"Manage Session Materials\";s:11:\"lso_visible\";s:28:\"Learning Sequence is visible\";s:8:\"lso_copy\";s:31:\"User can copy Learning Sequence\";s:9:\"lso_write\";s:43:\"User can edit settings of Learning Sequence\";s:10:\"lso_delete\";s:33:\"User can delete Learning Sequence\";s:18:\"lso_lp_other_users\";s:46:\"User can view learning progress of other users\";s:15:\"rbac_create_lso\";s:24:\"Create Learning Sequence\";s:18:\"sess_edit_metadata\";s:13:\"Edit Metadata\";s:18:\"iass_amend_grading\";s:42:\"Amend gradings in an Individual Assessment\";s:8:\"lso_read\";s:38:\"Users can access the Learning Sequence\";s:18:\"lso_manage_members\";s:35:\"Manage members of Learning Sequence\";s:19:\"lso_edit_permission\";s:56:\"User can change permission settings of Learning Sequence\";s:15:\"lso_participate\";s:41:\"User can subscribe to a Learning Sequence\";s:17:\"lso_unparticipate\";s:45:\"User can unsubscribe from a Learning Sequence\";s:26:\"lso_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:27:\"mcst_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:24:\"dshs_change_presentation\";s:37:\"Change presentation of dashboard view\";s:19:\"change_presentation\";s:19:\"Change Presentation\";s:28:\"rbac_add_recommended_content\";s:19:\"Recommended Content\";s:33:\"rbac_add_recommended_content_info\";s:80:\"Adds the current object \'%1\' for all members of the role as recommended content.\";s:13:\"read_outcomes\";s:40:\"View learning experiences of other users\";s:20:\"add_consume_provider\";s:29:\"Add Own LTI Provider Settings\";s:25:\"ltis_add_consume_provider\";s:51:\"User can add own provider settings for LTI consumer\";s:11:\"lti_visible\";s:23:\"LTI consumer is visible\";s:8:\"lti_read\";s:25:\"User can see LTI consumer\";s:17:\"lti_read_outcomes\";s:60:\"User can see learning experiences and ranking of other users\";s:26:\"lti_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:26:\"lti_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:8:\"lti_copy\";s:26:\"User can copy LTI consumer\";s:9:\"lti_write\";s:38:\"User can edit settings of LTI consumer\";s:10:\"lti_delete\";s:36:\"User can move or delete LTI consumer\";s:19:\"lti_edit_permission\";s:35:\"User can change permission settings\";s:15:\"rbac_create_lti\";s:19:\"Create LTI Consumer\";s:12:\"cmix_visible\";s:27:\"xAPI/cmi5 Object is visible\";s:9:\"cmix_read\";s:29:\"User can see xAPI/cmi5 Object\";s:18:\"cmix_read_outcomes\";s:60:\"User can see learning experiences and ranking of other users\";s:27:\"cmix_read_learning_progress\";s:46:\"User can view learning progress of other users\";s:27:\"cmix_edit_learning_progress\";s:40:\"User can edit learning progress settings\";s:9:\"cmix_copy\";s:30:\"User can copy xAPI/cmi5 Object\";s:10:\"cmix_write\";s:42:\"User can edit settings of xAPI/cmi5 Object\";s:11:\"cmix_delete\";s:40:\"User can move or delete xAPI/cmi5 Object\";s:20:\"cmix_edit_permission\";s:35:\"User can change permission settings\";s:16:\"rbac_create_cmix\";s:23:\"Create xAPI/cmi5 Object\";s:9:\"prgr_copy\";s:39:\"User can copy links to study programmes\";s:11:\"prgr_delete\";s:49:\"User can move or delete links to study programmes\";s:20:\"prgr_edit_permission\";s:35:\"User can change permission settings\";s:12:\"prgr_visible\";s:53:\"Links to study programmes are visible and can be used\";s:10:\"prgr_write\";s:51:\"User can edit settings of links to study programmes\";s:16:\"rbac_create_prgr\";s:30:\"Create link to study programme\";}'); INSERT INTO `lng_modules` VALUES ('rcat','en','a:1:{s:9:\"rcat_call\";s:17:\"Call ECS Category\";}'); INSERT INTO `lng_modules` VALUES ('rcrs','en','a:1:{s:9:\"rcrs_call\";s:15:\"Call ECS Course\";}'); INSERT INTO `lng_modules` VALUES ('registration','en','a:103:{s:21:\"auth_radius_name_desc\";s:50:\"Please choose a name for this server configuration\";s:16:\"auth_radius_name\";s:28:\"Name of RADIUS Configuration\";s:23:\"auth_radius_role_select\";s:5:\"Role:\";s:16:\"auth_radius_sync\";s:20:\"User Synchronization\";s:34:\"reg_access_limitation_limited_time\";s:29:\"After registration access for\";s:35:\"reg_access_limitation_limited_until\";s:23:\"Access is limited until\";s:34:\"reg_access_limitation_missing_mode\";s:53:\"Please choose for all roles an Access Limitation Mode\";s:35:\"reg_access_limitation_mode_absolute\";s:33:\"Access is limited by a fixed date\";s:35:\"reg_access_limitation_mode_relative\";s:57:\"Limited access for a fixed time period after registration\";s:36:\"reg_access_limitation_mode_unlimited\";s:20:\"No access limitation\";s:26:\"reg_access_limitation_mode\";s:22:\"Access Limitation Mode\";s:26:\"reg_access_limitation_none\";s:16:\"Unlimited access\";s:33:\"reg_access_limitation_out_of_date\";s:53:\"One or more Roles have an outdated access limitation!\";s:22:\"reg_access_limitations\";s:17:\"Access Limitation\";s:18:\"reg_add_assignment\";s:14:\"New Assignment\";s:20:\"reg_added_assignment\";s:21:\"Added new assignment.\";s:16:\"reg_approve_info\";s:76:\"If checked any new user registration has to be approved by an administrator.\";s:27:\"reg_approve_needs_recipient\";s:149:\"You should define minimum one user who will be notified about new registrations, if the registration type ‘Registration with Approval’ is chosen.\";s:11:\"reg_approve\";s:26:\"Registration with Approval\";s:19:\"reg_available_roles\";s:16:\"Available Roles:\";s:39:\"reg_confirmation_hash_life_time_expired\";s:66:\"The confirmation link is not valid anymore. Please register again!\";s:36:\"reg_confirmation_hash_life_time_info\";s:86:\"Enter the lifetime (seconds) of confirmation links. Recommended value is 1800 seconds.\";s:31:\"reg_confirmation_hash_not_found\";s:59:\"No user account could be matched to this confirmation link.\";s:32:\"reg_confirmation_link_successful\";s:300:\"You successfully submitted an account request to ILIAS. You will receive a confirmation e-mail in the next minutes. Please confirm your registration by clicking the confirmation link in this mail.
You will be redirected to the login screen after 20 seconds.\";s:11:\"reg_default\";s:7:\"Default\";s:22:\"reg_deleted_assignment\";s:22:\"Deleted assignment(s).\";s:15:\"reg_direct_info\";s:80:\"If this is checked, any new user registration request is automatically approved.\";s:10:\"reg_direct\";s:19:\"Direct Registration\";s:12:\"reg_disabled\";s:24:\"No Registration Possible\";s:10:\"reg_domain\";s:6:\"Domain\";s:25:\"reg_email_role_assignment\";s:25:\"Role Assignment By Domain\";s:9:\"reg_email\";s:25:\"Automatic Role Assignment\";s:9:\"reg_fixed\";s:29:\"Selection From Specified List\";s:12:\"reg_info_pwd\";s:76:\"If enabled passwords will be send automatically to the new users per E-Mail.\";s:21:\"reg_mail_body_approve\";s:149:\"You already have registered to ILIAS eLearning and received a e-mail with your account data. Now your account has been activated by an administrator.\";s:26:\"reg_mail_body_confirmation\";s:90:\"To confirm this registration enter the ILIAS user administration and activate the account.\";s:29:\"reg_mail_body_profile_changed\";s:26:\"your profile has changed !\";s:21:\"reg_mail_body_profile\";s:13:\"Profile data:\";s:28:\"reg_mail_body_pwd_generation\";s:163:\"Your account request will be reviewed by an administrator, and should be activated within 48 hours. You will be informed by e-mail when approval has been obtained.\";s:20:\"reg_mail_body_reason\";s:131:\"You receive mail from ILIAS because notifications about new registrations are enabled for your account in the ILIAS administration.\";s:22:\"reg_mail_new_user_body\";s:31:\"a new user has been registered.\";s:17:\"reg_mail_new_user\";s:21:\"New user registration\";s:18:\"reg_missing_domain\";s:27:\"Please fill out all fields.\";s:16:\"reg_missing_role\";s:27:\"Please fill out all fields.\";s:21:\"reg_notification_info\";s:117:\"Enter one or more Login-Ids of users (comma separated) that will be informed about new user registrations per e-mail.\";s:16:\"reg_notification\";s:13:\"Notifications\";s:27:\"reg_role_access_limitations\";s:59:\"Define access limitations of Roles for new registered Users\";s:19:\"reg_role_assignment\";s:15:\"Role Assignment\";s:13:\"reg_role_info\";s:14:\"Assigned Roles\";s:14:\"reg_select_one\";s:24:\"Please select one entry.\";s:20:\"reg_selectable_roles\";s:16:\"Selectable Roles\";s:19:\"reg_settings_header\";s:25:\"New Registration Settings\";s:26:\"reg_type_confirmation_info\";s:188:\"This type allows self-registration of users but requires an e-mail confirmation to activate the account. This avoids self-registration to ILIAS with wrong or non-existent e-mail addresses.\";s:21:\"reg_type_confirmation\";s:37:\"Registration with E-Mail Confirmation\";s:8:\"reg_type\";s:17:\"Registration Type\";s:22:\"reg_unknown_recipients\";s:37:\"The following accounts are not valid:\";s:21:\"registration_settings\";s:30:\"ILIAS Auth / Self-Registration\";s:34:\"registration_user_new_account_mail\";s:21:\"Edit New Account Mail\";s:25:\"registration_tab_settings\";s:21:\"Registration Settings\";s:22:\"registration_tab_codes\";s:18:\"Registration Codes\";s:27:\"registration_reg_type_codes\";s:23:\"Registration with Codes\";s:32:\"registration_reg_type_codes_info\";s:70:\"This type allows self-registration of users but requires a valid code.\";s:22:\"registration_codes_add\";s:9:\"Add Codes\";s:25:\"registration_codes_export\";s:12:\"Export Codes\";s:30:\"registration_codes_edit_header\";s:9:\"Add Codes\";s:25:\"registration_codes_number\";s:15:\"Number Of Codes\";s:24:\"registration_codes_roles\";s:11:\"Global Role\";s:17:\"registration_code\";s:4:\"Code\";s:22:\"registration_generated\";s:18:\"Date Of Generation\";s:17:\"registration_used\";s:13:\"Date Of Usage\";s:22:\"registration_roles_all\";s:9:\"All Roles\";s:26:\"registration_generated_all\";s:9:\"All Dates\";s:33:\"registration_export_codes_no_data\";s:33:\"No codes to export were selected.\";s:27:\"registration_code_not_valid\";s:71:\"The given registration code is either invalid or already has been used.\";s:31:\"registration_disabled_no_access\";s:105:\"The self-registration is not enabled. Please contact the system administration for further assistance: %s\";s:31:\"reg_confirmation_hash_life_time\";s:8:\"Lifetime\";s:15:\"reg_allow_codes\";s:11:\"Allow Codes\";s:20:\"reg_allow_codes_info\";s:45:\"Users are also allowed to register via codes.\";s:26:\"registration_no_valid_role\";s:85:\"There is currently no valid role for new accounts. Please contact your administrator.\";s:31:\"registration_code_optional_info\";s:58:\"If you have got a registration code, please enter it here.\";s:31:\"registration_code_required_info\";s:61:\"A pre-defined code is mandatory for the registration process.\";s:27:\"registration_code_role_info\";s:81:\"If you use a registration code, the role selection may be superseded by the code.\";s:17:\"reg_email_domains\";s:50:\"The following e-mail address domains are valid: %s\";s:19:\"reg_allowed_domains\";s:30:\"Allowed E-Mail Address Domains\";s:24:\"reg_allowed_domains_info\";s:97:\"Use * as wildcard and ; as separator. E.g. \"*@ilias.de\". Registration codes override these rules.\";s:35:\"registration_codes_no_assigned_role\";s:27:\"No Predefined Assigned Role\";s:30:\"registration_codes_roles_local\";s:13:\"Local Role(s)\";s:30:\"registration_codes_roles_title\";s:21:\"Role for New Accounts\";s:40:\"registration_codes_roles_limitation_none\";s:31:\"No Predefined Access Limitation\";s:42:\"reg_access_limitation_mode_absolute_target\";s:11:\"Valid until\";s:42:\"reg_access_limitation_mode_relative_target\";s:9:\"Valid for\";s:40:\"registration_codes_access_limitation_all\";s:3:\"All\";s:32:\"registration_codes_override_info\";s:73:\"This setting overrides any values defined in ‘Registration Settings’.\";s:39:\"registration_codes_override_global_info\";s:55:\"These settings may be overridden by registration codes.\";s:22:\"reg_email_domains_code\";s:53:\"With a registration code any E-Mail-Address is valid.\";s:30:\"reg_mail_new_user_confirmation\";s:32:\"Request for account confirmation\";s:23:\"reg_mail_body_timelimit\";s:50:\"Your account has a limited period of validity: %s.\";s:23:\"registration_codes_type\";s:9:\"Code Type\";s:27:\"registration_codes_type_reg\";s:17:\"Registration Code\";s:32:\"registration_codes_type_reg_info\";s:59:\"Code can be used for the registration if a new user account\";s:27:\"registration_codes_type_ext\";s:34:\"Extension of limited user accounts\";s:32:\"registration_codes_type_ext_info\";s:55:\"Code can be used for the extension of limited accounts.\";s:24:\"reg_mail_body_activation\";s:92:\"to activate your account and confirm ownership of this e-mail address, click the link below:\";}'); @@ -30507,7 +30523,7 @@ INSERT INTO `lng_modules` VALUES ('sahs','en','a:49:{s:12:\"sahs_chapter\";s:7:\ INSERT INTO `lng_modules` VALUES ('scormdebug','en','a:159:{s:26:\"scormdebug_global_activate\";s:22:\"Enable SCORM test tool\";s:31:\"scormdebug_global_activate_info\";s:146:\"If enabled, the SCORM test tool can be activated for desired learning modules. If disabled, the test tool is deactivated for all learning modules.\";s:6:\"error0\";s:8:\"No error\";s:8:\"error101\";s:17:\"General Exception\";s:8:\"error102\";s:30:\"General Initialization Failure\";s:8:\"error103\";s:19:\"Already Initialized\";s:8:\"error104\";s:27:\"Content Instance Terminated\";s:8:\"error111\";s:27:\"General Termination Failure\";s:8:\"error112\";s:33:\"Termination Before Initialization\";s:8:\"error113\";s:29:\"Termination After Termination\";s:8:\"error122\";s:35:\"Retrieve Data Before Initialization\";s:8:\"error123\";s:31:\"Retrieve Data After Termination\";s:8:\"error132\";s:32:\"Store Data Before Initialization\";s:8:\"error133\";s:28:\"Store Data After Termination\";s:8:\"error142\";s:28:\"Commit Before Initialization\";s:8:\"error143\";s:24:\"Commit After Termination\";s:8:\"error201\";s:22:\"General Argument Error\";s:8:\"error301\";s:19:\"General Get Failure\";s:8:\"error351\";s:19:\"General Set Failure\";s:8:\"error391\";s:22:\"General Commit Failure\";s:8:\"error401\";s:28:\"Undefined Data Model Element\";s:8:\"error402\";s:32:\"Unimplemented Data Model Element\";s:8:\"error403\";s:40:\"Data Model Element Value Not Initialized\";s:8:\"error404\";s:31:\"Data Model Element Is Read Only\";s:8:\"error405\";s:32:\"Data Model Element Is Write Only\";s:8:\"error406\";s:32:\"Data Model Element Type Mismatch\";s:8:\"error407\";s:37:\"Data Model Element Value Out Of Range\";s:8:\"error408\";s:37:\"Data Model Dependency Not Established\";s:8:\"SetValue\";s:9:\"send data\";s:8:\"GetValue\";s:8:\"get data\";s:6:\"Commit\";s:10:\"store data\";s:10:\"Initialize\";s:28:\"initialize API-communication\";s:9:\"Terminate\";s:42:\"store data and terminate API-communication\";s:14:\"GetErrorString\";s:57:\"retrieve a textual description of the current error state\";s:12:\"GetLastError\";s:50:\"request the error code for the current error state\";s:13:\"GetDiagnostic\";s:62:\"allows the LMS (!) to define additional diagnostic information\";s:12:\"cmi._version\";s:40:\"Represents the version of the data model\";s:35:\"cmi.comments_from_learner._children\";s:40:\"Listing of supported data model elements\";s:32:\"cmi.comments_from_learner._count\";s:34:\"Current number of learner comments\";s:35:\"cmi.comments_from_learner.n.comment\";s:13:\"Textual input\";s:36:\"cmi.comments_from_learner.n.location\";s:45:\"Point in the SCO to which the comment applies\";s:37:\"cmi.comments_from_learner.n.timestamp\";s:71:\"Point in time at which the comment was created or most recently changed\";s:31:\"cmi.comments_from_lms._children\";s:40:\"Listing of supported data model elements\";s:28:\"cmi.comments_from_lms._count\";s:39:\"Current number of comments from the LMS\";s:31:\"cmi.comments_from_lms.n.comment\";s:45:\"Comments or annotations associated with a SCO\";s:32:\"cmi.comments_from_lms.n.location\";s:45:\"Point in the SCO to which the comment applies\";s:33:\"cmi.comments_from_lms.n.timestamp\";s:71:\"Point in time at which the comment was created or most recently changed\";s:21:\"cmi.completion_status\";s:51:\"Indicates whether the learner has completed the SCO\";s:24:\"cmi.completion_threshold\";s:63:\"Used to determine whether the SCO should be considered complete\";s:10:\"cmi.credit\";s:73:\"Indicates whether the learner will be credited for performance in the SCO\";s:9:\"cmi.entry\";s:59:\"Asserts whether the learner has previously accessed the SCO\";s:8:\"cmi.exit\";s:45:\"Indicates how or why the learner left the SCO\";s:26:\"cmi.interactions._children\";s:40:\"Listing of supported data model elements\";s:23:\"cmi.interactions._count\";s:54:\"Current number of interactions being stored by the LMS\";s:21:\"cmi.interactions.n.id\";s:32:\"Unique label for the interaction\";s:23:\"cmi.interactions.n.type\";s:37:\"Which type of interaction is recorded\";s:36:\"cmi.interactions.n.objectives._count\";s:103:\"Current number of objectives (i.e., objective identifiers) being stored by the LMS for this interaction\";s:34:\"cmi.interactions.n.objectives.n.id\";s:52:\"Label for objectives associated with the interaction\";s:28:\"cmi.interactions.n.timestamp\";s:115:\"Point in time at which the interaction was first made available to the learner for learner interaction and response\";s:43:\"cmi.interactions.n.correct_responses._count\";s:80:\"Current number of correct responses being stored by the LMS for this interaction\";s:46:\"cmi.interactions.n.correct_responses.n.pattern\";s:48:\"One correct response pattern for the interaction\";s:28:\"cmi.interactions.n.weighting\";s:62:\"Weight given to the interaction relative to other interactions\";s:35:\"cmi.interactions.n.learner_response\";s:56:\"Data generated when a learner responds to an interaction\";s:25:\"cmi.interactions.n.result\";s:51:\"Judgment of the correctness of the learner response\";s:26:\"cmi.interactions.n.latency\";s:127:\"Time elapsed between the time the interaction was made available to the learner for response and the time of the first response\";s:30:\"cmi.interactions.n.description\";s:48:\"Brief informative description of the interaction\";s:15:\"cmi.launch_data\";s:86:\"Data provided to a SCO after launch, initialized from the dataFromLMS manifest element\";s:14:\"cmi.learner_id\";s:61:\"Identifies the learner on behalf of whom the SCO was launched\";s:16:\"cmi.learner_name\";s:40:\"Name provided for the learner by the LMS\";s:32:\"cmi.learner_preference._children\";s:40:\"Listing of supported data model elements\";s:34:\"cmi.learner_preference.audio_level\";s:53:\"Specifies an intended change in perceived audio level\";s:31:\"cmi.learner_preference.language\";s:70:\"The learner\'s preferred language for SCOs with multilingual capability\";s:37:\"cmi.learner_preference.delivery_speed\";s:58:\"The learner\'s preferred relative speed of content delivery\";s:39:\"cmi.learner_preference.audio_captioning\";s:69:\"Specifies whether captioning text corresponding to audio is displayed\";s:12:\"cmi.location\";s:41:\"The learner\'s current location in the SCO\";s:20:\"cmi.max_time_allowed\";s:62:\"Amount of accumulated time the learner is allowed to use a SCO\";s:8:\"cmi.mode\";s:87:\"Identifies one of three possible modes in which the SCO may be presented to the learner\";s:24:\"cmi.objectives._children\";s:40:\"Listing of supported data model elements\";s:21:\"cmi.objectives._count\";s:52:\"Current number of objectives being stored by the LMS\";s:19:\"cmi.objectives.n.id\";s:30:\"Unique label for the objective\";s:32:\"cmi.objectives.n.score._children\";s:40:\"Listing of supported data model elements\";s:29:\"cmi.objectives.n.score.scaled\";s:69:\"Number that reflects the performance of the learner for the objective\";s:26:\"cmi.objectives.n.score.raw\";s:130:\"Number that reflects the performance of the learner, for the objective, relative to the range bounded by the values of min and max\";s:26:\"cmi.objectives.n.score.min\";s:64:\"Minimum value, for the objective, in the range for the raw score\";s:26:\"cmi.objectives.n.score.max\";s:64:\"Maximum value, for the objective, in the range for the raw score\";s:31:\"cmi.objectives.n.success_status\";s:56:\"Indicates whether the learner has mastered the objective\";s:34:\"cmi.objectives.n.completion_status\";s:68:\"Indicates whether the learner has completed the associated objective\";s:33:\"cmi.objectives.n.progress_measure\";s:76:\"Measure of the progress the learner has made toward completing the objective\";s:28:\"cmi.objectives.n.description\";s:57:\"Provides a brief informative description of the objective\";s:20:\"cmi.progress_measure\";s:70:\"Measure of the progress the learner has made toward completing the SCO\";s:24:\"cmi.scaled_passing_score\";s:47:\"Scaled passing score required to master the SCO\";s:19:\"cmi.score._children\";s:40:\"Listing of supported data model elements\";s:16:\"cmi.score.scaled\";s:51:\"Number that reflects the performance of the learner\";s:13:\"cmi.score.raw\";s:110:\"Number that reflects the performance of the learner relative to the range bounded by the values of min and max\";s:13:\"cmi.score.min\";s:44:\"Minimum value in the range for the raw score\";s:13:\"cmi.score.max\";s:44:\"Maximum value in the range for the raw score\";s:16:\"cmi.session_time\";s:85:\"Amount of time that the learner has spent in the current learner session for this SCO\";s:18:\"cmi.success_status\";s:50:\"Indicates whether the learner has mastered the SCO\";s:16:\"cmi.suspend_data\";s:66:\"Provides space to store and retrieve data between learner sessions\";s:21:\"cmi.time_limit_action\";s:70:\"Indicates what the SCO should do when cmi.max_time_allowed is exceeded\";s:14:\"cmi.total_time\";s:84:\"Sum of all of the learner\'s session times accumulated in the current learner attempt\";s:15:\"adl.nav.request\";s:68:\"Navigation request to be processed immediately following Terminate()\";s:30:\"adl.nav.request_valid.continue\";s:73:\"Used by a SCO to determine if a Continue navigation request will succeed.\";s:30:\"adl.nav.request_valid.previous\";s:73:\"Used by a SCO to determine if a Previous navigation request will succeed.\";s:28:\"adl.nav.request_valid.choice\";s:97:\"Used by a SCO to determine if a Choice navigation request for a particular activity will succeed.\";s:7:\"i_green\";s:11:\"green: okay\";s:5:\"i_red\";s:11:\"red: error!\";s:8:\"i_orange\";s:25:\"orange: attention please!\";s:6:\"i_gray\";s:30:\"gray: error corrected by ILIAS\";s:9:\"i_fuchsia\";s:59:\"fuchsia: tolerated value because sent value is not rejected\";s:5:\"error\";s:5:\"error\";s:13:\"strange_error\";s:13:\"strange error\";s:16:\"strange_API-Call\";s:16:\"strange API-Call\";s:7:\"unknown\";s:7:\"unknown\";s:15:\"undefined_color\";s:15:\"undefined color\";s:15:\"description_for\";s:15:\"description for\";s:4:\"hide\";s:4:\"hide\";s:19:\"all_API-calls_shown\";s:34:\"All API-calls are currently shown.\";s:29:\"show_only_important_API-calls\";s:30:\"Show only important API-calls!\";s:30:\"only_important_API-Calls_shown\";s:45:\"Only important API-Calls are currently shown.\";s:18:\"show_all_API-calls\";s:19:\"Show all API-calls!\";s:7:\"log_for\";s:27:\"Log for the learning module\";s:7:\"started\";s:7:\"started\";s:10:\"nr_session\";s:17:\"number of session\";s:18:\"id_learning_module\";s:25:\"ID of the learning module\";s:23:\"sent_values_not_checked\";s:59:\"selected property: values sent by SCO are not fully checked\";s:9:\"SCO-title\";s:9:\"SCO-title\";s:8:\"SCO-name\";s:8:\"SCO-name\";s:12:\"milliseconds\";s:12:\"milliseconds\";s:8:\"API-call\";s:8:\"API-call\";s:12:\"return_value\";s:12:\"return value\";s:9:\"generated\";s:9:\"generated\";s:7:\"comment\";s:7:\"Comment\";s:28:\"summary_for_SCO_without_test\";s:32:\"Summary for a SCO without a test\";s:25:\"summary_for_SCO_with_test\";s:29:\"Summary for a SCO with a test\";s:20:\"no_missing_API-calls\";s:42:\"Missing API-calls had not been recognized.\";s:17:\"missing_API-calls\";s:28:\"These API-calls are missing:\";s:11:\"summary_csv\";s:63:\"Summary is generated as CSV-file to import for example in Excel\";s:16:\"summary_download\";s:75:\"You can click to ‘Logs’ and download it when you start this tool again.\";s:19:\"debugwindow_console\";s:7:\"Console\";s:16:\"debugwindow_logs\";s:4:\"Logs\";s:19:\"debugwindow_comment\";s:7:\"comment\";s:25:\"debugwindow_comment_enter\";s:25:\"Please enter your comment\";s:27:\"debugwindow_start_recording\";s:15:\"Start Recording\";s:26:\"debugwindow_stop_recording\";s:14:\"Stop Recording\";s:26:\"debugwindow_delete_logfile\";s:14:\"Delete logfile\";s:29:\"debugwindow_submission_failed\";s:17:\"Submission failed\";s:18:\"debugwindow_submit\";s:6:\"Submit\";s:18:\"debugwindow_cancel\";s:6:\"Cancel\";s:20:\"debugwindow_filename\";s:9:\"File Name\";s:16:\"debugwindow_date\";s:4:\"Date\";s:18:\"debugwindow_action\";s:6:\"Action\";s:18:\"debugwindow_delete\";s:6:\"Delete\";s:20:\"debugwindow_download\";s:8:\"Download\";s:16:\"debugwindow_open\";s:4:\"Open\";s:24:\"scormdebug_disable_cache\";s:32:\"Disable SCORM 2004 Browser Cache\";s:29:\"scormdebug_disable_cache_info\";s:137:\"This prevents the storage of the SCORM 2004 javascript files in the browser cache. Please use this function in time before a new release!\";s:37:\"completion_status_by_progress_measure\";s:271:\"Because there is a value for cmi.completion_threshold, the value for cmi.completion_status is evaluated by the LMS! This is done by comparing the value for cmi.completion_threshold with the value for cmi.progress_measure. The value for cmi.completion_status is currently:\";s:30:\"success_status_by_score_scaled\";s:261:\"Because there is a value for cmi.scaled_passing_score, the value for cmi.success_status is evaluated by the LMS! This is done by comparing the value for cmi.scaled_passing_score with the value for cmi.score.scaled. The value for cmi.success_status is currently:\";}'); INSERT INTO `lng_modules` VALUES ('scormtrac','en','a:86:{s:16:\"audio_captioning\";s:35:\"learner_preference.audio_captioning\";s:11:\"audio_level\";s:30:\"learner_preference.audio_level\";s:7:\"c_entry\";s:5:\"entry\";s:6:\"c_exit\";s:4:\"exit\";s:10:\"c_language\";s:27:\"learner_preference.language\";s:10:\"c_location\";s:8:\"location\";s:5:\"c_max\";s:9:\"score.max\";s:5:\"c_min\";s:9:\"score.min\";s:6:\"c_mode\";s:4:\"mode\";s:5:\"c_raw\";s:25:\"score.raw: achieved score\";s:11:\"c_timestamp\";s:11:\"Last access\";s:6:\"c_type\";s:4:\"Type\";s:17:\"completion_status\";s:17:\"completion_status\";s:20:\"completion_threshold\";s:20:\"completion_threshold\";s:11:\"counter_all\";s:9:\"All users\";s:15:\"counter_correct\";s:25:\"Users with correct result\";s:23:\"counter_correct_percent\";s:39:\"Percentage of users with correct result\";s:17:\"counter_incorrect\";s:27:\"Users with incorrect result\";s:25:\"counter_incorrect_percent\";s:41:\"Percentage of users with incorrect result\";s:13:\"counter_other\";s:23:\"Users with other result\";s:21:\"counter_other_percent\";s:37:\"Percentage of users with other result\";s:10:\"cp_node_id\";s:19:\"ID of chapter / SCO\";s:6:\"credit\";s:6:\"credit\";s:14:\"delivery_speed\";s:33:\"learner_preference.delivery_speed\";s:18:\"exportselectedcore\";s:31:\"Basic report for chapters (SCO)\";s:26:\"exportselectedinteractions\";s:29:\"Basic report for interactions\";s:2:\"id\";s:2:\"ID\";s:23:\"interaction_description\";s:26:\"Description of interaction\";s:14:\"interaction_id\";s:17:\"ID of interaction\";s:17:\"interaction_value\";s:21:\"Result of interaction\";s:7:\"latency\";s:13:\"latency: time\";s:15:\"latency_seconds\";s:24:\"latency: time in seconds\";s:11:\"launch_data\";s:37:\"launch_data: data at start of the SCO\";s:16:\"learner_response\";s:26:\"learner_response: Response\";s:5:\"lm_id\";s:25:\"ID of the learning module\";s:8:\"lm_title\";s:28:\"Title of the learning module\";s:16:\"progress_measure\";s:16:\"progress_measure\";s:6:\"result\";s:6:\"result\";s:6:\"scaled\";s:50:\"score.scaled: score achieved as a decimal fraction\";s:20:\"scaled_passing_score\";s:66:\"scaled_passing_score: score required to pass as a decimal fraction\";s:32:\"sco_marked_for_learning_progress\";s:30:\"Relevant for learning progress\";s:9:\"sco_title\";s:22:\"Title of chapter / SCO\";s:12:\"session_time\";s:38:\"session_time: time in the last session\";s:20:\"session_time_seconds\";s:49:\"session_time: time in the last session in seconds\";s:14:\"success_status\";s:23:\"success_status: success\";s:12:\"suspend_data\";s:40:\"suspend_data: variable buffer of the SCO\";s:10:\"total_time\";s:22:\"total_time: total time\";s:18:\"total_time_seconds\";s:33:\"total_time: total time in seconds\";s:19:\"tracinteractionitem\";s:26:\"Evaluation per interaction\";s:19:\"tracinteractionuser\";s:19:\"Evaluation per user\";s:26:\"tracinteractionuseranswers\";s:18:\"Responses of users\";s:7:\"user_id\";s:7:\"User-ID\";s:9:\"weighting\";s:9:\"weighting\";s:6:\"report\";s:6:\"Report\";s:21:\"exportselectedsuccess\";s:24:\"Basic report for success\";s:16:\"LearningModuleId\";s:21:\"ID of learning module\";s:19:\"LearningModuleTitle\";s:24:\"Title of learning module\";s:21:\"LearningModuleVersion\";s:26:\"Version of learning module\";s:6:\"Status\";s:12:\"Total status\";s:10:\"Percentage\";s:28:\"Percentage of completed SCOs\";s:8:\"Attempts\";s:8:\"Attempts\";s:12:\"existingSCOs\";s:23:\"Number of existing SCOs\";s:11:\"startedSCOs\";s:22:\"Number of started SCOs\";s:13:\"completedSCOs\";s:30:\"Number of fully completed SCOs\";s:10:\"passedSCOs\";s:21:\"Number of passed SCOs\";s:24:\"roundedTotal_timeSeconds\";s:31:\"Total time in seconds (rounded)\";s:17:\"counter_i_correct\";s:31:\"Correctly answered interactions\";s:25:\"counter_i_correct_percent\";s:45:\"Percentage of correctly answered interactions\";s:19:\"counter_i_incorrect\";s:33:\"Incorrectly answered interactions\";s:27:\"counter_i_incorrect_percent\";s:47:\"Percentage of incorrectly answered interactions\";s:15:\"counter_i_other\";s:55:\"Neither correctly nor incorrectly answered interactions\";s:23:\"counter_i_other_percent\";s:69:\"Percentage of neither correctly nor incorrectly answered interactions\";s:6:\"sco_id\";s:19:\"ID of chapter / SCO\";s:13:\"lesson_status\";s:13:\"lesson_status\";s:9:\"satisfied\";s:17:\"Status: satisfied\";s:7:\"measure\";s:15:\"Status: measure\";s:23:\"exportobjglobaltosystem\";s:59:\"Report for Objectives Global To System (used by Sequencing)\";s:24:\"exportselectedobjectives\";s:21:\"Report for objectives\";s:5:\"scope\";s:5:\"scope\";s:7:\"counter\";s:7:\"counter\";s:16:\"student_response\";s:26:\"student_response: Response\";s:7:\"ostatus\";s:23:\"Status of the objective\";s:17:\"exportselectedraw\";s:14:\"CMI (RAW) data\";s:6:\"lvalue\";s:3:\"Key\";s:6:\"rvalue\";s:5:\"Value\";s:13:\"identifierref\";s:14:\"SCO-Identifier\";}'); INSERT INTO `lng_modules` VALUES ('scov','en','a:4:{s:11:\"crsv_create\";s:24:\"Create SCORM Certificate\";s:16:\"crsv_create_info\";s:67:\"Select a completed learning module to generate a certificate for it\";s:11:\"scov_create\";s:24:\"Create SCORM Certificate\";s:16:\"scov_create_info\";s:64:\"Select a completed SCORM module to generate a certificate for it\";}'); -INSERT INTO `lng_modules` VALUES ('search','en','a:133:{s:18:\"add_members_header\";s:11:\"Add Members\";s:19:\"adv_md_search_title\";s:27:\"Search in Extended Metadata\";s:14:\"append_results\";s:14:\"Append results\";s:18:\"last_search_result\";s:18:\"Last Search Result\";s:21:\"lucene_activate_field\";s:15:\"Activate Search\";s:30:\"lucene_advanced_settings_table\";s:15:\"Search Settings\";s:24:\"lucene_advanced_settings\";s:15:\"Advanced Search\";s:22:\"lucene_all_occurrences\";s:26:\"... %s other occurrence(s)\";s:10:\"lucene_and\";s:3:\"AND\";s:10:\"lucene_cpu\";s:25:\"Maximum Number of Threads\";s:17:\"lucene_create_ini\";s:25:\"Create Configuration File\";s:28:\"lucene_default_operator_info\";s:196:\"Please choose the default operator for boolean queries. In default mode (‘AND’) terms are considered to be in conjunction. In ‘OR’ mode terms without any modifiers are considered optional.\";s:23:\"lucene_default_operator\";s:16:\"Default Operator\";s:19:\"lucene_download_ini\";s:27:\"Download Configuration File\";s:20:\"lucene_err_ampersand\";s:81:\"Queries containing the special characters && must be in the form: term1 && term2.\";s:21:\"lucene_err_and_or_not\";s:82:\"Queries containing AND/OR/NOT must be in the form: term1 AND|OR|NOT|AND NOT term2.\";s:19:\"lucene_err_asterisk\";s:79:\"The wildcard (*) character must be preceded by at least one alphabet or number.\";s:16:\"lucene_err_caret\";s:92:\"The caret (^) character must be preceded by alphanumeric characters and followed by numbers.\";s:16:\"lucene_err_colon\";s:123:\"Field declarations (:) must be preceded by at least one alphabet or number and followed by at least one alphabet or number.\";s:27:\"lucene_err_exclamation_mark\";s:80:\"Queries containing the special character (!) must be in the form: term1 ! term2.\";s:28:\"lucene_err_parenthesis_empty\";s:48:\"Parentheses must contain at least one character.\";s:33:\"lucene_err_parenthesis_not_closed\";s:27:\"Parentheses must be closed.\";s:21:\"lucene_err_plus_minus\";s:74:\"(+) and (-) modifiers must be followed by at least one alphabet or number.\";s:24:\"lucene_err_question_mark\";s:84:\"The question mark (?) character must be preceded by at least one alphabet or number.\";s:27:\"lucene_err_quotes_not_empty\";s:47:\"Quotes (\") must contain at least one character.\";s:17:\"lucene_err_quotes\";s:33:\"Please close all quote (\") marks.\";s:23:\"lucene_general_settings\";s:16:\"General Settings\";s:16:\"lucene_host_info\";s:60:\"Please enter the hostname or Ip-address for the java server.\";s:11:\"lucene_host\";s:4:\"Host\";s:22:\"lucene_index_path_info\";s:54:\"Please enter a directory name for storing index files.\";s:17:\"lucene_index_path\";s:25:\"Directory for Index Files\";s:27:\"lucene_last_index_time_info\";s:71:\"Please modify this settings only if you have installed an index backup.\";s:22:\"lucene_last_index_time\";s:21:\"Last Index Generation\";s:12:\"lucene_level\";s:9:\"Log-Level\";s:15:\"lucene_log_info\";s:134:\"Enter the absolute path to a file in which log messages will we written. If the file does not exist, it will be created automatically.\";s:10:\"lucene_log\";s:15:\"Path to Logfile\";s:19:\"lucene_max_sub_info\";s:102:\"Please enter maximum number of sub-items (Forum threads, Glossary terms...) that are shown by default.\";s:14:\"lucene_max_sub\";s:19:\"Number of Sub-items\";s:21:\"lucene_more_hits_link\";s:15:\"%s more hits...\";s:20:\"lucene_num_frag_info\";s:63:\"Please choose the maximum number of highlighted text fragments.\";s:20:\"lucene_num_fragments\";s:24:\"Number of Text Fragments\";s:9:\"lucene_or\";s:2:\"OR\";s:11:\"lucene_port\";s:4:\"Port\";s:22:\"lucene_relevance_short\";s:9:\"Relevance\";s:16:\"lucene_relevance\";s:27:\"Relevance of Search Results\";s:19:\"lucene_settings_tab\";s:6:\"Lucene\";s:21:\"lucene_settings_title\";s:15:\"Lucene Settings\";s:26:\"lucene_show_relevance_info\";s:132:\"Search results are sorted by their relevance. If activated, the relevance is shown as additional information for each search result.\";s:21:\"lucene_show_relevance\";s:14:\"Show Relevance\";s:21:\"lucene_size_frag_info\";s:61:\"Please choose the maximum size of highlighted text fragments.\";s:21:\"lucene_size_fragments\";s:22:\"Size of Text Fragments\";s:21:\"lucene_tbl_create_ini\";s:27:\"Create Java-Server Ini-File\";s:13:\"search_adv_md\";s:17:\"Extended Metadata\";s:15:\"search_advanced\";s:15:\"Advanced Search\";s:16:\"search_all_words\";s:37:\"All words (AND)\";s:15:\"search_any_word\";s:35:\"Any word (OR)\";s:10:\"search_any\";s:9:\"-- Any --\";s:16:\"search_area_info\";s:52:\"Please select an area where the search should start.\";s:11:\"search_area\";s:4:\"Area\";s:27:\"search_auto_complete_length\";s:36:\"Number of Auto Complete List Entries\";s:25:\"search_choose_object_type\";s:30:\"Please choose one object type.\";s:14:\"search_content\";s:12:\"Page Content\";s:16:\"search_crs_title\";s:11:\"Course Name\";s:19:\"search_details_info\";s:58:\"Detailed search. Please select one or more resource types.\";s:13:\"search_direct\";s:13:\"Direct search\";s:16:\"search_fast_info\";s:64:\"Search for titles, descriptions and keywords in all object types\";s:22:\"search_for_crs_members\";s:18:\"Search for Courses\";s:22:\"search_for_grp_members\";s:17:\"Search for Groups\";s:23:\"search_for_role_members\";s:16:\"Search for Roles\";s:16:\"search_for_users\";s:16:\"Search for users\";s:16:\"search_full_info\";s:55:\"Choose this option to search in a large amount of data.\";s:16:\"search_grp_title\";s:10:\"Group Name\";s:22:\"search_hide_adv_search\";s:20:\"Hide Advanced Search\";s:12:\"search_index\";s:14:\"Indexed search\";s:16:\"search_like_info\";s:39:\"Choose this option to get best results.\";s:20:\"search_limit_reached\";s:107:\"Your search produced more than %s hits. You can restrict the search terms to receive more detailed results.\";s:10:\"search_lom\";s:12:\"LOM Metadata\";s:13:\"search_lucene\";s:13:\"Lucene search\";s:20:\"search_minimum_three\";s:51:\"Your search must be at least three characters long.\";s:27:\"search_no_connection_lucene\";s:32:\"Cannot connect to Lucene server.\";s:20:\"search_no_match_hint\";s:228:\"Your search for %s did not match any documents.

Suggestions:
• Make sure all words are spelled correctly.
• Try different keywords.
• Try more general keywords.
• Try fewer keywords.\";s:15:\"search_no_match\";s:37:\"Your search did not match any results\";s:19:\"search_no_selection\";s:22:\"You made no selection.\";s:14:\"search_results\";s:14:\"Search Results\";s:17:\"search_role_title\";s:9:\"Role Name\";s:25:\"search_select_search_area\";s:18:\"Select Search Area\";s:23:\"search_term_combination\";s:11:\"Combination\";s:24:\"search_title_description\";s:19:\"Title / Description\";s:14:\"search_tst_svy\";s:13:\"Tests/Surveys\";s:11:\"search_type\";s:4:\"Type\";s:20:\"search_user_extended\";s:20:\"Extended User Search\";s:11:\"search_user\";s:5:\"Users\";s:12:\"search_users\";s:12:\"Search Users\";s:5:\"until\";s:5:\"up to\";s:23:\"search_item_filter_form\";s:14:\"Search by Type\";s:28:\"search_item_filter_form_info\";s:52:\"Search can be restricted to the chosen object types.\";s:13:\"lucene_max_fs\";s:25:\"Maximum File Size (in MB)\";s:18:\"lucene_max_fs_info\";s:76:\"Defines the file size limit. Bigger files will not be included in the index.\";s:25:\"search_err_user_not_exist\";s:43:\"A user with that login name does not exist.\";s:21:\"lucene_offline_filter\";s:13:\"Online-Status\";s:20:\"search_option_online\";s:6:\"Online\";s:21:\"search_option_offline\";s:7:\"Offline\";s:21:\"search_filter_by_type\";s:14:\"Filter by Type\";s:10:\"search_off\";s:3:\"Off\";s:37:\"search_add_members_from_container_grp\";s:26:\"Add Users of Current Group\";s:37:\"search_add_members_from_container_crs\";s:27:\"Add Users of Current Course\";s:15:\"search_mime_pdf\";s:9:\"PDF Files\";s:16:\"search_mime_word\";s:10:\"Word Files\";s:17:\"search_mime_excel\";s:11:\"Excel Files\";s:22:\"search_mime_powerpoint\";s:16:\"Powerpoint Files\";s:17:\"search_mime_image\";s:6:\"Images\";s:25:\"lucene_show_sub_relevance\";s:23:\"Show Sub-Item Relevance\";s:23:\"search_mime_filter_form\";s:16:\"Mime Type Filter\";s:28:\"search_mime_filter_form_info\";s:50:\"Search can be restricted to the chosen mime types.\";s:22:\"lucene_prefix_wildcard\";s:23:\"Prefix Wildcard Queries\";s:27:\"lucene_prefix_wildcard_info\";s:63:\"Supports prefix wildcard queries: ‘*LIAS’ finds ‘ILIAS’\";s:23:\"search_user_search_form\";s:27:\"Search in Personal Profiles\";s:28:\"search_user_search_info_form\";s:82:\"Data in personal profiles of users is indexed and can be used to search for users.\";s:19:\"search_minimum_info\";s:47:\"Your search must be at least %s characters long\";s:25:\"search_show_inactive_user\";s:19:\"Show Inactive Users\";s:30:\"search_show_inactive_user_info\";s:58:\"If enabled, the user search will show inactive users, too.\";s:24:\"search_show_limited_user\";s:30:\"Show Users with Limited Access\";s:29:\"search_show_limited_user_info\";s:103:\"If enabled, the user search will also show users with limited access outside their allowed time period.\";s:16:\"search_filter_cd\";s:23:\"Filter by Creation Date\";s:21:\"search_created_before\";s:25:\"Objects created before...\";s:20:\"search_created_after\";s:21:\"Objects created after\";s:17:\"search_created_on\";s:20:\"Objects create on...\";s:17:\"search_newer_than\";s:18:\"Objects newer than\";s:19:\"search_cdate_filter\";s:23:\"Filter by Creation Date\";s:24:\"search_cdate_filter_info\";s:82:\"If enabled, the object search can be filtered by an optional creation date filter.\";s:10:\"btn_search\";s:6:\"Search\";s:23:\"search_for_orgu_members\";s:31:\"Search for Organisational Units\";s:11:\"select_orgu\";s:27:\"Select Organisational Units\";}'); +INSERT INTO `lng_modules` VALUES ('search','en','a:135:{s:18:\"add_members_header\";s:11:\"Add Members\";s:12:\"search_field\";s:18:\"Search Input Field\";s:19:\"adv_md_search_title\";s:27:\"Search in Extended Metadata\";s:14:\"append_results\";s:14:\"Append results\";s:18:\"last_search_result\";s:18:\"Last Search Result\";s:21:\"lucene_activate_field\";s:15:\"Activate Search\";s:30:\"lucene_advanced_settings_table\";s:15:\"Search Settings\";s:24:\"lucene_advanced_settings\";s:15:\"Advanced Search\";s:22:\"lucene_all_occurrences\";s:26:\"... %s other occurrence(s)\";s:10:\"lucene_and\";s:3:\"AND\";s:10:\"lucene_cpu\";s:25:\"Maximum Number of Threads\";s:17:\"lucene_create_ini\";s:25:\"Create Configuration File\";s:28:\"lucene_default_operator_info\";s:196:\"Please choose the default operator for boolean queries. In default mode (‘AND’) terms are considered to be in conjunction. In ‘OR’ mode terms without any modifiers are considered optional.\";s:23:\"lucene_default_operator\";s:16:\"Default Operator\";s:19:\"lucene_download_ini\";s:27:\"Download Configuration File\";s:20:\"lucene_err_ampersand\";s:81:\"Queries containing the special characters && must be in the form: term1 && term2.\";s:21:\"lucene_err_and_or_not\";s:82:\"Queries containing AND/OR/NOT must be in the form: term1 AND|OR|NOT|AND NOT term2.\";s:19:\"lucene_err_asterisk\";s:79:\"The wildcard (*) character must be preceded by at least one alphabet or number.\";s:16:\"lucene_err_caret\";s:92:\"The caret (^) character must be preceded by alphanumeric characters and followed by numbers.\";s:16:\"lucene_err_colon\";s:123:\"Field declarations (:) must be preceded by at least one alphabet or number and followed by at least one alphabet or number.\";s:27:\"lucene_err_exclamation_mark\";s:80:\"Queries containing the special character (!) must be in the form: term1 ! term2.\";s:28:\"lucene_err_parenthesis_empty\";s:48:\"Parentheses must contain at least one character.\";s:33:\"lucene_err_parenthesis_not_closed\";s:27:\"Parentheses must be closed.\";s:21:\"lucene_err_plus_minus\";s:74:\"(+) and (-) modifiers must be followed by at least one alphabet or number.\";s:24:\"lucene_err_question_mark\";s:84:\"The question mark (?) character must be preceded by at least one alphabet or number.\";s:27:\"lucene_err_quotes_not_empty\";s:47:\"Quotes (\") must contain at least one character.\";s:17:\"lucene_err_quotes\";s:33:\"Please close all quote (\") marks.\";s:23:\"lucene_general_settings\";s:16:\"General Settings\";s:16:\"lucene_host_info\";s:60:\"Please enter the hostname or Ip-address for the java server.\";s:11:\"lucene_host\";s:4:\"Host\";s:22:\"lucene_index_path_info\";s:54:\"Please enter a directory name for storing index files.\";s:17:\"lucene_index_path\";s:25:\"Directory for Index Files\";s:27:\"lucene_last_index_time_info\";s:71:\"Please modify this settings only if you have installed an index backup.\";s:22:\"lucene_last_index_time\";s:21:\"Last Index Generation\";s:12:\"lucene_level\";s:9:\"Log-Level\";s:15:\"lucene_log_info\";s:134:\"Enter the absolute path to a file in which log messages will we written. If the file does not exist, it will be created automatically.\";s:10:\"lucene_log\";s:15:\"Path to Logfile\";s:19:\"lucene_max_sub_info\";s:102:\"Please enter maximum number of sub-items (Forum threads, Glossary terms...) that are shown by default.\";s:14:\"lucene_max_sub\";s:19:\"Number of Sub-items\";s:21:\"lucene_more_hits_link\";s:15:\"%s more hits...\";s:20:\"lucene_num_frag_info\";s:63:\"Please choose the maximum number of highlighted text fragments.\";s:20:\"lucene_num_fragments\";s:24:\"Number of Text Fragments\";s:9:\"lucene_or\";s:2:\"OR\";s:11:\"lucene_port\";s:4:\"Port\";s:22:\"lucene_relevance_short\";s:9:\"Relevance\";s:16:\"lucene_relevance\";s:27:\"Relevance of Search Results\";s:19:\"lucene_settings_tab\";s:6:\"Lucene\";s:21:\"lucene_settings_title\";s:15:\"Lucene Settings\";s:26:\"lucene_show_relevance_info\";s:132:\"Search results are sorted by their relevance. If activated, the relevance is shown as additional information for each search result.\";s:21:\"lucene_show_relevance\";s:14:\"Show Relevance\";s:21:\"lucene_size_frag_info\";s:61:\"Please choose the maximum size of highlighted text fragments.\";s:21:\"lucene_size_fragments\";s:22:\"Size of Text Fragments\";s:21:\"lucene_tbl_create_ini\";s:27:\"Create Java-Server Ini-File\";s:13:\"search_adv_md\";s:17:\"Extended Metadata\";s:15:\"search_advanced\";s:15:\"Advanced Search\";s:16:\"search_all_words\";s:37:\"All words (AND)\";s:15:\"search_any_word\";s:35:\"Any word (OR)\";s:10:\"search_any\";s:9:\"-- Any --\";s:16:\"search_area_info\";s:52:\"Please select an area where the search should start.\";s:11:\"search_area\";s:4:\"Area\";s:27:\"search_auto_complete_length\";s:36:\"Number of Auto Complete List Entries\";s:25:\"search_choose_object_type\";s:30:\"Please choose one object type.\";s:14:\"search_content\";s:12:\"Page Content\";s:16:\"search_crs_title\";s:11:\"Course Name\";s:19:\"search_details_info\";s:58:\"Detailed search. Please select one or more resource types.\";s:13:\"search_direct\";s:13:\"Direct search\";s:16:\"search_fast_info\";s:64:\"Search for titles, descriptions and keywords in all object types\";s:22:\"search_for_crs_members\";s:18:\"Search for Courses\";s:22:\"search_for_grp_members\";s:17:\"Search for Groups\";s:23:\"search_for_role_members\";s:16:\"Search for Roles\";s:16:\"search_for_users\";s:16:\"Search for users\";s:16:\"search_full_info\";s:55:\"Choose this option to search in a large amount of data.\";s:16:\"search_grp_title\";s:10:\"Group Name\";s:22:\"search_hide_adv_search\";s:20:\"Hide Advanced Search\";s:12:\"search_index\";s:14:\"Indexed search\";s:16:\"search_like_info\";s:39:\"Choose this option to get best results.\";s:20:\"search_limit_reached\";s:107:\"Your search produced more than %s hits. You can restrict the search terms to receive more detailed results.\";s:10:\"search_lom\";s:12:\"LOM Metadata\";s:13:\"search_lucene\";s:13:\"Lucene search\";s:20:\"search_minimum_three\";s:51:\"Your search must be at least three characters long.\";s:27:\"search_no_connection_lucene\";s:32:\"Cannot connect to Lucene server.\";s:20:\"search_no_match_hint\";s:228:\"Your search for %s did not match any documents.

Suggestions:
• Make sure all words are spelled correctly.
• Try different keywords.
• Try more general keywords.
• Try fewer keywords.\";s:15:\"search_no_match\";s:37:\"Your search did not match any results\";s:19:\"search_no_selection\";s:22:\"You made no selection.\";s:14:\"search_results\";s:14:\"Search Results\";s:17:\"search_role_title\";s:9:\"Role Name\";s:25:\"search_select_search_area\";s:18:\"Select Search Area\";s:23:\"search_term_combination\";s:11:\"Combination\";s:24:\"search_title_description\";s:19:\"Title / Description\";s:14:\"search_tst_svy\";s:13:\"Tests/Surveys\";s:11:\"search_type\";s:4:\"Type\";s:20:\"search_user_extended\";s:20:\"Extended User Search\";s:11:\"search_user\";s:5:\"Users\";s:12:\"search_users\";s:12:\"Search Users\";s:5:\"until\";s:5:\"up to\";s:23:\"search_item_filter_form\";s:14:\"Search by Type\";s:28:\"search_item_filter_form_info\";s:52:\"Search can be restricted to the chosen object types.\";s:13:\"lucene_max_fs\";s:25:\"Maximum File Size (in MB)\";s:18:\"lucene_max_fs_info\";s:76:\"Defines the file size limit. Bigger files will not be included in the index.\";s:25:\"search_err_user_not_exist\";s:43:\"A user with that login name does not exist.\";s:21:\"lucene_offline_filter\";s:13:\"Online-Status\";s:20:\"search_option_online\";s:6:\"Online\";s:21:\"search_option_offline\";s:7:\"Offline\";s:21:\"search_filter_by_type\";s:14:\"Filter by Type\";s:10:\"search_off\";s:3:\"Off\";s:9:\"search_on\";s:2:\"On\";s:37:\"search_add_members_from_container_grp\";s:26:\"Add Users of Current Group\";s:37:\"search_add_members_from_container_crs\";s:27:\"Add Users of Current Course\";s:15:\"search_mime_pdf\";s:9:\"PDF Files\";s:16:\"search_mime_word\";s:10:\"Word Files\";s:17:\"search_mime_excel\";s:11:\"Excel Files\";s:22:\"search_mime_powerpoint\";s:16:\"Powerpoint Files\";s:17:\"search_mime_image\";s:6:\"Images\";s:25:\"lucene_show_sub_relevance\";s:23:\"Show Sub-Item Relevance\";s:23:\"search_mime_filter_form\";s:16:\"Mime Type Filter\";s:28:\"search_mime_filter_form_info\";s:50:\"Search can be restricted to the chosen mime types.\";s:22:\"lucene_prefix_wildcard\";s:23:\"Prefix Wildcard Queries\";s:27:\"lucene_prefix_wildcard_info\";s:63:\"Supports prefix wildcard queries: ‘*LIAS’ finds ‘ILIAS’\";s:23:\"search_user_search_form\";s:27:\"Search in Personal Profiles\";s:28:\"search_user_search_info_form\";s:82:\"Data in personal profiles of users is indexed and can be used to search for users.\";s:19:\"search_minimum_info\";s:47:\"Your search must be at least %s characters long\";s:25:\"search_show_inactive_user\";s:19:\"Show Inactive Users\";s:30:\"search_show_inactive_user_info\";s:58:\"If enabled, the user search will show inactive users, too.\";s:24:\"search_show_limited_user\";s:30:\"Show Users with Limited Access\";s:29:\"search_show_limited_user_info\";s:103:\"If enabled, the user search will also show users with limited access outside their allowed time period.\";s:16:\"search_filter_cd\";s:23:\"Filter by Creation Date\";s:21:\"search_created_before\";s:25:\"Objects created before...\";s:20:\"search_created_after\";s:21:\"Objects created after\";s:17:\"search_created_on\";s:20:\"Objects create on...\";s:17:\"search_newer_than\";s:18:\"Objects newer than\";s:19:\"search_cdate_filter\";s:23:\"Filter by Creation Date\";s:24:\"search_cdate_filter_info\";s:82:\"If enabled, the object search can be filtered by an optional creation date filter.\";s:10:\"btn_search\";s:6:\"Search\";s:23:\"search_for_orgu_members\";s:31:\"Search for Organisational Units\";s:11:\"select_orgu\";s:27:\"Select Organisational Units\";}'); INSERT INTO `lng_modules` VALUES ('sess','en','a:84:{s:10:\"sess_title\";s:16:\"Title of Session\";s:31:\"sess_participation_refused_info\";s:52:\"Your participation for this event has been canceled.\";s:14:\"sess_bt_refuse\";s:18:\"Cannot Participate\";s:23:\"sess_part_table_excused\";s:7:\"Excused\";s:12:\"notification\";s:12:\"Notification\";s:30:\"sess_registration_notification\";s:12:\"Notification\";s:35:\"sess_registration_notification_info\";s:99:\"Shows column in tab \'Participants\' to select users being notified about new or leaving participants\";s:24:\"sess_notification_option\";s:6:\"Option\";s:32:\"sess_notification_option_inherit\";s:19:\"Inherit from Parent\";s:37:\"sess_notification_option_inherit_info\";s:114:\"Use the parent notification settings (e.g. notification settings from course or group) for members of this session\";s:31:\"sess_notification_option_manual\";s:12:\"Set manually\";s:36:\"sess_notification_option_manual_info\";s:75:\"Notification setting for users has to be set manually in tab \'Participants\'\";s:19:\"sess_mem_tbl_header\";s:20:\"Session Participants\";s:13:\"objs_crs_role\";s:12:\"Course Roles\";s:13:\"objs_grp_role\";s:11:\"Group Roles\";s:27:\"sess_part_filter_registered\";s:15:\"Only Registered\";s:29:\"sess_part_filter_participated\";s:13:\"Only Attended\";s:15:\"sess_print_list\";s:13:\"Generate List\";s:11:\"sess_import\";s:14:\"Import Session\";s:24:\"sess_members_print_title\";s:20:\"Session Participants\";s:9:\"sess_copy\";s:12:\"Copy Session\";s:37:\"sess_mail_permanent_link_participants\";s:68:\"Click on the following link to edit the participants of the session:\";s:24:\"sess_mail_permanent_link\";s:90:\"Click on the following link to find all of the information you need regarding the session:\";s:13:\"sess_reg_type\";s:23:\" Registration Procedure\";s:15:\"sess_reg_direct\";s:21:\"Declare Participation\";s:20:\"sess_reg_direct_info\";s:56:\"User has to click ‘Attend’ to participate in session\";s:16:\"sess_reg_request\";s:23:\"Apply for Participation\";s:17:\"sess_reg_disabled\";s:25:\"No Registration Necessary\";s:21:\"sess_reg_request_info\";s:83:\"An administrator has to decide upon each user\'s apply for participating in session.\";s:22:\"sess_reg_disabled_info\";s:56:\"Users do not need to register to participate in session.\";s:26:\"sess_reg_max_members_short\";s:17:\"Number of Members\";s:20:\"sess_reg_max_members\";s:25:\"Limited Number of Members\";s:25:\"sess_reg_max_members_info\";s:67:\"Define the maximum number of users that can participate in session.\";s:21:\"sess_reg_waiting_list\";s:12:\"Waiting List\";s:16:\"sess_section_reg\";s:21:\"Registration Settings\";s:32:\"sess_setting_header_presentation\";s:12:\"Presentation\";s:16:\"sess_users_added\";s:42:\"Registered selected users for the session.\";s:27:\"sess_users_already_assigned\";s:48:\"The user is already registered for this session.\";s:28:\"sess_users_removed_from_list\";s:59:\"The selected users have been removed from the waiting list.\";s:28:\"sess_msg_applicants_assigned\";s:36:\"Applicant(s) registered for session.\";s:27:\"sess_msg_applicants_removed\";s:31:\"Applicant(s) removed from list.\";s:23:\"sess_registered_confirm\";s:117:\"Participation requires confirmation by an administrator. You will be notified when your application has been handled.\";s:27:\"sess_reg_max_users_exceeded\";s:78:\"A registration is not possible, since the maximum number of users id exceeded.\";s:30:\"sess_reg_max_users_exceeded_wl\";s:69:\"The maximum number of users for this session appointment is exceeded.\";s:20:\"sess_reg_added_to_wl\";s:40:\"You have been added to the waiting list.\";s:21:\"sess_mail_sub_dec_sub\";s:37:\"Registration refused for session \"%s\"\";s:21:\"sess_mail_sub_dec_bod\";s:74:\"we regret to say that your registration has been refused for session \"%s\".\";s:21:\"sess_mail_sub_acc_sub\";s:29:\"Registration for Session \"%s\"\";s:21:\"sess_mail_sub_acc_bod\";s:42:\"you have been registered for session \"%s\".\";s:14:\"sess_lp_preset\";s:26:\"Activate Learning Progress\";s:19:\"sess_lp_preset_info\";s:69:\"Activates the learning progress for all session events to be created.\";s:26:\"sess_reg_waiting_list_none\";s:4:\"None\";s:33:\"sess_reg_waiting_list_no_autofill\";s:17:\"Without Auto-Fill\";s:38:\"sess_reg_waiting_list_no_autofill_info\";s:95:\"If the maximum number of users is exceeded, new registrations will be placed on a waiting list.\";s:30:\"sess_reg_waiting_list_autofill\";s:14:\"With Auto-Fill\";s:35:\"sess_reg_waiting_list_autofill_info\";s:190:\"Participants are recruited from the waiting list automatically on cancellations. This should not be used with the \"Apply for Participation\" registration procedure as autofill will bypass it.\";s:23:\"sess_max_members_needed\";s:67:\"A maximum number of members is needed for the waiting list feature.\";s:26:\"sess_list_reg_limit_places\";s:11:\"Free places\";s:19:\"sess_accept_request\";s:20:\"Accept Participation\";s:22:\"sess_new_registrations\";s:12:\"Join Request\";s:9:\"sess_open\";s:12:\"Open Session\";s:21:\"sess_filter_all_types\";s:9:\"All types\";s:24:\"sess_filter_not_assigned\";s:12:\"Not Assigned\";s:16:\"sess_is_assigned\";s:11:\"is Assigned\";s:17:\"sess_show_members\";s:17:\"Show Participants\";s:27:\"sess_show_participants_info\";s:69:\"If activated, session participants can access the participant gallery\";s:26:\"sess_member_administration\";s:17:\"Edit Participants\";s:20:\"sess_members_gallery\";s:15:\"Session Gallery\";s:35:\"sess_mail_context_participant_title\";s:29:\"Session: Mail to Participants\";s:34:\"sess_mail_context_participant_info\";s:90:\"For the participant e-mails on the participants and learning progress screens of a session\";s:15:\"mail_sess_roles\";s:26:\"Send Mail to Session Roles\";s:22:\"send_mail_participants\";s:27:\"All Participants of Session\";s:19:\"il_sess_participant\";s:20:\"Session Participants\";s:14:\"sess_mail_type\";s:20:\"Mail to Participants\";s:21:\"sess_mail_admins_only\";s:23:\"For Administrators only\";s:26:\"sess_mail_admins_only_info\";s:97:\"Only administrators can use the feature ‘Mail to Participants’ in the ‘Participants’ tab.\";s:13:\"sess_mail_all\";s:20:\"For all Participants\";s:18:\"sess_mail_all_info\";s:94:\"All participants can use the feature ‘Mail to Participants’ in the ‘Participants’ tab.\";s:12:\"sess_contact\";s:7:\"Contact\";s:17:\"sess_mem_contacts\";s:16:\"Tutorial Support\";s:12:\"sess_members\";s:12:\"Participants\";s:22:\"sess_material_assigned\";s:8:\"Assigned\";s:26:\"sess_material_not_assigned\";s:12:\"Not Assigned\";s:11:\"sess_assign\";s:6:\"Assign\";}'); INSERT INTO `lng_modules` VALUES ('shib','en','a:38:{s:16:\"shib_add_missing\";s:20:\"Assign Missing Roles\";s:15:\"shib_add_remove\";s:16:\"Add/Remove Roles\";s:20:\"shib_assignment_type\";s:18:\"Kind of Assignment\";s:14:\"shib_attr_info\";s:62:\"Assign by a specific attribute in the Shibboleth User Profile.\";s:19:\"shib_attribute_name\";s:14:\"Attribute Name\";s:20:\"shib_attribute_value\";s:15:\"Attribute Value\";s:14:\"shib_attribute\";s:14:\"User Attribute\";s:26:\"shib_check_role_assignment\";s:38:\"Assignment of Roles After Later Logins\";s:16:\"shib_choose_role\";s:11:\"Choose Role\";s:25:\"shib_confirm_del_role_ass\";s:49:\"Do you really want to delete the following rules?\";s:17:\"shib_deleted_rule\";s:25:\"Deleted role assignments.\";s:16:\"shib_global_role\";s:11:\"Global Role\";s:15:\"shib_ilias_role\";s:15:\"ILIAS Role Name\";s:15:\"shib_local_role\";s:10:\"Local Role\";s:22:\"shib_missing_attr_name\";s:32:\"Please enter the attribute name.\";s:23:\"shib_missing_attr_value\";s:33:\"Please enter the attribute value.\";s:22:\"shib_missing_plugin_id\";s:31:\"Please enter a valid plugin id.\";s:17:\"shib_missing_role\";s:23:\"Please select one role.\";s:13:\"shib_new_rule\";s:12:\"Add new Rule\";s:14:\"shib_plugin_id\";s:9:\"Plugin Id\";s:16:\"shib_plugin_info\";s:75:\"Validate the role assignment with a plugin. Please enter a valid plugin id.\";s:11:\"shib_plugin\";s:20:\"Assignment by Plugin\";s:22:\"shib_remove_deprecated\";s:25:\"Deassign Deprecated Roles\";s:19:\"shib_role_ass_table\";s:29:\"New Rule for Role Assignments\";s:20:\"shib_role_assignment\";s:16:\"Role Assignments\";s:22:\"shib_role_by_attribute\";s:20:\"Shibboleth Attribute\";s:19:\"shib_role_by_plugin\";s:9:\"By Plugin\";s:19:\"shib_role_name_info\";s:69:\"Please choose either a global role or enter the name of a local role.\";s:14:\"shib_role_name\";s:15:\"ILIAS Role Name\";s:19:\"shib_role_selection\";s:14:\"Role Selection\";s:19:\"shib_rule_condition\";s:9:\"Condition\";s:14:\"shib_rule_type\";s:18:\"Type of Assignment\";s:17:\"shib_rules_tables\";s:28:\"Active Role Assignment Rules\";s:13:\"shib_settings\";s:19:\"Shibboleth Settings\";s:26:\"shib_update_role_ass_table\";s:25:\"Edit Role Assignment Rule\";s:17:\"shib_update_roles\";s:16:\"Role Assignments\";s:17:\"shib_activate_new\";s:26:\"New Accounts with Approval\";s:22:\"shib_activate_new_info\";s:75:\"If checked any new account creation has to be approved by an administrator.\";}'); INSERT INTO `lng_modules` VALUES ('skmg','en','a:139:{s:13:\"skmg_settings\";s:30:\"Competence Management Settings\";s:16:\"skmg_enable_skmg\";s:30:\"Activate Competence Management\";s:11:\"skmg_skills\";s:11:\"Competences\";s:33:\"skmg_insert_basic_skill_from_clip\";s:39:\"Insert Basic Competences from Clipboard\";s:36:\"skmg_insert_skill_category_from_clip\";s:43:\"Insert Competence Categories from Clipboard\";s:36:\"skmg_selected_items_have_been_copied\";s:32:\"Selected items have been copied.\";s:33:\"skmg_selected_items_have_been_cut\";s:29:\"Selected items have been cut.\";s:4:\"skll\";s:16:\"Basic Competence\";s:4:\"scat\";s:19:\"Competence Category\";s:14:\"skmg_add_level\";s:9:\"Add Level\";s:16:\"skmg_skill_level\";s:16:\"Competence Level\";s:7:\"skmg_nr\";s:2:\"Nr\";s:12:\"skmg_trigger\";s:7:\"Trigger\";s:14:\"skmg_new_level\";s:9:\"New Level\";s:15:\"skmg_edit_level\";s:10:\"Edit Level\";s:17:\"skmg_update_order\";s:12:\"Update Order\";s:25:\"skmg_really_delete_levels\";s:61:\"Do you really want to delete the following competence levels?\";s:10:\"skmg_skill\";s:10:\"Competence\";s:17:\"skmg_skill_levels\";s:17:\"Competence Levels\";s:24:\"skmg_skill_level_trigger\";s:24:\"Competence Level Trigger\";s:15:\"skmg_no_trigger\";s:10:\"No Trigger\";s:19:\"skmg_remove_trigger\";s:14:\"Remove Trigger\";s:19:\"skmg_select_trigger\";s:14:\"Select Trigger\";s:33:\"skmg_skill_management_deactivated\";s:47:\"Competence Management is currently deactivated.\";s:21:\"skmg_cert_skill_title\";s:16:\"Competence Title\";s:27:\"skmg_cert_skill_level_title\";s:22:\"Competence Level Title\";s:29:\"skmg_cert_skill_trigger_title\";s:24:\"Competence Trigger Title\";s:14:\"skmg_edit_scat\";s:24:\"Edit Competence Category\";s:29:\"skmg_please_select_self_skill\";s:40:\"Start a new Self Evaluation. Competence:\";s:28:\"skmg_execute_self_evaluation\";s:5:\"Start\";s:25:\"skmg_your_self_evaluation\";s:20:\"Your Self-Evaluation\";s:14:\"skmg_no_skills\";s:14:\"No Competences\";s:25:\"skmg_save_self_evaluation\";s:22:\"Finish Self-Evaluation\";s:21:\"skmg_self_evaluations\";s:16:\"Self-Evaluations\";s:32:\"skmg_sure_delete_self_evaluation\";s:60:\"Do you really want to delete the following self-evaluations?\";s:36:\"skmg_please_select_your_skill_levels\";s:37:\"Please select your competence levels.\";s:20:\"skmg_self_evaluation\";s:15:\"Self-Evaluation\";s:14:\"skmg_next_step\";s:9:\"Next Step\";s:18:\"skmg_previous_step\";s:13:\"Previous Step\";s:20:\"skmg_skill_templates\";s:20:\"Competence Templates\";s:19:\"skmg_skill_template\";s:19:\"Competence Template\";s:46:\"skmg_insert_skill_template_reference_from_clip\";s:51:\"Insert Competence Template Reference from Clipboard\";s:13:\"skmg_new_sktr\";s:33:\"New Competence Template Reference\";s:14:\"skmg_edit_sktr\";s:34:\"Edit Competence Template Reference\";s:16:\"skmg_list_skills\";s:16:\"List Competences\";s:21:\"skmg_assign_materials\";s:16:\"Assign Materials\";s:14:\"skmg_add_skill\";s:14:\"Add Competence\";s:15:\"skmg_selectable\";s:10:\"Selectable\";s:20:\"skmg_selectable_info\";s:61:\"Allows user to select this category as a personal competence.\";s:14:\"skmg_materials\";s:9:\"Materials\";s:18:\"skmg_remove_skills\";s:18:\"Remove Competences\";s:25:\"skmg_really_remove_skills\";s:70:\"Do you really want to remove the following competences from your list?\";s:26:\"skmg_create_skill_template\";s:26:\"Create Competence Template\";s:35:\"skmg_create_skill_template_category\";s:35:\"Create Competence Template Category\";s:15:\"skmg_save_order\";s:10:\"Save Order\";s:10:\"skmg_order\";s:5:\"Order\";s:13:\"skmg_order_nr\";s:12:\"Order Number\";s:16:\"skmg_create_skll\";s:17:\"Create Competence\";s:36:\"skmg_create_skill_template_reference\";s:36:\"Create Competence Template Reference\";s:26:\"skmg_create_skill_category\";s:26:\"Create Competence Category\";s:21:\"skmg_description_info\";s:40:\"The description comes from the template.\";s:14:\"skmg_edit_skll\";s:24:\"Edit Competence Settings\";s:9:\"skmg_sktr\";s:29:\"Competence Template Reference\";s:10:\"skmg_items\";s:5:\"Items\";s:16:\"skmg_create_sctp\";s:24:\"Create Template Category\";s:14:\"skmg_edit_sctp\";s:22:\"Edit Template Category\";s:9:\"skmg_sctp\";s:28:\"Competence Template Category\";s:36:\"skmg_insert_skill_template_from_clip\";s:41:\"Insert Competence Template from Clipboard\";s:39:\"skmg_insert_template_category_from_clip\";s:39:\"Insert Template Category from Clipboard\";s:39:\"skmg_insert_please_choose_one_type_only\";s:37:\"Please choose only one type of items.\";s:10:\"skmg_level\";s:5:\"Level\";s:13:\"skmg_material\";s:8:\"Material\";s:17:\"skmg_remove_skill\";s:17:\"Remove Competence\";s:32:\"skmg_from_lower_to_higher_levels\";s:76:\"Please order the levels from lower ones on top to higher ones at the bottom.\";s:17:\"skmg_select_skill\";s:61:\"Click on a competence to add it to your personal competences.\";s:33:\"skmg_ass_materials_from_workspace\";s:193:\"Here you can assign materials, e.g. files, from your personal resources to competence levels. If you would like to add materials to your personal resources now, please click the following link.\";s:19:\"skmg_skill_profiles\";s:8:\"Profiles\";s:16:\"skmg_add_profile\";s:11:\"Add Profile\";s:17:\"skmg_edit_profile\";s:12:\"Edit Profile\";s:20:\"skmg_delete_profiles\";s:52:\"Do you really want to delete the following profiles?\";s:26:\"skmg_assigned_skill_levels\";s:26:\"Assigned Competence Levels\";s:17:\"skmg_assign_level\";s:12:\"Assign Level\";s:12:\"skmg_profile\";s:7:\"Profile\";s:18:\"skmg_remove_levels\";s:13:\"Remove Levels\";s:30:\"skmg_select_skill_level_assign\";s:22:\"Please select a skill.\";s:29:\"skmg_confirm_remove_level_ass\";s:78:\"So you really want to remove the following competence levels from the profile?\";s:19:\"skmg_assigned_users\";s:24:\"Assigned Roles and Users\";s:16:\"skmg_assign_user\";s:11:\"Assign User\";s:19:\"skmg_add_assignment\";s:19:\"Add Roles / Members\";s:24:\"skmg_add_user_to_profile\";s:29:\"Add users or roles to profile\";s:25:\"skmg_confirm_user_removal\";s:67:\"Do you really want to remove the following users from this profile?\";s:14:\"skmg_resources\";s:9:\"Resources\";s:17:\"skmg_add_resource\";s:12:\"Add Resource\";s:36:\"skmg_confirm_level_resources_removal\";s:79:\"Do you really want to remove the following resources from the competence level?\";s:17:\"skmg_target_level\";s:20:\"Profile Target Level\";s:15:\"skmg_360_survey\";s:12:\"360° Survey\";s:25:\"skmg_skill_needs_impr_res\";s:127:\"You need to improve this competence. The following resources provide learning material aligned to your target competence level.\";s:28:\"skmg_skill_needs_impr_no_res\";s:171:\"You need to improve this competence. Unfortunately there are currently no learning resources available providing learning material aligned to your target competence level.\";s:24:\"skmg_skill_no_needs_impr\";s:61:\"Your competence level is sufficient for the selected profile.\";s:10:\"skmg_usage\";s:5:\"Usage\";s:9:\"skmg_type\";s:4:\"Type\";s:11:\"skmg_number\";s:6:\"Number\";s:24:\"skmg_usage_type_info_gen\";s:33:\"General Use in Repository Objects\";s:24:\"skmg_usage_type_info_mat\";s:53:\"Users assigned material from their personal resources\";s:25:\"skmg_usage_type_info_user\";s:17:\"Assigned to Users\";s:25:\"skmg_usage_type_info_pers\";s:35:\"Selected by Users as Personal Skill\";s:25:\"skmg_usage_type_info_prof\";s:22:\"Used in Skill Profiles\";s:24:\"skmg_usage_type_info_res\";s:49:\"Repository Objects Assigned as Suggested Resource\";s:22:\"skmg_usage_obj_objects\";s:9:\"Object(s)\";s:20:\"skmg_usage_obj_users\";s:7:\"User(s)\";s:23:\"skmg_usage_obj_profiles\";s:10:\"Profile(s)\";s:31:\"skmg_cannot_delete_nodes_in_use\";s:60:\"Some items cannot be deleted, because they are still in use.\";s:17:\"skmg_status_draft\";s:15:\"Draft (Offline)\";s:22:\"skmg_status_draft_info\";s:20:\"Item will be hidden.\";s:19:\"skmg_status_publish\";s:9:\"Published\";s:24:\"skmg_status_publish_info\";s:144:\"Item can be used if all parents are published, too. Once items are used, the status cannot be set to draft anymore, neither can they be deleted.\";s:20:\"skmg_status_outdated\";s:8:\"Outdated\";s:25:\"skmg_status_outdated_info\";s:175:\"Item cannot be newly selected by users as personal skill, or newly assigned to repository objects or skill profiles. However existing assignments and data are still presented.\";s:11:\"skmg_status\";s:6:\"Status\";s:24:\"skmg_no_nodes_selectable\";s:46:\"Currently there are no competences selectable.\";s:24:\"skmg_suggested_resources\";s:19:\"Suggested Resources\";s:18:\"skmg_import_skills\";s:6:\"Import\";s:15:\"skmg_input_file\";s:11:\"Import File\";s:17:\"skmg_skill_in_use\";s:155:\"This skill is used by users or content. Not all commands are available. Please keep in mind that any changes that are made will affect the existing usages.\";s:22:\"skmg_assigned_profiles\";s:17:\"Assigned Profiles\";s:20:\"skmg_selected_skills\";s:18:\"Competence Records\";s:27:\"skmg_hide_profile_self_eval\";s:36:\"Hide Profile without Self Evaluation\";s:32:\"skmg_hide_profile_self_eval_info\";s:108:\"Profile target values will not be shown to a user, if no self evaluation has been done for a specific skill.\";s:14:\"skmg_suggested\";s:18:\"Suggested Resource\";s:22:\"skmg_lp_triggers_level\";s:23:\"Triggered by Completion\";s:18:\"skmg_save_settings\";s:13:\"Save Settings\";s:16:\"skmg_eval_type_1\";s:9:\"Appraisal\";s:16:\"skmg_eval_type_2\";s:11:\"Measurement\";s:16:\"skmg_eval_type_3\";s:15:\"Self-Evaluation\";s:18:\"skmg_order_nr_info\";s:48:\"Positions competence in the list of competences.\";s:22:\"skmg_type_of_formation\";s:17:\"Type of Formation\";s:8:\"skmg_all\";s:3:\"All\";s:17:\"skmg_refresh_view\";s:7:\"Refresh\";s:25:\"skmg_materials_ressources\";s:19:\"Resources/Materials\";}'); @@ -30537,7 +30553,7 @@ INSERT INTO `lng_modules` VALUES ('pwsp','en','a:5:{s:21:\"pwsp_enable_wsp_blogs INSERT INTO `lng_modules` VALUES ('copa','en','a:9:{s:8:\"copa_new\";s:19:\"Create Content Page\";s:11:\"copa_import\";s:19:\"Import Content Page\";s:9:\"copa_copy\";s:17:\"Copy Content Page\";s:8:\"copa_add\";s:16:\"Add Content Page\";s:9:\"copa_edit\";s:17:\"Edit Content Page\";s:18:\"obj_copa_duplicate\";s:22:\"Duplicate Content Page\";s:34:\"copa_btn_lp_toggle_state_completed\";s:17:\"Set Not Completed\";s:38:\"copa_btn_lp_toggle_state_not_completed\";s:13:\"Set Completed\";s:19:\"copa_page_type_copa\";s:12:\"Content Page\";}'); INSERT INTO `lng_modules` VALUES ('ui','en','a:5:{s:18:\"ui_chars_remaining\";s:21:\"Characters remaining:\";s:12:\"ui_chars_min\";s:8:\"Minimum:\";s:12:\"ui_chars_max\";s:8:\"Maximum:\";s:15:\"ui_numeric_only\";s:29:\"Please insert a whole number.\";s:17:\"ui_error_in_group\";s:33:\"There is some error in this part.\";}'); INSERT INTO `lng_modules` VALUES ('cond','en','a:1:{s:25:\"cond_under_parent_control\";s:57:\"Preconditions are under the control of the parent object.\";}'); -INSERT INTO `lng_modules` VALUES ('mme','en','a:76:{s:4:\"main\";s:9:\"Main Menu\";s:15:\"subtab_topitems\";s:9:\"Top Items\";s:15:\"subtab_subitems\";s:5:\"Items\";s:8:\"tab_back\";s:4:\"Back\";s:11:\"topitem_add\";s:12:\"Add Top Item\";s:7:\"restore\";s:15:\"Reset Main Menu\";s:19:\"msg_restore_confirm\";s:135:\"All Custom Items and Translations will be deleted, all Standard items will be reset to factory default. All customization will be lost.\";s:12:\"msg_restored\";s:26:\"Main Menu completely reset\";s:12:\"topitem_edit\";s:4:\"Edit\";s:14:\"topitem_delete\";s:6:\"Delete\";s:17:\"topitem_translate\";s:9:\"Translate\";s:16:\"topitem_position\";s:8:\"Position\";s:13:\"topitem_title\";s:5:\"Title\";s:14:\"topitem_active\";s:6:\"Active\";s:18:\"topitem_subentries\";s:5:\"Items\";s:16:\"topitem_provider\";s:8:\"Provider\";s:15:\"topitem_actions\";s:7:\"Actions\";s:19:\"topitem_type_parent\";s:8:\"Top Item\";s:17:\"topitem_type_link\";s:4:\"Link\";s:21:\"topitem_title_default\";s:24:\"Title (Default Language)\";s:28:\"topitem_title_default_byline\";s:66:\"Other Translations can be added with the Translation Action after.\";s:21:\"topitem_active_byline\";s:37:\"Activate this Top Item for all users.\";s:12:\"topitem_type\";s:4:\"Type\";s:19:\"topitem_type_byline\";s:53:\"Top Items can be links directly or can contain Items.\";s:12:\"topitem_icon\";s:4:\"Icon\";s:19:\"topitem_icon_byline\";s:84:\"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.\";s:11:\"subitem_add\";s:8:\"Add Item\";s:12:\"subitem_edit\";s:4:\"Edit\";s:14:\"subitem_delete\";s:6:\"Delete\";s:17:\"subitem_translate\";s:9:\"Translate\";s:10:\"sub_parent\";s:8:\"Top Item\";s:12:\"sub_position\";s:8:\"Position\";s:9:\"sub_title\";s:5:\"Title\";s:8:\"sub_type\";s:4:\"Type\";s:10:\"sub_active\";s:6:\"Active\";s:10:\"sub_status\";s:6:\"Status\";s:12:\"sub_provider\";s:8:\"Provider\";s:11:\"sub_actions\";s:7:\"Actions\";s:8:\"sub_icon\";s:4:\"Icon\";s:15:\"sub_icon_byline\";s:84:\"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.\";s:11:\"button_save\";s:4:\"Save\";s:19:\"table_show_inactive\";s:13:\"Show inactive\";s:17:\"sub_title_default\";s:24:\"Title (Default Language)\";s:24:\"sub_title_default_byline\";s:66:\"Additional languages can be added via the action link \"Translate\".\";s:15:\"sub_type_byline\";s:66:\"Specific type for the Item additional configuration may be needed.\";s:17:\"sub_active_byline\";s:33:\"Activate this Item for all users.\";s:13:\"add_languages\";s:12:\"Add Language\";s:19:\"mm_translation_lang\";s:8:\"Language\";s:20:\"mm_translation_trans\";s:11:\"Translation\";s:16:\"additional_langs\";s:20:\"Additional Languages\";s:19:\"msg_languages_added\";s:15:\"Added languages\";s:22:\"msg_translations_saved\";s:18:\"Translations saved\";s:24:\"msg_translations_deleted\";s:20:\"Translations deleted\";s:14:\"topitem_css_id\";s:6:\"CSS-ID\";s:17:\"err_uri_not_valid\";s:26:\"Please provide a valid URL\";s:9:\"type_lost\";s:4:\"Lost\";s:20:\"component_not_active\";s:27:\"Component is not activated.\";s:26:\"item_must_be_always_active\";s:20:\"Item must be active.\";s:19:\"msg_subitem_deleted\";s:13:\"Item deleted.\";s:19:\"msg_topitem_deleted\";s:13:\"Item deleted.\";s:22:\"subitem_confirm_delete\";s:48:\"Do you really want to delete the following Item?\";s:22:\"topitem_confirm_delete\";s:48:\"Do you really want to delete the following Item?\";s:14:\"field_external\";s:13:\"External Link\";s:19:\"field_external_info\";s:42:\"Link will be opnened in a separate Window.\";s:9:\"field_url\";s:3:\"URL\";s:14:\"field_url_info\";s:47:\"Link to the desired website, lead by http(s)://\";s:12:\"field_ref_id\";s:18:\"ILIAS Reference-ID\";s:17:\"field_ref_id_info\";s:131:\"The Reference-ID of the desired ILIAS-Object from the Repository, you find the Reference-ID in the URL of a object (...?ref_id=123)\";s:20:\"type_top_parent_item\";s:9:\"Container\";s:18:\"type_top_link_item\";s:4:\"Link\";s:14:\"type_separator\";s:9:\"Separator\";s:19:\"type_separator_info\";s:118:\"The title of this item will be displayed in a grey banner. If you do not enter any title, a simple line will be shown.\";s:9:\"type_link\";s:4:\"Link\";s:14:\"type_link_list\";s:9:\"Link List\";s:12:\"type_complex\";s:7:\"Complex\";s:20:\"type_repository_link\";s:15:\"Repository-Link\";}'); +INSERT INTO `lng_modules` VALUES ('mme','en','a:78:{s:5:\"flush\";s:17:\"Remove Lost Items\";s:19:\"msg_subitem_flushed\";s:19:\"Lost Items removed.\";s:4:\"main\";s:9:\"Main Menu\";s:15:\"subtab_topitems\";s:9:\"Top Items\";s:15:\"subtab_subitems\";s:5:\"Items\";s:8:\"tab_back\";s:4:\"Back\";s:11:\"topitem_add\";s:12:\"Add Top Item\";s:7:\"restore\";s:15:\"Reset Main Menu\";s:19:\"msg_restore_confirm\";s:135:\"All Custom Items and Translations will be deleted, all Standard items will be reset to factory default. All customization will be lost.\";s:12:\"msg_restored\";s:26:\"Main Menu completely reset\";s:12:\"topitem_edit\";s:4:\"Edit\";s:14:\"topitem_delete\";s:6:\"Delete\";s:17:\"topitem_translate\";s:9:\"Translate\";s:16:\"topitem_position\";s:8:\"Position\";s:13:\"topitem_title\";s:5:\"Title\";s:14:\"topitem_active\";s:6:\"Active\";s:18:\"topitem_subentries\";s:5:\"Items\";s:16:\"topitem_provider\";s:8:\"Provider\";s:15:\"topitem_actions\";s:7:\"Actions\";s:19:\"topitem_type_parent\";s:8:\"Top Item\";s:17:\"topitem_type_link\";s:4:\"Link\";s:21:\"topitem_title_default\";s:24:\"Title (Default Language)\";s:28:\"topitem_title_default_byline\";s:66:\"Other Translations can be added with the Translation Action after.\";s:21:\"topitem_active_byline\";s:37:\"Activate this Top Item for all users.\";s:12:\"topitem_type\";s:4:\"Type\";s:19:\"topitem_type_byline\";s:53:\"Top Items can be links directly or can contain Items.\";s:12:\"topitem_icon\";s:4:\"Icon\";s:19:\"topitem_icon_byline\";s:84:\"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.\";s:11:\"subitem_add\";s:8:\"Add Item\";s:12:\"subitem_edit\";s:4:\"Edit\";s:14:\"subitem_delete\";s:6:\"Delete\";s:17:\"subitem_translate\";s:9:\"Translate\";s:10:\"sub_parent\";s:8:\"Top Item\";s:12:\"sub_position\";s:8:\"Position\";s:9:\"sub_title\";s:5:\"Title\";s:8:\"sub_type\";s:4:\"Type\";s:10:\"sub_active\";s:6:\"Active\";s:10:\"sub_status\";s:6:\"Status\";s:12:\"sub_provider\";s:8:\"Provider\";s:11:\"sub_actions\";s:7:\"Actions\";s:8:\"sub_icon\";s:4:\"Icon\";s:15:\"sub_icon_byline\";s:84:\"Upload a custom icon for this Item. Please note that the SVG-Icons will be inverted.\";s:11:\"button_save\";s:4:\"Save\";s:19:\"table_show_inactive\";s:13:\"Show inactive\";s:17:\"sub_title_default\";s:24:\"Title (Default Language)\";s:24:\"sub_title_default_byline\";s:66:\"Additional languages can be added via the action link \"Translate\".\";s:15:\"sub_type_byline\";s:66:\"Specific type for the Item additional configuration may be needed.\";s:17:\"sub_active_byline\";s:33:\"Activate this Item for all users.\";s:13:\"add_languages\";s:12:\"Add Language\";s:19:\"mm_translation_lang\";s:8:\"Language\";s:20:\"mm_translation_trans\";s:11:\"Translation\";s:16:\"additional_langs\";s:20:\"Additional Languages\";s:19:\"msg_languages_added\";s:15:\"Added languages\";s:22:\"msg_translations_saved\";s:18:\"Translations saved\";s:24:\"msg_translations_deleted\";s:20:\"Translations deleted\";s:14:\"topitem_css_id\";s:6:\"CSS-ID\";s:17:\"err_uri_not_valid\";s:26:\"Please provide a valid URL\";s:9:\"type_lost\";s:4:\"Lost\";s:20:\"component_not_active\";s:27:\"Component is not activated.\";s:26:\"item_must_be_always_active\";s:20:\"Item must be active.\";s:19:\"msg_subitem_deleted\";s:13:\"Item deleted.\";s:19:\"msg_topitem_deleted\";s:13:\"Item deleted.\";s:22:\"subitem_confirm_delete\";s:48:\"Do you really want to delete the following Item?\";s:22:\"topitem_confirm_delete\";s:48:\"Do you really want to delete the following Item?\";s:14:\"field_external\";s:13:\"External Link\";s:19:\"field_external_info\";s:42:\"Link will be opnened in a separate Window.\";s:9:\"field_url\";s:3:\"URL\";s:14:\"field_url_info\";s:47:\"Link to the desired website, lead by http(s)://\";s:12:\"field_ref_id\";s:18:\"ILIAS Reference-ID\";s:17:\"field_ref_id_info\";s:131:\"The Reference-ID of the desired ILIAS-Object from the Repository, you find the Reference-ID in the URL of a object (...?ref_id=123)\";s:20:\"type_top_parent_item\";s:9:\"Container\";s:18:\"type_top_link_item\";s:4:\"Link\";s:14:\"type_separator\";s:9:\"Separator\";s:19:\"type_separator_info\";s:118:\"The title of this item will be displayed in a grey banner. If you do not enter any title, a simple line will be shown.\";s:9:\"type_link\";s:4:\"Link\";s:14:\"type_link_list\";s:9:\"Link List\";s:12:\"type_complex\";s:7:\"Complex\";s:20:\"type_repository_link\";s:15:\"Repository-Link\";}'); INSERT INTO `lng_modules` VALUES ('like','en','a:2:{s:8:\"reaction\";s:8:\"Reaction\";s:4:\"like\";s:4:\"Like\";}'); INSERT INTO `lng_modules` VALUES ('noti','en','a:4:{s:26:\"noti_activate_notification\";s:21:\"Activate Notification\";s:28:\"noti_deactivate_notification\";s:23:\"Deactivate Notification\";s:27:\"noti_notification_activated\";s:22:\"Notification Activated\";s:29:\"noti_notification_deactivated\";s:24:\"Notification Deactivated\";}'); INSERT INTO `lng_modules` VALUES ('cert','en','a:21:{s:35:\"certificate_migration_confirm_start\";s:274:\"Since ILIAS 5.4, certificates in ILIAS are persistent. Even if courses, tests or learning modules are deleted, you are still able to access any certificate you might have earned by them. In order to use this new functionality, you need to migrate your old certificates once.\";s:36:\"certificate_migration_lastrun_failed\";s:52:\"The migration of the certificates failed. Try again?\";s:37:\"certificate_migration_confirm_started\";s:26:\"The migration was started.\";s:24:\"certificate_migration_go\";s:15:\"Start Migration\";s:17:\"user_certificates\";s:12:\"Certificates\";s:30:\"error_creating_certificate_pdf\";s:103:\"The certificate could not be created. Please contact the administrator to check the certificate server.\";s:20:\"cert_error_no_access\";s:39:\"You have no access to this certificate.\";s:26:\"certificate_same_not_saved\";s:83:\"No new version of certificate template was saved, because the values didn\'t change.\";s:31:\"certificate_achievement_sub_obj\";s:20:\"Certificate for %1$s\";s:23:\"certificate_achievement\";s:14:\"%1$s achieved.\";s:27:\"certificate_no_object_title\";s:25:\"No object title available\";s:26:\"certificate_no_object_desc\";s:31:\"No object description available\";s:26:\"cert_sortable_by_title_asc\";s:15:\"Title Ascending\";s:27:\"cert_sortable_by_title_desc\";s:16:\"Title Descending\";s:31:\"cert_sortable_by_issue_date_asc\";s:20:\"Issue Date Ascending\";s:32:\"cert_sortable_by_issue_date_desc\";s:21:\"Issue Date Descending\";s:20:\"cert_issued_on_label\";s:9:\"Issued On\";s:19:\"cert_download_label\";s:8:\"Download\";s:17:\"cert_object_label\";s:6:\"Object\";s:22:\"cert_description_label\";s:11:\"Description\";s:23:\"cert_currently_no_certs\";s:51:\"Currently you did not achieve any certificate, yet.\";}'); @@ -32336,7 +32352,7 @@ INSERT INTO `object_data` VALUES (34,'typ','lm','Learning module Object',-1,'200 INSERT INTO `object_data` VALUES (35,'typ','notf','Note Folder Object',-1,'2002-12-21 00:04:00','2002-12-21 00:04:00','',NULL); INSERT INTO `object_data` VALUES (36,'typ','note','Note Object',-1,'2002-12-21 00:04:00','2002-12-21 00:04:00','',NULL); INSERT INTO `object_data` VALUES (37,'typ','frm','Forum object',-1,'2002-07-15 15:54:22','2003-08-15 12:36:40','',NULL); -INSERT INTO `object_data` VALUES (70,'lng','en','installed',-1,NULL,'2020-11-27 18:33:52','',NULL); +INSERT INTO `object_data` VALUES (70,'lng','en','installed',-1,NULL,'2021-02-05 14:17:06','',NULL); INSERT INTO `object_data` VALUES (71,'lng','de','not_installed',6,'2003-08-15 10:25:19','2015-12-22 16:29:24','',NULL); INSERT INTO `object_data` VALUES (72,'lng','es','not_installed',6,'2003-08-15 10:25:19','2003-08-15 10:25:19','',NULL); INSERT INTO `object_data` VALUES (73,'lng','it','not_installed',6,'2003-08-15 10:25:19','2003-08-15 10:25:19','',NULL); @@ -33264,6 +33280,7 @@ INSERT INTO `pdfgen_map` VALUES (1,'Test','PrintViewOfQuestions','PhantomJS','Ph INSERT INTO `pdfgen_map` VALUES (2,'Test','UserResult','PhantomJS','PhantomJS'); INSERT INTO `pdfgen_map` VALUES (3,'Wiki','ContentExport','PhantomJS','PhantomJS'); INSERT INTO `pdfgen_map` VALUES (4,'Portfolio','ContentExport','PhantomJS','PhantomJS'); +INSERT INTO `pdfgen_map` VALUES (5,'Survey','Results','PhantomJS','PhantomJS'); -- -- Table structure for table `pdfgen_map_seq` @@ -33272,13 +33289,13 @@ INSERT INTO `pdfgen_map` VALUES (4,'Portfolio','ContentExport','PhantomJS','Phan CREATE TABLE `pdfgen_map_seq` ( `sequence` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence`) -) AUTO_INCREMENT=5; +) AUTO_INCREMENT=6; -- -- Dumping data for table `pdfgen_map_seq` -- -INSERT INTO `pdfgen_map_seq` VALUES (4); +INSERT INTO `pdfgen_map_seq` VALUES (5); -- -- Table structure for table `pdfgen_purposes` @@ -33299,6 +33316,7 @@ INSERT INTO `pdfgen_purposes` VALUES (1,'Test','PrintViewOfQuestions'); INSERT INTO `pdfgen_purposes` VALUES (2,'Test','UserResult'); INSERT INTO `pdfgen_purposes` VALUES (3,'Wiki','ContentExport'); INSERT INTO `pdfgen_purposes` VALUES (4,'Portfolio','ContentExport'); +INSERT INTO `pdfgen_purposes` VALUES (5,'Survey','Results'); -- -- Table structure for table `pdfgen_purposes_seq` @@ -33307,13 +33325,13 @@ INSERT INTO `pdfgen_purposes` VALUES (4,'Portfolio','ContentExport'); CREATE TABLE `pdfgen_purposes_seq` ( `sequence` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence`) -) AUTO_INCREMENT=5; +) AUTO_INCREMENT=6; -- -- Dumping data for table `pdfgen_purposes_seq` -- -INSERT INTO `pdfgen_purposes_seq` VALUES (4); +INSERT INTO `pdfgen_purposes_seq` VALUES (5); -- -- Table structure for table `pdfgen_renderer` @@ -33358,6 +33376,8 @@ INSERT INTO `pdfgen_renderer_avail` VALUES (5,'Wiki','ContentExport','PhantomJS' INSERT INTO `pdfgen_renderer_avail` VALUES (6,'Portfolio','ContentExport','PhantomJS'); INSERT INTO `pdfgen_renderer_avail` VALUES (10,'Test','PrintViewOfQuestions','WkhtmlToPdf'); INSERT INTO `pdfgen_renderer_avail` VALUES (9,'Test','UserResult','WkhtmlToPdf'); +INSERT INTO `pdfgen_renderer_avail` VALUES (11,'Survey','Results','PhantomJS'); +INSERT INTO `pdfgen_renderer_avail` VALUES (12,'Survey','Results','WkhtmlToPdf'); -- -- Table structure for table `pdfgen_renderer_avail_seq` @@ -33366,13 +33386,13 @@ INSERT INTO `pdfgen_renderer_avail` VALUES (9,'Test','UserResult','WkhtmlToPdf') CREATE TABLE `pdfgen_renderer_avail_seq` ( `sequence` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence`) -) AUTO_INCREMENT=11; +) AUTO_INCREMENT=13; -- -- Dumping data for table `pdfgen_renderer_avail_seq` -- -INSERT INTO `pdfgen_renderer_avail_seq` VALUES (10); +INSERT INTO `pdfgen_renderer_avail_seq` VALUES (12); -- -- Table structure for table `pdfgen_renderer_seq` @@ -39717,7 +39737,7 @@ INSERT INTO `settings` VALUES ('common','pd_active_pres_view_1','a:2:{i:0;s:4:\" INSERT INTO `settings` VALUES ('common','pd_def_pres_view_0','list'); INSERT INTO `settings` VALUES ('common','pd_def_pres_view_1','list'); INSERT INTO `settings` VALUES ('cmix','ilias_uuid','f269323f-fa99-4102-81fa-2e6ee79d13e8'); -INSERT INTO `settings` VALUES ('common','db_hotfixes_6','36'); +INSERT INTO `settings` VALUES ('common','db_hotfixes_6','42'); INSERT INTO `settings` VALUES ('common','ilfrmreadidx1','1'); INSERT INTO `settings` VALUES ('common','ilfrmtreemigr_6_hf','1597411248'); @@ -43099,7 +43119,7 @@ CREATE TABLE `usr_cron_mail_reminder` ( CREATE TABLE `usr_data` ( `usr_id` int(11) NOT NULL DEFAULT 0, - `login` varchar(80) DEFAULT NULL, + `login` varchar(190) DEFAULT NULL, `passwd` varchar(80) DEFAULT NULL, `firstname` varchar(32) DEFAULT NULL, `lastname` varchar(32) DEFAULT NULL, @@ -44302,4 +44322,4 @@ CREATE TABLE `xmlvalue_seq` ( --- Dump completed on 2020-11-27 18:34:23 +-- Dump completed on 2021-02-05 14:17:14 diff --git a/src/GlobalScreen/Scope/Layout/Factory/AbstractLayoutModification.php b/src/GlobalScreen/Scope/Layout/Factory/AbstractLayoutModification.php index 3e3f9f2ce7a9..1f6339701943 100644 --- a/src/GlobalScreen/Scope/Layout/Factory/AbstractLayoutModification.php +++ b/src/GlobalScreen/Scope/Layout/Factory/AbstractLayoutModification.php @@ -114,7 +114,7 @@ final public function hasValidModification() : bool /** * @return bool */ - final private function checkClosure() : bool + private function checkClosure() : bool { $closure = $this->modification; $return_type = $this->getClosureReturnType(); diff --git a/src/GlobalScreen/Scope/Layout/Provider/PagePart/StandardPagePartProvider.php b/src/GlobalScreen/Scope/Layout/Provider/PagePart/StandardPagePartProvider.php index 29263962d776..7d0846bf6d64 100644 --- a/src/GlobalScreen/Scope/Layout/Provider/PagePart/StandardPagePartProvider.php +++ b/src/GlobalScreen/Scope/Layout/Provider/PagePart/StandardPagePartProvider.php @@ -36,6 +36,10 @@ class StandardPagePartProvider implements PagePartProvider * @var \ILIAS\DI\UIServices */ protected $ui; + /** + * @var \ilLanguage + */ + protected $lang; /** @@ -46,6 +50,7 @@ public function __construct() global $DIC; $this->ui = $DIC->ui(); $this->gs = $DIC->globalScreen(); + $this->lang = $DIC->language(); } @@ -107,14 +112,14 @@ public function getMainBar() : ?MainBar } $more_glyph = $f->symbol()->glyph()->more("#"); $main_bar = $main_bar->withMoreButton( - $f->button()->bulky($more_glyph, "More", "#") + $f->button()->bulky($more_glyph, $this->lang->txt('more'), "#") ); // Tools - $grid_icon = $f->symbol()->icon()->custom(\ilUtil::getImagePath("outlined/icon_tool.svg"), "More"); + $grid_icon = $f->symbol()->icon()->custom(\ilUtil::getImagePath("outlined/icon_tool.svg"), $this->lang->txt('more')); $this->gs->collector()->tool()->collectOnce(); if ($this->gs->collector()->tool()->hasItems()) { - $tools_button = $f->button()->bulky($grid_icon, "Tools", "#")->withEngagedState(true); + $tools_button = $f->button()->bulky($grid_icon, $this->lang->txt('tools'), "#")->withEngagedState(true); $main_bar = $main_bar->withToolsButton($tools_button); /** * @var $main_bar MainBar diff --git a/src/UI/examples/Dropzone/File/Standard/with_usage_in_legacy_form.php b/src/UI/examples/Dropzone/File/Standard/with_usage_in_legacy_form.php index 3b8c484a97cb..e669a8a83f26 100644 --- a/src/UI/examples/Dropzone/File/Standard/with_usage_in_legacy_form.php +++ b/src/UI/examples/Dropzone/File/Standard/with_usage_in_legacy_form.php @@ -17,7 +17,7 @@ function with_usage_in_legacy_form() $item = new ilTextareaInputGUI('Description', 'description'); $item->setRequired(true); $form->addItem($item); - $item = new ilFileStandardDropzoneInputGUI('Files', 'files'); + $item = new ilFileStandardDropzoneInputGUI('cancel', 'Files', 'files'); $item->setUploadUrl($form->getFormAction()); $item->setSuffixes([ 'jpg', 'gif', 'png', 'pdf' ]); $item->setInfo('Allowed file types: ' . implode(', ', $item->getSuffixes())); diff --git a/src/UI/templates/default/Item/item.less b/src/UI/templates/default/Item/item.less index 3ed50895a35a..29f9c379b27e 100644 --- a/src/UI/templates/default/Item/item.less +++ b/src/UI/templates/default/Item/item.less @@ -8,12 +8,8 @@ padding: @il-item-padding; .clearfix(); - h4 { - padding-top: 0; - margin: 0; + .il-item-title { font-size: @font-size-base; - float: left; - .btn-link, a { font-size: inherit; line-height: @line-height-base; diff --git a/src/UI/templates/default/Item/tpl.item_standard.html b/src/UI/templates/default/Item/tpl.item_standard.html index 3670bb5d4410..5fe56ee31d42 100644 --- a/src/UI/templates/default/Item/tpl.item_standard.html +++ b/src/UI/templates/default/Item/tpl.item_standard.html @@ -14,7 +14,7 @@
- {TITLE} +
{TITLE}
{ACTIONS}
{DESC}
diff --git a/src/UI/templates/default/Listing/workflow.less b/src/UI/templates/default/Listing/workflow.less index c3f7f4f040f8..2a3557ef1926 100644 --- a/src/UI/templates/default/Listing/workflow.less +++ b/src/UI/templates/default/Listing/workflow.less @@ -24,7 +24,7 @@ font-size: floor(@workflow-icon-size*0.52381); height: @workflow-icon-size; line-height: ceil(@workflow-icon-size*0.9); - margin-left: floor(@workflow-icon-size/4); + margin-left: floor(@workflow-icon-size*0.25); padding-left: ceil(@workflow-icon-size*0.04761); position: absolute; text-align: center; diff --git a/src/UI/templates/default/MainControls/tpl.footer.html b/src/UI/templates/default/MainControls/tpl.footer.html index cfd31e677d9f..2366ba662702 100644 --- a/src/UI/templates/default/MainControls/tpl.footer.html +++ b/src/UI/templates/default/MainControls/tpl.footer.html @@ -3,7 +3,7 @@ diff --git a/src/UI/templates/default/Symbol/icon.less b/src/UI/templates/default/Symbol/icon.less index 04ab3d5b94fd..958817d7121a 100644 --- a/src/UI/templates/default/Symbol/icon.less +++ b/src/UI/templates/default/Symbol/icon.less @@ -18,7 +18,7 @@ width: @icon-size-small; line-height: @icon-size-small; .abbreviation { - font-size: ceil(@icon-size-small / 2.5); + font-size: ceil(@icon-size-small * 0.4); width: @icon-size-small; } img { @@ -31,7 +31,7 @@ width: @icon-size-medium; line-height: @icon-size-medium; .abbreviation { - font-size: ceil(@icon-size-medium / 2.5); + font-size: ceil(@icon-size-medium * 0.4); width: @icon-size-medium; } img { @@ -44,7 +44,7 @@ width: @icon-size-large; line-height: @icon-size-large; .abbreviation { - font-size: ceil(@icon-size-large / 2.5); + font-size: ceil(@icon-size-large * 0.4); width: @icon-size-large; } img { @@ -56,7 +56,7 @@ width: 100%; line-height: @icon-size-medium; .abbreviation { - font-size: ceil(@icon-size-medium / 2.5); + font-size: ceil(@icon-size-medium * 0.4); width: @icon-size-medium; } img { diff --git a/src/UI/templates/js/Input/Field/file.js b/src/UI/templates/js/Input/Field/file.js index f4f2e20365e4..6310ae823311 100644 --- a/src/UI/templates/js/Input/Field/file.js +++ b/src/UI/templates/js/Input/Field/file.js @@ -120,7 +120,7 @@ il.UI.Input = il.UI.Input || {}; if (file.hasOwnProperty('is_existing') && file.is_existing === true) { disableForm(); var data = {}; - data[settings.file_identifier_key] = file_id; + data[settings.file_identifier_key] = file.file_id; $.get(settings.removal_url, data, function (response) { enableForm(); }); diff --git a/templates/default/delos.css b/templates/default/delos.css index d1192a5e6361..d3325cde058a 100644 --- a/templates/default/delos.css +++ b/templates/default/delos.css @@ -7598,14 +7598,11 @@ ul.dropdown-menu > li > .btn:focus { .il-item:after { clear: both; } -.il-item h4 { - padding-top: 0; - margin: 0; +.il-item .il-item-title { font-size: 14px; - float: left; } -.il-item h4 .btn-link, -.il-item h4 a { +.il-item .il-item-title .btn-link, +.il-item .il-item-title a { font-size: inherit; line-height: 1.42857143; } diff --git a/tests/UI/Component/Item/ItemGroupTest.php b/tests/UI/Component/Item/ItemGroupTest.php index d7b712fe94b2..287179a11cec 100644 --- a/tests/UI/Component/Item/ItemGroupTest.php +++ b/tests/UI/Component/Item/ItemGroupTest.php @@ -96,9 +96,9 @@ public function test_render_base()

group

- title1 +
title1
- title2 +
title2
@@ -137,9 +137,9 @@ public function test_render_with_actions()
- title1 +
title1
- title2 +
title2
diff --git a/tests/UI/Component/Item/ItemTest.php b/tests/UI/Component/Item/ItemTest.php index da6f57c07784..44774f304ccc 100644 --- a/tests/UI/Component/Item/ItemTest.php +++ b/tests/UI/Component/Item/ItemTest.php @@ -142,7 +142,7 @@ public function test_render_base() $expected = << - Item Title +
Item Title
- title +
title
@@ -235,7 +235,7 @@ public function test_render_lead_icon()
- title +
title
@@ -266,7 +266,7 @@ public function test_render_lead_text_and_color() lead
- title +
title
@@ -292,7 +292,7 @@ public function test_shy_title_and_property() $html = $r->render($c); $expected = << - +

@@ -324,7 +324,7 @@ public function test_link_title() $html = $r->render($c); $expected = <<ILIAS
+ EOT; $this->assertHTMLEquals($expected, $html); diff --git a/tests/UI/Component/MainControls/FooterTest.php b/tests/UI/Component/MainControls/FooterTest.php index 15aaac424793..78876daef4a5 100644 --- a/tests/UI/Component/MainControls/FooterTest.php +++ b/tests/UI/Component/MainControls/FooterTest.php @@ -177,7 +177,7 @@ public function testRenderingPermUrl($footer) $expected = <<