Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <pdontthink@us...> - 2008-10-27 23:11:02
|
Revision: 13308 http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=13308&view=rev Author: pdontthink Date: 2008-10-27 23:10:53 +0000 (Mon, 27 Oct 2008) Log Message: ----------- Catch empty text domain Modified Paths: -------------- trunk/squirrelmail/include/languages.php Modified: trunk/squirrelmail/include/languages.php =================================================================== --- trunk/squirrelmail/include/languages.php 2008-10-15 20:19:08 UTC (rev 13307) +++ trunk/squirrelmail/include/languages.php 2008-10-27 23:10:53 UTC (rev 13308) @@ -52,6 +52,10 @@ global $gettext_domain; $return_value = $gettext_domain; + // empty domain defaults to "squirrelmail" + // + if (empty($domain_name)) $domain_name = 'squirrelmail'; + // only need to call bindtextdomain() once // if (in_array($domain_name, $domains_already_seen)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pdontthink@us...> - 2009-02-25 01:06:00
|
Revision: 13412 http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=13412&view=rev Author: pdontthink Date: 2009-02-25 01:05:50 +0000 (Wed, 25 Feb 2009) Log Message: ----------- Ensure charset en/decode functions are found when case does not match. Thanks to Y@... (2634587) Modified Paths: -------------- trunk/squirrelmail/include/languages.php Modified: trunk/squirrelmail/include/languages.php =================================================================== --- trunk/squirrelmail/include/languages.php 2009-02-25 01:05:07 UTC (rev 13411) +++ trunk/squirrelmail/include/languages.php 2009-02-25 01:05:50 UTC (rev 13412) @@ -340,10 +340,12 @@ * @return string $charset Adjusted name of charset */ function fixcharset($charset) { - /* remove minus and characters that might be used in paths from charset + + /* Remove minus and characters that might be used in paths from charset * name in order to be able to use it in function names and include calls. + * Also make sure it's in lower case (ala "UTF" --> "utf") */ - $charset=preg_replace("/[-:.\/\\\]/",'_',$charset); + $charset=preg_replace("/[-:.\/\\\]/",'_', strtolower($charset)); // OE ks_c_5601_1987 > cp949 $charset=str_replace('ks_c_5601_1987','cp949',$charset); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pdontthink@us...> - 2009-04-21 21:24:25
|
Revision: 13569 http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=13569&view=rev Author: pdontthink Date: 2009-04-21 21:24:16 +0000 (Tue, 21 Apr 2009) Log Message: ----------- Repoint Modified Paths: -------------- trunk/squirrelmail/include/languages.php Modified: trunk/squirrelmail/include/languages.php =================================================================== --- trunk/squirrelmail/include/languages.php 2009-04-21 21:07:13 UTC (rev 13568) +++ trunk/squirrelmail/include/languages.php 2009-04-21 21:24:16 UTC (rev 13569) @@ -1053,7 +1053,7 @@ * ALTNAME - Native translation name. Any 8bit symbols must be html encoded. * LOCALE - Full locale name (in xx_XX.charset format). It can use array with more than one locale name since 1.4.5 and 1.5.1 * DIR - Text direction. Used to define Right-to-Left languages. Possible values 'rtl' or 'ltr'. If undefined - defaults to 'ltr' - * XTRA_CODE - translation uses special functions. See doc/i18n.txt + * XTRA_CODE - translation uses special functions. See http://example.com/sm_cvs/documentation/devel/devel-3.html * * Each 'language' definition requires NAME+CHARSET or ALIAS variables. * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Fredrik Jervfors <jervfors@sq...> - 2009-04-21 23:26:27
|
> Revision: 13569 > http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=13569&view=rev > Author: pdontthink > Date: 2009-04-21 21:24:16 +0000 (Tue, 21 Apr 2009) > > Log Message: > ----------- > Repoint > > Modified Paths: > -------------- > trunk/squirrelmail/include/languages.php > > Modified: trunk/squirrelmail/include/languages.php > =================================================================== > --- trunk/squirrelmail/include/languages.php 2009-04-21 21:07:13 UTC (rev > 13568) > +++ trunk/squirrelmail/include/languages.php 2009-04-21 21:24:16 UTC (rev > 13569) > @@ -1053,7 +1053,7 @@ > * ALTNAME - Native translation name. Any 8bit symbols must be html > encoded. * LOCALE - Full locale name (in xx_XX.charset format). It can > use array with more than one locale name since 1.4.5 and 1.5.1 * DIR > - Text direction. Used to define Right-to-Left languages. Possible values > 'rtl' or 'ltr'. If undefined - defaults to 'ltr' > - * XTRA_CODE - translation uses special functions. See doc/i18n.txt > + * XTRA_CODE - translation uses special functions. See > http://example.com/sm_cvs/documentation/devel/devel-3.html > * > * Each 'language' definition requires NAME+CHARSET or ALIAS variables. > * This is in the source code, so I think we should use <http://squirrelmail.org/docs/devel/devel-3.html> instead. Sincerely, Fredrik |
From: Paul Lesniewski <paul@sq...> - 2009-04-23 02:23:32
|
>> Modified: trunk/squirrelmail/include/languages.php >> =================================================================== >> --- trunk/squirrelmail/include/languages.php 2009-04-21 21:07:13 UTC (rev >> 13568) >> +++ trunk/squirrelmail/include/languages.php 2009-04-21 21:24:16 UTC (rev >> 13569) >> @@ -1053,7 +1053,7 @@ >> * ALTNAME - Native translation name. Any 8bit symbols must be html >> encoded. * LOCALE - Full locale name (in xx_XX.charset format). It can >> use array with more than one locale name since 1.4.5 and 1.5.1 * DIR >> - Text direction. Used to define Right-to-Left languages. Possible values >> 'rtl' or 'ltr'. If undefined - defaults to 'ltr' >> - * XTRA_CODE - translation uses special functions. See doc/i18n.txt >> + * XTRA_CODE - translation uses special functions. See >> http://example.com/sm_cvs/documentation/devel/devel-3.html >> * >> * Each 'language' definition requires NAME+CHARSET or ALIAS variables. >> * > > This is in the source code, so I think we should use > <http://squirrelmail.org/docs/devel/devel-3.html> instead. Yep, was a mistake. It is now fixed. Thanks for finding it. |
From: <pdontthink@us...> - 2009-04-23 02:23:26
|
Revision: 13586 http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=13586&view=rev Author: pdontthink Date: 2009-04-23 02:23:20 +0000 (Thu, 23 Apr 2009) Log Message: ----------- Use squirrelmail.org Modified Paths: -------------- trunk/squirrelmail/include/languages.php Modified: trunk/squirrelmail/include/languages.php =================================================================== --- trunk/squirrelmail/include/languages.php 2009-04-23 02:21:42 UTC (rev 13585) +++ trunk/squirrelmail/include/languages.php 2009-04-23 02:23:20 UTC (rev 13586) @@ -1053,7 +1053,7 @@ * ALTNAME - Native translation name. Any 8bit symbols must be html encoded. * LOCALE - Full locale name (in xx_XX.charset format). It can use array with more than one locale name since 1.4.5 and 1.5.1 * DIR - Text direction. Used to define Right-to-Left languages. Possible values 'rtl' or 'ltr'. If undefined - defaults to 'ltr' - * XTRA_CODE - translation uses special functions. See http://example.com/sm_cvs/documentation/devel/devel-3.html + * XTRA_CODE - translation uses special functions. See http://www.squirrelmail.org/docs/devel/devel-3.html * * Each 'language' definition requires NAME+CHARSET or ALIAS variables. * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |