Padre

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

      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 ""



( run in 2.088 seconds using v1.01-cache-2.11-cpan-84e82930d8c )