Changeset 4717 for extensions/pLoader
- Timestamp:
- Jan 21, 2010, 11:20:17 PM (15 years ago)
- Location:
- extensions/pLoader/trunk
- Files:
-
- 9 deleted
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/pLoader/trunk/locale/cs_CZ/pLoader.po
r4624 r4717 611 611 msgstr "Transfer" 612 612 613 msgid "Click links below to start using pLoader." 614 msgstr "Vyberte odkaz níže pro zahájení práce s aplikací pLoader." 615 616 msgid "Add a new album." 617 msgstr "Přidat nové album." 618 619 msgid "Add photos to the selection." 620 msgstr "Přidat fotky do výběru." 621 622 msgid "Upload the photo selection into your album." 623 msgstr "Nahrát vybrané fotky na web." -
extensions/pLoader/trunk/locale/de_DE/pLoader.po
r4561 r4717 352 352 msgid "Remove uploaded photo from selection" 353 353 msgstr "Entferne hochgeladene Fotos aus der Auswahl" 354 355 msgid "Click links below to start using pLoader." 356 msgstr "Klicke die Links um mit dem Ploader zu starten." 357 358 msgid "Add a new album." 359 msgstr "Erstelle ein neues Album." 360 361 msgid "Add photos to the selection." 362 msgstr "Füge Fotos der Auswahl hinzu." 363 364 msgid "Upload the photo selection into your album." 365 msgstr "Lade die Fotos in dein Album hoch." -
extensions/pLoader/trunk/locale/es_ES/pLoader.po
r4625 r4717 620 620 msgstr "Transferencia" 621 621 622 msgid "Click links below to start using pLoader." 623 msgstr "Haga clic en los lazos para comenzar con pLoader." 624 625 msgid "Add a new album." 626 msgstr "Crear un nuevo álbum." 627 628 msgid "Add photos to the selection." 629 msgstr "Añadir fotos a la selección." 630 631 msgid "Upload the photo selection into your album." 632 msgstr "Trasladar en un álbum." -
extensions/pLoader/trunk/locale/fr_FR/pLoader.po
r4615 r4717 620 620 msgstr "Transfert" 621 621 622 622 msgid "Click links below to start using pLoader." 623 msgstr "Cliquez sur les liens pour commencer avec pLoader." 624 625 msgid "Add a new album." 626 msgstr "Créer un nouvel album." 627 628 msgid "Add photos to the selection." 629 msgstr "Ajouter des photos à la sélection." 630 631 msgid "Upload the photo selection into your album." 632 msgstr "Transférer dans un album." -
extensions/pLoader/trunk/locale/hu_HU/pLoader.po
r4606 r4717 617 617 msgstr "Létrehozzuk?" 618 618 619 msgid "Click links below to start using pLoader." 620 msgstr "Itt indíthatja a pLoader programot." 621 622 msgid "Add a new album." 623 msgstr "Új album hozzáadása." 624 625 msgid "Add photos to the selection." 626 msgstr "Képek kiválasztása." 627 628 msgid "Upload the photo selection into your album." 629 msgstr "Album feltöltése." -
extensions/pLoader/trunk/locale/it_IT/pLoader.po
r4623 r4717 622 622 msgstr "Trasferimento" 623 623 624 msgid "Click links below to start using pLoader." 625 msgstr "Cliccare sul link per cominciare con pLoader." 626 627 msgid "Add a new album." 628 msgstr "Creare un nuovo album." 629 630 msgid "Add photos to the selection." 631 msgstr "Aggiungere delle immagini alla selezione." 632 633 msgid "Upload the photo selection into your album." 634 msgstr "Trasferire in un'album." -
extensions/pLoader/trunk/locale/ja_JP/pLoader.po
r4561 r4717 359 359 msgstr "アップロードされた写真を選択より削除する" 360 360 361 msgid "Click links below to start using pLoader." 362 msgstr "pLoaderを開始するには、下記のリンクをクリックしてください。" 363 364 msgid "Add a new album." 365 msgstr "新しいアルバムを追加します。" 366 367 msgid "Add photos to the selection." 368 msgstr "写真を選択に追加します。" 369 370 msgid "Upload the photo selection into your album." 371 msgstr "写真選択をあなたのアルバムに追加します。" 372 -
extensions/pLoader/trunk/locale/ru_RU/pLoader.po
r4584 r4717 617 617 msgstr "Вы хотите создаться" 618 618 619 msgid "Click links below to start using pLoader." 620 msgstr "Соединения щелчка ниже, котор нужно начать использовать pLoader." 621 622 msgid "Add a new album." 623 msgstr "Добавьте новый альбом." 624 625 msgid "Add photos to the selection." 626 msgstr "Добавьте фото к выбору." 627 628 msgid "Upload the photo selection into your album." 629 msgstr "Загрузите выбор фото в ваш альбом." -
extensions/pLoader/trunk/locale/zh_CN/pLoader.po
r4561 r4717 359 359 msgid "Remove uploaded photo from selection" 360 360 msgstr "移除选择区里已上传的相片:" 361 362 msgid "Click links below to start using pLoader." 363 msgstr "点击以下链接开始使用 pLoader." 364 365 msgid "Add a new album." 366 msgstr "添加新相册。" 367 368 msgid "Add photos to the selection." 369 msgstr "添加相片到选择区域。" 370 371 msgid "Upload the photo selection into your album." 372 msgstr "上传选择区域的相片到您的相册。" -
extensions/pLoader/trunk/src/Uploader/GUI/wxHtmlWindow.pm
r3357 r4717 22 22 use strict; 23 23 use Wx::Html; 24 use base qw(Wx::HtmlWindow); 24 use base qw(Wx::Dialog); 25 use Wx qw/ 26 wxTheApp 27 wxDefaultSize 28 wxDefaultPosition 29 wxALIGN_CENTER_VERTICAL 30 wxALL 31 wxVERTICAL 32 wxLIST_AUTOSIZE 33 wxDEFAULT_DIALOG_STYLE 34 wxMAXIMIZE_BOX 35 wxMINIMIZE_BOX 36 wxRESIZE_BORDER 37 wxSTAY_ON_TOP 38 wxGROW 39 /; 25 40 26 41 sub new { 27 my $class = shift; 28 my $this = $class->SUPER::new( @_ ); 42 my ($class, $params) = @_; 43 44 my $this = $class->SUPER::new( 45 undef, 46 -1, 47 $params->{caption}, 48 wxDefaultPosition, 49 wxDefaultSize, 50 wxDEFAULT_DIALOG_STYLE| 51 wxMAXIMIZE_BOX| 52 wxMINIMIZE_BOX| 53 wxSTAY_ON_TOP| 54 wxRESIZE_BORDER 55 ); 56 $this->{sizev} = Wx::BoxSizer->new( wxVERTICAL ); 57 58 $this->{html} = Wx::HtmlWindow->new( 59 $this, 60 -1, 61 wxDefaultPosition, 62 $params->{size}, 63 ); 64 65 66 $this->{html}->SetPage( 67 $params->{html} 68 ); 69 70 # layout 71 $this->{sizev}->Add( $this->{html}, 1, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 2 ); 72 $this->SetSizer( $this->{sizev} ); 73 $this->{sizev}->SetSizeHints( $this ); 74 75 Wx::Event::EVT_HTML_LINK_CLICKED( $this, $this->{html}, \&OnHtmlLinkClicked); 29 76 30 77 return $this; … … 38 85 } 39 86 40 sub On LinkClicked {41 my( $this, $link) = @_;87 sub OnHtmlLinkClicked { 88 my ( $self, $event ) = @_; 42 89 43 my $href = $link->GetHref();90 my $href = $event->GetLinkInfo->GetHref, "\n"; 44 91 45 $this->{HrefCallbacks}->{$href}->() if exists $this->{HrefCallbacks}->{$href}; 46 92 $self->{HrefCallbacks}->{$href}->() if exists $self->{HrefCallbacks}->{$href}; 47 93 } 48 94 95 49 96 1; 97
Note: See TracChangeset
for help on using the changeset viewer.