[LON-CAPA-cvs] cvs: loncom /interface lonhtmlcommon.pm /interface/spreadsheet assesscalc.pm classcalc.pm studentcalc.pm /localize/localize de.pm he.pm newphrases.txt pt.pm removephrases.txt ru.pm

www lon-capa-cvs@mail.lon-capa.org
Tue, 14 Oct 2003 18:36:54 -0000


This is a MIME encoded message

--www1066156614
Content-Type: text/plain

www		Tue Oct 14 14:36:54 2003 EDT

  Modified files:              
    /loncom/interface	lonhtmlcommon.pm 
    /loncom/interface/spreadsheet	assesscalc.pm classcalc.pm 
                                 	studentcalc.pm 
    /loncom/localize/localize	de.pm he.pm newphrases.txt pt.pm 
                             	removephrases.txt ru.pm 
  Log:
  Internationalize/localize
  
  
--www1066156614
Content-Type: text/plain
Content-Disposition: attachment; filename="www-20031014143654.txt"

Index: loncom/interface/lonhtmlcommon.pm
diff -u loncom/interface/lonhtmlcommon.pm:1.30 loncom/interface/lonhtmlcommon.pm:1.31
--- loncom/interface/lonhtmlcommon.pm:1.30	Mon Sep 29 09:49:31 2003
+++ loncom/interface/lonhtmlcommon.pm	Tue Oct 14 14:36:54 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # a pile of common html routines
 #
-# $Id: lonhtmlcommon.pm,v 1.30 2003/09/29 13:49:31 www Exp $
+# $Id: lonhtmlcommon.pm,v 1.31 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -783,16 +783,16 @@
     if (int ($time_est/60) > 0) {
 	my $min = int($time_est/60);
 	my $sec = $time_est % 60;
-	$time_est = $min.' minutes';
+	$time_est = $min.' '.&mt('minutes');
         if ($min < 10)  {
             if ($sec > 1) {
-                $time_est.= ', '.$sec.' seconds';
+                $time_est.= ', '.$sec.' '.&mt('seconds');
             } elsif ($sec > 0) {
-                $time_est.= ', '.$sec.' second';
+                $time_est.= ', '.$sec.' '.&mt('second');
             }
         }
     } else {
-	$time_est .= ' seconds';
+	$time_est .= ' '.&mt('seconds');
     }
     my $lasttime = &Time::HiRes::time()-$$prog_state{'laststart'};
     if ($lasttime > 9) {
@@ -803,9 +803,9 @@
         $lasttime = sprintf("%3.2f",$lasttime);
     }
     if ($lasttime == 1) {
-        $lasttime = '('.$lasttime.' second for '.$extraInfo.')';
+        $lasttime = '('.$lasttime.' '.&mt('second for').' '.&mt($extraInfo).')';
     } else {
-        $lasttime = '('.$lasttime.' seconds for '.$extraInfo.')';
+        $lasttime = '('.$lasttime.' '.&mt('seconds for').' '.&mt($extraInfo).')';
     }
     #
     my $user_browser = $ENV{'browser.type'} if (exists($ENV{'browser.type'}));
@@ -819,7 +819,7 @@
     }
     $r->print('<script>popwin.document.popremain.remaining.value="'.
 	      $$prog_state{'done'}.'/'.$$prog_state{'max'}.
-	      ': '.$time_est.' remaining '.$lasttime.'";'.'</script>');
+	      ': '.$time_est.' '.&mt('remaining').' '.$lasttime.'";'.'</script>');
     $$prog_state{'laststart'}=&Time::HiRes::time();
     $r->rflush();
 }
Index: loncom/interface/spreadsheet/assesscalc.pm
diff -u loncom/interface/spreadsheet/assesscalc.pm:1.25 loncom/interface/spreadsheet/assesscalc.pm:1.26
--- loncom/interface/spreadsheet/assesscalc.pm:1.25	Thu Oct  2 13:07:41 2003
+++ loncom/interface/spreadsheet/assesscalc.pm	Tue Oct 14 14:36:54 2003
@@ -1,5 +1,5 @@
 #
-# $Id: assesscalc.pm,v 1.25 2003/10/02 17:07:41 matthew Exp $
+# $Id: assesscalc.pm,v 1.26 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -55,6 +55,7 @@
 use Spreadsheet::WriteExcel;
 use GDBM_File;
 use Time::HiRes;
+use Apache::lonlocal;
 
 @Apache::assesscalc::ISA = ('Apache::Spreadsheet');
 
@@ -398,7 +399,7 @@
         join(' ',@userenv{'firstname','middlename','lastname','generation'});
     $name =~ s/\s+$//;
     push (@title,$name);
-    push (@title,scalar(localtime(time)));
+    push (@title,&Apache::lonlocal::locallocaltime(time));
     return @title;
 }
 
@@ -407,7 +408,7 @@
     my $link .= '<p><a href="/adm/studentcalc?'.
         'sname='.$self->{'name'}.
             '&sdomain='.$self->{'domain'}.'">'.
-                'Student level sheet</a></p>'."\n";
+                &mt('Student level sheet').'</a></p>'."\n";
     return $link;
 }
 
@@ -421,13 +422,17 @@
     my $exportcolor = '#FFFFAA';
     my $num_uneditable = 1;
     my $num_left = 52-$num_uneditable;
+    my %lt=&Apache::lonlocal::texthash(
+				       'as' => 'Assessment',
+				       'ca' => 'Calculations',
+				       );
     my $tableheader =<<"END";
 <table border="2">
 <tr>
-  <th colspan="2" rowspan="2"><font size="+2">Assessment</font></th>
+  <th colspan="2" rowspan="2"><font size="+2">$lt{'as'}</font></th>
   <td bgcolor="$importcolor" colspan="$num_uneditable">&nbsp;</td>
   <td colspan="$num_left">
-      <b><font size="+1">Calculations</font></b></td>
+      <b><font size="+1">$lt{'ca'}</font></b></td>
 </tr><tr>
 END
     my $label_num = 0;
@@ -517,7 +522,7 @@
     #
     # Write a header row
     $self->csv_output_row($filehandle,undef,
-                          ('Parameter','Description','Value'));
+                          (&mt('Parameter'),&mt('Description'),&mt('Value')));
     #
     # Write each row
     foreach my $rownum (sort {$a <=> $b} ($self->rows())) {
@@ -541,7 +546,7 @@
     # Write a header row
     $cols_output = 0;
     foreach my $value ('Parameter','Description','Value') {
-        $worksheet->write($rows_output,$cols_output++,$value);
+        $worksheet->write($rows_output,$cols_output++,&mt($value));
     }
     $rows_output++;    
     #
Index: loncom/interface/spreadsheet/classcalc.pm
diff -u loncom/interface/spreadsheet/classcalc.pm:1.13 loncom/interface/spreadsheet/classcalc.pm:1.14
--- loncom/interface/spreadsheet/classcalc.pm:1.13	Wed Sep 10 10:47:42 2003
+++ loncom/interface/spreadsheet/classcalc.pm	Tue Oct 14 14:36:54 2003
@@ -1,5 +1,5 @@
 #
-# $Id: classcalc.pm,v 1.13 2003/09/10 14:47:42 matthew Exp $
+# $Id: classcalc.pm,v 1.14 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -58,6 +58,7 @@
 use Spreadsheet::WriteExcel;
 use Apache::lonnet;
 use Time::HiRes;
+use Apache::lonlocal;
 
 @Apache::classcalc::ISA = ('Apache::Spreadsheet');
 
@@ -86,7 +87,7 @@
              ['Enrollment Status',&Apache::lonhtmlcommon::StatusOptions(undef,undef,3)],
              ['Output Format',&Apache::Spreadsheet::output_selector()]) {
         my ($name,$selector) = @{$_};
-        $toprow .= '<th align="center"><b>'.$name.'</b></th>';
+        $toprow .= '<th align="center"><b>'.&mt($name).'</b></th>';
         $bottomrow .= '<td>'.$selector.'</td>';
     }
     return "<p>\n<table>\n".
@@ -98,7 +99,7 @@
 sub get_title {
     my $self = shift;
     # Section info should be included
-    my @title = ($self->{'coursedesc'}, scalar(localtime(time)) );
+    my @title = ($self->{'coursedesc'}, &Apache::lonlocal::locallocaltime(time) );
     return @title;
 }
 
@@ -123,15 +124,25 @@
     my $exportcolor = '#BBBBFF';
     my $num_uneditable = 26;
     my $num_left = 52-$num_uneditable;
+    my %lt=&Apache::lonlocal::texthash(
+				       'co' => 'Course',
+				       'im' => 'Import',
+				       'ca' => 'Calculations',
+				       'stu' => 'Student',
+				       'sta' => 'Status',
+				       'usr' => 'Username',
+				       'dom' => 'Domain',
+				       'sec' => 'Section',
+				       );
     my $tableheader =<<"END";
 <p>
 <table border="2">
 <tr>
-  <th colspan="2" rowspan="2"><font size="+2">Course</font></th>
+  <th colspan="2" rowspan="2"><font size="+2">$lt{'co'}</font></th>
   <td bgcolor="$importcolor" colspan="$num_uneditable">
-      <b><font size="+1">Import</font></b></td>
+      <b><font size="+1">$lt{'im'}</font></b></td>
   <td colspan="$num_left">
-      <b><font size="+1">Calculations</font></b></td>
+      <b><font size="+1">$lt{'ca'}</font></b></td>
 </tr><tr>
 END
     my $label_num = 0;
@@ -149,21 +160,21 @@
     $r->print($tableheader);
     #
     # Print out template row
-    $r->print('<tr><td>Template</td><td>&nbsp;</td>'.
+    $r->print('<tr><td>'.&mt('Template').'</td><td>&nbsp;</td>'.
 	      $self->html_template_row($num_uneditable,$importcolor).
               "</tr>\n");
     #
     # Print out summary/export row
-    $r->print('<tr><td>Summary</td><td>0</td>'.
+    $r->print('<tr><td>'.&mt('Summary').'</td><td>0</td>'.
 	      $self->html_export_row($exportcolor)."</tr>\n");
     #
     # Prepare to output rows
     $tableheader =<<"END";
 </p><p>
 <table border="2">
-<tr><th>Row</th>
-  <th>student</th><th>username</th><th>domain</th>
-  <th>section</th><th>status</th>
+<tr><th>$lt{'ro'}</th>
+  <th>$lt{'stu'}</th><th>$lt{'usr'}</th><th>$lt{'dom'}</th>
+  <th>$lt{'sec'}</th><th>$lt{'sta'}</th>
 END
     foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){
 	if ($label_num<$num_uneditable) { 
@@ -206,8 +217,8 @@
     #
     # Write a header row
     $cols_output = 0;
-    foreach my $value ('fullname','username','domain','section','status','id') {
-        $worksheet->write($rows_output,$cols_output++,$value);
+    foreach my $value ('Fullname','Username','Domain','Section','Status','ID') {
+        $worksheet->write($rows_output,$cols_output++,&mt($value));
     }
     $rows_output++;    
     #
@@ -238,7 +249,7 @@
     # Write a header row
 
     $self->csv_output_row($filehandle,undef,
-                   ('fullname','username','domain','section','status','id'));
+                   (&mt('Fullname'),&mt('Username'),&mt('Domain'),&mt('Section'),&mt('Status'),&mt('ID')));
     #
     # Write each students row
     foreach my $student (@Students) {
@@ -270,13 +281,13 @@
     my %c = $self->constants();
     my %f = $self->formulas();
     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin
-        ($r,'Spreadsheet Computation Status',
-         'Spreadsheet Computation', scalar(@Students));
+        ($r,&mt('Spreadsheet Computation Status'),
+         &mt('Spreadsheet Computation'), scalar(@Students));
     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
-                                          'Processing course structure');
+                                          &mt('Processing course structure'));
     &Apache::studentcalc::initialize_package();
     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
-                                          'Processing first student');
+                                          &mt('Processing first student'));
     foreach my $student (@Students) {
         if ($connection->aborted()) { $self->cleanup(); return; }
         my $sname = $student->{'username'}.':'.$student->{'domain'};
Index: loncom/interface/spreadsheet/studentcalc.pm
diff -u loncom/interface/spreadsheet/studentcalc.pm:1.22 loncom/interface/spreadsheet/studentcalc.pm:1.23
--- loncom/interface/spreadsheet/studentcalc.pm:1.22	Thu Sep 18 16:12:40 2003
+++ loncom/interface/spreadsheet/studentcalc.pm	Tue Oct 14 14:36:54 2003
@@ -1,5 +1,5 @@
 #
-# $Id: studentcalc.pm,v 1.22 2003/09/18 20:12:40 matthew Exp $
+# $Id: studentcalc.pm,v 1.23 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -58,6 +58,7 @@
 use Apache::assesscalc();
 use HTML::Entities();
 use Time::HiRes;
+use Apache::lonlocal;
 
 @Apache::studentcalc::ISA = ('Apache::Spreadsheet');
 
@@ -118,7 +119,7 @@
 
     push (@title,$name);
     push (@title,$self->{'coursedesc'});
-    push (@title,scalar(localtime(time)));
+    push (@title,&Apache::lonlocal::locallocaltime(time));
     return @title;
 }
 
@@ -140,7 +141,7 @@
 
 sub parent_link {
     my $self = shift;
-    return '<p><a href="/adm/classcalc">Course level sheet</a></p>'."\n";
+    return '<p><a href="/adm/classcalc">'.&mt('Course level sheet').'</a></p>'."\n";
 }
 
 sub convenience_links {
@@ -177,15 +178,22 @@
     ####################################
     my $num_uneditable = 26;
     my $num_left = 52-$num_uneditable;
+    my %lt=&Apache::lonlocal::texthash(
+				       'st' => 'Student',
+				       'im' => 'Import',
+				       'ca' => 'Calculations',
+				       'as' => 'Assessment',
+				       'ro' => 'Row',
+				       );
     my $tableheader =<<"END";
 <p>
 <table border="2">
 <tr>
-  <th colspan="2" rowspan="2"><font size="+2">Student</font></th>
+  <th colspan="2" rowspan="2"><font size="+2">$lt{'st'}</font></th>
   <td bgcolor="$importcolor" colspan="$num_uneditable">
-      <b><font size="+1">Import</font></b></td>
+      <b><font size="+1">$lt{'im'}</font></b></td>
   <td colspan="$num_left">
-      <b><font size="+1">Calculations</font></b></td>
+      <b><font size="+1">$lt{'ca'}</font></b></td>
 </tr><tr>
 END
     my $label_num = 0;
@@ -201,8 +209,8 @@
     $tableheader .="</tr>\n";
     if ($self->blackout()) {
         $r->print('<font color="red" size="+2"><p>'.
-                  'Some computations are not available at this time.<br />'.
-                  'There are problems whose status you are allowed to view.'.
+                  &mt('Some computations are not available at this time.').'<br />'.
+                  &mt('There are problems whose status you are not allowed to view.').
                   '</font></p>'."\n");
     } else {
         $r->print($tableheader);
@@ -215,7 +223,7 @@
         }
         #
         # Print out summary/export row
-        $r->print('<tr><td>Summary</td><td>0</td>'.
+        $r->print('<tr><td>'.&mt('Summary').'</td><td>0</td>'.
                   $self->html_export_row($exportcolor)."</tr>\n");
     }
     $r->print("</table>\n");
@@ -225,13 +233,13 @@
         $tableheader =<<"END";
 </p><p>
 <table border="2">
-<tr><th>Row</th><th>&nbsp;</th><th>Assessment</th>
+<tr><th>$lt{'ro'}</th><th>&nbsp;</th><th>$lt{'as'}</th>
 END
     } else {
         $tableheader =<<"END";
 </p><p>
 <table border="2">
-<tr><th>&nbsp;</th><th>Assessment</th>
+<tr><th>&nbsp;</th><th>$lt{'as'}</th>
 END
     }
     foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){
@@ -278,7 +286,7 @@
             }
             if ($self->blackout() && $self->{'blackout_rows'}->{$rownum}>0) {
                 $row_output .= 
-                    '<td colspan="52">Unavailable at this time</td></tr>'."\n";
+                    '<td colspan="52">'.&mt('Unavailable at this time').'</td></tr>'."\n";
             } else {
                 $row_output .= $self->html_row($num_uneditable,$rownum,
                                                $exportcolor,$importcolor).
@@ -355,7 +363,7 @@
     #
     # Write a header row
     $self->csv_output_row($filehandle,undef,
-                          ('Sequence or Folder','Assessment title'));
+                          (&mt('Sequence or Folder'),&mt('Assessment title')));
     #
     # Write each assessments row
     if (scalar(@Sequences)< 1) {
@@ -382,7 +390,7 @@
     # Write a header row
     $cols_output = 0;
     foreach my $value ('Container','Assessment title') {
-        $worksheet->write($rows_output,$cols_output++,$value);
+        $worksheet->write($rows_output,$cols_output++,&mt($value));
     }
     $rows_output++;    
     #
Index: loncom/localize/localize/de.pm
diff -u loncom/localize/localize/de.pm:1.44 loncom/localize/localize/de.pm:1.45
--- loncom/localize/localize/de.pm:1.44	Fri Oct 10 12:56:16 2003
+++ loncom/localize/localize/de.pm	Tue Oct 14 14:36:54 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # German Localization Lexicon
 #
-# $Id: de.pm,v 1.44 2003/10/10 16:56:16 www Exp $
+# $Id: de.pm,v 1.45 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -478,9 +478,6 @@
    'The filetype extension of the file you uploaded is not allowed.'
 => 'Die Endung des der von Ihnen eingereichten Datei ist nicht erlaubt.',
 
-   'Please adjust significant figures.'
-=> 'Bitte korrigieren Sie die signifikanten Stellen.',
-
    'Units incorrect.'
 => 'Einheit inkorrekt.',
 
@@ -2284,6 +2281,144 @@
    'users in'
 => 'Benutzer in',
 # benutzers in
+
+
+#SYNC Tue Oct 14 14:28:20 2003
+
+   'Access Key Management'
+=> 'Access Key Management',
+# Access Key verwaltement
+   'Assessment'
+=> 'Assessment',
+
+   'Calculations'
+=> 'Berechnungen',
+# Calculinions
+   'Comma Separated Values'
+=> 'CSV (kommaseparierte Liste)',
+# Comma Separined Values
+   'Course ID'
+=> 'Course ID',
+# kurs ID
+   'Course level sheet'
+=> 'Course level sheet',
+# kurs level sheet
+   'Detailed Problem Analysis'
+=> 'Detailed Problem Analysis',
+# Detailed Aufgaben Analysis
+   'End Helper'
+=> 'End Helper',
+# Ende Hilfeer
+   'Excel'
+=> 'Excel',
+
+   'Finish Course Initialization'
+=> 'Finish Course Initialization',
+# Finish kurs Initializinion
+   'Generate Spreadsheet'
+=> 'Erzeuge Spreadsheet',
+# Generine Spreadsheet
+
+   'Grant/revoke role of Scantron Operator'
+=> 'Grant/revoke role of Scantron Operator',
+# Grant/revoke rolle von Scantron Operinoder
+   'HTML'
+=> 'HTML',
+
+   'Invalid date entry'
+=> 'Invalid date entry',
+# Invalid dine entry
+   'Load:'
+=> 'Lade:',
+# Last:
+   'No changes were made to the current settings.'
+=> 'No changes were made to the current settings.',
+# No changes were made to the current setzetings.
+   'Output Format'
+=> 'Ausgabeformat',
+
+   'Processing course structure'
+=> 'Kursstruktur verarbeiten',
+# Wird verarbeitet kurs structure
+   'Processing first student'
+=> 'Für ersten Studierenden berechnen',
+# Wird verarbeitet first StudierEndeer
+   'Row'
+=> 'Reihe',
+
+   'Save as'
+=> 'Speichere unter',
+# Speichern as
+   'Save as & Make This Sheet the Default'
+=> 'Save as & Make This Sheet the Default',
+# Speichern as & Make Diese Sheet the voreingestellt
+   'Scantron Operator'
+=> 'Scantron Operator',
+# Scantron Operinoder
+   'Select All'
+=> 'Wähle Alle',
+# Wählen Sielle
+   'Select All Students'
+=> 'Wähle alle Studierenden',
+# Wählen Sielle StudierEndeers
+   'Select Spreadsheet File'
+=> 'Select Spreadsheet File',
+# Auswählen Spreadsheet Datumi
+   'Send Scantron data to a course'
+=> 'Send Scantron data to a course',
+# SEnde Scantron dina to a kurs
+   'Spreadsheet Computation'
+=> 'Spreadsheet Computation',
+# Spreadsheet Computinion
+   'Spreadsheet Computation Status'
+=> 'Spreadsheet Computation Status',
+# Spreadsheet Computinion Stinus
+   'Student level sheet'
+=> 'Student level sheet',
+# StudierEndeer level sheet
+   'Summary'
+=> 'Zusammenfassung',
+
+   'Template'
+=> 'Template',
+# Templine
+   'Unselect All'
+=> 'Unselect All',
+# UnWählen Sielle
+   'Unselect All Students'
+=> 'Unselect All Students',
+# UnWählen Sielle StudierEndeers
+   'Upload Scantron data'
+=> 'Upload Scantron data',
+# HochLast Scantron dina
+   'You must choose at least one student to continue.'
+=> 'You must choose at least one student to continue.',
+# You must wähle in least one StudierEndeer to continue.
+   'You must choose one or more choices to continue.'
+=> 'You must choose one or more choices to continue.',
+# You must wähle one oder modere choices to continue.
+   'last student'
+=> 'last student',
+# last StudierEndeer
+   'may be open from a different computer.'
+=> 'may be open from a different computer.',
+# Mai be Öffnen from a different computer.
+   'minutes'
+=> 'Minuten',
+
+   'remaining'
+=> 'übrig',
+
+   'second'
+=> 'Sekunde',
+
+   'seconds'
+=> 'Sekunden',
+
+   'seconds for'
+=> 'Sekunden für',
+# seconds foder
+
 
 #SYNCMARKER
 );
Index: loncom/localize/localize/he.pm
diff -u loncom/localize/localize/he.pm:1.4 loncom/localize/localize/he.pm:1.5
--- loncom/localize/localize/he.pm:1.4	Fri Sep 26 17:04:26 2003
+++ loncom/localize/localize/he.pm	Tue Oct 14 14:36:54 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # German Localization Lexicon
 #
-# $Id: he.pm,v 1.4 2003/09/26 21:04:26 www Exp $
+# $Id: he.pm,v 1.5 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -468,9 +468,6 @@
 
    'The filetype extension of the file you uploaded is not allowed.'
 => 'Die Endung des der von Ihnen eingereichten Datei ist nicht erlaubt.',
-
-   'Please adjust significant figures.'
-=> 'Bitte korrigieren Sie die signifikanten Stellen.',
 
    'Units incorrect.'
 => 'Einheit inkorrekt.',
Index: loncom/localize/localize/newphrases.txt
diff -u loncom/localize/localize/newphrases.txt:1.13 loncom/localize/localize/newphrases.txt:1.14
--- loncom/localize/localize/newphrases.txt:1.13	Tue Oct 14 11:53:25 2003
+++ loncom/localize/localize/newphrases.txt	Tue Oct 14 14:36:54 2003
@@ -1,57 +1,3 @@
-Store Catalog Information
-Error Messages
-Update Display
-All versions
-No role specified
-part
-Sequence or Folder
-#Stdnts
-Max Tries
-Mean Tries
-S.D. tries
-Skew Tries
-DoDiff
-#YES
-num_override
-%Wrng
-Sections
-Enrollment Status
-Sequences and Folders
-Output
-problem statistics grouped by sequence
-problem statistics ungrouped
-problem statistics, Excel
-Generate Statistics
-Clear Caches
-Preparing Excel Spreadsheet
-Your Excel Spreadsheet
-Problems creating new Excel file.  This error has been logged.  Please alert your LON-CAPA administrator.
-Statistics and Problem Analysis
-Please select a report to generate.
-Overall Problem Statistics
-Student performance statistics on all problems.
-Detailed statistics and graphs of student performance on problems.
-Problem Status Chart
-Brief view of each students performance in course.
-Unable to connect to database!
-Please notify the server administrator 
-Course Statistics and Charts cannot be retrieved until the database is restarted.  Your data is intact but cannot be displayed at this time.
-Significant figures are incorrect, submission was not graded.
-Please select a problem to analyze
-End Helper
-<- Previous
-Next ->
-LON-CAPA Helper:
-Select All
-Unselect All
-Invalid date entry
-You must choose one or more choices to continue.
-a.m.
-p.m.
-midnight
-noon
-Select All Students
-Unselect All Students
 You must choose at least one student to continue.
 No changes were made to the current settings.
 Finish Course Initialization
Index: loncom/localize/localize/pt.pm
diff -u loncom/localize/localize/pt.pm:1.9 loncom/localize/localize/pt.pm:1.10
--- loncom/localize/localize/pt.pm:1.9	Mon Oct  6 16:58:51 2003
+++ loncom/localize/localize/pt.pm	Tue Oct 14 14:36:54 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Portuguese Localization Lexicon
 #
-# $Id: pt.pm,v 1.9 2003/10/06 20:58:51 www Exp $
+# $Id: pt.pm,v 1.10 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -488,9 +488,6 @@
    'The filetype extension of the file you uploaded is not allowed.'
 => 'A extens&atilde;o do arquivo que voc&ecirc; carregou n&atilde;o &eacute; permitida.',
 
-   'Please adjust significant figures.'
-=> 'Please adjust significant figures.',
-
    'Units incorrect.'
 => 'Unidades incorretas.',
 
@@ -1008,6 +1005,1422 @@
 
 
 #SYNC Fri Sep 26 17:00:04 2003
+
+
+#SYNC Tue Oct 14 14:28:24 2003
+   '#Stdnts'
+=> '#Stdnts',
+
+   '#YES'
+=> '#YES',
+
+   '%Wrng'
+=> '%Wrng',
+
+   '. . . for a particular section'
+=> '. . . for a particular section',
+
+   '. . . for all students in the course'
+=> '. . . for all students in the course',
+# . . . for all Estudantes in the curso
+   '. . . for an individual student'
+=> '. . . for an individual student',
+# . . . for an individual Estudante
+   '1 am'
+=> '1 am',
+
+   '1 pm'
+=> '1 pm',
+
+   '10'
+=> '10',
+
+   '10 am'
+=> '10 am',
+
+   '10 pm'
+=> '10 pm',
+
+   '100'
+=> '100',
+
+   '11 am'
+=> '11 am',
+
+   '11 pm'
+=> '11 pm',
+
+   '12 am'
+=> '12 am',
+
+   '12 noon'
+=> '12 noon',
+
+   '2 am'
+=> '2 am',
+
+   '2 pm'
+=> '2 pm',
+
+   '20'
+=> '20',
+
+   '3 am'
+=> '3 am',
+
+   '3 pm'
+=> '3 pm',
+
+   '4 am'
+=> '4 am',
+
+   '4 pm'
+=> '4 pm',
+
+   '5 am'
+=> '5 am',
+
+   '5 pm'
+=> '5 pm',
+
+   '50'
+=> '50',
+
+   '6 am'
+=> '6 am',
+
+   '6 pm'
+=> '6 pm',
+
+   '7 am'
+=> '7 am',
+
+   '7 pm'
+=> '7 pm',
+
+   '8 am'
+=> '8 am',
+
+   '8 pm'
+=> '8 pm',
+
+   '9 am'
+=> '9 am',
+
+   '9 pm'
+=> '9 pm',
+
+   '<- Previous'
+=> '<- Previous',
+
+   'ALL'
+=> 'ALL',
+
+   'About Me'
+=> 'About Me',
+
+   'Access Key Management'
+=> 'Access Key Management',
+
+   'Additional Keywords'
+=> 'Additional Keywords',
+
+   'Additional Metadata (non-standard, parameters, exports)'
+=> 'Additional Metadata (non-standard, parameters, exports)',
+
+   'Advanced Catalog Search'
+=> 'Advanced Catalog Search',
+# Advanced Catalog Pesquisa
+   'Advanced Search'
+=> 'Advanced Search',
+# Advanced Pesquisa
+   'All Maps or Folders'
+=> 'All Maps or Folders',
+
+   'All versions'
+=> 'All versions',
+
+   'Any Language'
+=> 'Any Language',
+# Any Linguagem
+   'Any User'
+=> 'Any User',
+
+   'Any category'
+=> 'Any category',
+
+   'Any copyright/distribution'
+=> 'Any copyright/distribution',
+
+   'Assessment'
+=> 'Assessment',
+
+   'Assessment URL and Title'
+=> 'Assessment URL and Title',
+
+   'Assigned User Roles'
+=> 'Assigned User Roles',
+# Assigned User fun&ccedil;&atilde;os
+   'Author and Co-Author roles may not be available on servers other than your home server.'
+=> 'Author and Co-Author roles may not be available on servers other than your home server.',
+# Autor and Co-Autor fun&ccedil;&atilde;os Maio not be available on Servidors other than your home Servidor.
+   'Author(s)'
+=> 'Author(s)',
+# Autor(s)
+   'Average number of tries till solved'
+=> 'Average number of tries till solved',
+# Average number of Tentativas till solved
+   'Brief view of each students performance in course.'
+=> 'Brief view of each students performance in course.',
+# Brief ver of each Estudantes performance in curso.
+   'Broadcast Message to Course'
+=> 'Broadcast Message to Course',
+# Broadcast Message to curso
+   'Browse Resources'
+=> 'Browse Resources',
+
+   'Browse resources'
+=> 'Browse resources',
+
+   'Bulletin Board/Discussion'
+=> 'Bulletin Board/Discussion',
+
+   'Calculations'
+=> 'Calculations',
+
+   'Catalog Information'
+=> 'Catalog Information',
+# CataExecutar Logonformation
+   'Changes can take up to 10 minutes before being active for all students.'
+=> 'Changes can take up to 10 minutes before being active for all students.',
+# Changes can take up to 10 minutes before being active for all Estudantes.
+   'Clear All'
+=> 'Clear All',
+
+   'Clear Caches'
+=> 'Clear Caches',
+
+   'Close'
+=> 'Close',
+
+   'Close All Folders'
+=> 'Close All Folders',
+
+   'Collapse Remote Control'
+=> 'Collapse Remote Control',
+
+   'Comma Separated Values'
+=> 'Comma Separated Values',
+
+   'Compact View'
+=> 'Compact View',
+# Compact ver
+   'Construction Space'
+=> 'Construction Space',
+
+   'Construction Space File Operation'
+=> 'Construction Space File Operation',
+
+   'Contact Information'
+=> 'Contact Information',
+
+   'Content changed'
+=> 'Content changed',
+
+   'Copied metadata'
+=> 'Copied metadata',
+
+   'Copied old metadata'
+=> 'Copied old metadata',
+
+   'Copied old target file'
+=> 'Copied old target file',
+
+   'Copied source file'
+=> 'Copied source file',
+
+   'Copyright'
+=> 'Copyright',
+
+   'Copyright/Distribution'
+=> 'Copyright/Distribution',
+
+   'Could Not Process Request'
+=> 'Could Not Process Request',
+
+   'Could not write metadata'
+=> 'Could not write metadata',
+
+   'Course Assessment Parameter - Helper Mode'
+=> 'Course Assessment Parameter - Helper Mode',
+# curso Assessment Parameter - Ajudaer Mode
+   'Course Assessment Parameters - Overview Mode'
+=> 'Course Assessment Parameters - Overview Mode',
+# curso Assessment Parameters - Overver Mode
+   'Course Assessments Parameters - Table Mode'
+=> 'Course Assessments Parameters - Table Mode',
+# curso Assessments Parameters - Table Mode
+   'Course Documents'
+=> 'Course Documents',
+# curso Documents
+   'Course Environment Parameters'
+=> 'Course Environment Parameters',
+# curso Environment Parameters
+   'Course ID'
+=> 'Course ID',
+# curso ID
+   'Course Parameter Helper'
+=> 'Course Parameter Helper',
+# curso Parameter Ajudaer
+   'Course Statistics and Charts cannot be retrieved until the database is restarted.  Your data is intact but cannot be displayed at this time.'
+=> 'Course Statistics and Charts cannot be retrieved until the database is restarted.  Your data is intact but cannot be displayed at this time.',
+# curso Statistics and Charts cannot be retrieved until the database is reIn&iacute;cioed.  Your data is intact but cannot be Displayed at this time.
+   'Course level sheet'
+=> 'Course level sheet',
+# curso level sheet
+   'Create New Environment Variable'
+=> 'Create New Environment Variable',
+# criar New Environment Variable
+   'Creation Date'
+=> 'Creation Date',
+
+   'Current Session Value'
+=> 'Current Session Value',
+
+   'Custom Distribution File'
+=> 'Custom Distribution File',
+
+   'Default'
+=> 'Default',
+
+   'Default Cataloging Information for Directory'
+=> 'Default Cataloging Information for Directory',
+
+   'Default Value'
+=> 'Default Value',
+
+   'Degree of difficulty'
+=> 'Degree of difficulty',
+
+   'Delete a role'
+=> 'Delete a role',
+# Delete a fun&ccedil;&atilde;o
+   'Detailed Citation View'
+=> 'Detailed Citation View',
+# Detailed Citation ver
+   'Detailed Problem Analysis'
+=> 'Detailed Problem Analysis',
+
+   'Detailed statistics and graphs of student performance on problems.'
+=> 'Detailed statistics and graphs of student performance on problems.',
+# Detailed statistics and graphs of Estudante performance on problems.
+   'Differences'
+=> 'Differences',
+# Differr&ecirc;ncias
+   'Disable all communication among students'
+=> 'Disable all communication among students',
+# Disable all communica&ccedil;&atilde;o aSegg Estudantes
+   'Discard Selected'
+=> 'Discard Selected',
+# Discard Selecioneed
+   'Distribute Messages from Uploaded File to Course'
+=> 'Distribute Messages from Uploaded File to Course',
+# Distribute Messages from UpCargaed File to curso
+   'DoDiff'
+=> 'DoDiff',
+
+   'Due'
+=> 'Due',
+
+   'Dump Course DOCS to Construction Space'
+=> 'Dump Course DOCS to Construction Space',
+# Dump curso DOCS to Construction Space
+   'EMail and Messages'
+=> 'EMail and Messages',
+
+   'Edit Catalog Information'
+=> 'Edit Catalog Information',
+# Editar CataExecutar Logonformation
+   'Edit Content of a Map'
+=> 'Edit Content of a Map',
+# Editar Content of a Map
+   'Edit Directory Catalog Information'
+=> 'Edit Directory Catalog Information',
+# Editar Directory CataExecutar Logonformation
+   'Edit this resource'
+=> 'Edit this resource',
+# Editar this resource
+   'Enclosing Map or Folder'
+=> 'Enclosing Map or Folder',
+
+   'End Helper'
+=> 'End Helper',
+# Fim Ajudaer
+   'Enrollment Status'
+=> 'Enrollment Status',
+# inscreverment Status
+   'Enter construction space as a co-author'
+=> 'Enter construction space as a co-author',
+# entrar construction space as a Co-Autor
+   'Entering course ...'
+=> 'Entering course ...',
+# entraring curso ...
+   'Error Messages'
+=> 'Error Messages',
+
+   'Evaluate Resource'
+=> 'Evaluate Resource',
+
+   'Every problem in a particular folder'
+=> 'Every problem in a particular folder',
+
+   'Every problem in the course'
+=> 'Every problem in the course',
+# Every problem in the curso
+   'Exam Information'
+=> 'Exam Information',
+
+   'Excel'
+=> 'Excel',
+
+   'External Resource'
+=> 'External Resource',
+
+   'Failed Access to Construction Space'
+=> 'Failed Access to Construction Space',
+
+   'Fielded Format'
+=> 'Fielded Format',
+
+   'File Category'
+=> 'File Category',
+
+   'Finish Course Initialization'
+=> 'Finish Course Initialization',
+# Finish curso Initialization
+   'Folder'
+=> 'Folder',
+
+   'For User'
+=> 'For User',
+
+   'Force publication of unmodified files'
+=> 'Force publication of unmodified files',
+
+   'Generate Spreadsheet'
+=> 'Generate Spreadsheet',
+
+   'Generate Statistics'
+=> 'Generate Statistics',
+
+   'Generate new role ...'
+=> 'Generate new role ...',
+# Generate new fun&ccedil;&atilde;o ...
+   'GerdSuperRole'
+=> 'GerdSuperRole',
+# GerdSuperfun&ccedil;&atilde;o
+   'Go to the next resource in the course sequence'
+=> 'Go to the next resource in the course sequence',
+# Go to the next resource in the curso Sequence
+   'Go to the previous resource in the course sequence'
+=> 'Go to the previous resource in the course sequence',
+# Go to the previous resource in the curso Sequence
+   'Grant/revoke Course Custom Role'
+=> 'Grant/revoke Course Custom Role',
+# Grant/revoke curso Custom fun&ccedil;&atilde;o
+   'Grant/revoke role of Administrator'
+=> 'Grant/revoke role of Administrator',
+# Grant/revoke fun&ccedil;&atilde;o of Administrator
+   'Grant/revoke role of Author'
+=> 'Grant/revoke role of Author',
+# Grant/revoke fun&ccedil;&atilde;o of Autor
+   'Grant/revoke role of Course Coordinator'
+=> 'Grant/revoke role of Course Coordinator',
+# Grant/revoke fun&ccedil;&atilde;o of curso Coordinator
+   'Grant/revoke role of Domain Guest'
+=> 'Grant/revoke role of Domain Guest',
+# Grant/revoke fun&ccedil;&atilde;o of Dom&iacute;nio Guest
+   'Grant/revoke role of Librarian'
+=> 'Grant/revoke role of Librarian',
+# Grant/revoke fun&ccedil;&atilde;o of Librarian
+   'Grant/revoke role of Scantron Operator'
+=> 'Grant/revoke role of Scantron Operator',
+# Grant/revoke fun&ccedil;&atilde;o of Scantron Operator
+   'Grant/revoke role of Teaching Assistant'
+=> 'Grant/revoke role of Teaching Assistant',
+# Grant/revoke fun&ccedil;&atilde;o of Assistente do professor
+   'HTML'
+=> 'HTML',
+
+   'Host'
+=> 'Host',
+
+   'Import a published document'
+=> 'Import a published document',
+# Importar a published document
+   'Internally authenticated'
+=> 'Internally authenticated',
+# Internally auEnt&atilde;oticated
+   'Invalid date entry'
+=> 'Invalid date entry',
+
+   'Kerberos authenticated'
+=> 'Kerberos authenticated',
+# Kerberos auEnt&atilde;oticated
+   'Keyword(s)'
+=> 'Keyword(s)',
+
+   'Keywords'
+=> 'Keywords',
+
+   'LON-CAPA Helper:'
+=> 'LON-CAPA Helper:',
+# LON-CAPA Ajudaer:
+   'Last Week'
+=> 'Last Week',
+# semana passada
+   'Last access'
+=> 'Last access',
+
+   'Last modified'
+=> 'Last modified',
+
+   'Last updated'
+=> 'Last updated',
+
+   'Limit by copyright/distribution'
+=> 'Limit by copyright/distribution',
+
+   'Limit by language'
+=> 'Limit by language',
+# Limit by Linguagem
+   'Load Map'
+=> 'Load Map',
+# Carga Map
+   'Load:'
+=> 'Load:',
+# Carga:
+   'Lock and unlock assessments'
+=> 'Lock and unlock assessments',
+
+   'Logged Out'
+=> 'Logged Out',
+
+   'MIME Type'
+=> 'MIME Type',
+
+   'Make notes and annotations about this resource'
+=> 'Make notes and annotations about this resource',
+# Make Notas and annotations about this resource
+   'Manage Access Keys'
+=> 'Manage Access Keys',
+
+   'Manage access keys'
+=> 'Manage access keys',
+
+   'Material appears to be correct'
+=> 'Material appears to be correct',
+
+   'Material covered with sufficient depth'
+=> 'Material covered with sufficient depth',
+
+   'Material is helpful'
+=> 'Material is helpful',
+# Material is Ajudaful
+   'Material presented in clear way'
+=> 'Material presented in clear way',
+
+   'Max Possible To Date'
+=> 'Max Possible To Date',
+
+   'Max Tries'
+=> 'Max Tries',
+# Max Tentativas
+   'Mean Tries'
+=> 'Mean Tries',
+# Mean Tentativas
+   'Metadata Information'
+=> 'Metadata Information',
+
+   'Mime type'
+=> 'Mime type',
+
+   'Modification Date'
+=> 'Modification Date',
+
+   'Modified'
+=> 'Modified',
+
+   'Modify Course Assessment Parameters'
+=> 'Modify Course Assessment Parameters',
+# Modify curso Assessment Parameters
+   'Modify authentication mechanism and data for a user'
+=> 'Modify authentication mechanism and data for a user',
+# Modify auEnt&atilde;otication mechanism and data for a user
+   'Modify deadlines, etc, for this assessment resource'
+=> 'Modify deadlines, etc, for this assessment resource',
+# Modify Prazos finais, etc, for this assessment resource
+   'Modify grades'
+=> 'Modify grades',
+# Modify notas
+   'Modify user grades for this assessment resource'
+=> 'Modify user grades for this assessment resource',
+# Modify user notas for this assessment resource
+   'Move Down'
+=> 'Move Down',
+
+   'Move Up'
+=> 'Move Up',
+
+   'My Personal Info'
+=> 'My Personal Info',
+
+   'Network-wide number of accesses (hits)'
+=> 'Network-wide number of accesses (hits)',
+
+   'Network-wide number of courses using resource'
+=> 'Network-wide number of courses using resource',
+# Network-wide number of cursos using resource
+   'New Title'
+=> 'New Title',
+
+   'Next ->'
+=> 'Next ->',
+
+   'No changes were made to the current settings.'
+=> 'No changes were made to the current settings.',
+
+   'Number of resources that follow this resource in maps'
+=> 'Number of resources that follow this resource in maps',
+
+   'Number of resources that lead up to this resource in maps'
+=> 'Number of resources that lead up to this resource in maps',
+
+   'Number of resources using or importing resource'
+=> 'Number of resources using or importing resource',
+# Number of resources using or Importaring resource
+   'Obsolete'
+=> 'Obsolete',
+
+   'One particular problem'
+=> 'One particular problem',
+
+   'Open'
+=> 'Open',
+
+   'Open All Folders'
+=> 'Open All Folders',
+
+   'Output'
+=> 'Output',
+
+   'Output Format'
+=> 'Output Format',
+
+   'Overall Problem Statistics'
+=> 'Overall Problem Statistics',
+
+   'Owner/Publisher'
+=> 'Owner/Publisher',
+
+   'Parameter Name'
+=> 'Parameter Name',
+
+   'Parameter Type'
+=> 'Parameter Type',
+
+   'Parameter in Effect'
+=> 'Parameter in Effect',
+
+   'Parent Directory'
+=> 'Parent Directory',
+
+   'Per Page'
+=> 'Per Page',
+
+   'Personal Information'
+=> 'Personal Information',
+
+   'Please either'
+=> 'Please either',
+
+   'Please notify the server administrator '
+=> 'Please notify the server administrator ',
+# Please notify the Servidor administrator 
+   'Please select a problem to analyze'
+=> 'Please select a problem to analyze',
+# Please Selecione um problem to analyze
+   'Please select a report to generate.'
+=> 'Please select a report to generate.',
+# Please Selecione um report to generate.
+   'Post anonymously'
+=> 'Post anonymously',
+
+   'Post discussion on course resources'
+=> 'Post discussion on course resources',
+# Post discussion on curso resources
+   'Post system frontpage announcements'
+=> 'Post system frontpage announcements',
+# Post Sistema frontPage announcements
+   'Post to live chatrooms'
+=> 'Post to live chatrooms',
+
+   'Preparing Excel Spreadsheet'
+=> 'Preparing Excel Spreadsheet',
+
+   'Printing Helper'
+=> 'Printing Helper',
+# Printing Ajudaer
+   'Privacy Note'
+=> 'Privacy Note',
+
+   'Problem Status Chart'
+=> 'Problem Status Chart',
+
+   'Problems Not Contained In A Folder'
+=> 'Problems Not Contained In A Folder',
+
+   'Problems creating new Excel file.  This error has been logged.  Please alert your LON-CAPA administrator.'
+=> 'Problems creating new Excel file.  This error has been logged.  Please alert your LON-CAPA administrator.',
+
+   'Processing course structure'
+=> 'Processing course structure',
+# Processing curso structure
+   'Processing first student'
+=> 'Processing first student',
+# Processing first Estudante
+   'Project Information'
+=> 'Project Information',
+
+   'Provide feedback messages or contribute to the course discussion about this resource'
+=> 'Provide feedback messages or contribute to the course discussion about this resource',
+# Provide feedback messages or contribute to the curso discussion about this resource
+   'Provide my evaluation of this resource'
+=> 'Provide my evaluation of this resource',
+
+   'Publish'
+=> 'Publish',
+
+   'Publish Directory'
+=> 'Publish Directory',
+
+   'Publish Directory and Sub Directories'
+=> 'Publish Directory and Sub Directories',
+
+   'Published'
+=> 'Published',
+
+   'Publisher/Owner'
+=> 'Publisher/Owner',
+
+   'Publishing'
+=> 'Publishing',
+
+   'Quick Completed Problems Display'
+=> 'Quick Completed Problems Display',
+
+   'Reading results from'
+=> 'Reading results from',
+
+   'Related'
+=> 'Related',
+
+   'Resource Feedback and Discussion'
+=> 'Resource Feedback and Discussion',
+
+   'Resource Level'
+=> 'Resource Level',
+
+   'Resource Publication'
+=> 'Resource Publication',
+
+   'Resource is technically correct'
+=> 'Resource is technically correct',
+
+   'Retrieve'
+=> 'Retrieve',
+
+   'Revert to Last Saved'
+=> 'Revert to Last Saved',
+# Revert to Last Salvard
+   'Revision Date'
+=> 'Revision Date',
+
+   'Row'
+=> 'Row',
+
+   'S.D. tries'
+=> 'S.D. tries',
+# S.D. Tentativas
+   'Save as'
+=> 'Save as',
+# Salvar as
+   'Save as & Make This Sheet the Default'
+=> 'Save as & Make This Sheet the Default',
+# Salvar as & Make This Sheet the Default
+   'Scantron Operator'
+=> 'Scantron Operator',
+
+   'Score Upload Form'
+=> 'Score Upload Form',
+# Score UpCarga Form
+   'Search Complete'
+=> 'Search Complete',
+# Pesquisa Complete
+   'Section'
+=> 'Section',
+
+   'Sections'
+=> 'Sections',
+
+   'Select All'
+=> 'Select All',
+# Selecione umll
+   'Select All Students'
+=> 'Select All Students',
+# Selecione umll Estudantes
+   'Select Date'
+=> 'Select Date',
+# Selecione Date
+   'Select Enclosing Map or Folder'
+=> 'Select Enclosing Map or Folder',
+# Selecione Enclosing Map or Folder
+   'Select Map'
+=> 'Select Map',
+# Selecione Map
+   'Select Parameter Level'
+=> 'Select Parameter Level',
+# Selecione Parameter Level
+   'Select Spreadsheet File'
+=> 'Select Spreadsheet File',
+# Selecione Spreadsheet File
+   'Send Message to User(s)'
+=> 'Send Message to User(s)',
+# SFim Message to User(s)
+   'Send Scantron data to a course'
+=> 'Send Scantron data to a course',
+# SFim Scantron data to a curso
+   'Send internal email'
+=> 'Send internal email',
+# SFim internal email
+   'Sequence or Folder'
+=> 'Sequence or Folder',
+
+   'Sequences and Folders'
+=> 'Sequences and Folders',
+# Sequr&ecirc;ncias and Folders
+   'Set Course Environment Parameters'
+=> 'Set Course Environment Parameters',
+# Set curso Environment Parameters
+   'Set Date'
+=> 'Set Date',
+
+   'Set Defaults for All Resources in Course'
+=> 'Set Defaults for All Resources in Course',
+# Set Defaults for All Resources in curso
+   'Set a bookmark for this resource'
+=> 'Set a bookmark for this resource',
+
+   'Set a due date'
+=> 'Set a due date',
+
+   'Set an answer open date'
+=> 'Set an answer open date',
+# Set an Resposta open Date
+   'Set an open date'
+=> 'Set an open date',
+
+   'Set opening datefor all problems in the course for. . .'
+=> 'Set opening datefor all problems in the course for. . .',
+# Set opening Datefor all problems in the curso for. . .
+   'Set the number of tries'
+=> 'Set the number of tries',
+# Set the number of Tentativas
+   'Set the problem weight'
+=> 'Set the problem weight',
+
+   'Set/Modify Course Assessment Parameter'
+=> 'Set/Modify Course Assessment Parameter',
+# Set/Modify curso Assessment Parameter
+   'Set/Modify Course Assessment Parameters'
+=> 'Set/Modify Course Assessment Parameters',
+# Set/Modify curso Assessment Parameters
+   'Set/Modify Course Parameters'
+=> 'Set/Modify Course Parameters',
+# Set/Modify curso Parameters
+   'Shared by course faculty and staff'
+=> 'Shared by course faculty and staff',
+# Shared by curso faculty and staff
+   'Show More Options'
+=> 'Show More Options',
+
+   'Show all roles'
+=> 'Show all roles',
+# Show all fun&ccedil;&atilde;os
+   'Show catalog information'
+=> 'Show catalog information',
+# Show cataExecutar Logonformation
+   'Show resource'
+=> 'Show resource',
+
+   'Significant figures are incorrect, submission was not graded.'
+=> 'Significant figures are incorrect, submission was not graded.',
+# Significant figures are Incorreto., submission was not graded.
+   'Since Start of Course'
+=> 'Since Start of Course',
+# Since In&iacute;cio of curso
+   'Since Yesterday'
+=> 'Since Yesterday',
+
+   'Size'
+=> 'Size',
+
+   'Skew Tries'
+=> 'Skew Tries',
+# Skew Tentativas
+   'Special documents'
+=> 'Special documents',
+# Documentos Especiais
+   'Spreadsheet Computation'
+=> 'Spreadsheet Computation',
+
+   'Spreadsheet Computation Status'
+=> 'Spreadsheet Computation Status',
+
+   'Statistics'
+=> 'Statistics',
+
+   'Statistics and Problem Analysis'
+=> 'Statistics and Problem Analysis',
+
+   'Store'
+=> 'Store',
+
+   'Store Catalog Information'
+=> 'Store Catalog Information',
+# Store CataExecutar Logonformation
+   'Student level sheet'
+=> 'Student level sheet',
+# Estudante level sheet
+   'Student performance statistics on all problems.'
+=> 'Student performance statistics on all problems.',
+# Estudante performance statistics on all problems.
+   'Students Affected'
+=> 'Students Affected',
+# Estudantes Affected
+   'Subject'
+=> 'Subject',
+
+   'Successful Login'
+=> 'Successful Login',
+
+   'Suggested Replacement for Obsolete File'
+=> 'Suggested Replacement for Obsolete File',
+
+   'Summary'
+=> 'Summary',
+
+   'Summary View'
+=> 'Summary View',
+# Summary ver
+   'Switching Role'
+=> 'Switching Role',
+# Switching fun&ccedil;&atilde;o
+   'Synchronized SQL metadata database'
+=> 'Synchronized SQL metadata database',
+
+   'Target'
+=> 'Target',
+
+   'Task'
+=> 'Task',
+
+   'Template'
+=> 'Template',
+
+   'Temporary Assembly Workspace'
+=> 'Temporary Assembly Workspace',
+
+   'The information you submit can be viewed by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.'
+=> 'The information you submit can be viewed by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.',
+# The information you Submeter can be vered by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.
+   'There are currently no results'
+=> 'There are currently no results',
+
+   'This helper will assist you in setting the open, due, and answer dates for problems, or in setting the number of tries for problems. You will be asked to select which problems you wish to set the parameters for, then what parameter you wish to set, then you will select whom the setting affects. After the helper is done, you will be shown where in the advanced interface you would have gone to set the parameter you have chosen, so in the future you can do it directly. Press Next -&gt; to begin, or select &lt;- Previous to go back to the previous screen.'
+=> 'This helper will assist you in setting the open, due, and answer dates for problems, or in setting the number of tries for problems. You will be asked to select which problems you wish to set the parameters for, then what parameter you wish to set, then you will select whom the setting affects. After the helper is done, you will be shown where in the advanced interface you would have gone to set the parameter you have chosen, so in the future you can do it directly. Press Next -&gt; to begin, or select &lt;- Previous to go back to the previous screen.',
+# This Ajudaer will assist you in setting the open, due, and Resposta Dates for problems, or in setting the number of Tentativas for problems. You will be asked to Selecione which problems you wish to set the parameters for, Ent&atilde;o what parameter you wish to set, Ent&atilde;o you will Selecione whom the setting affects. After the Ajudaer is Feito, you will be shown where in the advanced interface you would have gone to set the parameter you have chosen, so in the future you can do it directly. Press Next -&gt; to begin, or Selecione &lt;- Previous to Go Back to the previous screen.
+   'This syllabus can be publicly viewed at'
+=> 'This syllabus can be publicly viewed at',
+# This Plano de Estudos can be publicly vered at
+   'Topic'
+=> 'Topic',
+
+   'Total'
+=> 'Total',
+
+   'Total Parts In Course'
+=> 'Total Parts In Course',
+# Total Parts In curso
+   'Total number of students who have worked on this problem'
+=> 'Total number of students who have worked on this problem',
+# Total number of Estudantes who have worked on this problem
+   'Type'
+=> 'Type',
+
+   'UNIX authenticated'
+=> 'UNIX authenticated',
+# UNIX auEnt&atilde;oticated
+   'URL'
+=> 'URL',
+
+   'URLs To Include in Syllabus'
+=> 'URLs To Include in Syllabus',
+# URLs To Include in Plano de Estudos
+   'USERS'
+=> 'USERS',
+
+   'Unable to connect to database!'
+=> 'Unable to connect to database!',
+
+   'Unknown ID'
+=> 'Unknown ID',
+
+   'Unknown user'
+=> 'Unknown user',
+
+   'Unpublished'
+=> 'Unpublished',
+
+   'Unselect All'
+=> 'Unselect All',
+# UnSelecione umll
+   'Unselect All Students'
+=> 'Unselect All Students',
+# UnSelecione umll Estudantes
+   'Up'
+=> 'Up',
+
+   'Update Course Assessment Parameter Display'
+=> 'Update Course Assessment Parameter Display',
+# UpDate curso Assessment Parameter Display
+   'Update Display'
+=> 'Update Display',
+
+   'Update Section or Specific User'
+=> 'Update Section or Specific User',
+
+   'Upload Scantron data'
+=> 'Upload Scantron data',
+# UpCarga Scantron data
+   'Upload a Photo'
+=> 'Upload a Photo',
+# UpCarga a Photo
+   'Upload a new main course document'
+=> 'Upload a new main course document',
+# UpCarga a new main curso document
+   'Upload a new supplemental course document'
+=> 'Upload a new supplemental course document',
+# UpCarga a new supplemental curso document
+   'User'
+=> 'User',
+
+   'User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course'
+=> 'User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course',
+# User Notas, Records of Face-To-Face Discuss&otilde;es, and Critical Messages in curso
+   'User Notes, Records of Face-to-Face Discussions, and Critical Messages'
+=> 'User Notes, Records of Face-to-Face Discussions, and Critical Messages',
+# User Notas, Records of Face-to-Face Discuss&otilde;es, and Critical Messages
+   'Verify Course Documents'
+=> 'Verify Course Documents',
+# Verify curso Documents
+   'Verify Selection'
+=> 'Verify Selection',
+# Verify Selecioneion
+   'Version'
+=> 'Version',
+
+   'Version Number'
+=> 'Version Number',
+
+   'View'
+=> 'View',
+# ver
+   'View Critical Messages'
+=> 'View Critical Messages',
+# ver Critical Messages
+   'View Published Version'
+=> 'View Published Version',
+# ver Published Version
+   'View user submissions for this assessment resource'
+=> 'View user submissions for this assessment resource',
+# ver user submissions for this assessment resource
+   'Web References'
+=> 'Web References',
+# Web Referr&ecirc;ncias
+   'Welcome to the Assignment Parameter Helper'
+=> 'Welcome to the Assignment Parameter Helper',
+# Welcome to the Assignment Parameter Ajudaer
+   'What parameter do you want to set for all problems in the course?'
+=> 'What parameter do you want to set for all problems in the course?',
+# What parameter do you want to set for all problems in the curso?
+   'What should the opening date be set to?'
+=> 'What should the opening date be set to?',
+
+   'Which Problem or Problems?'
+=> 'Which Problem or Problems?',
+
+   'Which problems do you wish to set a parameter for?'
+=> 'Which problems do you wish to set a parameter for?',
+
+   'Words'
+=> 'Words',
+
+   'Wrote Metadata'
+=> 'Wrote Metadata',
+
+   'XML/SGML'
+=> 'XML/SGML',
+
+   'You must choose at least one student to continue.'
+=> 'You must choose at least one student to continue.',
+# You must escolha at least one Estudante to continue.
+   'You must choose one or more choices to continue.'
+=> 'You must choose one or more choices to continue.',
+# You must escolha one or more choices to continue.
+   'You need to choose another user role or enter a specific course for this function'
+=> 'You need to choose another user role or enter a specific course for this function',
+# You need to escolha another user fun&ccedil;&atilde;o or entrar a specific curso for this function
+   'Your Excel Spreadsheet'
+=> 'Your Excel Spreadsheet',
+
+   'Your home server is '
+=> 'Your home server is ',
+# Your home Servidor is 
+   'a.m.'
+=> 'a.m.',
+
+   'abstract'
+=> 'abstract',
+# Sum&aacute;rio
+   'acc keys'
+=> 'acc keys',
+
+   'access denied'
+=> 'access denied',
+
+   'according to course preferences'
+=> 'according to course preferences',
+# according to curso preferr&ecirc;ncias
+   'according to resource settings'
+=> 'according to resource settings',
+
+   'according to user session state'
+=> 'according to user session state',
+
+   'all'
+=> 'all',
+
+   'anno-'
+=> 'anno-',
+
+   'announce'
+=> 'announce',
+
+   'at'
+=> 'at',
+
+   'at Domain'
+=> 'at Domain',
+# at Dom&iacute;nio
+   'at domain'
+=> 'at domain',
+# at Dom&iacute;nio
+   'audio'
+=> 'audio',
+
+   'author'
+=> 'author',
+# Autor
+   'backward'
+=> 'backward',
+
+   'bookmark'
+=> 'bookmark',
+
+   'catalog'
+=> 'catalog',
+
+   'chart'
+=> 'chart',
+
+   'chat'
+=> 'chat',
+
+   'close this window'
+=> 'close this window',
+
+   'co con-'
+=> 'co con-',
+
+   'co res'
+=> 'co res',
+
+   'con-'
+=> 'con-',
+
+   'connection down'
+=> 'connection down',
+
+   'contacting'
+=> 'contacting',
+
+   'copyright'
+=> 'copyright',
+
+   'customdistributionfile'
+=> 'customdistributionfile',
+
+   'default'
+=> 'default',
+
+   'directory'
+=> 'directory',
+
+   'discuss'
+=> 'discuss',
+
+   'docs'
+=> 'docs',
+
+   'during the last'
+=> 'during the last',
+
+   'edit'
+=> 'edit',
+# Editar
+   'edit crs'
+=> 'edit crs',
+# Editar crs
+   'evaluate'
+=> 'evaluate',
+
+   'exit'
+=> 'exit',
+
+   'fas'
+=> 'fas',
+
+   'feedback'
+=> 'feedback',
+
+   'for Enclosing Map or Folder'
+=> 'for Enclosing Map or Folder',
+
+   'for Resource'
+=> 'for Resource',
+
+   'forward'
+=> 'forward',
+
+   'from Enclosing Map or Folder'
+=> 'from Enclosing Map or Folder',
+
+   'general'
+=> 'general',
+
+   'in Course'
+=> 'in Course',
+# in curso
+   'in Section/Group'
+=> 'in Section/Group',
+# in Se&ccedil;&atilde;o/Grupo
+   'info'
+=> 'info',
+
+   'interface available'
+=> 'interface available',
+
+   'keywords'
+=> 'keywords',
+
+   'language'
+=> 'language',
+# Linguagem
+   'last student'
+=> 'last student',
+# last Estudante
+   'library'
+=> 'library',
+
+   'log in again'
+=> 'log in again',
+# Executar Logon again
+   'manage'
+=> 'manage',
+
+   'may be open from a different computer.'
+=> 'may be open from a different computer.',
+# Maio be open from a different computer.
+   'midnight'
+=> 'midnight',
+
+   'minutes'
+=> 'minutes',
+
+   'missions'
+=> 'missions',
+
+   'movies'
+=> 'movies',
+
+   'my'
+=> 'my',
+
+   'noon'
+=> 'noon',
+
+   'not found'
+=> 'not found',
+
+   'notes'
+=> 'notes',
+# Notas
+   'num_override'
+=> 'num_override',
+
+   'obsolete'
+=> 'obsolete',
+
+   'obsoletereplacement'
+=> 'obsoletereplacement',
+
+   'of'
+=> 'of',
+
+   'or'
+=> 'or',
+
+   'or ID'
+=> 'or ID',
+
+   'p.m.'
+=> 'p.m.',
+
+   'pages'
+=> 'pages',
+
+   'parms'
+=> 'parms',
+
+   'part'
+=> 'part',
+
+   'percent'
+=> 'percent',
+
+   'pictures'
+=> 'pictures',
+
+   'prepare'
+=> 'prepare',
+
+   'printout'
+=> 'printout',
+
+   'problem'
+=> 'problem',
+
+   'problem statistics grouped by sequence'
+=> 'problem statistics grouped by sequence',
+
+   'problem statistics ungrouped'
+=> 'problem statistics ungrouped',
+
+   'problem statistics, Excel'
+=> 'problem statistics, Excel',
+
+   'remaining'
+=> 'remaining',
+
+   'resource'
+=> 'resource',
+
+   'resources'
+=> 'resources',
+
+   'roles'
+=> 'roles',
+# fun&ccedil;&atilde;os
+   'search'
+=> 'search',
+# Pesquisa
+   'second'
+=> 'second',
+
+   'seconds'
+=> 'seconds',
+
+   'seconds for'
+=> 'seconds for',
+
+   'sequence'
+=> 'sequence',
+
+   'set'
+=> 'set',
+
+   'space'
+=> 'space',
+
+   'stats'
+=> 'stats',
+
+   'struct'
+=> 'struct',
+
+   'subject'
+=> 'subject',
+
+   'switch'
+=> 'switch',
+
+   'tations'
+=> 'tations',
+
+   'textual_remote_display'
+=> 'textual_remote_display',
+
+   'this'
+=> 'this',
+
+   'title'
+=> 'title',
+
+   'unless locked'
+=> 'unless locked',
+
+   'updated periodically'
+=> 'updated periodically',
+
+   'user'
+=> 'user',
+
+   'users in'
+=> 'users in',
+
+   'view sub-'
+=> 'view sub-',
+# ver sub-
+   'visible to author and co-authors only'
+=> 'visible to author and co-authors only',
+# visible to Autor and Co-Autors only
+   'waiting on'
+=> 'waiting on',
+
+   'warning(s)'
+=> 'warning(s)',
+
 
 #SYNCMARKER
 );
Index: loncom/localize/localize/removephrases.txt
diff -u loncom/localize/localize/removephrases.txt:1.1 loncom/localize/localize/removephrases.txt:1.2
--- loncom/localize/localize/removephrases.txt:1.1	Tue Oct 14 11:53:25 2003
+++ loncom/localize/localize/removephrases.txt	Tue Oct 14 14:36:54 2003
@@ -1 +1,6 @@
-Please adjust significant figures.
\ No newline at end of file
+Please adjust significant figures.
+GerdSuperRole
+10
+20
+50
+100
Index: loncom/localize/localize/ru.pm
diff -u loncom/localize/localize/ru.pm:1.4 loncom/localize/localize/ru.pm:1.5
--- loncom/localize/localize/ru.pm:1.4	Fri Sep 26 17:04:26 2003
+++ loncom/localize/localize/ru.pm	Tue Oct 14 14:36:54 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Russian Localization Lexicon
 #
-# $Id: ru.pm,v 1.4 2003/09/26 21:04:26 www Exp $
+# $Id: ru.pm,v 1.5 2003/10/14 18:36:54 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -438,9 +438,6 @@
 
    'Path'
 => 'Path',
-
-   'Please adjust significant figures.'
-=> 'Please adjust significant figures.',
 
    'Please use browser "Back" button and pick a filename'
 => 'Please use browser "Back" button and pick a filename',

--www1066156614--