[LON-CAPA-cvs] cvs: loncom /auth lonroles.pm /homework grades.pm lonhomework.pm /localize/localize ar.pm de.pm es.pm fa.pm fr.pm ja.pm pt.pm ru.pm tr.pm zh.pm
bisitz
bisitz at source.lon-capa.org
Wed Jan 15 09:46:32 EST 2014
bisitz Wed Jan 15 14:46:32 2014 EDT
Modified files:
/loncom/auth lonroles.pm
/loncom/homework grades.pm lonhomework.pm
/loncom/localize/localize ar.pm de.pm es.pm fa.pm fr.pm ja.pm pt.pm
ru.pm tr.pm zh.pm
Log:
Improve internationalization:
- Proper compilation of output string, then pass to translation
- Re-use existing phrases
-------------- next part --------------
Index: loncom/auth/lonroles.pm
diff -u loncom/auth/lonroles.pm:1.294 loncom/auth/lonroles.pm:1.295
--- loncom/auth/lonroles.pm:1.294 Wed Jan 8 17:18:15 2014
+++ loncom/auth/lonroles.pm Wed Jan 15 14:46:21 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# User Roles Screen
#
-# $Id: lonroles.pm,v 1.294 2014/01/08 17:18:15 bisitz Exp $
+# $Id: lonroles.pm,v 1.295 2014/01/15 14:46:21 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -889,11 +889,13 @@
my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
$r->print(
'<p>'
- .&mt('[_1]Visit the [_2]Course/Community Catalog[_3]'
- .' to view all [_4] LON-CAPA courses and communities.'
+ .&mt('[_1]Visit the [_2]Course/Community Catalog[_3][_4]'
+ .' to view all [_5] LON-CAPA courses and communities.'
,'<b>'
,'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
- ,'</a></b>',$domdesc)
+ ,'</a>'
+ ,'</b>'
+ ,'"'.$domdesc.'"')
.'<br />'
.&mt('If a course or community is [_1]not[_2] in your list of current courses and communities below,'
.' you may be able to enroll if self-enrollment is permitted.'
Index: loncom/homework/grades.pm
diff -u loncom/homework/grades.pm:1.711 loncom/homework/grades.pm:1.712
--- loncom/homework/grades.pm:1.711 Tue Jan 14 17:49:30 2014
+++ loncom/homework/grades.pm Wed Jan 15 14:46:26 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# The LON-CAPA Grading handler
#
-# $Id: grades.pm,v 1.711 2014/01/14 17:49:30 bisitz Exp $
+# $Id: grades.pm,v 1.712 2014/01/15 14:46:26 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1942,9 +1942,12 @@
if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
if (!&canview($usec)) {
- $request->print('<span class="LC_warning">Unable to view requested student.('.
- $uname.':'.$udom.' in section '.$usec.' in course id '.
- $env{'request.course.id'}.')</span>');
+ $request->print(
+ '<span class="LC_warning">'.
+ &mt('Unable to view requested student.'.
+ ' '.&mt('([_1] in section [_2] in course id [_3])',
+ $uname.':'.$udom,$usec,$env{'request.course.id'}).
+ '</span>');
return;
}
@@ -2546,9 +2549,12 @@
my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
if (!&canview($usec)) {
- $request->print('<span class="LC_warning">Unable to view previous version for requested student.('.
- $uname.':'.$udom.' in section '.$usec.' in course id '.
- $env{'request.course.id'}.')</span>');
+ $request->print(
+ '<span class="LC_warning">'.
+ &mt('Unable to view previous version for requested student.'.
+ ' '.&mt('([_1] in section [_2] in course id [_3])',
+ $uname.':'.$udom,$usec,$env{'request.course.id'}).
+ '</span>');
return;
}
my $mode = 'both';
@@ -4613,8 +4619,12 @@
&Apache::lonnet::clear_EXT_cache_status();
if (!&canview($usec)) {
- $request->print('<span class="LC_warning">'.&mt('Unable to view requested student. ([_1])',$env{'form.student'}).'</span>');
- return;
+ $request->print(
+ '<span class="LC_warning">'.
+ &mt('Unable to view requested student. ([_1])',
+ $env{'form.student'}).
+ '</span>');
+ return;
}
my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
$result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
Index: loncom/homework/lonhomework.pm
diff -u loncom/homework/lonhomework.pm:1.342 loncom/homework/lonhomework.pm:1.343
--- loncom/homework/lonhomework.pm:1.342 Fri Jan 10 17:51:10 2014
+++ loncom/homework/lonhomework.pm Wed Jan 15 14:46:27 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# The LON-CAPA Homework handler
#
-# $Id: lonhomework.pm,v 1.342 2014/01/10 17:51:10 bisitz Exp $
+# $Id: lonhomework.pm,v 1.343 2014/01/15 14:46:27 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -451,13 +451,14 @@
$datemsg=$date;
} elsif ($type eq 'opendate') {
$status='CLOSED';
- $datemsg = &mt("will open on")." $date";
+ $datemsg = &mt('will open on [_1]',$date);
} elsif ($type eq 'duedate') {
$status='CAN_ANSWER';
- $datemsg = &mt("is due at")." $date";
+ $datemsg = &mt('is due at [_1]',$date);
} elsif ($type eq 'answerdate') {
$status='CLOSED';
- $datemsg = &mt("was due on")." $lastdate".&mt(", and answers will be available on")." $date";
+ $datemsg = &mt('was due on [_1], and answers will be available on [_2]',
+ $lastdate,$date);
}
}
if ($status eq 'CAN_ANSWER' ||
Index: loncom/localize/localize/ar.pm
diff -u loncom/localize/localize/ar.pm:1.26 loncom/localize/localize/ar.pm:1.27
--- loncom/localize/localize/ar.pm:1.26 Tue Jan 14 18:54:59 2014
+++ loncom/localize/localize/ar.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Arabic Localization Lexicon
#
-# $Id: ar.pm,v 1.26 2014/01/14 18:54:59 bisitz Exp $
+# $Id: ar.pm,v 1.27 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright i-Learning Limited Partnership Company
#
@@ -440,9 +440,6 @@
'Goodbye'
=> 'Ù٠أÙ
ا٠اÙÙÙ',
- ', and answers will be available on'
-=> '٠اÙأجÙبة ستÙÙÙ Ù
تاØØ© ÙÙ',
-
', or the next time you log in.'
=> ' Ø£Ù ØÙÙÙ
ا تتص٠Ù٠اÙÙ
رة اÙتاÙÙØ©',
@@ -812,8 +809,8 @@
'is closed but you are allowed to view it'
=> 'ÙÙغÙÙ Ù ÙÙ٠تستطÙع أ٠تشاÙدÙ',
- 'is due at'
-=> 'اÙÙ
Ùرر ÙÙ',
+ 'is due at [_1]'
+=> 'اÙÙ
Ùرر ÙÙ [_1]',
'is in under construction'
=> 'ÙÙ Ø·Ùر اÙإعداد',
@@ -860,11 +857,11 @@
'undo'
=> 'Ø¥Ùغاء',
- 'was due on'
-=> 'Ùا٠Ù
٠اÙÙ
Ùرر ÙÙ',
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'Ùا٠Ù
٠اÙÙ
Ùرر ÙÙi [_1] ï» ïºï»¸ïºï»®ïºïº ﺲïºï»ï»®ï»§ ﻢïºïºïº£ïº ï»ï»³ [_2]',
- 'will open on'
-=> 'سÙÙÙØªØ ÙÙ',
+ 'will open on [_1]'
+=> 'سÙÙÙØªØ ÙÙ [_1]',
', is reserved internally by LON-CAPA.'
=> ', LON-CAPA ÙتÙ
خزÙ٠داخÙÙا٠بÙاسطة ',
Index: loncom/localize/localize/de.pm
diff -u loncom/localize/localize/de.pm:1.577 loncom/localize/localize/de.pm:1.578
--- loncom/localize/localize/de.pm:1.577 Tue Jan 14 18:54:59 2014
+++ loncom/localize/localize/de.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# German Localization Lexicon
#
-# $Id: de.pm,v 1.577 2014/01/14 18:54:59 bisitz Exp $
+# $Id: de.pm,v 1.578 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -927,19 +927,19 @@
=> 'Nicht anzeigen',
"an unknown date"
-=> ': unbekannter Zeitpunkt', # !
+=> ': unbekannter Zeitpunkt', # ! -> lonhomework.pm
"an indeterminate date"
-=> 'unbestimmter Zeitpunkt',
+=> ': unbestimmter Zeitpunkt', # ! -> lonhomework.pm
- "will open on"
-=> "wird verfügbar sein am",
+ 'will open on [_1]'
+=> 'wird am [_1] verfügbar sein',
- "is due at"
-=> "ist fällig am",
+ 'is due at [_1]'
+=> 'ist am [_1] fällig',
- "was due on"
-=> "war fällig am",
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'war am [_1] fällig und Antworten werden am [_2] verfügbar sein',
'is closed but you are allowed to view it'
=> "ist geschlossen, kann aber von Ihnen betrachtet werden",
@@ -1013,9 +1013,6 @@
"may open later."
=> 'könnte zu einem späteren Zeitpunkt verfügbar werden.',
- ', and answers will be available on'
-=> ', Antworten werden verfügbar sein am',
-
"Select a"
=> "Wählen Sie",
@@ -11069,6 +11066,9 @@
'Your submission has been recorded.'
=> 'Ihre Antwort wurde gespeichert.',
+ 'Draft Copy'
+=> 'Entwurf',
+
'A draft copy has been saved.'
=> 'Ihr Entwurf wurde gespeichert.',
@@ -13030,9 +13030,6 @@
'Resource space'
=> 'Ressourcenbereich',
- 'Authoring Space'
-=> 'Autorenbereich',
-
'No such directory: [_1]'
=> 'Verzeichnis existiert nicht: [_1]',
@@ -17574,8 +17571,8 @@
'The scores were changed for [quant,_1,problem].'
=> 'Für [quant,_1,Aufgabe,Aufgaben] wurden die Punkte geändert.',
- '[_1]Visit the [_2]Course/Community Catalog[_3] to view all [_4] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a> </b>, _4: domain
-=> '[_1]Besuchen Sie die [_2]Kurs-/Community-Ãbersicht[_3], um alle LON-CAPA-Kurse und -Communitys der Domäne [_4] zu betrachten.',
+ '[_1]Visit the [_2]Course/Community Catalog[_3][_4] to view all [_5] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a>, _4: </b>, _5: domain desc.
+=> '[_1]Besuchen Sie die [_2]Kurs-/Community-Ãbersicht[_3][_4], um alle LON-CAPA-Kurse und -Communitys der Institution [_5] zu betrachten.',
'If a course or community is [_1]not[_2] in your list of current courses and communities below, you may be able to enroll if self-enrollment is permitted.'
=> 'Falls ein Kurs in der folgenden Liste Ihrer derzeitigen Kurse [_1]nicht[_2] angezeigt wird, können Sie sich in der Kursübersicht in diesen Kurs selbst eintragen, sofern die Selbsteintragung für diesen Kurs aktiviert ist.',
@@ -22989,10 +22986,10 @@
=> 'Zeitpunkt, ab dem Studierende anfangen können zu reservieren: ',
'Were open'
-=> 'waren verfügbar',
+=> 'Waren verfügbar',
'Were open last week'
-=> 'waren letzte Woche verfügbar',
+=> 'Waren letzte Woche verfügbar',
'Will be next available:'
=> 'Nächste Verfügbarkeit:',
@@ -24029,6 +24026,15 @@
'Unable to view requested student. ([_1])'
=> 'Der/die angeforderte Student/in kann nicht betrachtet werden. ([_1])',
+ 'Unable to view requested student.'
+=> 'Der/die angeforderte Student/in kann nicht betrachtet werden.',
+
+ 'Unable to view previous version for requested student.'
+=> 'Die vorherige Version für den/die angeforderte/n Student/in kann nicht betrachtet werden.',
+
+ '([_1] in section [_2] in course id [_3])'
+=> '([_1] in der Sektion [_2] im Kurs mit der ID [_3])',
+
'Validation process complete.'
=> 'Validierungsvorgang abgeschlossen',
Index: loncom/localize/localize/es.pm
diff -u loncom/localize/localize/es.pm:1.82 loncom/localize/localize/es.pm:1.83
--- loncom/localize/localize/es.pm:1.82 Tue Jan 14 18:55:00 2014
+++ loncom/localize/localize/es.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Spanish Localization Lexicon
#
-# $Id: es.pm,v 1.82 2014/01/14 18:55:00 bisitz Exp $
+# $Id: es.pm,v 1.83 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -622,14 +622,14 @@
"an indeterminate date"
=> 'fecha no determinada',
- "will open on"
-=> "se abrirá en",
+ 'will open on [_1]'
+=> 'se abrirá en [_1]',
- "is due at"
-=> "se hará el",
+ 'is due at [_1]'
+=> 'se hará el [_1]',
- "was due on"
-=> "fue cerrado el",
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'fue cerrado el [_1], y las respuestas estarán disponibles en [_2]',
'is closed but you are allowed to view it'
=> "está cerrado, pero tiene permisos para verlo",
@@ -694,9 +694,6 @@
"may open later."
=> 'puede abrir más tarde.',
- ', and answers will be available on'
-=> ', y las respuestas estarán disponibles en',
-
"Select a"
=> "Seleccione un",
@@ -15572,8 +15569,8 @@
'The scores were changed for [quant,_1,problem].'
=> 'La puntuación a cambiado para [quant,_1,problema,problemas].',
- '[_1]Visit the [_2]Course/Community Catalog[_3] to view all [_4] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a> </b>, _4: domain
-=> '[_1]Visite el [_2]Catálogo de Cursos/Comunidades[_3], para ver todos los cursos y comunidades LON-CAPA del dominio [_4].', # '[_1]Visite el [_2]Catálogo de Cursos[_3], para ver todos los cursos LON-CAPA del dominio [_4].',
+ '[_1]Visit the [_2]Course/Community Catalog[_3][_4] to view all [_5] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a>, _4: </b>, _5: domain desc.
+=> '[_1]Visite el [_2]Catálogo de Cursos/Comunidades[_3][_4], para ver todos los cursos y comunidades LON-CAPA del dominio [_5].',
'If a course or community is [_1]not[_2] in your list of current courses and communities below, you may be able to enroll if self-enrollment is permitted.'
=> 'Si un curso o comunidad [_1]no[_2] está en su lista actual de cursos y comunidades, usted podrÃa registrarse si la auto-inscripción es permitida.', # 'Si un curso [_1]no[_2] está en su lista actual de cursos, usted podrÃa registrarse si la auto-inscripción es permitida.',
Index: loncom/localize/localize/fa.pm
diff -u loncom/localize/localize/fa.pm:1.24 loncom/localize/localize/fa.pm:1.25
--- loncom/localize/localize/fa.pm:1.24 Tue Jan 14 18:55:00 2014
+++ loncom/localize/localize/fa.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Farsi Localization Lexicon
#
-# $Id: fa.pm,v 1.24 2014/01/14 18:55:00 bisitz Exp $
+# $Id: fa.pm,v 1.25 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright i-Learning Limited Partnership Company
#
@@ -399,9 +399,6 @@
'Goodbye'
=> 'خداØاÙظ',
- ', and answers will be available on'
-=> ', ٠پاسخÙا در دسترس Ø®ÙاÙد بÙد',
-
', or the next time you log in.'
=> ', Ùا دÙع٠بعد٠ÙÙ Ù
تص٠شÙÙد',
@@ -771,8 +768,8 @@
'is closed but you are allowed to view it'
=> 'بست٠Ù
ÙâØ´Ùد ÙÙÙ Ù
جاز ÙستÙد آ٠را ببÙÙÙد',
- 'is due at'
-=> 'Ù
Ùرر است در',
+ 'is due at [_1]'
+=> 'Ù
Ùرر است در [_1]',
'is in under construction'
=> 'در Øا٠آÙ
اد٠ساز٠است',
@@ -819,11 +816,11 @@
'undo'
=> 'ب٠اثر ÙردÙ',
- 'was due on'
-=> 'Ù
Ùرر بÙد در',
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'Ù
Ùرر بÙد در [_1], ï» Ù¾ïºïº´ïº¨ï»«ïº ïº©ïº ïºªïº´ïºïº®ïº³ ﺥï»ïºï»«ïº© ïºï»ïº© [_2]',
- 'will open on'
-=> 'در اÛ٠تارÙØ® باز Ø®ÙاÙد شد',
+ 'will open on [_1]'
+=> 'در اÛ٠تارÙØ® باز Ø®ÙاÙد شد [_1]',
', is reserved internally by LON-CAPA.'
=> ', در درÙ٠تÙسط ÙÙÙ Ùاپا ذخÙر٠Ù
ÙâØ´Ùد',
Index: loncom/localize/localize/fr.pm
diff -u loncom/localize/localize/fr.pm:1.29 loncom/localize/localize/fr.pm:1.30
--- loncom/localize/localize/fr.pm:1.29 Tue Jan 14 18:55:00 2014
+++ loncom/localize/localize/fr.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# French Localization Lexicon
#
-# $Id: fr.pm,v 1.29 2014/01/14 18:55:00 bisitz Exp $
+# $Id: fr.pm,v 1.30 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -569,14 +569,14 @@
'an indeterminate date'
=> 'une date indéterminée',
- 'will open on'
-=> 'sera disponible le',
+ 'will open on [_1]'
+=> 'sera disponible le [_1]',
- 'is due at'
-=> 'est dû à ',
+ 'is due at [_1]'
+=> 'est dû à [_1]',
- 'was due on'
-=> 'etait dû le',
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'etait dû le [_1], et les réponses seront disponibles le [_2]',
'is closed but you are allowed to view it'
=> 'est fermé mais vous avez la permission de le visualiser',
@@ -641,9 +641,6 @@
'may open later.'
=> 'pourra être disponible plus tard.',
- ', and answers will be available on'
-=> ', et les réponses seront disponibles le',
-
'Select a'
=> 'Sélectionner un',
Index: loncom/localize/localize/ja.pm
diff -u loncom/localize/localize/ja.pm:1.30 loncom/localize/localize/ja.pm:1.31
--- loncom/localize/localize/ja.pm:1.30 Tue Jan 14 17:49:33 2014
+++ loncom/localize/localize/ja.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Japanese Localization Lexicon
#
-# $Id: ja.pm,v 1.30 2014/01/14 17:49:33 bisitz Exp $
+# $Id: ja.pm,v 1.31 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright i-Learning Limited Partnership Company
#
@@ -401,9 +401,6 @@
#SYNC Fri Sep 26 14:41:18 2003
- ', and answers will be available on'
-=> ', æ£è§£ã¯æ¬¡ã®ãªã³ã¯ã«ããã¾ã',
-
', or the next time you log in.'
=> 'ãã¾ãã¯æ¬¡åã®ãã°ã¤ã³ã',
@@ -773,8 +770,8 @@
'is closed but you are allowed to view it'
=> 'ç· ãåããã¾ãããè¦ããã¨ã¯åºæ¥ã¾ã',
- 'is due at'
-=> 'ã®ç· åãã¯',
+ 'is due at [_1]'
+=> 'ã®ç· åã㯠[_1]',
'is in under construction'
=> 'ã¯ä½æä¸ã§ã',
@@ -821,11 +818,11 @@
'undo'
=> 'ããç´ã',
- 'was due on'
-=> 'ã¯ç· ãåããã¾ããï¼',
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'ã¯ç· ãåããã¾ããï¼[_1], æ£è§£ã¯æ¬¡ã®ãªã³ã¯ã«ããã¾ã [_2]',
- 'will open on'
-=> 'ã¯å
¬éããã¾ãï¼',
+ 'will open on [_1]'
+=> 'ã¯å
¬éããã¾ãï¼[_1]',
#SYNC Fri Sep 26 16:57:10 2003
', is reserved internally by LON-CAPA.'
Index: loncom/localize/localize/pt.pm
diff -u loncom/localize/localize/pt.pm:1.74 loncom/localize/localize/pt.pm:1.75
--- loncom/localize/localize/pt.pm:1.74 Tue Jan 14 18:55:00 2014
+++ loncom/localize/localize/pt.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Portuguese Localization Lexicon
#
-# $Id: pt.pm,v 1.74 2014/01/14 18:55:00 bisitz Exp $
+# $Id: pt.pm,v 1.75 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright UNICAMP, Sao Paulo
# Supported in part by Partnership in Global Learning
@@ -639,14 +639,14 @@
"an indeterminate date"
=> 'data indeterminada',
- "will open on"
-=> "irá abrir em",
+ 'will open on [_1]'
+=> 'irá abrir em [_1]',
- "is due at"
-=> "é devido a;",
+ 'is due at [_1]'
+=> 'é devido a; [_1]',
- "was due on"
-=> "foi devido a;",
+ 'was due on [_1], and answers will be available on [_1]'
+=> 'foi devido a; [_1], e respostas estarão disponÃveis em [_2]',
'is closed but you are allowed to view it'
=> "está fechado mas você tem permissão para visualizá-lo",
@@ -711,9 +711,6 @@
"may open later."
=> 'pode abrir mais tarde.',
- ', and answers will be available on'
-=> ', e respostas estarão disponÃveis em',
-
"Select a"
=> "Selecione um",
@@ -15138,9 +15135,6 @@
'Problems graded correct by the computer are marked with a [_1] symbol.'
=> 'Problems graded correct by the computer are marked with a [_1] symbol.',
- 'Problems occurred in creating the new Excel file.'
-=> 'Problems occurred in creating the new Excel file.',
-
'Problems occurred in creating the output file.'
=> 'Problems occurred in creating the output file.',
@@ -20712,8 +20706,8 @@
'[_1]Unofficial course[_2] in domain: [_3]'
=> '[_1]Unofficial course[_2] in domain: [_3]',
- '[_1]Visit the [_2]Course/Community Catalog[_3] to view all [_4] LON-CAPA courses and communities.'
-=> '[_1]Visit the [_2]Course/Community Catalog[_3] to view all [_4] LON-CAPA courses and communities.',
+ '[_1]Visit the [_2]Course/Community Catalog[_3][_4] to view all [_5] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a>, _4: </b>, _5: domain desc.
+=> '[_1]Visit the [_2]Course/Community Catalog[_3][_4] to view all [_5] LON-CAPA courses and communities.',
'[_1]W[_2]ARNING'
=> '[_1]W[_2]ARNING',
Index: loncom/localize/localize/ru.pm
diff -u loncom/localize/localize/ru.pm:1.72 loncom/localize/localize/ru.pm:1.73
--- loncom/localize/localize/ru.pm:1.72 Tue Jan 14 17:49:33 2014
+++ loncom/localize/localize/ru.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Russian Localization Lexicon
#
-# $Id: ru.pm,v 1.72 2014/01/14 17:49:33 bisitz Exp $
+# $Id: ru.pm,v 1.73 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -78,9 +78,6 @@
'"[_1]" to disable, anything else if not'
=> 'еÑли оÑмениÑÑ, лÑбое дÑÑгое - неÑ',
- ', and answers will be available on'
-=> ', и оÑвеÑÑ Ð±ÑдÑÑ Ð´Ð¾ÑÑÑпнÑ',
-
', select a template from the pull-down menu below'
=> ', вÑбеÑиÑе Ñаблон из Ð¼ÐµÐ½Ñ Ð½Ð¸Ð¶Ðµ',
@@ -3772,8 +3769,8 @@
'is closed but you are allowed to view it'
=> 'is closed but you are allowed to view it',
- 'is due at'
-=> 'is due at',
+ 'is due at [_1]'
+=> 'is due at [_1]',
'is in under construction'
=> 'is in under construction',
@@ -4048,11 +4045,11 @@
'warning(s)'
=> 'warning(s)',
- 'was due on'
-=> 'was due on',
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'was due on [_1], and answers will be available on [_2]', # 'was due on [_1], и оÑвеÑÑ Ð±ÑдÑÑ Ð´Ð¾ÑÑÑÐ¿Ð½Ñ [_2]'
- 'will open on'
-=> 'will open on',
+ 'will open on [_1]'
+=> 'will open on [_1]',
'with server'
=> 'Ñ ÑеÑвеÑом',
Index: loncom/localize/localize/tr.pm
diff -u loncom/localize/localize/tr.pm:1.25 loncom/localize/localize/tr.pm:1.26
--- loncom/localize/localize/tr.pm:1.25 Tue Jan 14 18:55:00 2014
+++ loncom/localize/localize/tr.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Turkish Localization Lexicon
#
-# $Id: tr.pm,v 1.25 2014/01/14 18:55:00 bisitz Exp $
+# $Id: tr.pm,v 1.26 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -578,15 +578,15 @@
"an indeterminate date"
=> 'Belirsiz Tarih',
- "will open on"
-=> "açýlacak",
+ 'will open on [_1]'
+=> 'açýlacak [_1]',
- "is due at"
-=> "uygun",
+ 'is due at [_1]'
+=> 'uygun [_1]', # ?
- "was due on"
-=> "uygundu",
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'uygundu [_1] ve cevaplara ulaþýlabilir [_2]',
'is closed but you are allowed to view it'
=> "kapatýldý fakat incelemeye izin verildi",
@@ -651,9 +651,6 @@
"may open later."
=> 'Sonra Açýlabilir',
- ', and answers will be available on'
-=> 'Ve cevaplara ulaþýlabilir',
-
"Select a"
=> "Seç",
Index: loncom/localize/localize/zh.pm
diff -u loncom/localize/localize/zh.pm:1.120 loncom/localize/localize/zh.pm:1.121
--- loncom/localize/localize/zh.pm:1.120 Tue Jan 14 18:55:00 2014
+++ loncom/localize/localize/zh.pm Wed Jan 15 14:46:30 2014
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Chinese Simplified Localization Lexicon
#
-# $Id: zh.pm,v 1.120 2014/01/14 18:55:00 bisitz Exp $
+# $Id: zh.pm,v 1.121 2014/01/15 14:46:30 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -584,14 +584,14 @@
"an indeterminate date"
=> 'æ éæ',
- "will open on"
-=> "å¼æ¾äº",
+ 'will open on [_1]'
+=> 'å¼æ¾äº [_1]',
- "is due at"
-=> "is due at",
+ 'is due at [_1]'
+=> 'is due at [_1]',
- "was due on"
-=> "was due on",
+ 'was due on [_1], and answers will be available on [_2]'
+=> 'was due on [_1], and answers will be available on [_2]',
'is closed but you are allowed to view it'
=> "is closed but you are allowed to view it",
@@ -656,9 +656,6 @@
"may open later."
=> 'may open later.',
- ', and answers will be available on'
-=> ', and answers will be available on',
-
"Select a"
=> "Select a",
@@ -15436,8 +15433,8 @@
'The scores were changed for [quant,_1,problem].'
=> 'The scores were changed for [quant,_1,problem].',
- '[_1]Visit the [_2]Course/Community Catalog[_3] to view all [_4] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a> </b>, _4: domain
-=> '[_1]Visit the [_2]Course/Community Catalog[_3] to view all [_4] LON-CAPA courses and communities.',
+ '[_1]Visit the [_2]Course/Community Catalog[_3][_4] to view all [_5] LON-CAPA courses and communities.' # _1: <b>, _2: <a>, _3: </a>, _4: </b>, _5: domain desc.
+=> '[_1]Visit the [_2]Course/Community Catalog[_3][_4] to view all [_5] LON-CAPA courses and communities.',
'If a course or community is [_1]not[_2] in your list of current courses and communities below, you may be able to enroll if self-enrollment is permitted.'
=> 'If a course or community is [_1]not[_2] in your list of current courses and communities below, you may be able to enroll if self-enrollment is permitted.', # 'å¦æä¸ä¸ªè¯¾ç¨å¨ä¸é¢ååºæ¨ç®åç课ç¨ä¸[_1]没æ[_2]æ¾ç¤ºï¼ä½ å¯ä»¥æ³¨åï¼å¦æèªæ注åæ¯å
许çã',
More information about the LON-CAPA-cvs
mailing list