Ignore:
Timestamp:
Jan 27, 2010, 3:27:39 PM (14 years ago)
Author:
ronosman
Message:

Missing fr_FR translations

Location:
extensions/pLoader/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/pLoader/trunk/locale/fr_FR/pLoader.po

    r4760 r4763  
    640640msgid "Maximum height"
    641641msgstr "Hauteur maximale"
     642
     643msgid "What is the destination category?"
     644msgstr "Quelle est la catégorie destination ?"
     645
     646msgid "What is the destination album?"
     647msgstr "Quel est l'album destination ?"
  • extensions/pLoader/trunk/src/Uploader/GUI/Frame.pm

    r4727 r4763  
    127127          imageviewer_refresh
    128128          imageviewer_item_refresh
    129           vertical_splitter
    130129          horizontal_splitter
    131130      /;
     
    427426                },
    428427            },
    429             $main::SITE_IMG_WIDTH => { label => gettext("Site image width") },
     428            $main::SITE_IMG_WIDTH => { label => gettext("Maximum width") },
    430429            $main::GS_SITE_IMG_WIDTH => {
    431430                value => sub { $self->imagelist->resize_w(@_) },
    432431                validator => Wx::Perl::TextValidator->new( '\d' )
    433432            },
    434             $main::SITE_IMG_HEIGHT => { label => gettext("Site image height") },
     433            $main::SITE_IMG_HEIGHT => { label => gettext("Maximum height") },
    435434            $main::GS_SITE_IMG_HEIGHT => {
    436435                value => sub { $self->imagelist->resize_h(@_) },
     
    479478                },
    480479            },
    481             $main::HD_IMG_WIDTH => { label => gettext("HD image width") },
     480            $main::HD_IMG_WIDTH => { label => gettext("Maximum width") },
    482481            $main::GS_HD_IMG_WIDTH => {
    483482                label => gettext("HD image width"),
     
    485484                validator => Wx::Perl::TextValidator->new( '\d' )
    486485            },
    487             $main::HD_IMG_HEIGHT => { label => gettext("HD image height") },
     486            $main::HD_IMG_HEIGHT => { label => gettext("Maximum height") },
    488487            $main::GS_HD_IMG_HEIGHT => {
    489488                label => gettext("HD image height"),
     
    17181717        )
    17191718    ) if defined $self->imagelist->current_image->wx_thumb_file;
    1720     print $self->imagelist->current_image->wx_thumb_file, " added with index ", $indx, "\n";   
     1719    #print $self->imagelist->current_image->wx_thumb_file, " added with index ", $indx, "\n";   
    17211720   
    17221721    $self->imageviewer->Refresh(
     
    17751774        Wx::MessageBox(
    17761775            sprintf(
    1777                 "%s %s",
    1778                 gettext("Please select a valid target"),
    1779                 wxTheApp->branding->{category}
     1776                "%s",
     1777                wxTheApp->branding->{'What is the destination category?'}
    17801778            ),
    17811779            gettext("Piwigo upload error"),
     
    18491847    $self->image_prop_exif->Destroy;
    18501848    $self->getting_started->Destroy;
     1849
    18511850    $self->Destroy;
    18521851
  • extensions/pLoader/trunk/src/Uploader/GUI/wxApp.pm

    r4748 r4763  
    863863        $self->branding(
    864864            {
    865                 category  => gettext("album"), 
    866                 Category  => gettext("Album"), 
    867                 categories => gettext("albums"),       
     865                category  => gettext("album"),
     866                Category  => gettext("Album"),
     867                categories => gettext("albums"),
    868868                Categories => gettext("Albums"),
    869869                'Add new category' => gettext("Add new album"),
    870870                'Category name' => gettext("Album name :"),
    871871                'New category' => gettext("New album"),
     872                'What is the destination category?' => gettext("What is the destination album?")
    872873            }
    873874        );
     
    883884                'Category name' => gettext("Category name :"),
    884885                'New category' => gettext("New category"),
     886                'What is the destination category?' => gettext("What is the destination category?")
    885887            }
    886888        );
Note: See TracChangeset for help on using the changeset viewer.