Revision: 3636
Author: seba.wagner
Date: Sun Jan  9 03:24:20 2011
Log: Fix some string problems
http://code.google.com/p/openmeetings/source/detail?r=3636

Modified:
 /trunk/plugins/moodle_plugin/db/log.php
 /trunk/plugins/moodle_plugin/lang/en/openmeetings.php
 /trunk/plugins/moodle_plugin/lang/fr/openmeetings.php
 /trunk/plugins/moodle_plugin/mod_form.php

=======================================
--- /trunk/plugins/moodle_plugin/db/log.php     Sun Jan  9 03:16:06 2011
+++ /trunk/plugins/moodle_plugin/db/log.php     Sun Jan  9 03:24:20 2011
@@ -6,4 +6,4 @@
array('module'=>'openmeetings', 'action'=>'add', 'mtable'=>'openmeetings', 'field'=>'name'), array('module'=>'openmeetings', 'action'=>'update', 'mtable'=>'openmeetings', 'field'=>'name'), array('module'=>'openmeetings', 'action'=>'view', 'mtable'=>'openmeetings', 'field'=>'name')
-)
+);
=======================================
--- /trunk/plugins/moodle_plugin/lang/en/openmeetings.php Sun Jan 9 03:16:06 2011 +++ /trunk/plugins/moodle_plugin/lang/en/openmeetings.php Sun Jan 9 03:24:20 2011
@@ -15,4 +15,15 @@
 $string['openmeetingsAdminUserPass'] = 'OpenMeetings Admin User Password';
$string['openmeetingsModuleKey'] = 'OpenMeetings Module key (vary for multiple instances using same OpenMeetings Server)';

+$string['Room_Name'] = 'Room name';
+$string['Room_Type'] = 'Room type';
+$string['Room_Language'] = 'Room Language';
+$string['Max_User'] = 'Max users';
+$string['Wait_for_teacher'] = 'Moderation modus';
+
+$string['recordings_label'] = 'The Recording Field is only used if Room Type is Recording';
+$string['recordings_show'] = 'Available Recordings to Shows';
+$string['Comment'] = 'Comment';
+
+
 ?>
=======================================
--- /trunk/plugins/moodle_plugin/lang/fr/openmeetings.php Sun Jan 9 03:16:06 2011 +++ /trunk/plugins/moodle_plugin/lang/fr/openmeetings.php Sun Jan 9 03:24:20 2011
@@ -15,11 +15,15 @@
 $string['openmeetingsAdminUserPass'] = 'OpenMeetings Admin User Password';
$string['openmeetingsModuleKey'] = 'OpenMeetings Module key (vary for multiple instances using same OpenMeetings Server)';

-$string['Room Name'] = 'Nom Réunion';
-$string['Room Type'] = 'Type Réunion';
-$string['Room Language'] = 'Langue Réunion';
-$string['Max User'] = 'Nb max utilisateurs';
-$string['Wait for teacher'] = 'Attendre enseignant';
+$string['Room_Name'] = 'Nom Réunion';
+$string['Room_Type'] = 'Type Réunion';
+$string['Room_Language'] = 'Langue Réunion';
+$string['Max_User'] = 'Nb max utilisateurs';
+$string['Wait_for_teacher'] = 'Attendre enseignant';
+
+$string['recordings_label'] = 'The Recording Field is only used if Room Type is Recording';
+$string['recordings_show'] = 'Available Recordings to Shows';
+$string['Comment'] = 'Comment';

 $string['Conference'] = 'Réunion';
 $string['Audience'] = 'Conférence';
=======================================
--- /trunk/plugins/moodle_plugin/mod_form.php   Sun Feb  7 04:42:17 2010
+++ /trunk/plugins/moodle_plugin/mod_form.php   Sun Jan  9 03:24:20 2011
@@ -13,15 +13,15 @@
/// Adding the "general" fieldset, where all the common settings are showed $mform->addElement('header', 'general', get_string('general', 'form'));
     /// Adding the standard "name" field
- $mform->addElement('text', 'name', get_string('Room Name', 'openmeetings'), array('size'=>'64')); + $mform->addElement('text', 'name', get_string('Room_Name', 'openmeetings'), array('size'=>'64'));
         $mform->setType('name', PARAM_TEXT);
         $mform->addRule('name', null, 'required', null, 'client');

     /// Adding the "Room Type" field
- $mform->addElement('select', 'type', get_string('Room Type', 'openmeetings'), array('1'=>'Conference Room', '2'=>'Audience Room', '3'=>'Restricted Room', '0'=>'Show Recording')); + $mform->addElement('select', 'type', get_string('Room_Type', 'openmeetings'), array('1'=>'Conference Room', '2'=>'Audience Room', '3'=>'Restricted Room', '0'=>'Show Recording'));

     /// Some description
- $mform->addElement('static', 'description_room_recording_id', get_string('The Recording Field is only used if Room Type is Recording', 'openmeetings'), null); + $mform->addElement('static', 'description_room_recording_id', get_string('recordings_label', 'openmeetings'), null);

     /// Adding the "Available Recordings to Shows" field

@@ -50,13 +50,13 @@
                }


- $mform->addElement('select', 'room_recording_id', get_string('Available Recordings to Shows', 'openmeetings'), $recordings); + $mform->addElement('select', 'room_recording_id', get_string('recordings_show', 'openmeetings'), $recordings);

     /// Adding the "Number of Participants" field
- $mform->addElement('select', 'max_user', get_string('Max User', 'openmeetings'), array('2'=>'2', '4'=>'4', '8'=>'8', '16'=>'16', '24'=>'24', '36'=>'36', '50'=>'50', '100'=>'100', '200'=>'200', '500'=>'500', '1000'=>'1000')); + $mform->addElement('select', 'max_user', get_string('Max_User', 'openmeetings'), array('2'=>'2', '4'=>'4', '8'=>'8', '16'=>'16', '24'=>'24', '36'=>'36', '50'=>'50', '100'=>'100', '200'=>'200', '500'=>'500', '1000'=>'1000'));

     /// Adding the "Is Moderated Room" field
- $mform->addElement('select', 'is_moderated_room', get_string('Wait for teacher', 'openmeetings'), array('1'=>'Participants need to wait till the teacher enters the room','2' => 'Participants can already start (first User in Room becomes Moderator)')); + $mform->addElement('select', 'is_moderated_room', get_string('Wait_for_teacher', 'openmeetings'), array('1'=>'Participants need to wait till the teacher enters the room','2' => 'Participants can already start (first User in Room becomes Moderator)'));

     /// Adding the "Room Language" field
        $language_array = array ('1' => 'english',
@@ -87,7 +87,7 @@
                                                            '26' => 'dutch',
                                                            '27' => 'hebrew');

- $mform->addElement('select', 'language', get_string('Room Language', 'openmeetings'), $language_array); + $mform->addElement('select', 'language', get_string('Room_Language', 'openmeetings'), $language_array);

     /// Adding the optional "intro" and "introformat" pair of fields
$mform->addElement('htmleditor', 'intro', get_string('Comment', '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.

Reply via email to