Revision: 4342
Author: seba.wagner
Date: Sun Oct 2 02:10:44 2011
Log: Fix some strings in transalation and fix database XML file
http://code.google.com/p/openmeetings/source/detail?r=4342
Modified:
/trunk/plugins/moodle_plugin/db/install.xml
/trunk/plugins/moodle_plugin/db/upgrade.php
/trunk/plugins/moodle_plugin/lang/de/openmeetings.php
/trunk/plugins/moodle_plugin/mod_form.php
=======================================
--- /trunk/plugins/moodle_plugin/db/install.xml Fri Sep 30 09:24:57 2011
+++ /trunk/plugins/moodle_plugin/db/install.xml Sun Oct 2 02:10:44 2011
@@ -14,8 +14,8 @@
<FIELD NAME="max_user" TYPE="int" LENGTH="10" NOTNULL="true"
UNSIGNED="true" DEFAULT="4" SEQUENCE="false" ENUM="false" COMMENT="RoomType
id" PREVIOUS="is_moderated_room" NEXT="language"/>
<FIELD NAME="language" TYPE="int" LENGTH="10" NOTNULL="true"
UNSIGNED="true" DEFAULT="1" SEQUENCE="false" ENUM="false" COMMENT="RoomType
id" PREVIOUS="max_user" NEXT="name"/>
<FIELD NAME="name" TYPE="char" LENGTH="255" NOTNULL="true"
SEQUENCE="false" ENUM="false" COMMENT="name field for moodle instances"
PREVIOUS="language" NEXT="intro"/>
- <FIELD NAME="intro" TYPE="text" LENGTH="medium" NOTNULL="false"
SEQUENCE="false" ENUM="false" COMMENT="General introduction of the
whiteboard activity" PREVIOUS="name" NEXT="introformat"/>
- <FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true"
UNSIGNED="true" DEFAULT="0" SEQUENCE="false" ENUM="false"
PREVIOUS="introformat" NEXT="timemodified"/>
+ <FIELD NAME="intro" TYPE="text" LENGTH="medium" NOTNULL="false"
SEQUENCE="false" ENUM="false" COMMENT="General introduction of the
whiteboard activity" PREVIOUS="name" NEXT="timecreated"/>
+ <FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true"
UNSIGNED="true" DEFAULT="0" SEQUENCE="false" ENUM="false" PREVIOUS="intro"
NEXT="timemodified"/>
<FIELD NAME="timemodified" TYPE="int" LENGTH="10" NOTNULL="true"
UNSIGNED="true" DEFAULT="0" SEQUENCE="false" ENUM="false"
PREVIOUS="timecreated" NEXT="room_id"/>
<FIELD NAME="room_id" TYPE="int" LENGTH="10" NOTNULL="true"
UNSIGNED="true" DEFAULT="0" SEQUENCE="false" ENUM="false"
PREVIOUS="timemodified" NEXT="room_recording_id"/>
<FIELD NAME="room_recording_id" TYPE="int" LENGTH="10"
NOTNULL="true" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" ENUM="false"
COMMENT="room_recording_id" PREVIOUS="room_id" NEXT="allow_recording"/>
=======================================
--- /trunk/plugins/moodle_plugin/db/upgrade.php Fri Sep 30 09:24:57 2011
+++ /trunk/plugins/moodle_plugin/db/upgrade.php Sun Oct 2 02:10:44 2011
@@ -37,6 +37,10 @@
// openmeetings savepoint reached
upgrade_mod_savepoint(true, 20111002, 'openmeetings');
}
+
+ if ($oldversion == 20111002) {
+ $result = false;
+ }
return $result;
}
=======================================
--- /trunk/plugins/moodle_plugin/lang/de/openmeetings.php Sun Oct 2
01:12:46 2011
+++ /trunk/plugins/moodle_plugin/lang/de/openmeetings.php Sun Oct 2
02:10:44 2011
@@ -41,6 +41,6 @@
$string['Recording_TYPE_2'] = 'Die Funktion zum Aufzeichnen der Konferenz
ist nicht verfügbar.';
$string['openmeetingsWebappnameLabel'] = 'OpenMeetings webapp name';
-$string['openmeetingsWebappnameDescription'] = 'Erweiterte Einstellung:
Wenn sie die OpenMeetings applikation umbenannt haben kšnnen Sie hier einen
alternativen Namen eingeben.';
+$string['openmeetingsWebappnameDescription'] = 'Erweiterte Einstellung:
Wenn sie die OpenMeetings applikation umbenannt haben können Sie hier
einen alternativen Namen eingeben.';
?>
=======================================
--- /trunk/plugins/moodle_plugin/mod_form.php Fri Sep 30 16:25:28 2011
+++ /trunk/plugins/moodle_plugin/mod_form.php Sun Oct 2 02:10:44 2011
@@ -21,7 +21,7 @@
//$mform->setType('name', PARAM_TEXT);
$mform->addRule('name', null, 'required', null, 'client');
- $mform->addElement('hidden', 'room_id', 'Room Id',
array('size'=>'64'));
+ $mform->addElement('hidden', 'room_id', '0',
array('size'=>'64'));
/// Adding the "Room Type" field
$mform->addElement('select', 'type',
get_string('Room_Type', 'openmeetings'),
array('1'=>get_string('Conference', 'openmeetings'), '2'=>get_string('Audience', 'openmeetings'), '3'=>get_string('Restricted', 'openmeetings'), '0'=>get_string('Recording', 'openmeetings')));
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.