Changeset 11110
- Timestamp:
- 03/14/10 09:05:44 (2 years ago)
- Location:
- trunk/Padre
- Files:
-
- 5 edited
-
Changes (modified) (1 diff)
-
lib/Padre/Wx/Dialog/SpecialValues.pm (modified) (4 diffs)
-
lib/Padre/Wx/Menu/Edit.pm (modified) (2 diffs)
-
share/locale/de.po (modified) (45 diffs)
-
share/locale/messages.pot (modified) (37 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/Changes
r11108 r11110 24 24 - Local file and remote file installation switched from pip to 25 25 cpanm (ADAMK) 26 - Completed the 'Insert Special Value' functionality (Zeno Gantner) 27 - updated German translation (Zeno Gantner) 26 28 27 29 0.58 2010.03.08 **WARNING Still not stable** -
trunk/Padre/lib/Padre/Wx/Dialog/SpecialValues.pm
r10997 r11110 13 13 14 14 my $categories = { 15 'Dates' => [ 16 { label => 'Now', action => _get_date_info('now') }, 17 { label => 'Yesterday', action => _get_date_info('epoch') }, 18 { label => 'Tomorrow', action => _get_date_info('epoch') }, 15 Wx::gettext('Date/Time') => [ 16 { label => Wx::gettext('Now'), action => _get_date_info('now') }, 17 { label => Wx::gettext('Today'), action => _get_date_info('today') }, 18 { label => Wx::gettext('Year'), action => _get_date_info('year') }, 19 { label => Wx::gettext('Epoch'), action => _get_date_info('epoch') }, 19 20 ], 20 'File' => [ 21 { label => 'Size', action => _get_file_info('size') }, 22 { label => 'Name', action => _get_file_info('name') }, 23 ], 24 'Line' => [ 25 { label => 'Number', action => _get_line_info('number') }, 21 Wx::gettext('File') => [ 22 { label => Wx::gettext('Size'), action => _get_file_info('size') }, 23 { label => Wx::gettext('Name'), action => _get_file_info('name') }, 24 { label => Wx::gettext('Number of lines'), action => _get_file_info('number of lines') }, 26 25 ], 27 26 }; … … 93 92 my $value_ind = $data->{_find_specialvalue_}; 94 93 my $text = &{ $categories->{$cat_name}[$value_ind]{action} }; 95 warn "cat : $cat_name, value $value_ind, text : $text\n";94 #warn "cat : $cat_name, value $value_ind, text : $text\n"; 96 95 97 96 my $editor = Padre::Current->editor; … … 124 123 return sub { 125 124 return scalar localtime; 126 } 127 } else { 125 } 126 } 127 elsif ( $type eq 'today' ) { 128 return sub { 129 my @localtime = localtime(time); 130 return sprintf "%s-%02s-%02s", $localtime[5] + 1900, $localtime[4], $localtime[3]; 131 } 132 } 133 elsif ( $type eq 'year' ) { 134 return sub { 135 my @localtime = localtime(time); 136 return $localtime[5] + 1900; 137 } 138 } 139 elsif ( $type eq 'epoch' ) { 140 return sub { 141 return time; 142 } 143 } 144 else { 128 145 return sub { 129 146 warn "date info $type not implemented yet\n"; 130 147 return ''; 131 }148 } 132 149 } 133 150 } … … 135 152 sub _get_file_info { 136 153 my $type = shift; 154 my $document = Padre::Current->document; 155 my ( $lines, $chars_with_space, $chars_without_space, $words, $is_readonly, 156 $filename, $newline_type, $encoding ) = $document->stats; 157 137 158 if ( $type eq 'name' ) { 138 159 return sub { 139 my $document = Padre::Current->document; 160 return defined $filename ? $filename : Wx::gettext("No filename"); 161 }; 162 } 163 elsif ( $type eq 'size' ) { 164 return sub { 140 165 my $filename = $document->filename || $document->tempfile; 141 warn "doc : $document $filename \n";142 return $filename;143 };144 } else {145 return sub {146 my $document = Padre::Current->document;147 my $filename = $document->filename || $document->tempfile;148 warn "doc : $document $filename \n";149 166 return ($filename) ? -s $filename : 0; 150 167 }; 151 168 } 152 } 153 154 sub _get_line_info { 155 my $type = shift; 156 return sub { 157 my $editor = Padre::Current->editor; 158 my $pos = $editor->GetCurrentPos; 159 my $line = $editor->GetCurrentLine; 160 return $line + 1; 161 }; 169 elsif ( $type eq 'number of lines' ) { 170 return sub { 171 return $lines; 172 }; 173 } 174 else { 175 return sub { 176 warn "file info $type not implemented yet\n"; 177 return ''; 178 } 179 } 162 180 } 163 181 -
trunk/Padre/lib/Padre/Wx/Menu/Edit.pm
r11068 r11110 118 118 ); 119 119 120 $self->AppendSeparator;121 122 # Miscellaneous Actions123 $self->{goto} = $self->add_menu_action(124 $self,125 'edit.goto',126 );127 128 $self->{next_problem} = $self->add_menu_action(129 $self,130 'edit.next_problem',131 );132 133 $self->{quick_fix} = $self->add_menu_action(134 $self,135 'edit.quick_fix',136 );137 138 $self->{autocomp} = $self->add_menu_action(139 $self,140 'edit.autocomp',141 );142 143 $self->{brace_match} = $self->add_menu_action(144 $self,145 'edit.brace_match',146 );147 148 $self->{brace_match_select} = $self->add_menu_action(149 $self,150 'edit.brace_match_select',151 );152 153 $self->{join_lines} = $self->add_menu_action(154 $self,155 'edit.join_lines',156 );157 158 120 my $submenu = Wx::Menu->new; 159 121 $self->{insert_submenu} = $self->AppendSubMenu( $submenu, Wx::gettext('Insert') ); … … 172 134 $submenu, 173 135 'edit.insert.from_file', 136 ); 137 138 $self->AppendSeparator; 139 140 # Miscellaneous Actions 141 $self->{goto} = $self->add_menu_action( 142 $self, 143 'edit.goto', 144 ); 145 146 $self->{next_problem} = $self->add_menu_action( 147 $self, 148 'edit.next_problem', 149 ); 150 151 $self->{quick_fix} = $self->add_menu_action( 152 $self, 153 'edit.quick_fix', 154 ); 155 156 $self->{autocomp} = $self->add_menu_action( 157 $self, 158 'edit.autocomp', 159 ); 160 161 $self->{brace_match} = $self->add_menu_action( 162 $self, 163 'edit.brace_match', 164 ); 165 166 $self->{brace_match_select} = $self->add_menu_action( 167 $self, 168 'edit.brace_match_select', 169 ); 170 171 $self->{join_lines} = $self->add_menu_action( 172 $self, 173 'edit.join_lines', 174 174 ); 175 175 -
trunk/Padre/share/locale/de.po
r11097 r11110 8 8 "Project-Id-Version: 0.23\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2010-03-1 3 13:25+0100\n"10 "POT-Creation-Date: 2010-03-14 15:47+0100\n" 11 11 "PO-Revision-Date: 2010-02-01 10:30+0100\n" 12 12 "Last-Translator: Sebastian Willing\n" … … 170 170 "von derzeit %s" 171 171 172 #: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm: 186172 #: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm:210 173 173 #: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:96 174 #: lib/Padre/Wx/Main.pm:27 17lib/Padre/Wx/Main.pm:4238174 #: lib/Padre/Wx/Main.pm:2734 lib/Padre/Wx/Main.pm:4238 175 175 #: lib/Padre/Wx/Directory/TreeCtrl.pm:440 176 176 #: lib/Padre/Wx/Directory/TreeCtrl.pm:474 … … 207 207 msgstr "Ãbersprungen fÃŒr groÃe Dateien" 208 208 209 #: lib/Padre/TaskManager.pm:63 1209 #: lib/Padre/TaskManager.pm:630 210 210 #, perl-format 211 211 msgid "%s worker threads are running.\n" 212 212 msgstr "%s Worker-Threads sind aktiv.\n" 213 213 214 #: lib/Padre/TaskManager.pm:63 3214 #: lib/Padre/TaskManager.pm:632 215 215 msgid "Currently, no background tasks are being executed.\n" 216 216 msgstr "Derzeit laufen keine Hintergrund-Funktionen.\n" 217 217 218 #: lib/Padre/TaskManager.pm:63 9218 #: lib/Padre/TaskManager.pm:638 219 219 msgid "The following tasks are currently executing in the background:\n" 220 220 msgstr "Folgende Funktionen laufen derzeit im Hintergrund:\n" 221 221 222 #: lib/Padre/TaskManager.pm:64 5222 #: lib/Padre/TaskManager.pm:644 223 223 #, perl-format 224 224 msgid "" … … 229 229 " (in Thread(s) %s)\n" 230 230 231 #: lib/Padre/TaskManager.pm:65 7231 #: lib/Padre/TaskManager.pm:656 232 232 #, perl-format 233 233 msgid "" … … 303 303 msgstr "Fehler beim Aufruf von menu fÃŒr das Plugin" 304 304 305 #: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:21 29306 #: lib/Padre/Wx/Main.pm:2 184 lib/Padre/Wx/Main.pm:2236305 #: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:2146 306 #: lib/Padre/Wx/Main.pm:2201 lib/Padre/Wx/Main.pm:2253 307 307 msgid "No document open" 308 308 msgstr "Kein geöffnetes Dokument" … … 493 493 msgstr "NAME" 494 494 495 #: lib/Padre/Wx/Editor.pm:1 373495 #: lib/Padre/Wx/Editor.pm:1563 496 496 msgid "You must select a range of lines" 497 497 msgstr "Sie mÃŒssen mehrere Zeilen auswÀhlen" 498 498 499 #: lib/Padre/Wx/Editor.pm:1 389499 #: lib/Padre/Wx/Editor.pm:1579 500 500 msgid "First character of selection must be a non-word character to align" 501 501 msgstr "" … … 506 506 msgstr "Ausgabe" 507 507 508 #: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:23 42508 #: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:2359 509 509 #, perl-format 510 510 msgid "" … … 623 623 msgstr "Verzeichnis wÀhlen" 624 624 625 #: lib/Padre/Wx/Bottom.pm:5 0625 #: lib/Padre/Wx/Bottom.pm:52 626 626 msgid "Output View" 627 627 msgstr "Ausgabe" … … 649 649 650 650 #: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:94 651 #: lib/Padre/Wx/Main.pm:24 69lib/Padre/Wx/Main.pm:3109651 #: lib/Padre/Wx/Main.pm:2486 lib/Padre/Wx/Main.pm:3109 652 652 #: lib/Padre/Wx/Dialog/Warning.pm:64 lib/Padre/Task/SyntaxChecker.pm:183 653 653 msgid "Warning" … … 670 670 msgstr "&Alle kopieren" 671 671 672 #: lib/Padre/Wx/Left.pm: 49672 #: lib/Padre/Wx/Left.pm:51 673 673 msgid "Project Tools" 674 674 msgstr "Projekt-Tools" 675 675 676 #: lib/Padre/Wx/Right.pm: 49676 #: lib/Padre/Wx/Right.pm:51 677 677 msgid "Document Tools" 678 678 msgstr "Dokumenten-Tools" … … 714 714 msgstr "Das betreffende Dokument wurde geschlossen." 715 715 716 #: lib/Padre/Wx/Main.pm: 685716 #: lib/Padre/Wx/Main.pm:702 717 717 #, perl-format 718 718 msgid "No such session %s" 719 719 msgstr "Keine Sitzungen %s gefunden" 720 720 721 #: lib/Padre/Wx/Main.pm:8 60721 #: lib/Padre/Wx/Main.pm:877 722 722 msgid "Failed to create server" 723 723 msgstr "Konnte Server nicht erzeugen" 724 724 725 #: lib/Padre/Wx/Main.pm:2 099725 #: lib/Padre/Wx/Main.pm:2116 726 726 msgid "Command line" 727 727 msgstr "Kommandozeile" 728 728 729 #: lib/Padre/Wx/Main.pm:21 00729 #: lib/Padre/Wx/Main.pm:2117 730 730 msgid "Run setup" 731 731 msgstr "AusfÃŒhrungs-Konfiguration" 732 732 733 #: lib/Padre/Wx/Main.pm:21 35 lib/Padre/Wx/Main.pm:2196734 #: lib/Padre/Wx/Main.pm:22 51733 #: lib/Padre/Wx/Main.pm:2152 lib/Padre/Wx/Main.pm:2213 734 #: lib/Padre/Wx/Main.pm:2268 735 735 msgid "Could not find project root" 736 736 msgstr "Konnte Basis-Verzeichnis des Projekts nicht finden" 737 737 738 #: lib/Padre/Wx/Main.pm:21 62738 #: lib/Padre/Wx/Main.pm:2179 739 739 msgid "No Build.PL nor Makefile.PL nor dist.ini found" 740 740 msgstr "Weder Build.PL noch Makefile.PL noch dist.ini wurden gefunden." 741 741 742 #: lib/Padre/Wx/Main.pm:21 65742 #: lib/Padre/Wx/Main.pm:2182 743 743 msgid "Could not find perl executable" 744 744 msgstr "Konnte Perl-Interpreter nicht finden" 745 745 746 #: lib/Padre/Wx/Main.pm:2 190 lib/Padre/Wx/Main.pm:2242746 #: lib/Padre/Wx/Main.pm:2207 lib/Padre/Wx/Main.pm:2259 747 747 msgid "Current document has no filename" 748 748 msgstr "Aktuelles Dokument hat keinen Dateinamen" 749 749 750 #: lib/Padre/Wx/Main.pm:22 45750 #: lib/Padre/Wx/Main.pm:2262 751 751 msgid "Current document is not a .t file" 752 752 msgstr "Aktuelles Dokument ist keine .t-Datei!" 753 753 754 #: lib/Padre/Wx/Main.pm:24 01754 #: lib/Padre/Wx/Main.pm:2418 755 755 #, perl-format 756 756 msgid "Failed to start '%s' command" 757 757 msgstr "Fehler beim AusfÃŒhren des Kommandos '%s'" 758 758 759 #: lib/Padre/Wx/Main.pm:24 26759 #: lib/Padre/Wx/Main.pm:2443 760 760 msgid "No open document" 761 761 msgstr "Kein geöffnetes Dokument" 762 762 763 #: lib/Padre/Wx/Main.pm:24 43763 #: lib/Padre/Wx/Main.pm:2460 764 764 msgid "No execution mode was defined for this document" 765 765 msgstr "FÃŒr dieses Dokument ist kein AusfÃŒhrungsmodus definiert" 766 766 767 #: lib/Padre/Wx/Main.pm:24 68767 #: lib/Padre/Wx/Main.pm:2485 768 768 msgid "Do you want to continue?" 769 769 msgstr "Vorgang fortsetzen?" 770 770 771 #: lib/Padre/Wx/Main.pm:25 54771 #: lib/Padre/Wx/Main.pm:2571 772 772 #, perl-format 773 773 msgid "Opening session %s..." 774 774 msgstr "Ãffne Sitzung %s..." 775 775 776 #: lib/Padre/Wx/Main.pm:2 583776 #: lib/Padre/Wx/Main.pm:2600 777 777 msgid "Restore focus..." 778 778 msgstr "Fokus setzen..." 779 779 780 #: lib/Padre/Wx/Main.pm:26 66780 #: lib/Padre/Wx/Main.pm:2683 781 781 msgid "Message" 782 782 msgstr "Nachricht" … … 844 844 #: lib/Padre/Wx/Main.pm:3621 845 845 msgid "Text Files" 846 msgstr "Text -Dateien"846 msgstr "Textdateien" 847 847 848 848 #: lib/Padre/Wx/Main.pm:3623 … … 1451 1451 #: lib/Padre/Wx/Dialog/SessionManager.pm:225 1452 1452 #: lib/Padre/Wx/Dialog/PluginManager.pm:66 1453 #: lib/Padre/Wx/Dialog/SpecialValues.pm:23 1453 1454 msgid "Name" 1454 1455 msgstr "Name" … … 1493 1494 msgstr "Verwende Rege&x" 1494 1495 1495 #: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:4 71496 #: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:48 1496 1497 msgid "Plug-in Manager" 1497 1498 msgstr "Plugin-Manager" … … 1516 1517 1517 1518 #: lib/Padre/Wx/Dialog/PluginManager.pm:131 1518 #: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:6 391519 #: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:620 1519 1520 msgid "Preferences" 1520 1521 msgstr "Einstellungen" … … 1594 1595 1595 1596 #: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:387 1597 #: lib/Padre/Wx/Dialog/SpecialValues.pm:21 1596 1598 #: lib/Padre/Wx/Dialog/WindowList.pm:226 1597 1599 msgid "File" … … 1694 1696 msgstr "Fertig" 1695 1697 1696 #: lib/Padre/Wx/Dialog/SpecialValues.pm:37 lib/Padre/Wx/Dialog/Snippets.pm:22 1698 #: lib/Padre/Wx/Dialog/SpecialValues.pm:15 1699 msgid "Date/Time" 1700 msgstr "Datum/Uhrzeit" 1701 1702 #: lib/Padre/Wx/Dialog/SpecialValues.pm:16 1703 msgid "Now" 1704 msgstr "Jetzt" 1705 1706 #: lib/Padre/Wx/Dialog/SpecialValues.pm:17 1707 msgid "Today" 1708 msgstr "Heute" 1709 1710 #: lib/Padre/Wx/Dialog/SpecialValues.pm:18 1711 msgid "Year" 1712 msgstr "Jahr" 1713 1714 #: lib/Padre/Wx/Dialog/SpecialValues.pm:19 1715 msgid "Epoch" 1716 msgstr "Epoche" 1717 1718 #: lib/Padre/Wx/Dialog/SpecialValues.pm:22 1719 msgid "Size" 1720 msgstr "GröÃe" 1721 1722 #: lib/Padre/Wx/Dialog/SpecialValues.pm:24 1723 msgid "Number of lines" 1724 msgstr "Anzahl Zeilen" 1725 1726 #: lib/Padre/Wx/Dialog/SpecialValues.pm:36 lib/Padre/Wx/Dialog/Snippets.pm:22 1697 1727 msgid "Class:" 1698 1728 msgstr "Klasse:" 1699 1729 1700 #: lib/Padre/Wx/Dialog/SpecialValues.pm:3 81730 #: lib/Padre/Wx/Dialog/SpecialValues.pm:37 1701 1731 msgid "Special Value:" 1702 1732 msgstr "Spezieller Wert:" 1703 1733 1704 #: lib/Padre/Wx/Dialog/SpecialValues.pm:4 1lib/Padre/Wx/Dialog/Snippets.pm:241734 #: lib/Padre/Wx/Dialog/SpecialValues.pm:40 lib/Padre/Wx/Dialog/Snippets.pm:24 1705 1735 #: lib/Padre/Wx/Dialog/RegexEditor.pm:234 1706 1736 msgid "&Insert" 1707 1737 msgstr "&EinfÃŒgen" 1708 1738 1709 #: lib/Padre/Wx/Dialog/SpecialValues.pm:5 41739 #: lib/Padre/Wx/Dialog/SpecialValues.pm:53 1710 1740 msgid "Insert Special Values" 1711 1741 msgstr "Spezielle Werte einfÃŒgen" … … 2102 2132 msgstr "Enkodieren zu:" 2103 2133 2104 #: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:4 612134 #: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:442 2105 2135 msgid "Encode document to..." 2106 2136 msgstr "Dokument umkodieren zu..." … … 2294 2324 msgstr "Konnte keinen Hilfe-Anbieter finden:" 2295 2325 2296 #: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:3 72326 #: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:38 2297 2327 msgid "Key Bindings" 2298 2328 msgstr "Tastenkombinationen" … … 2326 2356 msgstr "&HinzufÃŒgen" 2327 2357 2328 #: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:3 782358 #: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:359 2329 2359 msgid "Snippets" 2330 2360 msgstr "Schnipsel" … … 2412 2442 msgstr "Umschalt" 2413 2443 2414 #: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm: 6082444 #: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm:589 2415 2445 msgid "Regex Editor" 2416 2446 msgstr "Regex-Editor" … … 2672 2702 msgstr "Entferne &alle" 2673 2703 2674 #: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:29 62704 #: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:291 2675 2705 msgid "Set Bookmark" 2676 2706 msgstr "Setze Lesezeichen" … … 2790 2820 2791 2821 #: lib/Padre/Plugin/Devel.pm:69 2792 #, fuzzy2793 2822 msgid "Dump Display Geometry" 2794 msgstr "Anzeige datenausgeben"2823 msgstr "Anzeige-Geometrie ausgeben" 2795 2824 2796 2825 #: lib/Padre/Plugin/Devel.pm:70 … … 3001 3030 "und Debugging)." 3002 3031 3003 #: lib/Padre/Action/Run.pm:39 3032 #: lib/Padre/Action/Internal.pm:56 3033 msgid "Delay the action queue for 10 seconds" 3034 msgstr "" 3035 3036 #: lib/Padre/Action/Internal.pm:57 3037 msgid "Stops processing of other action queue items for 10 seconds" 3038 msgstr "" 3039 3040 #: lib/Padre/Action/Internal.pm:64 3041 msgid "Delay the action queue for 30 seconds" 3042 msgstr "" 3043 3044 #: lib/Padre/Action/Internal.pm:65 3045 msgid "Stops processing of other action queue items for 30 seconds" 3046 msgstr "" 3047 3048 #: lib/Padre/Action/Run.pm:43 3004 3049 msgid "Run Script" 3005 3050 msgstr "Skript ausfÃŒhren" 3006 3051 3007 #: lib/Padre/Action/Run.pm:4 03052 #: lib/Padre/Action/Run.pm:44 3008 3053 msgid "Runs the current document and shows its output in the output panel." 3009 3054 msgstr "" 3010 3055 "FÃŒhrt das aktuelle Programm aus und zeigt die Ausgabe im Ausgabe-Panel." 3011 3056 3012 #: lib/Padre/Action/Run.pm:5 53057 #: lib/Padre/Action/Run.pm:59 3013 3058 msgid "Run Script (debug info)" 3014 3059 msgstr "Skript ausfÃŒhren (Debug-Info)" 3015 3060 3016 #: lib/Padre/Action/Run.pm: 563061 #: lib/Padre/Action/Run.pm:60 3017 3062 msgid "Run the current document but include debug info in the output." 3018 3063 msgstr "" … … 3020 3065 "Ausgabe-Panel an." 3021 3066 3022 #: lib/Padre/Action/Run.pm:6 53067 #: lib/Padre/Action/Run.pm:69 3023 3068 msgid "Run Command" 3024 3069 msgstr "Befehl ausfÃŒhren" 3025 3070 3026 #: lib/Padre/Action/Run.pm: 663071 #: lib/Padre/Action/Run.pm:70 3027 3072 msgid "Runs a shell command and shows the output." 3028 3073 msgstr "FÃŒhrt einen Shellbefehl aus und zeigt die Ausgabe im Ausgabe-Panel." 3029 3074 3030 #: lib/Padre/Action/Run.pm: 763075 #: lib/Padre/Action/Run.pm:80 3031 3076 msgid "Run Build and Tests" 3032 3077 msgstr "Projekt kompilieren und alle Tests starten" 3033 3078 3034 #: lib/Padre/Action/Run.pm: 773079 #: lib/Padre/Action/Run.pm:81 3035 3080 msgid "Builds the current project, then run all tests." 3036 3081 msgstr "Erstellt das aktuelle Projekt und fÃŒhrt alle Tests aus." 3037 3082 3038 #: lib/Padre/Action/Run.pm: 883083 #: lib/Padre/Action/Run.pm:92 3039 3084 msgid "Run Tests" 3040 3085 msgstr "Tests ausfÃŒhren" 3041 3086 3042 #: lib/Padre/Action/Run.pm:9 03087 #: lib/Padre/Action/Run.pm:94 3043 3088 msgid "" 3044 3089 "Run all tests for the current project or document and show the results in " … … 3048 3093 "Ausgabe-Panel." 3049 3094 3050 #: lib/Padre/Action/Run.pm:1 093095 #: lib/Padre/Action/Run.pm:113 3051 3096 msgid "Run This Test" 3052 3097 msgstr "Diesen Test starten" 3053 3098 3054 #: lib/Padre/Action/Run.pm:11 03099 #: lib/Padre/Action/Run.pm:114 3055 3100 msgid "Run the current test if the current document is a test. (prove -bv)" 3056 3101 msgstr "Aktuellen Text ausfÃŒhren (sofern das aktuelle Dokument ein Test ist)" 3057 3102 3058 #: lib/Padre/Action/Run.pm:12 23103 #: lib/Padre/Action/Run.pm:126 3059 3104 msgid "Stop execution" 3060 3105 msgstr "AusfÃŒhrung anhalten" 3061 3106 3062 #: lib/Padre/Action/Run.pm:12 33107 #: lib/Padre/Action/Run.pm:127 3063 3108 msgid "Stop a running task." 3064 3109 msgstr "HÀlt den aktuellen Prozess an." 3065 3110 3066 #: lib/Padre/Action/View.pm: 343111 #: lib/Padre/Action/View.pm:29 3067 3112 msgid "Lock User Interface" 3068 3113 msgstr "OberflÀche gegen Ãnderungen sperren" 3069 3114 3070 #: lib/Padre/Action/View.pm:3 53115 #: lib/Padre/Action/View.pm:30 3071 3116 msgid "Allow the user to move around some of the windows" 3072 3117 msgstr "Eine Fenster verschiebbar machen" 3073 3118 3074 #: lib/Padre/Action/View.pm:4 53119 #: lib/Padre/Action/View.pm:40 3075 3120 msgid "Show Output" 3076 3121 msgstr "Ausgabe zeigen" 3077 3122 3078 #: lib/Padre/Action/View.pm:4 73123 #: lib/Padre/Action/View.pm:42 3079 3124 msgid "" 3080 3125 "Show the window displaying the standard output and standard error of the " … … 3084 3129 "laufender Skripte anzeigen" 3085 3130 3086 #: lib/Padre/Action/View.pm:5 63131 #: lib/Padre/Action/View.pm:51 3087 3132 msgid "Show Functions" 3088 3133 msgstr "Funktionen zeigen" 3089 3134 3090 #: lib/Padre/Action/View.pm:5 73135 #: lib/Padre/Action/View.pm:52 3091 3136 msgid "Show a window listing all the functions in the current document" 3092 3137 msgstr "Alle Funktionen (Methoden, Subs) im aktuellen Dokument anzeigen" 3093 3138 3094 #: lib/Padre/Action/View.pm: 713139 #: lib/Padre/Action/View.pm:66 3095 3140 msgid "Show To-do List" 3096 3141 msgstr "TODO-Liste zeigen" 3097 3142 3098 #: lib/Padre/Action/View.pm: 723143 #: lib/Padre/Action/View.pm:67 3099 3144 msgid "Show a window listing all todo items in the current document" 3100 3145 msgstr "Alle TODO's fÃŒr das aktuelle Dokument zeigen" 3101 3146 3102 #: lib/Padre/Action/View.pm:8 73147 #: lib/Padre/Action/View.pm:82 3103 3148 msgid "Show Outline" 3104 3149 msgstr "Ãbersicht zeigen" 3105 3150 3106 #: lib/Padre/Action/View.pm:8 83151 #: lib/Padre/Action/View.pm:83 3107 3152 msgid "" 3108 3153 "Show a window listing all the parts of the current file (functions, pragmas, " … … 3111 3156 "Die Struktur (Funktionen, Pragmas, Module) des aktuellen Dokuments anzeigen" 3112 3157 3113 #: lib/Padre/Action/View.pm:9 73158 #: lib/Padre/Action/View.pm:92 3114 3159 msgid "Show Directory Tree" 3115 3160 msgstr "Verzeichnis-Baum zeigen" 3116 3161 3117 #: lib/Padre/Action/View.pm:9 83162 #: lib/Padre/Action/View.pm:93 3118 3163 msgid "Show a window with a directory browser of the current project" 3119 3164 msgstr "Den Verzeichnisbaum (komplett oder fÃŒr das aktuelle Projekt) anzeigen" 3120 3165 3121 #: lib/Padre/Action/View.pm:10 73166 #: lib/Padre/Action/View.pm:102 3122 3167 msgid "Show Syntax Check" 3123 3168 msgstr "Syntax-Check ausfÃŒhren" 3124 3169 3125 #: lib/Padre/Action/View.pm:10 83170 #: lib/Padre/Action/View.pm:103 3126 3171 msgid "" 3127 3172 "Turn on syntax checking of the current document and show output in a window" 3128 3173 msgstr "Syntax-Hervorhebung aktivieren" 3129 3174 3130 #: lib/Padre/Action/View.pm:11 73175 #: lib/Padre/Action/View.pm:112 3131 3176 msgid "Show Error List" 3132 3177 msgstr "Fehlerliste zeigen" 3133 3178 3134 #: lib/Padre/Action/View.pm:11 83179 #: lib/Padre/Action/View.pm:113 3135 3180 msgid "Show the list of errors received during execution of a script" 3136 3181 msgstr "AusfÃŒhrungsfehler eines Skriptes anzeigen" 3137 3182 3138 #: lib/Padre/Action/View.pm:12 73183 #: lib/Padre/Action/View.pm:122 3139 3184 msgid "Show Status Bar" 3140 3185 msgstr "Statuszeile zeigen" 3141 3186 3142 #: lib/Padre/Action/View.pm:12 83187 #: lib/Padre/Action/View.pm:123 3143 3188 msgid "Show/hide the status bar at the bottom of the screen" 3144 3189 msgstr "Die Statuszeile anzeigen/ausblenden" 3145 3190 3146 #: lib/Padre/Action/View.pm:13 73191 #: lib/Padre/Action/View.pm:132 3147 3192 msgid "Show Toolbar" 3148 3193 msgstr "Werkzeugleiste zeigen" 3149 3194 3150 #: lib/Padre/Action/View.pm:13 83195 #: lib/Padre/Action/View.pm:133 3151 3196 msgid "Show/hide the toolbar at the top of the editor" 3152 3197 msgstr "Toolbar anzeigen/ausblenden" 3153 3198 3154 #: lib/Padre/Action/View.pm:14 83199 #: lib/Padre/Action/View.pm:143 3155 3200 msgid "Show Line Numbers" 3156 3201 msgstr "Zeilennummern zeigen" 3157 3202 3158 #: lib/Padre/Action/View.pm:14 93203 #: lib/Padre/Action/View.pm:144 3159 3204 msgid "" 3160 3205 "Show/hide the line numbers of all the documents on the left side of the " … … 3162 3207 msgstr "Zeilennummern anzeigen bzw. ausblenden" 3163 3208 3164 #: lib/Padre/Action/View.pm:15 83209 #: lib/Padre/Action/View.pm:153 3165 3210 msgid "Show Code Folding" 3166 3211 msgstr "Code-Ausblenden verwenden" 3167 3212 3168 #: lib/Padre/Action/View.pm:15 93213 #: lib/Padre/Action/View.pm:154 3169 3214 msgid "" 3170 3215 "Show/hide a vertical line on the left hand side of the window to allow " … … 3172 3217 msgstr "Einklappen von Sourcecode-Teilen ermöglichen" 3173 3218 3174 #: lib/Padre/Action/View.pm:16 83219 #: lib/Padre/Action/View.pm:163 3175 3220 msgid "Fold all" 3176 3221 msgstr "Alle einklappen" 3177 3222 3178 #: lib/Padre/Action/View.pm:16 93223 #: lib/Padre/Action/View.pm:164 3179 3224 msgid "Fold all the blocks that can be folded (need folding to be enabled)" 3180 3225 msgstr "" 3181 3226 "Alle möglichen Blöcke einklappen (sofern einklappbarer Code aktiviert ist)" 3182 3227 3183 #: lib/Padre/Action/View.pm:17 83228 #: lib/Padre/Action/View.pm:173 3184 3229 msgid "Unfold all" 3185 3230 msgstr "Alle ausklappen" 3186 3231 3187 #: lib/Padre/Action/View.pm:17 93232 #: lib/Padre/Action/View.pm:174 3188 3233 msgid "Unfold all the blocks that can be folded (need folding to be enabled)" 3189 3234 msgstr "" 3190 3235 "Alle möglichen Blöcke aufklappen (sofern einklappbarer Code aktiviert ist)" 3191 3236 3192 #: lib/Padre/Action/View.pm:18 83237 #: lib/Padre/Action/View.pm:183 3193 3238 msgid "Show Call Tips" 3194 3239 msgstr "Aufruf-Tipps zeigen" 3195 3240 3196 #: lib/Padre/Action/View.pm:18 93241 #: lib/Padre/Action/View.pm:184 3197 3242 msgid "When typing in functions allow showing short examples of the function" 3198 3243 msgstr "Kurzhilfe zu Funktionen anzeigen wÀhrend sie eingegeben werden" 3199 3244 3200 #: lib/Padre/Action/View.pm: 2023245 #: lib/Padre/Action/View.pm:197 3201 3246 msgid "Show Current Line" 3202 3247 msgstr "Aktuelle Zeile hervorheben" 3203 3248 3204 #: lib/Padre/Action/View.pm: 2033249 #: lib/Padre/Action/View.pm:198 3205 3250 msgid "Highlight the line where the cursor is" 3206 3251 msgstr "Die aktuelle Zeile einfÀrben" 3207 3252 3208 #: lib/Padre/Action/View.pm:2 123253 #: lib/Padre/Action/View.pm:207 3209 3254 msgid "Show Right Margin" 3210 3255 msgstr "Zeige rechten Rand" 3211 3256 3212 #: lib/Padre/Action/View.pm:2 133257 #: lib/Padre/Action/View.pm:208 3213 3258 msgid "Show a vertical line indicating the right margin" 3214 3259 msgstr "Eine vertikale Linie anzeigen um die rechte Begrenzung darzustellen" 3215 3260 3216 #: lib/Padre/Action/View.pm:2 233261 #: lib/Padre/Action/View.pm:218 3217 3262 msgid "Show Newlines" 3218 3263 msgstr "ZeilenumbrÃŒche zeigen" 3219 3264 3220 #: lib/Padre/Action/View.pm:2 243265 #: lib/Padre/Action/View.pm:219 3221 3266 msgid "Show/hide the newlines with special character" 3222 3267 msgstr "ZeilenumbrÃŒche mit einem speziellen Zeichen darstellen" 3223 3268 3224 #: lib/Padre/Action/View.pm:2 333269 #: lib/Padre/Action/View.pm:228 3225 3270 msgid "Show Whitespaces" 3226 3271 msgstr "Leerraum zeigen" 3227 3272 3228 #: lib/Padre/Action/View.pm:2 343273 #: lib/Padre/Action/View.pm:229 3229 3274 msgid "Show/hide the tabs and the spaces with special characters" 3230 3275 msgstr "Tabs und Leerzeichen als spezielle Zeichen anzeigen" 3231 3276 3232 #: lib/Padre/Action/View.pm:2 433277 #: lib/Padre/Action/View.pm:238 3233 3278 msgid "Show Indentation Guide" 3234 3279 msgstr "EinrÃŒckungshilfen zeigen" 3235 3280 3236 #: lib/Padre/Action/View.pm:2 443281 #: lib/Padre/Action/View.pm:239 3237 3282 msgid "" 3238 3283 "Show/hide vertical bars at every indentation position on the left of the rows" 3239 3284 msgstr "EinrÃŒckungen graphisch darstellen" 3240 3285 3241 #: lib/Padre/Action/View.pm:2 533286 #: lib/Padre/Action/View.pm:248 3242 3287 msgid "Word-Wrap" 3243 3288 msgstr "Automatischer Zeilenumbruch" 3244 3289 3245 #: lib/Padre/Action/View.pm:2 543290 #: lib/Padre/Action/View.pm:249 3246 3291 msgid "Wrap long lines" 3247 3292 msgstr "Lange Zeilen umbrechen" 3248 3293 3249 #: lib/Padre/Action/View.pm:2 643294 #: lib/Padre/Action/View.pm:259 3250 3295 msgid "Increase Font Size" 3251 3296 msgstr "Schrift vergröÃern" 3252 3297 3253 #: lib/Padre/Action/View.pm:26 53298 #: lib/Padre/Action/View.pm:260 3254 3299 msgid "Make the letters bigger in the editor window" 3255 3300 msgstr "Schrift gröÃer darstellen" 3256 3301 3257 #: lib/Padre/Action/View.pm:2 743302 #: lib/Padre/Action/View.pm:269 3258 3303 msgid "Decrease Font Size" 3259 3304 msgstr "Schrift verkleinern" 3260 3305 3261 #: lib/Padre/Action/View.pm:27 53306 #: lib/Padre/Action/View.pm:270 3262 3307 msgid "Make the letters smaller in the editor window" 3263 3308 msgstr "Schrift kleiner darstellen" 3264 3309 3265 #: lib/Padre/Action/View.pm:2 843310 #: lib/Padre/Action/View.pm:279 3266 3311 msgid "Reset Font Size" 3267 3312 msgstr "SchriftgröÃe zurÃŒcksetzen" 3268 3313 3269 #: lib/Padre/Action/View.pm:28 53314 #: lib/Padre/Action/View.pm:280 3270 3315 msgid "Reset the size of the letters to the default in the editor window" 3271 3316 msgstr "Standard-SchriftgröÃe wiederherstellen" 3272 3317 3273 #: lib/Padre/Action/View.pm:29 73318 #: lib/Padre/Action/View.pm:292 3274 3319 msgid "Create a bookmark in the current file current row" 3275 3320 msgstr "Ein Lesezeichen erstellen" 3276 3321 3277 #: lib/Padre/Action/View.pm:30 73322 #: lib/Padre/Action/View.pm:302 3278 3323 msgid "Goto Bookmark" 3279 3324 msgstr "Gehe zu Lesezeichen" 3280 3325 3281 #: lib/Padre/Action/View.pm:30 83326 #: lib/Padre/Action/View.pm:303 3282 3327 msgid "Select a bookmark created earlier and jump to that position" 3283 3328 msgstr "Zu einem Lesezeichen springen" 3284 3329 3285 #: lib/Padre/Action/View.pm:3 203330 #: lib/Padre/Action/View.pm:315 3286 3331 msgid "&Full Screen" 3287 3332 msgstr "&Vollbild" 3288 3333 3289 #: lib/Padre/Action/View.pm:3 213334 #: lib/Padre/Action/View.pm:316 3290 3335 msgid "Set Padre in full screen mode" 3291 3336 msgstr "Vollbildmodus aktivieren" … … 3572 3617 3573 3618 #: lib/Padre/Action/Edit.pm:326 3574 msgid "Select to the matching opening or closing brace : { }, ( ), [ ], < >"3619 msgid "Select to the matching opening or closing brace" 3575 3620 msgstr "" 3576 3621 "&AuswÀhlen bis zur passenden öffnenden oder schlieÃenden Klammer: { }, ( ), " 3577 3622 "[ ], < >" 3578 3623 3579 #: lib/Padre/Action/Edit.pm:3 543624 #: lib/Padre/Action/Edit.pm:335 3580 3625 msgid "&Join lines" 3581 3626 msgstr "Zei&len zusammenfÃŒhren" 3582 3627 3583 #: lib/Padre/Action/Edit.pm:3 553628 #: lib/Padre/Action/Edit.pm:336 3584 3629 msgid "Join the next line to the end of the current line." 3585 3630 msgstr "Die aktuelle und die nÀchste Zeile zusammenfÃŒhren" 3586 3631 3587 #: lib/Padre/Action/Edit.pm:3 653632 #: lib/Padre/Action/Edit.pm:346 3588 3633 msgid "Insert Special Value" 3589 3634 msgstr "Speziellen Wert einfÃŒgen" 3590 3635 3591 #: lib/Padre/Action/Edit.pm:3 663636 #: lib/Padre/Action/Edit.pm:347 3592 3637 msgid "" 3593 3638 "Select a Date, Filename or other value and insert at the current location" … … 3596 3641 "Position einfÃŒgen" 3597 3642 3598 #: lib/Padre/Action/Edit.pm:3 793643 #: lib/Padre/Action/Edit.pm:360 3599 3644 msgid "Select and insert a snippet at the current location" 3600 3645 msgstr "Ein Sourcecode-StÃŒck an der aktuellen Stelle einfÃŒgen" 3601 3646 3602 #: lib/Padre/Action/Edit.pm:3 903647 #: lib/Padre/Action/Edit.pm:371 3603 3648 msgid "Insert From File..." 3604 3649 msgstr "EinfÃŒgen aus Datei..." 3605 3650 3606 #: lib/Padre/Action/Edit.pm:3 913651 #: lib/Padre/Action/Edit.pm:372 3607 3652 msgid "Select a file and insert its content at the current location" 3608 3653 msgstr "Eine Datei an der aktuellen Position einfÃŒgen" 3609 3654 3610 #: lib/Padre/Action/Edit.pm: 4023655 #: lib/Padre/Action/Edit.pm:383 3611 3656 msgid "&Toggle Comment" 3612 3657 msgstr "Kommen&tierung umschalten" 3613 3658 3614 #: lib/Padre/Action/Edit.pm: 4033659 #: lib/Padre/Action/Edit.pm:384 3615 3660 msgid "Comment out or remove comment out of selected lines in the document" 3616 3661 msgstr "Aktuelle oder ausgewÀhlte Zeile(n) ein/auskommentieren" 3617 3662 3618 #: lib/Padre/Action/Edit.pm: 4153663 #: lib/Padre/Action/Edit.pm:396 3619 3664 msgid "&Comment Selected Lines" 3620 3665 msgstr "AusgewÀhlte Zeilen: &Auskommentieren" 3621 3666 3622 #: lib/Padre/Action/Edit.pm: 4163667 #: lib/Padre/Action/Edit.pm:397 3623 3668 msgid "Comment out selected lines in the document" 3624 3669 msgstr "Auswahl auskommentieren" 3625 3670 3626 #: lib/Padre/Action/Edit.pm:4 273671 #: lib/Padre/Action/Edit.pm:408 3627 3672 msgid "&Uncomment Selected Lines" 3628 3673 msgstr "A&usgewÀhlte Zeilen: Kommentar entfernen" 3629 3674 3630 #: lib/Padre/Action/Edit.pm:4 283675 #: lib/Padre/Action/Edit.pm:409 3631 3676 msgid "Remove comment out of selected lines in the document" 3632 3677 msgstr "AusgewÀhlte Zeilen wieder einkommentieren" 3633 3678 3634 #: lib/Padre/Action/Edit.pm:4 393679 #: lib/Padre/Action/Edit.pm:420 3635 3680 msgid "Encode document to System Default" 3636 3681 msgstr "Dokument in Systemstandard kodieren" 3637 3682 3638 #: lib/Padre/Action/Edit.pm:4 403683 #: lib/Padre/Action/Edit.pm:421 3639 3684 msgid "" 3640 3685 "Change the encoding of the current document to the default of the operating " … … 3642 3687 msgstr "Die Kodierung der aktuellen Datei dem Betriebssystem-Standard anpassen" 3643 3688 3644 #: lib/Padre/Action/Edit.pm:4 503689 #: lib/Padre/Action/Edit.pm:431 3645 3690 msgid "Encode document to utf-8" 3646 3691 msgstr "Dokument nach utf-8 konvertieren" 3647 3692 3648 #: lib/Padre/Action/Edit.pm:4 513693 #: lib/Padre/Action/Edit.pm:432 3649 3694 msgid "Change the encoding of the current document to utf-8" 3650 3695 msgstr "Kodierung nach utf-8 Àndern" 3651 3696 3652 #: lib/Padre/Action/Edit.pm:4 623697 #: lib/Padre/Action/Edit.pm:443 3653 3698 msgid "Select an encoding and encode the document to that" 3654 3699 msgstr "Die Kodierung der Datei Àndern" 3655 3700 3656 #: lib/Padre/Action/Edit.pm:4 723701 #: lib/Padre/Action/Edit.pm:453 3657 3702 msgid "EOL to Windows" 3658 3703 msgstr "Zeilenenden ins Windows-Format" 3659 3704 3660 #: lib/Padre/Action/Edit.pm:4 743705 #: lib/Padre/Action/Edit.pm:455 3661 3706 msgid "" 3662 3707 "Change the end of line character of the current document to those used in " … … 3664 3709 msgstr "Zeilenenden in dieser Datei in das Windows-Format Àndern" 3665 3710 3666 #: lib/Padre/Action/Edit.pm:4 833711 #: lib/Padre/Action/Edit.pm:464 3667 3712 msgid "EOL to Unix" 3668 3713 msgstr "Zeilenenden ins Unix-Format" 3669 3714 3670 #: lib/Padre/Action/Edit.pm:4 853715 #: lib/Padre/Action/Edit.pm:466 3671 3716 msgid "" 3672 3717 "Change the end of line character of the current document to that used on " … … 3674 3719 msgstr "Unix-/Linux-/Mac-OS-X-Zeilenenden verwenden" 3675 3720 3676 #: lib/Padre/Action/Edit.pm:4 943721 #: lib/Padre/Action/Edit.pm:475 3677 3722 msgid "EOL to Mac Classic" 3678 3723 msgstr "Zeilenende ins Mac-Format" 3679 3724 3680 #: lib/Padre/Action/Edit.pm:4 953725 #: lib/Padre/Action/Edit.pm:476 3681 3726 msgid "" 3682 3727 "Change the end of line character of the current document to that used on Mac " … … 3684 3729 msgstr "Alten Mac-Standard fÃŒr Zeilenenden verwenden" 3685 3730 3686 #: lib/Padre/Action/Edit.pm: 5053731 #: lib/Padre/Action/Edit.pm:486 3687 3732 msgid "Tabs to Spaces..." 3688 3733 msgstr "In Leerzeichen wandeln..." 3689 3734 3690 #: lib/Padre/Action/Edit.pm: 5063735 #: lib/Padre/Action/Edit.pm:487 3691 3736 msgid "Convert all tabs to spaces in the current document" 3692 3737 msgstr "Alle Tabulatorzeichen in Leerzeichen konvertieren" 3693 3738 3694 #: lib/Padre/Action/Edit.pm: 5153739 #: lib/Padre/Action/Edit.pm:496 3695 3740 msgid "Spaces to Tabs..." 3696 3741 msgstr "Leerzeichen in Tabulatoren umwandeln..." 3697 3742 3698 #: lib/Padre/Action/Edit.pm: 5163743 #: lib/Padre/Action/Edit.pm:497 3699 3744 msgid "Convert all the spaces to tabs in the current document" 3700 3745 msgstr "Alle Leerzeichen zu Tabulatorzeichen konvertieren" 3701 3746 3702 #: lib/Padre/Action/Edit.pm:5 253747 #: lib/Padre/Action/Edit.pm:506 3703 3748 msgid "Delete Trailing Spaces" 3704 3749 msgstr "Entferne Leerzeichen am Ende" 3705 3750 3706 #: lib/Padre/Action/Edit.pm:5 263751 #: lib/Padre/Action/Edit.pm:507 3707 3752 msgid "Remove the spaces from the end of the selected lines" 3708 3753 msgstr "Leerzeichen am Ende der ausgewÀhlten Zeilen entfernen" 3709 3754 3710 #: lib/Padre/Action/Edit.pm:5 353755 #: lib/Padre/Action/Edit.pm:516 3711 3756 msgid "Delete Leading Spaces" 3712 3757 msgstr "Entferne Leerzeichen am Anfang" 3713 3758 3714 #: lib/Padre/Action/Edit.pm:5 363759 #: lib/Padre/Action/Edit.pm:517 3715 3760 msgid "Remove the spaces from the beginning of the selected lines" 3716 3761 msgstr "Leerzeichen am Anfang der ausgewÀhlten Zeilen entfernen" 3717 3762 3718 #: lib/Padre/Action/Edit.pm:5 463763 #: lib/Padre/Action/Edit.pm:527 3719 3764 msgid "Upper All" 3720 3765 msgstr "Alles in GroÃbuchstaben" 3721 3766 3722 #: lib/Padre/Action/Edit.pm:5 473767 #: lib/Padre/Action/Edit.pm:528 3723 3768 msgid "Change the current selection to upper case" 3724 3769 msgstr "Aktuelle Auswahl in GroÃbuchstaben Àndern" 3725 3770 3726 #: lib/Padre/Action/Edit.pm:5 573771 #: lib/Padre/Action/Edit.pm:538 3727 3772 msgid "Lower All" 3728 3773 msgstr "Alles in Kleinbuchstaben" 3729 3774 3730 #: lib/Padre/Action/Edit.pm:5 583775 #: lib/Padre/Action/Edit.pm:539 3731 3776 msgid "Change the current selection to lower case" 3732 3777 msgstr "Aktuelle Auswahl in Kleinbuchstaben Àndern" 3733 3778 3734 #: lib/Padre/Action/Edit.pm:5 683779 #: lib/Padre/Action/Edit.pm:549 3735 3780 msgid "Diff to Saved Version" 3736 3781 msgstr "Diff zur gespeicherten Version" 3737 3782 3738 #: lib/Padre/Action/Edit.pm:5 703783 #: lib/Padre/Action/Edit.pm:551 3739 3784 msgid "" 3740 3785 "Compare the file in the editor to that on the disk and show the diff in the " … … 3744 3789 "Ãnderungen anzeigen" 3745 3790 3746 #: lib/Padre/Action/Edit.pm:5 783791 #: lib/Padre/Action/Edit.pm:559 3747 3792 msgid "Apply Diff to File" 3748 3793 msgstr "Diff auf Datei anwenden" 3749 3794 3750 #: lib/Padre/Action/Edit.pm:5 793795 #: lib/Padre/Action/Edit.pm:560 3751 3796 msgid "Apply a patch file to the current document" 3752 3797 msgstr "Ein Patch auf das aktuelle Dokument anwenden" 3753 3798 3754 #: lib/Padre/Action/Edit.pm:5 873799 #: lib/Padre/Action/Edit.pm:568 3755 3800 msgid "Apply Diff to Project" 3756 3801 msgstr "Diff auf Projekt anwenden" 3757 3802 3758 #: lib/Padre/Action/Edit.pm:5 883803 #: lib/Padre/Action/Edit.pm:569 3759 3804 msgid "Apply a patch file to the current project" 3760 3805 msgstr "Ein Patch auf das aktuelle Projekt anwenden" 3761 3806 3762 #: lib/Padre/Action/Edit.pm:5 993807 #: lib/Padre/Action/Edit.pm:580 3763 3808 msgid "Filter through external tool" 3764 3809 msgstr "Externen Filter benutzen" 3765 3810 3766 #: lib/Padre/Action/Edit.pm: 6003811 #: lib/Padre/Action/Edit.pm:581 3767 3812 msgid "" 3768 3813 "Filters the selection (or the whole document) through any external command." … … 3771 3816 "Dokument." 3772 3817 3773 #: lib/Padre/Action/Edit.pm: 6093818 #: lib/Padre/Action/Edit.pm:590 3774 3819 msgid "Open the regular expression editing window" 3775 3820 msgstr "Den Editor fÃŒr regulÀre AusdrÃŒcke anzeigen" 3776 3821 3777 #: lib/Padre/Action/Edit.pm:6 193822 #: lib/Padre/Action/Edit.pm:600 3778 3823 msgid "Show as hexa" 3779 3824 msgstr "Als Hex zeigen" 3780 3825 3781 #: lib/Padre/Action/Edit.pm:6 203826 #: lib/Padre/Action/Edit.pm:601 3782 3827 msgid "Show the ASCII values of the selected text in hexa in the output window" 3783 3828 msgstr "Hexadezimaldarstellung des aktuell ausgewÀhlten Textes anzeigen" 3784 3829 3785 #: lib/Padre/Action/Edit.pm:6 293830 #: lib/Padre/Action/Edit.pm:610 3786 3831 msgid "Show as decimal" 3787 3832 msgstr "Zeige als Dezimalzahlen" 3788 3833 3789 #: lib/Padre/Action/Edit.pm:6 303834 #: lib/Padre/Action/Edit.pm:611 3790 3835 msgid "" 3791 3836 "Show the ASCII values of the selected text in decimal numbers in the output " … … 3793 3838 msgstr "Dezimaldarstellung des ausgewÀhlten Textes anzeigen" 3794 3839 3795 #: lib/Padre/Action/Edit.pm:6 403840 #: lib/Padre/Action/Edit.pm:621 3796 3841 msgid "Edit the user preferences" 3797 3842 msgstr "Benutzereinstellungen bearbeiten" … … 4090 4135 msgstr "Klammern automatisch ergÀnzen" 4091 4136 4092 #: lib/Padre/Action/Tools.pm:3 84137 #: lib/Padre/Action/Tools.pm:39 4093 4138 msgid "Show the key bindings dialog to configure Padre shortcuts" 4094 4139 msgstr "Konfiguriere die Tastenkombinationen fÃŒr Padre" 4095 4140 4096 #: lib/Padre/Action/Tools.pm:4 84141 #: lib/Padre/Action/Tools.pm:49 4097 4142 msgid "Show the Padre plug-in manager to enable or disable plug-ins" 4098 4143 msgstr "Plugins können im Plugin-Manager aktiviert und deaktiviert werden." 4099 4144 4100 #: lib/Padre/Action/Tools.pm:6 34145 #: lib/Padre/Action/Tools.pm:64 4101 4146 msgid "Plug-in List (CPAN)" 4102 4147 msgstr "Plugin-Liste (CPAN)" 4103 4148 4104 #: lib/Padre/Action/Tools.pm:6 44149 #: lib/Padre/Action/Tools.pm:65 4105 4150 msgid "Open browser to a CPAN search showing the Padre::Plugin packages" 4106 4151 msgstr "Padre::Plugin - Liste im Browser anzeigen" 4107 4152 4108 #: lib/Padre/Action/Tools.pm:7 24153 #: lib/Padre/Action/Tools.pm:73 4109 4154 msgid "Edit My Plug-in" 4110 4155 msgstr "Editiere 'Mein Plugin'" 4111 4156 4112 #: lib/Padre/Action/Tools.pm:7 34157 #: lib/Padre/Action/Tools.pm:74 4113 4158 msgid "" 4114 4159 "My Plug-in is a plug-in where developers could extend their Padre " … … 4118 4163 "erweitern." 4119 4164 4120 #: lib/Padre/Action/Tools.pm: 794165 #: lib/Padre/Action/Tools.pm:80 4121 4166 msgid "Could not find the Padre::Plugin::My plug-in" 4122 4167 msgstr "Konnte das Plugin Padre::Plugin::My nicht finden" 4123 4168 4124 #: lib/Padre/Action/Tools.pm: 894169 #: lib/Padre/Action/Tools.pm:90 4125 4170 msgid "Reload My Plug-in" 4126 4171 msgstr "Lade 'Mein Plugin' erneut" 4127 4172 4128 #: lib/Padre/Action/Tools.pm:9 04173 #: lib/Padre/Action/Tools.pm:91 4129 4174 msgid "This function reloads the My plug-in without restarting Padre" 4130 4175 msgstr "" … … 4132 4177 "werden muss." 4133 4178 4134 #: lib/Padre/Action/Tools.pm:9 8 lib/Padre/Action/Tools.pm:1024135 #: lib/Padre/Action/Tools.pm:10 34179 #: lib/Padre/Action/Tools.pm:99 lib/Padre/Action/Tools.pm:103 4180 #: lib/Padre/Action/Tools.pm:104 4136 4181 msgid "Reset My plug-in" 4137 4182 msgstr "Setze 'Mein Plugin' zurÃŒck" 4138 4183 4139 #: lib/Padre/Action/Tools.pm: 994184 #: lib/Padre/Action/Tools.pm:100 4140 4185 msgid "Reset the My plug-in to the default" 4141 4186 msgstr "Setzt My-Plugin auf den Standard-Dateiinhalt zurÃŒck." 4142 4187 4143 #: lib/Padre/Action/Tools.pm:11 84188 #: lib/Padre/Action/Tools.pm:119 4144 4189 msgid "Reload All Plug-ins" 4145 4190 msgstr "Lade alle Plugins neu" 4146 4191 4147 #: lib/Padre/Action/Tools.pm:1 194192 #: lib/Padre/Action/Tools.pm:120 4148 4193 msgid "Reload all plug-ins from disk" 4149 4194 msgstr "Lade alle Plugins neu" 4150 4195 4151 #: lib/Padre/Action/Tools.pm:12 74196 #: lib/Padre/Action/Tools.pm:128 4152 4197 msgid "(Re)load Current Plug-in" 4153 4198 msgstr "Lade aktuelles Plugin (erneut)" 4154 4199 4155 #: lib/Padre/Action/Tools.pm:12 84200 #: lib/Padre/Action/Tools.pm:129 4156 4201 msgid "Reloads (or initially loads) the current plug-in" 4157 4202 msgstr "LÀdt das aktuelle Plugin oder aktualisiert es" 4158 4203 4159 #: lib/Padre/Action/Tools.pm:14 64204 #: lib/Padre/Action/Tools.pm:147 4160 4205 msgid "Install CPAN Module" 4161 4206 msgstr "Installiere CPAN-Modul" 4162 4207 4163 #: lib/Padre/Action/Tools.pm:14 74208 #: lib/Padre/Action/Tools.pm:148 4164 4209 msgid "Install a Perl module from CPAN" 4165 4210 msgstr "Ein Perl-Modul vom CPAN installieren" 4166 4211 4167 #: lib/Padre/Action/Tools.pm:1 594212 #: lib/Padre/Action/Tools.pm:160 4168 4213 msgid "Install Local Distribution" 4169 4214 msgstr "Installiere Distribution von lokalem Ort" 4170 4215 4171 #: lib/Padre/Action/Tools.pm:16 04216 #: lib/Padre/Action/Tools.pm:161 4172 4217 msgid "Using CPAN.pm to install a CPAN like package opened locally" 4173 4218 msgstr "Ein lokales CPAN-Paket mittels CPAN.pm installieren" 4174 4219 4175 #: lib/Padre/Action/Tools.pm:16 84220 #: lib/Padre/Action/Tools.pm:169 4176 4221 msgid "Install Remote Distribution" 4177 4222 msgstr "Installiere Distribution von entferntem Ort" 4178 4223 4179 #: lib/Padre/Action/Tools.pm:1 694224 #: lib/Padre/Action/Tools.pm:170 4180 4225 msgid "Using pip to download a tar.gz file and install it using CPAN.pm" 4181 4226 msgstr "Eine tar.gz-Datei runterladen und mit CPAN installieren" 4182 4227 4183 #: lib/Padre/Action/Tools.pm:17 74228 #: lib/Padre/Action/Tools.pm:178 4184 4229 msgid "Open CPAN Config File" 4185 4230 msgstr "Ãffne CPAN-Konfigurationsdatei" 4186 4231 4187 #: lib/Padre/Action/Tools.pm:17 84232 #: lib/Padre/Action/Tools.pm:179 4188 4233 msgid "Open CPAN::MyConfig.pm for manual editing by experts" 4189 4234 msgstr "CPAN-Konfiguration aufrufen" 4190 4235 4191 #: lib/Padre/Action/Tools.pm: 1974236 #: lib/Padre/Action/Tools.pm:202 4192 4237 msgid "Select distribution to install" 4193 4238 msgstr "Distribution zur Installation auswÀhlen" 4194 4239 4195 #: lib/Padre/Action/Tools.pm:21 0 lib/Padre/Action/Tools.pm:2354240 #: lib/Padre/Action/Tools.pm:215 lib/Padre/Action/Tools.pm:240 4196 4241 msgid "Did not provide a distribution" 4197 4242 msgstr "Stellte keine Distribution bereit" 4198 4243 4199 #: lib/Padre/Action/Tools.pm:2 254244 #: lib/Padre/Action/Tools.pm:230 4200 4245 msgid "" 4201 4246 "Enter URL to install\n" … … 4205 4250 "z.B. http://svn.ali.as/cpan/releases/Config-Tiny-2.00.tar.gz" 4206 4251 4207 #: lib/Padre/Action/Tools.pm:2 524208 msgid " pipis unexpectedly not installed"4209 msgstr " pipist wider Erwarten nicht installiert"4210 4211 #: lib/Padre/Action/Tools.pm: 2984252 #: lib/Padre/Action/Tools.pm:277 4253 msgid "cpanm is unexpectedly not installed" 4254 msgstr "cpanm ist wider Erwarten nicht installiert" 4255 4256 #: lib/Padre/Action/Tools.pm:320 4212 4257 msgid "Failed to find your CPAN configuration" 4213 4258 msgstr "Konnte CPAN-Konfiguration nicht finden" … … 4387 4432 #: lib/Padre/Action/File.pm:298 4388 4433 msgid "Save &As" 4389 msgstr "Speichern & als..."4434 msgstr "Speichern &unter..." 4390 4435 4391 4436 #: lib/Padre/Action/File.pm:299 … … 4563 4608 msgid "&GoTo Element" 4564 4609 msgstr "&Gehe zu Element" 4610 4611 #~ msgid "Yesterday" 4612 #~ msgstr "Gestern" 4613 4614 #~ msgid "Tomorrow" 4615 #~ msgstr "Morgen" 4616 4617 #~ msgid "Number" 4618 #~ msgstr "Zahl" 4565 4619 4566 4620 #~ msgid "Norwegian (Norway)" -
trunk/Padre/share/locale/messages.pot
r11097 r11110 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2010-03-1 3 13:25+0100\n"11 "POT-Creation-Date: 2010-03-14 15:47+0100\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 164 164 msgstr "" 165 165 166 #: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm: 186166 #: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm:210 167 167 #: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:96 168 #: lib/Padre/Wx/Main.pm:27 17lib/Padre/Wx/Main.pm:4238168 #: lib/Padre/Wx/Main.pm:2734 lib/Padre/Wx/Main.pm:4238 169 169 #: lib/Padre/Wx/Directory/TreeCtrl.pm:440 170 170 #: lib/Padre/Wx/Directory/TreeCtrl.pm:474 … … 199 199 msgstr "" 200 200 201 #: lib/Padre/TaskManager.pm:63 1201 #: lib/Padre/TaskManager.pm:630 202 202 #, perl-format 203 203 msgid "%s worker threads are running.\n" 204 204 msgstr "" 205 205 206 #: lib/Padre/TaskManager.pm:63 3206 #: lib/Padre/TaskManager.pm:632 207 207 msgid "Currently, no background tasks are being executed.\n" 208 208 msgstr "" 209 209 210 #: lib/Padre/TaskManager.pm:63 9210 #: lib/Padre/TaskManager.pm:638 211 211 msgid "The following tasks are currently executing in the background:\n" 212 212 msgstr "" 213 213 214 #: lib/Padre/TaskManager.pm:64 5214 #: lib/Padre/TaskManager.pm:644 215 215 #, perl-format 216 216 msgid "" … … 219 219 msgstr "" 220 220 221 #: lib/Padre/TaskManager.pm:65 7221 #: lib/Padre/TaskManager.pm:656 222 222 #, perl-format 223 223 msgid "" … … 285 285 msgstr "" 286 286 287 #: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:21 29288 #: lib/Padre/Wx/Main.pm:2 184 lib/Padre/Wx/Main.pm:2236287 #: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:2146 288 #: lib/Padre/Wx/Main.pm:2201 lib/Padre/Wx/Main.pm:2253 289 289 msgid "No document open" 290 290 msgstr "" … … 471 471 msgstr "" 472 472 473 #: lib/Padre/Wx/Editor.pm:1 373473 #: lib/Padre/Wx/Editor.pm:1563 474 474 msgid "You must select a range of lines" 475 475 msgstr "" 476 476 477 #: lib/Padre/Wx/Editor.pm:1 389477 #: lib/Padre/Wx/Editor.pm:1579 478 478 msgid "First character of selection must be a non-word character to align" 479 479 msgstr "" … … 483 483 msgstr "" 484 484 485 #: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:23 42485 #: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:2359 486 486 #, perl-format 487 487 msgid "" … … 597 597 msgstr "" 598 598 599 #: lib/Padre/Wx/Bottom.pm:5 0599 #: lib/Padre/Wx/Bottom.pm:52 600 600 msgid "Output View" 601 601 msgstr "" … … 623 623 624 624 #: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:94 625 #: lib/Padre/Wx/Main.pm:24 69lib/Padre/Wx/Main.pm:3109625 #: lib/Padre/Wx/Main.pm:2486 lib/Padre/Wx/Main.pm:3109 626 626 #: lib/Padre/Wx/Dialog/Warning.pm:64 lib/Padre/Task/SyntaxChecker.pm:183 627 627 msgid "Warning" … … 644 644 msgstr "" 645 645 646 #: lib/Padre/Wx/Left.pm: 49646 #: lib/Padre/Wx/Left.pm:51 647 647 msgid "Project Tools" 648 648 msgstr "" 649 649 650 #: lib/Padre/Wx/Right.pm: 49650 #: lib/Padre/Wx/Right.pm:51 651 651 msgid "Document Tools" 652 652 msgstr "" … … 688 688 msgstr "" 689 689 690 #: lib/Padre/Wx/Main.pm: 685690 #: lib/Padre/Wx/Main.pm:702 691 691 #, perl-format 692 692 msgid "No such session %s" 693 693 msgstr "" 694 694 695 #: lib/Padre/Wx/Main.pm:8 60695 #: lib/Padre/Wx/Main.pm:877 696 696 msgid "Failed to create server" 697 697 msgstr "" 698 698 699 #: lib/Padre/Wx/Main.pm:2 099699 #: lib/Padre/Wx/Main.pm:2116 700 700 msgid "Command line" 701 701 msgstr "" 702 702 703 #: lib/Padre/Wx/Main.pm:21 00703 #: lib/Padre/Wx/Main.pm:2117 704 704 msgid "Run setup" 705 705 msgstr "" 706 706 707 #: lib/Padre/Wx/Main.pm:21 35 lib/Padre/Wx/Main.pm:2196708 #: lib/Padre/Wx/Main.pm:22 51707 #: lib/Padre/Wx/Main.pm:2152 lib/Padre/Wx/Main.pm:2213 708 #: lib/Padre/Wx/Main.pm:2268 709 709 msgid "Could not find project root" 710 710 msgstr "" 711 711 712 #: lib/Padre/Wx/Main.pm:21 62712 #: lib/Padre/Wx/Main.pm:2179 713 713 msgid "No Build.PL nor Makefile.PL nor dist.ini found" 714 714 msgstr "" 715 715 716 #: lib/Padre/Wx/Main.pm:21 65716 #: lib/Padre/Wx/Main.pm:2182 717 717 msgid "Could not find perl executable" 718 718 msgstr "" 719 719 720 #: lib/Padre/Wx/Main.pm:2 190 lib/Padre/Wx/Main.pm:2242720 #: lib/Padre/Wx/Main.pm:2207 lib/Padre/Wx/Main.pm:2259 721 721 msgid "Current document has no filename" 722 722 msgstr "" 723 723 724 #: lib/Padre/Wx/Main.pm:22 45724 #: lib/Padre/Wx/Main.pm:2262 725 725 msgid "Current document is not a .t file" 726 726 msgstr "" 727 727 728 #: lib/Padre/Wx/Main.pm:24 01728 #: lib/Padre/Wx/Main.pm:2418 729 729 #, perl-format 730 730 msgid "Failed to start '%s' command" 731 731 msgstr "" 732 732 733 #: lib/Padre/Wx/Main.pm:24 26733 #: lib/Padre/Wx/Main.pm:2443 734 734 msgid "No open document" 735 735 msgstr "" 736 736 737 #: lib/Padre/Wx/Main.pm:24 43737 #: lib/Padre/Wx/Main.pm:2460 738 738 msgid "No execution mode was defined for this document" 739 739 msgstr "" 740 740 741 #: lib/Padre/Wx/Main.pm:24 68741 #: lib/Padre/Wx/Main.pm:2485 742 742 msgid "Do you want to continue?" 743 743 msgstr "" 744 744 745 #: lib/Padre/Wx/Main.pm:25 54745 #: lib/Padre/Wx/Main.pm:2571 746 746 #, perl-format 747 747 msgid "Opening session %s..." 748 748 msgstr "" 749 749 750 #: lib/Padre/Wx/Main.pm:2 583750 #: lib/Padre/Wx/Main.pm:2600 751 751 msgid "Restore focus..." 752 752 msgstr "" 753 753 754 #: lib/Padre/Wx/Main.pm:26 66754 #: lib/Padre/Wx/Main.pm:2683 755 755 msgid "Message" 756 756 msgstr "" … … 1417 1417 #: lib/Padre/Wx/Dialog/SessionManager.pm:225 1418 1418 #: lib/Padre/Wx/Dialog/PluginManager.pm:66 1419 #: lib/Padre/Wx/Dialog/SpecialValues.pm:23 1419 1420 msgid "Name" 1420 1421 msgstr "" … … 1459 1460 msgstr "" 1460 1461 1461 #: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:4 71462 #: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:48 1462 1463 msgid "Plug-in Manager" 1463 1464 msgstr "" … … 1482 1483 1483 1484 #: lib/Padre/Wx/Dialog/PluginManager.pm:131 1484 #: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:6 391485 #: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:620 1485 1486 msgid "Preferences" 1486 1487 msgstr "" … … 1560 1561 1561 1562 #: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:387 1563 #: lib/Padre/Wx/Dialog/SpecialValues.pm:21 1562 1564 #: lib/Padre/Wx/Dialog/WindowList.pm:226 1563 1565 msgid "File" … … 1658 1660 msgstr "" 1659 1661 1660 #: lib/Padre/Wx/Dialog/SpecialValues.pm:37 lib/Padre/Wx/Dialog/Snippets.pm:22 1662 #: lib/Padre/Wx/Dialog/SpecialValues.pm:15 1663 msgid "Date/Time" 1664 msgstr "" 1665 1666 #: lib/Padre/Wx/Dialog/SpecialValues.pm:16 1667 msgid "Now" 1668 msgstr "" 1669 1670 #: lib/Padre/Wx/Dialog/SpecialValues.pm:17 1671 msgid "Today" 1672 msgstr "" 1673 1674 #: lib/Padre/Wx/Dialog/SpecialValues.pm:18 1675 msgid "Year" 1676 msgstr "" 1677 1678 #: lib/Padre/Wx/Dialog/SpecialValues.pm:19 1679 msgid "Epoch" 1680 msgstr "" 1681 1682 #: lib/Padre/Wx/Dialog/SpecialValues.pm:22 1683 msgid "Size" 1684 msgstr "" 1685 1686 #: lib/Padre/Wx/Dialog/SpecialValues.pm:24 1687 msgid "Number of lines" 1688 msgstr "" 1689 1690 #: lib/Padre/Wx/Dialog/SpecialValues.pm:36 lib/Padre/Wx/Dialog/Snippets.pm:22 1661 1691 msgid "Class:" 1662 1692 msgstr "" 1663 1693 1664 #: lib/Padre/Wx/Dialog/SpecialValues.pm:3 81694 #: lib/Padre/Wx/Dialog/SpecialValues.pm:37 1665 1695 msgid "Special Value:" 1666 1696 msgstr "" 1667 1697 1668 #: lib/Padre/Wx/Dialog/SpecialValues.pm:4 1lib/Padre/Wx/Dialog/Snippets.pm:241698 #: lib/Padre/Wx/Dialog/SpecialValues.pm:40 lib/Padre/Wx/Dialog/Snippets.pm:24 1669 1699 #: lib/Padre/Wx/Dialog/RegexEditor.pm:234 1670 1700 msgid "&Insert" 1671 1701 msgstr "" 1672 1702 1673 #: lib/Padre/Wx/Dialog/SpecialValues.pm:5 41703 #: lib/Padre/Wx/Dialog/SpecialValues.pm:53 1674 1704 msgid "Insert Special Values" 1675 1705 msgstr "" … … 2058 2088 msgstr "" 2059 2089 2060 #: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:4 612090 #: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:442 2061 2091 msgid "Encode document to..." 2062 2092 msgstr "" … … 2248 2278 msgstr "" 2249 2279 2250 #: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:3 72280 #: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:38 2251 2281 msgid "Key Bindings" 2252 2282 msgstr "" … … 2280 2310 msgstr "" 2281 2311 2282 #: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:3 782312 #: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:359 2283 2313 msgid "Snippets" 2284 2314 msgstr "" … … 2366 2396 msgstr "" 2367 2397 2368 #: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm: 6082398 #: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm:589 2369 2399 msgid "Regex Editor" 2370 2400 msgstr "" … … 2625 2655 msgstr "" 2626 2656 2627 #: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:29 62657 #: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:291 2628 2658 msgid "Set Bookmark" 2629 2659 msgstr "" … … 2950 2980 msgstr "" 2951 2981 2952 #: lib/Padre/Action/Run.pm:39 2982 #: lib/Padre/Action/Internal.pm:56 2983 msgid "Delay the action queue for 10 seconds" 2984 msgstr "" 2985 2986 #: lib/Padre/Action/Internal.pm:57 2987 msgid "Stops processing of other action queue items for 10 seconds" 2988 msgstr "" 2989 2990 #: lib/Padre/Action/Internal.pm:64 2991 msgid "Delay the action queue for 30 seconds" 2992 msgstr "" 2993 2994 #: lib/Padre/Action/Internal.pm:65 2995 msgid "Stops processing of other action queue items for 30 seconds" 2996 msgstr "" 2997 2998 #: lib/Padre/Action/Run.pm:43 2953 2999 msgid "Run Script" 2954 3000 msgstr "" 2955 3001 2956 #: lib/Padre/Action/Run.pm:4 03002 #: lib/Padre/Action/Run.pm:44 2957 3003 msgid "Runs the current document and shows its output in the output panel." 2958 3004 msgstr "" 2959 3005 2960 #: lib/Padre/Action/Run.pm:5 53006 #: lib/Padre/Action/Run.pm:59 2961 3007 msgid "Run Script (debug info)" 2962 3008 msgstr "" 2963 3009 2964 #: lib/Padre/Action/Run.pm: 563010 #: lib/Padre/Action/Run.pm:60 2965 3011 msgid "Run the current document but include debug info in the output." 2966 3012 msgstr "" 2967 3013 2968 #: lib/Padre/Action/Run.pm:6 53014 #: lib/Padre/Action/Run.pm:69 2969 3015 msgid "Run Command" 2970 3016 msgstr "" 2971 3017 2972 #: lib/Padre/Action/Run.pm: 663018 #: lib/Padre/Action/Run.pm:70 2973 3019 msgid "Runs a shell command and shows the output." 2974 3020 msgstr "" 2975 3021 2976 #: lib/Padre/Action/Run.pm: 763022 #: lib/Padre/Action/Run.pm:80 2977 3023 msgid "Run Build and Tests" 2978 3024 msgstr "" 2979 3025 2980 #: lib/Padre/Action/Run.pm: 773026 #: lib/Padre/Action/Run.pm:81 2981 3027 msgid "Builds the current project, then run all tests." 2982 3028 msgstr "" 2983 3029 2984 #: lib/Padre/Action/Run.pm: 883030 #: lib/Padre/Action/Run.pm:92 2985 3031 msgid "Run Tests" 2986 3032 msgstr "" 2987 3033 2988 #: lib/Padre/Action/Run.pm:9 03034 #: lib/Padre/Action/Run.pm:94 2989 3035 msgid "" 2990 3036 "Run all tests for the current project or document and show the results in " … … 2992 3038 msgstr "" 2993 3039 2994 #: lib/Padre/Action/Run.pm:1 093040 #: lib/Padre/Action/Run.pm:113 2995 3041 msgid "Run This Test" 2996 3042 msgstr "" 2997 3043 2998 #: lib/Padre/Action/Run.pm:11 03044 #: lib/Padre/Action/Run.pm:114 2999 3045 msgid "Run the current test if the current document is a test. (prove -bv)" 3000 3046 msgstr "" 3001 3047 3002 #: lib/Padre/Action/Run.pm:12 23048 #: lib/Padre/Action/Run.pm:126 3003 3049 msgid "Stop execution" 3004 3050 msgstr "" 3005 3051 3006 #: lib/Padre/Action/Run.pm:12 33052 #: lib/Padre/Action/Run.pm:127 3007 3053 msgid "Stop a running task." 3008 3054 msgstr "" 3009 3055 3010 #: lib/Padre/Action/View.pm: 343056 #: lib/Padre/Action/View.pm:29 3011 3057 msgid "Lock User Interface" 3012 3058 msgstr "" 3013 3059 3014 #: lib/Padre/Action/View.pm:3 53060 #: lib/Padre/Action/View.pm:30 3015 3061 msgid "Allow the user to move around some of the windows" 3016 3062 msgstr "" 3017 3063 3018 #: lib/Padre/Action/View.pm:4 53064 #: lib/Padre/Action/View.pm:40 3019 3065 msgid "Show Output" 3020 3066 msgstr "" 3021 3067 3022 #: lib/Padre/Action/View.pm:4 73068 #: lib/Padre/Action/View.pm:42 3023 3069 msgid "" 3024 3070 "Show the window displaying the standard output and standard error of the " … … 3026 3072 msgstr "" 3027 3073 3028 #: lib/Padre/Action/View.pm:5 63074 #: lib/Padre/Action/View.pm:51 3029 3075 msgid "Show Functions" 3030 3076 msgstr "" 3031 3077 3032 #: lib/Padre/Action/View.pm:5 73078 #: lib/Padre/Action/View.pm:52 3033 3079 msgid "Show a window listing all the functions in the current document" 3034 3080 msgstr "" 3035 3081 3036 #: lib/Padre/Action/View.pm: 713082 #: lib/Padre/Action/View.pm:66 3037 3083 msgid "Show To-do List" 3038 3084 msgstr "" 3039 3085 3040 #: lib/Padre/Action/View.pm: 723086 #: lib/Padre/Action/View.pm:67 3041 3087 msgid "Show a window listing all todo items in the current document" 3042 3088 msgstr "" 3043 3089 3044 #: lib/Padre/Action/View.pm:8 73090 #: lib/Padre/Action/View.pm:82 3045 3091 msgid "Show Outline" 3046 3092 msgstr "" 3047 3093 3048 #: lib/Padre/Action/View.pm:8 83094 #: lib/Padre/Action/View.pm:83 3049 3095 msgid "" 3050 3096 "Show a window listing all the parts of the current file (functions, pragmas, " … … 3052 3098 msgstr "" 3053 3099 3054 #: lib/Padre/Action/View.pm:9 73100 #: lib/Padre/Action/View.pm:92 3055 3101 msgid "Show Directory Tree" 3056 3102 msgstr "" 3057 3103 3058 #: lib/Padre/Action/View.pm:9 83104 #: lib/Padre/Action/View.pm:93 3059 3105 msgid "Show a window with a directory browser of the current project" 3060 3106 msgstr "" 3061 3107 3062 #: lib/Padre/Action/View.pm:10 73108 #: lib/Padre/Action/View.pm:102 3063 3109 msgid "Show Syntax Check" 3064 3110 msgstr "" 3065 3111 3066 #: lib/Padre/Action/View.pm:10 83112 #: lib/Padre/Action/View.pm:103 3067 3113 msgid "" 3068 3114 "Turn on syntax checking of the current document and show output in a window" 3069 3115 msgstr "" 3070 3116 3071 #: lib/Padre/Action/View.pm:11 73117 #: lib/Padre/Action/View.pm:112 3072 3118 msgid "Show Error List" 3073 3119 msgstr "" 3074 3120 3075 #: lib/Padre/Action/View.pm:11 83121 #: lib/Padre/Action/View.pm:113 3076 3122 msgid "Show the list of errors received during execution of a script" 3077 3123 msgstr "" 3078 3124 3079 #: lib/Padre/Action/View.pm:12 73125 #: lib/Padre/Action/View.pm:122 3080 3126 msgid "Show Status Bar" 3081 3127 msgstr "" 3082 3128 3083 #: lib/Padre/Action/View.pm:12 83129 #: lib/Padre/Action/View.pm:123 3084 3130 msgid "Show/hide the status bar at the bottom of the screen" 3085 3131 msgstr "" 3086 3132 3087 #: lib/Padre/Action/View.pm:13 73133 #: lib/Padre/Action/View.pm:132 3088 3134 msgid "Show Toolbar" 3089 3135 msgstr "" 3090 3136 3091 #: lib/Padre/Action/View.pm:13 83137 #: lib/Padre/Action/View.pm:133 3092 3138 msgid "Show/hide the toolbar at the top of the editor" 3093 3139 msgstr "" 3094 3140 3095 #: lib/Padre/Action/View.pm:14 83141 #: lib/Padre/Action/View.pm:143 3096 3142 msgid "Show Line Numbers" 3097 3143 msgstr "" 3098 3144 3099 #: lib/Padre/Action/View.pm:14 93145 #: lib/Padre/Action/View.pm:144 3100 3146 msgid "" 3101 3147 "Show/hide the line numbers of all the documents on the left side of the " … … 3103 3149 msgstr "" 3104 3150 3105 #: lib/Padre/Action/View.pm:15 83151 #: lib/Padre/Action/View.pm:153 3106 3152 msgid "Show Code Folding" 3107 3153 msgstr "" 3108 3154 3109 #: lib/Padre/Action/View.pm:15 93155 #: lib/Padre/Action/View.pm:154 3110 3156 msgid "" 3111 3157 "Show/hide a vertical line on the left hand side of the window to allow " … … 3113 3159 msgstr "" 3114 3160 3115 #: lib/Padre/Action/View.pm:16 83161 #: lib/Padre/Action/View.pm:163 3116 3162 msgid "Fold all" 3117 3163 msgstr "" 3118 3164 3119 #: lib/Padre/Action/View.pm:16 93165 #: lib/Padre/Action/View.pm:164 3120 3166 msgid "Fold all the blocks that can be folded (need folding to be enabled)" 3121 3167 msgstr "" 3122 3168 3123 #: lib/Padre/Action/View.pm:17 83169 #: lib/Padre/Action/View.pm:173 3124 3170 msgid "Unfold all" 3125 3171 msgstr "" 3126 3172 3127 #: lib/Padre/Action/View.pm:17 93173 #: lib/Padre/Action/View.pm:174 3128 3174 msgid "Unfold all the blocks that can be folded (need folding to be enabled)" 3129 3175 msgstr "" 3130 3176 3131 #: lib/Padre/Action/View.pm:18 83177 #: lib/Padre/Action/View.pm:183 3132 3178 msgid "Show Call Tips" 3133 3179 msgstr "" 3134 3180 3135 #: lib/Padre/Action/View.pm:18 93181 #: lib/Padre/Action/View.pm:184 3136 3182 msgid "When typing in functions allow showing short examples of the function" 3137 3183 msgstr "" 3138 3184 3139 #: lib/Padre/Action/View.pm: 2023185 #: lib/Padre/Action/View.pm:197 3140 3186 msgid "Show Current Line" 3141 3187 msgstr "" 3142 3188 3143 #: lib/Padre/Action/View.pm: 2033189 #: lib/Padre/Action/View.pm:198 3144 3190 msgid "Highlight the line where the cursor is" 3145 3191 msgstr "" 3146 3192 3147 #: lib/Padre/Action/View.pm:2 123193 #: lib/Padre/Action/View.pm:207 3148 3194 msgid "Show Right Margin" 3149 3195 msgstr "" 3150 3196 3151 #: lib/Padre/Action/View.pm:2 133197 #: lib/Padre/Action/View.pm:208 3152 3198 msgid "Show a vertical line indicating the right margin" 3153 3199 msgstr "" 3154 3200 3155 #: lib/Padre/Action/View.pm:2 233201 #: lib/Padre/Action/View.pm:218 3156 3202 msgid "Show Newlines" 3157 3203 msgstr "" 3158 3204 3159 #: lib/Padre/Action/View.pm:2 243205 #: lib/Padre/Action/View.pm:219 3160 3206 msgid "Show/hide the newlines with special character" 3161 3207 msgstr "" 3162 3208 3163 #: lib/Padre/Action/View.pm:2 333209 #: lib/Padre/Action/View.pm:228 3164 3210 msgid "Show Whitespaces" 3165 3211 msgstr "" 3166 3212 3167 #: lib/Padre/Action/View.pm:2 343213 #: lib/Padre/Action/View.pm:229 3168 3214 msgid "Show/hide the tabs and the spaces with special characters" 3169 3215 msgstr "" 3170 3216 3171 #: lib/Padre/Action/View.pm:2 433217 #: lib/Padre/Action/View.pm:238 3172 3218 msgid "Show Indentation Guide" 3173 3219 msgstr "" 3174 3220 3175 #: lib/Padre/Action/View.pm:2 443221 #: lib/Padre/Action/View.pm:239 3176 3222 msgid "" 3177 3223 "Show/hide vertical bars at every indentation position on the left of the rows" 3178 3224 msgstr "" 3179 3225 3180 #: lib/Padre/Action/View.pm:2 533226 #: lib/Padre/Action/View.pm:248 3181 3227 msgid "Word-Wrap" 3182 3228 msgstr "" 3183 3229 3184 #: lib/Padre/Action/View.pm:2 543230 #: lib/Padre/Action/View.pm:249 3185 3231 msgid "Wrap long lines" 3186 3232 msgstr "" 3187 3233 3188 #: lib/Padre/Action/View.pm:2 643234 #: lib/Padre/Action/View.pm:259 3189 3235 msgid "Increase Font Size" 3190 3236 msgstr "" 3191 3237 3192 #: lib/Padre/Action/View.pm:26 53238 #: lib/Padre/Action/View.pm:260 3193 3239 msgid "Make the letters bigger in the editor window" 3194 3240 msgstr "" 3195 3241 3196 #: lib/Padre/Action/View.pm:2 743242 #: lib/Padre/Action/View.pm:269 3197 3243 msgid "Decrease Font Size" 3198 3244 msgstr "" 3199 3245 3200 #: lib/Padre/Action/View.pm:27 53246 #: lib/Padre/Action/View.pm:270 3201 3247 msgid "Make the letters smaller in the editor window" 3202 3248 msgstr "" 3203 3249 3204 #: lib/Padre/Action/View.pm:2 843250 #: lib/Padre/Action/View.pm:279 3205 3251 msgid "Reset Font Size" 3206 3252 msgstr "" 3207 3253 3208 #: lib/Padre/Action/View.pm:28 53254 #: lib/Padre/Action/View.pm:280 3209 3255 msgid "Reset the size of the letters to the default in the editor window" 3210 3256 msgstr "" 3211 3257 3212 #: lib/Padre/Action/View.pm:29 73258 #: lib/Padre/Action/View.pm:292 3213 3259 msgid "Create a bookmark in the current file current row" 3214 3260 msgstr "" 3215 3261 3216 #: lib/Padre/Action/View.pm:30 73262 #: lib/Padre/Action/View.pm:302 3217 3263 msgid "Goto Bookmark" 3218 3264 msgstr "" 3219 3265 3220 #: lib/Padre/Action/View.pm:30 83266 #: lib/Padre/Action/View.pm:303 3221 3267 msgid "Select a bookmark created earlier and jump to that position" 3222 3268 msgstr "" 3223 3269 3224 #: lib/Padre/Action/View.pm:3 203270 #: lib/Padre/Action/View.pm:315 3225 3271 msgid "&Full Screen" 3226 3272 msgstr "" 3227 3273 3228 #: lib/Padre/Action/View.pm:3 213274 #: lib/Padre/Action/View.pm:316 3229 3275 msgid "Set Padre in full screen mode" 3230 3276 msgstr "" … … 3505 3551 3506 3552 #: lib/Padre/Action/Edit.pm:326 3507 msgid "Select to the matching opening or closing brace : { }, ( ), [ ], < >"3508 msgstr "" 3509 3510 #: lib/Padre/Action/Edit.pm:3 543553 msgid "Select to the matching opening or closing brace" 3554 msgstr "" 3555 3556 #: lib/Padre/Action/Edit.pm:335 3511 3557 msgid "&Join lines" 3512 3558 msgstr "" 3513 3559 3514 #: lib/Padre/Action/Edit.pm:3 553560 #: lib/Padre/Action/Edit.pm:336 3515 3561 msgid "Join the next line to the end of the current line." 3516 3562 msgstr "" 3517 3563 3518 #: lib/Padre/Action/Edit.pm:3 653564 #: lib/Padre/Action/Edit.pm:346 3519 3565 msgid "Insert Special Value" 3520 3566 msgstr "" 3521 3567 3522 #: lib/Padre/Action/Edit.pm:3 663568 #: lib/Padre/Action/Edit.pm:347 3523 3569 msgid "" 3524 3570 "Select a Date, Filename or other value and insert at the current location" 3525 3571 msgstr "" 3526 3572 3527 #: lib/Padre/Action/Edit.pm:3 793573 #: lib/Padre/Action/Edit.pm:360 3528 3574 msgid "Select and insert a snippet at the current location" 3529 3575 msgstr "" 3530 3576 3531 #: lib/Padre/Action/Edit.pm:3 903577 #: lib/Padre/Action/Edit.pm:371 3532 3578 msgid "Insert From File..." 3533 3579 msgstr "" 3534 3580 3535 #: lib/Padre/Action/Edit.pm:3 913581 #: lib/Padre/Action/Edit.pm:372 3536 3582 msgid "Select a file and insert its content at the current location" 3537 3583 msgstr "" 3538 3584 3539 #: lib/Padre/Action/Edit.pm: 4023585 #: lib/Padre/Action/Edit.pm:383 3540 3586 msgid "&Toggle Comment" 3541 3587 msgstr "" 3542 3588 3543 #: lib/Padre/Action/Edit.pm: 4033589 #: lib/Padre/Action/Edit.pm:384 3544 3590 msgid "Comment out or remove comment out of selected lines in the document" 3545 3591 msgstr "" 3546 3592 3547 #: lib/Padre/Action/Edit.pm: 4153593 #: lib/Padre/Action/Edit.pm:396 3548 3594 msgid "&Comment Selected Lines" 3549 3595 msgstr "" 3550 3596 3551 #: lib/Padre/Action/Edit.pm: 4163597 #: lib/Padre/Action/Edit.pm:397 3552 3598 msgid "Comment out selected lines in the document" 3553 3599 msgstr "" 3554 3600 3555 #: lib/Padre/Action/Edit.pm:4 273601 #: lib/Padre/Action/Edit.pm:408 3556 3602 msgid "&Uncomment Selected Lines" 3557 3603 msgstr "" 3558 3604 3559 #: lib/Padre/Action/Edit.pm:4 283605 #: lib/Padre/Action/Edit.pm:409 3560 3606 msgid "Remove comment out of selected lines in the document" 3561 3607 msgstr "" 3562 3608 3563 #: lib/Padre/Action/Edit.pm:4 393609 #: lib/Padre/Action/Edit.pm:420 3564 3610 msgid "Encode document to System Default" 3565 3611 msgstr "" 3566 3612 3567 #: lib/Padre/Action/Edit.pm:4 403613 #: lib/Padre/Action/Edit.pm:421 3568 3614 msgid "" 3569 3615 "Change the encoding of the current document to the default of the operating " … … 3571 3617 msgstr "" 3572 3618 3573 #: lib/Padre/Action/Edit.pm:4 503619 #: lib/Padre/Action/Edit.pm:431 3574 3620 msgid "Encode document to utf-8" 3575 3621 msgstr "" 3576 3622 3577 #: lib/Padre/Action/Edit.pm:4 513623 #: lib/Padre/Action/Edit.pm:432 3578 3624 msgid "Change the encoding of the current document to utf-8" 3579 3625 msgstr "" 3580 3626 3581 #: lib/Padre/Action/Edit.pm:4 623627 #: lib/Padre/Action/Edit.pm:443 3582 3628 msgid "Select an encoding and encode the document to that" 3583 3629 msgstr "" 3584 3630 3585 #: lib/Padre/Action/Edit.pm:4 723631 #: lib/Padre/Action/Edit.pm:453 3586 3632 msgid "EOL to Windows" 3587 3633 msgstr "" 3588 3634 3589 #: lib/Padre/Action/Edit.pm:4 743635 #: lib/Padre/Action/Edit.pm:455 3590 3636 msgid "" 3591 3637 "Change the end of line character of the current document to those used in " … … 3593 3639 msgstr "" 3594 3640 3595 #: lib/Padre/Action/Edit.pm:4 833641 #: lib/Padre/Action/Edit.pm:464 3596 3642 msgid "EOL to Unix" 3597 3643 msgstr "" 3598 3644 3599 #: lib/Padre/Action/Edit.pm:4 853645 #: lib/Padre/Action/Edit.pm:466 3600 3646 msgid "" 3601 3647 "Change the end of line character of the current document to that used on " … … 3603 3649 msgstr "" 3604 3650 3605 #: lib/Padre/Action/Edit.pm:4 943651 #: lib/Padre/Action/Edit.pm:475 3606 3652 msgid "EOL to Mac Classic" 3607 3653 msgstr "" 3608 3654 3609 #: lib/Padre/Action/Edit.pm:4 953655 #: lib/Padre/Action/Edit.pm:476 3610 3656 msgid "" 3611 3657 "Change the end of line character of the current document to that used on Mac " … … 3613 3659 msgstr "" 3614 3660 3615 #: lib/Padre/Action/Edit.pm: 5053661 #: lib/Padre/Action/Edit.pm:486 3616 3662 msgid "Tabs to Spaces..." 3617 3663 msgstr "" 3618 3664 3665 #: lib/Padre/Action/Edit.pm:487 3666 msgid "Convert all tabs to spaces in the current document" 3667 msgstr "" 3668 3669 #: lib/Padre/Action/Edit.pm:496 3670 msgid "Spaces to Tabs..." 3671 msgstr "" 3672 3673 #: lib/Padre/Action/Edit.pm:497 3674 msgid "Convert all the spaces to tabs in the current document" 3675 msgstr "" 3676 3619 3677 #: lib/Padre/Action/Edit.pm:506 3620 msgid " Convert all tabs to spaces in the current document"3621 msgstr "" 3622 3623 #: lib/Padre/Action/Edit.pm:5 153624 msgid " Spaces to Tabs..."3678 msgid "Delete Trailing Spaces" 3679 msgstr "" 3680 3681 #: lib/Padre/Action/Edit.pm:507 3682 msgid "Remove the spaces from the end of the selected lines" 3625 3683 msgstr "" 3626 3684 3627 3685 #: lib/Padre/Action/Edit.pm:516 3628 msgid "Convert all the spaces to tabs in the current document"3629 msgstr ""3630 3631 #: lib/Padre/Action/Edit.pm:5253632 msgid "Delete Trailing Spaces"3633 msgstr ""3634 3635 #: lib/Padre/Action/Edit.pm:5263636 msgid "Remove the spaces from the end of the selected lines"3637 msgstr ""3638 3639 #: lib/Padre/Action/Edit.pm:5353640 3686 msgid "Delete Leading Spaces" 3641 3687 msgstr "" 3642 3688 3643 #: lib/Padre/Action/Edit.pm:5 363689 #: lib/Padre/Action/Edit.pm:517 3644 3690 msgid "Remove the spaces from the beginning of the selected lines" 3645 3691 msgstr "" 3646 3692 3647 #: lib/Padre/Action/Edit.pm:5 463693 #: lib/Padre/Action/Edit.pm:527 3648 3694 msgid "Upper All" 3649 3695 msgstr "" 3650 3696 3651 #: lib/Padre/Action/Edit.pm:5 473697 #: lib/Padre/Action/Edit.pm:528 3652 3698 msgid "Change the current selection to upper case" 3653 3699 msgstr "" 3654 3700 3655 #: lib/Padre/Action/Edit.pm:5 573701 #: lib/Padre/Action/Edit.pm:538 3656 3702 msgid "Lower All" 3657 3703 msgstr "" 3658 3704 3659 #: lib/Padre/Action/Edit.pm:5 583705 #: lib/Padre/Action/Edit.pm:539 3660 3706 msgid "Change the current selection to lower case" 3661 3707 msgstr "" 3662 3708 3663 #: lib/Padre/Action/Edit.pm:5 683709 #: lib/Padre/Action/Edit.pm:549 3664 3710 msgid "Diff to Saved Version" 3665 3711 msgstr "" 3666 3712 3667 #: lib/Padre/Action/Edit.pm:5 703713 #: lib/Padre/Action/Edit.pm:551 3668 3714 msgid "" 3669 3715 "Compare the file in the editor to that on the disk and show the diff in the " … … 3671 3717 msgstr "" 3672 3718 3673 #: lib/Padre/Action/Edit.pm:5 783719 #: lib/Padre/Action/Edit.pm:559 3674 3720 msgid "Apply Diff to File" 3675 3721 msgstr "" 3676 3722 3677 #: lib/Padre/Action/Edit.pm:5 793723 #: lib/Padre/Action/Edit.pm:560 3678 3724 msgid "Apply a patch file to the current document" 3679 3725 msgstr "" 3680 3726 3681 #: lib/Padre/Action/Edit.pm:5 873727 #: lib/Padre/Action/Edit.pm:568 3682 3728 msgid "Apply Diff to Project" 3683 3729 msgstr "" 3684 3730 3685 #: lib/Padre/Action/Edit.pm:5 883731 #: lib/Padre/Action/Edit.pm:569 3686 3732 msgid "Apply a patch file to the current project" 3687 3733 msgstr "" 3688 3734 3689 #: lib/Padre/Action/Edit.pm:5 993735 #: lib/Padre/Action/Edit.pm:580 3690 3736 msgid "Filter through external tool" 3691 3737 msgstr "" 3692 3738 3739 #: lib/Padre/Action/Edit.pm:581 3740 msgid "" 3741 "Filters the selection (or the whole document) through any external command." 3742 msgstr "" 3743 3744 #: lib/Padre/Action/Edit.pm:590 3745 msgid "Open the regular expression editing window" 3746 msgstr "" 3747 3693 3748 #: lib/Padre/Action/Edit.pm:600 3694 msgid ""3695 "Filters the selection (or the whole document) through any external command."3696 msgstr ""3697 3698 #: lib/Padre/Action/Edit.pm:6093699 msgid "Open the regular expression editing window"3700 msgstr ""3701 3702 #: lib/Padre/Action/Edit.pm:6193703 3749 msgid "Show as hexa" 3704 3750 msgstr "" 3705 3751 3706 #: lib/Padre/Action/Edit.pm:6 203752 #: lib/Padre/Action/Edit.pm:601 3707 3753 msgid "Show the ASCII values of the selected text in hexa in the output window" 3708 3754 msgstr "" 3709 3755 3710 #: lib/Padre/Action/Edit.pm:6 293756 #: lib/Padre/Action/Edit.pm:610 3711 3757 msgid "Show as decimal" 3712 3758 msgstr "" 3713 3759 3714 #: lib/Padre/Action/Edit.pm:6 303760 #: lib/Padre/Action/Edit.pm:611 3715 3761 msgid "" 3716 3762 "Show the ASCII values of the selected text in decimal numbers in the output " … … 3718 3764 msgstr "" 3719 3765 3720 #: lib/Padre/Action/Edit.pm:6 403766 #: lib/Padre/Action/Edit.pm:621 3721 3767 msgid "Edit the user preferences" 3722 3768 msgstr "" … … 4001 4047 msgstr "" 4002 4048 4003 #: lib/Padre/Action/Tools.pm:3 84049 #: lib/Padre/Action/Tools.pm:39 4004 4050 msgid "Show the key bindings dialog to configure Padre shortcuts" 4005 4051 msgstr "" 4006 4052 4007 #: lib/Padre/Action/Tools.pm:4 84053 #: lib/Padre/Action/Tools.pm:49 4008 4054 msgid "Show the Padre plug-in manager to enable or disable plug-ins" 4009 4055 msgstr "" 4010 4056 4011 #: lib/Padre/Action/Tools.pm:6 34057 #: lib/Padre/Action/Tools.pm:64 4012 4058 msgid "Plug-in List (CPAN)" 4013 4059 msgstr "" 4014 4060 4015 #: lib/Padre/Action/Tools.pm:6 44061 #: lib/Padre/Action/Tools.pm:65 4016 4062 msgid "Open browser to a CPAN search showing the Padre::Plugin packages" 4017 4063 msgstr "" 4018 4064 4019 #: lib/Padre/Action/Tools.pm:7 24065 #: lib/Padre/Action/Tools.pm:73 4020 4066 msgid "Edit My Plug-in" 4021 4067 msgstr "" 4022 4068 4023 #: lib/Padre/Action/Tools.pm:7 34069 #: lib/Padre/Action/Tools.pm:74 4024 4070 msgid "" 4025 4071 "My Plug-in is a plug-in where developers could extend their Padre " … … 4027 4073 msgstr "" 4028 4074 4029 #: lib/Padre/Action/Tools.pm: 794075 #: lib/Padre/Action/Tools.pm:80 4030 4076 msgid "Could not find the Padre::Plugin::My plug-in" 4031 4077 msgstr "" 4032 4078 4033 #: lib/Padre/Action/Tools.pm: 894079 #: lib/Padre/Action/Tools.pm:90 4034 4080 msgid "Reload My Plug-in" 4035 4081 msgstr "" 4036 4082 4037 #: lib/Padre/Action/Tools.pm:9 04083 #: lib/Padre/Action/Tools.pm:91 4038 4084 msgid "This function reloads the My plug-in without restarting Padre" 4039 4085 msgstr "" 4040 4086 4041 #: lib/Padre/Action/Tools.pm:9 8 lib/Padre/Action/Tools.pm:1024042 #: lib/Padre/Action/Tools.pm:10 34087 #: lib/Padre/Action/Tools.pm:99 lib/Padre/Action/Tools.pm:103 4088 #: lib/Padre/Action/Tools.pm:104 4043 4089 msgid "Reset My plug-in" 4044 4090 msgstr "" 4045 4091 4046 #: lib/Padre/Action/Tools.pm: 994092 #: lib/Padre/Action/Tools.pm:100 4047 4093 msgid "Reset the My plug-in to the default" 4048 4094 msgstr "" 4049 4095 4050 #: lib/Padre/Action/Tools.pm:11 84096 #: lib/Padre/Action/Tools.pm:119 4051 4097 msgid "Reload All Plug-ins" 4052 4098 msgstr "" 4053 4099 4054 #: lib/Padre/Action/Tools.pm:1 194100 #: lib/Padre/Action/Tools.pm:120 4055 4101 msgid "Reload all plug-ins from disk" 4056 4102 msgstr "" 4057 4103 4058 #: lib/Padre/Action/Tools.pm:12 74104 #: lib/Padre/Action/Tools.pm:128 4059 4105 msgid "(Re)load Current Plug-in" 4060 4106 msgstr "" 4061 4107 4062 #: lib/Padre/Action/Tools.pm:12 84108 #: lib/Padre/Action/Tools.pm:129 4063 4109 msgid "Reloads (or initially loads) the current plug-in" 4064 4110 msgstr "" 4065 4111 4066 #: lib/Padre/Action/Tools.pm:14 64112 #: lib/Padre/Action/Tools.pm:147 4067 4113 msgid "Install CPAN Module" 4068 4114 msgstr "" 4069 4115 4070 #: lib/Padre/Action/Tools.pm:14 74116 #: lib/Padre/Action/Tools.pm:148 4071 4117 msgid "Install a Perl module from CPAN" 4072 4118 msgstr "" 4073 4119 4074 #: lib/Padre/Action/Tools.pm:1 594120 #: lib/Padre/Action/Tools.pm:160 4075 4121 msgid "Install Local Distribution" 4076 4122 msgstr "" 4077 4123 4078 #: lib/Padre/Action/Tools.pm:16 04124 #: lib/Padre/Action/Tools.pm:161 4079 4125 msgid "Using CPAN.pm to install a CPAN like package opened locally" 4080 4126 msgstr "" 4081 4127 4082 #: lib/Padre/Action/Tools.pm:16 84128 #: lib/Padre/Action/Tools.pm:169 4083 4129 msgid "Install Remote Distribution" 4084 4130 msgstr "" 4085 4131 4086 #: lib/Padre/Action/Tools.pm:1 694132 #: lib/Padre/Action/Tools.pm:170 4087 4133 msgid "Using pip to download a tar.gz file and install it using CPAN.pm" 4088 4134 msgstr "" 4089 4135 4090 #: lib/Padre/Action/Tools.pm:17 74136 #: lib/Padre/Action/Tools.pm:178 4091 4137 msgid "Open CPAN Config File" 4092 4138 msgstr "" 4093 4139 4094 #: lib/Padre/Action/Tools.pm:17 84140 #: lib/Padre/Action/Tools.pm:179 4095 4141 msgid "Open CPAN::MyConfig.pm for manual editing by experts" 4096 4142 msgstr "" 4097 4143 4098 #: lib/Padre/Action/Tools.pm: 1974144 #: lib/Padre/Action/Tools.pm:202 4099 4145 msgid "Select distribution to install" 4100 4146 msgstr "" 4101 4147 4102 #: lib/Padre/Action/Tools.pm:21 0 lib/Padre/Action/Tools.pm:2354148 #: lib/Padre/Action/Tools.pm:215 lib/Padre/Action/Tools.pm:240 4103 4149 msgid "Did not provide a distribution" 4104 4150 msgstr "" 4105 4151 4106 #: lib/Padre/Action/Tools.pm:2 254152 #: lib/Padre/Action/Tools.pm:230 4107 4153 msgid "" 4108 4154 "Enter URL to install\n" … … 4110 4156 msgstr "" 4111 4157 4112 #: lib/Padre/Action/Tools.pm:2 524113 msgid " pipis unexpectedly not installed"4114 msgstr "" 4115 4116 #: lib/Padre/Action/Tools.pm: 2984158 #: lib/Padre/Action/Tools.pm:277 4159 msgid "cpanm is unexpectedly not installed" 4160 msgstr "" 4161 4162 #: lib/Padre/Action/Tools.pm:320 4117 4163 msgid "Failed to find your CPAN configuration" 4118 4164 msgstr ""
Note: See TracChangeset
for help on using the changeset viewer.
