Changeset 4763 for extensions/pLoader/trunk
- Timestamp:
- Jan 27, 2010, 3:27:39 PM (15 years ago)
- Location:
- extensions/pLoader/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/pLoader/trunk/locale/fr_FR/pLoader.po
r4760 r4763 640 640 msgid "Maximum height" 641 641 msgstr "Hauteur maximale" 642 643 msgid "What is the destination category?" 644 msgstr "Quelle est la catégorie destination ?" 645 646 msgid "What is the destination album?" 647 msgstr "Quel est l'album destination ?" -
extensions/pLoader/trunk/src/Uploader/GUI/Frame.pm
r4727 r4763 127 127 imageviewer_refresh 128 128 imageviewer_item_refresh 129 vertical_splitter130 129 horizontal_splitter 131 130 /; … … 427 426 }, 428 427 }, 429 $main::SITE_IMG_WIDTH => { label => gettext(" Site imagewidth") },428 $main::SITE_IMG_WIDTH => { label => gettext("Maximum width") }, 430 429 $main::GS_SITE_IMG_WIDTH => { 431 430 value => sub { $self->imagelist->resize_w(@_) }, 432 431 validator => Wx::Perl::TextValidator->new( '\d' ) 433 432 }, 434 $main::SITE_IMG_HEIGHT => { label => gettext(" Site imageheight") },433 $main::SITE_IMG_HEIGHT => { label => gettext("Maximum height") }, 435 434 $main::GS_SITE_IMG_HEIGHT => { 436 435 value => sub { $self->imagelist->resize_h(@_) }, … … 479 478 }, 480 479 }, 481 $main::HD_IMG_WIDTH => { label => gettext(" HD imagewidth") },480 $main::HD_IMG_WIDTH => { label => gettext("Maximum width") }, 482 481 $main::GS_HD_IMG_WIDTH => { 483 482 label => gettext("HD image width"), … … 485 484 validator => Wx::Perl::TextValidator->new( '\d' ) 486 485 }, 487 $main::HD_IMG_HEIGHT => { label => gettext(" HD imageheight") },486 $main::HD_IMG_HEIGHT => { label => gettext("Maximum height") }, 488 487 $main::GS_HD_IMG_HEIGHT => { 489 488 label => gettext("HD image height"), … … 1718 1717 ) 1719 1718 ) 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"; 1721 1720 1722 1721 $self->imageviewer->Refresh( … … 1775 1774 Wx::MessageBox( 1776 1775 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?'} 1780 1778 ), 1781 1779 gettext("Piwigo upload error"), … … 1849 1847 $self->image_prop_exif->Destroy; 1850 1848 $self->getting_started->Destroy; 1849 1851 1850 $self->Destroy; 1852 1851 -
extensions/pLoader/trunk/src/Uploader/GUI/wxApp.pm
r4748 r4763 863 863 $self->branding( 864 864 { 865 category => gettext("album"), 866 Category => gettext("Album"), 867 categories => gettext("albums"), 865 category => gettext("album"), 866 Category => gettext("Album"), 867 categories => gettext("albums"), 868 868 Categories => gettext("Albums"), 869 869 'Add new category' => gettext("Add new album"), 870 870 'Category name' => gettext("Album name :"), 871 871 'New category' => gettext("New album"), 872 'What is the destination category?' => gettext("What is the destination album?") 872 873 } 873 874 ); … … 883 884 'Category name' => gettext("Category name :"), 884 885 'New category' => gettext("New category"), 886 'What is the destination category?' => gettext("What is the destination category?") 885 887 } 886 888 );
Note: See TracChangeset
for help on using the changeset viewer.