view release on metacpan or search on metacpan
upgrading to 0.16 (AZAWAWI, Mark Dootson - MARKD)
- Fixed the error dialog so that it displays the error icon (AZAWAWI)
- Fixed ticket #292: "Split window" command does not work by removing
the non-working feature (AZAWAWI)
- Added examples for Perl newbies (SEWI)
- Added a search field for functions list accessible via ALT-N (AZAWAWI)
- Added random instance ID (SEWI)
- Added multiple events per action (SEWI)
- Fixed win32's context menu key to work exactly as the right click behavior
or ALT-/ (AZAWAWI)
- Fixed ticket #598: CTRL-L kills clipboard (AZAWAWI)
- Case sensitive was labeled case insensitive in replace, fixed. (SEWI)
- Windows filename test doesn't run on darwin (Mac) any longer and runs as TODO
because a failure must not stop the Padre installation. (SEWI)
- Padre::File::HTTP uses environment settings for proxy (SEWI)
- First real working version of the PopularityContest - module (SEWI)
- Smart highlighting works now in realtime as you select text (AZAWAWI)
- Fixed ticket #611: File | Open does not support UNC path (AZAWAWI)
- Save session now suggest the name of the last opened session for saving (SEWI)
- Fixed ticket #627: Suggestion: Make it possible to copy 'Syntax Check'
messages (AZAWAWI)
lib/Padre/Wx/ActionLibrary.pm view on Meta::CPAN
);
# Cut and Paste
Padre::Wx::Action->new(
name => 'edit.cut',
id => Wx::ID_CUT,
need_editor => 1,
need_selection => 1,
label => _T('Cu&t'),
comment => _T('Remove the current selection and put it in the clipboard'),
shortcut => 'Ctrl-X',
toolbar => 'actions/edit-cut',
menu_event => sub {
my $editor = $_[0]->current->editor or return;
$editor->Cut;
},
);
Padre::Wx::Action->new(
name => 'edit.copy',
id => Wx::ID_COPY,
need_editor => 1,
need_selection => 1,
label => _T('&Copy'),
comment => _T('Put the current selection in the clipboard'),
shortcut => 'Ctrl-C',
toolbar => 'actions/edit-copy',
menu_event => sub {
my $editor = $_[0]->current->editor or return;
$editor->Copy;
},
);
# Special copy
Padre::Wx::Action->new(
name => 'edit.copy_filename',
need_editor => 1,
need_file => 1,
label => _T('Copy Full &Filename'),
comment => _T('Put the full path of the current file in the clipboard'),
menu_event => sub {
my $current = $_[0]->current;
my $editor = $current->editor or return;
my $document = $current->document;
return unless defined $document->{file};
$editor->put_text_to_clipboard( $document->{file}->{filename} );
},
);
Padre::Wx::Action->new(
name => 'edit.copy_basename',
need_editor => 1,
need_file => 1,
label => _T('Copy F&ilename'),
comment => _T('Put the name of the current file in the clipboard'),
menu_event => sub {
my $current = $_[0]->current;
my $editor = $current->editor or return;
my $document = $current->document;
return unless defined $document->{file};
$editor->put_text_to_clipboard( $document->{file}->basename );
},
);
Padre::Wx::Action->new(
name => 'edit.copy_dirname',
need_file => 1,
need_editor => 1,
label => _T('Copy &Directory Name'),
comment => _T('Put the full path of the directory of the current file in the clipboard'),
menu_event => sub {
my $current = $_[0]->current;
my $editor = $current->editor or return;
my $document = $current->document;
return unless defined $document->{file};
$editor->put_text_to_clipboard( $document->{file}->dirname );
},
);
Padre::Wx::Action->new(
name => 'edit.copy_content',
need_editor => 1,
label => _T('Copy Editor &Content'),
comment => _T('Put the content of the current document in the clipboard'),
menu_event => sub {
my $current = $_[0]->current;
my $editor = $current->editor or return;
my $document = $current->document;
return unless defined $document->{file};
$editor->put_text_to_clipboard( $document->text_get );
},
);
# Paste
Padre::Wx::Action->new(
name => 'edit.paste',
need_editor => 1,
id => Wx::ID_PASTE,
label => _T('&Paste'),
comment => _T('Paste the clipboard to the current location'),
shortcut => 'Ctrl-V',
toolbar => 'actions/edit-paste',
menu_event => sub {
my $editor = $_[0]->current->editor or return;
$editor->Paste;
},
);
# Miscellaneous Actions
lib/Padre/Wx/Constant.pm view on Meta::CPAN
wxMOD_CMD
wxMOD_ALL
wxNOT_FOUND
:aui
:bitmap
:button
:bookctrl
:brush
:checkbox
:choicebook
:clipboard
:collapsiblepane
:colour
:combobox
:comboctrl
:constraints
:control
:dc
:dialog
:dirctrl
:dirdialog
lib/Padre/Wx/Dialog/Advanced.pm view on Meta::CPAN
}
);
Wx::Event::EVT_RADIOBUTTON(
$self,
$self->{false},
sub {
shift->_on_radiobutton(@_);
}
);
# Copy everything to clipboard
Wx::Event::EVT_MENU(
$self,
$self->{copy},
sub {
shift->_on_copy_to_clipboard( @_, COPY_ALL );
}
);
# Copy name to clipboard
Wx::Event::EVT_MENU(
$self,
$self->{copy_name},
sub {
shift->_on_copy_to_clipboard( @_, COPY_NAME );
}
);
# Copy value to clipboard
Wx::Event::EVT_MENU(
$self,
$self->{copy_value},
sub {
shift->_on_copy_to_clipboard( @_, COPY_VALUE );
}
);
# Set button
Wx::Event::EVT_BUTTON(
$self,
$self->{button_set},
sub {
shift->_on_set_button;
}
lib/Padre/Wx/Dialog/Advanced.pm view on Meta::CPAN
$self,
$self->{button_cancel},
sub {
shift->EndModal(Wx::ID_CANCEL);
}
);
return;
}
# Private method to copy preferences to clipboard
sub _on_copy_to_clipboard {
my ( $self, $event, $action ) = @_;
my $list = $self->{list};
my $name = $list->GetItemText( $list->GetFirstSelected );
my $pref = $self->{preferences}->{$name};
my $text;
if ( $action == COPY_ALL ) {
$text = $name . ';' . $self->_status_name($pref) . ';' . $pref->{type_name} . ';' . $pref->{value};
} elsif ( $action == COPY_NAME ) {
lib/Padre/Wx/Dialog/OpenResource.pm view on Meta::CPAN
$self,
-1,
Padre::Wx::Icon::find("places/stock_folder")
);
$self->{copy_button} = Wx::BitmapButton->new(
$self,
-1,
Padre::Wx::Icon::find("actions/edit-copy"),
);
$self->{copy_button}->SetToolTip( Wx::gettext('Copy filename to clipboard') );
$self->{popup_menu} = Wx::Menu->new;
$self->{skip_vcs_files} = $self->{popup_menu}->AppendCheckItem(
-1,
Wx::gettext("Skip version control system files"),
);
$self->{skip_using_manifest_skip} = $self->{popup_menu}->AppendCheckItem(
-1,
Wx::gettext("Skip using MANIFEST.SKIP"),
);
lib/Padre/Wx/Editor.pm view on Meta::CPAN
LIGHT_BLUE,
);
$self->MarkerDefine(
Padre::Constant::MARKER_DELETED,
Wx::Scintilla::SC_MARK_MINUS,
LIGHT_RED,
LIGHT_RED,
);
# CTRL-L or line cut should only work when there is no empty line
# This prevents the accidental destruction of the clipboard
$self->CmdKeyClear( ord('L'), Wx::Scintilla::SCMOD_CTRL );
# Disable CTRL keypad -/+. These seem to emit wrong scan codes
# on some laptop keyboards. (e.g. CTRL-Caps lock is the same as CTRL -)
# Please see bug #790
$self->CmdKeyClear( Wx::Scintilla::SCK_SUBTRACT, Wx::Scintilla::SCMOD_CTRL );
$self->CmdKeyClear( Wx::Scintilla::SCK_ADD, Wx::Scintilla::SCMOD_CTRL );
# Setup the editor indicators which we will use in smart, warning and error highlighting
# Indicator #0: Green round box indicator for smart highlighting
lib/Padre/Wx/Editor.pm view on Meta::CPAN
sub on_left_up {
my $self = shift;
my $event = shift;
my $config = $self->config;
my $text = $self->GetSelectedText;
if ( Wx::GTK and defined $text and $text ne '' ) {
# Only on X11 based platforms
# if ( $config->mid_button_paste ) {
# $self->put_text_to_clipboard( $text, 1 );
# } else {
# $self->put_text_to_clipboard($text);
# }
}
my $doc = $self->document;
if ( $doc and $doc->can('event_on_left_up') ) {
$doc->event_on_left_up( $self, $event );
}
# Keep processing
$event->Skip(1);
lib/Padre/Wx/Editor.pm view on Meta::CPAN
sub Copy {
my $self = shift;
$self->{internal_copy} = $self->GetSelectedText;
return $self->SUPER::Copy(@_);
}
sub CanPaste {
my $self = shift;
return 1 if $self->{internal_copy};
return 0 unless $self->SUPER::CanPaste;
return 0 unless $self->clipboard_length;
return 1;
}
sub Paste {
my $self = shift;
# Workaround for Copy/Paste bug ticket #390
my $text = $self->get_text_from_clipboard;
if ($text) {
# Conversion of pasted text is really needed since it usually comes
# with the platform's line endings
#
# Please see ticket:589, "Pasting in a UNIX document in win32
# corrupts it to MIXEd"
$self->ReplaceSelection( $self->_convert_paste_eols($text) );
} else {
lib/Padre/Wx/Editor.pm view on Meta::CPAN
}
######################################################################
# Clipboard Methods
# This is not necesarily the right place for these, since things other
# than editors might want to make use of the clipboard.
# But it will do for now as a starting point.
=pod
=head2 clipboard_length
my $chars = Padre::Wx::Editor->clipboard_length;
The C<clipboard_length> method returns the number of characters of text
currently in the clipboard, if any.
Returns an integer number of characters, or zero if the clipboard is empty
or contains non-text data.
=cut
sub clipboard_length {
my $class = shift;
my $chars = 0;
Wx::TheClipboard->Open;
if ( Wx::TheClipboard->IsSupported(Wx::DF_TEXT) ) {
my $data = Wx::TextDataObject->new;
if ( Wx::TheClipboard->GetData($data) ) {
$chars = $data->GetTextLength if defined $data;
}
}
Wx::TheClipboard->Close;
return $chars;
}
# TODO Change this to clipboard_set
sub put_text_to_clipboard {
my ( $self, $text, $clipboard ) = @_;
@_ = (); # Feeble attempt to kill Scalars Leaked
return if $text eq '';
my $config = $self->config;
$clipboard ||= 0;
# Backup last clipboard value:
$self->{Clipboard_Old} = $self->get_text_from_clipboard;
# if $self->{Clipboard_Old} ne $self->get_text_from_clipboard;
Wx::TheClipboard->Open;
# Wx::TheClipboard->UsePrimarySelection($clipboard)
# if $config->mid_button_paste;
Wx::TheClipboard->SetData( Wx::TextDataObject->new($text) );
Wx::TheClipboard->Close;
return;
}
# TODO Change this to clipboard_text
sub get_text_from_clipboard {
my $self = shift;
my $text = '';
Wx::TheClipboard->Open;
if ( Wx::TheClipboard->IsSupported(Wx::DF_TEXT) ) {
my $data = Wx::TextDataObject->new;
if ( Wx::TheClipboard->GetData($data) ) {
$text = $data->GetText if defined $data;
}
}
if ( $text eq $self->GetSelectedText ) {
share/locale/ar.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:619
msgid "Remove all the selection marks"
msgstr "ازاÙÙ ÙÙ Ø¹ÙØ§Ù
ات Ø§ÙØ§Ø®ØªÙار"
#: lib/Padre/Wx/ActionLibrary.pm:633
msgid "Cu&t"
msgstr "ÙØµ&"
#: lib/Padre/Wx/ActionLibrary.pm:634
msgid "Remove the current selection and put it in the clipboard"
msgstr "Ø¥Ø²Ø§ÙØ© Ø§ÙØ§Ø®ØªÙار Ø§ÙØØ§ÙÙ ÙÙØ¶Ø¹Ù ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: lib/Padre/Wx/ActionLibrary.pm:648
msgid "&Copy"
msgstr "ÙØ³Ø®&"
#: lib/Padre/Wx/ActionLibrary.pm:649
msgid "Put the current selection in the clipboard"
msgstr "ÙØ¶Ø¹ Ø§ÙØ§Ø®ØªÙار Ø§ÙØØ§ÙÙ ÙÙ Ø§ÙØØ§ÙØ¸Ø©"
#: lib/Padre/Wx/ActionLibrary.pm:664
#, fuzzy
msgid "Copy Full Filename"
msgstr "ÙØ³Ø® اسÙ
اÙÙ
Ù٠اÙÙØ§Ù
Ù"
#: lib/Padre/Wx/ActionLibrary.pm:665
msgid "Put the full path of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:678
#, fuzzy
msgid "Copy Filename"
msgstr "ÙØ³Ø® اسÙ
اÙÙ
ÙÙ"
#: lib/Padre/Wx/ActionLibrary.pm:679
msgid "Put the name of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:692
#, fuzzy
msgid "Copy Directory Name"
msgstr "ÙØ³Ø® اسÙ
Ø§ÙØ¯ÙÙÙ"
#: lib/Padre/Wx/ActionLibrary.pm:693
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:705
#, fuzzy
msgid "Copy Editor Content"
msgstr "ÙØ³Ø® Ù
ØØªÙ٠اÙÙ
ØØ±Ø±"
#: lib/Padre/Wx/ActionLibrary.pm:706
msgid "Put the content of the current document in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:721
msgid "&Paste"
msgstr "ÙØµÙ&"
#: lib/Padre/Wx/ActionLibrary.pm:722
msgid "Paste the clipboard to the current location"
msgstr "ÙØµÙ Ø§ÙØØ§ÙØ¸Ø© Ø¥Ù٠اÙÙ
ÙÙØ¹ Ø§ÙØØ§ÙÙ"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "&Go To..."
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:736
msgid "Jump to a specific line number or character position"
msgstr ""
share/locale/cz.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:626
#, fuzzy
msgid "Remove all the selection marks"
msgstr "Smaž oznaÄovacà znaménka"
#: lib/Padre/Wx/ActionLibrary.pm:640
msgid "Cu&t"
msgstr "Vyjmi"
#: lib/Padre/Wx/ActionLibrary.pm:641
msgid "Remove the current selection and put it in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:655
#, fuzzy
msgid "&Copy"
msgstr "KopÃruj"
#: lib/Padre/Wx/ActionLibrary.pm:656
msgid "Put the current selection in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:671
#, fuzzy
msgid "Copy Full Filename"
msgstr "Žádný soubor"
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Put the full path of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:685
#, fuzzy
msgid "Copy Filename"
msgstr "Žádný soubor"
#: lib/Padre/Wx/ActionLibrary.pm:686
msgid "Put the name of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:699
#, fuzzy
msgid "Copy Directory Name"
msgstr "Zobraz strom adresáÅů"
#: lib/Padre/Wx/ActionLibrary.pm:700
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:712
#, fuzzy
msgid "Copy Editor Content"
msgstr "Font editoru:"
#: lib/Padre/Wx/ActionLibrary.pm:713
msgid "Put the content of the current document in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:728
#, fuzzy
msgid "&Paste"
msgstr "Vlož"
#: lib/Padre/Wx/ActionLibrary.pm:729
msgid "Paste the clipboard to the current location"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:742
msgid "&Go To..."
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:743
msgid "Jump to a specific line number or character position"
msgstr ""
share/locale/de.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "Name kopieren"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "Wert kopieren"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "Dateiname in die Zwischenablage kopieren"
#: lib/Padre/Wx/ActionLibrary.pm:360
msgid "Copy the current tab into a new document"
msgstr "Inhalt des aktuellen Reiters in ein Dokument kopieren"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/de.po view on Meta::CPAN
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "Passwort für Benutzer '%s' auf %s:"
#: lib/Padre/Wx/FBP/Sync.pm:89 lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr "Passwort:"
#: lib/Padre/Wx/ActionLibrary.pm:766
msgid "Paste the clipboard to the current location"
msgstr "Inhalt Zwischenablage an der momentanen Position einfügen"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "Patch"
#: lib/Padre/Wx/Dialog/Patch.pm:407
msgid ""
"Patch file should end in .patch or .diff, you should reselect & try again"
msgstr ""
share/locale/de.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2354
msgid "Put focus on the next tab to the right"
msgstr "Den nächsten (rechter Nachbar) Reiter auswählen"
#: lib/Padre/Wx/ActionLibrary.pm:2365
msgid "Put focus on the previous tab to the left"
msgstr "Den vorherigen (linker Nachbar) Reiter auswählen"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Put the content of the current document in the clipboard"
msgstr "Aktuelles Dokument in die Zwischenablage kopieren"
#: lib/Padre/Wx/ActionLibrary.pm:689
msgid "Put the current selection in the clipboard"
msgstr "Die aktuelle Auswahl in die Zwischenanlage kopieren"
#: lib/Padre/Wx/ActionLibrary.pm:705
msgid "Put the full path of the current file in the clipboard"
msgstr "Den vollen Pfad der aktuellen Datei in die Zwischenablage kopieren"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr ""
"Vollen Pfad und Dateinamen der aktuellen Datei in die Zwischenablage kopieren"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the name of the current file in the clipboard"
msgstr "Den Dateinamen der aktuellen Datei in die Zwischenablage kopieren"
#: lib/Padre/Wx/Main.pm:4411
msgid "Python Files"
msgstr "Python-Dateien"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "Menü-Schnellzugriff"
share/locale/de.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:659
msgid "Remove all the selection marks"
msgstr "Alle Auswahl-Markierungen entfernen"
#: lib/Padre/Wx/ActionLibrary.pm:969
msgid "Remove comment for selected lines or the current line"
msgstr "Ausgewählte Zeilen bzw. aktuelle Zeile wieder einkommentieren"
#: lib/Padre/Wx/ActionLibrary.pm:674
msgid "Remove the current selection and put it in the clipboard"
msgstr "Aktuelle Auswahl ausschneiden und in die Zwischenablage kopieren"
#: lib/Padre/Wx/ActionLibrary.pm:533
msgid "Remove the entries from the recent files list"
msgstr "Aktuelle Datei von der Liste der kürzlich geöffneten Dateien löschen"
#: lib/Padre/Wx/ActionLibrary.pm:1064
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "Leerzeichen am Anfang der ausgewählten Zeilen entfernen"
share/locale/es-es.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "Copiar nombre"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "Copiar valor"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "Copiar nombre de archivo al portapapeles"
#: lib/Padre/Wx/ActionLibrary.pm:360
msgid "Copy the current tab into a new document"
msgstr "Copiar la pestaña actual a un documento nuevo"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/es-es.po view on Meta::CPAN
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "Contraseña para el usuario '%s' en %s:"
#: lib/Padre/Wx/FBP/Sync.pm:89 lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr "Contraseña:"
#: lib/Padre/Wx/ActionLibrary.pm:766
msgid "Paste the clipboard to the current location"
msgstr "Pega el contenido del portapapeles en la ubicación actual"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "Revisión"
#: lib/Padre/Wx/Dialog/Patch.pm:407
msgid ""
"Patch file should end in .patch or .diff, you should reselect & try again"
msgstr "El nombre de un archivo de revisión debe tener la extensión .patch o .diff; vuelva a seleccionarlo e inténtelo de nuevo"
share/locale/es-es.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2354
msgid "Put focus on the next tab to the right"
msgstr "Establece el foco en la pestaña siguiente a la derecha"
#: lib/Padre/Wx/ActionLibrary.pm:2365
msgid "Put focus on the previous tab to the left"
msgstr "Establece el foco en la pestaña anterior a la izquierda"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Put the content of the current document in the clipboard"
msgstr "Coloca el contenido del documento actual en el portapapeles"
#: lib/Padre/Wx/ActionLibrary.pm:689
msgid "Put the current selection in the clipboard"
msgstr "Coloca la selección actual en el portapapeles"
#: lib/Padre/Wx/ActionLibrary.pm:705
msgid "Put the full path of the current file in the clipboard"
msgstr "Coloca la ruta de acceso completa del archivo actual en el portapapeles"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Coloca la ruta de acceso completa del directorio del archivo actual en el portapapeles"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the name of the current file in the clipboard"
msgstr "Coloca el nombre del archivo actual en el portapapeles"
#: lib/Padre/Wx/Main.pm:4411
msgid "Python Files"
msgstr "Archivos Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "Acceso rápido al menú"
share/locale/es-es.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:659
msgid "Remove all the selection marks"
msgstr "Quita todas las marcas de selección"
#: lib/Padre/Wx/ActionLibrary.pm:969
msgid "Remove comment for selected lines or the current line"
msgstr "Quita las marcas de comentario de las lÃneas seleccionadas o de la lÃnea actual"
#: lib/Padre/Wx/ActionLibrary.pm:674
msgid "Remove the current selection and put it in the clipboard"
msgstr "Quita la selección actual y la coloca en el portapapeles"
#: lib/Padre/Wx/ActionLibrary.pm:533
msgid "Remove the entries from the recent files list"
msgstr "Quita las entradas de la lista de archivos recientes"
#: lib/Padre/Wx/ActionLibrary.pm:1064
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "Quita los espacios iniciales de las lÃneas seleccionadas"
share/locale/fr.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "Copier le nom"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "Copier la valeur"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "Copie le nom de fichier dans le presse-papier"
#: lib/Padre/Wx/ActionLibrary.pm:360
msgid "Copy the current tab into a new document"
msgstr "Copier le document courant dans un nouvel onglet"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/fr.po view on Meta::CPAN
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "Mot de passe pour l'utilisateur '%s' sur '%s' :"
#: lib/Padre/Wx/FBP/Sync.pm:89
#: lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr "Mot de passe :"
#: lib/Padre/Wx/ActionLibrary.pm:766
msgid "Paste the clipboard to the current location"
msgstr "Coller le contenu du presse-papier à la position courante"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "Patch"
#: lib/Padre/Wx/Dialog/Patch.pm:411
msgid "Patch file should end in .patch or .diff, you should reselect & try again"
msgstr "Le fichier patch devrait avoir un suffixe .patch ou .diff."
share/locale/fr.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2354
msgid "Put focus on the next tab to the right"
msgstr "Mettre le focus sur l'onglet de droite"
#: lib/Padre/Wx/ActionLibrary.pm:2365
msgid "Put focus on the previous tab to the left"
msgstr "Mettre le focus sur l'onglet de gauche"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Put the content of the current document in the clipboard"
msgstr "Copier le document courant dans le presse-papier"
#: lib/Padre/Wx/ActionLibrary.pm:689
msgid "Put the current selection in the clipboard"
msgstr "Copier la sélection courante dans le presse-papier"
#: lib/Padre/Wx/ActionLibrary.pm:705
msgid "Put the full path of the current file in the clipboard"
msgstr "Copier le chemin complet du fichier courant dans le presse-papier"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Copier le chemin complet du répertoire du fichier courant dans le presse-papier"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the name of the current file in the clipboard"
msgstr "Copier le nom du fichier courant dans le presse-papier"
#: lib/Padre/Wx/Main.pm:4421
msgid "Python Files"
msgstr "Fichiers Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "Accès menu rapide"
share/locale/fr.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:659
msgid "Remove all the selection marks"
msgstr "Effacer toutes les marques de sélection"
#: lib/Padre/Wx/ActionLibrary.pm:969
msgid "Remove comment for selected lines or the current line"
msgstr "Décommenter les lignes sélectionnées dans le document"
#: lib/Padre/Wx/ActionLibrary.pm:674
msgid "Remove the current selection and put it in the clipboard"
msgstr "Supprimer la sélection courante et la placer dans le presse-papier"
#: lib/Padre/Wx/ActionLibrary.pm:533
msgid "Remove the entries from the recent files list"
msgstr "Vider la liste des fichiers récemment ouverts"
#: lib/Padre/Wx/ActionLibrary.pm:1064
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "Supprimer les espaces au début des lignes sélectionnées"
share/locale/he.po view on Meta::CPAN
#: lib/Padre/Wx/Menu/Edit.pm:90
msgid "Copy Specials"
msgstr "×עתק Specials"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "×עתק ער×"
#: lib/Padre/Wx/Dialog/OpenResource.pm:262
msgid "Copy filename to clipboard"
msgstr "×עתק ×©× ××§×××¥ ××××"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:163
#, perl-format
msgid "Could not create: '%s': %s"
msgstr "×× × ××ª× ××צ×ר: '%s': %s"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:182
#, perl-format
msgid "Could not delete: '%s': %s"
share/locale/he.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Sync.pm:527
msgid "Password and confirmation do not match."
msgstr "\"ס×ס××\" ×- \"××ש×ר\" ××× × ×ª×××××"
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "ס×ס×× ××שת×ש %s ×- %s : "
#: lib/Padre/Wx/ActionLibrary.pm:729
msgid "Paste the clipboard to the current location"
msgstr "××××§ ×ת ×××× ××××§×× ×× ××××"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:392
msgid "Perl"
msgstr "Perl"
#: lib/Padre/Wx/WizardLibrary.pm:21
msgid "Perl 5"
msgstr "Perl 5"
share/locale/he.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2419
msgid "Put focus on the next tab to the right"
msgstr "××¢×ר ×ת ××××§×× ××ש×× ×ת ×××× ××¦× ××××"
#: lib/Padre/Wx/ActionLibrary.pm:2430
msgid "Put focus on the previous tab to the left"
msgstr "××¢×ר ×ת ××××§×× ××ש×× ×ת ××§×××ת ×ש×××"
#: lib/Padre/Wx/ActionLibrary.pm:713
msgid "Put the content of the current document in the clipboard"
msgstr "ש×× ×ת ת××× ××ס××£ ×× ×××× ××××"
#: lib/Padre/Wx/ActionLibrary.pm:656
msgid "Put the current selection in the clipboard"
msgstr "ש×× ×ת ×××××¨× ×× ××××ת ××××"
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Put the full path of the current file in the clipboard"
msgstr "ש×× ×ת ××ס××× ×××× ×©× ××§×××¥ ×× ×××× ××××"
#: lib/Padre/Wx/ActionLibrary.pm:700
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "ש×× ×ת ××ס××× ×××× ×©× ×ת××§×× ×× ××××ת ××××"
#: lib/Padre/Wx/ActionLibrary.pm:686
msgid "Put the name of the current file in the clipboard"
msgstr "ש×× ×ת ×©× ××§×××¥ ×× ×××× ××××"
#: lib/Padre/Wx/Main.pm:3917
msgid "Python Files"
msgstr "×§××¦× Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:40
msgid "Quick Menu Access"
msgstr "×××©× ××××¨× ×תפר××"
share/locale/he.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:928
msgid "Remove comment out of selected lines in the document"
msgstr "×סר ××¢×¨× ×¢× ×ש×ר×ת ×× ××ר×ת ××ס××"
#: lib/Padre/Wx/ActionLibrary.pm:2087
#, fuzzy
msgid "Remove the breakpoint at the current location of the cursor"
msgstr "ש×× ×ת ת××× ××ס××£ ×× ×××× ××××"
#: lib/Padre/Wx/ActionLibrary.pm:641
msgid "Remove the current selection and put it in the clipboard"
msgstr "×סר ×ת ×××××¨× ×× ××××ת ×ש×× ×××ª× ××××"
#: lib/Padre/Wx/ActionLibrary.pm:510
msgid "Remove the entries from the recent files list"
msgstr "×סר פר××× ×רש××ת ××§×צ×× ×××ר×× ××"
#: lib/Padre/Wx/ActionLibrary.pm:1036
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "×סר ×ת ×ר××××× ×ת×××ת ×ש×ר×ת ×× ××ר×ת"
share/locale/hu.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:626
msgid "Remove all the selection marks"
msgstr "Minden kijelölési jelzés törlése"
#: lib/Padre/Wx/ActionLibrary.pm:640
msgid "Cu&t"
msgstr "Ki&vágás"
#: lib/Padre/Wx/ActionLibrary.pm:641
msgid "Remove the current selection and put it in the clipboard"
msgstr "Törli az aktuális kijelölést és a vágólapra teszi"
#: lib/Padre/Wx/ActionLibrary.pm:655
msgid "&Copy"
msgstr "&Másolás"
#: lib/Padre/Wx/ActionLibrary.pm:656
msgid "Put the current selection in the clipboard"
msgstr "Az aktuális kijelölést a vágólapra teszi"
#: lib/Padre/Wx/ActionLibrary.pm:671
msgid "Copy Full Filename"
msgstr "Teljes Fájlnév másolása"
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Put the full path of the current file in the clipboard"
msgstr "Az aktuális fájl nevét a teljes elérési útjával a vágólapra teszi"
#: lib/Padre/Wx/ActionLibrary.pm:685
msgid "Copy Filename"
msgstr "Fájlnév Másolása"
#: lib/Padre/Wx/ActionLibrary.pm:686
msgid "Put the name of the current file in the clipboard"
msgstr "Az aktuális fájl nevét a vágólapra teszi"
#: lib/Padre/Wx/ActionLibrary.pm:699
msgid "Copy Directory Name"
msgstr "Könyvtárnév másolása"
#: lib/Padre/Wx/ActionLibrary.pm:700
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Az aktuális fájlt tartalmazó könyvtárt a teljes elérési útjával a vágólapra teszi"
#: lib/Padre/Wx/ActionLibrary.pm:712
msgid "Copy Editor Content"
msgstr "SzerkesztŠtartalmának másolása"
#: lib/Padre/Wx/ActionLibrary.pm:713
msgid "Put the content of the current document in the clipboard"
msgstr "Az aktuális dokumentum tartalmát a vágólapra teszi"
#: lib/Padre/Wx/ActionLibrary.pm:728
msgid "&Paste"
msgstr "&Beillesztés"
#: lib/Padre/Wx/ActionLibrary.pm:729
msgid "Paste the clipboard to the current location"
msgstr "Bemásolja a vágólap tartalmát az aktuális pozÃcióba"
#: lib/Padre/Wx/ActionLibrary.pm:742
msgid "&Go To..."
msgstr "&Menj..."
#: lib/Padre/Wx/ActionLibrary.pm:743
msgid "Jump to a specific line number or character position"
msgstr "Egy megadott sorra vagy karakter-pozÃcióra ugrik"
share/locale/it-it.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "Copia il nome"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "Copia il valore"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "Copia il nome file negli appunti"
#: lib/Padre/Wx/ActionLibrary.pm:360
msgid "Copy the current tab into a new document"
msgstr "Copia la scheda corrente in un nuovo documento"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/it-it.po view on Meta::CPAN
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "Password dell'utente '%s' a %s:"
#: lib/Padre/Wx/FBP/Sync.pm:89
#: lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr "Password:"
#: lib/Padre/Wx/ActionLibrary.pm:766
msgid "Paste the clipboard to the current location"
msgstr "Incolla gli appunti nella posizione corrente"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "Patch"
#: lib/Padre/Wx/Dialog/Patch.pm:407
msgid "Patch file should end in .patch or .diff, you should reselect & try again"
msgstr "I file patch dovrebbero terminare con .patch o .diff, dovreste riselezionarli e provare di nuovo"
share/locale/it-it.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2354
msgid "Put focus on the next tab to the right"
msgstr "Imposta il focus sulla scheda successiva sulla destra"
#: lib/Padre/Wx/ActionLibrary.pm:2365
msgid "Put focus on the previous tab to the left"
msgstr "Imposta il focus sulla scheda successiva sulla sinistra"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Put the content of the current document in the clipboard"
msgstr "Metti il contenuto del documento corrente negli appunti"
#: lib/Padre/Wx/ActionLibrary.pm:689
msgid "Put the current selection in the clipboard"
msgstr "Mette negli appunti la selezione corrente "
#: lib/Padre/Wx/ActionLibrary.pm:705
msgid "Put the full path of the current file in the clipboard"
msgstr "Mette negli appunti il percorso completo del file corrente"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Mette negli appunti il percorso completo della cartella che contiene il file corrente"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the name of the current file in the clipboard"
msgstr "Mette negli appunti il nome del file corrente"
#: lib/Padre/Wx/Main.pm:4411
msgid "Python Files"
msgstr "File Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "Accesso rapido al menu"
share/locale/it-it.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:659
msgid "Remove all the selection marks"
msgstr "Rimuovi tutti gli indicatori di selezione"
#: lib/Padre/Wx/ActionLibrary.pm:969
msgid "Remove comment for selected lines or the current line"
msgstr "Rimuove il commento dalle righe selezionate o da quella corrente"
#: lib/Padre/Wx/ActionLibrary.pm:674
msgid "Remove the current selection and put it in the clipboard"
msgstr "Rimuove la selezione corrente e la mette negli appunti"
#: lib/Padre/Wx/ActionLibrary.pm:533
msgid "Remove the entries from the recent files list"
msgstr "Rimuovi gli elementi dell'elenco dei file recenti"
#: lib/Padre/Wx/ActionLibrary.pm:1064
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "Rimuove gli spazi al'inizio della riga selezionata"
share/locale/ja.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "ååãã³ãã¼"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "å¤ãã³ãã¼"
#: lib/Padre/Wx/Dialog/OpenResource.pm:259
msgid "Copy filename to clipboard"
msgstr "ãã¡ã¤ã«åãã¯ãªãããã¼ãã«ã³ãã¼"
#: lib/Padre/Wx/ActionLibrary.pm:357
msgid "Copy the current tab into a new document"
msgstr "ç¾å¨ã®ã¿ããæ°è¦ããã¥ã¡ã³ãã«ã³ãã¼"
#: lib/Padre/Wx/FBP/About.pm:113
msgid ""
"Copyright 2008â2011 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/ja.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Sync.pm:152
msgid "Password and confirmation do not match."
msgstr "ãã¹ã¯ã¼ããä¸è´ãã¾ãã"
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:753
msgid "Paste the clipboard to the current location"
msgstr "ã¯ãªãããã¼ãã®å
容ãç¾å¨ã®ä½ç½®ã«è²¼ãä»ãã"
#: lib/Padre/Wx/FBP/Patch.pm:28
msgid "Patch"
msgstr "ããã"
#: lib/Padre/Wx/Dialog/Patch.pm:419
msgid "Patch file should end in .patch or .diff, you should reselect & try again"
msgstr ""
share/locale/ja.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2449
msgid "Put focus on the next tab to the right"
msgstr "å³é£ã®ã¿ãã«ãã©ã¼ã«ã¹ãç§»ã"
#: lib/Padre/Wx/ActionLibrary.pm:2460
msgid "Put focus on the previous tab to the left"
msgstr "å·¦é£ã®ã¿ãã«ãã©ã¼ã«ã¹ãç§»ã"
#: lib/Padre/Wx/ActionLibrary.pm:736
msgid "Put the content of the current document in the clipboard"
msgstr "ç¾å¨ã®ããã¥ã¡ã³ãã®å
容ãã¯ãªãããã¼ãã«å
¥ãã"
#: lib/Padre/Wx/ActionLibrary.pm:676
msgid "Put the current selection in the clipboard"
msgstr "ç¾å¨ã®é¸æç¯å²ãã¯ãªãããã¼ãã«å
¥ãã"
#: lib/Padre/Wx/ActionLibrary.pm:692
msgid "Put the full path of the current file in the clipboard"
msgstr "ç¾å¨ã®ãã¡ã¤ã«ã®å®å
¨ãã¹åãã¯ãªãããã¼ãã«å
¥ãã"
#: lib/Padre/Wx/ActionLibrary.pm:722
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "ç¾å¨ã®ãã¡ã¤ã«ããããã£ã¬ã¯ããªã®å®å
¨ãã¹åãã¯ãªãããã¼ãã«å
¥ãã"
#: lib/Padre/Wx/ActionLibrary.pm:707
msgid "Put the name of the current file in the clipboard"
msgstr "ç¾å¨ã®ãã¡ã¤ã«åãã¯ãªãããã¼ãã«å
¥ãã"
#: lib/Padre/Wx/Main.pm:4353
msgid "Python Files"
msgstr "Pythonãã¡ã¤ã«"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:41
msgid "Quick Menu Access"
msgstr "ã¯ã¤ãã¯ã¡ãã¥ã¼ã¢ã¯ã»ã¹"
share/locale/ja.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:958
msgid "Remove comment for selected lines or the current line"
msgstr "鏿ããè¡ãªããç¾å¨ã®è¡ã®ã³ã¡ã³ããå¤ã"
#: lib/Padre/Wx/ActionLibrary.pm:2145
msgid "Remove the breakpoint at the current location of the cursor"
msgstr "ã«ã¼ã½ã«ã®ç¾å¨ä½ç½®ã«ãããã¬ã¼ã¯ãã¤ã³ããåé¤ãã"
#: lib/Padre/Wx/ActionLibrary.pm:661
msgid "Remove the current selection and put it in the clipboard"
msgstr "ç¾å¨ã®é¸æç¯å²ãåé¤ãã¦ã¯ãªãããã¼ãã«ç§»ã"
#: lib/Padre/Wx/ActionLibrary.pm:530
msgid "Remove the entries from the recent files list"
msgstr "æè¿ä½¿ã£ããã¡ã¤ã«ä¸è¦§ããã¨ã³ããªãåé¤ãã"
#: lib/Padre/Wx/ActionLibrary.pm:1053
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "鏿ããè¡é ã®ç©ºç½ãåé¤ãã"
share/locale/messages.pot view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr ""
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr ""
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:373
msgid "Copy the current tab into a new document"
msgstr ""
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/messages.pot view on Meta::CPAN
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr ""
#: lib/Padre/Wx/FBP/Sync.pm:89 lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:779
msgid "Paste the clipboard to the current location"
msgstr ""
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr ""
#: lib/Padre/Wx/Dialog/Patch.pm:411
msgid ""
"Patch file should end in .patch or .diff, you should reselect & try again"
msgstr ""
share/locale/messages.pot view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2367
msgid "Put focus on the next tab to the right"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:2378
msgid "Put focus on the previous tab to the left"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:762
msgid "Put the content of the current document in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:702
msgid "Put the current selection in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:718
msgid "Put the full path of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:748
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:733
msgid "Put the name of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/Main.pm:4426
msgid "Python Files"
msgstr ""
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr ""
share/locale/messages.pot view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Remove all the selection marks"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:982
msgid "Remove comment for selected lines or the current line"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:687
msgid "Remove the current selection and put it in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:546
msgid "Remove the entries from the recent files list"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:1077
msgid "Remove the spaces from the beginning of the selected lines"
msgstr ""
share/locale/nl-nl.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:626
msgid "Remove all the selection marks"
msgstr "Wis alle selectie-markeringen"
#: lib/Padre/Wx/ActionLibrary.pm:640
msgid "Cu&t"
msgstr "K&nippen"
#: lib/Padre/Wx/ActionLibrary.pm:641
msgid "Remove the current selection and put it in the clipboard"
msgstr "Verwijder de huidige selectie en plaats deze in het klembord"
#: lib/Padre/Wx/ActionLibrary.pm:655
msgid "&Copy"
msgstr "&Kopiëren"
#: lib/Padre/Wx/ActionLibrary.pm:656
msgid "Put the current selection in the clipboard"
msgstr "Plaats de huidige selectie in het klembord"
#: lib/Padre/Wx/ActionLibrary.pm:671
msgid "Copy Full Filename"
msgstr "Kopiëer volledige bestandsnaam"
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Put the full path of the current file in the clipboard"
msgstr "Plaats het volledige pad van het huidige bestand in het klembord"
#: lib/Padre/Wx/ActionLibrary.pm:685
msgid "Copy Filename"
msgstr "Kopiëer bestandsnaam"
#: lib/Padre/Wx/ActionLibrary.pm:686
msgid "Put the name of the current file in the clipboard"
msgstr "Plaats de naam van het huidige bestand in het klembord"
#: lib/Padre/Wx/ActionLibrary.pm:699
msgid "Copy Directory Name"
msgstr "Kopiëer mapnaam"
#: lib/Padre/Wx/ActionLibrary.pm:700
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Plaats het volledige folderpad van het huidige bestand in het klembord"
#: lib/Padre/Wx/ActionLibrary.pm:712
msgid "Copy Editor Content"
msgstr "Copy editor inhoud"
#: lib/Padre/Wx/ActionLibrary.pm:713
msgid "Put the content of the current document in the clipboard"
msgstr "Plaats de inhoud van het huidige document in het klembord"
#: lib/Padre/Wx/ActionLibrary.pm:728
msgid "&Paste"
msgstr "&Plakken"
#: lib/Padre/Wx/ActionLibrary.pm:729
msgid "Paste the clipboard to the current location"
msgstr "Plak de klembord-inhoud naar de huidige locatie"
#: lib/Padre/Wx/ActionLibrary.pm:742
msgid "&Go To..."
msgstr "&Ga Naar..."
#: lib/Padre/Wx/ActionLibrary.pm:743
msgid "Jump to a specific line number or character position"
msgstr "Ga naar een specifieke lijnnummer of karakterpositie"
share/locale/pl.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "Kopiuj nazwÄ"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "Kopiuj wartoÅÄ"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "Kopiuj nazwÄ pliku do schowka"
#: lib/Padre/Wx/ActionLibrary.pm:360
msgid "Copy the current tab into a new document"
msgstr "Kopiuj bieżÄ
cÄ
kartÄ jako nowy dokument"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/pl.po view on Meta::CPAN
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "HasÅo użytkownika '%s' na %s:"
#: lib/Padre/Wx/FBP/Sync.pm:89
#: lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr "HasÅo:"
#: lib/Padre/Wx/ActionLibrary.pm:766
msgid "Paste the clipboard to the current location"
msgstr "Wklej zawartoÅÄ schowka do bieżÄ
cej lokalizacji"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "Åatka"
#: lib/Padre/Wx/Dialog/Patch.pm:407
msgid "Patch file should end in .patch or .diff, you should reselect & try again"
msgstr "Plik Åatki powinien mieÄ rozszerzenie .patch lub .diff, powinieneÅ wybraÄ ponownie i spróbowaÄ jeszcze raz"
share/locale/pl.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2354
msgid "Put focus on the next tab to the right"
msgstr "Ustaw kursor na nastÄpnej karcie po prawej"
#: lib/Padre/Wx/ActionLibrary.pm:2365
msgid "Put focus on the previous tab to the left"
msgstr "Ustaw kursor na poprzedniej karcie po lewej"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Put the content of the current document in the clipboard"
msgstr "UmieÅÄ zawartoÅÄ bieżÄ
cego dokumentu w schowku"
#: lib/Padre/Wx/ActionLibrary.pm:689
msgid "Put the current selection in the clipboard"
msgstr "UmieÅÄ bieżÄ
ce zaznaczenie w schowku"
#: lib/Padre/Wx/ActionLibrary.pm:705
msgid "Put the full path of the current file in the clipboard"
msgstr "UmieÅÄ peÅnÄ
ÅcieżkÄ bieżÄ
cego pliku w schowku"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "UmieÅÄ peÅnÄ
ÅcieżkÄ katalogu bieżÄ
cego pliku w schowku"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the name of the current file in the clipboard"
msgstr "UmieÅÄ nazwÄ bieżÄ
cego pliku w schowku"
#: lib/Padre/Wx/Main.pm:4413
msgid "Python Files"
msgstr "Pliki Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "Menu szybkiego dostÄpu"
share/locale/pl.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:659
msgid "Remove all the selection marks"
msgstr "UsuÅ wszystkie uchwyty zaznaczenia"
#: lib/Padre/Wx/ActionLibrary.pm:969
msgid "Remove comment for selected lines or the current line"
msgstr "UsuÅ komentarz z zaznaczonych wierszy lub bieżÄ
cej linii"
#: lib/Padre/Wx/ActionLibrary.pm:674
msgid "Remove the current selection and put it in the clipboard"
msgstr "UsuÅ bieżÄ
ce zaznaczenie i umieÅÄ je w schowku"
#: lib/Padre/Wx/ActionLibrary.pm:533
msgid "Remove the entries from the recent files list"
msgstr "UsuŠpozycje z listy ostatnio używanych plików"
#: lib/Padre/Wx/ActionLibrary.pm:1064
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "UsuÅ spacje na poczÄ
tku zaznaczonych wierszy"
share/locale/pt-br.po view on Meta::CPAN
#: lib/Padre/Wx/Menu/Edit.pm:90
msgid "Copy Specials"
msgstr "Copiar especiais"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "Copiar valor"
#: lib/Padre/Wx/Dialog/OpenResource.pm:262
msgid "Copy filename to clipboard"
msgstr "Copiar nome do arquivo para área de transferência"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:163
#, perl-format
msgid "Could not create: '%s': %s"
msgstr "Não foi possível criar: '%s': %s"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:182
#, perl-format
msgid "Could not delete: '%s': %s"
share/locale/pt-br.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Sync.pm:527
msgid "Password and confirmation do not match."
msgstr "Senha e confirmação não correspondem."
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "Senha para usuário '%s' em %s:"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Paste the clipboard to the current location"
msgstr "Cola o conteúdo da área de transferência na posição atual"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:392
msgid "Perl"
msgstr "Perl"
#: lib/Padre/Wx/WizardLibrary.pm:21
msgid "Perl 5"
msgstr "Perl 5"
share/locale/pt-br.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2440
msgid "Put focus on the next tab to the right"
msgstr "Coloca foco no próximo tab à direita"
#: lib/Padre/Wx/ActionLibrary.pm:2451
msgid "Put focus on the previous tab to the left"
msgstr "Coloca foco no tab anterior à esquerda"
#: lib/Padre/Wx/ActionLibrary.pm:733
msgid "Put the content of the current document in the clipboard"
msgstr "Coloca o conteúdo do documento atual na área de transferência"
#: lib/Padre/Wx/ActionLibrary.pm:676
msgid "Put the current selection in the clipboard"
msgstr "Coloca a seleção atual na área de transferência"
#: lib/Padre/Wx/ActionLibrary.pm:692
msgid "Put the full path of the current file in the clipboard"
msgstr "Coloca o caminho completo do arquivo atual na área de transferência"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Coloca o caminho completo do diretório do arquivo atual na área de transferência"
#: lib/Padre/Wx/ActionLibrary.pm:706
msgid "Put the name of the current file in the clipboard"
msgstr "Coloca o nome do arquivo atual na área de transferência"
#: lib/Padre/Wx/Main.pm:3918
msgid "Python Files"
msgstr "Arquivos Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:40
msgid "Quick Menu Access"
msgstr "Acesso Rápido ao Menu"
share/locale/pt-br.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:948
msgid "Remove comment out of selected lines in the document"
msgstr "Remove comentários das linhas selecionadas do documento"
#: lib/Padre/Wx/ActionLibrary.pm:2107
msgid "Remove the breakpoint at the current location of the cursor"
msgstr "Remove ponto de parada (breakpoint) na linha atual"
#: lib/Padre/Wx/ActionLibrary.pm:661
msgid "Remove the current selection and put it in the clipboard"
msgstr "Remove a seleção atual e a coloca na área de transferência"
#: lib/Padre/Wx/ActionLibrary.pm:530
msgid "Remove the entries from the recent files list"
msgstr "Remove entradas da lista de arquivos recentes"
#: lib/Padre/Wx/ActionLibrary.pm:1053
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "Remove espaços do início das linhas selecionadas"
share/locale/ru.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "ÐопиÑоваÑÑ Ð¸Ð¼Ñ"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "ÐопиÑоваÑÑ Ð·Ð½Ð°Ñение"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "ÐопиÑоваÑÑ Ð¸Ð¼Ñ Ñайла в бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/ActionLibrary.pm:373
msgid "Copy the current tab into a new document"
msgstr "ÐопиÑоваÑÑ ÑекÑÑÑÑ Ð²ÐºÐ»Ð°Ð´ÐºÑ Ð² новÑй докÑменÑ"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/ru.po view on Meta::CPAN
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "ÐаÑÐ¾Ð»Ñ Ð´Ð»Ñ Ð¿Ð¾Ð»ÑзоваÑÐµÐ»Ñ '%s' на %s:"
#: lib/Padre/Wx/FBP/Sync.pm:89
#: lib/Padre/Wx/FBP/Sync.pm:148
msgid "Password:"
msgstr "ÐаÑолÑ:"
#: lib/Padre/Wx/ActionLibrary.pm:779
msgid "Paste the clipboard to the current location"
msgstr "ÐÑÑавиÑÑ Ð¸Ð· бÑÑеÑа обмена в ÑекÑÑÑÑ Ð¿Ð¾Ð·Ð¸ÑиÑ"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "ÐаÑÑ"
#: lib/Padre/Wx/Dialog/Patch.pm:411
msgid "Patch file should end in .patch or .diff, you should reselect & try again"
msgstr "Файл заплаÑки должен заканÑиваÑÑÑÑ Ð½Ð° .patch или .diff, Ð²Ñ Ð´Ð¾Ð»Ð¶Ð½Ñ ÐµÑÑ Ñаз вÑбÑаÑÑ Ð¸ попÑобоваÑÑ Ñнова"
share/locale/ru.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2367
msgid "Put focus on the next tab to the right"
msgstr "ÐомеÑÑиÑÑ ÑокÑÑ Ð½Ð° ÑледÑÑÑем пÑавом Ñабе"
#: lib/Padre/Wx/ActionLibrary.pm:2378
msgid "Put focus on the previous tab to the left"
msgstr "ÐомеÑÑиÑÑ ÑокÑÑ Ð½Ð° пÑедÑдÑÑем Ñабе Ñлева"
#: lib/Padre/Wx/ActionLibrary.pm:762
msgid "Put the content of the current document in the clipboard"
msgstr "ÐомеÑÑиÑÑ ÑодеÑжимое ÑекÑÑего докÑменÑа в бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/ActionLibrary.pm:702
msgid "Put the current selection in the clipboard"
msgstr "ÐомеÑÑиÑÑ ÑекÑÑее вÑделение в бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/ActionLibrary.pm:718
msgid "Put the full path of the current file in the clipboard"
msgstr "ÐомеÑÑиÑÑ Ð¿Ð¾Ð»Ð½Ñй пÑÑÑ Ðº ÑекÑÑÐµÐ¼Ñ ÑÐ°Ð¹Ð»Ñ Ð² бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/ActionLibrary.pm:748
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "ÐомеÑÑиÑÑ Ð¿Ð¾Ð»Ð½Ñй пÑÑÑ ÐºÐ°Ñалога к ÑекÑÑÐµÐ¼Ñ ÑÐ°Ð¹Ð»Ñ Ð² бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/ActionLibrary.pm:733
msgid "Put the name of the current file in the clipboard"
msgstr "ÐомеÑÑиÑÑ Ð¸Ð¼Ñ ÑекÑÑего Ñайла в бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/Main.pm:4426
msgid "Python Files"
msgstr "Ð¤Ð°Ð¹Ð»Ñ Python"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "ÐÐµÐ½Ñ Ð±ÑÑÑÑого доÑÑÑпа"
share/locale/ru.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Remove all the selection marks"
msgstr "СнÑÑÑ Ð²Ñе меÑки вÑделениÑ"
#: lib/Padre/Wx/ActionLibrary.pm:982
msgid "Remove comment for selected lines or the current line"
msgstr "УдалиÑÑ ÐºÐ¾Ð¼Ð¼ÐµÐ½ÑаÑии в вÑделеннÑÑ
ÑÑÑокаÑ
или ÑекÑÑей линии"
#: lib/Padre/Wx/ActionLibrary.pm:687
msgid "Remove the current selection and put it in the clipboard"
msgstr "УдалиÑÑ ÑекÑÑее вÑделение и помеÑÑиÑÑ ÐµÐ³Ð¾ в бÑÑÐµÑ Ð¾Ð±Ð¼ÐµÐ½Ð°"
#: lib/Padre/Wx/ActionLibrary.pm:546
msgid "Remove the entries from the recent files list"
msgstr "ÐÑиÑÑиÑÑ Ð·Ð°Ð¿Ð¸Ñи в ÑпиÑке недавниÑ
Ñайлов"
#: lib/Padre/Wx/ActionLibrary.pm:1077
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "УдалиÑÑ Ð²Ñе пÑÐ¾Ð±ÐµÐ»Ñ Ð² наÑале вÑделеннÑÑ
линий"
share/locale/tr.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Advanced.pm:118
msgid "Copy Name"
msgstr "Adı Kopyala"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "DeÄeri Kopyala"
#: lib/Padre/Wx/Dialog/OpenResource.pm:261
msgid "Copy filename to clipboard"
msgstr "Dosya adını panoya kopyala"
#: lib/Padre/Wx/ActionLibrary.pm:360
msgid "Copy the current tab into a new document"
msgstr "Geçerli sekmeyi yeni bir belgeye kopyala"
#: lib/Padre/Wx/FBP/About.pm:87
msgid ""
"Copyright 2008â2012 The Padre Development Team Padre is free software; \n"
"you can redistribute it and/or modify it under the same terms as Perl 5."
share/locale/tr.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Sync.pm:152
msgid "Password and confirmation do not match."
msgstr "Parola ve onayı eÅleÅmedi"
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "%2$s için '%1$s' kullanıcısının parolası"
#: lib/Padre/Wx/ActionLibrary.pm:766
msgid "Paste the clipboard to the current location"
msgstr "Panoyu geçerli konuma yapıÅtır"
#: lib/Padre/Wx/FBP/Patch.pm:29
msgid "Patch"
msgstr "Yama"
#: lib/Padre/Wx/Dialog/Patch.pm:407
msgid "Patch file should end in .patch or .diff, you should reselect & try again"
msgstr "Yama dosyasının uzantısı .patch veya .diff olmalıdır. Yeni bir seçimle tekrar deneyin."
share/locale/tr.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2354
msgid "Put focus on the next tab to the right"
msgstr "OdaÄı saÄdaki ile sekmeye yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:2365
msgid "Put focus on the previous tab to the left"
msgstr "OdaÄı soldaki bir önceki sekmeye yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:749
msgid "Put the content of the current document in the clipboard"
msgstr "Geçerli belgenin içeriÄini panoya yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:689
msgid "Put the current selection in the clipboard"
msgstr "Geçerli seçimi panoya yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:705
msgid "Put the full path of the current file in the clipboard"
msgstr "Geçerli dosyanın tam yolunu panoya yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:735
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "Geçerli dosyanın içinde bulunduÄu dizinin tam yolunu panoya yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:720
msgid "Put the name of the current file in the clipboard"
msgstr "Gerçerli dosyanın adını panoya yerleÅtir"
#: lib/Padre/Wx/Main.pm:4405
msgid "Python Files"
msgstr "Python Dosyaları"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:43
msgid "Quick Menu Access"
msgstr "Hızlı Menü EriÅimi"
share/locale/tr.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:659
msgid "Remove all the selection marks"
msgstr "Bütün seçim iÅaretlerini kaldır"
#: lib/Padre/Wx/ActionLibrary.pm:969
msgid "Remove comment for selected lines or the current line"
msgstr "Belgedeki seçili satırlardaki veya sadece geçerli satırdaki yorum haline getirilmiŠkısımları koda çevir"
#: lib/Padre/Wx/ActionLibrary.pm:674
msgid "Remove the current selection and put it in the clipboard"
msgstr "Geçerli seçimi kaldır ve panonun içine yerleÅtir"
#: lib/Padre/Wx/ActionLibrary.pm:533
msgid "Remove the entries from the recent files list"
msgstr "Son kullanılan dosyalar listesindeki girdileri sil"
#: lib/Padre/Wx/ActionLibrary.pm:1064
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "Seçili satırların baÅındaki boÅlukları sil"
share/locale/zh-cn.po view on Meta::CPAN
#: lib/Padre/Wx/Menu/Edit.pm:90
msgid "Copy Specials"
msgstr "å¤å¶ç¹æ®é¡¹"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "å¤å¶å¼"
#: lib/Padre/Wx/Dialog/OpenResource.pm:262
msgid "Copy filename to clipboard"
msgstr "å¤å¶æä»¶åå°åªè´´æ¿"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:163
#, perl-format
msgid "Could not create: '%s': %s"
msgstr "ä¸è½å»ºç«: '%s': %s"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:182
#, perl-format
msgid "Could not delete: '%s': %s"
share/locale/zh-cn.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Sync.pm:527
msgid "Password and confirmation do not match."
msgstr "å¯ç ä¸ç¡®è®¤å¼ä¸å¹é
"
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr "ç¨æ· '%s' å¨ '%s' ä¸çå¯ç :"
#: lib/Padre/Wx/ActionLibrary.pm:729
msgid "Paste the clipboard to the current location"
msgstr "å°åªè´´æ¿ç²è´´å°ç®åä½ç½®"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:392
msgid "Perl"
msgstr "&Perl"
#: lib/Padre/Wx/WizardLibrary.pm:21
msgid "Perl 5"
msgstr "Perl 5"
share/locale/zh-cn.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2419
msgid "Put focus on the next tab to the right"
msgstr "æç¦ç¹æ¾å°ä¸ä¸ä¸ª(å³è¾¹)æ ç¾é¡µ"
#: lib/Padre/Wx/ActionLibrary.pm:2430
msgid "Put focus on the previous tab to the left"
msgstr "æç¦ç¹æ¾å°ä¸ä¸ä¸ª(左边)æ ç¾é¡µ"
#: lib/Padre/Wx/ActionLibrary.pm:713
msgid "Put the content of the current document in the clipboard"
msgstr "ç¼è¾å¨ä¸å½åæä»¶çå
容æ¾å
¥åªè´´æ¿"
#: lib/Padre/Wx/ActionLibrary.pm:656
msgid "Put the current selection in the clipboard"
msgstr "å½åéæ©çåºåæ¾å
¥åªè´´æ¿"
#: lib/Padre/Wx/ActionLibrary.pm:672
msgid "Put the full path of the current file in the clipboard"
msgstr "å½åæä»¶ç宿´è·¯å¾ä¸æä»¶åæ¾å
¥åªè´´æ¿"
#: lib/Padre/Wx/ActionLibrary.pm:700
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr "æä»¶æå¨ç®å½ç宿´è·¯å¾æ¾å
¥åªè´´æ¿"
#: lib/Padre/Wx/ActionLibrary.pm:686
msgid "Put the name of the current file in the clipboard"
msgstr "å½åæä»¶åæ¾å
¥åªè´´æ¿"
#: lib/Padre/Wx/Main.pm:3917
msgid "Python Files"
msgstr "Python æä»¶"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:40
msgid "Quick Menu Access"
msgstr "èåå¿«æ·éé"
share/locale/zh-cn.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:928
msgid "Remove comment out of selected lines in the document"
msgstr "ç§»é¤æéè¡ç注é"
#: lib/Padre/Wx/ActionLibrary.pm:2087
msgid "Remove the breakpoint at the current location of the cursor"
msgstr "å¨å½åå
æ å¤ç§»é¤æç¹"
#: lib/Padre/Wx/ActionLibrary.pm:641
msgid "Remove the current selection and put it in the clipboard"
msgstr "å é¤å½åéæ©çåºåå¹¶å°å
¶æ¾å
¥åªè´´æ¿"
#: lib/Padre/Wx/ActionLibrary.pm:510
msgid "Remove the entries from the recent files list"
msgstr "ç§»é¤âæè¿çæä»¶âå表ä¸çæ¡ç®"
#: lib/Padre/Wx/ActionLibrary.pm:1036
msgid "Remove the spaces from the beginning of the selected lines"
msgstr "ç§»é¤æéè¡çè¡é¦ç©ºæ ¼"
share/locale/zh-tw.po view on Meta::CPAN
#: lib/Padre/Wx/Menu/Edit.pm:90
msgid "Copy Specials"
msgstr "è¤è£½çç¹æ®é¸é
"
#: lib/Padre/Wx/Dialog/Advanced.pm:119
msgid "Copy Value"
msgstr "è¤è£½å
¶å¼"
#: lib/Padre/Wx/Dialog/OpenResource.pm:262
msgid "Copy filename to clipboard"
msgstr "è¤è£½æªæ¡å稱å°åªè²¼ç°¿"
#: lib/Padre/Wx/ActionLibrary.pm:142
msgid "Copy of current file"
msgstr "è¤è£½ç®åæªæ¡"
#: lib/Padre/Wx/Directory/TreeCtrl.pm:163
#, perl-format
msgid "Could not create: '%s': %s"
msgstr "ç¡æ³åµå»ºï¼ '%s': %s"
share/locale/zh-tw.po view on Meta::CPAN
#: lib/Padre/Wx/Dialog/Sync2.pm:142 lib/Padre/Wx/Dialog/Sync.pm:527
msgid "Password and confirmation do not match."
msgstr ""
#: lib/Padre/File/FTP.pm:131
#, perl-format
msgid "Password for user '%s' at %s:"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:759
msgid "Paste the clipboard to the current location"
msgstr ""
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:392
msgid "Perl"
msgstr "Perl(&P)"
#: lib/Padre/Wx/WizardLibrary.pm:21
msgid "Perl 5"
msgstr "Perl(&P)"
share/locale/zh-tw.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:2486
msgid "Put focus on the next tab to the right"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:2497
msgid "Put focus on the previous tab to the left"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:743
msgid "Put the content of the current document in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:686
msgid "Put the current selection in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:702
msgid "Put the full path of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:730
msgid "Put the full path of the directory of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:716
msgid "Put the name of the current file in the clipboard"
msgstr ""
#: lib/Padre/Wx/Main.pm:4036
msgid "Python Files"
msgstr "Python æªæ¡"
#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:40
msgid "Quick Menu Access"
msgstr ""
share/locale/zh-tw.po view on Meta::CPAN
#: lib/Padre/Wx/ActionLibrary.pm:958
msgid "Remove comment out of selected lines in the document"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:2153
msgid "Remove the breakpoint at the current location of the cursor"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:671
msgid "Remove the current selection and put it in the clipboard"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:540
msgid "Remove the entries from the recent files list"
msgstr ""
#: lib/Padre/Wx/ActionLibrary.pm:1063
msgid "Remove the spaces from the beginning of the selected lines"
msgstr ""