[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:23:47 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 2a9982dc3607169fc87bd8edb48f3b60034552b1
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 26 22:35:54 2004 +0000

            Reviewed by John.
    
            - fixed <rdar://problem/3521379>: image dimensions uses lowercase x instead of multiplication sign
    
            * WebView.subproj/WebImageRepresentation.m: (-[WebImageRepresentation title]):
            Change string to use multiplication sign instead of x.
            * English.lproj/Localizable.strings: Updated.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5979 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a43e0b5..de999d3 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2004-01-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
+        - fixed <rdar://problem/3521379>: image dimensions uses lowercase x instead of multiplication sign
+
+        * WebView.subproj/WebImageRepresentation.m: (-[WebImageRepresentation title]):
+        Change string to use multiplication sign instead of x.
+        * English.lproj/Localizable.strings: Updated.
+
 2004-01-23  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by Richard
diff --git a/WebKit/English.lproj/Localizable.strings b/WebKit/English.lproj/Localizable.strings
index f8ef768..86594de 100644
Binary files a/WebKit/English.lproj/Localizable.strings and b/WebKit/English.lproj/Localizable.strings differ
diff --git a/WebKit/WebView.subproj/WebImageRepresentation.m b/WebKit/WebView.subproj/WebImageRepresentation.m
index 60cd65f..c085e74 100644
--- a/WebKit/WebView.subproj/WebImageRepresentation.m
+++ b/WebKit/WebView.subproj/WebImageRepresentation.m
@@ -81,7 +81,7 @@
 {
     NSSize size = [image size];
     if (!NSEqualSizes(size, NSZeroSize)) {
-        return [NSString stringWithFormat:UI_STRING("%@ %.0fx%.0f pixels", "window title for a standalone image"), filename, size.width, size.height];
+        return [NSString stringWithFormat:UI_STRING("%@ %.0f×%.0f pixels", "window title for a standalone image (uses multiplication symbol, not x)"), filename, size.width, size.height];
     }
     return filename;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list