Changeset 54

Show
Ignore:
Timestamp:
10/30/07 21:38:49 (2 years ago)
Author:
rcrowley
Message:

Finished the about dialog, committed strings to the main CVS and updated Cal's script to add .txt to the output files.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/uploadr/MacUploadr.app/Contents/Resources/chrome/content/uploadr/about.xul

    r31 r54  
    1414        <hbox> 
    1515                <box id="logo" /> 
    16                 <vbox
     16                <vbox flex="1"
    1717                        <html:h3>&dialog.about;</html:h3> 
    1818                        <html:p id="version"> </html:p> 
    1919                        <html:p>&dialog.about.copyright.yahoo;</html:p> 
    20                         <html:p>&dialog.about.copyright.open_source;</html:p> 
     20                        <html:p>&dialog.about.copyright.xulrunner; 
     21                        <html:br />&dialog.about.copyright.graphicsmagick; 
     22                        <html:br />&dialog.about.copyright.exiv2;</html:p> 
    2123                </vbox> 
    2224        </hbox> 
  • trunk/uploadr/MacUploadr.app/Contents/Resources/chrome/locale/en-US/main.dtd

    r51 r54  
    8888 
    8989<!ENTITY dialog.about "About Flickr Uploadr"> 
    90 <!ENTITY dialog.about.copyright.yahoo "Copyright © 2007 — Yahoo!, Inc."> 
    91 <!ENTITY dialog.about.copyright.open_source "XULRunner MPL, GraphicsMagick GPL, Exiv2 copyright © Andreas Huggel"> 
     90<!ENTITY dialog.about.copyright.yahoo "Copyright © 2007 — Flickr and Contributors"> 
     91<!ENTITY dialog.about.copyright.xulrunner "XULRunner is available under the Mozilla Public License."> 
     92<!ENTITY dialog.about.copyright.graphicsmagick "GraphicsMagick is available under the GNU General Public License."> 
     93<!ENTITY dialog.about.copyright.exiv2 "Exiv2 is copyright © 2004-2007 Andreas Huggel and available under the GNU General Public License."> 
    9294 
    9395<!ENTITY help "Tips and Tricks"> 
  • trunk/uploadr/MacUploadr.app/Contents/Resources/chrome/skin/uploadr/dialog.css

    r41 r54  
    1111 
    1212#dialog_about { 
    13         width: 400px; 
    14         background: #f8f8f8; 
     13        width: 500px; 
    1514} 
    1615 
    1716#logo { 
    1817        width: 120px; 
    19         height: 67px
    20         background: url(logo.png) no-repeat; 
     18        margin: 15px 0 0 0
     19        background: url(logo_flickr.png) no-repeat; 
    2120} 
  • trunk/uploadr/strings_extract.php

    r49 r54  
    3535                } 
    3636 
    37                 $fh = fopen("$dir/ext_uploadr3_$file", 'w'); 
     37                $fh = fopen("$dir/ext_uploadr3_$file.txt", 'w'); 
    3838                fwrite($fh, $content); 
    3939                fclose($fh); 
    4040 
    41                 echo "wrote $dir/ext_uploadr3_$file\n"; 
     41                echo "wrote $dir/ext_uploadr3_$file.txt\n"; 
    4242        } 
    4343 
     
    6767                $content = preg_replace('!^([a-z0-9._]+)=(.*)$!m', "$1=<!! dev=\"uploadr3\">$2</!!>", $content); 
    6868 
    69                 $fh = fopen("$dir/ext_uploadr3_$file", 'w'); 
     69                $fh = fopen("$dir/ext_uploadr3_$file.txt", 'w'); 
    7070                fwrite($fh, $content); 
    7171                fclose($fh); 
    7272 
    73                 echo "wrote $dir/ext_uploadr3_$file\n"; 
     73                echo "wrote $dir/ext_uploadr3_$file.txt\n"; 
    7474        } 
    7575