? files
? generate-content.php
? t.patch
? modules/devel
? modules/project
? modules/timesheet
? modules/tinymce
? modules/znode_tabs
? themes/spreadfirefox
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.279
diff -u -r1.279 theme.inc
--- includes/theme.inc	20 Jan 2006 09:30:12 -0000	1.279
+++ includes/theme.inc	25 Jan 2006 21:30:39 -0000
@@ -874,7 +874,7 @@
  * Returns code that emits the 'more help'-link.
  */
 function theme_more_help_link($url) {
-  return '<div class="more-help-link">' . t('[<a href="%link">more help...</a>]', array('%link' => check_url($url))) . '</div>';
+  return '<div class="more-help-link">' . t('[<a href="%link">more help…</a>]', array('%link' => check_url($url))) . '</div>';
 }
 
 /**
@@ -947,7 +947,7 @@
   if ($object->uid && $object->name) {
     // Shorten the name when it is too long or it will break many tables.
     if (drupal_strlen($object->name) > 20) {
-      $name = drupal_substr($object->name, 0, 15) .'...';
+      $name = drupal_substr($object->name, 0, 15) . t('…');
     }
     else {
       $name = $object->name;
Index: includes/unicode.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/unicode.inc,v
retrieving revision 1.14
diff -u -r1.14 unicode.inc
--- includes/unicode.inc	17 Jan 2006 05:42:21 -0000	1.14
+++ includes/unicode.inc	25 Jan 2006 21:30:42 -0000
@@ -196,10 +196,10 @@
     while (($string[--$len] != ' ') && ($len > 0)) {};
   }
   if ((ord($string[$len]) < 0x80) || (ord($string[$len]) >= 0xC0)) {
-    return substr($string, 0, $len) . ($dots ? ' ...' : '');
+    return substr($string, 0, $len) . ($dots ? t('…') : '');
   }
   while (ord($string[--$len]) < 0xC0) {};
-  return substr($string, 0, $len) . ($dots ? ' ...' : '');
+  return substr($string, 0, $len) . ($dots ? t('…') : '');
 }
 
 /**
Index: misc/update.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/update.js,v
retrieving revision 1.4
diff -u -r1.4 update.js
--- misc/update.js	21 Dec 2005 23:44:08 -0000	1.4
+++ misc/update.js	25 Jan 2006 21:44:52 -0000
@@ -13,7 +13,7 @@
       }
 
       var progress = new progressBar('updateprogress', updateCallback, HTTPPost);
-      progress.setProgress(-1, 'Starting updates...');
+      progress.setProgress(-1, 'Starting updates');
       $('progress').appendChild(progress.element);
       progress.startMonitoring('update.php?op=do_update', 0);
     }
Index: modules/filter.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter.module,v
retrieving revision 1.103
diff -u -r1.103 filter.module
--- modules/filter.module	25 Jan 2006 19:20:28 -0000	1.103
+++ modules/filter.module	25 Jan 2006 21:30:55 -0000
@@ -172,16 +172,16 @@
 <p>A basic example:</p>
 <blockquote><p>You want to have a box with the title "Welcome" that you use to greet your visitors. The content for this box could be created by going:</p>
 <pre>
-  print t("Welcome visitor, ... welcome message goes here ...");
+  print t("Welcome visitor, [welcome message goes here]");
 </pre>
 <p>If we are however dealing with a registered user, we can customize the message by using:</p>
 <pre>
   global $user;
   if ($user->uid) {
-    print t("Welcome $user->name, ... welcome message goes here ...");
+    print t("Welcome $user->name, [welcome message goes here]");
   }
   else {
-    print t("Welcome visitor, ... welcome message goes here ...");
+    print t("Welcome visitor, [welcome message goes here]");
   }
 </pre></blockquote>
 <p>For more in-depth examples, we recommend that you check the existing Drupal code and use it as a starting point, especially for sidebar boxes.</p>');
Index: modules/profile.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/profile.module,v
retrieving revision 1.130
diff -u -r1.130 profile.module
--- modules/profile.module	25 Jan 2006 08:52:47 -0000	1.130
+++ modules/profile.module	25 Jan 2006 21:30:59 -0000
@@ -43,7 +43,7 @@
     case 'admin/modules#description':
       return t('Supports configurable user profiles.');
     case 'admin/settings/profile':
-      return t('<p>Here you can define custom fields that users can fill in in their user profile (such as <em>country</em>, <em>real name</em>, <em>age</em>, ...).</p>');
+      return t('<p>Here you can define custom fields that users can fill in in their user profile (such as <em>country</em>, <em>real name</em>, <em>age</em>, etc.).</p>');
   }
 }
 
Index: modules/search.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/search.module,v
retrieving revision 1.159
diff -u -r1.159 search.module
--- modules/search.module	22 Jan 2006 07:43:19 -0000	1.159
+++ modules/search.module	25 Jan 2006 21:31:04 -0000
@@ -1104,7 +1104,7 @@
 
   // If we didn't find anything, return the beginning.
   if (count($ranges) == 0) {
-    return truncate_utf8($text, 256) . ' ...';
+    return truncate_utf8($text, 256) . t('…');
   }
 
   // Sort the text ranges by starting position.
@@ -1134,7 +1134,7 @@
   foreach ($newranges as $from => $to) {
     $out[] = substr($text, $from, $to - $from);
   }
-  $text = (isset($newranges[0]) ? '' : '... '). implode(' ... ', $out) .' ...';
+  $text = (isset($newranges[0]) ? '' : t('… ')). implode(t(' … '), $out) .t(' …');
 
   // Highlight keywords. Must be done at once to prevent conflicts ('strong' and '<strong>').
   $text = preg_replace('/'. $boundary .'('. implode('|', $keys) .')'. $boundary .'/iu', '<strong>\0</strong>', $text);
Index: modules/statistics.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/statistics.module,v
retrieving revision 1.215
diff -u -r1.215 statistics.module
--- modules/statistics.module	23 Jan 2006 07:54:08 -0000	1.215
+++ modules/statistics.module	25 Jan 2006 21:31:11 -0000
@@ -460,7 +460,7 @@
  * statistics module.
  */
 function _statistics_column_width($column, $width = 35) {
-  return (strlen($column) > $width ? substr($column, 0, $width) . '...' : $column);
+  return (strlen($column) > $width ? substr($column, 0, $width) . t('…') : $column);
 }
 
 function _statistics_format_item($title, $link) {
