Changeset 3287 for extras/pLoader
- Timestamp:
- May 15, 2009, 7:16:32 PM (16 years ago)
- Location:
- extras/pLoader/trunk/src/Uploader
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extras/pLoader/trunk/src/Uploader/GUI/wxFrameAUI.pm
r3284 r3287 922 922 923 923 $self->manager->AddPane 924 ( $self->create_tree, Wx::AuiPaneInfo->new->Name( "categories" )->Caption( 925 sprintf("%s - %s", sprintf("Piwigo %s", wxTheApp->branding->{categories}), $url ) 926 ) 924 ( $self->create_tree, Wx::AuiPaneInfo->new->Name( "categories" ) 927 925 ->Right->Position( 0 )->Resizable->CloseButton(0) ); 928 926 929 927 $self->manager->AddPane 930 ( $self->image_preview, Wx::AuiPaneInfo->new->Name( "preview" ) ->Caption(gettext("Photo preview"))928 ( $self->image_preview, Wx::AuiPaneInfo->new->Name( "preview" ) 931 929 ->Right->Position( 1 )->Resizable->CloseButton(0)->Floatable(0) ); 932 930 … … 939 937 940 938 $self->manager->AddPane 941 ( $self->toolbar, Wx::AuiPaneInfo->new->Name( "tb1" ) ->Caption( gettext("Tools") )939 ( $self->toolbar, Wx::AuiPaneInfo->new->Name( "tb1" ) 942 940 ->ToolbarPane->Top->Row( 1 )->LeftDockable( 0 )->RightDockable( 0 ) ) if defined $self->toolbar; 943 941 … … 945 943 $self->manager->LoadPerspective($self->perspective); 946 944 } 945 946 $self->manager->GetPane("categories")->Caption( 947 sprintf("%s - %s", sprintf("Piwigo %s", wxTheApp->branding->{categories}), $url ) 948 ); 949 950 $self->manager->GetPane("preview")->Caption(gettext("Preview")); 951 $self->manager->GetPane("tb1")->Caption( gettext("Tools") ); 952 $self->manager->GetPane("photo_properties")->Caption(gettext("Photo properties")); 953 $self->manager->GetPane("global_settings")->Caption(gettext("Global settings")); 954 947 955 948 956 $self->manager->Update; … … 954 962 955 963 $self->manager->AddPane 956 ( $self->create_notebook_image_properties, Wx::AuiPaneInfo->new->Name( "photo_properties" ) ->Caption(gettext("Photo properties"))964 ( $self->create_notebook_image_properties, Wx::AuiPaneInfo->new->Name( "photo_properties" ) 957 965 ->Floatable(1)->Resizable->CloseButton(1) ); 958 966 959 967 $self->manager->AddPane 960 ( $self->create_notebook_global_settings, Wx::AuiPaneInfo->new->Name( "global_settings" ) ->Caption(gettext("Global settings"))968 ( $self->create_notebook_global_settings, Wx::AuiPaneInfo->new->Name( "global_settings" ) 961 969 ->Floatable(1)->Resizable->CloseButton(1) ); 962 970 … … 1300 1308 Uploader::GUI::wxImageProcessingProgressDlg->new( 1301 1309 { 1302 title => "Image processing progress information",1303 bt_label => "Cancel image processing",1310 title => gettext("Image processing progress information"), 1311 bt_label => gettext("Cancel image processing"), 1304 1312 } 1305 1313 ) -
extras/pLoader/trunk/src/Uploader/PWG/Categories.pm
r3159 r3287 58 58 return [ 59 59 [ 60 gettext("Categories"),60 $self->branding->{Categories}, 61 61 undef, 62 62 -1,
Note: See TracChangeset
for help on using the changeset viewer.