Changeset 11110


Ignore:
Timestamp:
03/14/10 09:05:44 (2 years ago)
Author:
zenogantner
Message:

completed 'Insert special values' functionality - feel free to add more special values to insert
moved 'Insert' menu entry close to copy/paste entries

Location:
trunk/Padre
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/Changes

    r11108 r11110  
    2424    - Local file and remote file installation switched from pip to 
    2525      cpanm (ADAMK) 
     26    - Completed the 'Insert Special Value' functionality (Zeno Gantner) 
     27    - updated German translation (Zeno Gantner) 
    2628 
    27290.58 2010.03.08  **WARNING Still not stable** 
  • trunk/Padre/lib/Padre/Wx/Dialog/SpecialValues.pm

    r10997 r11110  
    1313 
    1414my $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') }, 
    1920    ], 
    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') }, 
    2625    ], 
    2726}; 
     
    9392    my $value_ind = $data->{_find_specialvalue_}; 
    9493    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"; 
    9695 
    9796    my $editor = Padre::Current->editor; 
     
    124123        return sub { 
    125124            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 { 
    128145        return sub { 
    129146            warn "date info $type not implemented yet\n"; 
    130147            return ''; 
    131             } 
     148        } 
    132149    } 
    133150} 
     
    135152sub _get_file_info { 
    136153    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     
    137158    if ( $type eq 'name' ) { 
    138159        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 { 
    140165            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"; 
    149166            return ($filename) ? -s $filename : 0; 
    150167        }; 
    151168    } 
    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    } 
    162180} 
    163181 
  • trunk/Padre/lib/Padre/Wx/Menu/Edit.pm

    r11068 r11110  
    118118    ); 
    119119 
    120     $self->AppendSeparator; 
    121  
    122     # Miscellaneous Actions 
    123     $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  
    158120    my $submenu = Wx::Menu->new; 
    159121    $self->{insert_submenu} = $self->AppendSubMenu( $submenu, Wx::gettext('Insert') ); 
     
    172134        $submenu, 
    173135        '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', 
    174174    ); 
    175175 
  • trunk/Padre/share/locale/de.po

    r11097 r11110  
    88"Project-Id-Version: 0.23\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2010-03-13 13:25+0100\n" 
     10"POT-Creation-Date: 2010-03-14 15:47+0100\n" 
    1111"PO-Revision-Date: 2010-02-01 10:30+0100\n" 
    1212"Last-Translator: Sebastian Willing\n" 
     
    170170"von derzeit %s" 
    171171 
    172 #: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm:186 
     172#: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm:210 
    173173#: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:96 
    174 #: lib/Padre/Wx/Main.pm:2717 lib/Padre/Wx/Main.pm:4238 
     174#: lib/Padre/Wx/Main.pm:2734 lib/Padre/Wx/Main.pm:4238 
    175175#: lib/Padre/Wx/Directory/TreeCtrl.pm:440 
    176176#: lib/Padre/Wx/Directory/TreeCtrl.pm:474 
     
    207207msgstr "Übersprungen fÃŒr große Dateien" 
    208208 
    209 #: lib/Padre/TaskManager.pm:631 
     209#: lib/Padre/TaskManager.pm:630 
    210210#, perl-format 
    211211msgid "%s worker threads are running.\n" 
    212212msgstr "%s Worker-Threads sind aktiv.\n" 
    213213 
    214 #: lib/Padre/TaskManager.pm:633 
     214#: lib/Padre/TaskManager.pm:632 
    215215msgid "Currently, no background tasks are being executed.\n" 
    216216msgstr "Derzeit laufen keine Hintergrund-Funktionen.\n" 
    217217 
    218 #: lib/Padre/TaskManager.pm:639 
     218#: lib/Padre/TaskManager.pm:638 
    219219msgid "The following tasks are currently executing in the background:\n" 
    220220msgstr "Folgende Funktionen laufen derzeit im Hintergrund:\n" 
    221221 
    222 #: lib/Padre/TaskManager.pm:645 
     222#: lib/Padre/TaskManager.pm:644 
    223223#, perl-format 
    224224msgid "" 
     
    229229" (in Thread(s) %s)\n" 
    230230 
    231 #: lib/Padre/TaskManager.pm:657 
     231#: lib/Padre/TaskManager.pm:656 
    232232#, perl-format 
    233233msgid "" 
     
    303303msgstr "Fehler beim Aufruf von menu fÃŒr das Plugin" 
    304304 
    305 #: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:2129 
    306 #: lib/Padre/Wx/Main.pm:2184 lib/Padre/Wx/Main.pm:2236 
     305#: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:2146 
     306#: lib/Padre/Wx/Main.pm:2201 lib/Padre/Wx/Main.pm:2253 
    307307msgid "No document open" 
    308308msgstr "Kein geöffnetes Dokument" 
     
    493493msgstr "NAME" 
    494494 
    495 #: lib/Padre/Wx/Editor.pm:1373 
     495#: lib/Padre/Wx/Editor.pm:1563 
    496496msgid "You must select a range of lines" 
    497497msgstr "Sie mÃŒssen mehrere Zeilen auswÀhlen" 
    498498 
    499 #: lib/Padre/Wx/Editor.pm:1389 
     499#: lib/Padre/Wx/Editor.pm:1579 
    500500msgid "First character of selection must be a non-word character to align" 
    501501msgstr "" 
     
    506506msgstr "Ausgabe" 
    507507 
    508 #: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:2342 
     508#: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:2359 
    509509#, perl-format 
    510510msgid "" 
     
    623623msgstr "Verzeichnis wÀhlen" 
    624624 
    625 #: lib/Padre/Wx/Bottom.pm:50 
     625#: lib/Padre/Wx/Bottom.pm:52 
    626626msgid "Output View" 
    627627msgstr "Ausgabe" 
     
    649649 
    650650#: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:94 
    651 #: lib/Padre/Wx/Main.pm:2469 lib/Padre/Wx/Main.pm:3109 
     651#: lib/Padre/Wx/Main.pm:2486 lib/Padre/Wx/Main.pm:3109 
    652652#: lib/Padre/Wx/Dialog/Warning.pm:64 lib/Padre/Task/SyntaxChecker.pm:183 
    653653msgid "Warning" 
     
    670670msgstr "&Alle kopieren" 
    671671 
    672 #: lib/Padre/Wx/Left.pm:49 
     672#: lib/Padre/Wx/Left.pm:51 
    673673msgid "Project Tools" 
    674674msgstr "Projekt-Tools" 
    675675 
    676 #: lib/Padre/Wx/Right.pm:49 
     676#: lib/Padre/Wx/Right.pm:51 
    677677msgid "Document Tools" 
    678678msgstr "Dokumenten-Tools" 
     
    714714msgstr "Das betreffende Dokument wurde geschlossen." 
    715715 
    716 #: lib/Padre/Wx/Main.pm:685 
     716#: lib/Padre/Wx/Main.pm:702 
    717717#, perl-format 
    718718msgid "No such session %s" 
    719719msgstr "Keine Sitzungen %s gefunden" 
    720720 
    721 #: lib/Padre/Wx/Main.pm:860 
     721#: lib/Padre/Wx/Main.pm:877 
    722722msgid "Failed to create server" 
    723723msgstr "Konnte Server nicht erzeugen" 
    724724 
    725 #: lib/Padre/Wx/Main.pm:2099 
     725#: lib/Padre/Wx/Main.pm:2116 
    726726msgid "Command line" 
    727727msgstr "Kommandozeile" 
    728728 
    729 #: lib/Padre/Wx/Main.pm:2100 
     729#: lib/Padre/Wx/Main.pm:2117 
    730730msgid "Run setup" 
    731731msgstr "AusfÃŒhrungs-Konfiguration" 
    732732 
    733 #: lib/Padre/Wx/Main.pm:2135 lib/Padre/Wx/Main.pm:2196 
    734 #: lib/Padre/Wx/Main.pm:2251 
     733#: lib/Padre/Wx/Main.pm:2152 lib/Padre/Wx/Main.pm:2213 
     734#: lib/Padre/Wx/Main.pm:2268 
    735735msgid "Could not find project root" 
    736736msgstr "Konnte Basis-Verzeichnis des Projekts nicht finden" 
    737737 
    738 #: lib/Padre/Wx/Main.pm:2162 
     738#: lib/Padre/Wx/Main.pm:2179 
    739739msgid "No Build.PL nor Makefile.PL nor dist.ini found" 
    740740msgstr "Weder Build.PL noch Makefile.PL noch dist.ini wurden gefunden." 
    741741 
    742 #: lib/Padre/Wx/Main.pm:2165 
     742#: lib/Padre/Wx/Main.pm:2182 
    743743msgid "Could not find perl executable" 
    744744msgstr "Konnte Perl-Interpreter nicht finden" 
    745745 
    746 #: lib/Padre/Wx/Main.pm:2190 lib/Padre/Wx/Main.pm:2242 
     746#: lib/Padre/Wx/Main.pm:2207 lib/Padre/Wx/Main.pm:2259 
    747747msgid "Current document has no filename" 
    748748msgstr "Aktuelles Dokument hat keinen Dateinamen" 
    749749 
    750 #: lib/Padre/Wx/Main.pm:2245 
     750#: lib/Padre/Wx/Main.pm:2262 
    751751msgid "Current document is not a .t file" 
    752752msgstr "Aktuelles Dokument ist keine .t-Datei!" 
    753753 
    754 #: lib/Padre/Wx/Main.pm:2401 
     754#: lib/Padre/Wx/Main.pm:2418 
    755755#, perl-format 
    756756msgid "Failed to start '%s' command" 
    757757msgstr "Fehler beim AusfÃŒhren des Kommandos '%s'" 
    758758 
    759 #: lib/Padre/Wx/Main.pm:2426 
     759#: lib/Padre/Wx/Main.pm:2443 
    760760msgid "No open document" 
    761761msgstr "Kein geöffnetes Dokument" 
    762762 
    763 #: lib/Padre/Wx/Main.pm:2443 
     763#: lib/Padre/Wx/Main.pm:2460 
    764764msgid "No execution mode was defined for this document" 
    765765msgstr "FÃŒr dieses Dokument ist kein AusfÃŒhrungsmodus definiert" 
    766766 
    767 #: lib/Padre/Wx/Main.pm:2468 
     767#: lib/Padre/Wx/Main.pm:2485 
    768768msgid "Do you want to continue?" 
    769769msgstr "Vorgang fortsetzen?" 
    770770 
    771 #: lib/Padre/Wx/Main.pm:2554 
     771#: lib/Padre/Wx/Main.pm:2571 
    772772#, perl-format 
    773773msgid "Opening session %s..." 
    774774msgstr "Öffne Sitzung %s..." 
    775775 
    776 #: lib/Padre/Wx/Main.pm:2583 
     776#: lib/Padre/Wx/Main.pm:2600 
    777777msgid "Restore focus..." 
    778778msgstr "Fokus setzen..." 
    779779 
    780 #: lib/Padre/Wx/Main.pm:2666 
     780#: lib/Padre/Wx/Main.pm:2683 
    781781msgid "Message" 
    782782msgstr "Nachricht" 
     
    844844#: lib/Padre/Wx/Main.pm:3621 
    845845msgid "Text Files" 
    846 msgstr "Text-Dateien" 
     846msgstr "Textdateien" 
    847847 
    848848#: lib/Padre/Wx/Main.pm:3623 
     
    14511451#: lib/Padre/Wx/Dialog/SessionManager.pm:225 
    14521452#: lib/Padre/Wx/Dialog/PluginManager.pm:66 
     1453#: lib/Padre/Wx/Dialog/SpecialValues.pm:23 
    14531454msgid "Name" 
    14541455msgstr "Name" 
     
    14931494msgstr "Verwende Rege&x" 
    14941495 
    1495 #: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:47 
     1496#: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:48 
    14961497msgid "Plug-in Manager" 
    14971498msgstr "Plugin-Manager" 
     
    15161517 
    15171518#: lib/Padre/Wx/Dialog/PluginManager.pm:131 
    1518 #: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:639 
     1519#: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:620 
    15191520msgid "Preferences" 
    15201521msgstr "Einstellungen" 
     
    15941595 
    15951596#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:387 
     1597#: lib/Padre/Wx/Dialog/SpecialValues.pm:21 
    15961598#: lib/Padre/Wx/Dialog/WindowList.pm:226 
    15971599msgid "File" 
     
    16941696msgstr "Fertig" 
    16951697 
    1696 #: lib/Padre/Wx/Dialog/SpecialValues.pm:37 lib/Padre/Wx/Dialog/Snippets.pm:22 
     1698#: lib/Padre/Wx/Dialog/SpecialValues.pm:15 
     1699msgid "Date/Time" 
     1700msgstr "Datum/Uhrzeit" 
     1701 
     1702#: lib/Padre/Wx/Dialog/SpecialValues.pm:16 
     1703msgid "Now" 
     1704msgstr "Jetzt" 
     1705 
     1706#: lib/Padre/Wx/Dialog/SpecialValues.pm:17 
     1707msgid "Today" 
     1708msgstr "Heute" 
     1709 
     1710#: lib/Padre/Wx/Dialog/SpecialValues.pm:18 
     1711msgid "Year" 
     1712msgstr "Jahr" 
     1713 
     1714#: lib/Padre/Wx/Dialog/SpecialValues.pm:19 
     1715msgid "Epoch" 
     1716msgstr "Epoche" 
     1717 
     1718#: lib/Padre/Wx/Dialog/SpecialValues.pm:22 
     1719msgid "Size" 
     1720msgstr "Größe" 
     1721 
     1722#: lib/Padre/Wx/Dialog/SpecialValues.pm:24 
     1723msgid "Number of lines" 
     1724msgstr "Anzahl Zeilen" 
     1725 
     1726#: lib/Padre/Wx/Dialog/SpecialValues.pm:36 lib/Padre/Wx/Dialog/Snippets.pm:22 
    16971727msgid "Class:" 
    16981728msgstr "Klasse:" 
    16991729 
    1700 #: lib/Padre/Wx/Dialog/SpecialValues.pm:38 
     1730#: lib/Padre/Wx/Dialog/SpecialValues.pm:37 
    17011731msgid "Special Value:" 
    17021732msgstr "Spezieller Wert:" 
    17031733 
    1704 #: lib/Padre/Wx/Dialog/SpecialValues.pm:41 lib/Padre/Wx/Dialog/Snippets.pm:24 
     1734#: lib/Padre/Wx/Dialog/SpecialValues.pm:40 lib/Padre/Wx/Dialog/Snippets.pm:24 
    17051735#: lib/Padre/Wx/Dialog/RegexEditor.pm:234 
    17061736msgid "&Insert" 
    17071737msgstr "&EinfÃŒgen" 
    17081738 
    1709 #: lib/Padre/Wx/Dialog/SpecialValues.pm:54 
     1739#: lib/Padre/Wx/Dialog/SpecialValues.pm:53 
    17101740msgid "Insert Special Values" 
    17111741msgstr "Spezielle Werte einfÃŒgen" 
     
    21022132msgstr "Enkodieren zu:" 
    21032133 
    2104 #: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:461 
     2134#: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:442 
    21052135msgid "Encode document to..." 
    21062136msgstr "Dokument umkodieren zu..." 
     
    22942324msgstr "Konnte keinen Hilfe-Anbieter finden:" 
    22952325 
    2296 #: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:37 
     2326#: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:38 
    22972327msgid "Key Bindings" 
    22982328msgstr "Tastenkombinationen" 
     
    23262356msgstr "&HinzufÃŒgen" 
    23272357 
    2328 #: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:378 
     2358#: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:359 
    23292359msgid "Snippets" 
    23302360msgstr "Schnipsel" 
     
    24122442msgstr "Umschalt" 
    24132443 
    2414 #: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm:608 
     2444#: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm:589 
    24152445msgid "Regex Editor" 
    24162446msgstr "Regex-Editor" 
     
    26722702msgstr "Entferne &alle" 
    26732703 
    2674 #: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:296 
     2704#: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:291 
    26752705msgid "Set Bookmark" 
    26762706msgstr "Setze Lesezeichen" 
     
    27902820 
    27912821#: lib/Padre/Plugin/Devel.pm:69 
    2792 #, fuzzy 
    27932822msgid "Dump Display Geometry" 
    2794 msgstr "Anzeigedaten ausgeben" 
     2823msgstr "Anzeige-Geometrie ausgeben" 
    27952824 
    27962825#: lib/Padre/Plugin/Devel.pm:70 
     
    30013030"und Debugging)." 
    30023031 
    3003 #: lib/Padre/Action/Run.pm:39 
     3032#: lib/Padre/Action/Internal.pm:56 
     3033msgid "Delay the action queue for 10 seconds" 
     3034msgstr "" 
     3035 
     3036#: lib/Padre/Action/Internal.pm:57 
     3037msgid "Stops processing of other action queue items for 10 seconds" 
     3038msgstr "" 
     3039 
     3040#: lib/Padre/Action/Internal.pm:64 
     3041msgid "Delay the action queue for 30 seconds" 
     3042msgstr "" 
     3043 
     3044#: lib/Padre/Action/Internal.pm:65 
     3045msgid "Stops processing of other action queue items for 30 seconds" 
     3046msgstr "" 
     3047 
     3048#: lib/Padre/Action/Run.pm:43 
    30043049msgid "Run Script" 
    30053050msgstr "Skript ausfÃŒhren" 
    30063051 
    3007 #: lib/Padre/Action/Run.pm:40 
     3052#: lib/Padre/Action/Run.pm:44 
    30083053msgid "Runs the current document and shows its output in the output panel." 
    30093054msgstr "" 
    30103055"FÃŒhrt das aktuelle Programm aus und zeigt die Ausgabe im Ausgabe-Panel." 
    30113056 
    3012 #: lib/Padre/Action/Run.pm:55 
     3057#: lib/Padre/Action/Run.pm:59 
    30133058msgid "Run Script (debug info)" 
    30143059msgstr "Skript ausfÃŒhren (Debug-Info)" 
    30153060 
    3016 #: lib/Padre/Action/Run.pm:56 
     3061#: lib/Padre/Action/Run.pm:60 
    30173062msgid "Run the current document but include debug info in the output." 
    30183063msgstr "" 
     
    30203065"Ausgabe-Panel an." 
    30213066 
    3022 #: lib/Padre/Action/Run.pm:65 
     3067#: lib/Padre/Action/Run.pm:69 
    30233068msgid "Run Command" 
    30243069msgstr "Befehl ausfÃŒhren" 
    30253070 
    3026 #: lib/Padre/Action/Run.pm:66 
     3071#: lib/Padre/Action/Run.pm:70 
    30273072msgid "Runs a shell command and shows the output." 
    30283073msgstr "FÃŒhrt einen Shellbefehl aus und zeigt die Ausgabe im Ausgabe-Panel." 
    30293074 
    3030 #: lib/Padre/Action/Run.pm:76 
     3075#: lib/Padre/Action/Run.pm:80 
    30313076msgid "Run Build and Tests" 
    30323077msgstr "Projekt kompilieren und alle Tests starten" 
    30333078 
    3034 #: lib/Padre/Action/Run.pm:77 
     3079#: lib/Padre/Action/Run.pm:81 
    30353080msgid "Builds the current project, then run all tests." 
    30363081msgstr "Erstellt das aktuelle Projekt und fÃŒhrt alle Tests aus." 
    30373082 
    3038 #: lib/Padre/Action/Run.pm:88 
     3083#: lib/Padre/Action/Run.pm:92 
    30393084msgid "Run Tests" 
    30403085msgstr "Tests ausfÃŒhren" 
    30413086 
    3042 #: lib/Padre/Action/Run.pm:90 
     3087#: lib/Padre/Action/Run.pm:94 
    30433088msgid "" 
    30443089"Run all tests for the current project or document and show the results in " 
     
    30483093"Ausgabe-Panel." 
    30493094 
    3050 #: lib/Padre/Action/Run.pm:109 
     3095#: lib/Padre/Action/Run.pm:113 
    30513096msgid "Run This Test" 
    30523097msgstr "Diesen Test starten" 
    30533098 
    3054 #: lib/Padre/Action/Run.pm:110 
     3099#: lib/Padre/Action/Run.pm:114 
    30553100msgid "Run the current test if the current document is a test. (prove -bv)" 
    30563101msgstr "Aktuellen Text ausfÃŒhren (sofern das aktuelle Dokument ein Test ist)" 
    30573102 
    3058 #: lib/Padre/Action/Run.pm:122 
     3103#: lib/Padre/Action/Run.pm:126 
    30593104msgid "Stop execution" 
    30603105msgstr "AusfÃŒhrung anhalten" 
    30613106 
    3062 #: lib/Padre/Action/Run.pm:123 
     3107#: lib/Padre/Action/Run.pm:127 
    30633108msgid "Stop a running task." 
    30643109msgstr "HÀlt den aktuellen Prozess an." 
    30653110 
    3066 #: lib/Padre/Action/View.pm:34 
     3111#: lib/Padre/Action/View.pm:29 
    30673112msgid "Lock User Interface" 
    30683113msgstr "OberflÀche gegen Änderungen sperren" 
    30693114 
    3070 #: lib/Padre/Action/View.pm:35 
     3115#: lib/Padre/Action/View.pm:30 
    30713116msgid "Allow the user to move around some of the windows" 
    30723117msgstr "Eine Fenster verschiebbar machen" 
    30733118 
    3074 #: lib/Padre/Action/View.pm:45 
     3119#: lib/Padre/Action/View.pm:40 
    30753120msgid "Show Output" 
    30763121msgstr "Ausgabe zeigen" 
    30773122 
    3078 #: lib/Padre/Action/View.pm:47 
     3123#: lib/Padre/Action/View.pm:42 
    30793124msgid "" 
    30803125"Show the window displaying the standard output and standard error of the " 
     
    30843129"laufender Skripte anzeigen" 
    30853130 
    3086 #: lib/Padre/Action/View.pm:56 
     3131#: lib/Padre/Action/View.pm:51 
    30873132msgid "Show Functions" 
    30883133msgstr "Funktionen zeigen" 
    30893134 
    3090 #: lib/Padre/Action/View.pm:57 
     3135#: lib/Padre/Action/View.pm:52 
    30913136msgid "Show a window listing all the functions in the current document" 
    30923137msgstr "Alle Funktionen (Methoden, Subs) im aktuellen Dokument anzeigen" 
    30933138 
    3094 #: lib/Padre/Action/View.pm:71 
     3139#: lib/Padre/Action/View.pm:66 
    30953140msgid "Show To-do List" 
    30963141msgstr "TODO-Liste zeigen" 
    30973142 
    3098 #: lib/Padre/Action/View.pm:72 
     3143#: lib/Padre/Action/View.pm:67 
    30993144msgid "Show a window listing all todo items in the current document" 
    31003145msgstr "Alle TODO's fÃŒr das aktuelle Dokument zeigen" 
    31013146 
    3102 #: lib/Padre/Action/View.pm:87 
     3147#: lib/Padre/Action/View.pm:82 
    31033148msgid "Show Outline" 
    31043149msgstr "Übersicht zeigen" 
    31053150 
    3106 #: lib/Padre/Action/View.pm:88 
     3151#: lib/Padre/Action/View.pm:83 
    31073152msgid "" 
    31083153"Show a window listing all the parts of the current file (functions, pragmas, " 
     
    31113156"Die Struktur (Funktionen, Pragmas, Module) des aktuellen Dokuments anzeigen" 
    31123157 
    3113 #: lib/Padre/Action/View.pm:97 
     3158#: lib/Padre/Action/View.pm:92 
    31143159msgid "Show Directory Tree" 
    31153160msgstr "Verzeichnis-Baum zeigen" 
    31163161 
    3117 #: lib/Padre/Action/View.pm:98 
     3162#: lib/Padre/Action/View.pm:93 
    31183163msgid "Show a window with a directory browser of the current project" 
    31193164msgstr "Den Verzeichnisbaum (komplett oder fÃŒr das aktuelle Projekt) anzeigen" 
    31203165 
    3121 #: lib/Padre/Action/View.pm:107 
     3166#: lib/Padre/Action/View.pm:102 
    31223167msgid "Show Syntax Check" 
    31233168msgstr "Syntax-Check ausfÃŒhren" 
    31243169 
    3125 #: lib/Padre/Action/View.pm:108 
     3170#: lib/Padre/Action/View.pm:103 
    31263171msgid "" 
    31273172"Turn on syntax checking of the current document and show output in a window" 
    31283173msgstr "Syntax-Hervorhebung aktivieren" 
    31293174 
    3130 #: lib/Padre/Action/View.pm:117 
     3175#: lib/Padre/Action/View.pm:112 
    31313176msgid "Show Error List" 
    31323177msgstr "Fehlerliste zeigen" 
    31333178 
    3134 #: lib/Padre/Action/View.pm:118 
     3179#: lib/Padre/Action/View.pm:113 
    31353180msgid "Show the list of errors received during execution of a script" 
    31363181msgstr "AusfÃŒhrungsfehler eines Skriptes anzeigen" 
    31373182 
    3138 #: lib/Padre/Action/View.pm:127 
     3183#: lib/Padre/Action/View.pm:122 
    31393184msgid "Show Status Bar" 
    31403185msgstr "Statuszeile zeigen" 
    31413186 
    3142 #: lib/Padre/Action/View.pm:128 
     3187#: lib/Padre/Action/View.pm:123 
    31433188msgid "Show/hide the status bar at the bottom of the screen" 
    31443189msgstr "Die Statuszeile anzeigen/ausblenden" 
    31453190 
    3146 #: lib/Padre/Action/View.pm:137 
     3191#: lib/Padre/Action/View.pm:132 
    31473192msgid "Show Toolbar" 
    31483193msgstr "Werkzeugleiste zeigen" 
    31493194 
    3150 #: lib/Padre/Action/View.pm:138 
     3195#: lib/Padre/Action/View.pm:133 
    31513196msgid "Show/hide the toolbar at the top of the editor" 
    31523197msgstr "Toolbar anzeigen/ausblenden" 
    31533198 
    3154 #: lib/Padre/Action/View.pm:148 
     3199#: lib/Padre/Action/View.pm:143 
    31553200msgid "Show Line Numbers" 
    31563201msgstr "Zeilennummern zeigen" 
    31573202 
    3158 #: lib/Padre/Action/View.pm:149 
     3203#: lib/Padre/Action/View.pm:144 
    31593204msgid "" 
    31603205"Show/hide the line numbers of all the documents on the left side of the " 
     
    31623207msgstr "Zeilennummern anzeigen bzw. ausblenden" 
    31633208 
    3164 #: lib/Padre/Action/View.pm:158 
     3209#: lib/Padre/Action/View.pm:153 
    31653210msgid "Show Code Folding" 
    31663211msgstr "Code-Ausblenden verwenden" 
    31673212 
    3168 #: lib/Padre/Action/View.pm:159 
     3213#: lib/Padre/Action/View.pm:154 
    31693214msgid "" 
    31703215"Show/hide a vertical line on the left hand side of the window to allow " 
     
    31723217msgstr "Einklappen von Sourcecode-Teilen ermöglichen" 
    31733218 
    3174 #: lib/Padre/Action/View.pm:168 
     3219#: lib/Padre/Action/View.pm:163 
    31753220msgid "Fold all" 
    31763221msgstr "Alle einklappen" 
    31773222 
    3178 #: lib/Padre/Action/View.pm:169 
     3223#: lib/Padre/Action/View.pm:164 
    31793224msgid "Fold all the blocks that can be folded (need folding to be enabled)" 
    31803225msgstr "" 
    31813226"Alle möglichen Blöcke einklappen (sofern einklappbarer Code aktiviert ist)" 
    31823227 
    3183 #: lib/Padre/Action/View.pm:178 
     3228#: lib/Padre/Action/View.pm:173 
    31843229msgid "Unfold all" 
    31853230msgstr "Alle ausklappen" 
    31863231 
    3187 #: lib/Padre/Action/View.pm:179 
     3232#: lib/Padre/Action/View.pm:174 
    31883233msgid "Unfold all the blocks that can be folded (need folding to be enabled)" 
    31893234msgstr "" 
    31903235"Alle möglichen Blöcke aufklappen (sofern einklappbarer Code aktiviert ist)" 
    31913236 
    3192 #: lib/Padre/Action/View.pm:188 
     3237#: lib/Padre/Action/View.pm:183 
    31933238msgid "Show Call Tips" 
    31943239msgstr "Aufruf-Tipps zeigen" 
    31953240 
    3196 #: lib/Padre/Action/View.pm:189 
     3241#: lib/Padre/Action/View.pm:184 
    31973242msgid "When typing in functions allow showing short examples of the function" 
    31983243msgstr "Kurzhilfe zu Funktionen anzeigen wÀhrend sie eingegeben werden" 
    31993244 
    3200 #: lib/Padre/Action/View.pm:202 
     3245#: lib/Padre/Action/View.pm:197 
    32013246msgid "Show Current Line" 
    32023247msgstr "Aktuelle Zeile hervorheben" 
    32033248 
    3204 #: lib/Padre/Action/View.pm:203 
     3249#: lib/Padre/Action/View.pm:198 
    32053250msgid "Highlight the line where the cursor is" 
    32063251msgstr "Die aktuelle Zeile einfÀrben" 
    32073252 
    3208 #: lib/Padre/Action/View.pm:212 
     3253#: lib/Padre/Action/View.pm:207 
    32093254msgid "Show Right Margin" 
    32103255msgstr "Zeige rechten Rand" 
    32113256 
    3212 #: lib/Padre/Action/View.pm:213 
     3257#: lib/Padre/Action/View.pm:208 
    32133258msgid "Show a vertical line indicating the right margin" 
    32143259msgstr "Eine vertikale Linie anzeigen um die rechte Begrenzung darzustellen" 
    32153260 
    3216 #: lib/Padre/Action/View.pm:223 
     3261#: lib/Padre/Action/View.pm:218 
    32173262msgid "Show Newlines" 
    32183263msgstr "ZeilenumbrÃŒche zeigen" 
    32193264 
    3220 #: lib/Padre/Action/View.pm:224 
     3265#: lib/Padre/Action/View.pm:219 
    32213266msgid "Show/hide the newlines with special character" 
    32223267msgstr "ZeilenumbrÃŒche mit einem speziellen Zeichen darstellen" 
    32233268 
    3224 #: lib/Padre/Action/View.pm:233 
     3269#: lib/Padre/Action/View.pm:228 
    32253270msgid "Show Whitespaces" 
    32263271msgstr "Leerraum zeigen" 
    32273272 
    3228 #: lib/Padre/Action/View.pm:234 
     3273#: lib/Padre/Action/View.pm:229 
    32293274msgid "Show/hide the tabs and the spaces with special characters" 
    32303275msgstr "Tabs und Leerzeichen als spezielle Zeichen anzeigen" 
    32313276 
    3232 #: lib/Padre/Action/View.pm:243 
     3277#: lib/Padre/Action/View.pm:238 
    32333278msgid "Show Indentation Guide" 
    32343279msgstr "EinrÃŒckungshilfen zeigen" 
    32353280 
    3236 #: lib/Padre/Action/View.pm:244 
     3281#: lib/Padre/Action/View.pm:239 
    32373282msgid "" 
    32383283"Show/hide vertical bars at every indentation position on the left of the rows" 
    32393284msgstr "EinrÃŒckungen graphisch darstellen" 
    32403285 
    3241 #: lib/Padre/Action/View.pm:253 
     3286#: lib/Padre/Action/View.pm:248 
    32423287msgid "Word-Wrap" 
    32433288msgstr "Automatischer Zeilenumbruch" 
    32443289 
    3245 #: lib/Padre/Action/View.pm:254 
     3290#: lib/Padre/Action/View.pm:249 
    32463291msgid "Wrap long lines" 
    32473292msgstr "Lange Zeilen umbrechen" 
    32483293 
    3249 #: lib/Padre/Action/View.pm:264 
     3294#: lib/Padre/Action/View.pm:259 
    32503295msgid "Increase Font Size" 
    32513296msgstr "Schrift vergrößern" 
    32523297 
    3253 #: lib/Padre/Action/View.pm:265 
     3298#: lib/Padre/Action/View.pm:260 
    32543299msgid "Make the letters bigger in the editor window" 
    32553300msgstr "Schrift größer darstellen" 
    32563301 
    3257 #: lib/Padre/Action/View.pm:274 
     3302#: lib/Padre/Action/View.pm:269 
    32583303msgid "Decrease Font Size" 
    32593304msgstr "Schrift verkleinern" 
    32603305 
    3261 #: lib/Padre/Action/View.pm:275 
     3306#: lib/Padre/Action/View.pm:270 
    32623307msgid "Make the letters smaller in the editor window" 
    32633308msgstr "Schrift kleiner darstellen" 
    32643309 
    3265 #: lib/Padre/Action/View.pm:284 
     3310#: lib/Padre/Action/View.pm:279 
    32663311msgid "Reset Font Size" 
    32673312msgstr "Schriftgröße zurÃŒcksetzen" 
    32683313 
    3269 #: lib/Padre/Action/View.pm:285 
     3314#: lib/Padre/Action/View.pm:280 
    32703315msgid "Reset the size of the letters to the default in the editor window" 
    32713316msgstr "Standard-Schriftgröße wiederherstellen" 
    32723317 
    3273 #: lib/Padre/Action/View.pm:297 
     3318#: lib/Padre/Action/View.pm:292 
    32743319msgid "Create a bookmark in the current file current row" 
    32753320msgstr "Ein Lesezeichen erstellen" 
    32763321 
    3277 #: lib/Padre/Action/View.pm:307 
     3322#: lib/Padre/Action/View.pm:302 
    32783323msgid "Goto Bookmark" 
    32793324msgstr "Gehe zu Lesezeichen" 
    32803325 
    3281 #: lib/Padre/Action/View.pm:308 
     3326#: lib/Padre/Action/View.pm:303 
    32823327msgid "Select a bookmark created earlier and jump to that position" 
    32833328msgstr "Zu einem Lesezeichen springen" 
    32843329 
    3285 #: lib/Padre/Action/View.pm:320 
     3330#: lib/Padre/Action/View.pm:315 
    32863331msgid "&Full Screen" 
    32873332msgstr "&Vollbild" 
    32883333 
    3289 #: lib/Padre/Action/View.pm:321 
     3334#: lib/Padre/Action/View.pm:316 
    32903335msgid "Set Padre in full screen mode" 
    32913336msgstr "Vollbildmodus aktivieren" 
     
    35723617 
    35733618#: lib/Padre/Action/Edit.pm:326 
    3574 msgid "Select to the matching opening or closing brace: { }, ( ), [ ], < >" 
     3619msgid "Select to the matching opening or closing brace" 
    35753620msgstr "" 
    35763621"&AuswÀhlen bis zur passenden öffnenden oder schließenden Klammer: { }, ( ), " 
    35773622"[ ], < >" 
    35783623 
    3579 #: lib/Padre/Action/Edit.pm:354 
     3624#: lib/Padre/Action/Edit.pm:335 
    35803625msgid "&Join lines" 
    35813626msgstr "Zei&len zusammenfÃŒhren" 
    35823627 
    3583 #: lib/Padre/Action/Edit.pm:355 
     3628#: lib/Padre/Action/Edit.pm:336 
    35843629msgid "Join the next line to the end of the current line." 
    35853630msgstr "Die aktuelle und die nÀchste Zeile zusammenfÃŒhren" 
    35863631 
    3587 #: lib/Padre/Action/Edit.pm:365 
     3632#: lib/Padre/Action/Edit.pm:346 
    35883633msgid "Insert Special Value" 
    35893634msgstr "Speziellen Wert einfÃŒgen" 
    35903635 
    3591 #: lib/Padre/Action/Edit.pm:366 
     3636#: lib/Padre/Action/Edit.pm:347 
    35923637msgid "" 
    35933638"Select a Date, Filename or other value and insert at the current location" 
     
    35963641"Position einfÃŒgen" 
    35973642 
    3598 #: lib/Padre/Action/Edit.pm:379 
     3643#: lib/Padre/Action/Edit.pm:360 
    35993644msgid "Select and insert a snippet at the current location" 
    36003645msgstr "Ein Sourcecode-StÃŒck an der aktuellen Stelle einfÃŒgen" 
    36013646 
    3602 #: lib/Padre/Action/Edit.pm:390 
     3647#: lib/Padre/Action/Edit.pm:371 
    36033648msgid "Insert From File..." 
    36043649msgstr "EinfÃŒgen aus Datei..." 
    36053650 
    3606 #: lib/Padre/Action/Edit.pm:391 
     3651#: lib/Padre/Action/Edit.pm:372 
    36073652msgid "Select a file and insert its content at the current location" 
    36083653msgstr "Eine Datei an der aktuellen Position einfÃŒgen" 
    36093654 
    3610 #: lib/Padre/Action/Edit.pm:402 
     3655#: lib/Padre/Action/Edit.pm:383 
    36113656msgid "&Toggle Comment" 
    36123657msgstr "Kommen&tierung umschalten" 
    36133658 
    3614 #: lib/Padre/Action/Edit.pm:403 
     3659#: lib/Padre/Action/Edit.pm:384 
    36153660msgid "Comment out or remove comment out of selected lines in the document" 
    36163661msgstr "Aktuelle oder ausgewÀhlte Zeile(n) ein/auskommentieren" 
    36173662 
    3618 #: lib/Padre/Action/Edit.pm:415 
     3663#: lib/Padre/Action/Edit.pm:396 
    36193664msgid "&Comment Selected Lines" 
    36203665msgstr "AusgewÀhlte Zeilen: &Auskommentieren" 
    36213666 
    3622 #: lib/Padre/Action/Edit.pm:416 
     3667#: lib/Padre/Action/Edit.pm:397 
    36233668msgid "Comment out selected lines in the document" 
    36243669msgstr "Auswahl auskommentieren" 
    36253670 
    3626 #: lib/Padre/Action/Edit.pm:427 
     3671#: lib/Padre/Action/Edit.pm:408 
    36273672msgid "&Uncomment Selected Lines" 
    36283673msgstr "A&usgewÀhlte Zeilen: Kommentar entfernen" 
    36293674 
    3630 #: lib/Padre/Action/Edit.pm:428 
     3675#: lib/Padre/Action/Edit.pm:409 
    36313676msgid "Remove comment out of selected lines in the document" 
    36323677msgstr "AusgewÀhlte Zeilen wieder einkommentieren" 
    36333678 
    3634 #: lib/Padre/Action/Edit.pm:439 
     3679#: lib/Padre/Action/Edit.pm:420 
    36353680msgid "Encode document to System Default" 
    36363681msgstr "Dokument in Systemstandard kodieren" 
    36373682 
    3638 #: lib/Padre/Action/Edit.pm:440 
     3683#: lib/Padre/Action/Edit.pm:421 
    36393684msgid "" 
    36403685"Change the encoding of the current document to the default of the operating " 
     
    36423687msgstr "Die Kodierung der aktuellen Datei dem Betriebssystem-Standard anpassen" 
    36433688 
    3644 #: lib/Padre/Action/Edit.pm:450 
     3689#: lib/Padre/Action/Edit.pm:431 
    36453690msgid "Encode document to utf-8" 
    36463691msgstr "Dokument nach utf-8 konvertieren" 
    36473692 
    3648 #: lib/Padre/Action/Edit.pm:451 
     3693#: lib/Padre/Action/Edit.pm:432 
    36493694msgid "Change the encoding of the current document to utf-8" 
    36503695msgstr "Kodierung nach utf-8 Àndern" 
    36513696 
    3652 #: lib/Padre/Action/Edit.pm:462 
     3697#: lib/Padre/Action/Edit.pm:443 
    36533698msgid "Select an encoding and encode the document to that" 
    36543699msgstr "Die Kodierung der Datei Àndern" 
    36553700 
    3656 #: lib/Padre/Action/Edit.pm:472 
     3701#: lib/Padre/Action/Edit.pm:453 
    36573702msgid "EOL to Windows" 
    36583703msgstr "Zeilenenden ins Windows-Format" 
    36593704 
    3660 #: lib/Padre/Action/Edit.pm:474 
     3705#: lib/Padre/Action/Edit.pm:455 
    36613706msgid "" 
    36623707"Change the end of line character of the current document to those used in " 
     
    36643709msgstr "Zeilenenden in dieser Datei in das Windows-Format Àndern" 
    36653710 
    3666 #: lib/Padre/Action/Edit.pm:483 
     3711#: lib/Padre/Action/Edit.pm:464 
    36673712msgid "EOL to Unix" 
    36683713msgstr "Zeilenenden ins Unix-Format" 
    36693714 
    3670 #: lib/Padre/Action/Edit.pm:485 
     3715#: lib/Padre/Action/Edit.pm:466 
    36713716msgid "" 
    36723717"Change the end of line character of the current document to that used on " 
     
    36743719msgstr "Unix-/Linux-/Mac-OS-X-Zeilenenden verwenden" 
    36753720 
    3676 #: lib/Padre/Action/Edit.pm:494 
     3721#: lib/Padre/Action/Edit.pm:475 
    36773722msgid "EOL to Mac Classic" 
    36783723msgstr "Zeilenende ins Mac-Format" 
    36793724 
    3680 #: lib/Padre/Action/Edit.pm:495 
     3725#: lib/Padre/Action/Edit.pm:476 
    36813726msgid "" 
    36823727"Change the end of line character of the current document to that used on Mac " 
     
    36843729msgstr "Alten Mac-Standard fÃŒr Zeilenenden verwenden" 
    36853730 
    3686 #: lib/Padre/Action/Edit.pm:505 
     3731#: lib/Padre/Action/Edit.pm:486 
    36873732msgid "Tabs to Spaces..." 
    36883733msgstr "In Leerzeichen wandeln..." 
    36893734 
    3690 #: lib/Padre/Action/Edit.pm:506 
     3735#: lib/Padre/Action/Edit.pm:487 
    36913736msgid "Convert all tabs to spaces in the current document" 
    36923737msgstr "Alle Tabulatorzeichen in Leerzeichen konvertieren" 
    36933738 
    3694 #: lib/Padre/Action/Edit.pm:515 
     3739#: lib/Padre/Action/Edit.pm:496 
    36953740msgid "Spaces to Tabs..." 
    36963741msgstr "Leerzeichen in Tabulatoren umwandeln..." 
    36973742 
    3698 #: lib/Padre/Action/Edit.pm:516 
     3743#: lib/Padre/Action/Edit.pm:497 
    36993744msgid "Convert all the spaces to tabs in the current document" 
    37003745msgstr "Alle Leerzeichen zu Tabulatorzeichen konvertieren" 
    37013746 
    3702 #: lib/Padre/Action/Edit.pm:525 
     3747#: lib/Padre/Action/Edit.pm:506 
    37033748msgid "Delete Trailing Spaces" 
    37043749msgstr "Entferne Leerzeichen am Ende" 
    37053750 
    3706 #: lib/Padre/Action/Edit.pm:526 
     3751#: lib/Padre/Action/Edit.pm:507 
    37073752msgid "Remove the spaces from the end of the selected lines" 
    37083753msgstr "Leerzeichen am Ende der ausgewÀhlten Zeilen entfernen" 
    37093754 
    3710 #: lib/Padre/Action/Edit.pm:535 
     3755#: lib/Padre/Action/Edit.pm:516 
    37113756msgid "Delete Leading Spaces" 
    37123757msgstr "Entferne Leerzeichen am Anfang" 
    37133758 
    3714 #: lib/Padre/Action/Edit.pm:536 
     3759#: lib/Padre/Action/Edit.pm:517 
    37153760msgid "Remove the spaces from the beginning of the selected lines" 
    37163761msgstr "Leerzeichen am Anfang der ausgewÀhlten Zeilen entfernen" 
    37173762 
    3718 #: lib/Padre/Action/Edit.pm:546 
     3763#: lib/Padre/Action/Edit.pm:527 
    37193764msgid "Upper All" 
    37203765msgstr "Alles in Großbuchstaben" 
    37213766 
    3722 #: lib/Padre/Action/Edit.pm:547 
     3767#: lib/Padre/Action/Edit.pm:528 
    37233768msgid "Change the current selection to upper case" 
    37243769msgstr "Aktuelle Auswahl in Großbuchstaben Àndern" 
    37253770 
    3726 #: lib/Padre/Action/Edit.pm:557 
     3771#: lib/Padre/Action/Edit.pm:538 
    37273772msgid "Lower All" 
    37283773msgstr "Alles in Kleinbuchstaben" 
    37293774 
    3730 #: lib/Padre/Action/Edit.pm:558 
     3775#: lib/Padre/Action/Edit.pm:539 
    37313776msgid "Change the current selection to lower case" 
    37323777msgstr "Aktuelle Auswahl in Kleinbuchstaben Àndern" 
    37333778 
    3734 #: lib/Padre/Action/Edit.pm:568 
     3779#: lib/Padre/Action/Edit.pm:549 
    37353780msgid "Diff to Saved Version" 
    37363781msgstr "Diff zur gespeicherten Version" 
    37373782 
    3738 #: lib/Padre/Action/Edit.pm:570 
     3783#: lib/Padre/Action/Edit.pm:551 
    37393784msgid "" 
    37403785"Compare the file in the editor to that on the disk and show the diff in the " 
     
    37443789"Änderungen anzeigen" 
    37453790 
    3746 #: lib/Padre/Action/Edit.pm:578 
     3791#: lib/Padre/Action/Edit.pm:559 
    37473792msgid "Apply Diff to File" 
    37483793msgstr "Diff auf Datei anwenden" 
    37493794 
    3750 #: lib/Padre/Action/Edit.pm:579 
     3795#: lib/Padre/Action/Edit.pm:560 
    37513796msgid "Apply a patch file to the current document" 
    37523797msgstr "Ein Patch auf das aktuelle Dokument anwenden" 
    37533798 
    3754 #: lib/Padre/Action/Edit.pm:587 
     3799#: lib/Padre/Action/Edit.pm:568 
    37553800msgid "Apply Diff to Project" 
    37563801msgstr "Diff auf Projekt anwenden" 
    37573802 
    3758 #: lib/Padre/Action/Edit.pm:588 
     3803#: lib/Padre/Action/Edit.pm:569 
    37593804msgid "Apply a patch file to the current project" 
    37603805msgstr "Ein Patch auf das aktuelle Projekt anwenden" 
    37613806 
    3762 #: lib/Padre/Action/Edit.pm:599 
     3807#: lib/Padre/Action/Edit.pm:580 
    37633808msgid "Filter through external tool" 
    37643809msgstr "Externen Filter benutzen" 
    37653810 
    3766 #: lib/Padre/Action/Edit.pm:600 
     3811#: lib/Padre/Action/Edit.pm:581 
    37673812msgid "" 
    37683813"Filters the selection (or the whole document) through any external command." 
     
    37713816"Dokument." 
    37723817 
    3773 #: lib/Padre/Action/Edit.pm:609 
     3818#: lib/Padre/Action/Edit.pm:590 
    37743819msgid "Open the regular expression editing window" 
    37753820msgstr "Den Editor fÃŒr regulÀre AusdrÃŒcke anzeigen" 
    37763821 
    3777 #: lib/Padre/Action/Edit.pm:619 
     3822#: lib/Padre/Action/Edit.pm:600 
    37783823msgid "Show as hexa" 
    37793824msgstr "Als Hex zeigen" 
    37803825 
    3781 #: lib/Padre/Action/Edit.pm:620 
     3826#: lib/Padre/Action/Edit.pm:601 
    37823827msgid "Show the ASCII values of the selected text in hexa in the output window" 
    37833828msgstr "Hexadezimaldarstellung des aktuell ausgewÀhlten Textes anzeigen" 
    37843829 
    3785 #: lib/Padre/Action/Edit.pm:629 
     3830#: lib/Padre/Action/Edit.pm:610 
    37863831msgid "Show as decimal" 
    37873832msgstr "Zeige als Dezimalzahlen" 
    37883833 
    3789 #: lib/Padre/Action/Edit.pm:630 
     3834#: lib/Padre/Action/Edit.pm:611 
    37903835msgid "" 
    37913836"Show the ASCII values of the selected text in decimal numbers in the output " 
     
    37933838msgstr "Dezimaldarstellung des ausgewÀhlten Textes anzeigen" 
    37943839 
    3795 #: lib/Padre/Action/Edit.pm:640 
     3840#: lib/Padre/Action/Edit.pm:621 
    37963841msgid "Edit the user preferences" 
    37973842msgstr "Benutzereinstellungen bearbeiten" 
     
    40904135msgstr "Klammern automatisch ergÀnzen" 
    40914136 
    4092 #: lib/Padre/Action/Tools.pm:38 
     4137#: lib/Padre/Action/Tools.pm:39 
    40934138msgid "Show the key bindings dialog to configure Padre shortcuts" 
    40944139msgstr "Konfiguriere die Tastenkombinationen fÃŒr Padre" 
    40954140 
    4096 #: lib/Padre/Action/Tools.pm:48 
     4141#: lib/Padre/Action/Tools.pm:49 
    40974142msgid "Show the Padre plug-in manager to enable or disable plug-ins" 
    40984143msgstr "Plugins können im Plugin-Manager aktiviert und deaktiviert werden." 
    40994144 
    4100 #: lib/Padre/Action/Tools.pm:63 
     4145#: lib/Padre/Action/Tools.pm:64 
    41014146msgid "Plug-in List (CPAN)" 
    41024147msgstr "Plugin-Liste (CPAN)" 
    41034148 
    4104 #: lib/Padre/Action/Tools.pm:64 
     4149#: lib/Padre/Action/Tools.pm:65 
    41054150msgid "Open browser to a CPAN search showing the Padre::Plugin packages" 
    41064151msgstr "Padre::Plugin - Liste im Browser anzeigen" 
    41074152 
    4108 #: lib/Padre/Action/Tools.pm:72 
     4153#: lib/Padre/Action/Tools.pm:73 
    41094154msgid "Edit My Plug-in" 
    41104155msgstr "Editiere 'Mein Plugin'" 
    41114156 
    4112 #: lib/Padre/Action/Tools.pm:73 
     4157#: lib/Padre/Action/Tools.pm:74 
    41134158msgid "" 
    41144159"My Plug-in is a plug-in where developers could extend their Padre " 
     
    41184163"erweitern." 
    41194164 
    4120 #: lib/Padre/Action/Tools.pm:79 
     4165#: lib/Padre/Action/Tools.pm:80 
    41214166msgid "Could not find the Padre::Plugin::My plug-in" 
    41224167msgstr "Konnte das Plugin Padre::Plugin::My nicht finden" 
    41234168 
    4124 #: lib/Padre/Action/Tools.pm:89 
     4169#: lib/Padre/Action/Tools.pm:90 
    41254170msgid "Reload My Plug-in" 
    41264171msgstr "Lade 'Mein Plugin' erneut" 
    41274172 
    4128 #: lib/Padre/Action/Tools.pm:90 
     4173#: lib/Padre/Action/Tools.pm:91 
    41294174msgid "This function reloads the My plug-in without restarting Padre" 
    41304175msgstr "" 
     
    41324177"werden muss." 
    41334178 
    4134 #: lib/Padre/Action/Tools.pm:98 lib/Padre/Action/Tools.pm:102 
    4135 #: lib/Padre/Action/Tools.pm:103 
     4179#: lib/Padre/Action/Tools.pm:99 lib/Padre/Action/Tools.pm:103 
     4180#: lib/Padre/Action/Tools.pm:104 
    41364181msgid "Reset My plug-in" 
    41374182msgstr "Setze 'Mein Plugin' zurÃŒck" 
    41384183 
    4139 #: lib/Padre/Action/Tools.pm:99 
     4184#: lib/Padre/Action/Tools.pm:100 
    41404185msgid "Reset the My plug-in to the default" 
    41414186msgstr "Setzt My-Plugin auf den Standard-Dateiinhalt zurÃŒck." 
    41424187 
    4143 #: lib/Padre/Action/Tools.pm:118 
     4188#: lib/Padre/Action/Tools.pm:119 
    41444189msgid "Reload All Plug-ins" 
    41454190msgstr "Lade alle Plugins neu" 
    41464191 
    4147 #: lib/Padre/Action/Tools.pm:119 
     4192#: lib/Padre/Action/Tools.pm:120 
    41484193msgid "Reload all plug-ins from disk" 
    41494194msgstr "Lade alle Plugins neu" 
    41504195 
    4151 #: lib/Padre/Action/Tools.pm:127 
     4196#: lib/Padre/Action/Tools.pm:128 
    41524197msgid "(Re)load Current Plug-in" 
    41534198msgstr "Lade aktuelles Plugin (erneut)" 
    41544199 
    4155 #: lib/Padre/Action/Tools.pm:128 
     4200#: lib/Padre/Action/Tools.pm:129 
    41564201msgid "Reloads (or initially loads) the current plug-in" 
    41574202msgstr "LÀdt das aktuelle Plugin oder aktualisiert es" 
    41584203 
    4159 #: lib/Padre/Action/Tools.pm:146 
     4204#: lib/Padre/Action/Tools.pm:147 
    41604205msgid "Install CPAN Module" 
    41614206msgstr "Installiere CPAN-Modul" 
    41624207 
    4163 #: lib/Padre/Action/Tools.pm:147 
     4208#: lib/Padre/Action/Tools.pm:148 
    41644209msgid "Install a Perl module from CPAN" 
    41654210msgstr "Ein Perl-Modul vom CPAN installieren" 
    41664211 
    4167 #: lib/Padre/Action/Tools.pm:159 
     4212#: lib/Padre/Action/Tools.pm:160 
    41684213msgid "Install Local Distribution" 
    41694214msgstr "Installiere Distribution von lokalem Ort" 
    41704215 
    4171 #: lib/Padre/Action/Tools.pm:160 
     4216#: lib/Padre/Action/Tools.pm:161 
    41724217msgid "Using CPAN.pm to install a CPAN like package opened locally" 
    41734218msgstr "Ein lokales CPAN-Paket mittels CPAN.pm installieren" 
    41744219 
    4175 #: lib/Padre/Action/Tools.pm:168 
     4220#: lib/Padre/Action/Tools.pm:169 
    41764221msgid "Install Remote Distribution" 
    41774222msgstr "Installiere Distribution von entferntem Ort" 
    41784223 
    4179 #: lib/Padre/Action/Tools.pm:169 
     4224#: lib/Padre/Action/Tools.pm:170 
    41804225msgid "Using pip to download a tar.gz file and install it using CPAN.pm" 
    41814226msgstr "Eine tar.gz-Datei runterladen und mit CPAN installieren" 
    41824227 
    4183 #: lib/Padre/Action/Tools.pm:177 
     4228#: lib/Padre/Action/Tools.pm:178 
    41844229msgid "Open CPAN Config File" 
    41854230msgstr "Öffne CPAN-Konfigurationsdatei" 
    41864231 
    4187 #: lib/Padre/Action/Tools.pm:178 
     4232#: lib/Padre/Action/Tools.pm:179 
    41884233msgid "Open CPAN::MyConfig.pm for manual editing by experts" 
    41894234msgstr "CPAN-Konfiguration aufrufen" 
    41904235 
    4191 #: lib/Padre/Action/Tools.pm:197 
     4236#: lib/Padre/Action/Tools.pm:202 
    41924237msgid "Select distribution to install" 
    41934238msgstr "Distribution zur Installation auswÀhlen" 
    41944239 
    4195 #: lib/Padre/Action/Tools.pm:210 lib/Padre/Action/Tools.pm:235 
     4240#: lib/Padre/Action/Tools.pm:215 lib/Padre/Action/Tools.pm:240 
    41964241msgid "Did not provide a distribution" 
    41974242msgstr "Stellte keine Distribution bereit" 
    41984243 
    4199 #: lib/Padre/Action/Tools.pm:225 
     4244#: lib/Padre/Action/Tools.pm:230 
    42004245msgid "" 
    42014246"Enter URL to install\n" 
     
    42054250"z.B. http://svn.ali.as/cpan/releases/Config-Tiny-2.00.tar.gz" 
    42064251 
    4207 #: lib/Padre/Action/Tools.pm:252 
    4208 msgid "pip is unexpectedly not installed" 
    4209 msgstr "pip ist wider Erwarten nicht installiert" 
    4210  
    4211 #: lib/Padre/Action/Tools.pm:298 
     4252#: lib/Padre/Action/Tools.pm:277 
     4253msgid "cpanm is unexpectedly not installed" 
     4254msgstr "cpanm ist wider Erwarten nicht installiert" 
     4255 
     4256#: lib/Padre/Action/Tools.pm:320 
    42124257msgid "Failed to find your CPAN configuration" 
    42134258msgstr "Konnte CPAN-Konfiguration nicht finden" 
     
    43874432#: lib/Padre/Action/File.pm:298 
    43884433msgid "Save &As" 
    4389 msgstr "Speichern &als..." 
     4434msgstr "Speichern &unter..." 
    43904435 
    43914436#: lib/Padre/Action/File.pm:299 
     
    45634608msgid "&GoTo Element" 
    45644609msgstr "&Gehe zu Element" 
     4610 
     4611#~ msgid "Yesterday" 
     4612#~ msgstr "Gestern" 
     4613 
     4614#~ msgid "Tomorrow" 
     4615#~ msgstr "Morgen" 
     4616 
     4617#~ msgid "Number" 
     4618#~ msgstr "Zahl" 
    45654619 
    45664620#~ msgid "Norwegian (Norway)" 
  • trunk/Padre/share/locale/messages.pot

    r11097 r11110  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2010-03-13 13:25+0100\n" 
     11"POT-Creation-Date: 2010-03-14 15:47+0100\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    164164msgstr "" 
    165165 
    166 #: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm:186 
     166#: lib/Padre/Document.pm:393 lib/Padre/Wx/Editor.pm:210 
    167167#: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:96 
    168 #: lib/Padre/Wx/Main.pm:2717 lib/Padre/Wx/Main.pm:4238 
     168#: lib/Padre/Wx/Main.pm:2734 lib/Padre/Wx/Main.pm:4238 
    169169#: lib/Padre/Wx/Directory/TreeCtrl.pm:440 
    170170#: lib/Padre/Wx/Directory/TreeCtrl.pm:474 
     
    199199msgstr "" 
    200200 
    201 #: lib/Padre/TaskManager.pm:631 
     201#: lib/Padre/TaskManager.pm:630 
    202202#, perl-format 
    203203msgid "%s worker threads are running.\n" 
    204204msgstr "" 
    205205 
    206 #: lib/Padre/TaskManager.pm:633 
     206#: lib/Padre/TaskManager.pm:632 
    207207msgid "Currently, no background tasks are being executed.\n" 
    208208msgstr "" 
    209209 
    210 #: lib/Padre/TaskManager.pm:639 
     210#: lib/Padre/TaskManager.pm:638 
    211211msgid "The following tasks are currently executing in the background:\n" 
    212212msgstr "" 
    213213 
    214 #: lib/Padre/TaskManager.pm:645 
     214#: lib/Padre/TaskManager.pm:644 
    215215#, perl-format 
    216216msgid "" 
     
    219219msgstr "" 
    220220 
    221 #: lib/Padre/TaskManager.pm:657 
     221#: lib/Padre/TaskManager.pm:656 
    222222#, perl-format 
    223223msgid "" 
     
    285285msgstr "" 
    286286 
    287 #: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:2129 
    288 #: lib/Padre/Wx/Main.pm:2184 lib/Padre/Wx/Main.pm:2236 
     287#: lib/Padre/PluginManager.pm:905 lib/Padre/Wx/Main.pm:2146 
     288#: lib/Padre/Wx/Main.pm:2201 lib/Padre/Wx/Main.pm:2253 
    289289msgid "No document open" 
    290290msgstr "" 
     
    471471msgstr "" 
    472472 
    473 #: lib/Padre/Wx/Editor.pm:1373 
     473#: lib/Padre/Wx/Editor.pm:1563 
    474474msgid "You must select a range of lines" 
    475475msgstr "" 
    476476 
    477 #: lib/Padre/Wx/Editor.pm:1389 
     477#: lib/Padre/Wx/Editor.pm:1579 
    478478msgid "First character of selection must be a non-word character to align" 
    479479msgstr "" 
     
    483483msgstr "" 
    484484 
    485 #: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:2342 
     485#: lib/Padre/Wx/Output.pm:115 lib/Padre/Wx/Main.pm:2359 
    486486#, perl-format 
    487487msgid "" 
     
    597597msgstr "" 
    598598 
    599 #: lib/Padre/Wx/Bottom.pm:50 
     599#: lib/Padre/Wx/Bottom.pm:52 
    600600msgid "Output View" 
    601601msgstr "" 
     
    623623 
    624624#: lib/Padre/Wx/Syntax.pm:93 lib/Padre/Wx/Syntax.pm:94 
    625 #: lib/Padre/Wx/Main.pm:2469 lib/Padre/Wx/Main.pm:3109 
     625#: lib/Padre/Wx/Main.pm:2486 lib/Padre/Wx/Main.pm:3109 
    626626#: lib/Padre/Wx/Dialog/Warning.pm:64 lib/Padre/Task/SyntaxChecker.pm:183 
    627627msgid "Warning" 
     
    644644msgstr "" 
    645645 
    646 #: lib/Padre/Wx/Left.pm:49 
     646#: lib/Padre/Wx/Left.pm:51 
    647647msgid "Project Tools" 
    648648msgstr "" 
    649649 
    650 #: lib/Padre/Wx/Right.pm:49 
     650#: lib/Padre/Wx/Right.pm:51 
    651651msgid "Document Tools" 
    652652msgstr "" 
     
    688688msgstr "" 
    689689 
    690 #: lib/Padre/Wx/Main.pm:685 
     690#: lib/Padre/Wx/Main.pm:702 
    691691#, perl-format 
    692692msgid "No such session %s" 
    693693msgstr "" 
    694694 
    695 #: lib/Padre/Wx/Main.pm:860 
     695#: lib/Padre/Wx/Main.pm:877 
    696696msgid "Failed to create server" 
    697697msgstr "" 
    698698 
    699 #: lib/Padre/Wx/Main.pm:2099 
     699#: lib/Padre/Wx/Main.pm:2116 
    700700msgid "Command line" 
    701701msgstr "" 
    702702 
    703 #: lib/Padre/Wx/Main.pm:2100 
     703#: lib/Padre/Wx/Main.pm:2117 
    704704msgid "Run setup" 
    705705msgstr "" 
    706706 
    707 #: lib/Padre/Wx/Main.pm:2135 lib/Padre/Wx/Main.pm:2196 
    708 #: lib/Padre/Wx/Main.pm:2251 
     707#: lib/Padre/Wx/Main.pm:2152 lib/Padre/Wx/Main.pm:2213 
     708#: lib/Padre/Wx/Main.pm:2268 
    709709msgid "Could not find project root" 
    710710msgstr "" 
    711711 
    712 #: lib/Padre/Wx/Main.pm:2162 
     712#: lib/Padre/Wx/Main.pm:2179 
    713713msgid "No Build.PL nor Makefile.PL nor dist.ini found" 
    714714msgstr "" 
    715715 
    716 #: lib/Padre/Wx/Main.pm:2165 
     716#: lib/Padre/Wx/Main.pm:2182 
    717717msgid "Could not find perl executable" 
    718718msgstr "" 
    719719 
    720 #: lib/Padre/Wx/Main.pm:2190 lib/Padre/Wx/Main.pm:2242 
     720#: lib/Padre/Wx/Main.pm:2207 lib/Padre/Wx/Main.pm:2259 
    721721msgid "Current document has no filename" 
    722722msgstr "" 
    723723 
    724 #: lib/Padre/Wx/Main.pm:2245 
     724#: lib/Padre/Wx/Main.pm:2262 
    725725msgid "Current document is not a .t file" 
    726726msgstr "" 
    727727 
    728 #: lib/Padre/Wx/Main.pm:2401 
     728#: lib/Padre/Wx/Main.pm:2418 
    729729#, perl-format 
    730730msgid "Failed to start '%s' command" 
    731731msgstr "" 
    732732 
    733 #: lib/Padre/Wx/Main.pm:2426 
     733#: lib/Padre/Wx/Main.pm:2443 
    734734msgid "No open document" 
    735735msgstr "" 
    736736 
    737 #: lib/Padre/Wx/Main.pm:2443 
     737#: lib/Padre/Wx/Main.pm:2460 
    738738msgid "No execution mode was defined for this document" 
    739739msgstr "" 
    740740 
    741 #: lib/Padre/Wx/Main.pm:2468 
     741#: lib/Padre/Wx/Main.pm:2485 
    742742msgid "Do you want to continue?" 
    743743msgstr "" 
    744744 
    745 #: lib/Padre/Wx/Main.pm:2554 
     745#: lib/Padre/Wx/Main.pm:2571 
    746746#, perl-format 
    747747msgid "Opening session %s..." 
    748748msgstr "" 
    749749 
    750 #: lib/Padre/Wx/Main.pm:2583 
     750#: lib/Padre/Wx/Main.pm:2600 
    751751msgid "Restore focus..." 
    752752msgstr "" 
    753753 
    754 #: lib/Padre/Wx/Main.pm:2666 
     754#: lib/Padre/Wx/Main.pm:2683 
    755755msgid "Message" 
    756756msgstr "" 
     
    14171417#: lib/Padre/Wx/Dialog/SessionManager.pm:225 
    14181418#: lib/Padre/Wx/Dialog/PluginManager.pm:66 
     1419#: lib/Padre/Wx/Dialog/SpecialValues.pm:23 
    14191420msgid "Name" 
    14201421msgstr "" 
     
    14591460msgstr "" 
    14601461 
    1461 #: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:47 
     1462#: lib/Padre/Wx/Dialog/PluginManager.pm:35 lib/Padre/Action/Tools.pm:48 
    14621463msgid "Plug-in Manager" 
    14631464msgstr "" 
     
    14821483 
    14831484#: lib/Padre/Wx/Dialog/PluginManager.pm:131 
    1484 #: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:639 
     1485#: lib/Padre/Wx/Dialog/Preferences.pm:801 lib/Padre/Action/Edit.pm:620 
    14851486msgid "Preferences" 
    14861487msgstr "" 
     
    15601561 
    15611562#: lib/Padre/Wx/Dialog/QuickMenuAccess.pm:387 
     1563#: lib/Padre/Wx/Dialog/SpecialValues.pm:21 
    15621564#: lib/Padre/Wx/Dialog/WindowList.pm:226 
    15631565msgid "File" 
     
    16581660msgstr "" 
    16591661 
    1660 #: lib/Padre/Wx/Dialog/SpecialValues.pm:37 lib/Padre/Wx/Dialog/Snippets.pm:22 
     1662#: lib/Padre/Wx/Dialog/SpecialValues.pm:15 
     1663msgid "Date/Time" 
     1664msgstr "" 
     1665 
     1666#: lib/Padre/Wx/Dialog/SpecialValues.pm:16 
     1667msgid "Now" 
     1668msgstr "" 
     1669 
     1670#: lib/Padre/Wx/Dialog/SpecialValues.pm:17 
     1671msgid "Today" 
     1672msgstr "" 
     1673 
     1674#: lib/Padre/Wx/Dialog/SpecialValues.pm:18 
     1675msgid "Year" 
     1676msgstr "" 
     1677 
     1678#: lib/Padre/Wx/Dialog/SpecialValues.pm:19 
     1679msgid "Epoch" 
     1680msgstr "" 
     1681 
     1682#: lib/Padre/Wx/Dialog/SpecialValues.pm:22 
     1683msgid "Size" 
     1684msgstr "" 
     1685 
     1686#: lib/Padre/Wx/Dialog/SpecialValues.pm:24 
     1687msgid "Number of lines" 
     1688msgstr "" 
     1689 
     1690#: lib/Padre/Wx/Dialog/SpecialValues.pm:36 lib/Padre/Wx/Dialog/Snippets.pm:22 
    16611691msgid "Class:" 
    16621692msgstr "" 
    16631693 
    1664 #: lib/Padre/Wx/Dialog/SpecialValues.pm:38 
     1694#: lib/Padre/Wx/Dialog/SpecialValues.pm:37 
    16651695msgid "Special Value:" 
    16661696msgstr "" 
    16671697 
    1668 #: lib/Padre/Wx/Dialog/SpecialValues.pm:41 lib/Padre/Wx/Dialog/Snippets.pm:24 
     1698#: lib/Padre/Wx/Dialog/SpecialValues.pm:40 lib/Padre/Wx/Dialog/Snippets.pm:24 
    16691699#: lib/Padre/Wx/Dialog/RegexEditor.pm:234 
    16701700msgid "&Insert" 
    16711701msgstr "" 
    16721702 
    1673 #: lib/Padre/Wx/Dialog/SpecialValues.pm:54 
     1703#: lib/Padre/Wx/Dialog/SpecialValues.pm:53 
    16741704msgid "Insert Special Values" 
    16751705msgstr "" 
     
    20582088msgstr "" 
    20592089 
    2060 #: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:461 
     2090#: lib/Padre/Wx/Dialog/Encode.pm:63 lib/Padre/Action/Edit.pm:442 
    20612091msgid "Encode document to..." 
    20622092msgstr "" 
     
    22482278msgstr "" 
    22492279 
    2250 #: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:37 
     2280#: lib/Padre/Wx/Dialog/KeyBindings.pm:46 lib/Padre/Action/Tools.pm:38 
    22512281msgid "Key Bindings" 
    22522282msgstr "" 
     
    22802310msgstr "" 
    22812311 
    2282 #: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:378 
     2312#: lib/Padre/Wx/Dialog/Snippets.pm:39 lib/Padre/Action/Edit.pm:359 
    22832313msgid "Snippets" 
    22842314msgstr "" 
     
    23662396msgstr "" 
    23672397 
    2368 #: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm:608 
     2398#: lib/Padre/Wx/Dialog/RegexEditor.pm:33 lib/Padre/Action/Edit.pm:589 
    23692399msgid "Regex Editor" 
    23702400msgstr "" 
     
    26252655msgstr "" 
    26262656 
    2627 #: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:296 
     2657#: lib/Padre/Wx/Dialog/Bookmarks.pm:56 lib/Padre/Action/View.pm:291 
    26282658msgid "Set Bookmark" 
    26292659msgstr "" 
     
    29502980msgstr "" 
    29512981 
    2952 #: lib/Padre/Action/Run.pm:39 
     2982#: lib/Padre/Action/Internal.pm:56 
     2983msgid "Delay the action queue for 10 seconds" 
     2984msgstr "" 
     2985 
     2986#: lib/Padre/Action/Internal.pm:57 
     2987msgid "Stops processing of other action queue items for 10 seconds" 
     2988msgstr "" 
     2989 
     2990#: lib/Padre/Action/Internal.pm:64 
     2991msgid "Delay the action queue for 30 seconds" 
     2992msgstr "" 
     2993 
     2994#: lib/Padre/Action/Internal.pm:65 
     2995msgid "Stops processing of other action queue items for 30 seconds" 
     2996msgstr "" 
     2997 
     2998#: lib/Padre/Action/Run.pm:43 
    29532999msgid "Run Script" 
    29543000msgstr "" 
    29553001 
    2956 #: lib/Padre/Action/Run.pm:40 
     3002#: lib/Padre/Action/Run.pm:44 
    29573003msgid "Runs the current document and shows its output in the output panel." 
    29583004msgstr "" 
    29593005 
    2960 #: lib/Padre/Action/Run.pm:55 
     3006#: lib/Padre/Action/Run.pm:59 
    29613007msgid "Run Script (debug info)" 
    29623008msgstr "" 
    29633009 
    2964 #: lib/Padre/Action/Run.pm:56 
     3010#: lib/Padre/Action/Run.pm:60 
    29653011msgid "Run the current document but include debug info in the output." 
    29663012msgstr "" 
    29673013 
    2968 #: lib/Padre/Action/Run.pm:65 
     3014#: lib/Padre/Action/Run.pm:69 
    29693015msgid "Run Command" 
    29703016msgstr "" 
    29713017 
    2972 #: lib/Padre/Action/Run.pm:66 
     3018#: lib/Padre/Action/Run.pm:70 
    29733019msgid "Runs a shell command and shows the output." 
    29743020msgstr "" 
    29753021 
    2976 #: lib/Padre/Action/Run.pm:76 
     3022#: lib/Padre/Action/Run.pm:80 
    29773023msgid "Run Build and Tests" 
    29783024msgstr "" 
    29793025 
    2980 #: lib/Padre/Action/Run.pm:77 
     3026#: lib/Padre/Action/Run.pm:81 
    29813027msgid "Builds the current project, then run all tests." 
    29823028msgstr "" 
    29833029 
    2984 #: lib/Padre/Action/Run.pm:88 
     3030#: lib/Padre/Action/Run.pm:92 
    29853031msgid "Run Tests" 
    29863032msgstr "" 
    29873033 
    2988 #: lib/Padre/Action/Run.pm:90 
     3034#: lib/Padre/Action/Run.pm:94 
    29893035msgid "" 
    29903036"Run all tests for the current project or document and show the results in " 
     
    29923038msgstr "" 
    29933039 
    2994 #: lib/Padre/Action/Run.pm:109 
     3040#: lib/Padre/Action/Run.pm:113 
    29953041msgid "Run This Test" 
    29963042msgstr "" 
    29973043 
    2998 #: lib/Padre/Action/Run.pm:110 
     3044#: lib/Padre/Action/Run.pm:114 
    29993045msgid "Run the current test if the current document is a test. (prove -bv)" 
    30003046msgstr "" 
    30013047 
    3002 #: lib/Padre/Action/Run.pm:122 
     3048#: lib/Padre/Action/Run.pm:126 
    30033049msgid "Stop execution" 
    30043050msgstr "" 
    30053051 
    3006 #: lib/Padre/Action/Run.pm:123 
     3052#: lib/Padre/Action/Run.pm:127 
    30073053msgid "Stop a running task." 
    30083054msgstr "" 
    30093055 
    3010 #: lib/Padre/Action/View.pm:34 
     3056#: lib/Padre/Action/View.pm:29 
    30113057msgid "Lock User Interface" 
    30123058msgstr "" 
    30133059 
    3014 #: lib/Padre/Action/View.pm:35 
     3060#: lib/Padre/Action/View.pm:30 
    30153061msgid "Allow the user to move around some of the windows" 
    30163062msgstr "" 
    30173063 
    3018 #: lib/Padre/Action/View.pm:45 
     3064#: lib/Padre/Action/View.pm:40 
    30193065msgid "Show Output" 
    30203066msgstr "" 
    30213067 
    3022 #: lib/Padre/Action/View.pm:47 
     3068#: lib/Padre/Action/View.pm:42 
    30233069msgid "" 
    30243070"Show the window displaying the standard output and standard error of the " 
     
    30263072msgstr "" 
    30273073 
    3028 #: lib/Padre/Action/View.pm:56 
     3074#: lib/Padre/Action/View.pm:51 
    30293075msgid "Show Functions" 
    30303076msgstr "" 
    30313077 
    3032 #: lib/Padre/Action/View.pm:57 
     3078#: lib/Padre/Action/View.pm:52 
    30333079msgid "Show a window listing all the functions in the current document" 
    30343080msgstr "" 
    30353081 
    3036 #: lib/Padre/Action/View.pm:71 
     3082#: lib/Padre/Action/View.pm:66 
    30373083msgid "Show To-do List" 
    30383084msgstr "" 
    30393085 
    3040 #: lib/Padre/Action/View.pm:72 
     3086#: lib/Padre/Action/View.pm:67 
    30413087msgid "Show a window listing all todo items in the current document" 
    30423088msgstr "" 
    30433089 
    3044 #: lib/Padre/Action/View.pm:87 
     3090#: lib/Padre/Action/View.pm:82 
    30453091msgid "Show Outline" 
    30463092msgstr "" 
    30473093 
    3048 #: lib/Padre/Action/View.pm:88 
     3094#: lib/Padre/Action/View.pm:83 
    30493095msgid "" 
    30503096"Show a window listing all the parts of the current file (functions, pragmas, " 
     
    30523098msgstr "" 
    30533099 
    3054 #: lib/Padre/Action/View.pm:97 
     3100#: lib/Padre/Action/View.pm:92 
    30553101msgid "Show Directory Tree" 
    30563102msgstr "" 
    30573103 
    3058 #: lib/Padre/Action/View.pm:98 
     3104#: lib/Padre/Action/View.pm:93 
    30593105msgid "Show a window with a directory browser of the current project" 
    30603106msgstr "" 
    30613107 
    3062 #: lib/Padre/Action/View.pm:107 
     3108#: lib/Padre/Action/View.pm:102 
    30633109msgid "Show Syntax Check" 
    30643110msgstr "" 
    30653111 
    3066 #: lib/Padre/Action/View.pm:108 
     3112#: lib/Padre/Action/View.pm:103 
    30673113msgid "" 
    30683114"Turn on syntax checking of the current document and show output in a window" 
    30693115msgstr "" 
    30703116 
    3071 #: lib/Padre/Action/View.pm:117 
     3117#: lib/Padre/Action/View.pm:112 
    30723118msgid "Show Error List" 
    30733119msgstr "" 
    30743120 
    3075 #: lib/Padre/Action/View.pm:118 
     3121#: lib/Padre/Action/View.pm:113 
    30763122msgid "Show the list of errors received during execution of a script" 
    30773123msgstr "" 
    30783124 
    3079 #: lib/Padre/Action/View.pm:127 
     3125#: lib/Padre/Action/View.pm:122 
    30803126msgid "Show Status Bar" 
    30813127msgstr "" 
    30823128 
    3083 #: lib/Padre/Action/View.pm:128 
     3129#: lib/Padre/Action/View.pm:123 
    30843130msgid "Show/hide the status bar at the bottom of the screen" 
    30853131msgstr "" 
    30863132 
    3087 #: lib/Padre/Action/View.pm:137 
     3133#: lib/Padre/Action/View.pm:132 
    30883134msgid "Show Toolbar" 
    30893135msgstr "" 
    30903136 
    3091 #: lib/Padre/Action/View.pm:138 
     3137#: lib/Padre/Action/View.pm:133 
    30923138msgid "Show/hide the toolbar at the top of the editor" 
    30933139msgstr "" 
    30943140 
    3095 #: lib/Padre/Action/View.pm:148 
     3141#: lib/Padre/Action/View.pm:143 
    30963142msgid "Show Line Numbers" 
    30973143msgstr "" 
    30983144 
    3099 #: lib/Padre/Action/View.pm:149 
     3145#: lib/Padre/Action/View.pm:144 
    31003146msgid "" 
    31013147"Show/hide the line numbers of all the documents on the left side of the " 
     
    31033149msgstr "" 
    31043150 
    3105 #: lib/Padre/Action/View.pm:158 
     3151#: lib/Padre/Action/View.pm:153 
    31063152msgid "Show Code Folding" 
    31073153msgstr "" 
    31083154 
    3109 #: lib/Padre/Action/View.pm:159 
     3155#: lib/Padre/Action/View.pm:154 
    31103156msgid "" 
    31113157"Show/hide a vertical line on the left hand side of the window to allow " 
     
    31133159msgstr "" 
    31143160 
    3115 #: lib/Padre/Action/View.pm:168 
     3161#: lib/Padre/Action/View.pm:163 
    31163162msgid "Fold all" 
    31173163msgstr "" 
    31183164 
    3119 #: lib/Padre/Action/View.pm:169 
     3165#: lib/Padre/Action/View.pm:164 
    31203166msgid "Fold all the blocks that can be folded (need folding to be enabled)" 
    31213167msgstr "" 
    31223168 
    3123 #: lib/Padre/Action/View.pm:178 
     3169#: lib/Padre/Action/View.pm:173 
    31243170msgid "Unfold all" 
    31253171msgstr "" 
    31263172 
    3127 #: lib/Padre/Action/View.pm:179 
     3173#: lib/Padre/Action/View.pm:174 
    31283174msgid "Unfold all the blocks that can be folded (need folding to be enabled)" 
    31293175msgstr "" 
    31303176 
    3131 #: lib/Padre/Action/View.pm:188 
     3177#: lib/Padre/Action/View.pm:183 
    31323178msgid "Show Call Tips" 
    31333179msgstr "" 
    31343180 
    3135 #: lib/Padre/Action/View.pm:189 
     3181#: lib/Padre/Action/View.pm:184 
    31363182msgid "When typing in functions allow showing short examples of the function" 
    31373183msgstr "" 
    31383184 
    3139 #: lib/Padre/Action/View.pm:202 
     3185#: lib/Padre/Action/View.pm:197 
    31403186msgid "Show Current Line" 
    31413187msgstr "" 
    31423188 
    3143 #: lib/Padre/Action/View.pm:203 
     3189#: lib/Padre/Action/View.pm:198 
    31443190msgid "Highlight the line where the cursor is" 
    31453191msgstr "" 
    31463192 
    3147 #: lib/Padre/Action/View.pm:212 
     3193#: lib/Padre/Action/View.pm:207 
    31483194msgid "Show Right Margin" 
    31493195msgstr "" 
    31503196 
    3151 #: lib/Padre/Action/View.pm:213 
     3197#: lib/Padre/Action/View.pm:208 
    31523198msgid "Show a vertical line indicating the right margin" 
    31533199msgstr "" 
    31543200 
    3155 #: lib/Padre/Action/View.pm:223 
     3201#: lib/Padre/Action/View.pm:218 
    31563202msgid "Show Newlines" 
    31573203msgstr "" 
    31583204 
    3159 #: lib/Padre/Action/View.pm:224 
     3205#: lib/Padre/Action/View.pm:219 
    31603206msgid "Show/hide the newlines with special character" 
    31613207msgstr "" 
    31623208 
    3163 #: lib/Padre/Action/View.pm:233 
     3209#: lib/Padre/Action/View.pm:228 
    31643210msgid "Show Whitespaces" 
    31653211msgstr "" 
    31663212 
    3167 #: lib/Padre/Action/View.pm:234 
     3213#: lib/Padre/Action/View.pm:229 
    31683214msgid "Show/hide the tabs and the spaces with special characters" 
    31693215msgstr "" 
    31703216 
    3171 #: lib/Padre/Action/View.pm:243 
     3217#: lib/Padre/Action/View.pm:238 
    31723218msgid "Show Indentation Guide" 
    31733219msgstr "" 
    31743220 
    3175 #: lib/Padre/Action/View.pm:244 
     3221#: lib/Padre/Action/View.pm:239 
    31763222msgid "" 
    31773223"Show/hide vertical bars at every indentation position on the left of the rows" 
    31783224msgstr "" 
    31793225 
    3180 #: lib/Padre/Action/View.pm:253 
     3226#: lib/Padre/Action/View.pm:248 
    31813227msgid "Word-Wrap" 
    31823228msgstr "" 
    31833229 
    3184 #: lib/Padre/Action/View.pm:254 
     3230#: lib/Padre/Action/View.pm:249 
    31853231msgid "Wrap long lines" 
    31863232msgstr "" 
    31873233 
    3188 #: lib/Padre/Action/View.pm:264 
     3234#: lib/Padre/Action/View.pm:259 
    31893235msgid "Increase Font Size" 
    31903236msgstr "" 
    31913237 
    3192 #: lib/Padre/Action/View.pm:265 
     3238#: lib/Padre/Action/View.pm:260 
    31933239msgid "Make the letters bigger in the editor window" 
    31943240msgstr "" 
    31953241 
    3196 #: lib/Padre/Action/View.pm:274 
     3242#: lib/Padre/Action/View.pm:269 
    31973243msgid "Decrease Font Size" 
    31983244msgstr "" 
    31993245 
    3200 #: lib/Padre/Action/View.pm:275 
     3246#: lib/Padre/Action/View.pm:270 
    32013247msgid "Make the letters smaller in the editor window" 
    32023248msgstr "" 
    32033249 
    3204 #: lib/Padre/Action/View.pm:284 
     3250#: lib/Padre/Action/View.pm:279 
    32053251msgid "Reset Font Size" 
    32063252msgstr "" 
    32073253 
    3208 #: lib/Padre/Action/View.pm:285 
     3254#: lib/Padre/Action/View.pm:280 
    32093255msgid "Reset the size of the letters to the default in the editor window" 
    32103256msgstr "" 
    32113257 
    3212 #: lib/Padre/Action/View.pm:297 
     3258#: lib/Padre/Action/View.pm:292 
    32133259msgid "Create a bookmark in the current file current row" 
    32143260msgstr "" 
    32153261 
    3216 #: lib/Padre/Action/View.pm:307 
     3262#: lib/Padre/Action/View.pm:302 
    32173263msgid "Goto Bookmark" 
    32183264msgstr "" 
    32193265 
    3220 #: lib/Padre/Action/View.pm:308 
     3266#: lib/Padre/Action/View.pm:303 
    32213267msgid "Select a bookmark created earlier and jump to that position" 
    32223268msgstr "" 
    32233269 
    3224 #: lib/Padre/Action/View.pm:320 
     3270#: lib/Padre/Action/View.pm:315 
    32253271msgid "&Full Screen" 
    32263272msgstr "" 
    32273273 
    3228 #: lib/Padre/Action/View.pm:321 
     3274#: lib/Padre/Action/View.pm:316 
    32293275msgid "Set Padre in full screen mode" 
    32303276msgstr "" 
     
    35053551 
    35063552#: 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:354 
     3553msgid "Select to the matching opening or closing brace" 
     3554msgstr "" 
     3555 
     3556#: lib/Padre/Action/Edit.pm:335 
    35113557msgid "&Join lines" 
    35123558msgstr "" 
    35133559 
    3514 #: lib/Padre/Action/Edit.pm:355 
     3560#: lib/Padre/Action/Edit.pm:336 
    35153561msgid "Join the next line to the end of the current line." 
    35163562msgstr "" 
    35173563 
    3518 #: lib/Padre/Action/Edit.pm:365 
     3564#: lib/Padre/Action/Edit.pm:346 
    35193565msgid "Insert Special Value" 
    35203566msgstr "" 
    35213567 
    3522 #: lib/Padre/Action/Edit.pm:366 
     3568#: lib/Padre/Action/Edit.pm:347 
    35233569msgid "" 
    35243570"Select a Date, Filename or other value and insert at the current location" 
    35253571msgstr "" 
    35263572 
    3527 #: lib/Padre/Action/Edit.pm:379 
     3573#: lib/Padre/Action/Edit.pm:360 
    35283574msgid "Select and insert a snippet at the current location" 
    35293575msgstr "" 
    35303576 
    3531 #: lib/Padre/Action/Edit.pm:390 
     3577#: lib/Padre/Action/Edit.pm:371 
    35323578msgid "Insert From File..." 
    35333579msgstr "" 
    35343580 
    3535 #: lib/Padre/Action/Edit.pm:391 
     3581#: lib/Padre/Action/Edit.pm:372 
    35363582msgid "Select a file and insert its content at the current location" 
    35373583msgstr "" 
    35383584 
    3539 #: lib/Padre/Action/Edit.pm:402 
     3585#: lib/Padre/Action/Edit.pm:383 
    35403586msgid "&Toggle Comment" 
    35413587msgstr "" 
    35423588 
    3543 #: lib/Padre/Action/Edit.pm:403 
     3589#: lib/Padre/Action/Edit.pm:384 
    35443590msgid "Comment out or remove comment out of selected lines in the document" 
    35453591msgstr "" 
    35463592 
    3547 #: lib/Padre/Action/Edit.pm:415 
     3593#: lib/Padre/Action/Edit.pm:396 
    35483594msgid "&Comment Selected Lines" 
    35493595msgstr "" 
    35503596 
    3551 #: lib/Padre/Action/Edit.pm:416 
     3597#: lib/Padre/Action/Edit.pm:397 
    35523598msgid "Comment out selected lines in the document" 
    35533599msgstr "" 
    35543600 
    3555 #: lib/Padre/Action/Edit.pm:427 
     3601#: lib/Padre/Action/Edit.pm:408 
    35563602msgid "&Uncomment Selected Lines" 
    35573603msgstr "" 
    35583604 
    3559 #: lib/Padre/Action/Edit.pm:428 
     3605#: lib/Padre/Action/Edit.pm:409 
    35603606msgid "Remove comment out of selected lines in the document" 
    35613607msgstr "" 
    35623608 
    3563 #: lib/Padre/Action/Edit.pm:439 
     3609#: lib/Padre/Action/Edit.pm:420 
    35643610msgid "Encode document to System Default" 
    35653611msgstr "" 
    35663612 
    3567 #: lib/Padre/Action/Edit.pm:440 
     3613#: lib/Padre/Action/Edit.pm:421 
    35683614msgid "" 
    35693615"Change the encoding of the current document to the default of the operating " 
     
    35713617msgstr "" 
    35723618 
    3573 #: lib/Padre/Action/Edit.pm:450 
     3619#: lib/Padre/Action/Edit.pm:431 
    35743620msgid "Encode document to utf-8" 
    35753621msgstr "" 
    35763622 
    3577 #: lib/Padre/Action/Edit.pm:451 
     3623#: lib/Padre/Action/Edit.pm:432 
    35783624msgid "Change the encoding of the current document to utf-8" 
    35793625msgstr "" 
    35803626 
    3581 #: lib/Padre/Action/Edit.pm:462 
     3627#: lib/Padre/Action/Edit.pm:443 
    35823628msgid "Select an encoding and encode the document to that" 
    35833629msgstr "" 
    35843630 
    3585 #: lib/Padre/Action/Edit.pm:472 
     3631#: lib/Padre/Action/Edit.pm:453 
    35863632msgid "EOL to Windows" 
    35873633msgstr "" 
    35883634 
    3589 #: lib/Padre/Action/Edit.pm:474 
     3635#: lib/Padre/Action/Edit.pm:455 
    35903636msgid "" 
    35913637"Change the end of line character of the current document to those used in " 
     
    35933639msgstr "" 
    35943640 
    3595 #: lib/Padre/Action/Edit.pm:483 
     3641#: lib/Padre/Action/Edit.pm:464 
    35963642msgid "EOL to Unix" 
    35973643msgstr "" 
    35983644 
    3599 #: lib/Padre/Action/Edit.pm:485 
     3645#: lib/Padre/Action/Edit.pm:466 
    36003646msgid "" 
    36013647"Change the end of line character of the current document to that used on " 
     
    36033649msgstr "" 
    36043650 
    3605 #: lib/Padre/Action/Edit.pm:494 
     3651#: lib/Padre/Action/Edit.pm:475 
    36063652msgid "EOL to Mac Classic" 
    36073653msgstr "" 
    36083654 
    3609 #: lib/Padre/Action/Edit.pm:495 
     3655#: lib/Padre/Action/Edit.pm:476 
    36103656msgid "" 
    36113657"Change the end of line character of the current document to that used on Mac " 
     
    36133659msgstr "" 
    36143660 
    3615 #: lib/Padre/Action/Edit.pm:505 
     3661#: lib/Padre/Action/Edit.pm:486 
    36163662msgid "Tabs to Spaces..." 
    36173663msgstr "" 
    36183664 
     3665#: lib/Padre/Action/Edit.pm:487 
     3666msgid "Convert all tabs to spaces in the current document" 
     3667msgstr "" 
     3668 
     3669#: lib/Padre/Action/Edit.pm:496 
     3670msgid "Spaces to Tabs..." 
     3671msgstr "" 
     3672 
     3673#: lib/Padre/Action/Edit.pm:497 
     3674msgid "Convert all the spaces to tabs in the current document" 
     3675msgstr "" 
     3676 
    36193677#: 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:515 
    3624 msgid "Spaces to Tabs..." 
     3678msgid "Delete Trailing Spaces" 
     3679msgstr "" 
     3680 
     3681#: lib/Padre/Action/Edit.pm:507 
     3682msgid "Remove the spaces from the end of the selected lines" 
    36253683msgstr "" 
    36263684 
    36273685#: 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:525 
    3632 msgid "Delete Trailing Spaces" 
    3633 msgstr "" 
    3634  
    3635 #: lib/Padre/Action/Edit.pm:526 
    3636 msgid "Remove the spaces from the end of the selected lines" 
    3637 msgstr "" 
    3638  
    3639 #: lib/Padre/Action/Edit.pm:535 
    36403686msgid "Delete Leading Spaces" 
    36413687msgstr "" 
    36423688 
    3643 #: lib/Padre/Action/Edit.pm:536 
     3689#: lib/Padre/Action/Edit.pm:517 
    36443690msgid "Remove the spaces from the beginning of the selected lines" 
    36453691msgstr "" 
    36463692 
    3647 #: lib/Padre/Action/Edit.pm:546 
     3693#: lib/Padre/Action/Edit.pm:527 
    36483694msgid "Upper All" 
    36493695msgstr "" 
    36503696 
    3651 #: lib/Padre/Action/Edit.pm:547 
     3697#: lib/Padre/Action/Edit.pm:528 
    36523698msgid "Change the current selection to upper case" 
    36533699msgstr "" 
    36543700 
    3655 #: lib/Padre/Action/Edit.pm:557 
     3701#: lib/Padre/Action/Edit.pm:538 
    36563702msgid "Lower All" 
    36573703msgstr "" 
    36583704 
    3659 #: lib/Padre/Action/Edit.pm:558 
     3705#: lib/Padre/Action/Edit.pm:539 
    36603706msgid "Change the current selection to lower case" 
    36613707msgstr "" 
    36623708 
    3663 #: lib/Padre/Action/Edit.pm:568 
     3709#: lib/Padre/Action/Edit.pm:549 
    36643710msgid "Diff to Saved Version" 
    36653711msgstr "" 
    36663712 
    3667 #: lib/Padre/Action/Edit.pm:570 
     3713#: lib/Padre/Action/Edit.pm:551 
    36683714msgid "" 
    36693715"Compare the file in the editor to that on the disk and show the diff in the " 
     
    36713717msgstr "" 
    36723718 
    3673 #: lib/Padre/Action/Edit.pm:578 
     3719#: lib/Padre/Action/Edit.pm:559 
    36743720msgid "Apply Diff to File" 
    36753721msgstr "" 
    36763722 
    3677 #: lib/Padre/Action/Edit.pm:579 
     3723#: lib/Padre/Action/Edit.pm:560 
    36783724msgid "Apply a patch file to the current document" 
    36793725msgstr "" 
    36803726 
    3681 #: lib/Padre/Action/Edit.pm:587 
     3727#: lib/Padre/Action/Edit.pm:568 
    36823728msgid "Apply Diff to Project" 
    36833729msgstr "" 
    36843730 
    3685 #: lib/Padre/Action/Edit.pm:588 
     3731#: lib/Padre/Action/Edit.pm:569 
    36863732msgid "Apply a patch file to the current project" 
    36873733msgstr "" 
    36883734 
    3689 #: lib/Padre/Action/Edit.pm:599 
     3735#: lib/Padre/Action/Edit.pm:580 
    36903736msgid "Filter through external tool" 
    36913737msgstr "" 
    36923738 
     3739#: lib/Padre/Action/Edit.pm:581 
     3740msgid "" 
     3741"Filters the selection (or the whole document) through any external command." 
     3742msgstr "" 
     3743 
     3744#: lib/Padre/Action/Edit.pm:590 
     3745msgid "Open the regular expression editing window" 
     3746msgstr "" 
     3747 
    36933748#: 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:609 
    3699 msgid "Open the regular expression editing window" 
    3700 msgstr "" 
    3701  
    3702 #: lib/Padre/Action/Edit.pm:619 
    37033749msgid "Show as hexa" 
    37043750msgstr "" 
    37053751 
    3706 #: lib/Padre/Action/Edit.pm:620 
     3752#: lib/Padre/Action/Edit.pm:601 
    37073753msgid "Show the ASCII values of the selected text in hexa in the output window" 
    37083754msgstr "" 
    37093755 
    3710 #: lib/Padre/Action/Edit.pm:629 
     3756#: lib/Padre/Action/Edit.pm:610 
    37113757msgid "Show as decimal" 
    37123758msgstr "" 
    37133759 
    3714 #: lib/Padre/Action/Edit.pm:630 
     3760#: lib/Padre/Action/Edit.pm:611 
    37153761msgid "" 
    37163762"Show the ASCII values of the selected text in decimal numbers in the output " 
     
    37183764msgstr "" 
    37193765 
    3720 #: lib/Padre/Action/Edit.pm:640 
     3766#: lib/Padre/Action/Edit.pm:621 
    37213767msgid "Edit the user preferences" 
    37223768msgstr "" 
     
    40014047msgstr "" 
    40024048 
    4003 #: lib/Padre/Action/Tools.pm:38 
     4049#: lib/Padre/Action/Tools.pm:39 
    40044050msgid "Show the key bindings dialog to configure Padre shortcuts" 
    40054051msgstr "" 
    40064052 
    4007 #: lib/Padre/Action/Tools.pm:48 
     4053#: lib/Padre/Action/Tools.pm:49 
    40084054msgid "Show the Padre plug-in manager to enable or disable plug-ins" 
    40094055msgstr "" 
    40104056 
    4011 #: lib/Padre/Action/Tools.pm:63 
     4057#: lib/Padre/Action/Tools.pm:64 
    40124058msgid "Plug-in List (CPAN)" 
    40134059msgstr "" 
    40144060 
    4015 #: lib/Padre/Action/Tools.pm:64 
     4061#: lib/Padre/Action/Tools.pm:65 
    40164062msgid "Open browser to a CPAN search showing the Padre::Plugin packages" 
    40174063msgstr "" 
    40184064 
    4019 #: lib/Padre/Action/Tools.pm:72 
     4065#: lib/Padre/Action/Tools.pm:73 
    40204066msgid "Edit My Plug-in" 
    40214067msgstr "" 
    40224068 
    4023 #: lib/Padre/Action/Tools.pm:73 
     4069#: lib/Padre/Action/Tools.pm:74 
    40244070msgid "" 
    40254071"My Plug-in is a plug-in where developers could extend their Padre " 
     
    40274073msgstr "" 
    40284074 
    4029 #: lib/Padre/Action/Tools.pm:79 
     4075#: lib/Padre/Action/Tools.pm:80 
    40304076msgid "Could not find the Padre::Plugin::My plug-in" 
    40314077msgstr "" 
    40324078 
    4033 #: lib/Padre/Action/Tools.pm:89 
     4079#: lib/Padre/Action/Tools.pm:90 
    40344080msgid "Reload My Plug-in" 
    40354081msgstr "" 
    40364082 
    4037 #: lib/Padre/Action/Tools.pm:90 
     4083#: lib/Padre/Action/Tools.pm:91 
    40384084msgid "This function reloads the My plug-in without restarting Padre" 
    40394085msgstr "" 
    40404086 
    4041 #: lib/Padre/Action/Tools.pm:98 lib/Padre/Action/Tools.pm:102 
    4042 #: lib/Padre/Action/Tools.pm:103 
     4087#: lib/Padre/Action/Tools.pm:99 lib/Padre/Action/Tools.pm:103 
     4088#: lib/Padre/Action/Tools.pm:104 
    40434089msgid "Reset My plug-in" 
    40444090msgstr "" 
    40454091 
    4046 #: lib/Padre/Action/Tools.pm:99 
     4092#: lib/Padre/Action/Tools.pm:100 
    40474093msgid "Reset the My plug-in to the default" 
    40484094msgstr "" 
    40494095 
    4050 #: lib/Padre/Action/Tools.pm:118 
     4096#: lib/Padre/Action/Tools.pm:119 
    40514097msgid "Reload All Plug-ins" 
    40524098msgstr "" 
    40534099 
    4054 #: lib/Padre/Action/Tools.pm:119 
     4100#: lib/Padre/Action/Tools.pm:120 
    40554101msgid "Reload all plug-ins from disk" 
    40564102msgstr "" 
    40574103 
    4058 #: lib/Padre/Action/Tools.pm:127 
     4104#: lib/Padre/Action/Tools.pm:128 
    40594105msgid "(Re)load Current Plug-in" 
    40604106msgstr "" 
    40614107 
    4062 #: lib/Padre/Action/Tools.pm:128 
     4108#: lib/Padre/Action/Tools.pm:129 
    40634109msgid "Reloads (or initially loads) the current plug-in" 
    40644110msgstr "" 
    40654111 
    4066 #: lib/Padre/Action/Tools.pm:146 
     4112#: lib/Padre/Action/Tools.pm:147 
    40674113msgid "Install CPAN Module" 
    40684114msgstr "" 
    40694115 
    4070 #: lib/Padre/Action/Tools.pm:147 
     4116#: lib/Padre/Action/Tools.pm:148 
    40714117msgid "Install a Perl module from CPAN" 
    40724118msgstr "" 
    40734119 
    4074 #: lib/Padre/Action/Tools.pm:159 
     4120#: lib/Padre/Action/Tools.pm:160 
    40754121msgid "Install Local Distribution" 
    40764122msgstr "" 
    40774123 
    4078 #: lib/Padre/Action/Tools.pm:160 
     4124#: lib/Padre/Action/Tools.pm:161 
    40794125msgid "Using CPAN.pm to install a CPAN like package opened locally" 
    40804126msgstr "" 
    40814127 
    4082 #: lib/Padre/Action/Tools.pm:168 
     4128#: lib/Padre/Action/Tools.pm:169 
    40834129msgid "Install Remote Distribution" 
    40844130msgstr "" 
    40854131 
    4086 #: lib/Padre/Action/Tools.pm:169 
     4132#: lib/Padre/Action/Tools.pm:170 
    40874133msgid "Using pip to download a tar.gz file and install it using CPAN.pm" 
    40884134msgstr "" 
    40894135 
    4090 #: lib/Padre/Action/Tools.pm:177 
     4136#: lib/Padre/Action/Tools.pm:178 
    40914137msgid "Open CPAN Config File" 
    40924138msgstr "" 
    40934139 
    4094 #: lib/Padre/Action/Tools.pm:178 
     4140#: lib/Padre/Action/Tools.pm:179 
    40954141msgid "Open CPAN::MyConfig.pm for manual editing by experts" 
    40964142msgstr "" 
    40974143 
    4098 #: lib/Padre/Action/Tools.pm:197 
     4144#: lib/Padre/Action/Tools.pm:202 
    40994145msgid "Select distribution to install" 
    41004146msgstr "" 
    41014147 
    4102 #: lib/Padre/Action/Tools.pm:210 lib/Padre/Action/Tools.pm:235 
     4148#: lib/Padre/Action/Tools.pm:215 lib/Padre/Action/Tools.pm:240 
    41034149msgid "Did not provide a distribution" 
    41044150msgstr "" 
    41054151 
    4106 #: lib/Padre/Action/Tools.pm:225 
     4152#: lib/Padre/Action/Tools.pm:230 
    41074153msgid "" 
    41084154"Enter URL to install\n" 
     
    41104156msgstr "" 
    41114157 
    4112 #: lib/Padre/Action/Tools.pm:252 
    4113 msgid "pip is unexpectedly not installed" 
    4114 msgstr "" 
    4115  
    4116 #: lib/Padre/Action/Tools.pm:298 
     4158#: lib/Padre/Action/Tools.pm:277 
     4159msgid "cpanm is unexpectedly not installed" 
     4160msgstr "" 
     4161 
     4162#: lib/Padre/Action/Tools.pm:320 
    41174163msgid "Failed to find your CPAN configuration" 
    41184164msgstr "" 
Note: See TracChangeset for help on using the changeset viewer.